-- phpMyAdmin SQL Dump
-- version 5.2.2
-- https://www.phpmyadmin.net/
--
-- Host: localhost:3306
-- Generation Time: Jun 23, 2026 at 05:51 AM
-- Server version: 11.4.10-MariaDB-cll-lve-log
-- PHP Version: 8.4.21

SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
START TRANSACTION;
SET time_zone = "+00:00";


/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;

--
-- Database: `mrarqpph_cpnordic`
--

-- --------------------------------------------------------

--
-- Table structure for table `wpcn_commentmeta`
--

CREATE TABLE `wpcn_commentmeta` (
  `meta_id` bigint(20) UNSIGNED NOT NULL,
  `comment_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpcn_comments`
--

CREATE TABLE `wpcn_comments` (
  `comment_ID` bigint(20) UNSIGNED NOT NULL,
  `comment_post_ID` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `comment_author` tinytext NOT NULL,
  `comment_author_email` varchar(100) NOT NULL DEFAULT '',
  `comment_author_url` varchar(200) NOT NULL DEFAULT '',
  `comment_author_IP` varchar(100) NOT NULL DEFAULT '',
  `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_content` text NOT NULL,
  `comment_karma` int(11) NOT NULL DEFAULT 0,
  `comment_approved` varchar(20) NOT NULL DEFAULT '1',
  `comment_agent` varchar(255) NOT NULL DEFAULT '',
  `comment_type` varchar(20) NOT NULL DEFAULT 'comment',
  `comment_parent` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `user_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpcn_e_events`
--

CREATE TABLE `wpcn_e_events` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `event_data` text DEFAULT NULL,
  `created_at` datetime NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpcn_e_notes`
--

CREATE TABLE `wpcn_e_notes` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `route_url` text DEFAULT NULL COMMENT 'Clean url where the note was created.',
  `route_title` varchar(255) DEFAULT NULL,
  `route_post_id` bigint(20) UNSIGNED DEFAULT NULL COMMENT 'The post id of the route that the note was created on.',
  `post_id` bigint(20) UNSIGNED DEFAULT NULL,
  `element_id` varchar(60) DEFAULT NULL COMMENT 'The Elementor element ID the note is attached to.',
  `parent_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `author_id` bigint(20) UNSIGNED DEFAULT NULL,
  `author_display_name` varchar(250) DEFAULT NULL COMMENT 'Save the author name when the author was deleted.',
  `status` varchar(20) NOT NULL DEFAULT 'publish',
  `position` text DEFAULT NULL COMMENT 'A JSON string that represents the position of the note inside the element in percentages. e.g. {x:10, y:15}',
  `content` longtext DEFAULT NULL,
  `is_resolved` tinyint(1) NOT NULL DEFAULT 0,
  `is_public` tinyint(1) NOT NULL DEFAULT 1,
  `last_activity_at` datetime DEFAULT NULL,
  `created_at` datetime NOT NULL,
  `updated_at` datetime NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpcn_e_notes_users_relations`
--

CREATE TABLE `wpcn_e_notes_users_relations` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `type` varchar(60) NOT NULL COMMENT 'The relation type between user and note (e.g mention, watch, read).',
  `note_id` bigint(20) UNSIGNED NOT NULL,
  `user_id` bigint(20) UNSIGNED NOT NULL,
  `created_at` datetime NOT NULL,
  `updated_at` datetime NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpcn_e_submissions`
--

CREATE TABLE `wpcn_e_submissions` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `type` varchar(60) DEFAULT NULL,
  `hash_id` varchar(60) NOT NULL,
  `main_meta_id` bigint(20) UNSIGNED NOT NULL COMMENT 'Id of main field. to represent the main meta field',
  `post_id` bigint(20) UNSIGNED NOT NULL,
  `referer` varchar(500) NOT NULL,
  `referer_title` varchar(300) DEFAULT NULL,
  `element_id` varchar(20) NOT NULL,
  `form_name` varchar(60) NOT NULL,
  `campaign_id` bigint(20) UNSIGNED NOT NULL,
  `user_id` bigint(20) UNSIGNED DEFAULT NULL,
  `user_ip` varchar(46) NOT NULL,
  `user_agent` text NOT NULL,
  `actions_count` int(11) DEFAULT 0,
  `actions_succeeded_count` int(11) DEFAULT 0,
  `status` varchar(20) NOT NULL,
  `is_read` tinyint(1) NOT NULL DEFAULT 0,
  `meta` text DEFAULT NULL,
  `created_at_gmt` datetime NOT NULL,
  `updated_at_gmt` datetime NOT NULL,
  `created_at` datetime NOT NULL,
  `updated_at` datetime NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpcn_e_submissions_actions_log`
--

CREATE TABLE `wpcn_e_submissions_actions_log` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `submission_id` bigint(20) UNSIGNED NOT NULL,
  `action_name` varchar(60) NOT NULL,
  `action_label` varchar(60) DEFAULT NULL,
  `status` varchar(20) NOT NULL,
  `log` text DEFAULT NULL,
  `created_at_gmt` datetime NOT NULL,
  `updated_at_gmt` datetime NOT NULL,
  `created_at` datetime NOT NULL,
  `updated_at` datetime NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpcn_e_submissions_values`
--

CREATE TABLE `wpcn_e_submissions_values` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `submission_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `key` varchar(60) DEFAULT NULL,
  `value` longtext DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpcn_links`
--

CREATE TABLE `wpcn_links` (
  `link_id` bigint(20) UNSIGNED NOT NULL,
  `link_url` varchar(255) NOT NULL DEFAULT '',
  `link_name` varchar(255) NOT NULL DEFAULT '',
  `link_image` varchar(255) NOT NULL DEFAULT '',
  `link_target` varchar(25) NOT NULL DEFAULT '',
  `link_description` varchar(255) NOT NULL DEFAULT '',
  `link_visible` varchar(20) NOT NULL DEFAULT 'Y',
  `link_owner` bigint(20) UNSIGNED NOT NULL DEFAULT 1,
  `link_rating` int(11) NOT NULL DEFAULT 0,
  `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `link_rel` varchar(255) NOT NULL DEFAULT '',
  `link_notes` mediumtext NOT NULL,
  `link_rss` varchar(255) NOT NULL DEFAULT ''
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpcn_litespeed_url`
--

CREATE TABLE `wpcn_litespeed_url` (
  `id` bigint(20) NOT NULL,
  `url` varchar(500) NOT NULL,
  `cache_tags` varchar(1000) NOT NULL DEFAULT ''
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpcn_litespeed_url_file`
--

CREATE TABLE `wpcn_litespeed_url_file` (
  `id` bigint(20) NOT NULL,
  `url_id` bigint(20) NOT NULL,
  `vary` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT 'md5 of final vary',
  `filename` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT 'md5 of file content',
  `type` tinyint(4) NOT NULL COMMENT 'css=1,js=2,ccss=3,ucss=4',
  `mobile` tinyint(4) NOT NULL COMMENT 'mobile=1',
  `webp` tinyint(4) NOT NULL COMMENT 'webp=1',
  `expired` int(11) NOT NULL DEFAULT 0
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpcn_options`
--

CREATE TABLE `wpcn_options` (
  `option_id` bigint(20) UNSIGNED NOT NULL,
  `option_name` varchar(191) NOT NULL DEFAULT '',
  `option_value` longtext NOT NULL,
  `autoload` varchar(20) NOT NULL DEFAULT 'yes'
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `wpcn_options`
--

INSERT INTO `wpcn_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(1, 'cron', 'a:12:{i:1782209091;a:1:{s:19:\"litespeed_task_lqip\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:16:\"litespeed_filter\";s:4:\"args\";a:0:{}s:8:\"interval\";i:900;}}}i:1782209567;a:1:{s:34:\"wp_privacy_delete_old_export_files\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1782213167;a:1:{s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1782213202;a:3:{s:21:\"wp_update_user_counts\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:25:\"delete_expired_transients\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1782213203;a:1:{s:30:\"wp_scheduled_auto_draft_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1782215443;a:1:{s:28:\"elementor/tracker/send_event\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1782216767;a:1:{s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1782218567;a:1:{s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1782220367;a:1:{s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1782645279;a:1:{s:30:\"wp_delete_temp_updater_backups\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1782731567;a:1:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}s:7:\"version\";i:2;}', 'on'),
(2, 'siteurl', 'https://mrarif.me/cpnordic', 'on'),
(3, 'home', 'https://mrarif.me/cpnordic', 'on'),
(4, 'blogname', 'CP NORDIC ApS', 'on'),
(5, 'blogdescription', 'Byggeri – Tømrerarbejde og tagdækning', 'on'),
(6, 'users_can_register', '0', 'on'),
(7, 'admin_email', 'arifwebsols@gmail.com', 'on'),
(8, 'start_of_week', '1', 'on'),
(9, 'use_balanceTags', '0', 'on'),
(10, 'use_smilies', '1', 'on'),
(11, 'require_name_email', '1', 'on'),
(12, 'comments_notify', '1', 'on'),
(13, 'posts_per_rss', '10', 'on'),
(14, 'rss_use_excerpt', '0', 'on'),
(15, 'mailserver_url', 'mail.example.com', 'on'),
(16, 'mailserver_login', 'login@example.com', 'on'),
(17, 'mailserver_pass', '', 'on'),
(18, 'mailserver_port', '110', 'on'),
(19, 'default_category', '1', 'on'),
(20, 'default_comment_status', 'open', 'on'),
(21, 'default_ping_status', 'open', 'on'),
(22, 'default_pingback_flag', '1', 'on'),
(23, 'posts_per_page', '10', 'on'),
(24, 'date_format', 'F j, Y', 'on'),
(25, 'time_format', 'g:i a', 'on'),
(26, 'links_updated_date_format', 'F j, Y g:i a', 'on'),
(27, 'comment_moderation', '0', 'on'),
(28, 'moderation_notify', '1', 'on'),
(29, 'permalink_structure', '/%postname%/', 'on'),
(30, 'rewrite_rules', 'a:109:{s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:17:\"^wp-sitemap\\.xml$\";s:23:\"index.php?sitemap=index\";s:17:\"^wp-sitemap\\.xsl$\";s:36:\"index.php?sitemap-stylesheet=sitemap\";s:23:\"^wp-sitemap-index\\.xsl$\";s:34:\"index.php?sitemap-stylesheet=index\";s:48:\"^wp-sitemap-([a-z]+?)-([a-z\\d_-]+?)-(\\d+?)\\.xml$\";s:75:\"index.php?sitemap=$matches[1]&sitemap-subtype=$matches[2]&paged=$matches[3]\";s:34:\"^wp-sitemap-([a-z]+?)-(\\d+?)\\.xml$\";s:47:\"index.php?sitemap=$matches[1]&paged=$matches[2]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:46:\"e-floating-buttons/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:56:\"e-floating-buttons/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:76:\"e-floating-buttons/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:71:\"e-floating-buttons/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:71:\"e-floating-buttons/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:52:\"e-floating-buttons/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:35:\"e-floating-buttons/([^/]+)/embed/?$\";s:51:\"index.php?e-floating-buttons=$matches[1]&embed=true\";s:39:\"e-floating-buttons/([^/]+)/trackback/?$\";s:45:\"index.php?e-floating-buttons=$matches[1]&tb=1\";s:47:\"e-floating-buttons/([^/]+)/page/?([0-9]{1,})/?$\";s:58:\"index.php?e-floating-buttons=$matches[1]&paged=$matches[2]\";s:54:\"e-floating-buttons/([^/]+)/comment-page-([0-9]{1,})/?$\";s:58:\"index.php?e-floating-buttons=$matches[1]&cpage=$matches[2]\";s:43:\"e-floating-buttons/([^/]+)(?:/([0-9]+))?/?$\";s:57:\"index.php?e-floating-buttons=$matches[1]&page=$matches[2]\";s:35:\"e-floating-buttons/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:45:\"e-floating-buttons/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\"e-floating-buttons/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"e-floating-buttons/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"e-floating-buttons/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:41:\"e-floating-buttons/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:39:\"index.php?&page_id=10&cpage=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";s:27:\"[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"([^/]+)/embed/?$\";s:37:\"index.php?name=$matches[1]&embed=true\";s:20:\"([^/]+)/trackback/?$\";s:31:\"index.php?name=$matches[1]&tb=1\";s:40:\"([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:35:\"([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:28:\"([^/]+)/page/?([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&paged=$matches[2]\";s:35:\"([^/]+)/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&cpage=$matches[2]\";s:24:\"([^/]+)(?:/([0-9]+))?/?$\";s:43:\"index.php?name=$matches[1]&page=$matches[2]\";s:16:\"[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:26:\"[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:46:\"[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:22:\"[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";}', 'on'),
(31, 'hack_file', '0', 'on'),
(32, 'blog_charset', 'UTF-8', 'on'),
(33, 'moderation_keys', '', 'off'),
(34, 'active_plugins', 'a:5:{i:0;s:31:\"backup-backup/backup-backup.php\";i:1;s:31:\"elementor-pro/elementor-pro.php\";i:2;s:23:\"elementor/elementor.php\";i:3;s:35:\"litespeed-cache/litespeed-cache.php\";i:4;s:41:\"powerpack-elements/powerpack-elements.php\";}', 'on'),
(35, 'category_base', '', 'on'),
(36, 'ping_sites', 'https://rpc.pingomatic.com/', 'on'),
(37, 'comment_max_links', '2', 'on'),
(38, 'gmt_offset', '0', 'on'),
(39, 'default_email_category', '1', 'on'),
(40, 'recently_edited', 'a:3:{i:0;s:75:\"/home/mrarqpph/public_html/cpnordic/wp-content/themes/astra-child/style.css\";i:1;s:79:\"/home/mrarqpph/public_html/cpnordic/wp-content/themes/astra-child/functions.php\";i:3;s:0:\"\";}', 'off'),
(41, 'template', 'astra', 'on'),
(42, 'stylesheet', 'astra-child', 'on'),
(43, 'comment_registration', '0', 'on'),
(44, 'html_type', 'text/html', 'on'),
(45, 'use_trackback', '0', 'on'),
(46, 'default_role', 'subscriber', 'on'),
(47, 'db_version', '61833', 'on'),
(48, 'uploads_use_yearmonth_folders', '1', 'on'),
(49, 'upload_path', '', 'on'),
(50, 'blog_public', '1', 'on'),
(51, 'default_link_category', '2', 'on'),
(52, 'show_on_front', 'page', 'on'),
(53, 'tag_base', '', 'on'),
(54, 'show_avatars', '1', 'on'),
(55, 'avatar_rating', 'G', 'on'),
(56, 'upload_url_path', '', 'on'),
(57, 'thumbnail_size_w', '150', 'on'),
(58, 'thumbnail_size_h', '150', 'on'),
(59, 'thumbnail_crop', '1', 'on'),
(60, 'medium_size_w', '300', 'on'),
(61, 'medium_size_h', '300', 'on'),
(62, 'avatar_default', 'mystery', 'on'),
(63, 'large_size_w', '1024', 'on'),
(64, 'large_size_h', '1024', 'on'),
(65, 'image_default_link_type', 'none', 'on'),
(66, 'image_default_size', '', 'on'),
(67, 'image_default_align', '', 'on'),
(68, 'close_comments_for_old_posts', '0', 'on'),
(69, 'close_comments_days_old', '14', 'on'),
(70, 'thread_comments', '1', 'on'),
(71, 'thread_comments_depth', '5', 'on'),
(72, 'page_comments', '0', 'on'),
(73, 'comments_per_page', '50', 'on'),
(74, 'default_comments_page', 'newest', 'on'),
(75, 'comment_order', 'asc', 'on'),
(76, 'sticky_posts', 'a:0:{}', 'on'),
(77, 'widget_categories', 'a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}', 'auto'),
(78, 'widget_text', 'a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}', 'auto'),
(79, 'widget_rss', 'a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}', 'auto'),
(80, 'uninstall_plugins', 'a:3:{s:23:\"elementor/elementor.php\";a:2:{i:0;s:21:\"Elementor\\Maintenance\";i:1;s:9:\"uninstall\";}s:31:\"backup-backup/backup-backup.php\";s:21:\"bmi_uninstall_handler\";s:35:\"litespeed-cache/litespeed-cache.php\";s:47:\"LiteSpeed\\Activation::uninstall_litespeed_cache\";}', 'off'),
(81, 'timezone_string', '', 'on'),
(82, 'page_for_posts', '0', 'on'),
(83, 'page_on_front', '10', 'on'),
(84, 'default_post_format', '0', 'on'),
(85, 'link_manager_enabled', '0', 'on'),
(86, 'finished_splitting_shared_terms', '1', 'on'),
(87, 'site_icon', '102', 'on'),
(88, 'medium_large_size_w', '768', 'on'),
(89, 'medium_large_size_h', '0', 'on'),
(90, 'wp_page_for_privacy_policy', '3', 'on'),
(91, 'show_comments_cookies_opt_in', '1', 'on'),
(92, 'admin_email_lifespan', '1784891567', 'on'),
(93, 'disallowed_keys', '', 'off'),
(94, 'comment_previously_approved', '1', 'on'),
(95, 'auto_plugin_theme_update_emails', 'a:0:{}', 'off'),
(96, 'auto_update_core_dev', 'enabled', 'on'),
(97, 'auto_update_core_minor', 'enabled', 'on'),
(98, 'auto_update_core_major', 'enabled', 'on'),
(99, 'wp_force_deactivated_plugins', 'a:0:{}', 'on'),
(100, 'wp_attachment_pages_enabled', '0', 'on'),
(101, 'wp_notes_notify', '1', 'on'),
(102, 'initial_db_version', '60717', 'on'),
(103, 'wpcn_user_roles', 'a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:68:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;s:26:\"create_notes_elementor-pro\";b:1;s:24:\"edit_notes_elementor-pro\";b:1;s:26:\"delete_notes_elementor-pro\";b:1;s:24:\"read_notes_elementor-pro\";b:1;s:31:\"edit_others_notes_elementor-pro\";b:1;s:33:\"delete_others_notes_elementor-pro\";b:1;s:39:\"read_others_private_notes_elementor-pro\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}}', 'on'),
(104, 'fresh_site', '0', 'off'),
(105, 'user_count', '1', 'off'),
(106, 'widget_block', 'a:6:{i:2;a:1:{s:7:\"content\";s:19:\"<!-- wp:search /-->\";}i:3;a:1:{s:7:\"content\";s:154:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Recent Posts</h2><!-- /wp:heading --><!-- wp:latest-posts /--></div><!-- /wp:group -->\";}i:4;a:1:{s:7:\"content\";s:227:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Recent Comments</h2><!-- /wp:heading --><!-- wp:latest-comments {\"displayAvatar\":false,\"displayDate\":false,\"displayExcerpt\":false} /--></div><!-- /wp:group -->\";}i:5;a:1:{s:7:\"content\";s:146:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Archives</h2><!-- /wp:heading --><!-- wp:archives /--></div><!-- /wp:group -->\";}i:6;a:1:{s:7:\"content\";s:150:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Categories</h2><!-- /wp:heading --><!-- wp:categories /--></div><!-- /wp:group -->\";}s:12:\"_multiwidget\";i:1;}', 'auto'),
(107, 'sidebars_widgets', 'a:9:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:5:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";i:3;s:7:\"block-5\";i:4;s:7:\"block-6\";}s:15:\"footer-widget-1\";a:0:{}s:15:\"footer-widget-2\";a:0:{}s:24:\"advanced-footer-widget-1\";a:0:{}s:24:\"advanced-footer-widget-2\";a:0:{}s:24:\"advanced-footer-widget-3\";a:0:{}s:24:\"advanced-footer-widget-4\";a:0:{}s:13:\"array_version\";i:3;}', 'auto'),
(415, 'elementor_remote_info_feed_data', 'a:3:{i:0;a:5:{s:5:\"title\";s:59:\"The atomic foundation of version 4 is ready for real sites!\";s:7:\"excerpt\";s:296:\"The alpha phase is complete. Version 4 is now in beta, and the atomic foundation is ready to be used on real sites! This is the final step before the official release of version 4.0, activating the new features automatically on new sites, and becoming the default editing experience in Elementor.\";s:7:\"created\";i:1770651621;s:5:\"badge\";s:3:\"NEW\";s:3:\"url\";s:113:\"https://elementor.com/blog/editor-4-beta/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:1;a:5:{s:5:\"title\";s:79:\"Introducing Elementor 3.33: Variables Manager, Custom CSS, Blend Modes, & more!\";s:7:\"excerpt\";s:340:\"Elementor 3.33 builds on the foundation of Editor V4, continuing our mission to create a faster, more scalable, and more intuitive design experience for Web Creators. With the addition of the Variables Manager, element-level Custom CSS, Background Clipping, and Blend Modes, designers have more creative precision and consistency than ever.\";s:7:\"created\";i:1762944115;s:5:\"badge\";s:3:\"NEW\";s:3:\"url\";s:145:\"https://elementor.com/blog/elementor-333-v4-variables-manager-custom-css/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:2;a:5:{s:5:\"title\";s:76:\"Introducing Elementor 3.32: Transitions, Transform, Size Variables, and More\";s:7:\"excerpt\";s:250:\"Elementor 3.32 is here, accelerating Editor V4 Alpha with transform controls and layered transitions, system-wide Size Variables and streamlined class management. This release empowers you to build more consistent, dynamic, and professional websites.\";s:7:\"created\";i:1759243152;s:5:\"badge\";s:3:\"NEW\";s:3:\"url\";s:138:\"https://elementor.com/blog/elementor-332-v4-transform-transitions/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}}', 'off'),
(108, 'widget_pages', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(109, 'widget_calendar', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(110, 'widget_archives', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(111, 'widget_media_audio', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(112, 'widget_media_image', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(113, 'widget_media_gallery', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(114, 'widget_media_video', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(115, 'widget_meta', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(116, 'widget_search', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(117, 'widget_recent-posts', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(118, 'widget_recent-comments', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(119, 'widget_tag_cloud', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(120, 'widget_nav_menu', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(121, 'widget_custom_html', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(122, '_transient_wp_core_block_css_files', 'a:2:{s:7:\"version\";s:3:\"6.9\";s:5:\"files\";a:584:{i:0;s:31:\"accordion-heading/style-rtl.css\";i:1;s:35:\"accordion-heading/style-rtl.min.css\";i:2;s:27:\"accordion-heading/style.css\";i:3;s:31:\"accordion-heading/style.min.css\";i:4;s:28:\"accordion-item/style-rtl.css\";i:5;s:32:\"accordion-item/style-rtl.min.css\";i:6;s:24:\"accordion-item/style.css\";i:7;s:28:\"accordion-item/style.min.css\";i:8;s:29:\"accordion-panel/style-rtl.css\";i:9;s:33:\"accordion-panel/style-rtl.min.css\";i:10;s:25:\"accordion-panel/style.css\";i:11;s:29:\"accordion-panel/style.min.css\";i:12;s:23:\"accordion/style-rtl.css\";i:13;s:27:\"accordion/style-rtl.min.css\";i:14;s:19:\"accordion/style.css\";i:15;s:23:\"accordion/style.min.css\";i:16;s:23:\"archives/editor-rtl.css\";i:17;s:27:\"archives/editor-rtl.min.css\";i:18;s:19:\"archives/editor.css\";i:19;s:23:\"archives/editor.min.css\";i:20;s:22:\"archives/style-rtl.css\";i:21;s:26:\"archives/style-rtl.min.css\";i:22;s:18:\"archives/style.css\";i:23;s:22:\"archives/style.min.css\";i:24;s:20:\"audio/editor-rtl.css\";i:25;s:24:\"audio/editor-rtl.min.css\";i:26;s:16:\"audio/editor.css\";i:27;s:20:\"audio/editor.min.css\";i:28;s:19:\"audio/style-rtl.css\";i:29;s:23:\"audio/style-rtl.min.css\";i:30;s:15:\"audio/style.css\";i:31;s:19:\"audio/style.min.css\";i:32;s:19:\"audio/theme-rtl.css\";i:33;s:23:\"audio/theme-rtl.min.css\";i:34;s:15:\"audio/theme.css\";i:35;s:19:\"audio/theme.min.css\";i:36;s:21:\"avatar/editor-rtl.css\";i:37;s:25:\"avatar/editor-rtl.min.css\";i:38;s:17:\"avatar/editor.css\";i:39;s:21:\"avatar/editor.min.css\";i:40;s:20:\"avatar/style-rtl.css\";i:41;s:24:\"avatar/style-rtl.min.css\";i:42;s:16:\"avatar/style.css\";i:43;s:20:\"avatar/style.min.css\";i:44;s:21:\"button/editor-rtl.css\";i:45;s:25:\"button/editor-rtl.min.css\";i:46;s:17:\"button/editor.css\";i:47;s:21:\"button/editor.min.css\";i:48;s:20:\"button/style-rtl.css\";i:49;s:24:\"button/style-rtl.min.css\";i:50;s:16:\"button/style.css\";i:51;s:20:\"button/style.min.css\";i:52;s:22:\"buttons/editor-rtl.css\";i:53;s:26:\"buttons/editor-rtl.min.css\";i:54;s:18:\"buttons/editor.css\";i:55;s:22:\"buttons/editor.min.css\";i:56;s:21:\"buttons/style-rtl.css\";i:57;s:25:\"buttons/style-rtl.min.css\";i:58;s:17:\"buttons/style.css\";i:59;s:21:\"buttons/style.min.css\";i:60;s:22:\"calendar/style-rtl.css\";i:61;s:26:\"calendar/style-rtl.min.css\";i:62;s:18:\"calendar/style.css\";i:63;s:22:\"calendar/style.min.css\";i:64;s:25:\"categories/editor-rtl.css\";i:65;s:29:\"categories/editor-rtl.min.css\";i:66;s:21:\"categories/editor.css\";i:67;s:25:\"categories/editor.min.css\";i:68;s:24:\"categories/style-rtl.css\";i:69;s:28:\"categories/style-rtl.min.css\";i:70;s:20:\"categories/style.css\";i:71;s:24:\"categories/style.min.css\";i:72;s:19:\"code/editor-rtl.css\";i:73;s:23:\"code/editor-rtl.min.css\";i:74;s:15:\"code/editor.css\";i:75;s:19:\"code/editor.min.css\";i:76;s:18:\"code/style-rtl.css\";i:77;s:22:\"code/style-rtl.min.css\";i:78;s:14:\"code/style.css\";i:79;s:18:\"code/style.min.css\";i:80;s:18:\"code/theme-rtl.css\";i:81;s:22:\"code/theme-rtl.min.css\";i:82;s:14:\"code/theme.css\";i:83;s:18:\"code/theme.min.css\";i:84;s:22:\"columns/editor-rtl.css\";i:85;s:26:\"columns/editor-rtl.min.css\";i:86;s:18:\"columns/editor.css\";i:87;s:22:\"columns/editor.min.css\";i:88;s:21:\"columns/style-rtl.css\";i:89;s:25:\"columns/style-rtl.min.css\";i:90;s:17:\"columns/style.css\";i:91;s:21:\"columns/style.min.css\";i:92;s:33:\"comment-author-name/style-rtl.css\";i:93;s:37:\"comment-author-name/style-rtl.min.css\";i:94;s:29:\"comment-author-name/style.css\";i:95;s:33:\"comment-author-name/style.min.css\";i:96;s:29:\"comment-content/style-rtl.css\";i:97;s:33:\"comment-content/style-rtl.min.css\";i:98;s:25:\"comment-content/style.css\";i:99;s:29:\"comment-content/style.min.css\";i:100;s:26:\"comment-date/style-rtl.css\";i:101;s:30:\"comment-date/style-rtl.min.css\";i:102;s:22:\"comment-date/style.css\";i:103;s:26:\"comment-date/style.min.css\";i:104;s:31:\"comment-edit-link/style-rtl.css\";i:105;s:35:\"comment-edit-link/style-rtl.min.css\";i:106;s:27:\"comment-edit-link/style.css\";i:107;s:31:\"comment-edit-link/style.min.css\";i:108;s:32:\"comment-reply-link/style-rtl.css\";i:109;s:36:\"comment-reply-link/style-rtl.min.css\";i:110;s:28:\"comment-reply-link/style.css\";i:111;s:32:\"comment-reply-link/style.min.css\";i:112;s:30:\"comment-template/style-rtl.css\";i:113;s:34:\"comment-template/style-rtl.min.css\";i:114;s:26:\"comment-template/style.css\";i:115;s:30:\"comment-template/style.min.css\";i:116;s:42:\"comments-pagination-numbers/editor-rtl.css\";i:117;s:46:\"comments-pagination-numbers/editor-rtl.min.css\";i:118;s:38:\"comments-pagination-numbers/editor.css\";i:119;s:42:\"comments-pagination-numbers/editor.min.css\";i:120;s:34:\"comments-pagination/editor-rtl.css\";i:121;s:38:\"comments-pagination/editor-rtl.min.css\";i:122;s:30:\"comments-pagination/editor.css\";i:123;s:34:\"comments-pagination/editor.min.css\";i:124;s:33:\"comments-pagination/style-rtl.css\";i:125;s:37:\"comments-pagination/style-rtl.min.css\";i:126;s:29:\"comments-pagination/style.css\";i:127;s:33:\"comments-pagination/style.min.css\";i:128;s:29:\"comments-title/editor-rtl.css\";i:129;s:33:\"comments-title/editor-rtl.min.css\";i:130;s:25:\"comments-title/editor.css\";i:131;s:29:\"comments-title/editor.min.css\";i:132;s:23:\"comments/editor-rtl.css\";i:133;s:27:\"comments/editor-rtl.min.css\";i:134;s:19:\"comments/editor.css\";i:135;s:23:\"comments/editor.min.css\";i:136;s:22:\"comments/style-rtl.css\";i:137;s:26:\"comments/style-rtl.min.css\";i:138;s:18:\"comments/style.css\";i:139;s:22:\"comments/style.min.css\";i:140;s:20:\"cover/editor-rtl.css\";i:141;s:24:\"cover/editor-rtl.min.css\";i:142;s:16:\"cover/editor.css\";i:143;s:20:\"cover/editor.min.css\";i:144;s:19:\"cover/style-rtl.css\";i:145;s:23:\"cover/style-rtl.min.css\";i:146;s:15:\"cover/style.css\";i:147;s:19:\"cover/style.min.css\";i:148;s:22:\"details/editor-rtl.css\";i:149;s:26:\"details/editor-rtl.min.css\";i:150;s:18:\"details/editor.css\";i:151;s:22:\"details/editor.min.css\";i:152;s:21:\"details/style-rtl.css\";i:153;s:25:\"details/style-rtl.min.css\";i:154;s:17:\"details/style.css\";i:155;s:21:\"details/style.min.css\";i:156;s:20:\"embed/editor-rtl.css\";i:157;s:24:\"embed/editor-rtl.min.css\";i:158;s:16:\"embed/editor.css\";i:159;s:20:\"embed/editor.min.css\";i:160;s:19:\"embed/style-rtl.css\";i:161;s:23:\"embed/style-rtl.min.css\";i:162;s:15:\"embed/style.css\";i:163;s:19:\"embed/style.min.css\";i:164;s:19:\"embed/theme-rtl.css\";i:165;s:23:\"embed/theme-rtl.min.css\";i:166;s:15:\"embed/theme.css\";i:167;s:19:\"embed/theme.min.css\";i:168;s:19:\"file/editor-rtl.css\";i:169;s:23:\"file/editor-rtl.min.css\";i:170;s:15:\"file/editor.css\";i:171;s:19:\"file/editor.min.css\";i:172;s:18:\"file/style-rtl.css\";i:173;s:22:\"file/style-rtl.min.css\";i:174;s:14:\"file/style.css\";i:175;s:18:\"file/style.min.css\";i:176;s:23:\"footnotes/style-rtl.css\";i:177;s:27:\"footnotes/style-rtl.min.css\";i:178;s:19:\"footnotes/style.css\";i:179;s:23:\"footnotes/style.min.css\";i:180;s:23:\"freeform/editor-rtl.css\";i:181;s:27:\"freeform/editor-rtl.min.css\";i:182;s:19:\"freeform/editor.css\";i:183;s:23:\"freeform/editor.min.css\";i:184;s:22:\"gallery/editor-rtl.css\";i:185;s:26:\"gallery/editor-rtl.min.css\";i:186;s:18:\"gallery/editor.css\";i:187;s:22:\"gallery/editor.min.css\";i:188;s:21:\"gallery/style-rtl.css\";i:189;s:25:\"gallery/style-rtl.min.css\";i:190;s:17:\"gallery/style.css\";i:191;s:21:\"gallery/style.min.css\";i:192;s:21:\"gallery/theme-rtl.css\";i:193;s:25:\"gallery/theme-rtl.min.css\";i:194;s:17:\"gallery/theme.css\";i:195;s:21:\"gallery/theme.min.css\";i:196;s:20:\"group/editor-rtl.css\";i:197;s:24:\"group/editor-rtl.min.css\";i:198;s:16:\"group/editor.css\";i:199;s:20:\"group/editor.min.css\";i:200;s:19:\"group/style-rtl.css\";i:201;s:23:\"group/style-rtl.min.css\";i:202;s:15:\"group/style.css\";i:203;s:19:\"group/style.min.css\";i:204;s:19:\"group/theme-rtl.css\";i:205;s:23:\"group/theme-rtl.min.css\";i:206;s:15:\"group/theme.css\";i:207;s:19:\"group/theme.min.css\";i:208;s:21:\"heading/style-rtl.css\";i:209;s:25:\"heading/style-rtl.min.css\";i:210;s:17:\"heading/style.css\";i:211;s:21:\"heading/style.min.css\";i:212;s:19:\"html/editor-rtl.css\";i:213;s:23:\"html/editor-rtl.min.css\";i:214;s:15:\"html/editor.css\";i:215;s:19:\"html/editor.min.css\";i:216;s:20:\"image/editor-rtl.css\";i:217;s:24:\"image/editor-rtl.min.css\";i:218;s:16:\"image/editor.css\";i:219;s:20:\"image/editor.min.css\";i:220;s:19:\"image/style-rtl.css\";i:221;s:23:\"image/style-rtl.min.css\";i:222;s:15:\"image/style.css\";i:223;s:19:\"image/style.min.css\";i:224;s:19:\"image/theme-rtl.css\";i:225;s:23:\"image/theme-rtl.min.css\";i:226;s:15:\"image/theme.css\";i:227;s:19:\"image/theme.min.css\";i:228;s:29:\"latest-comments/style-rtl.css\";i:229;s:33:\"latest-comments/style-rtl.min.css\";i:230;s:25:\"latest-comments/style.css\";i:231;s:29:\"latest-comments/style.min.css\";i:232;s:27:\"latest-posts/editor-rtl.css\";i:233;s:31:\"latest-posts/editor-rtl.min.css\";i:234;s:23:\"latest-posts/editor.css\";i:235;s:27:\"latest-posts/editor.min.css\";i:236;s:26:\"latest-posts/style-rtl.css\";i:237;s:30:\"latest-posts/style-rtl.min.css\";i:238;s:22:\"latest-posts/style.css\";i:239;s:26:\"latest-posts/style.min.css\";i:240;s:18:\"list/style-rtl.css\";i:241;s:22:\"list/style-rtl.min.css\";i:242;s:14:\"list/style.css\";i:243;s:18:\"list/style.min.css\";i:244;s:22:\"loginout/style-rtl.css\";i:245;s:26:\"loginout/style-rtl.min.css\";i:246;s:18:\"loginout/style.css\";i:247;s:22:\"loginout/style.min.css\";i:248;s:19:\"math/editor-rtl.css\";i:249;s:23:\"math/editor-rtl.min.css\";i:250;s:15:\"math/editor.css\";i:251;s:19:\"math/editor.min.css\";i:252;s:18:\"math/style-rtl.css\";i:253;s:22:\"math/style-rtl.min.css\";i:254;s:14:\"math/style.css\";i:255;s:18:\"math/style.min.css\";i:256;s:25:\"media-text/editor-rtl.css\";i:257;s:29:\"media-text/editor-rtl.min.css\";i:258;s:21:\"media-text/editor.css\";i:259;s:25:\"media-text/editor.min.css\";i:260;s:24:\"media-text/style-rtl.css\";i:261;s:28:\"media-text/style-rtl.min.css\";i:262;s:20:\"media-text/style.css\";i:263;s:24:\"media-text/style.min.css\";i:264;s:19:\"more/editor-rtl.css\";i:265;s:23:\"more/editor-rtl.min.css\";i:266;s:15:\"more/editor.css\";i:267;s:19:\"more/editor.min.css\";i:268;s:30:\"navigation-link/editor-rtl.css\";i:269;s:34:\"navigation-link/editor-rtl.min.css\";i:270;s:26:\"navigation-link/editor.css\";i:271;s:30:\"navigation-link/editor.min.css\";i:272;s:29:\"navigation-link/style-rtl.css\";i:273;s:33:\"navigation-link/style-rtl.min.css\";i:274;s:25:\"navigation-link/style.css\";i:275;s:29:\"navigation-link/style.min.css\";i:276;s:33:\"navigation-submenu/editor-rtl.css\";i:277;s:37:\"navigation-submenu/editor-rtl.min.css\";i:278;s:29:\"navigation-submenu/editor.css\";i:279;s:33:\"navigation-submenu/editor.min.css\";i:280;s:25:\"navigation/editor-rtl.css\";i:281;s:29:\"navigation/editor-rtl.min.css\";i:282;s:21:\"navigation/editor.css\";i:283;s:25:\"navigation/editor.min.css\";i:284;s:24:\"navigation/style-rtl.css\";i:285;s:28:\"navigation/style-rtl.min.css\";i:286;s:20:\"navigation/style.css\";i:287;s:24:\"navigation/style.min.css\";i:288;s:23:\"nextpage/editor-rtl.css\";i:289;s:27:\"nextpage/editor-rtl.min.css\";i:290;s:19:\"nextpage/editor.css\";i:291;s:23:\"nextpage/editor.min.css\";i:292;s:24:\"page-list/editor-rtl.css\";i:293;s:28:\"page-list/editor-rtl.min.css\";i:294;s:20:\"page-list/editor.css\";i:295;s:24:\"page-list/editor.min.css\";i:296;s:23:\"page-list/style-rtl.css\";i:297;s:27:\"page-list/style-rtl.min.css\";i:298;s:19:\"page-list/style.css\";i:299;s:23:\"page-list/style.min.css\";i:300;s:24:\"paragraph/editor-rtl.css\";i:301;s:28:\"paragraph/editor-rtl.min.css\";i:302;s:20:\"paragraph/editor.css\";i:303;s:24:\"paragraph/editor.min.css\";i:304;s:23:\"paragraph/style-rtl.css\";i:305;s:27:\"paragraph/style-rtl.min.css\";i:306;s:19:\"paragraph/style.css\";i:307;s:23:\"paragraph/style.min.css\";i:308;s:35:\"post-author-biography/style-rtl.css\";i:309;s:39:\"post-author-biography/style-rtl.min.css\";i:310;s:31:\"post-author-biography/style.css\";i:311;s:35:\"post-author-biography/style.min.css\";i:312;s:30:\"post-author-name/style-rtl.css\";i:313;s:34:\"post-author-name/style-rtl.min.css\";i:314;s:26:\"post-author-name/style.css\";i:315;s:30:\"post-author-name/style.min.css\";i:316;s:25:\"post-author/style-rtl.css\";i:317;s:29:\"post-author/style-rtl.min.css\";i:318;s:21:\"post-author/style.css\";i:319;s:25:\"post-author/style.min.css\";i:320;s:33:\"post-comments-count/style-rtl.css\";i:321;s:37:\"post-comments-count/style-rtl.min.css\";i:322;s:29:\"post-comments-count/style.css\";i:323;s:33:\"post-comments-count/style.min.css\";i:324;s:33:\"post-comments-form/editor-rtl.css\";i:325;s:37:\"post-comments-form/editor-rtl.min.css\";i:326;s:29:\"post-comments-form/editor.css\";i:327;s:33:\"post-comments-form/editor.min.css\";i:328;s:32:\"post-comments-form/style-rtl.css\";i:329;s:36:\"post-comments-form/style-rtl.min.css\";i:330;s:28:\"post-comments-form/style.css\";i:331;s:32:\"post-comments-form/style.min.css\";i:332;s:32:\"post-comments-link/style-rtl.css\";i:333;s:36:\"post-comments-link/style-rtl.min.css\";i:334;s:28:\"post-comments-link/style.css\";i:335;s:32:\"post-comments-link/style.min.css\";i:336;s:26:\"post-content/style-rtl.css\";i:337;s:30:\"post-content/style-rtl.min.css\";i:338;s:22:\"post-content/style.css\";i:339;s:26:\"post-content/style.min.css\";i:340;s:23:\"post-date/style-rtl.css\";i:341;s:27:\"post-date/style-rtl.min.css\";i:342;s:19:\"post-date/style.css\";i:343;s:23:\"post-date/style.min.css\";i:344;s:27:\"post-excerpt/editor-rtl.css\";i:345;s:31:\"post-excerpt/editor-rtl.min.css\";i:346;s:23:\"post-excerpt/editor.css\";i:347;s:27:\"post-excerpt/editor.min.css\";i:348;s:26:\"post-excerpt/style-rtl.css\";i:349;s:30:\"post-excerpt/style-rtl.min.css\";i:350;s:22:\"post-excerpt/style.css\";i:351;s:26:\"post-excerpt/style.min.css\";i:352;s:34:\"post-featured-image/editor-rtl.css\";i:353;s:38:\"post-featured-image/editor-rtl.min.css\";i:354;s:30:\"post-featured-image/editor.css\";i:355;s:34:\"post-featured-image/editor.min.css\";i:356;s:33:\"post-featured-image/style-rtl.css\";i:357;s:37:\"post-featured-image/style-rtl.min.css\";i:358;s:29:\"post-featured-image/style.css\";i:359;s:33:\"post-featured-image/style.min.css\";i:360;s:34:\"post-navigation-link/style-rtl.css\";i:361;s:38:\"post-navigation-link/style-rtl.min.css\";i:362;s:30:\"post-navigation-link/style.css\";i:363;s:34:\"post-navigation-link/style.min.css\";i:364;s:27:\"post-template/style-rtl.css\";i:365;s:31:\"post-template/style-rtl.min.css\";i:366;s:23:\"post-template/style.css\";i:367;s:27:\"post-template/style.min.css\";i:368;s:24:\"post-terms/style-rtl.css\";i:369;s:28:\"post-terms/style-rtl.min.css\";i:370;s:20:\"post-terms/style.css\";i:371;s:24:\"post-terms/style.min.css\";i:372;s:31:\"post-time-to-read/style-rtl.css\";i:373;s:35:\"post-time-to-read/style-rtl.min.css\";i:374;s:27:\"post-time-to-read/style.css\";i:375;s:31:\"post-time-to-read/style.min.css\";i:376;s:24:\"post-title/style-rtl.css\";i:377;s:28:\"post-title/style-rtl.min.css\";i:378;s:20:\"post-title/style.css\";i:379;s:24:\"post-title/style.min.css\";i:380;s:26:\"preformatted/style-rtl.css\";i:381;s:30:\"preformatted/style-rtl.min.css\";i:382;s:22:\"preformatted/style.css\";i:383;s:26:\"preformatted/style.min.css\";i:384;s:24:\"pullquote/editor-rtl.css\";i:385;s:28:\"pullquote/editor-rtl.min.css\";i:386;s:20:\"pullquote/editor.css\";i:387;s:24:\"pullquote/editor.min.css\";i:388;s:23:\"pullquote/style-rtl.css\";i:389;s:27:\"pullquote/style-rtl.min.css\";i:390;s:19:\"pullquote/style.css\";i:391;s:23:\"pullquote/style.min.css\";i:392;s:23:\"pullquote/theme-rtl.css\";i:393;s:27:\"pullquote/theme-rtl.min.css\";i:394;s:19:\"pullquote/theme.css\";i:395;s:23:\"pullquote/theme.min.css\";i:396;s:39:\"query-pagination-numbers/editor-rtl.css\";i:397;s:43:\"query-pagination-numbers/editor-rtl.min.css\";i:398;s:35:\"query-pagination-numbers/editor.css\";i:399;s:39:\"query-pagination-numbers/editor.min.css\";i:400;s:31:\"query-pagination/editor-rtl.css\";i:401;s:35:\"query-pagination/editor-rtl.min.css\";i:402;s:27:\"query-pagination/editor.css\";i:403;s:31:\"query-pagination/editor.min.css\";i:404;s:30:\"query-pagination/style-rtl.css\";i:405;s:34:\"query-pagination/style-rtl.min.css\";i:406;s:26:\"query-pagination/style.css\";i:407;s:30:\"query-pagination/style.min.css\";i:408;s:25:\"query-title/style-rtl.css\";i:409;s:29:\"query-title/style-rtl.min.css\";i:410;s:21:\"query-title/style.css\";i:411;s:25:\"query-title/style.min.css\";i:412;s:25:\"query-total/style-rtl.css\";i:413;s:29:\"query-total/style-rtl.min.css\";i:414;s:21:\"query-total/style.css\";i:415;s:25:\"query-total/style.min.css\";i:416;s:20:\"query/editor-rtl.css\";i:417;s:24:\"query/editor-rtl.min.css\";i:418;s:16:\"query/editor.css\";i:419;s:20:\"query/editor.min.css\";i:420;s:19:\"quote/style-rtl.css\";i:421;s:23:\"quote/style-rtl.min.css\";i:422;s:15:\"quote/style.css\";i:423;s:19:\"quote/style.min.css\";i:424;s:19:\"quote/theme-rtl.css\";i:425;s:23:\"quote/theme-rtl.min.css\";i:426;s:15:\"quote/theme.css\";i:427;s:19:\"quote/theme.min.css\";i:428;s:23:\"read-more/style-rtl.css\";i:429;s:27:\"read-more/style-rtl.min.css\";i:430;s:19:\"read-more/style.css\";i:431;s:23:\"read-more/style.min.css\";i:432;s:18:\"rss/editor-rtl.css\";i:433;s:22:\"rss/editor-rtl.min.css\";i:434;s:14:\"rss/editor.css\";i:435;s:18:\"rss/editor.min.css\";i:436;s:17:\"rss/style-rtl.css\";i:437;s:21:\"rss/style-rtl.min.css\";i:438;s:13:\"rss/style.css\";i:439;s:17:\"rss/style.min.css\";i:440;s:21:\"search/editor-rtl.css\";i:441;s:25:\"search/editor-rtl.min.css\";i:442;s:17:\"search/editor.css\";i:443;s:21:\"search/editor.min.css\";i:444;s:20:\"search/style-rtl.css\";i:445;s:24:\"search/style-rtl.min.css\";i:446;s:16:\"search/style.css\";i:447;s:20:\"search/style.min.css\";i:448;s:20:\"search/theme-rtl.css\";i:449;s:24:\"search/theme-rtl.min.css\";i:450;s:16:\"search/theme.css\";i:451;s:20:\"search/theme.min.css\";i:452;s:24:\"separator/editor-rtl.css\";i:453;s:28:\"separator/editor-rtl.min.css\";i:454;s:20:\"separator/editor.css\";i:455;s:24:\"separator/editor.min.css\";i:456;s:23:\"separator/style-rtl.css\";i:457;s:27:\"separator/style-rtl.min.css\";i:458;s:19:\"separator/style.css\";i:459;s:23:\"separator/style.min.css\";i:460;s:23:\"separator/theme-rtl.css\";i:461;s:27:\"separator/theme-rtl.min.css\";i:462;s:19:\"separator/theme.css\";i:463;s:23:\"separator/theme.min.css\";i:464;s:24:\"shortcode/editor-rtl.css\";i:465;s:28:\"shortcode/editor-rtl.min.css\";i:466;s:20:\"shortcode/editor.css\";i:467;s:24:\"shortcode/editor.min.css\";i:468;s:24:\"site-logo/editor-rtl.css\";i:469;s:28:\"site-logo/editor-rtl.min.css\";i:470;s:20:\"site-logo/editor.css\";i:471;s:24:\"site-logo/editor.min.css\";i:472;s:23:\"site-logo/style-rtl.css\";i:473;s:27:\"site-logo/style-rtl.min.css\";i:474;s:19:\"site-logo/style.css\";i:475;s:23:\"site-logo/style.min.css\";i:476;s:27:\"site-tagline/editor-rtl.css\";i:477;s:31:\"site-tagline/editor-rtl.min.css\";i:478;s:23:\"site-tagline/editor.css\";i:479;s:27:\"site-tagline/editor.min.css\";i:480;s:26:\"site-tagline/style-rtl.css\";i:481;s:30:\"site-tagline/style-rtl.min.css\";i:482;s:22:\"site-tagline/style.css\";i:483;s:26:\"site-tagline/style.min.css\";i:484;s:25:\"site-title/editor-rtl.css\";i:485;s:29:\"site-title/editor-rtl.min.css\";i:486;s:21:\"site-title/editor.css\";i:487;s:25:\"site-title/editor.min.css\";i:488;s:24:\"site-title/style-rtl.css\";i:489;s:28:\"site-title/style-rtl.min.css\";i:490;s:20:\"site-title/style.css\";i:491;s:24:\"site-title/style.min.css\";i:492;s:26:\"social-link/editor-rtl.css\";i:493;s:30:\"social-link/editor-rtl.min.css\";i:494;s:22:\"social-link/editor.css\";i:495;s:26:\"social-link/editor.min.css\";i:496;s:27:\"social-links/editor-rtl.css\";i:497;s:31:\"social-links/editor-rtl.min.css\";i:498;s:23:\"social-links/editor.css\";i:499;s:27:\"social-links/editor.min.css\";i:500;s:26:\"social-links/style-rtl.css\";i:501;s:30:\"social-links/style-rtl.min.css\";i:502;s:22:\"social-links/style.css\";i:503;s:26:\"social-links/style.min.css\";i:504;s:21:\"spacer/editor-rtl.css\";i:505;s:25:\"spacer/editor-rtl.min.css\";i:506;s:17:\"spacer/editor.css\";i:507;s:21:\"spacer/editor.min.css\";i:508;s:20:\"spacer/style-rtl.css\";i:509;s:24:\"spacer/style-rtl.min.css\";i:510;s:16:\"spacer/style.css\";i:511;s:20:\"spacer/style.min.css\";i:512;s:20:\"table/editor-rtl.css\";i:513;s:24:\"table/editor-rtl.min.css\";i:514;s:16:\"table/editor.css\";i:515;s:20:\"table/editor.min.css\";i:516;s:19:\"table/style-rtl.css\";i:517;s:23:\"table/style-rtl.min.css\";i:518;s:15:\"table/style.css\";i:519;s:19:\"table/style.min.css\";i:520;s:19:\"table/theme-rtl.css\";i:521;s:23:\"table/theme-rtl.min.css\";i:522;s:15:\"table/theme.css\";i:523;s:19:\"table/theme.min.css\";i:524;s:24:\"tag-cloud/editor-rtl.css\";i:525;s:28:\"tag-cloud/editor-rtl.min.css\";i:526;s:20:\"tag-cloud/editor.css\";i:527;s:24:\"tag-cloud/editor.min.css\";i:528;s:23:\"tag-cloud/style-rtl.css\";i:529;s:27:\"tag-cloud/style-rtl.min.css\";i:530;s:19:\"tag-cloud/style.css\";i:531;s:23:\"tag-cloud/style.min.css\";i:532;s:28:\"template-part/editor-rtl.css\";i:533;s:32:\"template-part/editor-rtl.min.css\";i:534;s:24:\"template-part/editor.css\";i:535;s:28:\"template-part/editor.min.css\";i:536;s:27:\"template-part/theme-rtl.css\";i:537;s:31:\"template-part/theme-rtl.min.css\";i:538;s:23:\"template-part/theme.css\";i:539;s:27:\"template-part/theme.min.css\";i:540;s:24:\"term-count/style-rtl.css\";i:541;s:28:\"term-count/style-rtl.min.css\";i:542;s:20:\"term-count/style.css\";i:543;s:24:\"term-count/style.min.css\";i:544;s:30:\"term-description/style-rtl.css\";i:545;s:34:\"term-description/style-rtl.min.css\";i:546;s:26:\"term-description/style.css\";i:547;s:30:\"term-description/style.min.css\";i:548;s:23:\"term-name/style-rtl.css\";i:549;s:27:\"term-name/style-rtl.min.css\";i:550;s:19:\"term-name/style.css\";i:551;s:23:\"term-name/style.min.css\";i:552;s:28:\"term-template/editor-rtl.css\";i:553;s:32:\"term-template/editor-rtl.min.css\";i:554;s:24:\"term-template/editor.css\";i:555;s:28:\"term-template/editor.min.css\";i:556;s:27:\"term-template/style-rtl.css\";i:557;s:31:\"term-template/style-rtl.min.css\";i:558;s:23:\"term-template/style.css\";i:559;s:27:\"term-template/style.min.css\";i:560;s:27:\"text-columns/editor-rtl.css\";i:561;s:31:\"text-columns/editor-rtl.min.css\";i:562;s:23:\"text-columns/editor.css\";i:563;s:27:\"text-columns/editor.min.css\";i:564;s:26:\"text-columns/style-rtl.css\";i:565;s:30:\"text-columns/style-rtl.min.css\";i:566;s:22:\"text-columns/style.css\";i:567;s:26:\"text-columns/style.min.css\";i:568;s:19:\"verse/style-rtl.css\";i:569;s:23:\"verse/style-rtl.min.css\";i:570;s:15:\"verse/style.css\";i:571;s:19:\"verse/style.min.css\";i:572;s:20:\"video/editor-rtl.css\";i:573;s:24:\"video/editor-rtl.min.css\";i:574;s:16:\"video/editor.css\";i:575;s:20:\"video/editor.min.css\";i:576;s:19:\"video/style-rtl.css\";i:577;s:23:\"video/style-rtl.min.css\";i:578;s:15:\"video/style.css\";i:579;s:19:\"video/style.min.css\";i:580;s:19:\"video/theme-rtl.css\";i:581;s:23:\"video/theme-rtl.min.css\";i:582;s:15:\"video/theme.css\";i:583;s:19:\"video/theme.min.css\";}}', 'on');
INSERT INTO `wpcn_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(165, 'astra-settings', 'a:22:{s:18:\"theme-auto-version\";s:6:\"4.12.1\";s:22:\"is_theme_queue_running\";b:0;s:21:\"ast-single-page-title\";b:0;s:15:\"button-bg-color\";s:25:\"var(--ast-global-color-0)\";s:20:\"theme-button-padding\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:2:\"17\";s:5:\"right\";s:2:\"32\";s:6:\"bottom\";s:2:\"17\";s:4:\"left\";s:2:\"32\";}s:6:\"tablet\";a:4:{s:3:\"top\";i:14;s:5:\"right\";i:28;s:6:\"bottom\";i:14;s:4:\"left\";i:28;}s:6:\"mobile\";a:4:{s:3:\"top\";i:12;s:5:\"right\";i:24;s:6:\"bottom\";i:12;s:4:\"left\";i:24;}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:37:\"theme-button-border-group-border-size\";a:4:{s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";}s:20:\"button-radius-fields\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:18:\"site-content-width\";i:1240;s:37:\"site-layout-outside-bg-obj-responsive\";a:3:{s:7:\"desktop\";a:12:{s:16:\"background-color\";s:25:\"var(--ast-global-color-5)\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:15:\"background-type\";s:5:\"color\";s:16:\"background-media\";s:0:\"\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"tablet\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"mobile\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}}s:25:\"content-bg-obj-responsive\";a:3:{s:7:\"desktop\";a:12:{s:16:\"background-color\";s:25:\"var(--ast-global-color-4)\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:15:\"background-type\";s:5:\"color\";s:16:\"background-media\";s:0:\"\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"tablet\";a:12:{s:16:\"background-color\";s:25:\"var(--ast-global-color-4)\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:15:\"background-type\";s:5:\"color\";s:16:\"background-media\";s:0:\"\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"mobile\";a:12:{s:16:\"background-color\";s:25:\"var(--ast-global-color-4)\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:15:\"background-type\";s:5:\"color\";s:16:\"background-media\";s:0:\"\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}}s:12:\"link-h-color\";s:25:\"var(--ast-global-color-1)\";s:20:\"global-color-palette\";a:2:{s:7:\"palette\";a:9:{i:0;s:7:\"#507eff\";i:1;s:7:\"#000a66\";i:2;s:7:\"#1e293b\";i:3;s:7:\"#334155\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#F0F5FA\";i:6;s:7:\"#111111\";i:7;s:7:\"#D1D5DB\";i:8;s:7:\"#111111\";}s:4:\"flag\";b:0;}s:12:\"button-color\";s:25:\"var(--ast-global-color-4)\";s:14:\"button-h-color\";s:25:\"var(--ast-global-color-4)\";s:17:\"button-bg-h-color\";s:25:\"var(--ast-global-color-1)\";s:16:\"body-font-family\";s:20:\"\'Roboto\', sans-serif\";s:14:\"font-size-body\";a:6:{s:7:\"desktop\";i:18;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:20:\"headings-font-family\";s:20:\"\'Roboto\', sans-serif\";s:20:\"headings-font-weight\";s:7:\"inherit\";s:18:\"para-margin-bottom\";d:0.8;s:18:\"font-extras-button\";a:6:{s:11:\"line-height\";i:1;s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:1:\"1\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:9:\"uppercase\";s:15:\"text-decoration\";s:0:\"\";}s:16:\"font-size-button\";a:6:{s:7:\"desktop\";i:17;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}}', 'on'),
(166, 'allowed_astra_notices', 'a:2:{i:0;s:21:\"astra-sites-on-active\";i:1;s:18:\"astra-optin-notice\";}', 'auto'),
(167, 'astra_analytics_installed_time', '1769339688', 'off'),
(175, 'theme_mods_astra-child', 'a:4:{i:0;b:0;s:18:\"nav_menu_locations\";a:2:{s:7:\"primary\";i:2;s:11:\"mobile_menu\";i:2;}s:18:\"custom_css_post_id\";i:-1;s:11:\"custom_logo\";i:50;}', 'on'),
(3099, '_irb_h_bn_review', 'a:2:{s:5:\"users\";a:0:{}s:13:\"backup-backup\";i:1773766072;}', 'auto'),
(3095, 'bmi_hotfixes', 'a:5:{i:0;s:13:\"BMI_D17_M1_26\";i:1;s:14:\"BMI_D13_M12_01\";i:2;s:14:\"BMI_D20_M07_01\";i:3;s:18:\"BMI_D17_M12_Y21_02\";i:4;s:18:\"BMI_D13_M08_Y23_01\";}', 'auto'),
(3096, 'bmi_initial_installation_version', '2.1.1', 'auto'),
(403, 'elementor_active_kit', '26', 'auto'),
(391, 'nav_menu_options', 'a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}', 'off'),
(402, 'elementor_onboarded', '1', 'auto'),
(826, '_transient_health-check-site-status-result', '{\"good\":24,\"recommended\":2,\"critical\":1}', 'on'),
(404, 'elementor_font_display', 'swap', 'auto'),
(413, '_elementor_installed_time', '1769341844', 'auto'),
(414, 'elementor_connect_site_key', '25a8c6516ac199d21675f642cf788339', 'auto'),
(412, 'elementor_events_db_version', '1.0.0', 'off');
INSERT INTO `wpcn_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(393, '_site_transient_wp_plugin_dependencies_plugin_data', 'a:1:{s:9:\"elementor\";a:35:{s:4:\"name\";s:63:\"Elementor Website Builder &#8211; More Than Just a Page Builder\";s:4:\"slug\";s:9:\"elementor\";s:7:\"version\";s:6:\"3.35.7\";s:6:\"author\";s:64:\"<a href=\"https://profiles.wordpress.org/elemntor/\">Elementor</a>\";s:14:\"author_profile\";s:40:\"https://profiles.wordpress.org/elemntor/\";s:12:\"contributors\";a:1:{s:8:\"elemntor\";a:3:{s:7:\"profile\";s:40:\"https://profiles.wordpress.org/elemntor/\";s:6:\"avatar\";s:120:\"https://secure.gravatar.com/avatar/7d70f15d78757f876d1847a8f87dd93e1d9c168264b4aeeaf72058656690d05b?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:9:\"Elementor\";}}s:8:\"requires\";s:3:\"6.6\";s:6:\"tested\";s:5:\"6.9.4\";s:12:\"requires_php\";s:3:\"7.4\";s:16:\"requires_plugins\";a:0:{}s:6:\"rating\";i:90;s:7:\"ratings\";a:5:{i:5;i:6110;i:4;i:220;i:3;i:115;i:2;i:108;i:1;i:652;}s:11:\"num_ratings\";i:7205;s:11:\"support_url\";s:47:\"https://wordpress.org/support/plugin/elementor/\";s:15:\"support_threads\";i:86;s:24:\"support_threads_resolved\";i:64;s:15:\"active_installs\";i:10000000;s:12:\"last_updated\";s:22:\"2026-03-11 11:25am GMT\";s:5:\"added\";s:10:\"2016-05-30\";s:8:\"homepage\";s:87:\"https://elementor.com/?utm_source=wp-plugins&utm_campaign=plugin-uri&utm_medium=wp-dash\";s:8:\"sections\";a:6:{s:11:\"description\";s:25508:\"<p><span class=\"embed-youtube\" style=\"text-align:center; display: block;\"><iframe loading=\"lazy\" class=\"youtube-player\" width=\"750\" height=\"422\" src=\"https://www.youtube.com/embed/ROEC0CPRO3w?version=3&#038;rel=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;fs=1&#038;hl=en-US&#038;autohide=2&#038;wmode=transparent\" allowfullscreen=\"true\" style=\"border:0;\" sandbox=\"allow-scripts allow-same-origin allow-popups allow-presentation allow-popups-to-escape-sandbox\"></iframe></span></p>\n<h4>THE #1 NO CODE DRAG &amp; DROP WORDPRESS WEBSITE BUILDER POWERING 20M+ WEBSITES WORLDWIDE, NOW WITH AI.</h4>\n<p>Elementor, the leading WordPress website creation platform, empowers you to build professional, pixel-perfect websites seamlessly with its no-code, drag-and-drop Editor.</p>\n<p>Supporting the full website lifecycle, Elementor enables you to confidently build, optimize, and manage your website with extended capabilities such as AI-powered creation, image optimization, transactional email delivery, accessibility tools, performance boosters, and more.</p>\n<p>Unlock all features with <strong><a href=\"https://go.elementor.com/wp-repo-description-tab-elementor-pro-pro-features/\" rel=\"nofollow ugc\">Elementor One</a></strong>.</p>\n<p>Need fast and secure cloud hosting for your Elementor site? Try out <strong><a href=\"https://elemn.to/repo-hosting\" rel=\"nofollow ugc\">Elementor Host</a></strong> Powered by Google Cloud &amp; Cloudflare. 4.9/5 TrustPilot score.</p>\n<h3>🌟 Create Professional Stunning Websites</h3>\n<ul>\n<li><strong><a href=\"https://go.elementor.com/feature-page-editor/\" rel=\"nofollow ugc\">Intuitive Drag &amp; Drop Builder</a></strong>: Build any website with our no-code, drag-and-drop Editor. Achieve design precision with full control over layout and style.</li>\n<li><strong><a href=\"https://go.elementor.com/wp-repo-description-tab-pro-features-feature-page/\" rel=\"nofollow ugc\">Pixel-Perfect Design Tools</a></strong>: Upload SVGs, apply masks, gradients, box shadows, headline effects, shape dividers, and use built-in CSS controls for advanced customization.</li>\n<li><strong><a href=\"https://go.elementor.com/wp-repo-description-tab-library-full-website-kit/\" rel=\"nofollow ugc\">Template Library</a></strong>: Apply complete website kits for instant setups, or choose from a vast library of single pages, blocks, and pop-up templates.</li>\n<li><strong><a href=\"https://go.elementor.com/feature-page-editor/\" rel=\"nofollow ugc\">Advanced Widgets</a></strong>: Access over 40 FREE widgets, including heading, image, text editor, video, button, gallery, carousels, and more.</li>\n<li><strong><a href=\"https://go.elementor.com/wp-repo-description-tab-elementor-ai/\" rel=\"nofollow ugc\">AI Capabilities</a></strong>: Revolutionize your design and content creation process with native AI integration. Instantly create sections, text, code, and images.</li>\n</ul>\n<h4>🗝️ Key features:</h4>\n<ul>\n<li><strong><a href=\"https://go.elementor.com/feature-page-global-settings/\" rel=\"nofollow ugc\">Design System</a></strong>: Use Elementor’s Design System for consistent colors, typography, and design elements, ensuring a cohesive, professional look.</li>\n<li><strong><a href=\"https://go.elementor.com/feature-page-responsive-design/\" rel=\"nofollow ugc\">Responsive Design</a></strong>: Optimize your design for every device with custom breakpoints, ensuring a seamless desktop, tablet, and mobile experience.</li>\n<li><strong>Mask Shapes</strong>: Turning any element, like an image or video, into whatever shape you desire to create standout designs.</li>\n<li><strong>CSS Transform</strong>: Use CSS Transform to rotate, scale, and skew elements, adding dynamic styling to your site.</li>\n<li><strong>Entrance Animations</strong>: Add entrance animations to elements to create engaging and interactive user experiences.</li>\n<li><strong><a href=\"https://elementor.com/features/#SaveBackup\" rel=\"nofollow ugc\">Revision History</a></strong>: Elementor’s Revision History feature enables users to track and revert to previous versions of their designs, providing peace of mind and flexibility during the creative process.</li>\n<li><strong><a href=\"https://go.elementor.com/wp-repo-description-tab-developers-developers-website/\" rel=\"nofollow ugc\">Developer-Friendly</a></strong>: Equipped with extensive documentation, API, developer tools, and custom code areas, Elementor offers a conducive environment for developers to extend its capabilities and create custom solutions.</li>\n<li><strong><a href=\"https://elementor.com/features/contact-button/\" rel=\"nofollow ugc\">Floating Buttons</a></strong>: Enhance user interaction with customizable, floating action buttons that stay in view as users scroll.</li>\n<li><strong><a href=\"https://go.elementor.com/wp-repo-description-tab-pro-features-industry-leading-theme-builder/\" rel=\"nofollow ugc\">Theme Builder</a> [Pro]</strong>: Design every part of your site—headers, footers, posts, and archives—for complete control over appearance.</li>\n<li><strong><a href=\"https://go.elementor.com/wp-repo-description-tab-pro-features-popup-builder/\" rel=\"nofollow ugc\">Popup Builder</a> [Pro]</strong>: Create eye-catching popups with Elementor’s Popup Builder, equipped with advanced targeting and triggering options to optimize user engagement and conversions.</li>\n<li><strong><a href=\"https://go.elementor.com/wp-repo-description-tab-pro-features-professional-form-builder-and-submission-log/\" rel=\"nofollow ugc\">Forms</a> [Pro]</strong>: Design and integrate custom forms, utilizing advanced features and integrations to capture and manage submissions effectively.</li>\n<li><strong><a href=\"https://go.elementor.com/wp-repo-description-tab-pro-features-woocommerce-builder/\" rel=\"nofollow ugc\">WooCommerce Builder</a> [Pro]</strong>:  Integrate Elementor with WooCommerce to design custom product pages, shop layouts, archives, carts, checkout pages, my account, and more, enhancing your store’s visual appeal and functionality.</li>\n<li><strong><a href=\"https://go.elementor.com/wp-repo-description-tab-pro-features-dynamic-content/\" rel=\"nofollow ugc\">Dynamic Content</a> [Pro]</strong>: Leverage dynamic content capabilities to create personalized and interactive web experiences by connecting your designs to various data sources.</li>\n<li><strong><a href=\"https://go.elementor.com/features-page-notes/\" rel=\"nofollow ugc\">Notes</a> [Pro]</strong>: Enhance team collaboration by using Elementor’s Notes feature to leave feedback and comments directly on the design interface.</li>\n<li><strong>Custom Code [Pro]</strong>: Insert custom code to extend the functionality of your site, offering flexibility for advanced customizations.</li>\n<li><strong>Custom CSS [Pro]</strong>: Apply Custom CSS to fine-tune the styling of elements, ensuring precise control over the design aspects.</li>\n<li><strong><a href=\"https://go.elementor.com/wp-repo-description-tab-pro-features-motion-effects/\" rel=\"nofollow ugc\">Motion Effects</a> [Pro]</strong>: Add advanced motion effects to elements for a more dynamic and engaging user experience.</li>\n<li><strong>Custom Fonts &amp; Icons [Pro]</strong>: Upload and use custom fonts and icons to match your brand’s identity.</li>\n</ul>\n<h4>😍 Elementor FREE widgets</h4>\n<p>Unlock the potential of Elementor with our comprehensive suite of free widgets and tools, designed to empower your website creation process and elevate your design capabilities:</p>\n<ul>\n<li><strong>Heading</strong>. Add eye-catching headlines.</li>\n<li><strong>Image</strong>. Control the size, opacity and more.</li>\n<li><strong>Text Editor</strong>. Just like the WordPress text editor.</li>\n<li><strong>Video</strong>. Add YouTube, Vimeo, VideoPress, Dailymotion or self-hosted videos.</li>\n<li><strong>Button</strong>. Create interactive buttons.</li>\n<li><strong>Link in Bio</strong>. Build link in bio components to promote your business / services.</li>\n<li><strong>Image Box</strong>. A box with image, headline and text.</li>\n<li><strong>Testimonials</strong>. Customer testimonials.</li>\n<li><strong>Icon</strong>. Place one or more of 600+ icons available.</li>\n<li><strong>Icon Box</strong>. An icon, headline, and text with one widget.</li>\n<li><strong>Social Icons</strong>. Link to your social pages with the Facebook/X (formerly Twitter) icons.</li>\n<li><strong>Image Gallery</strong>. Display your images in a grid.</li>\n<li><strong>Image Carousel</strong>. Create rotating carousels or sliders for chosen images.</li>\n<li><strong>Icon List</strong>. Use any icon to create a bullet list.</li>\n<li><strong>Counter</strong>. Show numbers in an escalating manner.</li>\n<li><strong>Progress Bar</strong>. Include an escalating progress bar.</li>\n<li><strong>Nested Tabs</strong>. Display content in vertical or horizontal tabs.</li>\n<li><strong>Nested Accordion</strong>. Display any type of content in collapsible sections.</li>\n<li><strong>Rating</strong>. Display how many stars (or another icon) other visitors gave.</li>\n<li><strong>Alert</strong>. Include a colored alert box to draw visitor’s attention.</li>\n<li><strong>HTML</strong>. Insert code into the page.</li>\n<li><strong>Shortcode</strong>. Insert shortcodes from any plugin into the page.</li>\n<li><strong>Menu Anchor</strong>. Link any menu to this anchor.</li>\n<li><strong>Read More</strong>. Set the Read More cut-off for the excerpt in archive pages.</li>\n<li><strong>Sidebar</strong>. Add sidebars onto the page.</li>\n<li><strong>Google Maps</strong>. Embed maps into the page.</li>\n<li><strong>SoundCloud</strong>. Add SoundCloud audio bits.</li>\n<li><strong>Divider</strong>. Separate content with a designed divider.</li>\n<li><strong>Spacer</strong>. Add space between elements.</li>\n<li><strong>Text Path</strong>. Attach your text to a path.</li>\n<li><strong>And counting&#8230;</strong></li>\n</ul>\n<h3>🚀 Enhance Your Website</h3>\n<p><strong><a href=\"https://go.elementor.com/wp-repo-description-tab-performance-performance-page/\" rel=\"nofollow ugc\">High-Performing Websites</a></strong>: Website performance impacts your visitor’s experience and search result ranking. Elementor, in partnership with Google Chrome, continuously enhances performance without compromising design.</p>\n<p><strong>Key features include:</strong></p>\n<ul>\n<li><strong>Reduced DOM Output</strong>: Streamlined HTML structure for faster rendering.</li>\n<li><strong>Improved Media File Loading</strong>: Optimized loading of images, videos, and other media assets.</li>\n<li><strong>Reduced CSS and JS Files</strong>: Minimized stylesheets and scripts individually loaded only on demand for quicker loading times.</li>\n<li><strong>Lazy Loading</strong>: Deferred loading of non-critical resources to improve initial page load speed.</li>\n<li><strong>Faster Font Loading</strong>: Efficient delivery of web fonts to enhance text rendering speed.</li>\n<li><strong>Optimized Front-End Asset Loading</strong>: Efficient loading of assets like JavaScript and CSS to minimize render-blocking.</li>\n<li><strong>Element Caching</strong>: Cache frequently accessed design elements to reduce server response time and enhance overall performance.</li>\n</ul>\n<h3>🔥 Elementor Editor Pro Features</h3>\n<p>Create unparalleled websites while saving time, money and resources with <a href=\"https://go.elementor.com/wp-repo-description-tab-elementor-pro-elementor-pro/\" rel=\"nofollow ugc\">Elementor Editor Pro</a>’s full website builder. Get access to 100+ professional widgets, features, and tools.</p>\n<p><strong>Editor Pro Design Widgets:</strong></p>\n<ol>\n<li><strong>Posts</strong>: Display your blog posts with customizable layouts and styles.</li>\n<li><strong>Share Buttons</strong>: Allow visitors to easily share your content on various social media platforms.</li>\n<li><strong>Portfolio</strong>: Showcase your work or projects with stunning portfolio layouts.</li>\n<li><strong>Slides</strong>: Create dynamic slideshows with custom animations and transitions.</li>\n<li><strong>Form</strong>: Design and customize advanced forms for user interaction and data collection.</li>\n<li><strong>Login</strong>: Add a login form or user registration module to your website.</li>\n<li><strong>Nav Menu</strong>: Customize and style your website&#8217;s navigation menu for better user experience.</li>\n<li><strong>Animated Headline</strong>: Create attention-grabbing headlines with animated effects.</li>\n<li><strong>Price Table</strong>: Display pricing plans or packages in a structured and visually appealing format.</li>\n<li><strong>Price List</strong>: Showcase a list of prices or services with customizable styling options.</li>\n<li><strong>Gallery</strong>: Create beautiful image galleries with various layout options and lightbox support.</li>\n<li><strong>Flip Box</strong>: Add interactive flip animations to highlight content or features.</li>\n<li><strong>Call to Action</strong>: Encourage user interaction and conversions with compelling call-to-action sections.</li>\n<li><strong>Media Carousel</strong>: Showcase a carousel of media files such as images or videos.</li>\n<li><strong>Testimonial Carousel</strong>: Display client testimonials in a carousel format for social proof.</li>\n<li><strong>Nested Carousel</strong>: Create nested carousels for more complex content organization.</li>\n<li><strong>Loop Carousel</strong>: Display content in a looped carousel for continuous viewing.</li>\n<li><strong>Table Of Content</strong>: Generate a table of contents for longer articles or guides to improve navigation.</li>\n<li><strong>Countdown</strong>: Add countdown timers to create urgency for promotions or events.</li>\n<li><strong>Facebook Page</strong>: Embed your Facebook page feed or content onto your website.</li>\n<li><strong>Blockquote</strong>: Highlight quotes or testimonials with stylish formatting options.</li>\n<li><strong>Template</strong>: Save and reuse design templates for consistent branding and layout.</li>\n<li><strong>Reviews</strong>: Showcase customer reviews and ratings to build trust and credibility.</li>\n<li><strong>Facebook Button</strong>: Add buttons to promote interactions with your Facebook page or content.</li>\n<li><strong>Facebook Embed</strong>: Embed Facebook posts or content onto your website.</li>\n<li><strong>Facebook Comments</strong>: Enable Facebook comments on your website&#8217;s pages or posts.</li>\n<li><strong>PayPal Button</strong>: Integrate PayPal buttons for easy online payments.</li>\n<li><strong>Stripe Button</strong>: Integrate Stripe payment buttons to facilitate secure online transactions.</li>\n<li><strong>Lottie Widget</strong>: Add Lottie animations to enhance visual appeal and engagement.</li>\n<li><strong>Code Highlight</strong>: Display code snippets with syntax highlighting for better readability.</li>\n<li><strong>Video Playlist</strong>: Create and customize playlists for video content on your website.</li>\n<li><strong>Mega Menu</strong>: Customize advanced menus for better navigation and displaying complex content.</li>\n<li><strong>Off Canvas</strong>: Create off-canvas areas that slide in to show extra info or menus without cluttering the main layout.</li>\n</ol>\n<p><strong>Editor Pro Theme Widgets:</strong></p>\n<p>Build and customize all the key parts of your website including headers, footers, 404 page, global archives, and more&#8230;</p>\n<ol>\n<li><strong>Post Title</strong>: Customize the title of individual blog posts or pages.</li>\n<li><strong>Post Excerpt</strong>: Display a brief summary or teaser of your blog posts.</li>\n<li><strong>Post Content</strong>: Customize the main content area of your blog posts or pages.</li>\n<li><strong>Featured Image</strong>: Set and customize featured images for blog posts or pages.</li>\n<li><strong>Author Box</strong>: Display author information and bios on blog posts.</li>\n<li><strong>Post Comments</strong>: Customize the appearance and functionality of comments sections on your website.</li>\n<li><strong>Post Navigation</strong>: Add navigation links to adjacent posts for easy browsing.</li>\n<li><strong>Post Info</strong>: Display additional information about blog posts, such as author and date.</li>\n<li><strong>Site Logo</strong>: Upload and customize your website&#8217;s logo for branding purposes.</li>\n<li><strong>Site Title</strong>: Customize the title of your website.</li>\n<li><strong>Page Title</strong>: Customize the title of individual pages.</li>\n<li><strong>Search Bar</strong>: Add a search bar to allow users to search your website&#8217;s content.</li>\n<li><strong>Breadcrumbs</strong>: Display hierarchical navigation paths for better user navigation.</li>\n<li><strong>Sitemap</strong>: Generate a sitemap for better search engine indexing and user navigation.</li>\n<li><strong>Loop Grid</strong>: Design and customize grid layouts for blog post archives or product listings.</li>\n</ol>\n<p><strong>Editor Pro WooCommerce Widgets:</strong></p>\n<p>Design and customize a complete online shopping experience across your entire website.</p>\n<ol>\n<li><strong>Product</strong>: Display individual products with customizable layouts and styles.</li>\n<li><strong>Breadcrumbs</strong>: Display hierarchical navigation paths for better user navigation within your store.</li>\n<li><strong>Product Title</strong>: Customize the title of individual products.</li>\n<li><strong>Product Images</strong>: Set and customize images for product listings.</li>\n<li><strong>Product Price</strong>: Display the price of individual products.</li>\n<li><strong>Add To Cart</strong>: Add customizable add to cart buttons for easy purchasing.</li>\n<li><strong>Product Rating</strong>: Display ratings and reviews for products.</li>\n<li><strong>Product Stock</strong>: Display stock availability for products.</li>\n<li><strong>Product Meta</strong>: Display additional information about products, such as SKU and categories.</li>\n<li><strong>Product Content</strong>: Customize the main content area of product descriptions.</li>\n<li><strong>Short Description</strong>: Display brief summaries or teasers of products.</li>\n<li><strong>Product Data Tabs</strong>: Organize product information into tabbed sections for better organization.</li>\n<li><strong>Additional Information</strong>: Display additional details about products, such as dimensions and weight.</li>\n<li><strong>Product Related</strong>: Showcase related products to encourage additional purchases.</li>\n<li><strong>Upsells</strong>: Promote upsell products to increase average order value.</li>\n<li><strong>Products</strong>: Display a grid or list of products with customizable settings.</li>\n<li><strong>Custom Add To Cart</strong>: Customize the add to cart button for specific products.</li>\n<li><strong>WooCommerce Pages</strong>: Design and customize WooCommerce-specific pages, such as the cart and checkout pages.</li>\n<li><strong>Product Categories</strong>: Display product categories for easy navigation within your store.</li>\n<li><strong>Menu Cart</strong>: Display a cart icon in your navigation menu for easy access to the shopping cart.</li>\n<li><strong>Cart</strong>: Customize the appearance and functionality of the shopping cart page.</li>\n<li><strong>Checkout</strong>: Customize the appearance and functionality of the checkout page.</li>\n<li><strong>My Account</strong>: Customize the appearance and functionality of the customer account area.</li>\n<li><strong>Purchase Summary</strong>: Display a summary of purchases during the checkout process.</li>\n<li><strong>WooCommerce Notices</strong>: Customize the appearance and functionality of WooCommerce notices, such as order confirmation messages.</li>\n</ol>\n<p>Build professional websites with <strong><a href=\"https://go.elementor.com/wp-repo-description-tab-elementor-pro-elementor-pro/\" rel=\"nofollow ugc\">Elementor Editor Pro</a></strong>!</p>\n<h4>🔒 SECURITY AND COMPLIANCE</h4>\n<p>Elementor places a paramount focus on security, evident through our acquisition of industry certifications such as ISO/IEC 27001, ISO/IEC 27017, ISO/IEC 27018, ISO/IEC 27701, and SOC 2 Type II. These certifications underscore our commitment to implementing robust security measures, and highlight our dedication to adhering to recognized industry standards.</p>\n<p>We encourage ethical security research through our <a href=\"https://go.elementor.com/wp-repo-description-tab-bug-crowd-bug-bounty-program/\" rel=\"nofollow ugc\">Bug Bounty program</a>. We collaborate with leading bug bounty services to provide opportunities for researchers to report vulnerabilities in our services. Our bounty programs include a triage team available 24/7/365.</p>\n<p>For more information: <a href=\"https://go.elementor.com/trust-center/\" rel=\"nofollow ugc\">Trust Center</a>.</p>\n<h4>♿ Accessibility Best Practices</h4>\n<p>Elementor offers accessibility tools and enhancements to help you provide a better experience for all users. Including HTML 5 semantic, full keyboard navigation menu, ongoing improvement of features, widget, and more.</p>\n<h4>🌐 Translated to 63+ languages, includes RTL support</h4>\n<p>Elementor supports multiple languages, typographies, and RTL, with editor translations in <a href=\"https://go.elementor.com/wp-repo-description-tab-wordpress-plugin-translate/\" rel=\"nofollow ugc\">over 63 languages</a>.</p>\n<p>It’s also compatible with WPML, Polylang, TranslatePress, Weglot, and more. To contribute, add a new language via <a href=\"https://translate.wordpress.org\" rel=\"nofollow ugc\">translate.wordpress.org</a>. See our guide on <a href=\"https://go.elementor.com/wp-repo-description-tab-help-center-translate/\" rel=\"nofollow ugc\">how to translate and localize the plugin</a>.</p>\n<h4>⏩ Use of 3rd Party Services</h4>\n<p>To improve the user experience, Elementor may use the following 3rd party services if the required feature is enabled:</p>\n<ul>\n<li>Google Fonts – are loaded to add additional fonts to your website. Google’s <a href=\"https://policies.google.com/terms\" rel=\"nofollow ugc\">TOS</a> and <a href=\"https://policies.google.com/privacy\" rel=\"nofollow ugc\">Privacy Policy</a> apply.</li>\n<li>Some Elementor features require loading assets from Elementor.com. These assets are not used for tracking unless explicitly mentioned, requiring your approval and manual opt-in. Learn more in our <a href=\"https://go.elementor.com/wp-repo-description-tab-elementor-plugin-terms/\" rel=\"nofollow ugc\">TOS</a> and <a href=\"https://go.elementor.com/wp-repo-description-tab-elementor-plugin-privacy/\" rel=\"nofollow ugc\">Privacy Policy</a>.</li>\n</ul>\n<h4>📧 Related Products by Elementor</h4>\n<p><strong><a href=\"https://go.elementor.com/wp-repo-description-tab-elementor-io/\" rel=\"nofollow ugc\">Image Optimizer</a></strong>: Superior image compression for faster, high-quality website performance.</p>\n<p><strong><a href=\"https://go.elementor.com/wp-repo-description-tab-elementor-sm/\" rel=\"nofollow ugc\">Site Mailer</a></strong>: Reliable email management without SMTP plugins, keeping your communications streamlined and efficient.</p>\n<p><strong><a href=\"http://go.elementor.com/editor-acc-wp-repo\" rel=\"nofollow ugc\">Ally</a></strong>: Enhances website usability for individuals with disabilities. Ally is designed to help web creators make their websites more inclusive. It scans, detects, and remediate key accessibility violations, working seamlessly on all WordPress and Elementor websites.</p>\n<h4>📣 See What Our Users Have to Say</h4>\n<blockquote>\n<p>“Elementor is hands down the best page builder out there” – ★★★★★ <em><a href=\"https://wordpress.org/support/topic/elementor-is-hands-down-the-best-page-builder-out-there/\" rel=\"ugc\">Graphicvision1</a></em></p>\n<p>“An incredibly user-friendly plugin” – ★★★★★ <em><a href=\"https://wordpress.org/support/topic/a-wonderful-experience/\" rel=\"ugc\">Hyeyoga</a></em></p>\n<p>“Easily, my most used WP plugin” – ★★★★★ <em><a href=\"https://wordpress.org/support/topic/easily-my-most-used-wp-plugin/\" rel=\"ugc\">Xander Venske</a></em></p>\n<p>“I upgraded to the Pro version and just love this plugin!” – ★★★★★ <em><a href=\"https://wordpress.org/support/topic/love-elementor-17/\" rel=\"ugc\">Andybarn56</a></em></p>\n<p>“Excellent product with great tech support” – ★★★★★ <em><a href=\"https://wordpress.org/support/topic/excellent-product-with-great-tech-support/\" rel=\"ugc\">Martywilsonnj</a></em></p>\n</blockquote>\n<p><em><a href=\"https://wordpress.org/support/plugin/elementor/reviews/?filter=5\" rel=\"ugc\">More testimonials</a></em></p>\n<h4>🌍 Join a Global Community</h4>\n<p>Join a global community that helps each other achieve their goals.</p>\n<ul>\n<li><a href=\"https://elemn.to/discord\" rel=\"nofollow ugc\">Discord Community</a> – Chat with Web Creators, discuss specific topics in dedicated channels.</li>\n<li><a href=\"https://go.elementor.com/wp-repo-description-tab-facebook-group/\" rel=\"nofollow ugc\">Facebook Community</a> &#8211; Over 150K+ members, offering support, advice, feedback, and tutorials.</li>\n<li><a href=\"https://go.elementor.com/wp-repo-description-tab-github-repo/\" rel=\"nofollow ugc\">GitHub Community</a> &#8211; Get information about releases, request features, or report a bug.</li>\n<li><a href=\"https://go.elementor.com/wp-repo-description-tab-addons-dozens-of-elementor-addons/\" rel=\"nofollow ugc\">Elementor Addons, Themes, and Kits</a> Themes and Kits  &hellip;</li>\n</ul>\n\";s:12:\"installation\";s:1602:\"<h4>Minimum Requirements</h4>\n<ul>\n<li>WordPress 6.5 or greater</li>\n<li>PHP version 7.4 or greater</li>\n<li>MySQL version 5.0 or greater</li>\n</ul>\n<h4>Recommended Requirements</h4>\n<ul>\n<li>PHP version 8.1 or greater</li>\n<li>MySQL version 5.6 or greater</li>\n<li>WordPress Memory limit of 64 MB or greater (128 MB or higher is preferred)</li>\n</ul>\n<p><span class=\"embed-youtube\" style=\"text-align:center; display: block;\"><iframe loading=\"lazy\" class=\"youtube-player\" width=\"750\" height=\"422\" src=\"https://www.youtube.com/embed/9EZ159ryFNs?version=3&#038;rel=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;fs=1&#038;hl=en-US&#038;autohide=2&#038;wmode=transparent\" allowfullscreen=\"true\" style=\"border:0;\" sandbox=\"allow-scripts allow-same-origin allow-popups allow-presentation allow-popups-to-escape-sandbox\"></iframe></span></p>\n<h4>Installation</h4>\n<ol>\n<li>Install using the WordPress built-in Plugin installer, or Extract the zip file and drop the contents in the <code>wp-content/plugins/</code> directory of your WordPress installation.</li>\n<li>Activate the plugin through the &#8216;Plugins&#8217; menu in WordPress.</li>\n<li>Go to Pages &gt; Add New</li>\n<li>Press the &#8216;Edit with Elementor&#8217; button.</li>\n<li>Now you can drag and drop widgets from the left panel onto the content area, as well as add new sections and columns that make up the page structure.</li>\n</ol>\n<p>For documentation and tutorials visit our <a href=\"https://elementor.com/help/?utm_source=wp-repo&amp;utm_medium=link&amp;utm_campaign=readme\" rel=\"nofollow ugc\">Knowledge Base</a>.</p>\n\";s:3:\"faq\";s:5070:\"\n<dt id=\"how%20do%20i%20install%20elementor%20editor%3F\">\nHow do I install Elementor Editor?\n</h4>\n<p>\n<p>To install the free version of Elementor Editor, follow the steps below:<br />\nFrom your WordPress dashboard -&gt; Go to Plugins -&gt; Click on &#8216;Add new&#8217;-&gt; In the Search field, enter Elementor and choose Elementor website builder.<br />\nPress install -&gt; After installation, click Activate.</p>\n</p>\n<dt id=\"does%20elementor%20editor%20work%20with%20all%20the%20themes%3F\">\nDoes Elementor Editor work with all the themes?\n</h4>\n<p>\n<p>Elementor Editor works all the themes that respect the coding standards of WordPress set by its Codex. It is recommended to use Elementor&#8217;s <a href=\"https://go.elementor.com/wp-repo-description-tab-hello-theme-hello-theme/\" rel=\"nofollow ugc\">Hello Theme</a>, a lightweight blank canvas, to enjoy full flexibility when using Elementor Editor, and optimize your experience.</p>\n</p>\n<dt id=\"is%20elementor%20editor%20compatible%20with%20gutenberg%3F\">\nIs Elementor Editor compatible with Gutenberg?\n</h4>\n<p>\n<p>Elementor Editor and Gutenberg work seamlessly together. As a user, you can easily decide which editor to use at every point while editing your site.</p>\n</p>\n<dt id=\"can%20i%20create%20an%20online%20store%3F\">\nCan I create an online store?\n</h4>\n<p>\n<p>Yes, with the Elementor Editor Pro WooCommerce Builder you can customize every page of your store to create an amazing customer experience that drives sales.</p>\n</p>\n<dt id=\"does%20it%20work%20with%20other%20wordpress%20plugins%3F\">\nDoes it work with other WordPress plugins?\n</h4>\n<p>\n<p>It works with almost all the plugins. If you experience an incompatibility issue, please report it to us and to the plugin that conflicts with Elementor Editor.</p>\n</p>\n<dt id=\"do%20i%20need%20to%20know%20how%20to%20code%3F\">\nDo I need to know how to code?\n</h4>\n<p>\n<p>No! Elementor Editor provides you with all the widgets and features that you need to build a professional website without using code.</p>\n</p>\n<dt id=\"do%20i%20need%20to%20know%20how%20to%20design%3F\">\nDo I need to know how to design?\n</h4>\n<p>\n<p>No, you can choose between professionally designed kits and templates that fit to every industry and have all you need to create your own professional website.</p>\n</p>\n<dt id=\"will%20elementor%20editor%20slow%20down%20my%20website%3F\">\nWill Elementor Editor slow down my website?\n</h4>\n<p>\n<p>As Elementor prioritizes speed and performance, you enjoy better and faster performance with each new version of the Editor. When testing the same page layout on older versions you can see a significant performance improvement, from a score of 82 in Google PageSpeed Insight in version 3.1, to a score of 95 i in version 3.5.</p>\n</p>\n<dt id=\"is%20my%20site%20secure%20with%20elementor%20editor%3F\">\nIs my site secure with Elementor Editor?\n</h4>\n<p>\n<p>The security of your website is extremely important to us and we take proactive measures to assure that your websites are secure. Elementor is ISO 27001 certified, and has a dedicated team of security professionals that implements industry best-practices for maximum security and compliance, 24/7.</p>\n<p>There is also a managed security Bug Bounty program, utilizing the community power by enabling 24/7/365 crowdsourced vulnerability detection.</p>\n</p>\n<dt id=\"can%20i%20buy%20templates%20separately%3F\">\nCan I buy templates separately?\n</h4>\n<p>\n<p>Of course, you can use any template that supports Elementor Editor.</p>\n</p>\n<dt id=\"is%20elementor%20editor%20compatible%20with%20post%20and%20custom%20post%20types%3F\">\nIs Elementor Editor compatible with Post and Custom Post Types?\n</h4>\n<p>\n<p>Of course! You can set which post types will enable Elementor in the settings page.</p>\n</p>\n<dt id=\"what%20is%20the%20difference%20between%20elementor%27s%20free%20editor%20plugin%20and%20elementor%20editor%20pro%3F\">\nWhat is the difference between Elementor&#8217;s free Editor plugin and Elementor Editor Pro?\n</h4>\n<p>\n<p>Elementor Editor’s Free version allows you to explore our revolutionary drag &amp; drop live editor, basic widgets and templates. Elementor Editor Pro (Essential, Advanced, Expert, Studio, and Agency) empowers you with more professional tools that speed up your workflow, give you access to human-powered support, help you build more advanced content, and convert visitors. See full comparison here.</p>\n</p>\n<dt id=\"how%20can%20i%20become%20a%20contributor%3F\">\nHow can I become a Contributor?\n</h4>\n<p>\n<p>If you want to contribute, go to our <a href=\"https://github.com/elementor/elementor\" rel=\"nofollow ugc\">Elementor GitHub Repository</a> and see where you can help.<br />\nYou can also add a new language via <a href=\"https://go.elementor.com/wp-repo-description-tab-wordpress-plugin-translate/\" rel=\"nofollow ugc\">translate.wordpress.org</a>. We’ve built a short guide explaining <a href=\"https://go.elementor.com/wp-repo-description-tab-wordpress-plugin-translate-faq/\" rel=\"nofollow ugc\">how to translate and localize the plugin</a>.</p>\n</p>\n\n\";s:9:\"changelog\";s:3642:\"<h4>3.35.7 &#8211; 2026-03-11</h4>\n<ul>\n<li>Fix: General UI issues in Editor screens in WordPress Admin</li>\n</ul>\n<h4>3.35.6 &#8211; 2026-03-03</h4>\n<ul>\n<li>Tweak: Improved compatibility with WordPress 7.0</li>\n<li>Security Fix: Improved code security enforcement in request handling</li>\n<li>Security Fix: Improved code security enforcement in Lightbox</li>\n<li>Security Fix: Improved code security enforcement in image loading</li>\n<li>Fix: General UI issues in Editor screens in WordPress Admin</li>\n<li>Fix: Inline editing toolbar is hidden behind the editor panel in various scenarios &#8211; Editor V4</li>\n<li>Fix: Styles do not load as expected when using nested templates inside the Editor &#8211; Editor V4</li>\n<li>Fix: Properties do not work as expected in certain scenarios in Components &#8211; Editor V4</li>\n</ul>\n<h4>3.35.5 &#8211; 2026-02-17</h4>\n<ul>\n<li>Security Fix: Improved code security enforcement in global style settings</li>\n<li>Fix: General UI issues in Editor screens in WordPress Admin</li>\n</ul>\n<h4>3.35.4 &#8211; 2026-02-11</h4>\n<ul>\n<li>Fix: License activation issues in various scenarios</li>\n<li>Fix: General UI issues in Editor screens in WordPress Admin</li>\n<li>Fix: Inline editing UI issues on canvas &#8211; Editor V4</li>\n</ul>\n<h4>3.35.3 &#8211; 2026-02-05</h4>\n<ul>\n<li>Fix: Fatal error appears in dashboard widget in WordPress Admin (<a href=\"https://github.com/elementor/elementor/issues/34663\" rel=\"nofollow ugc\">#34663</a>, <a href=\"https://github.com/elementor/elementor/issues/34659\" rel=\"nofollow ugc\">#34659</a>)</li>\n</ul>\n<h4>3.35.2 &#8211; 2026-02-05</h4>\n<ul>\n<li>Fix: Editor menu in WordPress admin displays incorrectly in RTL</li>\n</ul>\n<h4>3.35.1 &#8211; 2026-02-04</h4>\n<ul>\n<li>Fix: Editor Top Bar does not appear in various scenarios (<a href=\"https://github.com/elementor/elementor/issues/34623\" rel=\"nofollow ugc\">#34623</a>)</li>\n<li>Fix: Fatal error when the PHP <code>mbstring</code> module is missing</li>\n<li>Fix: General UI issues in Editor screens in WordPress Admin</li>\n</ul>\n<h4>3.35.0 &#8211; 2026-02-02</h4>\n<ul>\n<li>New: Introducing Components &#8211; reusable layout building blocks with global sync and per-instance content overrides &#8211; Editor V4</li>\n<li>New: Introducing Inline Editing &#8211; edit Atomic Heading and Paragraph text directly on the canvas &#8211; Editor V4</li>\n<li>New: Introducing a contextual formatting toolbar for inline text editing, including links and common text styles &#8211; Editor V4</li>\n<li>Tweak: Version 4 status updated to Beta and production-ready &#8211; Editor V4</li>\n<li>Tweak: Children perspective controls available only for relevant parent elements &#8211; Editor V4</li>\n<li>Tweak: <code>:hover</code> styling automatically applies to <code>:focus-visible</code> for improved accessibility &#8211; Editor V4</li>\n<li>Tweak: Dynamic tags support added to color picker controls &#8211; Editor V4</li>\n<li>Tweak: Link and Button accessibility improvements in Dynamic Tags &#8211; Editor V4</li>\n<li>Tweak: Nested Accordion optimizations with Grid in Chrome browser</li>\n<li>Fix: Size link-unlink operations not applying consistently &#8211; Editor V4</li>\n<li>Fix: Div Block and Flexbox base styles overriding user settings when viewed from another document &#8211; Editor V4</li>\n<li>Fix: Flex and Div blocks lose selection when deleting an assigned class via the Class Manager &#8211; Editor V4</li>\n<li>Fix: Container handles not visible when &#8220;Overflow: Hidden&#8221; is enabled</li>\n</ul>\n<p><a href=\"https://go.elementor.com/full-changelog/\" rel=\"nofollow ugc\">See changelog for all versions.</a></p>\n\";s:11:\"screenshots\";s:3162:\"<ol><li><a href=\"https://ps.w.org/elementor/assets/screenshot-1.gif?rev=3005087\"><img src=\"https://ps.w.org/elementor/assets/screenshot-1.gif?rev=3005087\" alt=\"&lt;strong&gt;Visual Drag and Drop Editor&lt;/strong&gt; - Design your website layouts and place any element anywhere on the page for pixel-perfect designs.\"></a><p><strong>Visual Drag and Drop Editor</strong> - Design your website layouts and place any element anywhere on the page for pixel-perfect designs.</p></li><li><a href=\"https://ps.w.org/elementor/assets/screenshot-2.gif?rev=3005087\"><img src=\"https://ps.w.org/elementor/assets/screenshot-2.gif?rev=3005087\" alt=\"&lt;strong&gt;Full Design System&lt;/strong&gt; - Enjoy a professional workflow and ensure consistency across your site. Define your settings, use them globally, and instantly adjust them any time.\"></a><p><strong>Full Design System</strong> - Enjoy a professional workflow and ensure consistency across your site. Define your settings, use them globally, and instantly adjust them any time.</p></li><li><a href=\"https://ps.w.org/elementor/assets/screenshot-3.gif?rev=3005087\"><img src=\"https://ps.w.org/elementor/assets/screenshot-3.gif?rev=3005087\" alt=\"&lt;strong&gt;Responsive Design&lt;/strong&gt; Fully edit your website and customize the behavior on desktop, tablet, &amp; mobile to optimize the visitor experience on every device.\"></a><p><strong>Responsive Design</strong> Fully edit your website and customize the behavior on desktop, tablet, &amp; mobile to optimize the visitor experience on every device.</p></li><li><a href=\"https://ps.w.org/elementor/assets/screenshot-4.gif?rev=3005087\"><img src=\"https://ps.w.org/elementor/assets/screenshot-4.gif?rev=3005087\" alt=\"&lt;strong&gt;Kits and Templates&lt;/strong&gt; - Jumpstart your web creation process or get inspired with professionally-designed templates or full website kits available for your immediate customization.\"></a><p><strong>Kits and Templates</strong> - Jumpstart your web creation process or get inspired with professionally-designed templates or full website kits available for your immediate customization.</p></li><li><a href=\"https://ps.w.org/elementor/assets/screenshot-5.gif?rev=3005087\"><img src=\"https://ps.w.org/elementor/assets/screenshot-5.gif?rev=3005087\" alt=\"&lt;strong&gt;Nested Elements&lt;/strong&gt; Leverage Elementor Editor&#039;s Nested widgets to place any widget inside the content area of another widget - like Tabs, and Accordion for complete design flexibility.\"></a><p><strong>Nested Elements</strong> Leverage Elementor Editor\'s Nested widgets to place any widget inside the content area of another widget - like Tabs, and Accordion for complete design flexibility.</p></li><li><a href=\"https://ps.w.org/elementor/assets/screenshot-6.gif?rev=3005087\"><img src=\"https://ps.w.org/elementor/assets/screenshot-6.gif?rev=3005087\" alt=\"&lt;strong&gt;Motion Effects&lt;/strong&gt; - Add entrance animations and transitions to any element in your website to captivate visitors.\"></a><p><strong>Motion Effects</strong> - Add entrance animations and transitions to any element in your website to captivate visitors.</p></li></ol>\";s:7:\"reviews\";s:17749:\"<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Powerful Builder with Great Flexibility</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"4 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"4\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/dashaun645/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/da66a9bb97a08f0cbed50e63c157eac0509f3d744ef828dc5dd4d904efaa5848?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/da66a9bb97a08f0cbed50e63c157eac0509f3d744ef828dc5dd4d904efaa5848?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/dashaun645/\" class=\"reviewer-name\">dashaun645</a> on <span class=\"review-date\">March 16, 2026</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>Elementor Website Builder makes designing pages in WordPress very easy, even without coding knowledge. The drag-and-drop editor is smooth and offers plenty of design options. While some advanced features require the pro version, the free version is still very useful for creating modern layouts. Overall, a reliable and beginner-friendly page builder.</p>\n<!-- /wp:paragraph --></div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Great Builder</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/raheembrittain/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/838b716de56c3ba61e150d1ff88f24a38a41a8f185c223849cada5c5d73e30af?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/838b716de56c3ba61e150d1ff88f24a38a41a8f185c223849cada5c5d73e30af?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/raheembrittain/\" class=\"reviewer-name\">raheembrittain</a> on <span class=\"review-date\">March 16, 2026</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>Using Elementor for a few weeks now. Setup was easy &amp; UI feels clean. Drag &amp; drop works smoothly, helped me build pages fast even without coding. Some things take time to learn, but overall very useful plugin. tnkz devs 👍</p>\n<!-- /wp:paragraph --></div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Good but limited on the free version</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"4 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"4\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/am0031/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/d9dd6f8eaeac06b6b0d349072719669a3f84c34306dfd8455636b448957c9802?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/d9dd6f8eaeac06b6b0d349072719669a3f84c34306dfd8455636b448957c9802?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/am0031/\" class=\"reviewer-name\">am0031</a> on <span class=\"review-date\">March 15, 2026</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>It\'s a really nice page builder, much nicer than being on the plain edit pages and when you get the hang of it, it does make things easier. The only thing I don\'t like is that it\'s limited in components types on the free version. You shouldn\'t have to go to the pro version to get the Loop Grid component, that\'s a big problem in my opinion.<br />I can\'t comment on the regular updates and how it affects it, I\'ve only been using it for 2 months. So far, it\'s ok.</p>\n<!-- /wp:paragraph --></div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Excellent constructeur de site</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/vincentgiordano/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/6dc51519214f3d699407ed5114e15f1b0c5d1eaaef73540e383b526570bb2726?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/6dc51519214f3d699407ed5114e15f1b0c5d1eaaef73540e383b526570bb2726?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/vincentgiordano/\" class=\"reviewer-name\">vincentgiordano</a> on <span class=\"review-date\">March 11, 2026</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>Intuitif et facile à utiliser, compatible avec de très nombreux thèmes Wordpress, je suis un inconditionnel d\'Elementor !</p>\n<!-- /wp:paragraph --></div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Elementor should focus on Page Builder</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"3 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"3\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/ashz101/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/13ebeaf2f7b7248444e48355420b4f6e853d4a4a72bc80bc2f45a8544b2d28fa?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/13ebeaf2f7b7248444e48355420b4f6e853d4a4a72bc80bc2f45a8544b2d28fa?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/ashz101/\" class=\"reviewer-name\">ashz101</a> on <span class=\"review-date\">March 11, 2026</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>Elementor should focus on its page builder instead of trying to become the jack of all. They should address the core issues and fix them to make the product best among the competition. I think they are trying to be everything for a web developer is strange.</p>\n<!-- /wp:paragraph --></div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">EVREY UPDATE MAKES IT WORSE !!!</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"2 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"2\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/klugasi/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/a3f03202440abf114595ab79d2a360feae9b875b94267da031c4ac5eb9fbccfb?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/a3f03202440abf114595ab79d2a360feae9b875b94267da031c4ac5eb9fbccfb?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/klugasi/\" class=\"reviewer-name\">Creative Karen <small>(klugasi)</small></a> on <span class=\"review-date\">March 10, 2026</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>I ABSELOUTLY HATE ALL THE UPDATES ELEMENTOR IS TRYING TO WORK INTO THE EDITOR - IT WAS PERFECT BEFORE - AND NOW ITS JUST A NIGHTMARE TO WORK WITH ! SERIOUSLY !!!</p>\n<!-- /wp:paragraph --></div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Elementor popup</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"1 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"1\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/akinami/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/1e2b7a00da833223e81912bd43b69133e4d77731fb00b8aa9686b375ffa6d7a3?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/1e2b7a00da833223e81912bd43b69133e4d77731fb00b8aa9686b375ffa6d7a3?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/akinami/\" class=\"reviewer-name\">akinami</a> on <span class=\"review-date\">March 9, 2026</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>Hi, I have a persistent Elementor popup saying \'The Editor has a new home\' that cannot be dismissed. Clicking \'Got it\' or \'Dismiss\' does nothing. Tried clearing browser cache, different browsers, incognito mode, and Elementor Tools → Regenerate Files &amp; Data — nothing helps. Elementor is installed as part of the theme. This popup is driving me absolutely crazy.</p>\n<!-- /wp:paragraph --></div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Aún me cuesta</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/alejoluz/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/9f3c1e97afc473e18bf50628e1f668798843d4e9dd4cf1ade56bae0a1c8f8636?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/9f3c1e97afc473e18bf50628e1f668798843d4e9dd4cf1ade56bae0a1c8f8636?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/alejoluz/\" class=\"reviewer-name\">alejoluz</a> on <span class=\"review-date\">March 7, 2026</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>pero considero que es buena </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph --></div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Elementor ruined a previously simple admin experience</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"1 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"1\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/paulm04/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/dd47a0474555d093d029e40e415b3cfdb37f3fc01c2ab72293734a20e2258f76?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/dd47a0474555d093d029e40e415b3cfdb37f3fc01c2ab72293734a20e2258f76?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/paulm04/\" class=\"reviewer-name\">paulm04</a> on <span class=\"review-date\">March 6, 2026</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>This new admin UI is a serious downgrade. It looks bloated, wastes space, hides basic navigation behind accordion sections, and makes everyday tasks slower for no good reason.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Before this change, Elementor’s admin menu was fast, simple, and practical. Now it feels like style was forced over usability. People who actually work inside WordPress every day do not need oversized sections, extra clicks, and empty space. They need speed, clarity, and direct access.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This redesign is not an improvement. It is worse in real use. It breaks the workflow that many users were already comfortable with and replaces it with a cluttered, awkward layout that feels out of touch with how professionals use WordPress.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Please stop redesigning working interfaces just to make them look “modern.” Give users the old compact navigation back, or at minimum provide a toggle between the classic layout and this new one.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Right now, this change feels unnecessary, badly thought out, and frustrating to use.</p>\n<!-- /wp:paragraph --></div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Confusing</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"3 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"3\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/designcatalonia/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/2eaf3049c59ac48359a0272b4930c81f90912fbb9279d3e32facc13e81785d63?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/2eaf3049c59ac48359a0272b4930c81f90912fbb9279d3e32facc13e81785d63?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/designcatalonia/\" class=\"reviewer-name\">designcatalonia</a> on <span class=\"review-date\">March 5, 2026</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>After 8 years and 200 websites created with Elementor, I am sometimes surprised by some updates that defy all logic.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Usability has taken a step backward, the elementor user dashboard (inside elementor.com) is confusing, and it always takes you to links outside of login.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The use of AI tools is also erratic for site creation and gets stuck in a loop.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Really, Elementor One has taken a few steps backward in terms of making things easy. I\'m surprised.</p>\n<!-- /wp:paragraph --></div>\n</div>\n\";}s:17:\"short_description\";s:145:\"The Elementor Website Builder has it all: drag and drop page builder, pixel perfect design, mobile responsive editing, and more. Get started now!\";s:13:\"download_link\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.35.7.zip\";s:14:\"upgrade_notice\";a:0:{}s:11:\"screenshots\";a:6:{i:1;a:2:{s:3:\"src\";s:62:\"https://ps.w.org/elementor/assets/screenshot-1.gif?rev=3005087\";s:7:\"caption\";s:144:\"<strong>Visual Drag and Drop Editor</strong> - Design your website layouts and place any element anywhere on the page for pixel-perfect designs.\";}i:2;a:2:{s:3:\"src\";s:62:\"https://ps.w.org/elementor/assets/screenshot-2.gif?rev=3005087\";s:7:\"caption\";s:185:\"<strong>Full Design System</strong> - Enjoy a professional workflow and ensure consistency across your site. Define your settings, use them globally, and instantly adjust them any time.\";}i:3;a:2:{s:3:\"src\";s:62:\"https://ps.w.org/elementor/assets/screenshot-3.gif?rev=3005087\";s:7:\"caption\";s:170:\"<strong>Responsive Design</strong> Fully edit your website and customize the behavior on desktop, tablet, &amp; mobile to optimize the visitor experience on every device.\";}i:4;a:2:{s:3:\"src\";s:62:\"https://ps.w.org/elementor/assets/screenshot-4.gif?rev=3005087\";s:7:\"caption\";s:193:\"<strong>Kits and Templates</strong> - Jumpstart your web creation process or get inspired with professionally-designed templates or full website kits available for your immediate customization.\";}i:5;a:2:{s:3:\"src\";s:62:\"https://ps.w.org/elementor/assets/screenshot-5.gif?rev=3005087\";s:7:\"caption\";s:197:\"<strong>Nested Elements</strong> Leverage Elementor Editor\'s Nested widgets to place any widget inside the content area of another widget - like Tabs, and Accordion for complete design flexibility.\";}i:6;a:2:{s:3:\"src\";s:62:\"https://ps.w.org/elementor/assets/screenshot-6.gif?rev=3005087\";s:7:\"caption\";s:127:\"<strong>Motion Effects</strong> - Add entrance animations and transitions to any element in your website to captivate visitors.\";}}s:4:\"tags\";a:5:{s:13:\"drag-and-drop\";s:13:\"drag-and-drop\";s:6:\"editor\";s:6:\"editor\";s:9:\"elementor\";s:9:\"elementor\";s:12:\"landing-page\";s:12:\"landing page\";s:12:\"page-builder\";s:12:\"page builder\";}s:8:\"versions\";a:409:{s:5:\"3.0.0\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.0.0.zip\";s:5:\"3.0.1\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.0.1.zip\";s:6:\"3.0.10\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.0.10.zip\";s:6:\"3.0.11\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.0.11.zip\";s:6:\"3.0.12\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.0.12.zip\";s:6:\"3.0.13\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.0.13.zip\";s:6:\"3.0.14\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.0.14.zip\";s:6:\"3.0.15\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.0.15.zip\";s:6:\"3.0.16\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.0.16.zip\";s:5:\"3.0.2\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.0.2.zip\";s:5:\"3.0.3\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.0.3.zip\";s:5:\"3.0.4\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.0.4.zip\";s:5:\"3.0.5\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.0.5.zip\";s:5:\"3.0.6\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.0.6.zip\";s:5:\"3.0.7\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.0.7.zip\";s:5:\"3.0.8\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.0.8.zip\";s:7:\"3.0.8.1\";s:60:\"https://downloads.wordpress.org/plugin/elementor.3.0.8.1.zip\";s:5:\"3.0.9\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.0.9.zip\";s:5:\"3.1.0\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.1.0.zip\";s:11:\"3.1.0-beta1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.1.0-beta1.zip\";s:11:\"3.1.0-beta2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.1.0-beta2.zip\";s:11:\"3.1.0-beta3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.1.0-beta3.zip\";s:11:\"3.1.0-beta4\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.1.0-beta4.zip\";s:10:\"3.1.0-dev1\";s:63:\"https://downloads.wordpress.org/plugin/elementor.3.1.0-dev1.zip\";s:10:\"3.1.0-dev2\";s:63:\"https://downloads.wordpress.org/plugin/elementor.3.1.0-dev2.zip\";s:10:\"3.1.0-dev3\";s:63:\"https://downloads.wordpress.org/plugin/elementor.3.1.0-dev3.zip\";s:5:\"3.1.1\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.1.1.zip\";s:5:\"3.1.2\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.1.2.zip\";s:5:\"3.1.3\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.1.3.zip\";s:5:\"3.1.4\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.1.4.zip\";s:6:\"3.10.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.10.0.zip\";s:11:\"3.10.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.10.0-dev1.zip\";s:6:\"3.10.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.10.1.zip\";s:6:\"3.10.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.10.2.zip\";s:6:\"3.11.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.11.0.zip\";s:12:\"3.11.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.11.0-beta1.zip\";s:12:\"3.11.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.11.0-beta2.zip\";s:12:\"3.11.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.11.0-beta3.zip\";s:11:\"3.11.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.11.0-dev1.zip\";s:11:\"3.11.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.11.0-dev2.zip\";s:11:\"3.11.0-dev3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.11.0-dev3.zip\";s:6:\"3.11.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.11.1.zip\";s:6:\"3.11.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.11.2.zip\";s:6:\"3.11.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.11.3.zip\";s:6:\"3.11.4\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.11.4.zip\";s:6:\"3.11.5\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.11.5.zip\";s:6:\"3.12.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.12.0.zip\";s:6:\"3.12.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.12.1.zip\";s:6:\"3.12.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.12.2.zip\";s:6:\"3.13.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.13.0.zip\";s:12:\"3.13.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.13.0-beta1.zip\";s:12:\"3.13.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.13.0-beta2.zip\";s:12:\"3.13.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.13.0-beta3.zip\";s:11:\"3.13.0-dev3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.13.0-dev3.zip\";s:11:\"3.13.0-dev4\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.13.0-dev4.zip\";s:6:\"3.13.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.13.1.zip\";s:6:\"3.13.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.13.2.zip\";s:6:\"3.13.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.13.3.zip\";s:6:\"3.13.4\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.13.4.zip\";s:6:\"3.14.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.14.0.zip\";s:12:\"3.14.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.14.0-beta1.zip\";s:12:\"3.14.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.14.0-beta2.zip\";s:12:\"3.14.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.14.0-beta3.zip\";s:12:\"3.14.0-beta4\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.14.0-beta4.zip\";s:12:\"3.14.0-beta5\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.14.0-beta5.zip\";s:6:\"3.14.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.14.1.zip\";s:6:\"3.15.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.15.0.zip\";s:6:\"3.15.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.15.1.zip\";s:6:\"3.15.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.15.2.zip\";s:6:\"3.15.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.15.3.zip\";s:6:\"3.16.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.16.0.zip\";s:12:\"3.16.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.16.0-beta3.zip\";s:12:\"3.16.0-beta4\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.16.0-beta4.zip\";s:11:\"3.16.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.16.0-dev1.zip\";s:11:\"3.16.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.16.0-dev2.zip\";s:6:\"3.16.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.16.1.zip\";s:6:\"3.16.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.16.2.zip\";s:6:\"3.16.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.16.3.zip\";s:6:\"3.16.4\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.16.4.zip\";s:6:\"3.16.5\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.16.5.zip\";s:6:\"3.16.6\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.16.6.zip\";s:6:\"3.17.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.17.0.zip\";s:11:\"3.17.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.17.0-dev2.zip\";s:11:\"3.17.0-dev3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.17.0-dev3.zip\";s:11:\"3.17.0-dev4\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.17.0-dev4.zip\";s:6:\"3.17.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.17.1.zip\";s:6:\"3.17.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.17.2.zip\";s:6:\"3.17.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.17.3.zip\";s:6:\"3.18.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.18.0.zip\";s:12:\"3.18.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.18.0-beta1.zip\";s:12:\"3.18.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.18.0-beta2.zip\";s:12:\"3.18.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.18.0-beta3.zip\";s:12:\"3.18.0-beta4\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.18.0-beta4.zip\";s:11:\"3.18.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.18.0-dev1.zip\";s:6:\"3.18.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.18.1.zip\";s:6:\"3.18.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.18.2.zip\";s:6:\"3.18.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.18.3.zip\";s:6:\"3.19.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.19.0.zip\";s:12:\"3.19.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.19.0-beta1.zip\";s:12:\"3.19.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.19.0-beta2.zip\";s:12:\"3.19.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.19.0-beta3.zip\";s:12:\"3.19.0-beta4\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.19.0-beta4.zip\";s:12:\"3.19.0-beta5\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.19.0-beta5.zip\";s:12:\"3.19.0-beta6\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.19.0-beta6.zip\";s:11:\"3.19.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.19.0-dev1.zip\";s:11:\"3.19.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.19.0-dev2.zip\";s:11:\"3.19.0-dev3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.19.0-dev3.zip\";s:11:\"3.19.0-dev4\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.19.0-dev4.zip\";s:11:\"3.19.0-dev5\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.19.0-dev5.zip\";s:11:\"3.19.0-dev6\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.19.0-dev6.zip\";s:6:\"3.19.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.19.1.zip\";s:6:\"3.19.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.19.2.zip\";s:6:\"3.19.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.19.3.zip\";s:6:\"3.19.4\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.19.4.zip\";s:5:\"3.2.0\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.2.0.zip\";s:5:\"3.2.1\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.2.1.zip\";s:5:\"3.2.2\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.2.2.zip\";s:5:\"3.2.3\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.2.3.zip\";s:5:\"3.2.4\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.2.4.zip\";s:5:\"3.2.5\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.2.5.zip\";s:6:\"3.20.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.20.0.zip\";s:12:\"3.20.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.20.0-beta1.zip\";s:12:\"3.20.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.20.0-beta2.zip\";s:12:\"3.20.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.20.0-beta3.zip\";s:12:\"3.20.0-beta4\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.20.0-beta4.zip\";s:11:\"3.20.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.20.0-dev1.zip\";s:11:\"3.20.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.20.0-dev2.zip\";s:11:\"3.20.0-dev3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.20.0-dev3.zip\";s:11:\"3.20.0-dev4\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.20.0-dev4.zip\";s:6:\"3.20.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.20.1.zip\";s:6:\"3.20.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.20.2.zip\";s:6:\"3.20.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.20.3.zip\";s:6:\"3.20.4\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.20.4.zip\";s:6:\"3.21.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.21.0.zip\";s:12:\"3.21.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.21.0-beta1.zip\";s:12:\"3.21.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.21.0-beta2.zip\";s:12:\"3.21.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.21.0-beta3.zip\";s:11:\"3.21.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.21.0-dev1.zip\";s:11:\"3.21.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.21.0-dev2.zip\";s:11:\"3.21.0-dev3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.21.0-dev3.zip\";s:6:\"3.21.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.21.1.zip\";s:6:\"3.21.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.21.2.zip\";s:6:\"3.21.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.21.3.zip\";s:6:\"3.21.4\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.21.4.zip\";s:6:\"3.21.5\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.21.5.zip\";s:6:\"3.21.6\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.21.6.zip\";s:6:\"3.21.7\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.21.7.zip\";s:6:\"3.21.8\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.21.8.zip\";s:6:\"3.22.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.22.0.zip\";s:12:\"3.22.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.22.0-beta1.zip\";s:12:\"3.22.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.22.0-beta2.zip\";s:12:\"3.22.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.22.0-beta3.zip\";s:12:\"3.22.0-beta4\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.22.0-beta4.zip\";s:12:\"3.22.0-beta5\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.22.0-beta5.zip\";s:12:\"3.22.0-beta6\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.22.0-beta6.zip\";s:11:\"3.22.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.22.0-dev1.zip\";s:11:\"3.22.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.22.0-dev2.zip\";s:11:\"3.22.0-dev3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.22.0-dev3.zip\";s:11:\"3.22.0-dev4\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.22.0-dev4.zip\";s:11:\"3.22.0-dev5\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.22.0-dev5.zip\";s:11:\"3.22.0-dev6\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.22.0-dev6.zip\";s:6:\"3.22.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.22.1.zip\";s:6:\"3.22.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.22.2.zip\";s:6:\"3.22.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.22.3.zip\";s:6:\"3.23.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.23.0.zip\";s:12:\"3.23.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.23.0-beta1.zip\";s:12:\"3.23.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.23.0-beta2.zip\";s:12:\"3.23.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.23.0-beta3.zip\";s:12:\"3.23.0-beta4\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.23.0-beta4.zip\";s:12:\"3.23.0-beta5\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.23.0-beta5.zip\";s:12:\"3.23.0-beta6\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.23.0-beta6.zip\";s:11:\"3.23.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.23.0-dev1.zip\";s:11:\"3.23.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.23.0-dev2.zip\";s:11:\"3.23.0-dev3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.23.0-dev3.zip\";s:11:\"3.23.0-dev4\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.23.0-dev4.zip\";s:11:\"3.23.0-dev5\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.23.0-dev5.zip\";s:11:\"3.23.0-dev6\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.23.0-dev6.zip\";s:6:\"3.23.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.23.1.zip\";s:6:\"3.23.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.23.2.zip\";s:6:\"3.23.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.23.3.zip\";s:6:\"3.23.4\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.23.4.zip\";s:6:\"3.24.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.24.0.zip\";s:12:\"3.24.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.24.0-beta1.zip\";s:12:\"3.24.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.24.0-beta2.zip\";s:12:\"3.24.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.24.0-beta3.zip\";s:11:\"3.24.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.24.0-dev1.zip\";s:11:\"3.24.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.24.0-dev2.zip\";s:11:\"3.24.0-dev3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.24.0-dev3.zip\";s:6:\"3.24.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.24.1.zip\";s:6:\"3.24.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.24.2.zip\";s:6:\"3.24.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.24.3.zip\";s:6:\"3.24.4\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.24.4.zip\";s:6:\"3.24.5\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.24.5.zip\";s:6:\"3.24.6\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.24.6.zip\";s:6:\"3.24.7\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.24.7.zip\";s:6:\"3.24.8\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.24.8.zip\";s:6:\"3.25.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.25.0.zip\";s:12:\"3.25.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.25.0-beta1.zip\";s:12:\"3.25.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.25.0-beta2.zip\";s:12:\"3.25.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.25.0-beta3.zip\";s:11:\"3.25.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.25.0-dev1.zip\";s:11:\"3.25.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.25.0-dev2.zip\";s:11:\"3.25.0-dev3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.25.0-dev3.zip\";s:6:\"3.25.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.25.1.zip\";s:7:\"3.25.10\";s:60:\"https://downloads.wordpress.org/plugin/elementor.3.25.10.zip\";s:7:\"3.25.11\";s:60:\"https://downloads.wordpress.org/plugin/elementor.3.25.11.zip\";s:6:\"3.25.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.25.2.zip\";s:6:\"3.25.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.25.3.zip\";s:6:\"3.25.4\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.25.4.zip\";s:6:\"3.25.5\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.25.5.zip\";s:6:\"3.25.6\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.25.6.zip\";s:6:\"3.25.7\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.25.7.zip\";s:6:\"3.25.8\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.25.8.zip\";s:6:\"3.25.9\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.25.9.zip\";s:6:\"3.26.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.26.0.zip\";s:12:\"3.26.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.26.0-beta1.zip\";s:12:\"3.26.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.26.0-beta2.zip\";s:12:\"3.26.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.26.0-beta3.zip\";s:12:\"3.26.0-beta4\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.26.0-beta4.zip\";s:12:\"3.26.0-beta5\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.26.0-beta5.zip\";s:11:\"3.26.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.26.0-dev1.zip\";s:11:\"3.26.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.26.0-dev2.zip\";s:11:\"3.26.0-dev3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.26.0-dev3.zip\";s:11:\"3.26.0-dev4\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.26.0-dev4.zip\";s:11:\"3.26.0-dev5\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.26.0-dev5.zip\";s:6:\"3.26.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.26.1.zip\";s:6:\"3.26.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.26.2.zip\";s:6:\"3.26.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.26.3.zip\";s:6:\"3.26.4\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.26.4.zip\";s:6:\"3.26.5\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.26.5.zip\";s:6:\"3.27.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.27.0.zip\";s:12:\"3.27.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.27.0-beta1.zip\";s:12:\"3.27.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.27.0-beta2.zip\";s:11:\"3.27.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.27.0-dev1.zip\";s:11:\"3.27.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.27.0-dev2.zip\";s:6:\"3.27.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.27.1.zip\";s:6:\"3.27.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.27.2.zip\";s:6:\"3.27.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.27.3.zip\";s:6:\"3.27.4\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.27.4.zip\";s:6:\"3.27.5\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.27.5.zip\";s:6:\"3.27.6\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.27.6.zip\";s:6:\"3.27.7\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.27.7.zip\";s:6:\"3.28.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.28.0.zip\";s:12:\"3.28.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.28.0-beta1.zip\";s:12:\"3.28.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.28.0-beta2.zip\";s:12:\"3.28.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.28.0-beta3.zip\";s:11:\"3.28.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.28.0-dev1.zip\";s:11:\"3.28.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.28.0-dev2.zip\";s:11:\"3.28.0-dev3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.28.0-dev3.zip\";s:6:\"3.28.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.28.1.zip\";s:6:\"3.28.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.28.2.zip\";s:6:\"3.28.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.28.3.zip\";s:6:\"3.28.4\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.28.4.zip\";s:6:\"3.29.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.29.0.zip\";s:12:\"3.29.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.29.0-beta1.zip\";s:12:\"3.29.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.29.0-beta2.zip\";s:12:\"3.29.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.29.0-beta3.zip\";s:12:\"3.29.0-beta4\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.29.0-beta4.zip\";s:11:\"3.29.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.29.0-dev1.zip\";s:11:\"3.29.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.29.0-dev2.zip\";s:11:\"3.29.0-dev3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.29.0-dev3.zip\";s:11:\"3.29.0-dev4\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.29.0-dev4.zip\";s:6:\"3.29.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.29.1.zip\";s:6:\"3.29.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.29.2.zip\";s:5:\"3.3.0\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.3.0.zip\";s:5:\"3.3.1\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.3.1.zip\";s:6:\"3.30.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.30.0.zip\";s:12:\"3.30.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.30.0-beta1.zip\";s:12:\"3.30.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.30.0-beta2.zip\";s:12:\"3.30.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.30.0-beta3.zip\";s:11:\"3.30.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.30.0-dev1.zip\";s:11:\"3.30.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.30.0-dev2.zip\";s:11:\"3.30.0-dev3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.30.0-dev3.zip\";s:6:\"3.30.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.30.1.zip\";s:6:\"3.30.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.30.2.zip\";s:6:\"3.30.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.30.3.zip\";s:6:\"3.30.4\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.30.4.zip\";s:6:\"3.31.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.31.0.zip\";s:12:\"3.31.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.31.0-beta1.zip\";s:12:\"3.31.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.31.0-beta2.zip\";s:11:\"3.31.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.31.0-dev1.zip\";s:11:\"3.31.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.31.0-dev2.zip\";s:6:\"3.31.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.31.1.zip\";s:6:\"3.31.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.31.2.zip\";s:6:\"3.31.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.31.3.zip\";s:6:\"3.31.4\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.31.4.zip\";s:6:\"3.31.5\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.31.5.zip\";s:6:\"3.32.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.32.0.zip\";s:12:\"3.32.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.32.0-beta1.zip\";s:12:\"3.32.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.32.0-beta2.zip\";s:12:\"3.32.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.32.0-beta3.zip\";s:11:\"3.32.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.32.0-dev1.zip\";s:11:\"3.32.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.32.0-dev2.zip\";s:11:\"3.32.0-dev3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.32.0-dev3.zip\";s:6:\"3.32.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.32.1.zip\";s:6:\"3.32.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.32.2.zip\";s:6:\"3.32.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.32.3.zip\";s:6:\"3.32.4\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.32.4.zip\";s:6:\"3.32.5\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.32.5.zip\";s:6:\"3.33.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.33.0.zip\";s:12:\"3.33.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.33.0-beta1.zip\";s:12:\"3.33.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.33.0-beta2.zip\";s:12:\"3.33.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.33.0-beta3.zip\";s:12:\"3.33.0-beta4\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.33.0-beta4.zip\";s:11:\"3.33.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.33.0-dev1.zip\";s:11:\"3.33.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.33.0-dev2.zip\";s:11:\"3.33.0-dev3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.33.0-dev3.zip\";s:11:\"3.33.0-dev4\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.33.0-dev4.zip\";s:6:\"3.33.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.33.1.zip\";s:6:\"3.33.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.33.2.zip\";s:6:\"3.33.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.33.3.zip\";s:6:\"3.33.4\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.33.4.zip\";s:6:\"3.33.5\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.33.5.zip\";s:6:\"3.33.6\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.33.6.zip\";s:6:\"3.34.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.34.0.zip\";s:12:\"3.34.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.34.0-beta1.zip\";s:12:\"3.34.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.34.0-beta2.zip\";s:12:\"3.34.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.34.0-beta3.zip\";s:11:\"3.34.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.34.0-dev1.zip\";s:11:\"3.34.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.34.0-dev2.zip\";s:6:\"3.34.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.34.1.zip\";s:6:\"3.34.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.34.2.zip\";s:6:\"3.34.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.34.3.zip\";s:6:\"3.34.4\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.34.4.zip\";s:6:\"3.35.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.35.0.zip\";s:12:\"3.35.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.35.0-beta1.zip\";s:12:\"3.35.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.35.0-beta2.zip\";s:12:\"3.35.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.35.0-beta3.zip\";s:12:\"3.35.0-beta4\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.35.0-beta4.zip\";s:11:\"3.35.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.35.0-dev1.zip\";s:11:\"3.35.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.35.0-dev2.zip\";s:11:\"3.35.0-dev3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.35.0-dev3.zip\";s:11:\"3.35.0-dev4\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.35.0-dev4.zip\";s:6:\"3.35.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.35.1.zip\";s:6:\"3.35.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.35.2.zip\";s:6:\"3.35.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.35.3.zip\";s:6:\"3.35.4\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.35.4.zip\";s:6:\"3.35.5\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.35.5.zip\";s:6:\"3.35.6\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.35.6.zip\";s:6:\"3.35.7\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.35.7.zip\";s:5:\"3.4.0\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.4.0.zip\";s:10:\"3.4.0-dev7\";s:63:\"https://downloads.wordpress.org/plugin/elementor.3.4.0-dev7.zip\";s:10:\"3.4.0-dev8\";s:63:\"https://downloads.wordpress.org/plugin/elementor.3.4.0-dev8.zip\";s:10:\"3.4.0-dev9\";s:63:\"https://downloads.wordpress.org/plugin/elementor.3.4.0-dev9.zip\";s:5:\"3.4.1\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.4.1.zip\";s:5:\"3.4.2\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.4.2.zip\";s:5:\"3.4.3\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.4.3.zip\";s:5:\"3.4.4\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.4.4.zip\";s:5:\"3.4.5\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.4.5.zip\";s:5:\"3.4.6\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.4.6.zip\";s:5:\"3.4.7\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.4.7.zip\";s:5:\"3.4.8\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.4.8.zip\";s:5:\"3.5.0\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.5.0.zip\";s:11:\"3.5.0-beta1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.5.0-beta1.zip\";s:11:\"3.5.0-beta2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.5.0-beta2.zip\";s:11:\"3.5.0-beta3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.5.0-beta3.zip\";s:11:\"3.5.0-beta4\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.5.0-beta4.zip\";s:11:\"3.5.0-beta5\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.5.0-beta5.zip\";s:11:\"3.5.0-beta7\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.5.0-beta7.zip\";s:11:\"3.5.0-beta8\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.5.0-beta8.zip\";s:10:\"3.5.0-dev8\";s:63:\"https://downloads.wordpress.org/plugin/elementor.3.5.0-dev8.zip\";s:10:\"3.5.0-dev9\";s:63:\"https://downloads.wordpress.org/plugin/elementor.3.5.0-dev9.zip\";s:5:\"3.5.1\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.5.1.zip\";s:5:\"3.5.2\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.5.2.zip\";s:5:\"3.5.3\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.5.3.zip\";s:5:\"3.5.4\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.5.4.zip\";s:5:\"3.5.5\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.5.5.zip\";s:5:\"3.5.6\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.5.6.zip\";s:5:\"3.6.0\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.0.zip\";s:11:\"3.6.0-beta1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.6.0-beta1.zip\";s:11:\"3.6.0-beta2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.6.0-beta2.zip\";s:11:\"3.6.0-beta3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.6.0-beta3.zip\";s:11:\"3.6.0-beta4\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.6.0-beta4.zip\";s:11:\"3.6.0-beta5\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.6.0-beta5.zip\";s:10:\"3.6.0-dev1\";s:63:\"https://downloads.wordpress.org/plugin/elementor.3.6.0-dev1.zip\";s:11:\"3.6.0-dev10\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.6.0-dev10.zip\";s:5:\"3.6.1\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.1.zip\";s:5:\"3.6.2\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.2.zip\";s:5:\"3.6.3\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.3.zip\";s:5:\"3.6.4\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.4.zip\";s:5:\"3.6.5\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.5.zip\";s:5:\"3.6.6\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.6.zip\";s:5:\"3.6.7\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.7.zip\";s:5:\"3.6.8\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.8.zip\";s:5:\"3.7.0\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.7.0.zip\";s:11:\"3.7.0-beta1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.7.0-beta1.zip\";s:11:\"3.7.0-beta2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.7.0-beta2.zip\";s:11:\"3.7.0-beta3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.7.0-beta3.zip\";s:11:\"3.7.0-beta4\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.7.0-beta4.zip\";s:10:\"3.7.0-dev1\";s:63:\"https://downloads.wordpress.org/plugin/elementor.3.7.0-dev1.zip\";s:5:\"3.7.1\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.7.1.zip\";s:5:\"3.7.2\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.7.2.zip\";s:5:\"3.7.3\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.7.3.zip\";s:5:\"3.7.4\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.7.4.zip\";s:5:\"3.7.5\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.7.5.zip\";s:5:\"3.7.6\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.7.6.zip\";s:5:\"3.7.7\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.7.7.zip\";s:5:\"3.7.8\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.7.8.zip\";s:5:\"3.8.0\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.8.0.zip\";s:11:\"3.8.0-beta1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.8.0-beta1.zip\";s:11:\"3.8.0-beta2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.8.0-beta2.zip\";s:11:\"3.8.0-beta3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.8.0-beta3.zip\";s:5:\"3.8.1\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.8.1.zip\";s:5:\"3.9.0\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.9.0.zip\";s:5:\"3.9.1\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.9.1.zip\";s:5:\"3.9.2\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.9.2.zip\";s:11:\"4.0.0-beta1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.4.0.0-beta1.zip\";s:10:\"4.0.0-dev1\";s:63:\"https://downloads.wordpress.org/plugin/elementor.4.0.0-dev1.zip\";s:5:\"trunk\";s:52:\"https://downloads.wordpress.org/plugin/elementor.zip\";}s:14:\"business_model\";s:10:\"commercial\";s:14:\"repository_url\";s:0:\"\";s:22:\"commercial_support_url\";s:94:\"https://elementor.com/support/?utm_source=wp-repo&utm_medium=link&utm_campaign=premium-support\";s:11:\"donate_link\";s:0:\"\";s:7:\"banners\";a:2:{s:3:\"low\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=3443226\";s:4:\"high\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=3443226\";}s:5:\"icons\";a:2:{s:2:\"1x\";s:62:\"https://ps.w.org/elementor/assets/icon-128x128.gif?rev=3444228\";s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.gif?rev=3444228\";}s:12:\"preview_link\";s:0:\"\";s:4:\"Name\";s:63:\"Elementor Website Builder &#8211; More Than Just a Page Builder\";}}', 'off');
INSERT INTO `wpcn_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(394, 'recently_activated', 'a:1:{s:35:\"litespeed-cache/litespeed-cache.php\";i:1773766049;}', 'off'),
(408, 'elementor_landing_pages_activation', '0', 'auto'),
(409, 'elementor_checklist', '{\"last_opened_timestamp\":1769342747,\"first_closed_checklist_in_editor\":false,\"is_popup_minimized\":false,\"steps\":{\"add_logo\":{\"is_marked_completed\":false,\"is_immutable_completed\":false},\"set_fonts_and_colors\":{\"is_marked_completed\":false,\"is_immutable_completed\":false},\"create_pages\":{\"is_marked_completed\":false,\"is_immutable_completed\":false},\"setup_header\":{\"is_marked_completed\":false,\"is_immutable_completed\":false},\"assign_homepage\":{\"is_marked_completed\":false,\"is_immutable_completed\":false},\"setup_header_pro\":{\"is_marked_completed\":false,\"is_immutable_completed\":false}},\"should_open_in_editor\":false}', 'auto'),
(410, 'elementor_version', '3.34.2', 'auto'),
(411, 'elementor_install_history', 'a:1:{s:6:\"3.34.2\";i:1769341843;}', 'auto'),
(125, 'theme_mods_twentytwentyfive', 'a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1769339687;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:3:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";}s:9:\"sidebar-2\";a:2:{i:0;s:7:\"block-5\";i:1;s:7:\"block-6\";}}}}', 'off'),
(126, '_transient_wp_styles_for_blocks', 'a:2:{s:4:\"hash\";s:32:\"8c6a8a3b333c52a38ee27a4832611d42\";s:6:\"blocks\";a:7:{s:32:\"0368537a03d4b05ed11f802c802c5153\";s:0:\"\";s:32:\"500888137eafa12a508de2c588d9ffdd\";s:46:\":root :where(.wp-block-icon svg){width: 24px;}\";s:32:\"a6036e6eb2ad2df7ed8860b807868647\";s:0:\"\";s:32:\"3b46efc0a10c1dae38f584ad199c3544\";s:0:\"\";s:32:\"ab4df16c9e454bfed8a404309545590d\";s:0:\"\";s:32:\"68ec5cad52d993402775a7503ba9efb7\";s:0:\"\";s:32:\"b8b4aa19e69b9b2de0f5c27097467bd6\";s:69:\":root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;}\";}}', 'on'),
(128, 'recovery_keys', 'a:0:{}', 'off'),
(420, 'elementor_pro_version', '3.34.2', 'auto'),
(421, 'elementor_pro_install_history', 'a:2:{s:6:\"3.17.1\";i:1769341925;s:6:\"3.34.2\";i:1769428023;}', 'auto'),
(422, 'widget_elementor-library', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(423, 'elementor_log', 'a:21:{s:32:\"71ad6ec2c9feb647d14bf58acb7750b2\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0date\";s:19:\"2026-01-25 11:52:05\";s:7:\"\0*\0type\";s:6:\"notice\";s:10:\"\0*\0message\";s:57:\"Using ${var} in strings is deprecated, use {$var} instead\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:1:{i:0;a:3:{s:8:\"function\";s:8:\"shutdown\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:485;s:14:\"\0*\0times_dates\";a:42:{i:0;s:19:\"2026-01-26 11:16:42\";i:1;s:19:\"2026-01-26 11:17:07\";i:2;s:19:\"2026-01-26 11:17:15\";i:3;s:19:\"2026-01-26 11:17:28\";i:4;s:19:\"2026-01-26 11:17:32\";i:5;s:19:\"2026-01-26 11:17:35\";i:6;s:19:\"2026-01-26 11:21:32\";i:7;s:19:\"2026-01-26 11:21:43\";i:8;s:19:\"2026-01-26 11:21:52\";i:9;s:19:\"2026-01-26 11:23:23\";i:10;s:19:\"2026-01-26 11:23:27\";i:11;s:19:\"2026-01-26 11:24:02\";i:12;s:19:\"2026-01-26 11:24:06\";i:13;s:19:\"2026-01-26 11:24:11\";i:14;s:19:\"2026-01-26 11:24:23\";i:15;s:19:\"2026-01-26 11:24:24\";i:16;s:19:\"2026-01-26 11:24:27\";i:17;s:19:\"2026-01-26 11:24:34\";i:18;s:19:\"2026-01-26 11:25:56\";i:19;s:19:\"2026-01-26 11:26:02\";i:20;s:19:\"2026-01-26 11:28:30\";i:21;s:19:\"2026-01-26 11:28:34\";i:22;s:19:\"2026-01-26 11:29:17\";i:23;s:19:\"2026-01-26 11:29:21\";i:24;s:19:\"2026-01-26 11:29:28\";i:25;s:19:\"2026-01-26 11:29:31\";i:26;s:19:\"2026-01-26 11:29:34\";i:27;s:19:\"2026-01-26 11:31:45\";i:28;s:19:\"2026-01-26 11:32:54\";i:29;s:19:\"2026-01-26 11:41:50\";i:30;s:19:\"2026-01-26 11:42:53\";i:31;s:19:\"2026-01-26 11:43:11\";i:32;s:19:\"2026-01-26 11:43:16\";i:33;s:19:\"2026-01-26 11:43:56\";i:34;s:19:\"2026-01-26 11:44:01\";i:35;s:19:\"2026-01-26 11:44:06\";i:36;s:19:\"2026-01-26 11:44:18\";i:37;s:19:\"2026-01-26 11:44:26\";i:38;s:19:\"2026-01-26 11:44:50\";i:39;s:19:\"2026-01-26 11:44:53\";i:40;s:19:\"2026-01-26 11:44:57\";i:41;s:19:\"2026-01-26 11:45:02\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:6:\"notice\";s:7:\"message\";s:57:\"Using ${var} in strings is deprecated, use {$var} instead\";s:4:\"file\";s:91:\"/home/mrarqpph/public_html/cpnordic/wp-content/plugins/elementor-pro/core/editor/editor.php\";s:4:\"line\";i:129;s:5:\"trace\";b:1;}s:7:\"\0*\0file\";s:91:\"/home/mrarqpph/public_html/cpnordic/wp-content/plugins/elementor-pro/core/editor/editor.php\";s:7:\"\0*\0line\";i:129;}s:32:\"157caa638adbf912e1e4aa02b044b2f8\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0date\";s:19:\"2026-01-25 11:52:07\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:217:\"Declaration of ElementorPro\\Modules\\Popup\\AdminMenuItems\\Popups_Promotion_Menu_Item::get_parent_slug() must be compatible with Elementor\\Modules\\Promotions\\AdminMenuItems\\Base_Promotion_Item::get_parent_slug(): string\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:1:{i:0;a:3:{s:8:\"function\";s:8:\"shutdown\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:7;s:14:\"\0*\0times_dates\";a:7:{i:0;s:19:\"2026-01-25 11:52:07\";i:1;s:19:\"2026-01-25 11:52:10\";i:2;s:19:\"2026-01-25 11:52:18\";i:3;s:19:\"2026-01-25 11:52:25\";i:4;s:19:\"2026-01-25 11:52:30\";i:5;s:19:\"2026-01-25 11:53:09\";i:6;s:19:\"2026-01-25 11:53:37\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:5:\"error\";s:7:\"message\";s:217:\"Declaration of ElementorPro\\Modules\\Popup\\AdminMenuItems\\Popups_Promotion_Menu_Item::get_parent_slug() must be compatible with Elementor\\Modules\\Promotions\\AdminMenuItems\\Base_Promotion_Item::get_parent_slug(): string\";s:4:\"file\";s:130:\"/home/mrarqpph/public_html/cpnordic/wp-content/plugins/elementor-pro/modules/popup/admin-menu-items/popups-promotion-menu-item.php\";s:4:\"line\";i:40;s:5:\"trace\";b:1;}s:7:\"\0*\0file\";s:130:\"/home/mrarqpph/public_html/cpnordic/wp-content/plugins/elementor-pro/modules/popup/admin-menu-items/popups-promotion-menu-item.php\";s:7:\"\0*\0line\";i:40;}s:32:\"efc89fb2e9b52b175dc10819fca5d295\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:7:\"\0*\0date\";s:19:\"2026-01-25 12:01:43\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:30:\"C.startsWith is not a function\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:6;s:14:\"\0*\0times_dates\";a:6:{i:0;s:19:\"2026-01-25 12:01:43\";i:1;s:19:\"2026-01-25 12:12:44\";i:2;s:19:\"2026-01-25 12:15:44\";i:3;s:19:\"2026-01-25 12:16:28\";i:4;s:19:\"2026-01-25 13:41:14\";i:5;s:19:\"2026-01-25 14:29:20\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1769342503\";s:7:\"message\";s:30:\"C.startsWith is not a function\";s:3:\"url\";s:98:\"https://mrarif.me/cpnordic/wp-content/plugins/elementor/assets/js/common-modules.min.js?ver=3.34.0\";s:4:\"line\";s:1:\"1\";s:6:\"column\";s:6:\"102715\";}s:7:\"\0*\0file\";s:98:\"https://mrarif.me/cpnordic/wp-content/plugins/elementor/assets/js/common-modules.min.js?ver=3.34.0\";s:7:\"\0*\0line\";s:1:\"1\";s:9:\"\0*\0column\";s:6:\"102715\";}s:32:\"e08dc8801dea680e1228c8c693f257ee\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0date\";s:19:\"2026-01-25 12:04:10\";s:7:\"\0*\0type\";s:7:\"warning\";s:10:\"\0*\0message\";s:38:\"Trying to access array offset on false\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:1:{i:0;a:3:{s:8:\"function\";s:8:\"shutdown\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:3;s:14:\"\0*\0times_dates\";a:3:{i:0;s:19:\"2026-01-25 12:04:10\";i:1;s:19:\"2026-01-25 12:05:52\";i:2;s:19:\"2026-01-25 12:11:52\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:7:\"warning\";s:7:\"message\";s:38:\"Trying to access array offset on false\";s:4:\"file\";s:92:\"/home/mrarqpph/public_html/cpnordic/wp-content/plugins/elementor/includes/managers/image.php\";s:4:\"line\";i:113;s:5:\"trace\";b:1;}s:7:\"\0*\0file\";s:92:\"/home/mrarqpph/public_html/cpnordic/wp-content/plugins/elementor/includes/managers/image.php\";s:7:\"\0*\0line\";i:113;}s:32:\"c35809a80117e512f01aed165969034b\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0date\";s:19:\"2026-01-25 12:05:01\";s:7:\"\0*\0type\";s:7:\"warning\";s:10:\"\0*\0message\";s:39:\"Undefined array key &quot;options&quot;\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:1:{i:0;a:3:{s:8:\"function\";s:8:\"shutdown\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:6;s:14:\"\0*\0times_dates\";a:6:{i:0;s:19:\"2026-01-25 12:05:01\";i:1;s:19:\"2026-01-25 12:05:12\";i:2;s:19:\"2026-01-25 12:05:38\";i:3;s:19:\"2026-01-25 12:11:34\";i:4;s:19:\"2026-01-25 12:11:51\";i:5;s:19:\"2026-01-25 12:11:52\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:7:\"warning\";s:7:\"message\";s:29:\"Undefined array key \"options\"\";s:4:\"file\";s:112:\"/home/mrarqpph/public_html/cpnordic/wp-content/plugins/elementor-pro/modules/theme-builder/widgets/site-logo.php\";s:4:\"line\";i:192;s:5:\"trace\";b:1;}s:7:\"\0*\0file\";s:112:\"/home/mrarqpph/public_html/cpnordic/wp-content/plugins/elementor-pro/modules/theme-builder/widgets/site-logo.php\";s:7:\"\0*\0line\";i:192;}s:32:\"5d9c7cda7e648e48051148f72d0ef1fa\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0date\";s:19:\"2026-01-25 12:05:03\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:1720:\"Uncaught WpOrg\\Requests\\Exception\\Http\\Status403: 403 Forbidden in /home/mrarqpph/public_html/cpnordic/wp-content/plugins/elementor/modules/cloud-library/module.php:207\nStack trace:\n#0 /home/mrarqpph/public_html/cpnordic/wp-content/plugins/elementor/modules/cloud-library/module.php(57): Elementor\\Modules\\CloudLibrary\\Module-&gt;is_screenshot_proxy_mode()\n#1 /home/mrarqpph/public_html/cpnordic/wp-content/plugins/elementor/core/base/module.php(86): Elementor\\Modules\\CloudLibrary\\Module-&gt;__construct()\n#2 /home/mrarqpph/public_html/cpnordic/wp-content/plugins/elementor/core/modules-manager.php(64): Elementor\\Core\\Base\\Module::instance()\n#3 /home/mrarqpph/public_html/cpnordic/wp-content/plugins/elementor/includes/plugin.php(703): Elementor\\Core\\Modules_Manager-&gt;__construct()\n#4 /home/mrarqpph/public_html/cpnordic/wp-content/plugins/elementor/includes/plugin.php(621): Elementor\\Plugin-&gt;init_components()\n#5 /home/mrarqpph/public_html/cpnordic/wp-includes/class-wp-hook.php(341): Elementor\\Plugin-&gt;init()\n#6 /home/mrarqpph/public_html/cpnordic/wp-includes/class-wp-hook.php(365): WP_Hook-&gt;apply_filters()\n#7 /home/mrarqpph/public_html/cpnordic/wp-includes/plugin.php(522): WP_Hook-&gt;do_action()\n#8 /home/mrarqpph/public_html/cpnordic/wp-settings.php(742): do_action()\n#9 /home/mrarqpph/public_html/cpnordic/wp-config.php(104): require_once(&#039;/home/mrarqpph/...&#039;)\n#10 /home/mrarqpph/public_html/cpnordic/wp-load.php(50): require_once(&#039;/home/mrarqpph/...&#039;)\n#11 /home/mrarqpph/public_html/cpnordic/wp-blog-header.php(13): require_once(&#039;/home/mrarqpph/...&#039;)\n#12 /home/mrarqpph/public_html/cpnordic/index.php(17): require(&#039;/home/mrarqpph/...&#039;)\n#13 {main}\n  thrown\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:1:{i:0;a:3:{s:8:\"function\";s:8:\"shutdown\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:13;s:14:\"\0*\0times_dates\";a:13:{i:0;s:19:\"2026-01-25 12:05:03\";i:1;s:19:\"2026-01-25 12:05:03\";i:2;s:19:\"2026-01-25 12:12:13\";i:3;s:19:\"2026-01-25 12:12:13\";i:4;s:19:\"2026-01-25 13:42:48\";i:5;s:19:\"2026-01-25 13:42:48\";i:6;s:19:\"2026-01-26 14:36:02\";i:7;s:19:\"2026-01-26 14:36:02\";i:8;s:19:\"2026-01-26 14:47:22\";i:9;s:19:\"2026-01-26 15:08:37\";i:10;s:19:\"2026-01-26 15:08:38\";i:11;s:19:\"2026-01-26 15:08:58\";i:12;s:19:\"2026-01-26 15:08:58\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:5:\"error\";s:7:\"message\";s:1659:\"Uncaught WpOrg\\Requests\\Exception\\Http\\Status403: 403 Forbidden in /home/mrarqpph/public_html/cpnordic/wp-content/plugins/elementor/modules/cloud-library/module.php:207\nStack trace:\n#0 /home/mrarqpph/public_html/cpnordic/wp-content/plugins/elementor/modules/cloud-library/module.php(57): Elementor\\Modules\\CloudLibrary\\Module->is_screenshot_proxy_mode()\n#1 /home/mrarqpph/public_html/cpnordic/wp-content/plugins/elementor/core/base/module.php(86): Elementor\\Modules\\CloudLibrary\\Module->__construct()\n#2 /home/mrarqpph/public_html/cpnordic/wp-content/plugins/elementor/core/modules-manager.php(64): Elementor\\Core\\Base\\Module::instance()\n#3 /home/mrarqpph/public_html/cpnordic/wp-content/plugins/elementor/includes/plugin.php(703): Elementor\\Core\\Modules_Manager->__construct()\n#4 /home/mrarqpph/public_html/cpnordic/wp-content/plugins/elementor/includes/plugin.php(621): Elementor\\Plugin->init_components()\n#5 /home/mrarqpph/public_html/cpnordic/wp-includes/class-wp-hook.php(341): Elementor\\Plugin->init()\n#6 /home/mrarqpph/public_html/cpnordic/wp-includes/class-wp-hook.php(365): WP_Hook->apply_filters()\n#7 /home/mrarqpph/public_html/cpnordic/wp-includes/plugin.php(522): WP_Hook->do_action()\n#8 /home/mrarqpph/public_html/cpnordic/wp-settings.php(742): do_action()\n#9 /home/mrarqpph/public_html/cpnordic/wp-config.php(104): require_once(\'/home/mrarqpph/...\')\n#10 /home/mrarqpph/public_html/cpnordic/wp-load.php(50): require_once(\'/home/mrarqpph/...\')\n#11 /home/mrarqpph/public_html/cpnordic/wp-blog-header.php(13): require_once(\'/home/mrarqpph/...\')\n#12 /home/mrarqpph/public_html/cpnordic/index.php(17): require(\'/home/mrarqpph/...\')\n#13 {main}\n  thrown\";s:4:\"file\";s:97:\"/home/mrarqpph/public_html/cpnordic/wp-content/plugins/elementor/modules/cloud-library/module.php\";s:4:\"line\";i:207;s:5:\"trace\";b:1;}s:7:\"\0*\0file\";s:97:\"/home/mrarqpph/public_html/cpnordic/wp-content/plugins/elementor/modules/cloud-library/module.php\";s:7:\"\0*\0line\";i:207;}s:32:\"3e6c5a2a7dc06513e2f2c4c612ea9b38\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:7:\"\0*\0date\";s:19:\"2026-01-25 12:05:40\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:38:\"this.$element.sticky is not a function\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:3;s:14:\"\0*\0times_dates\";a:3:{i:0;s:19:\"2026-01-25 12:05:40\";i:1;s:19:\"2026-01-25 12:11:28\";i:2;s:19:\"2026-01-25 12:11:35\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1769342740\";s:7:\"message\";s:38:\"this.$element.sticky is not a function\";s:3:\"url\";s:96:\"https://mrarif.me/cpnordic/wp-content/plugins/elementor-pro/assets/js/frontend.min.js?ver=3.17.1\";s:4:\"line\";s:1:\"2\";s:6:\"column\";s:5:\"21493\";}s:7:\"\0*\0file\";s:96:\"https://mrarif.me/cpnordic/wp-content/plugins/elementor-pro/assets/js/frontend.min.js?ver=3.17.1\";s:7:\"\0*\0line\";s:1:\"2\";s:9:\"\0*\0column\";s:5:\"21493\";}s:32:\"02e08dcc4b7d7756d623c31e522e77b9\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0date\";s:19:\"2026-01-25 12:12:53\";s:7:\"\0*\0type\";s:6:\"notice\";s:10:\"\0*\0message\";s:75:\"trim(): Passing null to parameter #1 ($string) of type string is deprecated\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:1:{i:0;a:3:{s:8:\"function\";s:8:\"shutdown\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:6;s:14:\"\0*\0times_dates\";a:6:{i:0;s:19:\"2026-01-25 12:12:53\";i:1;s:19:\"2026-01-25 12:45:55\";i:2;s:19:\"2026-01-25 14:29:30\";i:3;s:19:\"2026-01-25 15:02:45\";i:4;s:19:\"2026-01-25 15:06:51\";i:5;s:19:\"2026-01-26 05:41:27\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:6:\"notice\";s:7:\"message\";s:75:\"trim(): Passing null to parameter #1 ($string) of type string is deprecated\";s:4:\"file\";s:98:\"/home/mrarqpph/public_html/cpnordic/wp-content/plugins/elementor-pro/modules/custom-css/module.php\";s:4:\"line\";i:76;s:5:\"trace\";b:1;}s:7:\"\0*\0file\";s:98:\"/home/mrarqpph/public_html/cpnordic/wp-content/plugins/elementor-pro/modules/custom-css/module.php\";s:7:\"\0*\0line\";i:76;}s:32:\"8b940f8cfd06ce2af827f77dc96fed30\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0date\";s:19:\"2026-01-25 12:29:20\";s:7:\"\0*\0type\";s:7:\"warning\";s:10:\"\0*\0message\";s:46:\"Undefined array key &quot;editor_post_id&quot;\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:1:{i:0;a:3:{s:8:\"function\";s:8:\"shutdown\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2026-01-25 12:29:20\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:7:\"warning\";s:7:\"message\";s:36:\"Undefined array key \"editor_post_id\"\";s:4:\"file\";s:102:\"/home/mrarqpph/public_html/cpnordic/wp-content/plugins/elementor/modules/history/revisions-manager.php\";s:4:\"line\";i:363;s:5:\"trace\";b:1;}s:7:\"\0*\0file\";s:102:\"/home/mrarqpph/public_html/cpnordic/wp-content/plugins/elementor/modules/history/revisions-manager.php\";s:7:\"\0*\0line\";i:363;}s:32:\"e6e076c9d7c1040e07469a28b2906569\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:7:\"\0*\0date\";s:19:\"2026-01-25 15:06:11\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:55:\"Cannot read properties of null (reading &#039;id&#039;)\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:2;s:14:\"\0*\0times_dates\";a:2:{i:0;s:19:\"2026-01-25 15:06:11\";i:1;s:19:\"2026-01-26 05:40:52\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1769353571\";s:7:\"message\";s:45:\"Cannot read properties of null (reading \'id\')\";s:3:\"url\";s:90:\"https://mrarif.me/cpnordic/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.34.0\";s:4:\"line\";s:1:\"2\";s:6:\"column\";s:7:\"1231082\";}s:7:\"\0*\0file\";s:90:\"https://mrarif.me/cpnordic/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.34.0\";s:7:\"\0*\0line\";s:1:\"2\";s:9:\"\0*\0column\";s:7:\"1231082\";}s:32:\"b3df7e031fdba10017f728b6209c4b32\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:7:\"\0*\0date\";s:19:\"2026-01-25 15:06:14\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:62:\"Cannot read properties of null (reading &#039;container&#039;)\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2026-01-25 15:06:14\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1769353574\";s:7:\"message\";s:52:\"Cannot read properties of null (reading \'container\')\";s:3:\"url\";s:90:\"https://mrarif.me/cpnordic/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.34.0\";s:4:\"line\";s:1:\"2\";s:6:\"column\";s:6:\"342208\";}s:7:\"\0*\0file\";s:90:\"https://mrarif.me/cpnordic/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.34.0\";s:7:\"\0*\0line\";s:1:\"2\";s:9:\"\0*\0column\";s:6:\"342208\";}s:32:\"7eba2ec85cd008299e3ea5c46e82492f\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:7:\"\0*\0date\";s:19:\"2026-01-26 06:02:20\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:67:\"Cannot read properties of undefined (reading &#039;localized&#039;)\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:6;s:14:\"\0*\0times_dates\";a:6:{i:0;s:19:\"2026-01-26 06:02:20\";i:1;s:19:\"2026-01-26 06:02:20\";i:2;s:19:\"2026-01-26 06:02:20\";i:3;s:19:\"2026-01-26 06:02:20\";i:4;s:19:\"2026-01-26 06:02:20\";i:5;s:19:\"2026-01-26 06:02:20\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1769407340\";s:7:\"message\";s:57:\"Cannot read properties of undefined (reading \'localized\')\";s:3:\"url\";s:90:\"https://mrarif.me/cpnordic/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.34.0\";s:4:\"line\";s:1:\"2\";s:6:\"column\";s:7:\"1013878\";}s:7:\"\0*\0file\";s:90:\"https://mrarif.me/cpnordic/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.34.0\";s:7:\"\0*\0line\";s:1:\"2\";s:9:\"\0*\0column\";s:7:\"1013878\";}s:32:\"ed3970b7ad15558268fa849a0df73b56\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2026-01-26 11:47:02\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:44:\"elementor-pro::elementor_pro_updater Started\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2026-01-26 11:47:02\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:44:\"elementor-pro::elementor_pro_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"6415486b38f10e0dc51fa3d380932c76\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2026-01-26 11:47:02\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:48:\"Elementor Pro/Upgrades - _on_each_version Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2026-01-26 11:47:02\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:48:\"Elementor Pro/Upgrades - _on_each_version Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"4cfdac81ce801ef13dd6cfd68070b75d\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2026-01-26 11:47:02\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor Pro/Upgrades - _on_each_version Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2026-01-26 11:47:02\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:50:\"Elementor Pro/Upgrades - _on_each_version Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"02219f68b279b180ee50b73db417c084\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2026-01-26 11:47:02\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:70:\"Elementor Pro/Upgrades - _v_3_30_0_post_navigation_inline_icons Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2026-01-26 11:47:02\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:70:\"Elementor Pro/Upgrades - _v_3_30_0_post_navigation_inline_icons Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"b71c90048df1423ae8751b86f0e2a38b\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2026-01-26 11:47:02\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:13:\"Elementor Pro\";s:4:\"from\";s:6:\"3.17.1\";s:2:\"to\";s:6:\"3.34.2\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2026-01-26 11:47:02\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:13:\"Elementor Pro\";s:4:\"from\";s:6:\"3.17.1\";s:2:\"to\";s:6:\"3.34.2\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"311b70232b8fea6fc6ceb6cf96f4a1a3\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2026-01-26 11:47:03\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:72:\"Elementor Pro/Upgrades - _v_3_30_0_post_navigation_inline_icons Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2026-01-26 11:47:03\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:72:\"Elementor Pro/Upgrades - _v_3_30_0_post_navigation_inline_icons Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"edfe8a52c92a5d4e0b685c8f8c5d8a88\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2026-01-26 11:47:03\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:13:\"Elementor Pro\";s:4:\"from\";s:6:\"3.17.1\";s:2:\"to\";s:6:\"3.34.2\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2026-01-26 11:47:03\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:13:\"Elementor Pro\";s:4:\"from\";s:6:\"3.17.1\";s:2:\"to\";s:6:\"3.34.2\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"62a008db21ceb2eae4447678b545942b\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0date\";s:19:\"2026-01-26 12:14:25\";s:7:\"\0*\0type\";s:6:\"notice\";s:10:\"\0*\0message\";s:81:\"hexdec(): Passing null to parameter #1 ($hex_string) of type string is deprecated\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:1:{i:0;a:3:{s:8:\"function\";s:8:\"shutdown\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:42;s:14:\"\0*\0times_dates\";a:42:{i:0;s:19:\"2026-01-26 12:14:25\";i:1;s:19:\"2026-01-26 12:53:15\";i:2;s:19:\"2026-01-26 13:28:10\";i:3;s:19:\"2026-01-26 13:29:24\";i:4;s:19:\"2026-01-26 13:37:57\";i:5;s:19:\"2026-01-26 13:43:37\";i:6;s:19:\"2026-01-26 13:44:02\";i:7;s:19:\"2026-01-26 14:00:48\";i:8;s:19:\"2026-01-26 14:02:53\";i:9;s:19:\"2026-01-26 14:12:19\";i:10;s:19:\"2026-01-26 14:13:30\";i:11;s:19:\"2026-01-26 14:19:58\";i:12;s:19:\"2026-01-26 14:22:11\";i:13;s:19:\"2026-01-26 14:23:03\";i:14;s:19:\"2026-01-26 14:35:27\";i:15;s:19:\"2026-01-26 14:38:38\";i:16;s:19:\"2026-01-26 14:42:05\";i:17;s:19:\"2026-01-26 14:42:34\";i:18;s:19:\"2026-01-26 14:45:05\";i:19;s:19:\"2026-01-26 14:47:41\";i:20;s:19:\"2026-01-26 14:51:32\";i:21;s:19:\"2026-01-26 14:53:04\";i:22;s:19:\"2026-01-26 14:53:28\";i:23;s:19:\"2026-01-26 14:53:35\";i:24;s:19:\"2026-01-26 15:08:27\";i:25;s:19:\"2026-01-26 15:08:41\";i:26;s:19:\"2026-01-26 15:11:56\";i:27;s:19:\"2026-01-26 15:13:35\";i:28;s:19:\"2026-02-14 10:41:29\";i:29;s:19:\"2026-02-14 10:51:52\";i:30;s:19:\"2026-02-14 10:53:44\";i:31;s:19:\"2026-02-14 10:53:52\";i:32;s:19:\"2026-02-14 11:03:58\";i:33;s:19:\"2026-02-14 11:09:13\";i:34;s:19:\"2026-02-14 11:11:04\";i:35;s:19:\"2026-02-14 11:12:48\";i:36;s:19:\"2026-02-14 11:24:19\";i:37;s:19:\"2026-02-14 11:50:21\";i:38;s:19:\"2026-02-14 12:08:52\";i:39;s:19:\"2026-02-14 12:18:41\";i:40;s:19:\"2026-02-14 12:18:56\";i:41;s:19:\"2026-02-14 12:20:03\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:6:\"notice\";s:7:\"message\";s:81:\"hexdec(): Passing null to parameter #1 ($hex_string) of type string is deprecated\";s:4:\"file\";s:97:\"/home/mrarqpph/public_html/cpnordic/wp-content/plugins/elementor/includes/base/controls-stack.php\";s:4:\"line\";i:230;s:5:\"trace\";b:1;}s:7:\"\0*\0file\";s:97:\"/home/mrarqpph/public_html/cpnordic/wp-content/plugins/elementor/includes/base/controls-stack.php\";s:7:\"\0*\0line\";i:230;}s:32:\"675acde6085e1e3747b6a336d8e53e6c\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:7:\"\0*\0date\";s:19:\"2026-01-26 13:33:35\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:70:\"Cannot read properties of undefined (reading &#039;isDesignable&#039;)\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:2;s:14:\"\0*\0times_dates\";a:2:{i:0;s:19:\"2026-01-26 13:33:35\";i:1;s:19:\"2026-01-26 13:36:20\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1769434415\";s:7:\"message\";s:60:\"Cannot read properties of undefined (reading \'isDesignable\')\";s:3:\"url\";s:90:\"https://mrarif.me/cpnordic/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.34.2\";s:4:\"line\";s:1:\"2\";s:6:\"column\";s:6:\"536495\";}s:7:\"\0*\0file\";s:90:\"https://mrarif.me/cpnordic/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.34.2\";s:7:\"\0*\0line\";s:1:\"2\";s:9:\"\0*\0column\";s:6:\"536495\";}}', 'off'),
(424, 'recovery_mode_email_last_sent', '1769341926', 'auto'),
(154, 'finished_updating_comment_type', '1', 'auto'),
(843, '_elementor_home_screen_data', 'a:2:{s:7:\"timeout\";i:1769431530;s:5:\"value\";s:14969:\"{\"top_with_licences\":[{\"license\":[\"free\"],\"title_small\":\"Hi!\",\"title\":\"Unleash your imagination with Elementor\",\"description\":\"Start building your website with Elementor\'s no code drag & drop editor.\",\"button_create_page_title\":\"Create a Page\",\"button_watch_title\":\"Watch a guide\",\"button_watch_url\":\"https:\\/\\/www.youtube.com\\/watch?v=le72grP_Q6k&t=1s\",\"youtube_embed_id\":\"le72grP_Q6k?si=g2akyWNODL6usu6u\"},{\"license\":[\"pro\"],\"title_small\":\"Hi!\",\"title\":\"Unleash your imagination with Elementor\",\"description\":\"Now you\'ve got all the tools to start creating professional, high-performing websites - and that journey begins by creating your first page.\",\"button_create_page_title\":\"Create a Page\",\"button_watch_title\":\"Watch a guide\",\"button_watch_url\":\"https:\\/\\/www.youtube.com\\/watch?v=QdkDGrS8ZZs\",\"youtube_embed_id\":\"QdkDGrS8ZZs?si=s_VjZCQR6Fh1jgB5\"},{\"license\":[\"one\"],\"title_small\":\"Hi!\",\"title\":\"Unleash your imagination with Elementor\",\"description\":\"Now you\'ve got all the tools to start creating professional, high-performing websites - and that journey begins by creating your first page.\",\"button_create_page_title\":\"Create a Page\",\"button_watch_title\":\"Watch a guide\",\"button_watch_url\":\"https:\\/\\/www.youtube.com\\/watch?v=QdkDGrS8ZZs\",\"youtube_embed_id\":\"QdkDGrS8ZZs?si=s_VjZCQR6Fh1jgB5\"}],\"get_started\":[{\"license\":[\"free\"],\"header\":{\"title\":\"Jumpstart your web-creation\",\"description\":\"These quick actions will get your site airborne with a customized design.\"},\"repeater\":[{\"title\":\"Site Settings\",\"title_small\":\"Customize\",\"url\":\"\",\"is_relative_url\":false,\"title_small_color\":\"text.tertiary\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/site-settings.svg\"},{\"title\":\"Site Logo\",\"title_small\":\"Customize\",\"url\":\"\",\"is_relative_url\":false,\"title_small_color\":\"text.tertiary\",\"tab_id\":\"settings-site-identity\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/site-logo.svg\"},{\"title\":\"Global Colors\",\"title_small\":\"Customize\",\"url\":\"\",\"is_relative_url\":false,\"title_small_color\":\"text.tertiary\",\"tab_id\":\"global-colors\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/global-colors.svg\"},{\"title\":\"Global Fonts\",\"title_small\":\"Customize\",\"url\":\"\",\"is_relative_url\":false,\"title_small_color\":\"text.tertiary\",\"tab_id\":\"global-typography\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/global-fonts.svg\"},{\"title\":\"Theme Builder\",\"title_small\":\"Customize\",\"url\":\"admin.php?page=elementor-app\",\"is_relative_url\":false,\"title_small_color\":\"text.tertiary\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/theme-builder.svg\"},{\"title\":\"Popups\",\"title_small\":\"Customize\",\"url\":\"edit.php?post_type=elementor_library&page=popup_templates\",\"is_relative_url\":true,\"title_small_color\":\"text.tertiary\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/popups.svg\"},{\"title\":\"Custom Icons\",\"title_small\":\"Customize\",\"url\":\"admin.php?page=elementor_custom_icons\",\"is_relative_url\":false,\"title_small_color\":\"text.tertiary\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/custom-icons.svg\"},{\"title\":\"Custom Fonts\",\"title_small\":\"Customize\",\"url\":\"admin.php?page=elementor_custom_fonts\",\"is_relative_url\":true,\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/custom-fonts.svg\",\"title_small_color\":\"text.tertiary\"}]},{\"license\":[\"pro\"],\"header\":{\"title\":\"Jumpstart your web-creation\",\"description\":\"These quick actions will get your site airborne with a customized design.\"},\"repeater\":[{\"title\":\"Site Settings\",\"title_small\":\"Customize\",\"url\":\"\",\"is_relative_url\":false,\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/site-settings.svg\"},{\"title\":\"Site Logo\",\"title_small\":\"Customize\",\"url\":\"\",\"is_relative_url\":false,\"tab_id\":\"settings-site-identity\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/site-logo.svg\"},{\"title\":\"Global Colors\",\"title_small\":\"Customize\",\"url\":\"\",\"is_relative_url\":false,\"tab_id\":\"global-colors\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/global-colors.svg\"},{\"title\":\"Global Fonts\",\"title_small\":\"Customize\",\"url\":\"\",\"is_relative_url\":false,\"tab_id\":\"global-typography\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/global-fonts.svg\"},{\"title\":\"Theme Builder\",\"title_small\":\"Customize\",\"url\":\"admin.php?page=elementor-app\",\"is_relative_url\":false,\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/theme-builder.svg\"},{\"title\":\"Popups\",\"title_small\":\"Customize\",\"url\":\"edit.php?post_type=elementor_library&tabs_group=popup&elementor_library_type=popup\",\"is_relative_url\":true,\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/popups.svg\"},{\"title\":\"Custom Icons\",\"title_small\":\"Customize\",\"url\":\"admin.php?page=elementor_custom_icons\",\"is_relative_url\":false,\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/custom-icons.svg\"},{\"title\":\"Custom Fonts\",\"title_small\":\"Customize\",\"url\":\"admin.php?page=elementor_custom_fonts\",\"is_relative_url\":true,\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/custom-fonts.svg\"}]},{\"license\":[\"one\"],\"header\":{\"title\":\"Jumpstart your web-creation\",\"description\":\"These quick actions will get your site airborne with a customized design.\"},\"repeater\":[{\"title\":\"Site Settings\",\"title_small\":\"Customize\",\"url\":\"\",\"is_relative_url\":false,\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/site-settings.svg\"},{\"title\":\"Site Logo\",\"title_small\":\"Customize\",\"url\":\"\",\"is_relative_url\":false,\"tab_id\":\"settings-site-identity\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/site-logo.svg\"},{\"title\":\"Global Colors\",\"title_small\":\"Customize\",\"url\":\"\",\"is_relative_url\":false,\"tab_id\":\"global-colors\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/global-colors.svg\"},{\"title\":\"Global Fonts\",\"title_small\":\"Customize\",\"url\":\"\",\"is_relative_url\":false,\"tab_id\":\"global-typography\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/global-fonts.svg\"},{\"title\":\"Theme Builder\",\"title_small\":\"Customize\",\"url\":\"admin.php?page=elementor-app\",\"is_relative_url\":false,\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/theme-builder.svg\"},{\"title\":\"Popups\",\"title_small\":\"Customize\",\"url\":\"edit.php?post_type=elementor_library&tabs_group=popup&elementor_library_type=popup\",\"is_relative_url\":true,\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/popups.svg\"},{\"title\":\"Custom Icons\",\"title_small\":\"Customize\",\"url\":\"admin.php?page=elementor_custom_icons\",\"is_relative_url\":false,\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/custom-icons.svg\"},{\"title\":\"Custom Fonts\",\"title_small\":\"Customize\",\"url\":\"admin.php?page=elementor_custom_fonts\",\"is_relative_url\":true,\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/custom-fonts.svg\"}]}],\"add_ons\":{\"hide_section\":[\"one\"],\"header\":{\"title\":\"Expand your design toolkit\",\"description\":\"These plugins, add-ons, and tools, have been selected to streamline your workflow and maximize your creativity.\"},\"repeater\":[{\"file_path\":\"pojo-accessibility\\/pojo-accessibility.php\",\"title\":\"Ally - Web Accessibility. Simplified.\",\"url\":\"\",\"description\":\"Make your website more accessible with powerful tools to detect and fix issues, enhance usability, and create a better experience for all visitors.\",\"button_label\":\"Install\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/ally_logo.svg\",\"type\":\"wporg\"},{\"file_path\":\"send-app\\/send-app.php\",\"title\":\"Send \\u2013 Marketing Automation\",\"url\":\"\",\"description\":\"Supercharge your WooCommerce store with Send\\u2014an all-in-one toolkit for emails, popups & more. Built for WordPress. No plugins, no hassle.\",\"button_label\":\"Install\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/send-logo.svg\",\"type\":\"wporg\"},{\"file_path\":\"site-mailer\\/site-mailer.php\",\"title\":\"Site Mailer\",\"url\":\"\",\"description\":\"Keep your WordPress emails out of the spam folder with improved deliverability and an easy setup\\u2014no need for an SMTP plugin or complicated configurations.\",\"button_label\":\"Install\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/site-mailer.svg\",\"type\":\"wporg\"},{\"file_path\":\"image-optimization\\/image-optimization.php\",\"title\":\"Image Optimizer\",\"url\":\"https:\\/\\/go.elementor.com\\/wp-dash-apps-author-uri-elementor-io\\/\",\"description\":\"Check out this incredibly useful plugin that will compress and optimize your images, giving you leaner, faster websites.\",\"button_label\":\"Install\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/image-optimizer.svg\",\"type\":\"wporg\"},{\"title\":\"Elementor AI\",\"url\":\"https:\\/\\/go.elementor.com\\/wp-dash-apps-author-uri-elementor-ai\\/\",\"description\":\"Boost creativity with Elementor AI. Craft & enhance copy, create custom CSS & Code, and generate images to elevate your website.\",\"button_label\":\"Let\'s go\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/elementor.svg\",\"type\":\"link\",\"condition\":{\"key\":\"introduction_meta\",\"value\":\"ai_get_started\"}}],\"footer\":{\"label\":\"Explore more add-ons\",\"file_path\":\"wp-admin\\/admin.php?page=elementor-apps\"}},\"sidebar_upgrade\":[{\"license\":[\"free\"],\"show\":\"true\",\"header\":{\"title\":\"Bring your vision to life\",\"description\":\"Get complete design flexibility for your website with Elementor Pro\'s advanced tools and premium features.\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/icon-crown.svg\"},\"cta\":{\"label\":\"Upgrade Now\",\"url\":\"https:\\/\\/go.elementor.com\\/go-pro-home-sidebar-upgrade\\/\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/icon-crown.svg\"},\"repeater\":[{\"title\":\"Popup Builder\"},{\"title\":\"Custom Code & CSS\"},{\"title\":\"E-commerce Features\"},{\"title\":\"Collaborative Notes\"},{\"title\":\"Form Submission\"},{\"title\":\"Form Integrations\"},{\"title\":\"Custom Attributes\"},{\"title\":\"Role Manager\"}]},{\"license\":[\"pro\"],\"show\":\"false\",\"header\":{\"title\":\"Bring your vision to life\",\"description\":\"Get complete design flexibility for your website with Elementor Pro\'s advanced tools and premium features.\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/icon-crown.svg\"},\"cta\":{\"label\":\"Upgrade Now\",\"url\":\"https:\\/\\/go.elementor.com\\/go-pro-home-sidebar-upgrade\\/\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/icon-crown.svg\"},\"repeater\":[{\"title\":\"Popup Builder\"},{\"title\":\"Custom Code & CSS\"},{\"title\":\"E-commerce Features\"},{\"title\":\"Collaborative Notes\"},{\"title\":\"Form Submission\"},{\"title\":\"Form Integrations\"},{\"title\":\"Custom Attributes\"},{\"title\":\"Role Manager\"}]},{\"license\":[\"one\"],\"show\":\"false\",\"header\":{\"title\":\"Bring your vision to life\",\"description\":\"Get complete design flexibility for your website with Elementor Pro\'s advanced tools and premium features.\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/icon-crown.svg\"},\"cta\":{\"label\":\"Upgrade Now\",\"url\":\"https:\\/\\/go.elementor.com\\/go-pro-home-sidebar-upgrade\\/\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/icon-crown.svg\"},\"repeater\":[{\"title\":\"Popup Builder\"},{\"title\":\"Custom Code & CSS\"},{\"title\":\"E-commerce Features\"},{\"title\":\"Collaborative Notes\"},{\"title\":\"Form Submission\"},{\"title\":\"Form Integrations\"},{\"title\":\"Custom Attributes\"},{\"title\":\"Role Manager\"}]}],\"sidebar_promotion_variants\":[{\"license\":[\"essential\"],\"is_enabled\":\"true\",\"type\":\"banner\",\"data\":{\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/essential-upgrade.svg\",\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-advanced-home-sidebar-upgrade\\/\"}},{\"license\":[\"free\"],\"is_enabled\":\"true\",\"type\":\"banner\",\"data\":{\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/upgrade-free.svg\",\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-home-sidebar-upgrade\\/\"}},{\"license\":[\"expired\"],\"is_enabled\":\"true\",\"type\":\"banner\",\"data\":{\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/upgrade-free.svg\",\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-home-sidebar-expired\\/\"}},{\"license\":[\"free\"],\"is_enabled\":\"false\",\"type\":\"default\",\"data\":{\"header\":{\"title\":\"Bring your vision to life\",\"description\":\"Get complete design flexibility for your website with Elementor Pro\'s advanced tools and premium features.\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/update-sidebar.svg\"},\"cta\":{\"label\":\"Upgrade Now\",\"url\":\"https:\\/\\/go.elementor.com\\/go-pro-home-sidebar-upgrade\\/\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/icon-crown.svg\"},\"repeater\":[{\"title\":\"Popup Builder\"},{\"title\":\"Custom Code & CSS\"},{\"title\":\"E-commerce Features\"},{\"title\":\"Collaborative Notes\"},{\"title\":\"Form Submission\"},{\"title\":\"Form Integrations\"},{\"title\":\"Custom Attributes\"},{\"title\":\"Role Manager\"}]}},{\"license\":[\"pro\"],\"is_enabled\":\"false\",\"type\":\"default\",\"data\":{\"header\":{\"title\":\"Bring your vision to life\",\"description\":\"Get complete design flexibility for your website with Elementor Pro\'s advanced tools and premium features.\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/update-sidebar.svg\"},\"cta\":{\"label\":\"Upgrade Now\",\"url\":\"https:\\/\\/go.elementor.com\\/go-pro-home-sidebar-upgrade\\/\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/icon-crown.svg\"},\"repeater\":[{\"title\":\"Popup Builder\"},{\"title\":\"Custom Code & CSS\"},{\"title\":\"E-commerce Features\"},{\"title\":\"Collaborative Notes\"},{\"title\":\"Form Submission\"},{\"title\":\"Form Integrations\"},{\"title\":\"Custom Attributes\"},{\"title\":\"Role Manager\"}]}},{\"license\":[\"one\"],\"is_enabled\":\"false\",\"type\":\"default\",\"data\":{\"header\":{\"title\":\"Bring your vision to life\",\"description\":\"Get complete design flexibility for your website with Elementor Pro\'s advanced tools and premium features.\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/update-sidebar.svg\"},\"cta\":{\"label\":\"Upgrade Now\",\"url\":\"https:\\/\\/go.elementor.com\\/go-pro-home-sidebar-upgrade\\/\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/icon-crown.svg\"},\"repeater\":[{\"title\":\"Popup Builder\"},{\"title\":\"Custom Code & CSS\"},{\"title\":\"E-commerce Features\"},{\"title\":\"Collaborative Notes\"},{\"title\":\"Form Submission\"},{\"title\":\"Form Integrations\"},{\"title\":\"Custom Attributes\"},{\"title\":\"Role Manager\"}]}}],\"external_links\":[{\"label\":\"Help Center\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/icon-question-mark.svg\",\"url\":\"https:\\/\\/elementor.com\\/help\\/\"},{\"label\":\"Youtube\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/icon-youtube.svg\",\"url\":\"https:\\/\\/www.youtube.com\\/@Elementor\"},{\"label\":\"Facebook Community\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/icon-community.svg\",\"url\":\"https:\\/\\/www.facebook.com\\/groups\\/Elementors\"},{\"label\":\"Blog\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/icon-academic-hat.svg\",\"url\":\"https:\\/\\/elementor.com\\/blog\\/\"}]}\";}', 'off'),
(1003, 'WPLANG', '', 'auto'),
(1004, 'new_admin_email', 'arifwebsols@gmail.com', 'auto'),
(160, 'current_theme', 'Astra Child', 'auto'),
(161, 'theme_mods_astra', 'a:3:{i:0;b:0;s:18:\"nav_menu_locations\";a:0:{}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1769339788;s:4:\"data\";a:8:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:5:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";i:3;s:7:\"block-5\";i:4;s:7:\"block-6\";}s:15:\"footer-widget-1\";a:0:{}s:15:\"footer-widget-2\";a:0:{}s:24:\"advanced-footer-widget-1\";a:0:{}s:24:\"advanced-footer-widget-2\";a:0:{}s:24:\"advanced-footer-widget-3\";a:0:{}s:24:\"advanced-footer-widget-4\";a:0:{}}}}', 'off'),
(162, 'theme_switched', '', 'auto'),
(444, 'elementor_tracker_last_send', '1782208194', 'auto'),
(435, '_elementor_pro_api_requests_lock', 'a:2:{s:11:\"get_version\";i:1779860330;s:16:\"get_license_data\";i:1773766009;}', 'auto'),
(433, '_elementor_pro_installed_time', '1769342202', 'auto'),
(434, 'elementor_submissions_db_version', '5', 'auto');
INSERT INTO `wpcn_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(665, 'astra_partials_config_cache', 'a:2:{s:8:\"settings\";a:1114:{s:46:\"section-header-builder-layout-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[cloned-component-track]\";a:4:{s:7:\"default\";a:12:{s:13:\"header-button\";i:2;s:13:\"footer-button\";i:2;s:11:\"header-html\";i:2;s:11:\"footer-html\";i:2;s:11:\"header-menu\";i:2;s:13:\"header-widget\";i:4;s:13:\"footer-widget\";i:4;s:19:\"header-social-icons\";i:1;s:19:\"footer-social-icons\";i:1;s:14:\"header-divider\";i:0;s:14:\"footer-divider\";i:0;s:13:\"removed-items\";a:0:{}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[builder-header]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[header-desktop-items]\";a:4:{s:7:\"default\";a:4:{s:5:\"popup\";a:1:{s:13:\"popup_content\";a:1:{i:0;s:11:\"mobile-menu\";}}s:5:\"above\";a:5:{s:10:\"above_left\";a:0:{}s:17:\"above_left_center\";a:0:{}s:12:\"above_center\";a:0:{}s:18:\"above_right_center\";a:0:{}s:11:\"above_right\";a:0:{}}s:7:\"primary\";a:5:{s:12:\"primary_left\";a:1:{i:0;s:4:\"logo\";}s:19:\"primary_left_center\";a:0:{}s:14:\"primary_center\";a:0:{}s:20:\"primary_right_center\";a:0:{}s:13:\"primary_right\";a:1:{i:0;s:6:\"menu-1\";}}s:5:\"below\";a:5:{s:10:\"below_left\";a:0:{}s:17:\"below_left_center\";a:0:{}s:12:\"below_center\";a:0:{}s:18:\"below_right_center\";a:0:{}s:11:\"below_right\";a:0:{}}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[header-preset-style]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[header-desktop-draggable-items]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[header-mobile-items]\";a:4:{s:7:\"default\";a:4:{s:5:\"popup\";a:1:{s:13:\"popup_content\";a:1:{i:0;s:11:\"mobile-menu\";}}s:5:\"above\";a:3:{s:10:\"above_left\";a:0:{}s:12:\"above_center\";a:0:{}s:11:\"above_right\";a:0:{}}s:7:\"primary\";a:3:{s:12:\"primary_left\";a:1:{i:0;s:4:\"logo\";}s:14:\"primary_center\";a:0:{}s:13:\"primary_right\";a:1:{i:0;s:14:\"mobile-trigger\";}}s:5:\"below\";a:3:{s:10:\"below_left\";a:0:{}s:12:\"below_center\";a:0:{}s:11:\"below_right\";a:0:{}}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[header-mobile-draggable-items]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-mobile-popup-items]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[header-transparent-link-heading]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[header-transparant-link]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[hb-header-main-layout-width]\";a:4:{s:7:\"default\";s:7:\"content\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[section-header-builder-layout-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:40:\"astra-settings[header-builder-pro-items]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[button-preset-style]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[theme-button-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[theme-button-bg-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[theme-button-border-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[theme-button-border-group-border-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:56:\"astra-settings[theme-button-border-group-border-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:28:\"astra-settings[button-color]\";a:4:{s:7:\"default\";s:25:\"var(--ast-global-color-4)\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[button-h-color]\";a:4:{s:7:\"default\";s:25:\"var(--ast-global-color-4)\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:31:\"astra-settings[button-bg-color]\";a:4:{s:7:\"default\";s:25:\"var(--ast-global-color-0)\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[button-bg-h-color]\";a:4:{s:7:\"default\";s:25:\"var(--ast-global-color-1)\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[theme-button-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:2:\"17\";s:5:\"right\";s:2:\"32\";s:6:\"bottom\";s:2:\"17\";s:4:\"left\";s:2:\"32\";}s:6:\"tablet\";a:4:{s:3:\"top\";i:14;s:5:\"right\";i:28;s:6:\"bottom\";i:14;s:4:\"left\";i:28;}s:6:\"mobile\";a:4:{s:3:\"top\";i:12;s:5:\"right\";i:24;s:6:\"bottom\";i:12;s:4:\"left\";i:24;}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:53:\"astra-settings[theme-button-border-group-border-size]\";a:4:{s:7:\"default\";a:4:{s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[button-radius-fields]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:45:\"astra-settings[secondary-button-preset-style]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[secondary-theme-button-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[secondary-theme-button-bg-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[secondary-theme-button-border-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:64:\"astra-settings[secondary-theme-button-border-group-border-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:66:\"astra-settings[secondary-theme-button-border-group-border-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:38:\"astra-settings[secondary-button-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[secondary-button-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[secondary-button-bg-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[secondary-button-bg-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[secondary-theme-button-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";i:13;s:5:\"right\";i:30;s:6:\"bottom\";i:13;s:4:\"left\";i:30;}s:6:\"tablet\";a:4:{s:3:\"top\";i:12;s:5:\"right\";i:28;s:6:\"bottom\";i:12;s:4:\"left\";i:28;}s:6:\"mobile\";a:4:{s:3:\"top\";i:10;s:5:\"right\";i:24;s:6:\"bottom\";i:10;s:4:\"left\";i:24;}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:63:\"astra-settings[secondary-theme-button-border-group-border-size]\";a:4:{s:7:\"default\";a:4:{s:3:\"top\";i:2;s:5:\"right\";i:2;s:6:\"bottom\";i:2;s:4:\"left\";i:2;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[secondary-button-radius-fields]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:34:\"section-secondary-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[site-content-width]\";a:4:{s:7:\"default\";i:1240;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[narrow-container-max-width]\";a:4:{s:7:\"default\";i:750;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[different-retina-logo]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[ast-header-retina-logo]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:11:\"esc_url_raw\";}s:37:\"astra-settings[different-mobile-logo]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[mobile-header-logo]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";s:11:\"esc_url_raw\";}s:33:\"astra-settings[use-logo-svg-icon]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:29:\"astra-settings[logo-svg-icon]\";a:4:{s:7:\"default\";a:2:{s:4:\"type\";s:0:\"\";s:5:\"value\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:22:\"sanitize_logo_svg_icon\";}}s:39:\"astra-settings[logo-svg-site-title-gap]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:1:\"5\";s:6:\"tablet\";s:1:\"5\";s:6:\"mobile\";s:1:\"5\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[ast-header-responsive-logo-width]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[display-site-title-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[display-site-tagline-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:0;s:6:\"tablet\";i:0;s:6:\"mobile\";i:0;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[logo-title-inline]\";a:4:{s:7:\"default\";i:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[site-identity-title-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[header-color-site-title]\";a:4:{s:7:\"default\";s:25:\"var(--ast-global-color-2)\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[logo-svg-icon-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[logo-svg-icon-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[logo-svg-icon-hover-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-color-h-site-title]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-color-site-tagline]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[site-icon-link]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:26:\"astra-settings[blog-width]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[blog-max-width]\";a:4:{s:7:\"default\";i:1200;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[blog-post-content]\";a:4:{s:7:\"default\";s:7:\"excerpt\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:28:\"astra-settings[blog-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:27:\"astra-settings[blog-layout]\";a:4:{s:7:\"default\";s:13:\"blog-layout-4\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[blog-post-per-page]\";a:4:{s:7:\"default\";i:10;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[archive-post-content-structure-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[blog-post-structure]\";a:4:{s:7:\"default\";a:5:{i:0;s:5:\"image\";i:1;s:8:\"category\";i:2;s:5:\"title\";i:3;s:10:\"title-meta\";i:4;s:7:\"excerpt\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[blog-meta-date-type]\";a:4:{s:7:\"default\";s:9:\"published\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[blog-meta-date-format]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[blog-image-ratio-type]\";a:4:{s:7:\"default\";s:10:\"predefined\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[blog-image-ratio-pre-scale]\";a:4:{s:7:\"default\";s:4:\"16/9\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[blog-image-custom-scale-width]\";a:4:{s:7:\"default\";i:16;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:23:\"sanitize_number_n_blank\";}}s:46:\"astra-settings[blog-image-custom-scale-height]\";a:4:{s:7:\"default\";i:9;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[blog-custom-image-scale-description]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[blog-hover-effect]\";a:4:{s:7:\"default\";s:7:\"zoom-in\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:31:\"astra-settings[blog-image-size]\";a:4:{s:7:\"default\";s:5:\"large\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[blog-post-color-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[post-card-background-overlay]\";a:4:{s:7:\"default\";a:2:{s:15:\"background-type\";s:0:\"\";s:16:\"background-color\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[post-card-border-radius]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";i:6;s:5:\"right\";i:6;s:6:\"bottom\";i:6;s:4:\"left\";i:6;}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[blog-category-style]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[blog-tag-style]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[blog-post-meta-divider-type]\";a:4:{s:7:\"default\";s:1:\"/\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[blog-meta-category-style]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[blog-meta-tag-style]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:29:\"section-blog-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:25:\"astra-settings[blog-meta]\";a:4:{s:7:\"default\";a:2:{i:0;s:6:\"author\";i:1;s:4:\"date\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[blog-single-width]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[blog-single-max-width]\";a:4:{s:7:\"default\";i:1200;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[single-content-images-shadow]\";a:4:{s:7:\"default\";b:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[section-blog-single-spacing-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[single-post-outside-spacing]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:42:\"astra-settings[single-post-inside-spacing]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:36:\"section-blog-single-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[site-sidebar-layout]\";a:4:{s:7:\"default\";s:10:\"no-sidebar\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[site-sidebar-style]\";a:4:{s:7:\"default\";s:7:\"unboxed\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[site-sidebar-width]\";a:4:{s:7:\"default\";i:30;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[site-sidebar-width-description]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";s:0:\"\";}s:35:\"astra-settings[site-sticky-sidebar]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[ast-sidebar-pro-items]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[ast-site-content-layout]\";a:4:{s:7:\"default\";s:22:\"normal-width-container\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[site-content-style]\";a:4:{s:7:\"default\";s:5:\"boxed\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[surface-colors-title]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[site-layout-outside-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:12:{s:16:\"background-color\";s:25:\"var(--ast-global-color-5)\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:15:\"background-type\";s:5:\"color\";s:16:\"background-media\";s:0:\"\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"tablet\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"mobile\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[content-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:12:{s:16:\"background-color\";s:25:\"var(--ast-global-color-4)\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:15:\"background-type\";s:5:\"color\";s:16:\"background-media\";s:0:\"\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"tablet\";a:12:{s:16:\"background-color\";s:25:\"var(--ast-global-color-4)\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:15:\"background-type\";s:5:\"color\";s:16:\"background-media\";s:0:\"\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"mobile\";a:12:{s:16:\"background-color\";s:25:\"var(--ast-global-color-4)\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:15:\"background-type\";s:5:\"color\";s:16:\"background-media\";s:0:\"\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[ast-site-layout-button-link]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[global-color-palette]\";a:4:{s:7:\"default\";a:2:{s:7:\"palette\";a:9:{i:0;s:7:\"#507eff\";i:1;s:7:\"#000a66\";i:2;s:7:\"#1e293b\";i:3;s:7:\"#334155\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#F0F5FA\";i:6;s:7:\"#111111\";i:7;s:7:\"#D1D5DB\";i:8;s:7:\"#111111\";}s:4:\"flag\";b:0;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:20:\"astra-color-palettes\";a:4:{s:7:\"default\";a:5:{s:14:\"currentPalette\";s:9:\"palette_1\";s:8:\"palettes\";a:4:{s:9:\"palette_1\";a:9:{i:0;s:7:\"#507eff\";i:1;s:7:\"#000a66\";i:2;s:7:\"#1e293b\";i:3;s:7:\"#334155\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#F0F5FA\";i:6;s:7:\"#111111\";i:7;s:7:\"#D1D5DB\";i:8;s:7:\"#111111\";}s:9:\"palette_2\";a:9:{i:0;s:7:\"#0067FF\";i:1;s:7:\"#005EE9\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#364151\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#E7F6FF\";i:6;s:7:\"#070614\";i:7;s:7:\"#D1DAE5\";i:8;s:7:\"#222222\";}s:9:\"palette_3\";a:9:{i:0;s:7:\"#6528F7\";i:1;s:7:\"#5511F8\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#454F5E\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#F2F0FE\";i:6;s:7:\"#0D0614\";i:7;s:7:\"#D8D8F5\";i:8;s:7:\"#222222\";}s:9:\"palette_4\";a:9:{i:0;s:7:\"#0085FF\";i:1;s:7:\"#0177E3\";i:2;s:7:\"#FFFFFF\";i:3;s:7:\"#E7F6FF\";i:4;s:7:\"#212A37\";i:5;s:7:\"#0F172A\";i:6;s:7:\"#4F5B62\";i:7;s:7:\"#070614\";i:8;s:7:\"#222222\";}}s:7:\"presets\";a:11:{s:3:\"Oak\";a:9:{i:0;s:7:\"#0067FF\";i:1;s:7:\"#005EE9\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#364151\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#E7F6FF\";i:6;s:7:\"#070614\";i:7;s:7:\"#D1DAE5\";i:8;s:7:\"#222222\";}s:5:\"Viola\";a:9:{i:0;s:7:\"#6528F7\";i:1;s:7:\"#5511F8\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#454F5E\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#F2F0FE\";i:6;s:7:\"#0D0614\";i:7;s:7:\"#D8D8F5\";i:8;s:7:\"#222222\";}s:5:\"Cedar\";a:9:{i:0;s:7:\"#DD183B\";i:1;s:7:\"#CC1939\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#3A3A3A\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#FFEDE6\";i:6;s:7:\"#140609\";i:7;s:7:\"#FFD1BF\";i:8;s:7:\"#222222\";}s:6:\"Willow\";a:9:{i:0;s:7:\"#54B435\";i:1;s:7:\"#379237\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#2F3B40\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#EDFBE2\";i:6;s:7:\"#0C1406\";i:7;s:7:\"#D5EAD8\";i:8;s:7:\"#222222\";}s:4:\"Lily\";a:9:{i:0;s:7:\"#DCA54A\";i:1;s:7:\"#D09A40\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#4A4A4A\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#FAF5E5\";i:6;s:7:\"#141004\";i:7;s:7:\"#F0E6C5\";i:8;s:7:\"#222222\";}s:4:\"Rose\";a:9:{i:0;s:7:\"#FB5FAB\";i:1;s:7:\"#EA559D\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#454F5E\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#FCEEF5\";i:6;s:7:\"#140610\";i:7;s:7:\"#FAD8E9\";i:8;s:7:\"#222222\";}s:4:\"Sage\";a:9:{i:0;s:7:\"#1B9C85\";i:1;s:7:\"#178E79\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#454F5E\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#EDF6EE\";i:6;s:7:\"#06140C\";i:7;s:7:\"#D4F3D7\";i:8;s:7:\"#222222\";}s:5:\"Flare\";a:9:{i:0;s:7:\"#FD9800\";i:1;s:7:\"#E98C00\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#454F5E\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#FEF9E1\";i:6;s:7:\"#141006\";i:7;s:7:\"#F9F0C8\";i:8;s:7:\"#222222\";}s:5:\"Maple\";a:9:{i:0;s:7:\"#FF6210\";i:1;s:7:\"#F15808\";i:2;s:7:\"#1C0D0A\";i:3;s:7:\"#353535\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#FEF1E4\";i:6;s:7:\"#140B06\";i:7;s:7:\"#E5D7D1\";i:8;s:7:\"#222222\";}s:5:\"Birch\";a:9:{i:0;s:7:\"#737880\";i:1;s:7:\"#65696F\";i:2;s:7:\"#151616\";i:3;s:7:\"#393C40\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#F6F6F6\";i:6;s:7:\"#232529\";i:7;s:7:\"#F1F0F0\";i:8;s:7:\"#222222\";}s:4:\"Dark\";a:9:{i:0;s:7:\"#0085FF\";i:1;s:7:\"#0177E3\";i:2;s:7:\"#FFFFFF\";i:3;s:7:\"#E7F6FF\";i:4;s:7:\"#212A37\";i:5;s:7:\"#0F172A\";i:6;s:7:\"#4F5B62\";i:7;s:7:\"#070614\";i:8;s:7:\"#222222\";}}s:11:\"presetNames\";a:4:{s:9:\"palette_1\";N;s:9:\"palette_2\";s:3:\"Oak\";s:9:\"palette_3\";s:5:\"Viola\";s:9:\"palette_4\";s:4:\"Dark\";}s:4:\"flag\";b:0;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[theme-color-divider-reset]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:27:\"astra-settings[theme-color]\";a:4:{s:7:\"default\";s:25:\"var(--ast-global-color-0)\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[base-link-colors-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:26:\"astra-settings[link-color]\";a:4:{s:7:\"default\";s:25:\"var(--ast-global-color-0)\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:28:\"astra-settings[link-h-color]\";a:4:{s:7:\"default\";s:25:\"var(--ast-global-color-1)\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:26:\"astra-settings[text-color]\";a:4:{s:7:\"default\";s:25:\"var(--ast-global-color-3)\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:28:\"astra-settings[border-color]\";a:4:{s:7:\"default\";s:25:\"var(--ast-global-color-7)\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[ast-blog-pro-items]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[font-size-page-title]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:20;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[font-size-post-meta]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:13;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[font-size-post-tax]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:14;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[ast-body-font-settings-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[ast-body-font-settings]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:32:\"astra-settings[body-font-family]\";a:4:{s:7:\"default\";s:20:\"\'Roboto\', sans-serif\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:33:\"astra-settings[body-font-variant]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:21:\"sanitize_font_variant\";}}s:32:\"astra-settings[body-font-weight]\";a:4:{s:7:\"default\";s:3:\"400\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:30:\"astra-settings[font-size-body]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:18;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:32:\"astra-settings[body-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:4:\"1.65\";s:16:\"line-height-unit\";s:0:\"\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[ast-headings-font-settings]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[ast-headings-font-settings-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[headings-font-family]\";a:4:{s:7:\"default\";s:20:\"\'Roboto\', sans-serif\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:36:\"astra-settings[headings-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:37:\"astra-settings[headings-font-variant]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:21:\"sanitize_font_variant\";}}s:36:\"astra-settings[headings-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[para-margin-bottom]\";a:4:{s:7:\"default\";d:0.8;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[underline-content-links]\";a:4:{s:7:\"default\";b:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[ast-heading-h1-typo]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[ast-heading-h2-typo]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[ast-heading-h3-typo]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[ast-heading-h4-typo]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[ast-heading-h5-typo]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[ast-heading-h6-typo]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:28:\"astra-settings[wp-blocks-ui]\";a:4:{s:7:\"default\";s:7:\"comfort\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[wp-blocks-global-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"em\";s:11:\"tablet-unit\";s:2:\"em\";s:11:\"mobile-unit\";s:2:\"em\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:40:\"astra-settings[wp-blocks-ui-description]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";s:0:\"\";}s:33:\"comments-section-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[comments-single-section-heading]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[enable-comments-area]\";a:4:{s:7:\"default\";b:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[comments-box-placement]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[comments-box-container-width]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[comment-form-position]\";a:4:{s:7:\"default\";s:5:\"below\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[ast-sub-section-comments-border-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[ast-sub-section-comments-border-width]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[ast-sub-section-comments-border-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:54:\"astra-settings[ast-sub-section-comments-border-radius]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[ast-sub-section-comments-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[ast-sub-section-comments-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";i:2;s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"em\";s:11:\"tablet-unit\";s:2:\"em\";s:11:\"mobile-unit\";s:2:\"em\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:47:\"astra-settings[ast-sub-section-comments-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";i:2;s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"em\";s:11:\"tablet-unit\";s:2:\"em\";s:11:\"mobile-unit\";s:2:\"em\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:30:\"astra-settings[font-family-h1]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:30:\"astra-settings[font-weight-h1]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:28:\"astra-settings[font-size-h1]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:36;s:6:\"tablet\";i:30;s:6:\"mobile\";i:30;s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[font-extras-h1]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:3:\"1.4\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[font-family-h2]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:30:\"astra-settings[font-weight-h2]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:28:\"astra-settings[font-size-h2]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:30;s:6:\"tablet\";i:25;s:6:\"mobile\";i:25;s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[font-extras-h2]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:3:\"1.3\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[font-family-h3]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:30:\"astra-settings[font-weight-h3]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:28:\"astra-settings[font-size-h3]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:24;s:6:\"tablet\";i:20;s:6:\"mobile\";i:20;s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[font-extras-h3]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:3:\"1.3\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[font-family-h4]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:30:\"astra-settings[font-weight-h4]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:28:\"astra-settings[font-size-h4]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:20;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[font-extras-h4]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:3:\"1.2\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[font-family-h5]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:30:\"astra-settings[font-weight-h5]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:28:\"astra-settings[font-size-h5]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:18;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[font-extras-h5]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:3:\"1.2\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[font-family-h6]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:30:\"astra-settings[font-weight-h6]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:28:\"astra-settings[font-size-h6]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:16;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[font-extras-h6]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:4:\"1.25\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[ast-single-post-items]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:24:\"astra-typography-presets\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[enable-scroll-to-id]\";a:4:{s:7:\"default\";b:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[site-accessibility-toggle]\";a:4:{s:7:\"default\";b:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[site-accessibility-highlight-type]\";a:4:{s:7:\"default\";s:6:\"dotted\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[site-accessibility-highlight-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:55:\"astra-settings[site-accessibility-highlight-input-type]\";a:4:{s:7:\"default\";s:7:\"disable\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[site-accessibility-highlight-input-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[astra-pro-section-notice]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:60:\"astra-settings[single-e-floating-buttons-ast-content-layout]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:55:\"astra-settings[single-e-floating-buttons-content-style]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[single-e-floating-buttons-sidebar-layout]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:55:\"astra-settings[single-e-floating-buttons-sidebar-style]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[page-single-width]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[page-single-max-width]\";a:4:{s:7:\"default\";i:1200;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"ast-dynamic-single-e-floating-buttons-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[ast-single-e-floating-buttons-title]\";a:4:{s:7:\"default\";b:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:60:\"astra-settings[ast-dynamic-single-e-floating-buttons-layout]\";a:4:{s:7:\"default\";s:8:\"layout-1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:71:\"astra-settings[ast-dynamic-single-e-floating-buttons-banner-width-type]\";a:4:{s:7:\"default\";s:9:\"fullwidth\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:73:\"astra-settings[ast-dynamic-single-e-floating-buttons-banner-custom-width]\";a:4:{s:7:\"default\";i:1200;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:63:\"astra-settings[ast-dynamic-single-e-floating-buttons-structure]\";a:4:{s:7:\"default\";a:2:{i:0;s:43:\"ast-dynamic-single-e-floating-buttons-title\";i:1;s:42:\"ast-dynamic-single-e-floating-buttons-meta\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:94:\"astra-settings[ast-dynamic-single-e-floating-buttons-article-featured-image-position-layout-1]\";a:4:{s:7:\"default\";s:6:\"behind\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:94:\"astra-settings[ast-dynamic-single-e-floating-buttons-article-featured-image-position-layout-2]\";a:4:{s:7:\"default\";s:4:\"none\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:87:\"astra-settings[ast-dynamic-single-e-floating-buttons-article-featured-image-width-type]\";a:4:{s:7:\"default\";s:4:\"wide\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:87:\"astra-settings[ast-dynamic-single-e-floating-buttons-article-featured-image-ratio-type]\";a:4:{s:7:\"default\";s:10:\"predefined\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:92:\"astra-settings[ast-dynamic-single-e-floating-buttons-article-featured-image-ratio-pre-scale]\";a:4:{s:7:\"default\";s:4:\"16/9\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:95:\"astra-settings[ast-dynamic-single-e-floating-buttons-article-featured-image-custom-scale-width]\";a:4:{s:7:\"default\";i:16;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:23:\"sanitize_number_n_blank\";}}s:96:\"astra-settings[ast-dynamic-single-e-floating-buttons-article-featured-image-custom-scale-height]\";a:4:{s:7:\"default\";i:9;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:23:\"sanitize_number_n_blank\";}}s:101:\"astra-settings[ast-dynamic-single-e-floating-buttons-article-featured-image-custom-scale-description]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:81:\"astra-settings[ast-dynamic-single-e-floating-buttons-article-featured-image-size]\";a:4:{s:7:\"default\";s:5:\"large\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:77:\"astra-settings[ast-dynamic-single-e-floating-buttons-remove-featured-padding]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:76:\"astra-settings[ast-dynamic-single-e-floating-buttons-featured-as-background]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:77:\"astra-settings[ast-dynamic-single-e-floating-buttons-banner-featured-overlay]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:76:\"astra-settings[ast-dynamic-single-e-floating-buttons-taxonomy-clone-tracker]\";a:4:{s:7:\"default\";i:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:73:\"astra-settings[ast-dynamic-single-e-floating-buttons-structural-taxonomy]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:79:\"astra-settings[ast-dynamic-single-e-floating-buttons-structural-taxonomy-style]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:62:\"astra-settings[ast-dynamic-single-e-floating-buttons-metadata]\";a:4:{s:7:\"default\";a:3:{i:0;s:8:\"comments\";i:1;s:6:\"author\";i:2;s:4:\"date\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:73:\"astra-settings[ast-dynamic-single-e-floating-buttons-author-prefix-label]\";a:4:{s:7:\"default\";s:3:\"By \";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:67:\"astra-settings[ast-dynamic-single-e-floating-buttons-author-avatar]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:72:\"astra-settings[ast-dynamic-single-e-floating-buttons-author-avatar-size]\";a:4:{s:7:\"default\";i:30;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:68:\"astra-settings[ast-dynamic-single-e-floating-buttons-meta-date-type]\";a:4:{s:7:\"default\";s:9:\"published\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:65:\"astra-settings[ast-dynamic-single-e-floating-buttons-date-format]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:72:\"astra-settings[ast-dynamic-single-e-floating-buttons-metadata-separator]\";a:4:{s:7:\"default\";s:1:\"/\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:74:\"astra-settings[ast-dynamic-single-e-floating-buttons-horizontal-alignment]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:72:\"astra-settings[ast-dynamic-single-e-floating-buttons-vertical-alignment]\";a:4:{s:7:\"default\";s:6:\"center\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:67:\"astra-settings[ast-dynamic-single-e-floating-buttons-banner-height]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:66:\"astra-settings[ast-dynamic-single-e-floating-buttons-elements-gap]\";a:4:{s:7:\"default\";i:10;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:71:\"astra-settings[ast-dynamic-single-e-floating-buttons-banner-background]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}s:6:\"tablet\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}s:6:\"mobile\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:72:\"astra-settings[ast-dynamic-single-e-floating-buttons-banner-title-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:71:\"astra-settings[ast-dynamic-single-e-floating-buttons-banner-text-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:71:\"astra-settings[ast-dynamic-single-e-floating-buttons-banner-link-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:77:\"astra-settings[ast-dynamic-single-e-floating-buttons-banner-link-hover-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:83:\"astra-settings[ast-dynamic-single-e-floating-buttons-banner-title-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:82:\"astra-settings[ast-dynamic-single-e-floating-buttons-banner-text-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:70:\"astra-settings[ast-dynamic-single-e-floating-buttons-text-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:70:\"astra-settings[ast-dynamic-single-e-floating-buttons-text-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:68:\"astra-settings[ast-dynamic-single-e-floating-buttons-text-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:70:\"astra-settings[ast-dynamic-single-e-floating-buttons-text-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:71:\"astra-settings[ast-dynamic-single-e-floating-buttons-title-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:71:\"astra-settings[ast-dynamic-single-e-floating-buttons-title-font-weight]\";a:4:{s:7:\"default\";s:3:\"600\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:69:\"astra-settings[ast-dynamic-single-e-floating-buttons-title-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:2:\"32\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:71:\"astra-settings[ast-dynamic-single-e-floating-buttons-title-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:82:\"astra-settings[ast-dynamic-single-e-floating-buttons-banner-meta-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:70:\"astra-settings[ast-dynamic-single-e-floating-buttons-meta-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:70:\"astra-settings[ast-dynamic-single-e-floating-buttons-meta-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:68:\"astra-settings[ast-dynamic-single-e-floating-buttons-meta-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:70:\"astra-settings[ast-dynamic-single-e-floating-buttons-meta-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:67:\"astra-settings[ast-dynamic-single-e-floating-buttons-banner-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:68:\"astra-settings[ast-dynamic-single-e-floating-buttons-banner-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";i:3;s:5:\"right\";i:3;s:6:\"bottom\";i:3;s:4:\"left\";i:3;}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"em\";s:11:\"tablet-unit\";s:2:\"em\";s:11:\"mobile-unit\";s:2:\"em\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:61:\"ast-dynamic-single-e-floating-buttons-parent-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[single-posttype-e-floating-buttons-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[single-posttype-e-floating-buttons-padding]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:57:\"astra-settings[single-posttype-e-floating-buttons-margin]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:62:\"astra-settings[ast-dynamic-single-e-floating-buttons-taxonomy]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:68:\"astra-settings[ast-dynamic-single-e-floating-buttons-taxonomy-style]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:64:\"astra-settings[ast-dynamic-single-e-floating-buttons-taxonomy-1]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:70:\"astra-settings[ast-dynamic-single-e-floating-buttons-taxonomy-1-style]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:64:\"astra-settings[ast-dynamic-single-e-floating-buttons-taxonomy-2]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:70:\"astra-settings[ast-dynamic-single-e-floating-buttons-taxonomy-2-style]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[single-post-ast-content-layout]\";a:4:{s:7:\"default\";s:22:\"narrow-width-container\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[single-post-content-style]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[single-post-sidebar-layout]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[single-post-sidebar-style]\";a:4:{s:7:\"default\";s:5:\"boxed\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"ast-dynamic-single-post-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[ast-single-post-title]\";a:4:{s:7:\"default\";b:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[ast-dynamic-single-post-layout]\";a:4:{s:7:\"default\";s:8:\"layout-1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[ast-dynamic-single-post-banner-width-type]\";a:4:{s:7:\"default\";s:9:\"fullwidth\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:59:\"astra-settings[ast-dynamic-single-post-banner-custom-width]\";a:4:{s:7:\"default\";i:1200;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[ast-dynamic-single-post-structure]\";a:4:{s:7:\"default\";a:2:{i:0;s:29:\"ast-dynamic-single-post-title\";i:1;s:28:\"ast-dynamic-single-post-meta\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:80:\"astra-settings[ast-dynamic-single-post-article-featured-image-position-layout-1]\";a:4:{s:7:\"default\";s:6:\"behind\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:80:\"astra-settings[ast-dynamic-single-post-article-featured-image-position-layout-2]\";a:4:{s:7:\"default\";s:4:\"none\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:73:\"astra-settings[ast-dynamic-single-post-article-featured-image-width-type]\";a:4:{s:7:\"default\";s:4:\"wide\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:73:\"astra-settings[ast-dynamic-single-post-article-featured-image-ratio-type]\";a:4:{s:7:\"default\";s:10:\"predefined\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:78:\"astra-settings[ast-dynamic-single-post-article-featured-image-ratio-pre-scale]\";a:4:{s:7:\"default\";s:4:\"16/9\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:81:\"astra-settings[ast-dynamic-single-post-article-featured-image-custom-scale-width]\";a:4:{s:7:\"default\";i:16;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:23:\"sanitize_number_n_blank\";}}s:82:\"astra-settings[ast-dynamic-single-post-article-featured-image-custom-scale-height]\";a:4:{s:7:\"default\";i:9;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:23:\"sanitize_number_n_blank\";}}s:87:\"astra-settings[ast-dynamic-single-post-article-featured-image-custom-scale-description]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:67:\"astra-settings[ast-dynamic-single-post-article-featured-image-size]\";a:4:{s:7:\"default\";s:5:\"large\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:63:\"astra-settings[ast-dynamic-single-post-remove-featured-padding]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:62:\"astra-settings[ast-dynamic-single-post-featured-as-background]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:63:\"astra-settings[ast-dynamic-single-post-banner-featured-overlay]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:62:\"astra-settings[ast-dynamic-single-post-taxonomy-clone-tracker]\";a:4:{s:7:\"default\";i:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:59:\"astra-settings[ast-dynamic-single-post-structural-taxonomy]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:65:\"astra-settings[ast-dynamic-single-post-structural-taxonomy-style]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[ast-dynamic-single-post-metadata]\";a:4:{s:7:\"default\";a:2:{i:0;s:6:\"author\";i:1;s:4:\"date\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:59:\"astra-settings[ast-dynamic-single-post-author-prefix-label]\";a:4:{s:7:\"default\";s:3:\"By \";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[ast-dynamic-single-post-author-avatar]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[ast-dynamic-single-post-author-avatar-size]\";a:4:{s:7:\"default\";i:30;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[ast-dynamic-single-post-meta-date-type]\";a:4:{s:7:\"default\";s:9:\"published\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[ast-dynamic-single-post-date-format]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[ast-dynamic-single-post-metadata-separator]\";a:4:{s:7:\"default\";s:1:\"/\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:60:\"astra-settings[ast-dynamic-single-post-horizontal-alignment]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[ast-dynamic-single-post-vertical-alignment]\";a:4:{s:7:\"default\";s:6:\"center\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[ast-dynamic-single-post-banner-height]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[ast-dynamic-single-post-elements-gap]\";a:4:{s:7:\"default\";i:15;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[ast-dynamic-single-post-banner-background]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}s:6:\"tablet\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}s:6:\"mobile\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[ast-dynamic-single-post-banner-title-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[ast-dynamic-single-post-banner-text-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[ast-dynamic-single-post-banner-link-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:63:\"astra-settings[ast-dynamic-single-post-banner-link-hover-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:69:\"astra-settings[ast-dynamic-single-post-banner-title-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:68:\"astra-settings[ast-dynamic-single-post-banner-text-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[ast-dynamic-single-post-text-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:56:\"astra-settings[ast-dynamic-single-post-text-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:54:\"astra-settings[ast-dynamic-single-post-text-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[ast-dynamic-single-post-text-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[ast-dynamic-single-post-title-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:57:\"astra-settings[ast-dynamic-single-post-title-font-weight]\";a:4:{s:7:\"default\";s:3:\"600\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:55:\"astra-settings[ast-dynamic-single-post-title-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:2:\"32\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[ast-dynamic-single-post-title-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:68:\"astra-settings[ast-dynamic-single-post-banner-meta-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[ast-dynamic-single-post-meta-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:56:\"astra-settings[ast-dynamic-single-post-meta-font-weight]\";a:4:{s:7:\"default\";s:3:\"600\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:54:\"astra-settings[ast-dynamic-single-post-meta-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:13;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[ast-dynamic-single-post-meta-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[ast-dynamic-single-post-banner-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:54:\"astra-settings[ast-dynamic-single-post-banner-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";i:3;s:5:\"right\";i:3;s:6:\"bottom\";i:3;s:4:\"left\";i:3;}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"em\";s:11:\"tablet-unit\";s:2:\"em\";s:11:\"mobile-unit\";s:2:\"em\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:48:\"astra-settings[ast-dynamic-single-post-taxonomy]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[ast-dynamic-single-post-taxonomy-style]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[ast-dynamic-single-post-taxonomy-1]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[ast-dynamic-single-post-taxonomy-1-style]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[ast-dynamic-single-post-taxonomy-2]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[ast-dynamic-single-post-taxonomy-2-style]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[single-page-ast-content-layout]\";a:4:{s:7:\"default\";s:22:\"normal-width-container\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[single-page-content-style]\";a:4:{s:7:\"default\";s:7:\"unboxed\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[single-page-sidebar-layout]\";a:4:{s:7:\"default\";s:10:\"no-sidebar\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[single-page-sidebar-style]\";a:4:{s:7:\"default\";s:7:\"unboxed\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"ast-dynamic-single-page-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[ast-single-page-title]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[ast-dynamic-single-page-layout]\";a:4:{s:7:\"default\";s:8:\"layout-1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[ast-dynamic-single-page-banner-width-type]\";a:4:{s:7:\"default\";s:9:\"fullwidth\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:59:\"astra-settings[ast-dynamic-single-page-banner-custom-width]\";a:4:{s:7:\"default\";i:1200;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[ast-dynamic-single-page-structure]\";a:4:{s:7:\"default\";a:2:{i:0;s:29:\"ast-dynamic-single-page-image\";i:1;s:29:\"ast-dynamic-single-page-title\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:80:\"astra-settings[ast-dynamic-single-page-article-featured-image-position-layout-1]\";a:4:{s:7:\"default\";s:6:\"behind\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:80:\"astra-settings[ast-dynamic-single-page-article-featured-image-position-layout-2]\";a:4:{s:7:\"default\";s:4:\"none\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:73:\"astra-settings[ast-dynamic-single-page-article-featured-image-width-type]\";a:4:{s:7:\"default\";s:4:\"wide\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:73:\"astra-settings[ast-dynamic-single-page-article-featured-image-ratio-type]\";a:4:{s:7:\"default\";s:10:\"predefined\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:78:\"astra-settings[ast-dynamic-single-page-article-featured-image-ratio-pre-scale]\";a:4:{s:7:\"default\";s:4:\"16/9\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:81:\"astra-settings[ast-dynamic-single-page-article-featured-image-custom-scale-width]\";a:4:{s:7:\"default\";i:16;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:23:\"sanitize_number_n_blank\";}}s:82:\"astra-settings[ast-dynamic-single-page-article-featured-image-custom-scale-height]\";a:4:{s:7:\"default\";i:9;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:23:\"sanitize_number_n_blank\";}}s:87:\"astra-settings[ast-dynamic-single-page-article-featured-image-custom-scale-description]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:67:\"astra-settings[ast-dynamic-single-page-article-featured-image-size]\";a:4:{s:7:\"default\";s:5:\"large\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:63:\"astra-settings[ast-dynamic-single-page-remove-featured-padding]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:62:\"astra-settings[ast-dynamic-single-page-featured-as-background]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:63:\"astra-settings[ast-dynamic-single-page-banner-featured-overlay]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:62:\"astra-settings[ast-dynamic-single-page-taxonomy-clone-tracker]\";a:4:{s:7:\"default\";i:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:59:\"astra-settings[ast-dynamic-single-page-structural-taxonomy]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:65:\"astra-settings[ast-dynamic-single-page-structural-taxonomy-style]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[ast-dynamic-single-page-metadata]\";a:4:{s:7:\"default\";a:3:{i:0;s:8:\"comments\";i:1;s:6:\"author\";i:2;s:4:\"date\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:59:\"astra-settings[ast-dynamic-single-page-author-prefix-label]\";a:4:{s:7:\"default\";s:3:\"By \";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[ast-dynamic-single-page-author-avatar]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[ast-dynamic-single-page-author-avatar-size]\";a:4:{s:7:\"default\";i:30;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[ast-dynamic-single-page-meta-date-type]\";a:4:{s:7:\"default\";s:9:\"published\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[ast-dynamic-single-page-date-format]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[ast-dynamic-single-page-metadata-separator]\";a:4:{s:7:\"default\";s:1:\"/\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:60:\"astra-settings[ast-dynamic-single-page-horizontal-alignment]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[ast-dynamic-single-page-vertical-alignment]\";a:4:{s:7:\"default\";s:6:\"center\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[ast-dynamic-single-page-banner-height]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[ast-dynamic-single-page-elements-gap]\";a:4:{s:7:\"default\";i:10;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[ast-dynamic-single-page-banner-background]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}s:6:\"tablet\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}s:6:\"mobile\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[ast-dynamic-single-page-banner-title-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[ast-dynamic-single-page-banner-text-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[ast-dynamic-single-page-banner-link-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:63:\"astra-settings[ast-dynamic-single-page-banner-link-hover-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:69:\"astra-settings[ast-dynamic-single-page-banner-title-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:68:\"astra-settings[ast-dynamic-single-page-banner-text-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[ast-dynamic-single-page-text-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:56:\"astra-settings[ast-dynamic-single-page-text-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:54:\"astra-settings[ast-dynamic-single-page-text-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[ast-dynamic-single-page-text-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[ast-dynamic-single-page-title-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:57:\"astra-settings[ast-dynamic-single-page-title-font-weight]\";a:4:{s:7:\"default\";s:3:\"600\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:55:\"astra-settings[ast-dynamic-single-page-title-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:2:\"32\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[ast-dynamic-single-page-title-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:68:\"astra-settings[ast-dynamic-single-page-banner-meta-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[ast-dynamic-single-page-meta-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:56:\"astra-settings[ast-dynamic-single-page-meta-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:54:\"astra-settings[ast-dynamic-single-page-meta-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[ast-dynamic-single-page-meta-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[ast-dynamic-single-page-banner-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:54:\"astra-settings[ast-dynamic-single-page-banner-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";i:3;s:5:\"right\";i:3;s:6:\"bottom\";i:3;s:4:\"left\";i:3;}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"em\";s:11:\"tablet-unit\";s:2:\"em\";s:11:\"mobile-unit\";s:2:\"em\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:76:\"astra-settings[ast-dynamic-single-page-disable-structure-meta-on-front-page]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:47:\"ast-dynamic-single-page-parent-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[section-single-page-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[section-single-page-padding]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:42:\"astra-settings[section-single-page-margin]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:61:\"astra-settings[archive-e-floating-buttons-ast-content-layout]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[archive-e-floating-buttons-content-style]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[archive-e-floating-buttons-sidebar-layout]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[archive-e-floating-buttons-sidebar-style]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:55:\"ast-dynamic-archive-e-floating-buttons-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[ast-archive-e-floating-buttons-title]\";a:4:{s:7:\"default\";b:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:61:\"astra-settings[ast-dynamic-archive-e-floating-buttons-layout]\";a:4:{s:7:\"default\";s:8:\"layout-1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:72:\"astra-settings[ast-dynamic-archive-e-floating-buttons-banner-width-type]\";a:4:{s:7:\"default\";s:9:\"fullwidth\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:74:\"astra-settings[ast-dynamic-archive-e-floating-buttons-banner-custom-width]\";a:4:{s:7:\"default\";i:1200;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:64:\"astra-settings[ast-dynamic-archive-e-floating-buttons-structure]\";a:4:{s:7:\"default\";a:2:{i:0;s:44:\"ast-dynamic-archive-e-floating-buttons-title\";i:1;s:50:\"ast-dynamic-archive-e-floating-buttons-description\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:67:\"astra-settings[ast-dynamic-archive-e-floating-buttons-custom-title]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:75:\"astra-settings[ast-dynamic-archive-e-floating-buttons-custom-title-support]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:73:\"astra-settings[ast-dynamic-archive-e-floating-buttons-custom-description]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:81:\"astra-settings[ast-dynamic-archive-e-floating-buttons-custom-description-support]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:75:\"astra-settings[ast-dynamic-archive-e-floating-buttons-horizontal-alignment]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:73:\"astra-settings[ast-dynamic-archive-e-floating-buttons-vertical-alignment]\";a:4:{s:7:\"default\";s:6:\"center\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:68:\"astra-settings[ast-dynamic-archive-e-floating-buttons-banner-height]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:67:\"astra-settings[ast-dynamic-archive-e-floating-buttons-elements-gap]\";a:4:{s:7:\"default\";i:10;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:72:\"astra-settings[ast-dynamic-archive-e-floating-buttons-banner-image-type]\";a:4:{s:7:\"default\";s:4:\"none\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:71:\"astra-settings[ast-dynamic-archive-e-floating-buttons-banner-custom-bg]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}s:6:\"tablet\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}s:6:\"mobile\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:73:\"astra-settings[ast-dynamic-archive-e-floating-buttons-banner-title-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:72:\"astra-settings[ast-dynamic-archive-e-floating-buttons-banner-text-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:72:\"astra-settings[ast-dynamic-archive-e-floating-buttons-banner-link-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:78:\"astra-settings[ast-dynamic-archive-e-floating-buttons-banner-link-hover-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:84:\"astra-settings[ast-dynamic-archive-e-floating-buttons-banner-title-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:83:\"astra-settings[ast-dynamic-archive-e-floating-buttons-banner-text-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:71:\"astra-settings[ast-dynamic-archive-e-floating-buttons-text-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:71:\"astra-settings[ast-dynamic-archive-e-floating-buttons-text-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:69:\"astra-settings[ast-dynamic-archive-e-floating-buttons-text-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:71:\"astra-settings[ast-dynamic-archive-e-floating-buttons-text-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:72:\"astra-settings[ast-dynamic-archive-e-floating-buttons-title-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:72:\"astra-settings[ast-dynamic-archive-e-floating-buttons-title-font-weight]\";a:4:{s:7:\"default\";s:3:\"600\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:70:\"astra-settings[ast-dynamic-archive-e-floating-buttons-title-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:2:\"32\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:72:\"astra-settings[ast-dynamic-archive-e-floating-buttons-title-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:68:\"astra-settings[ast-dynamic-archive-e-floating-buttons-banner-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:69:\"astra-settings[ast-dynamic-archive-e-floating-buttons-banner-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";i:3;s:5:\"right\";i:3;s:6:\"bottom\";i:3;s:4:\"left\";i:3;}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"em\";s:11:\"tablet-unit\";s:2:\"em\";s:11:\"mobile-unit\";s:2:\"em\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:47:\"astra-settings[archive-post-ast-content-layout]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[archive-post-content-style]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[archive-post-sidebar-layout]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[archive-post-sidebar-style]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:41:\"ast-dynamic-archive-post-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[ast-archive-post-title]\";a:4:{s:7:\"default\";b:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[ast-dynamic-archive-post-layout]\";a:4:{s:7:\"default\";s:8:\"layout-1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[ast-dynamic-archive-post-banner-width-type]\";a:4:{s:7:\"default\";s:9:\"fullwidth\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:60:\"astra-settings[ast-dynamic-archive-post-banner-custom-width]\";a:4:{s:7:\"default\";i:1200;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[ast-dynamic-archive-post-structure]\";a:4:{s:7:\"default\";a:2:{i:0;s:30:\"ast-dynamic-archive-post-title\";i:1;s:36:\"ast-dynamic-archive-post-description\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[ast-dynamic-archive-post-custom-title]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:61:\"astra-settings[ast-dynamic-archive-post-custom-title-support]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:59:\"astra-settings[ast-dynamic-archive-post-custom-description]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:67:\"astra-settings[ast-dynamic-archive-post-custom-description-support]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:61:\"astra-settings[ast-dynamic-archive-post-horizontal-alignment]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:59:\"astra-settings[ast-dynamic-archive-post-vertical-alignment]\";a:4:{s:7:\"default\";s:6:\"center\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[ast-dynamic-archive-post-banner-height]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[ast-dynamic-archive-post-elements-gap]\";a:4:{s:7:\"default\";i:10;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[ast-dynamic-archive-post-banner-image-type]\";a:4:{s:7:\"default\";s:4:\"none\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[ast-dynamic-archive-post-banner-custom-bg]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}s:6:\"tablet\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}s:6:\"mobile\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:59:\"astra-settings[ast-dynamic-archive-post-banner-title-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[ast-dynamic-archive-post-banner-text-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[ast-dynamic-archive-post-banner-link-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:64:\"astra-settings[ast-dynamic-archive-post-banner-link-hover-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:70:\"astra-settings[ast-dynamic-archive-post-banner-title-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:69:\"astra-settings[ast-dynamic-archive-post-banner-text-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[ast-dynamic-archive-post-text-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:57:\"astra-settings[ast-dynamic-archive-post-text-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:55:\"astra-settings[ast-dynamic-archive-post-text-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[ast-dynamic-archive-post-text-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[ast-dynamic-archive-post-title-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:58:\"astra-settings[ast-dynamic-archive-post-title-font-weight]\";a:4:{s:7:\"default\";s:3:\"600\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:56:\"astra-settings[ast-dynamic-archive-post-title-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:2:\"32\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[ast-dynamic-archive-post-title-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[ast-dynamic-archive-post-banner-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:55:\"astra-settings[ast-dynamic-archive-post-banner-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";i:3;s:5:\"right\";i:3;s:6:\"bottom\";i:3;s:4:\"left\";i:3;}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"em\";s:11:\"tablet-unit\";s:2:\"em\";s:11:\"mobile-unit\";s:2:\"em\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:55:\"astra-settings[ast-dynamic-archive-post-banner-on-blog]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"section-search-page-title-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[ast-search-page-title]\";a:4:{s:7:\"default\";b:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[section-search-page-title-layout]\";a:4:{s:7:\"default\";s:8:\"layout-1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:59:\"astra-settings[section-search-page-title-banner-width-type]\";a:4:{s:7:\"default\";s:9:\"fullwidth\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:61:\"astra-settings[section-search-page-title-banner-custom-width]\";a:4:{s:7:\"default\";i:1200;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[section-search-page-title-structure]\";a:4:{s:7:\"default\";a:2:{i:0;s:31:\"section-search-page-title-title\";i:1;s:36:\"section-search-page-title-breadcrumb\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[section-search-page-title-custom-title]\";a:4:{s:7:\"default\";s:19:\"Search Results for:\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:66:\"astra-settings[section-search-page-title-found-custom-description]\";a:4:{s:7:\"default\";s:44:\"Here are the search results for your search.\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:70:\"astra-settings[section-search-page-title-not-found-custom-description]\";a:4:{s:7:\"default\";s:85:\"Sorry, but we could not find anything related to your search terms. Please try again.\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:62:\"astra-settings[section-search-page-title-horizontal-alignment]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:6:\"center\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:60:\"astra-settings[section-search-page-title-vertical-alignment]\";a:4:{s:7:\"default\";s:6:\"center\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:55:\"astra-settings[section-search-page-title-banner-height]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[section-search-page-title-elements-gap]\";a:4:{s:7:\"default\";i:10;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:59:\"astra-settings[section-search-page-title-banner-image-type]\";a:4:{s:7:\"default\";s:4:\"none\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[section-search-page-title-banner-custom-bg]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}s:6:\"tablet\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}s:6:\"mobile\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:60:\"astra-settings[section-search-page-title-banner-title-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:59:\"astra-settings[section-search-page-title-banner-text-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:59:\"astra-settings[section-search-page-title-banner-link-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:65:\"astra-settings[section-search-page-title-banner-link-hover-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:71:\"astra-settings[section-search-page-title-banner-title-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:70:\"astra-settings[section-search-page-title-banner-text-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[section-search-page-title-text-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:58:\"astra-settings[section-search-page-title-text-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:56:\"astra-settings[section-search-page-title-text-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[section-search-page-title-text-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:59:\"astra-settings[section-search-page-title-title-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:59:\"astra-settings[section-search-page-title-title-font-weight]\";a:4:{s:7:\"default\";s:3:\"600\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:57:\"astra-settings[section-search-page-title-title-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:32;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:59:\"astra-settings[section-search-page-title-title-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:55:\"astra-settings[section-search-page-title-banner-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:56:\"astra-settings[section-search-page-title-banner-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";i:3;s:5:\"right\";i:3;s:6:\"bottom\";i:3;s:4:\"left\";i:3;}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"em\";s:11:\"tablet-unit\";s:2:\"em\";s:11:\"mobile-unit\";s:2:\"em\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:41:\"astra-settings[ast-search-content-layout]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[ast-search-content-style]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[ast-search-sidebar-layout]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[ast-search-sidebar-style]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[ast-search-results-style]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[ast-search-results-per-page]\";a:4:{s:7:\"default\";i:10;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[ast-search-live-search]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[ast-search-live-search-post-types]\";a:4:{s:7:\"default\";a:2:{s:4:\"post\";i:1;s:4:\"page\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[related-posts-section-heading]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:38:\"related-posts-section-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[enable-related-posts]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[related-posts-title]\";a:4:{s:7:\"default\";s:13:\"Related Posts\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[releted-posts-title-alignment]\";a:4:{s:7:\"default\";s:4:\"left\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[related-posts-structure]\";a:4:{s:7:\"default\";a:2:{i:0;s:14:\"featured-image\";i:1;s:10:\"title-meta\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[related-metadata-separator]\";a:4:{s:7:\"default\";s:1:\"/\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[related-posts-meta-structure]\";a:4:{s:7:\"default\";a:3:{i:0;s:8:\"comments\";i:1;s:8:\"category\";i:2;s:6:\"author\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[related-posts-image-ratio-type]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[related-posts-image-ratio-pre-scale]\";a:4:{s:7:\"default\";s:4:\"16/9\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[related-posts-image-custom-scale-width]\";a:4:{s:7:\"default\";i:16;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:23:\"sanitize_number_n_blank\";}}s:55:\"astra-settings[related-posts-image-custom-scale-height]\";a:4:{s:7:\"default\";i:9;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:23:\"sanitize_number_n_blank\";}}s:60:\"astra-settings[related-posts-custom-image-scale-description]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[related-posts-image-size]\";a:4:{s:7:\"default\";s:5:\"large\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[related-posts-author-prefix-label]\";a:4:{s:7:\"default\";s:3:\"By \";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[related-posts-author-avatar]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[related-posts-author-avatar-size]\";a:4:{s:7:\"default\";i:30;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[related-posts-meta-date-type]\";a:4:{s:7:\"default\";s:9:\"published\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[related-posts-date-format]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[related-posts-category-style]\";a:4:{s:7:\"default\";s:4:\"none\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[related-posts-tag-style]\";a:4:{s:7:\"default\";s:4:\"none\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[enable-related-posts-excerpt]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[related-posts-excerpt-count]\";a:4:{s:7:\"default\";i:25;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[related-posts-total-count]\";a:4:{s:7:\"default\";i:2;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[related-posts-grid-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:7:\"2-equal\";s:6:\"tablet\";s:7:\"2-equal\";s:6:\"mobile\";s:4:\"full\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[related-posts-query-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[related-posts-based-on]\";a:4:{s:7:\"default\";s:10:\"categories\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[related-posts-order-by]\";a:4:{s:7:\"default\";s:4:\"date\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[related-posts-order]\";a:4:{s:7:\"default\";s:3:\"asc\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[related-posts-box-placement]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[related-posts-outside-location]\";a:4:{s:7:\"default\";s:5:\"above\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[related-posts-container-width]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[related-posts-colors-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:60:\"astra-settings[related-posts-section-title-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[related-posts-title-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[related-posts-meta-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[related-posts-content-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[related-posts-text-color]\";a:4:{s:7:\"default\";s:25:\"var(--ast-global-color-2)\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[related-posts-link-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[related-posts-title-color]\";a:4:{s:7:\"default\";s:25:\"var(--ast-global-color-2)\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:46:\"astra-settings[related-posts-background-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:40:\"astra-settings[related-posts-meta-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[related-posts-link-hover-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[related-posts-meta-link-hover-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[related-posts-title-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:47:\"astra-settings[related-posts-title-font-weight]\";a:4:{s:7:\"default\";s:3:\"500\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:45:\"astra-settings[related-posts-title-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:2:\"20\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[related-posts-title-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:3:\"1.5\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:55:\"astra-settings[related-posts-section-title-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:55:\"astra-settings[related-posts-section-title-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:53:\"astra-settings[related-posts-section-title-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:2:\"26\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:55:\"astra-settings[related-posts-section-title-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:3:\"1.6\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[related-posts-meta-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:46:\"astra-settings[related-posts-meta-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:44:\"astra-settings[related-posts-meta-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:2:\"14\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[related-posts-meta-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:3:\"1.6\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[related-posts-content-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:49:\"astra-settings[related-posts-content-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:47:\"astra-settings[related-posts-content-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[related-posts-content-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[ast-sub-section-related-posts-border-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[ast-sub-section-related-posts-border-width]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[ast-sub-section-related-posts-border-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:59:\"astra-settings[ast-sub-section-related-posts-border-radius]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[ast-sub-section-related-posts-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[ast-sub-section-related-posts-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";d:2.5;s:5:\"right\";d:2.5;s:6:\"bottom\";d:2.5;s:4:\"left\";d:2.5;}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"em\";s:11:\"tablet-unit\";s:2:\"em\";s:11:\"mobile-unit\";s:2:\"em\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:52:\"astra-settings[ast-sub-section-related-posts-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";i:2;s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"em\";s:11:\"tablet-unit\";s:2:\"em\";s:11:\"mobile-unit\";s:2:\"em\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:45:\"astra-settings[transparent-header-logo-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[hba-transparent-header-bg-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[transparent-header-bg-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[hbb-transparent-header-bg-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:62:\"astra-settings[transparent-header-color-site-title-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:64:\"astra-settings[transparent-header-color-h-site-title-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[transparent-menu-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[transparent-menu-bg-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[transparent-menu-h-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[transparent-submenu-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:55:\"astra-settings[transparent-submenu-bg-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[transparent-submenu-h-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:65:\"astra-settings[transparent-content-section-link-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:67:\"astra-settings[transparent-content-section-link-h-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[transparent-header-enable]\";a:4:{s:7:\"default\";i:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[transparent-header-disable-on]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[transparent-header-disable-404-page]\";a:4:{s:7:\"default\";i:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[transparent-header-disable-search-page]\";a:4:{s:7:\"default\";i:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[transparent-header-disable-archive-pages]\";a:4:{s:7:\"default\";i:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[transparent-header-disable-index]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:61:\"astra-settings[transparent-header-disable-latest-posts-index]\";a:4:{s:7:\"default\";i:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[transparent-header-disable-page]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[transparent-header-disable-posts]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[transparent-header-on-devices]\";a:4:{s:7:\"default\";s:4:\"both\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[different-transparent-logo]\";a:4:{s:7:\"default\";i:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[transparent-header-logo]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";s:11:\"esc_url_raw\";}s:49:\"astra-settings[different-transparent-retina-logo]\";a:4:{s:7:\"default\";i:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[transparent-header-retina-logo]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";s:11:\"esc_url_raw\";}s:45:\"astra-settings[transparent-header-logo-width]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:150;s:6:\"tablet\";i:120;s:6:\"mobile\";i:100;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[transparent-header-main-sep]\";a:4:{s:7:\"default\";i:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[transparent-header-main-sep-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:47:\"astra-settings[divider-sec-transparent-styling]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[transparent-header-colors]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[transparent-header-colors-menu]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[transparent-header-colors-submenu]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"section-transparent-header-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:61:\"astra-settings[transparent-header-social-text-colors-content]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:67:\"astra-settings[transparent-header-social-background-colors-content]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[transparent-header-social-icons-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:55:\"astra-settings[transparent-header-social-icons-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[transparent-header-social-icons-bg-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[transparent-header-social-icons-bg-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[transparent-header-html-colors-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[transparent-header-html-text-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:50:\"astra-settings[transparent-header-html-link-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:52:\"astra-settings[transparent-header-html-link-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:52:\"astra-settings[transparent-header-search-icon-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:62:\"astra-settings[transparent-header-search-box-background-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:53:\"astra-settings[transparent-header-buttons-text-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:59:\"astra-settings[transparent-header-buttons-background-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:55:\"astra-settings[transparent-header-buttons-border-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[transparent-header-button-text-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:54:\"astra-settings[transparent-header-button-text-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:50:\"astra-settings[transparent-header-button-bg-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:52:\"astra-settings[transparent-header-button-bg-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:54:\"astra-settings[transparent-header-button-border-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[transparent-header-button-border-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[transparent-account-icon-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:51:\"astra-settings[transparent-account-type-text-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:51:\"astra-settings[transparent-header-toggle-btn-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[transparent-header-toggle-btn-bg-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[transparent-header-toggle-border-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[breadcrumb-position]\";a:4:{s:7:\"default\";s:4:\"none\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[breadcrumb-position-none-notice]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";s:0:\"\";}s:49:\"astra-settings[breadcrumb-disable-layout-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[breadcrumb-disable-on]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[breadcrumb-disable-home-page]\";a:4:{s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[breadcrumb-disable-blog-posts-page]\";a:4:{s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[breadcrumb-disable-search]\";a:4:{s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[breadcrumb-disable-archive]\";a:4:{s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[breadcrumb-disable-single-page]\";a:4:{s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[breadcrumb-disable-single-post]\";a:4:{s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[breadcrumb-disable-singular]\";a:4:{s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[breadcrumb-disable-404-page]\";a:4:{s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[breadcrumb-alignment]\";a:4:{s:7:\"default\";s:4:\"left\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[breadcrumb-spacing]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:45:\"astra-settings[breadcrumb-separator-selector]\";a:4:{s:7:\"default\";s:5:\"\\003E\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[breadcrumb-separator]\";a:4:{s:7:\"default\";s:5:\"\\00bb\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:35:\"section-breadcrumb-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[breadcrumb-color-section-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[breadcrumb-bg-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[breadcrumb-active-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[breadcrumb-separator-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[section-breadcrumb-link-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[breadcrumb-text-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[breadcrumb-hover-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[section-breadcrumb-typo]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[breadcrumb-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:38:\"astra-settings[breadcrumb-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:36:\"astra-settings[breadcrumb-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[breadcrumb-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[scroll-to-top-enable]\";a:4:{s:7:\"default\";b:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[scroll-to-top-on-devices]\";a:4:{s:7:\"default\";s:4:\"both\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[scroll-to-top-icon-position]\";a:4:{s:7:\"default\";s:5:\"right\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[scroll-to-top-icon-size]\";a:4:{s:7:\"default\";i:15;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[scroll-on-top-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[scroll-on-top-bg-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[scroll-to-top-icon-radius-fields]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[scroll-to-top-icon-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:43:\"astra-settings[scroll-to-top-icon-bg-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:42:\"astra-settings[scroll-to-top-icon-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:45:\"astra-settings[scroll-to-top-icon-h-bg-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:38:\"section-scroll-to-top-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[enable-scroll-to-top-notice]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";s:0:\"\";}s:34:\"astra-settings[heading-base-color]\";a:4:{s:7:\"default\";s:25:\"var(--ast-global-color-2)\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:38:\"astra-settings[button-text-typography]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[secondary-button-text-typography]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[font-family-button]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:44:\"astra-settings[secondary-font-family-button]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:34:\"astra-settings[font-weight-button]\";a:4:{s:7:\"default\";s:3:\"500\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:44:\"astra-settings[secondary-font-weight-button]\";a:4:{s:7:\"default\";s:3:\"500\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:32:\"astra-settings[font-size-button]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:17;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[secondary-font-size-button]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:2:\"16\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[font-extras-button]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";i:1;s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:1:\"1\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:9:\"uppercase\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[secondary-font-extras-button]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";i:1;s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"section-footer-builder-layout-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[builder-footer]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[footer-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"tablet\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"mobile\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[footer-bg-obj-responsive-description]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";s:0:\"\";}s:36:\"astra-settings[footer-desktop-items]\";a:4:{s:7:\"default\";a:3:{s:5:\"above\";a:5:{s:7:\"above_1\";a:0:{}s:7:\"above_2\";a:0:{}s:7:\"above_3\";a:0:{}s:7:\"above_4\";a:0:{}s:7:\"above_5\";a:0:{}}s:7:\"primary\";a:5:{s:9:\"primary_1\";a:0:{}s:9:\"primary_2\";a:0:{}s:9:\"primary_3\";a:0:{}s:9:\"primary_4\";a:0:{}s:9:\"primary_5\";a:0:{}}s:5:\"below\";a:5:{s:7:\"below_1\";a:1:{i:0;s:9:\"copyright\";}s:7:\"below_2\";a:0:{}s:7:\"below_3\";a:0:{}s:7:\"below_4\";a:0:{}s:7:\"below_5\";a:0:{}}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[footer-draggable-items]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[footer-builder-pro-items]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[section-footer-builder-layout-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[section-footer-builder-layout-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:52:\"astra-settings[section-footer-builder-layout-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:45:\"section-above-header-builder-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[hba-header-height]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:50;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[hba-header-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:10:{s:16:\"background-color\";s:55:\"var( --ast-global-color-primary, --ast-global-color-4 )\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"tablet\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"mobile\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[hba-header-bottom-border-color]\";a:4:{s:7:\"default\";s:65:\"var( --ast-global-color-subtle-background, --ast-global-color-7 )\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:36:\"astra-settings[hba-header-separator]\";a:4:{s:7:\"default\";i:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[section-above-header-builder-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[section-above-header-builder-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:51:\"astra-settings[section-above-header-builder-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:66:\"astra-settings[section-above-header-builder-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:45:\"section-below-header-builder-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[hbb-header-height]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:60;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[hbb-header-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:10:{s:16:\"background-color\";s:7:\"#eeeeee\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"tablet\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"mobile\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[hbb-header-bottom-border-color]\";a:4:{s:7:\"default\";s:65:\"var( --ast-global-color-subtle-background, --ast-global-color-7 )\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:36:\"astra-settings[hbb-header-separator]\";a:4:{s:7:\"default\";i:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[section-below-header-builder-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[section-below-header-builder-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:51:\"astra-settings[section-below-header-builder-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:66:\"astra-settings[section-below-header-builder-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:60:\"astra-settings[astra-sidebar-widgets-header-widget-1-margin]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:43:\"astra-settings[header-widget-1-title-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[header-widget-1-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[header-widget-1-link-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[header-widget-1-link-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[header-widget-1-link-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-widget-1-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[header-widget-1-content-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:75:\"astra-settings[astra-sidebar-widgets-header-widget-1-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:60:\"astra-settings[astra-sidebar-widgets-header-widget-2-margin]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:43:\"astra-settings[header-widget-2-title-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[header-widget-2-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[header-widget-2-link-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[header-widget-2-link-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[header-widget-2-link-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-widget-2-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[header-widget-2-content-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:75:\"astra-settings[astra-sidebar-widgets-header-widget-2-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:46:\"section-header-mobile-trigger-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[header-trigger-icon]\";a:4:{s:7:\"default\";s:4:\"menu\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[mobile-header-toggle-btn-style]\";a:4:{s:7:\"default\";s:7:\"minimal\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[mobile-header-menu-label]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[mobile-header-toggle-btn-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:46:\"astra-settings[mobile-header-toggle-icon-size]\";a:4:{s:7:\"default\";i:20;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[mobile-header-toggle-btn-bg-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:52:\"astra-settings[mobile-header-toggle-btn-border-size]\";a:4:{s:7:\"default\";a:4:{s:3:\"top\";i:1;s:5:\"right\";i:1;s:6:\"bottom\";i:1;s:4:\"left\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[mobile-header-toggle-border-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:57:\"astra-settings[mobile-header-toggle-border-radius-fields]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:60:\"astra-settings[section-header-mobile-trigger-margin-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[section-header-mobile-trigger-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:45:\"astra-settings[mobile-header-label-font-size]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"section-popup-header-builder-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[mobile-header-type]\";a:4:{s:7:\"default\";s:8:\"dropdown\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[off-canvas-move-body]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[off-canvas-move-body-notice]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";s:0:\"\";}s:32:\"astra-settings[off-canvas-slide]\";a:4:{s:7:\"default\";s:5:\"right\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[header-builder-menu-toggle-target]\";a:4:{s:7:\"default\";s:4:\"icon\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[header-offcanvas-content-alignment]\";a:4:{s:7:\"default\";s:10:\"flex-start\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[off-canvas-background]\";a:4:{s:7:\"default\";a:10:{s:16:\"background-color\";s:7:\"#ffffff\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:23:\"sanitize_background_obj\";}}s:38:\"astra-settings[off-canvas-close-color]\";a:4:{s:7:\"default\";s:7:\"#3a3a3a\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:40:\"astra-settings[off-canvas-inner-spacing]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[off-canvas-padding]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"section-primary-header-builder-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:32:\"astra-settings[hb-header-height]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:80;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[hb-header-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:10:{s:16:\"background-color\";s:55:\"var( --ast-global-color-primary, --ast-global-color-4 )\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"tablet\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"mobile\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[hb-header-main-sep-color]\";a:4:{s:7:\"default\";s:65:\"var( --ast-global-color-subtle-background, --ast-global-color-7 )\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:34:\"astra-settings[hb-header-main-sep]\";a:4:{s:7:\"default\";i:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[section-primary-header-builder-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[section-primary-header-builder-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:53:\"astra-settings[section-primary-header-builder-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:68:\"astra-settings[section-primary-header-builder-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[logo-title-settings-link]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:30:\"title_tagline-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[header-logo-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[title_tagline-margin-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[title_tagline-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:36:\"astra-settings[font-size-site-title]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:26;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[font-size-site-tagline]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:15;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[title_tagline-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:36:\"section-hb-button-1-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[header-button1-text]\";a:4:{s:7:\"default\";s:6:\"Button\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[header-button1-link-option]\";a:4:{s:7:\"default\";a:3:{s:3:\"url\";s:23:\"https://www.wpastra.com\";s:7:\"new_tab\";b:0;s:8:\"link_rel\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:13:\"sanitize_link\";}}s:47:\"astra-settings[header-button1-text-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[header-button1-background-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-button1-text-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[header-button1-text-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-button1-back-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[header-button1-back-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:65:\"astra-settings[header-button1-builder-button-border-colors-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[header-button1-border-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[header-button1-border-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[header-button1-border-size]\";a:4:{s:7:\"default\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[header-button1-border-radius-fields]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";i:40;s:5:\"right\";i:40;s:6:\"bottom\";i:40;s:4:\"left\";i:40;}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:46:\"astra-settings[header-button1-text-typography]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[header-button1-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:42:\"astra-settings[header-button1-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:40:\"astra-settings[header-button1-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[header-button1-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[section-hb-button-1-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[section-hb-button-1-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[section-hb-button-1-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";i:15;s:5:\"right\";i:30;s:6:\"bottom\";i:15;s:4:\"left\";i:30;}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:42:\"astra-settings[section-hb-button-1-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:55:\"astra-settings[section-hb-html-1-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[font-size-section-hb-html-1]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:15;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"section-hb-html-1-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:29:\"astra-settings[header-html-1]\";a:4:{s:7:\"default\";s:22:\"Insert HTML text here.\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[header-html-1color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-html-1-link-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[header-html-1link-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-html-1link-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[section-hb-html-1-margin-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[section-hb-html-1-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:55:\"astra-settings[section-hb-html-2-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[font-size-section-hb-html-2]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:15;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"section-hb-html-2-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:29:\"astra-settings[header-html-2]\";a:4:{s:7:\"default\";s:22:\"Insert HTML text here.\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[header-html-2color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-html-2-link-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[header-html-2link-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-html-2link-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[section-hb-html-2-margin-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[section-hb-html-2-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:55:\"astra-settings[section-hb-menu-1-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:34:\"section-hb-menu-1-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[header-menu1-create-menu-link]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[header-menu1-menu-hover-animation]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[header-menu1-submenu-heading]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[header-menu1-submenu-width]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[header-menu1-submenu-container-animation]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[header-menu1-submenu-container-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[header-menu1-submenu-item-b-size]\";a:4:{s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[header-menu1-submenu-item-b-color]\";a:4:{s:7:\"default\";s:7:\"#eaeaea\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:47:\"astra-settings[header-menu1-submenu-top-offset]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[header-menu1-submenu-border]\";a:4:{s:7:\"default\";a:4:{s:3:\"top\";i:2;s:6:\"bottom\";i:0;s:4:\"left\";i:0;s:5:\"right\";i:0;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[header-menu1-submenu-b-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:57:\"astra-settings[header-menu1-submenu-border-radius-fields]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:48:\"astra-settings[header-menu1-submenu-item-border]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[header-menu1-menu-stack-on-mobile]\";a:4:{s:7:\"default\";b:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[section-hb-menu-1-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:40:\"astra-settings[header-menu1-text-colors]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[header-menu1-background-colors]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[header-menu1-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:25:\"var(--ast-global-color-3)\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[header-menu1-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"tablet\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"mobile\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[header-menu1-h-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:25:\"var(--ast-global-color-1)\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[header-menu1-h-bg-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[header-menu1-a-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:25:\"var(--ast-global-color-1)\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[header-menu1-a-bg-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[header-1-font-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[header-menu1-header-menu-typography]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-menu1-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:40:\"astra-settings[header-menu1-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:38:\"astra-settings[header-menu1-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-menu1-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-1-spacing-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-menu1-menu-spacing]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:55:\"astra-settings[section-hb-menu-2-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:34:\"section-hb-menu-2-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[header-menu2-create-menu-link]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[header-menu2-menu-hover-animation]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[header-menu2-submenu-heading]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[header-menu2-submenu-width]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[header-menu2-submenu-container-animation]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[header-menu2-submenu-container-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[header-menu2-submenu-item-b-size]\";a:4:{s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[header-menu2-submenu-item-b-color]\";a:4:{s:7:\"default\";s:7:\"#eaeaea\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:47:\"astra-settings[header-menu2-submenu-top-offset]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[header-menu2-submenu-border]\";a:4:{s:7:\"default\";a:4:{s:3:\"top\";i:2;s:6:\"bottom\";i:0;s:4:\"left\";i:0;s:5:\"right\";i:0;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[header-menu2-submenu-b-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:57:\"astra-settings[header-menu2-submenu-border-radius-fields]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:48:\"astra-settings[header-menu2-submenu-item-border]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[header-menu2-menu-stack-on-mobile]\";a:4:{s:7:\"default\";b:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[section-hb-menu-2-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:40:\"astra-settings[header-menu2-text-colors]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[header-menu2-background-colors]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[header-menu2-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:25:\"var(--ast-global-color-3)\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[header-menu2-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"tablet\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"mobile\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[header-menu2-h-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:25:\"var(--ast-global-color-1)\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[header-menu2-h-bg-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[header-menu2-a-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:25:\"var(--ast-global-color-1)\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[header-menu2-a-bg-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[header-2-font-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[header-menu2-header-menu-typography]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-menu2-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:40:\"astra-settings[header-menu2-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:38:\"astra-settings[header-menu2-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-menu2-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-2-spacing-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-menu2-menu-spacing]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:38:\"section-header-search-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-search-icon-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-search-icon-space]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:18;s:6:\"tablet\";i:18;s:6:\"mobile\";i:18;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[header-search-width]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:27:\"astra-settings[live-search]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[live-search-post-types]\";a:4:{s:7:\"default\";a:2:{s:4:\"post\";i:1;s:4:\"page\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[live-search-result-count]\";a:4:{s:7:\"default\";i:5;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[section-header-search-margin-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[section-header-search-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:59:\"astra-settings[section-header-search-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[header-account-tabs]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[header-account-login-heading]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[header-account-login-style]\";a:4:{s:7:\"default\";s:4:\"icon\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:67:\"astra-settings[header-account-login-style-extend-text-profile-type]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[header-account-logged-in-text]\";a:4:{s:7:\"default\";s:10:\"My Account\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-account-login-link]\";a:4:{s:7:\"default\";a:3:{s:3:\"url\";s:0:\"\";s:7:\"new_tab\";b:0;s:8:\"link_rel\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:13:\"sanitize_link\";}}s:45:\"astra-settings[header-account-logout-heading]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[header-account-logout-style]\";a:4:{s:7:\"default\";s:4:\"icon\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:68:\"astra-settings[header-account-logout-style-extend-text-profile-type]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[header-account-logout-preview]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[header-account-logged-out-text]\";a:4:{s:7:\"default\";s:6:\"Log In\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[header-account-logout-link]\";a:4:{s:7:\"default\";a:3:{s:3:\"url\";s:39:\"https://mrarif.me/cpnordic/wp-login.php\";s:7:\"new_tab\";b:0;s:8:\"link_rel\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:13:\"sanitize_link\";}}s:42:\"astra-settings[header-account-image-width]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:2:\"40\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-account-icon-size]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:18;s:6:\"tablet\";i:18;s:6:\"mobile\";i:18;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-account-icon-color]\";a:4:{s:7:\"default\";s:25:\"var(--ast-global-color-2)\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:50:\"astra-settings[header-account-text-design-options]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[header-account-type-text-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:46:\"astra-settings[header-account-spacing-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[header-account-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:48:\"astra-settings[font-size-section-header-account]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:60:\"astra-settings[section-header-account-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:63:\"astra-settings[section-hb-social-icons-1-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[font-size-section-hb-social-icons-1]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"section-hb-social-icons-1-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[header-social-1-color-type]\";a:4:{s:7:\"default\";s:6:\"custom\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[header-social-1-brand-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[header-social-1-brand-label-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[header-social-1-brand-hover-toggle]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[header-social-1-icon-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[header-social-1-label-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[header-social-1-background-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[header-social-1-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[header-social-1-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[header-social-1-label-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[header-social-1-label-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-social-1-bg-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[header-social-1-bg-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[header-social-icons-1]\";a:4:{s:7:\"default\";a:1:{s:5:\"items\";a:3:{i:0;a:8:{s:2:\"id\";s:8:\"facebook\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#557dbc\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:8:\"facebook\";s:5:\"label\";s:8:\"Facebook\";}i:1;a:8:{s:2:\"id\";s:7:\"twitter\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#7acdee\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:7:\"twitter\";s:5:\"label\";s:7:\"Twitter\";}i:2;a:8:{s:2:\"id\";s:9:\"instagram\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#8a3ab9\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:9:\"instagram\";s:5:\"label\";s:9:\"Instagram\";}}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:21:\"sanitize_social_icons\";}}s:44:\"astra-settings[header-social-1-label-toggle]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[header-social-1-space]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-social-1-bg-space]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[header-social-1-size]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:18;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[header-social-1-radius-fields]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:56:\"astra-settings[section-hb-social-icons-1-margin-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[section-hb-social-icons-1-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:43:\"section-header-mobile-menu-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[header-mobile-menu-create-menu-link]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[header-mobile-menu-submenu-item-border]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[header-mobile-menu-divider-colors-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[header-mobile-menu-submenu-item-b-size]\";a:4:{s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:55:\"astra-settings[header-mobile-menu-submenu-item-b-color]\";a:4:{s:7:\"default\";s:7:\"#eaeaea\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:46:\"astra-settings[header-mobile-menu-link-colors]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[header-mobile-menu-background-colors]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[header-mobile-menu-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:25:\"var(--ast-global-color-3)\";s:6:\"tablet\";s:25:\"var(--ast-global-color-3)\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[header-mobile-menu-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"tablet\";a:10:{s:16:\"background-color\";s:25:\"var(--ast-global-color-4)\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"mobile\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[header-mobile-menu-h-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:25:\"var(--ast-global-color-1)\";s:6:\"tablet\";s:25:\"var(--ast-global-color-1)\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[header-mobile-menu-h-bg-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:25:\"var(--ast-global-color-5)\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[header-mobile-menu-a-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:25:\"var(--ast-global-color-1)\";s:6:\"tablet\";s:25:\"var(--ast-global-color-1)\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[header-mobile-menu-a-bg-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:25:\"var(--ast-global-color-5)\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[header-mobile-menu-header-typo-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[header-mobile-menu-header-menu-typography]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[header-mobile-menu-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:46:\"astra-settings[header-mobile-menu-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:44:\"astra-settings[header-mobile-menu-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[font-extras-header-mobile-menu]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:55:\"astra-settings[header-mobile-menu-menu-spacing-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[header-mobile-menu-menu-spacing]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:49:\"astra-settings[section-header-mobile-menu-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:64:\"astra-settings[section-header-mobile-menu-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:45:\"section-above-footer-builder-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[hba-footer-column]\";a:4:{s:7:\"default\";s:1:\"2\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[hba-footer-layout]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:7:\"2-equal\";s:6:\"tablet\";s:7:\"2-equal\";s:6:\"mobile\";s:4:\"full\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[hba-footer-layout-width]\";a:4:{s:7:\"default\";s:7:\"content\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[hba-footer-height]\";a:4:{s:7:\"default\";i:60;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[hba-footer-vertical-alignment]\";a:4:{s:7:\"default\";s:10:\"flex-start\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:25:\"astra-settings[hba-stack]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:5:\"stack\";s:6:\"tablet\";s:5:\"stack\";s:6:\"mobile\";s:5:\"stack\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[hba-footer-separator]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[hba-footer-top-border-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:44:\"astra-settings[hba-footer-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:10:{s:16:\"background-color\";s:7:\"#eeeeee\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"tablet\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"mobile\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[hba-inner-spacing]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[section-above-footer-builder-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[section-above-footer-builder-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:51:\"astra-settings[section-above-footer-builder-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:66:\"astra-settings[section-above-footer-builder-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:45:\"section-below-footer-builder-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[hbb-footer-column]\";a:4:{s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[hbb-footer-layout]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:4:\"full\";s:6:\"tablet\";s:4:\"full\";s:6:\"mobile\";s:4:\"full\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[hbb-footer-layout-width]\";a:4:{s:7:\"default\";s:7:\"content\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[hbb-footer-height]\";a:4:{s:7:\"default\";i:60;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[hbb-footer-vertical-alignment]\";a:4:{s:7:\"default\";s:6:\"center\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:25:\"astra-settings[hbb-stack]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:5:\"stack\";s:6:\"tablet\";s:5:\"stack\";s:6:\"mobile\";s:5:\"stack\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[hbb-footer-separator]\";a:4:{s:7:\"default\";i:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[hbb-footer-top-border-color]\";a:4:{s:7:\"default\";s:65:\"var( --ast-global-color-subtle-background, --ast-global-color-7 )\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:44:\"astra-settings[hbb-footer-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:10:{s:16:\"background-color\";s:26:\"var(--ast-global-color-4 )\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"tablet\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"mobile\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[hbb-inner-spacing]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[section-below-footer-builder-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[section-below-footer-builder-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:51:\"astra-settings[section-below-footer-builder-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:66:\"astra-settings[section-below-footer-builder-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:41:\"section-footer-copyright-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[footer-copyright-editor]\";a:4:{s:7:\"default\";s:77:\"Copyright [copyright] [current_year] [site_title] | Powered by [theme_author]\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[footer-copyright-alignment]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:6:\"center\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[footer-copyright-color]\";a:4:{s:7:\"default\";s:25:\"var(--ast-global-color-3)\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:55:\"astra-settings[section-footer-copyright-margin-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[section-footer-copyright-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:50:\"astra-settings[font-size-section-footer-copyright]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:16;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:62:\"astra-settings[section-footer-copyright-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:36:\"section-footer-menu-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[footer-create-menu-link]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[footer-menu-layout]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:10:\"horizontal\";s:6:\"tablet\";s:8:\"vertical\";s:6:\"mobile\";s:8:\"vertical\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[footer-menu-alignment]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:6:\"center\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[footer-menu-link-colors]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[footer-menu-background-colors]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[footer-menu-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[footer-menu-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"tablet\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"mobile\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[footer-menu-h-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[footer-menu-h-bg-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[footer-menu-a-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[footer-menu-a-bg-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[footer-main-menu-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[footer-main-menu-spacing]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:1:\"0\";s:5:\"right\";s:2:\"20\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:2:\"20\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:42:\"astra-settings[section-footer-menu-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:37:\"astra-settings[footer-menu-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[section-footer-menu-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:63:\"astra-settings[section-fb-social-icons-1-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[font-size-section-fb-social-icons-1]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"section-fb-social-icons-1-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[footer-social-1-color-type]\";a:4:{s:7:\"default\";s:6:\"custom\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[footer-social-1-brand-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[footer-social-1-brand-label-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[footer-social-1-brand-hover-toggle]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[footer-social-1-icon-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[footer-social-1-label-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[footer-social-1-background-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[footer-social-1-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[footer-social-1-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[footer-social-1-label-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[footer-social-1-label-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[footer-social-1-bg-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[footer-social-1-bg-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[footer-social-icons-1]\";a:4:{s:7:\"default\";a:1:{s:5:\"items\";a:3:{i:0;a:8:{s:2:\"id\";s:8:\"facebook\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#557dbc\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:8:\"facebook\";s:5:\"label\";s:8:\"Facebook\";}i:1;a:8:{s:2:\"id\";s:7:\"twitter\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#7acdee\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:7:\"twitter\";s:5:\"label\";s:7:\"Twitter\";}i:2;a:8:{s:2:\"id\";s:9:\"instagram\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#8a3ab9\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:9:\"instagram\";s:5:\"label\";s:9:\"Instagram\";}}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:21:\"sanitize_social_icons\";}}s:44:\"astra-settings[footer-social-1-label-toggle]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[footer-social-1-space]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[footer-social-1-bg-space]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[footer-social-1-size]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:18;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[footer-social-1-radius-fields]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:56:\"astra-settings[section-fb-social-icons-1-margin-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[section-fb-social-icons-1-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:41:\"astra-settings[footer-social-1-alignment]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:6:\"center\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:47:\"section-primary-footer-builder-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:32:\"astra-settings[hb-footer-column]\";a:4:{s:7:\"default\";s:1:\"3\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:32:\"astra-settings[hb-footer-layout]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:7:\"3-equal\";s:6:\"tablet\";s:7:\"3-equal\";s:6:\"mobile\";s:4:\"full\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[hb-footer-layout-width]\";a:4:{s:7:\"default\";s:7:\"content\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[hb-primary-footer-height]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[hb-footer-vertical-alignment]\";a:4:{s:7:\"default\";s:10:\"flex-start\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:24:\"astra-settings[hb-stack]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:5:\"stack\";s:6:\"tablet\";s:5:\"stack\";s:6:\"mobile\";s:5:\"stack\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[hb-footer-main-sep]\";a:4:{s:7:\"default\";i:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[hb-footer-main-sep-color]\";a:4:{s:7:\"default\";s:65:\"var( --ast-global-color-subtle-background, --ast-global-color-7 )\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:43:\"astra-settings[hb-footer-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:10:{s:16:\"background-color\";s:7:\"#f9f9f9\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"tablet\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"mobile\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:32:\"astra-settings[hb-inner-spacing]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[section-primary-footer-builder-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[section-primary-footer-builder-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:53:\"astra-settings[section-primary-footer-builder-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:68:\"astra-settings[section-primary-footer-builder-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:55:\"astra-settings[section-fb-html-1-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[font-size-section-fb-html-1]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"section-fb-html-1-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:29:\"astra-settings[footer-html-1]\";a:4:{s:7:\"default\";s:22:\"Insert HTML text here.\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[footer-html-1color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[footer-html-1-link-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[footer-html-1link-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[footer-html-1link-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[section-fb-html-1-margin-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[section-fb-html-1-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:39:\"astra-settings[footer-html-1-alignment]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:6:\"center\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:55:\"astra-settings[section-fb-html-2-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[font-size-section-fb-html-2]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"section-fb-html-2-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:29:\"astra-settings[footer-html-2]\";a:4:{s:7:\"default\";s:22:\"Insert HTML text here.\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[footer-html-2color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[footer-html-2-link-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[footer-html-2link-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[footer-html-2link-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[section-fb-html-2-margin-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[section-fb-html-2-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:39:\"astra-settings[footer-html-2-alignment]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:6:\"center\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:60:\"astra-settings[astra-sidebar-widgets-footer-widget-1-margin]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:41:\"astra-settings[footer-widget-alignment-1]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:4:\"left\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[footer-widget-1-title-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[footer-widget-1-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[footer-widget-1-link-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[footer-widget-1-link-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[footer-widget-1-link-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[footer-widget-1-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[footer-widget-1-content-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:75:\"astra-settings[astra-sidebar-widgets-footer-widget-1-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:60:\"astra-settings[astra-sidebar-widgets-footer-widget-2-margin]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:41:\"astra-settings[footer-widget-alignment-2]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:4:\"left\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[footer-widget-2-title-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[footer-widget-2-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[footer-widget-2-link-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[footer-widget-2-link-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[footer-widget-2-link-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[footer-widget-2-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[footer-widget-2-content-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:75:\"astra-settings[astra-sidebar-widgets-footer-widget-2-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:60:\"astra-settings[astra-sidebar-widgets-footer-widget-3-margin]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:41:\"astra-settings[footer-widget-alignment-3]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:4:\"left\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[footer-widget-3-title-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[footer-widget-3-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[footer-widget-3-link-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[footer-widget-3-link-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[footer-widget-3-link-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[footer-widget-3-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[footer-widget-3-content-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:75:\"astra-settings[astra-sidebar-widgets-footer-widget-3-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:60:\"astra-settings[astra-sidebar-widgets-footer-widget-4-margin]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:41:\"astra-settings[footer-widget-alignment-4]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:4:\"left\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[footer-widget-4-title-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[footer-widget-4-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[footer-widget-4-link-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[footer-widget-4-link-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[footer-widget-4-link-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[footer-widget-4-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[footer-widget-4-content-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:75:\"astra-settings[astra-sidebar-widgets-footer-widget-4-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}}s:8:\"partials\";a:37:{s:41:\"astra-settings[header-mobile-popup-items]\";a:4:{s:8:\"selector\";s:25:\"#ast-mobile-popup-wrapper\";s:15:\"render_callback\";a:2:{i:0;O:20:\"Astra_Builder_Header\":0:{}i:1;s:12:\"mobile_popup\";}s:18:\"containerInclusive\";b:1;s:15:\"fallbackRefresh\";b:1;}s:37:\"astra-settings[different-retina-logo]\";a:4:{s:8:\"selector\";s:14:\".site-branding\";s:15:\"render_callback\";s:35:\"Astra_Builder_Header::site_identity\";s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:1;}s:38:\"astra-settings[ast-header-retina-logo]\";a:4:{s:8:\"selector\";s:14:\".site-branding\";s:15:\"render_callback\";s:35:\"Astra_Builder_Header::site_identity\";s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:1;}s:37:\"astra-settings[different-mobile-logo]\";a:4:{s:8:\"selector\";s:14:\".site-branding\";s:15:\"render_callback\";s:35:\"Astra_Builder_Header::site_identity\";s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:1;}s:33:\"astra-settings[use-logo-svg-icon]\";a:4:{s:8:\"selector\";s:14:\".site-branding\";s:15:\"render_callback\";s:49:\"Astra_Builder_UI_Controller::render_site_identity\";s:18:\"containerInclusive\";b:1;s:15:\"fallbackRefresh\";b:0;}s:29:\"astra-settings[logo-svg-icon]\";a:4:{s:8:\"selector\";s:14:\".site-branding\";s:15:\"render_callback\";s:49:\"Astra_Builder_UI_Controller::render_site_identity\";s:18:\"containerInclusive\";b:1;s:15:\"fallbackRefresh\";b:0;}s:33:\"astra-settings[logo-title-inline]\";a:4:{s:8:\"selector\";s:14:\".site-branding\";s:15:\"render_callback\";s:35:\"Astra_Builder_Header::site_identity\";s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:1;}s:35:\"astra-settings[related-posts-title]\";a:4:{s:8:\"selector\";s:57:\".ast-related-posts-title-section .ast-related-posts-title\";s:15:\"render_callback\";a:2:{i:0;s:26:\"Astra_Related_Posts_Loader\";i:1;s:26:\"render_related_posts_title\";}s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:1;}s:39:\"astra-settings[transparent-header-logo]\";a:4:{s:8:\"selector\";s:64:\".ast-replace-site-logo-transparent .site-branding .site-logo-img\";s:15:\"render_callback\";s:0:\"\";s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:1;}s:35:\"astra-settings[breadcrumb-position]\";a:4:{s:8:\"selector\";s:54:\".ast-breadcrumbs-wrapper .ast-breadcrumbs .trail-items\";s:15:\"render_callback\";s:0:\"\";s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:1;}s:36:\"astra-settings[footer-desktop-items]\";a:4:{s:8:\"selector\";s:12:\".site-footer\";s:15:\"render_callback\";a:2:{i:0;O:20:\"Astra_Builder_Footer\":0:{}i:1;s:13:\"footer_markup\";}s:18:\"containerInclusive\";b:1;s:15:\"fallbackRefresh\";b:1;}s:35:\"astra-settings[header-trigger-icon]\";a:4:{s:8:\"selector\";s:16:\".ast-button-wrap\";s:15:\"render_callback\";a:2:{i:0;s:27:\"Astra_Builder_UI_Controller\";i:1;s:21:\"render_mobile_trigger\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:1;}s:46:\"astra-settings[mobile-header-toggle-btn-style]\";a:4:{s:8:\"selector\";s:16:\".ast-button-wrap\";s:15:\"render_callback\";a:2:{i:0;s:27:\"Astra_Builder_UI_Controller\";i:1;s:21:\"render_mobile_trigger\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:1;}s:40:\"astra-settings[mobile-header-menu-label]\";a:4:{s:8:\"selector\";s:16:\".ast-button-wrap\";s:15:\"render_callback\";a:2:{i:0;s:27:\"Astra_Builder_UI_Controller\";i:1;s:21:\"render_mobile_trigger\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:1;}s:35:\"astra-settings[header-button1-text]\";a:4:{s:8:\"selector\";s:20:\".ast-header-button-1\";s:15:\"render_callback\";a:2:{i:0;r:9173;i:1;s:8:\"button_1\";}s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:0;}s:42:\"astra-settings[header-button1-link-option]\";a:4:{s:8:\"selector\";s:20:\".ast-header-button-1\";s:15:\"render_callback\";a:2:{i:0;r:9173;i:1;s:8:\"button_1\";}s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:1;}s:29:\"astra-settings[header-html-1]\";a:4:{s:8:\"selector\";s:18:\".ast-header-html-1\";s:15:\"render_callback\";a:2:{i:0;r:9173;i:1;s:13:\"header_html_1\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:0;}s:29:\"astra-settings[header-html-2]\";a:4:{s:8:\"selector\";s:18:\".ast-header-html-2\";s:15:\"render_callback\";a:2:{i:0;r:9173;i:1;s:13:\"header_html_2\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:0;}s:42:\"astra-settings[header-account-login-style]\";a:4:{s:8:\"selector\";s:19:\".ast-header-account\";s:15:\"render_callback\";a:2:{i:0;s:27:\"Astra_Builder_UI_Controller\";i:1;s:14:\"render_account\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:1;}s:67:\"astra-settings[header-account-login-style-extend-text-profile-type]\";a:4:{s:8:\"selector\";s:19:\".ast-header-account\";s:15:\"render_callback\";a:2:{i:0;s:27:\"Astra_Builder_UI_Controller\";i:1;s:14:\"render_account\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:1;}s:45:\"astra-settings[header-account-logged-in-text]\";a:4:{s:8:\"selector\";s:19:\".ast-header-account\";s:15:\"render_callback\";a:2:{i:0;s:27:\"Astra_Builder_UI_Controller\";i:1;s:14:\"render_account\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:1;}s:41:\"astra-settings[header-account-login-link]\";a:4:{s:8:\"selector\";s:19:\".ast-header-account\";s:15:\"render_callback\";a:2:{i:0;s:27:\"Astra_Builder_UI_Controller\";i:1;s:14:\"render_account\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:1;}s:43:\"astra-settings[header-account-logout-style]\";a:4:{s:8:\"selector\";s:19:\".ast-header-account\";s:15:\"render_callback\";a:2:{i:0;s:27:\"Astra_Builder_UI_Controller\";i:1;s:14:\"render_account\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:1;}s:68:\"astra-settings[header-account-logout-style-extend-text-profile-type]\";a:4:{s:8:\"selector\";s:19:\".ast-header-account\";s:15:\"render_callback\";a:2:{i:0;s:27:\"Astra_Builder_UI_Controller\";i:1;s:14:\"render_account\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:1;}s:45:\"astra-settings[header-account-logout-preview]\";a:4:{s:8:\"selector\";s:19:\".ast-header-account\";s:15:\"render_callback\";a:2:{i:0;s:27:\"Astra_Builder_UI_Controller\";i:1;s:14:\"render_account\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:1;}s:46:\"astra-settings[header-account-logged-out-text]\";a:4:{s:8:\"selector\";s:19:\".ast-header-account\";s:15:\"render_callback\";a:2:{i:0;s:27:\"Astra_Builder_UI_Controller\";i:1;s:14:\"render_account\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:1;}s:37:\"astra-settings[header-social-icons-1]\";a:4:{s:8:\"selector\";s:25:\".ast-header-social-1-wrap\";s:15:\"render_callback\";a:2:{i:0;r:9173;i:1;s:15:\"header_social_1\";}s:18:\"containerInclusive\";b:1;s:15:\"fallbackRefresh\";b:0;}s:44:\"astra-settings[header-social-1-label-toggle]\";a:4:{s:8:\"selector\";s:25:\".ast-header-social-1-wrap\";s:15:\"render_callback\";a:2:{i:0;r:9173;i:1;s:15:\"header_social_1\";}s:18:\"containerInclusive\";b:1;s:15:\"fallbackRefresh\";b:0;}s:33:\"astra-settings[hba-footer-column]\";a:4:{s:8:\"selector\";s:23:\".site-above-footer-wrap\";s:15:\"render_callback\";a:2:{i:0;r:9227;i:1;s:12:\"above_footer\";}s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:1;}s:33:\"astra-settings[hbb-footer-column]\";a:4:{s:8:\"selector\";s:23:\".site-below-footer-wrap\";s:15:\"render_callback\";a:2:{i:0;r:9227;i:1;s:12:\"below_footer\";}s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:1;}s:39:\"astra-settings[footer-copyright-editor]\";a:4:{s:8:\"selector\";s:21:\".ast-footer-copyright\";s:15:\"render_callback\";a:2:{i:0;r:9227;i:1;s:16:\"footer_copyright\";}s:18:\"containerInclusive\";b:1;s:15:\"fallbackRefresh\";b:1;}s:34:\"astra-settings[footer-menu-layout]\";a:4:{s:8:\"selector\";s:59:\".footer-widget-area[data-section=\"section-footer-menu\"] nav\";s:15:\"render_callback\";a:2:{i:0;r:9227;i:1;s:11:\"footer_menu\";}s:18:\"containerInclusive\";b:1;s:15:\"fallbackRefresh\";b:1;}s:37:\"astra-settings[footer-social-icons-1]\";a:4:{s:8:\"selector\";s:25:\".ast-footer-social-1-wrap\";s:15:\"render_callback\";a:2:{i:0;r:9227;i:1;s:15:\"footer_social_1\";}s:18:\"containerInclusive\";b:1;s:15:\"fallbackRefresh\";b:0;}s:44:\"astra-settings[footer-social-1-label-toggle]\";a:4:{s:8:\"selector\";s:25:\".ast-footer-social-1-wrap\";s:15:\"render_callback\";a:2:{i:0;r:9227;i:1;s:15:\"footer_social_1\";}s:18:\"containerInclusive\";b:1;s:15:\"fallbackRefresh\";b:0;}s:32:\"astra-settings[hb-footer-column]\";a:4:{s:8:\"selector\";s:25:\".site-primary-footer-wrap\";s:15:\"render_callback\";a:2:{i:0;r:9227;i:1;s:14:\"primary_footer\";}s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:1;}s:29:\"astra-settings[footer-html-1]\";a:4:{s:8:\"selector\";s:18:\".ast-footer-html-1\";s:15:\"render_callback\";a:2:{i:0;r:9227;i:1;s:13:\"footer_html_1\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:0;}s:29:\"astra-settings[footer-html-2]\";a:4:{s:8:\"selector\";s:18:\".ast-footer-html-2\";s:15:\"render_callback\";a:2:{i:0;r:9227;i:1;s:13:\"footer_html_2\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:0;}}}', 'off');
INSERT INTO `wpcn_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(654, 'elementor_fonts_manager_font_types', 'a:1:{s:11:\"Nekst Black\";s:6:\"custom\";}', 'auto'),
(655, 'elementor_fonts_manager_fonts', 'a:1:{s:11:\"Nekst Black\";a:2:{s:9:\"font_face\";s:3752:\"@font-face {\n	font-family: \'Nekst Black\';\n	font-style: normal;\n	font-weight: 300;\n	font-display: auto;\n	src: url(\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/AnyConv.com__Fontspring-DEMO-nekst-semibold.eot\');\n	src: url(\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/AnyConv.com__Fontspring-DEMO-nekst-semibold.eot?#iefix\') format(\'embedded-opentype\'),\n		url(\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/AnyConv.com__Fontspring-DEMO-nekst-semibold.woff2\') format(\'woff2\'),\n		url(\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/AnyConv.com__Fontspring-DEMO-nekst-thin.woff\') format(\'woff\'),\n		url(\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/AnyConv.com__Fontspring-DEMO-nekst-semibold.ttf\') format(\'truetype\');\n}\n@font-face {\n	font-family: \'Nekst Black\';\n	font-style: normal;\n	font-weight: 400;\n	font-display: auto;\n	src: url(\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/AnyConv.com__Fontspring-DEMO-nekst-regular.eot\');\n	src: url(\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/AnyConv.com__Fontspring-DEMO-nekst-regular.eot?#iefix\') format(\'embedded-opentype\'),\n		url(\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/AnyConv.com__Fontspring-DEMO-nekst-regular.woff2\') format(\'woff2\'),\n		url(\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/AnyConv.com__Fontspring-DEMO-nekst-regular.woff\') format(\'woff\'),\n		url(\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/AnyConv.com__Fontspring-DEMO-nekst-semibold.ttf\') format(\'truetype\');\n}\n@font-face {\n	font-family: \'Nekst Black\';\n	font-style: normal;\n	font-weight: 500;\n	font-display: auto;\n	src: url(\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/AnyConv.com__Fontspring-DEMO-nekst-medium.eot\');\n	src: url(\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/AnyConv.com__Fontspring-DEMO-nekst-medium.eot?#iefix\') format(\'embedded-opentype\'),\n		url(\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/AnyConv.com__Fontspring-DEMO-nekst-medium.woff2\') format(\'woff2\'),\n		url(\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/AnyConv.com__Fontspring-DEMO-nekst-medium.woff\') format(\'woff\'),\n		url(\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/AnyConv.com__Fontspring-DEMO-nekst-medium.ttf\') format(\'truetype\');\n}\n@font-face {\n	font-family: \'Nekst Black\';\n	font-style: normal;\n	font-weight: 600;\n	font-display: auto;\n	src: url(\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/AnyConv.com__Fontspring-DEMO-nekst-bold.eot\');\n	src: url(\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/AnyConv.com__Fontspring-DEMO-nekst-bold.eot?#iefix\') format(\'embedded-opentype\'),\n		url(\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/AnyConv.com__Fontspring-DEMO-nekst-bold.woff2\') format(\'woff2\'),\n		url(\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/AnyConv.com__Fontspring-DEMO-nekst-bold.woff\') format(\'woff\'),\n		url(\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/AnyConv.com__Fontspring-DEMO-nekst-bold.ttf\') format(\'truetype\');\n}\n@font-face {\n	font-family: \'Nekst Black\';\n	font-style: normal;\n	font-weight: 900;\n	font-display: auto;\n	src: url(\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/AnyConv.com__Fontspring-DEMO-nekst-black.eot\');\n	src: url(\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/AnyConv.com__Fontspring-DEMO-nekst-black.eot?#iefix\') format(\'embedded-opentype\'),\n		url(\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/AnyConv.com__Fontspring-DEMO-nekst-black.woff2\') format(\'woff2\'),\n		url(\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/AnyConv.com__Fontspring-DEMO-nekst-black.woff\') format(\'woff\'),\n		url(\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/AnyConv.com__Fontspring-DEMO-nekst-black.ttf\') format(\'truetype\');\n}\n\";s:7:\"post_id\";i:117;}}', 'auto'),
(442, 'elementor_allow_tracking', 'yes', 'auto'),
(443, 'elementor_allow_tracking_last_update', '1769351361', 'auto'),
(439, 'edd_sl_1380e07af6fd2fb8cf7095284dd275e9', 'a:2:{s:7:\"timeout\";i:1769353208;s:5:\"value\";s:480:\"{\"new_version\":false,\"stable_version\":false,\"name\":\"\",\"slug\":\"powerpack-elements\",\"url\":\"\\/?changelog=1\",\"last_updated\":\"0000-00-00 00:00:00\",\"homepage\":false,\"package\":\"\",\"download_link\":\"\",\"sections\":{\"description\":\"\",\"changelog\":\"\"},\"banners\":{\"high\":false,\"low\":false},\"icons\":[],\"msg\":\"No license key has been provided.\",\"description\":[\"\"],\"changelog\":[\"\"],\"plugin\":\"powerpack-elements\\/powerpack-elements.php\",\"id\":\"powerpack-elements\\/powerpack-elements.php\",\"tested\":null}\";}', 'off'),
(449, 'elementor_pro_license_key', 'ep-ugLu1rp3BCnkcUMDdaUB1701104650EgD4W7ueft6i', 'auto'),
(450, '_elementor_pro_license_v2_data_fallback', 'a:2:{s:7:\"timeout\";i:1773852409;s:5:\"value\";s:2864:\"{\"expires\":\"2026-11-27 00:00:00\",\"subscription_id\":\"14245656\",\"status\":\"ACTIVE\",\"recurring\":true,\"features\":[\"template_access_level_20\",\"kit_access_level_20\",\"activity-log\",\"breadcrumbs\",\"form\",\"posts\",\"template\",\"countdown\",\"slides\",\"price-list\",\"portfolio\",\"flip-box\",\"price-table\",\"login\",\"share-buttons\",\"theme-post-content\",\"theme-post-title\",\"nav-menu\",\"blockquote\",\"media-carousel\",\"animated-headline\",\"facebook-comments\",\"facebook-embed\",\"facebook-page\",\"facebook-button\",\"testimonial-carousel\",\"post-navigation\",\"search-form\",\"post-comments\",\"author-box\",\"call-to-action\",\"post-info\",\"theme-site-logo\",\"theme-site-title\",\"theme-archive-title\",\"theme-post-excerpt\",\"theme-post-featured-image\",\"archive-posts\",\"theme-page-title\",\"sitemap\",\"reviews\",\"table-of-contents\",\"lottie\",\"code-highlight\",\"hotspot\",\"video-playlist\",\"progress-tracker\",\"section-effects\",\"sticky\",\"scroll-snap\",\"page-transitions\",\"mega-menu\",\"nested-carousel\",\"loop-grid\",\"loop-carousel\",\"theme-builder\",\"elementor_icons\",\"elementor_custom_fonts\",\"dynamic-tags\",\"taxonomy-filter\",\"email\",\"email2\",\"mailpoet\",\"mailpoet3\",\"redirect\",\"header\",\"footer\",\"single-post\",\"single-page\",\"archive\",\"search-results\",\"error-404\",\"loop-item\",\"font-awesome-pro\",\"typekit\",\"gallery\",\"off-canvas\",\"link-in-bio-var-2\",\"link-in-bio-var-3\",\"link-in-bio-var-4\",\"link-in-bio-var-5\",\"link-in-bio-var-6\",\"link-in-bio-var-7\",\"search\",\"size-variable\",\"transitions\",\"pro-interactions\",\"element-manager-permissions\",\"akismet\",\"display-conditions\",\"woocommerce-products\",\"wc-products\",\"woocommerce-product-add-to-cart\",\"wc-elements\",\"wc-categories\",\"woocommerce-product-price\",\"woocommerce-product-title\",\"woocommerce-product-images\",\"woocommerce-product-upsell\",\"woocommerce-product-short-description\",\"woocommerce-product-meta\",\"woocommerce-product-stock\",\"woocommerce-product-rating\",\"wc-add-to-cart\",\"dynamic-tags-wc\",\"woocommerce-product-data-tabs\",\"woocommerce-product-related\",\"woocommerce-breadcrumb\",\"wc-archive-products\",\"woocommerce-archive-products\",\"woocommerce-product-additional-information\",\"woocommerce-menu-cart\",\"woocommerce-product-content\",\"woocommerce-archive-description\",\"paypal-button\",\"woocommerce-checkout-page\",\"woocommerce-cart\",\"woocommerce-my-account\",\"woocommerce-purchase-summary\",\"woocommerce-notices\",\"settings-woocommerce-pages\",\"settings-woocommerce-notices\",\"popup\",\"custom-css\",\"global-css\",\"custom_code\",\"custom-attributes\",\"form-submissions\",\"form-integrations\",\"dynamic-tags-acf\",\"dynamic-tags-pods\",\"dynamic-tags-toolset\",\"editor_comments\",\"stripe-button\",\"role-manager\",\"global-widget\",\"activecampaign\",\"cf7db\",\"convertkit\",\"discord\",\"drip\",\"getresponse\",\"mailchimp\",\"mailerlite\",\"slack\",\"webhook\",\"product-single\",\"product-archive\",\"wc-single-elements\",\"atomic-custom-attributes\",\"atomic-custom-css\"],\"tier\":\"agency\",\"generation\":\"empty\",\"activated\":true,\"success\":true}\";}', 'off'),
(451, '_elementor_pro_license_v2_data', 'a:2:{s:7:\"timeout\";i:1773809209;s:5:\"value\";s:2864:\"{\"expires\":\"2026-11-27 00:00:00\",\"subscription_id\":\"14245656\",\"status\":\"ACTIVE\",\"recurring\":true,\"features\":[\"template_access_level_20\",\"kit_access_level_20\",\"activity-log\",\"breadcrumbs\",\"form\",\"posts\",\"template\",\"countdown\",\"slides\",\"price-list\",\"portfolio\",\"flip-box\",\"price-table\",\"login\",\"share-buttons\",\"theme-post-content\",\"theme-post-title\",\"nav-menu\",\"blockquote\",\"media-carousel\",\"animated-headline\",\"facebook-comments\",\"facebook-embed\",\"facebook-page\",\"facebook-button\",\"testimonial-carousel\",\"post-navigation\",\"search-form\",\"post-comments\",\"author-box\",\"call-to-action\",\"post-info\",\"theme-site-logo\",\"theme-site-title\",\"theme-archive-title\",\"theme-post-excerpt\",\"theme-post-featured-image\",\"archive-posts\",\"theme-page-title\",\"sitemap\",\"reviews\",\"table-of-contents\",\"lottie\",\"code-highlight\",\"hotspot\",\"video-playlist\",\"progress-tracker\",\"section-effects\",\"sticky\",\"scroll-snap\",\"page-transitions\",\"mega-menu\",\"nested-carousel\",\"loop-grid\",\"loop-carousel\",\"theme-builder\",\"elementor_icons\",\"elementor_custom_fonts\",\"dynamic-tags\",\"taxonomy-filter\",\"email\",\"email2\",\"mailpoet\",\"mailpoet3\",\"redirect\",\"header\",\"footer\",\"single-post\",\"single-page\",\"archive\",\"search-results\",\"error-404\",\"loop-item\",\"font-awesome-pro\",\"typekit\",\"gallery\",\"off-canvas\",\"link-in-bio-var-2\",\"link-in-bio-var-3\",\"link-in-bio-var-4\",\"link-in-bio-var-5\",\"link-in-bio-var-6\",\"link-in-bio-var-7\",\"search\",\"size-variable\",\"transitions\",\"pro-interactions\",\"element-manager-permissions\",\"akismet\",\"display-conditions\",\"woocommerce-products\",\"wc-products\",\"woocommerce-product-add-to-cart\",\"wc-elements\",\"wc-categories\",\"woocommerce-product-price\",\"woocommerce-product-title\",\"woocommerce-product-images\",\"woocommerce-product-upsell\",\"woocommerce-product-short-description\",\"woocommerce-product-meta\",\"woocommerce-product-stock\",\"woocommerce-product-rating\",\"wc-add-to-cart\",\"dynamic-tags-wc\",\"woocommerce-product-data-tabs\",\"woocommerce-product-related\",\"woocommerce-breadcrumb\",\"wc-archive-products\",\"woocommerce-archive-products\",\"woocommerce-product-additional-information\",\"woocommerce-menu-cart\",\"woocommerce-product-content\",\"woocommerce-archive-description\",\"paypal-button\",\"woocommerce-checkout-page\",\"woocommerce-cart\",\"woocommerce-my-account\",\"woocommerce-purchase-summary\",\"woocommerce-notices\",\"settings-woocommerce-pages\",\"settings-woocommerce-notices\",\"popup\",\"custom-css\",\"global-css\",\"custom_code\",\"custom-attributes\",\"form-submissions\",\"form-integrations\",\"dynamic-tags-acf\",\"dynamic-tags-pods\",\"dynamic-tags-toolset\",\"editor_comments\",\"stripe-button\",\"role-manager\",\"global-widget\",\"activecampaign\",\"cf7db\",\"convertkit\",\"discord\",\"drip\",\"getresponse\",\"mailchimp\",\"mailerlite\",\"slack\",\"webhook\",\"product-single\",\"product-archive\",\"wc-single-elements\",\"atomic-custom-attributes\",\"atomic-custom-css\"],\"tier\":\"agency\",\"generation\":\"empty\",\"activated\":true,\"success\":true}\";}', 'off'),
(452, 'elementor_notes_db_version', '5', 'auto'),
(453, '_elementor_notifications_data', 'a:2:{s:7:\"timeout\";i:1771073420;s:5:\"value\";s:12018:\"[{\"id\":\"one-launch\",\"title\":\"Introducing Elementor One\",\"description\":\"The complete website building experience. All the tools to create, optimize, and manage websites, unified under one roof.\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/one-launch.png\",\"chipTags\":[\"New Launch\"],\"cta\":\"Explore Elementor One\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/launch-whats-new\"},{\"id\":\"atomic-tabs-3.34\",\"title\":\"Atomic Tabs\",\"description\":\"Nest any type of content inside tab triggers or content panels, unlocking a truly atomic way of design.\",\"topic\":\"Editor V4\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/tabs-3.34.png\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.34-blog\\/\",\"readMoreText\":\"Learn More\"},{\"id\":\"interactions-3.34\",\"title\":\"Entrance Interactions\",\"description\":\"Add subtle, performance\\u2011minded Fade, Scale or Slide effects to your elements from the new Interaction panel.\",\"topic\":\"Editor V4\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/interactions-3.34.png\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.34-blog\\/\",\"readMoreText\":\"Learn More\"},{\"id\":\"variables-manager-3.33\",\"title\":\"Variables Manager\",\"description\":\"Centralize and control all your color, typography, and size tokens for consistent, scalable design systems.\",\"topic\":\"Editor V4\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/3.33-variables-manager.png\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.33-blog\\/\",\"readMoreText\":\"Learn More\"},{\"id\":\"custom-css-3.33\",\"title\":\"Custom CSS\",\"description\":\"Write isolated, responsive, and state-based CSS directly inside atomic elements for pixel-perfect control.\",\"topic\":\"Elementor Pro 3.33\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/3.33-custom-css.png\",\"chipPlan\":\"Pro\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.33-blog\\/\",\"readMoreText\":\"Learn More\",\"conditions\":[[{\"type\":\"plugin\",\"plugin\":\"elementor-pro\\/elementor-pro.php\"}]]},{\"id\":\"custom-css-3.33\",\"title\":\"Custom CSS\",\"description\":\"Write isolated, responsive, and state-based CSS directly inside atomic elements for pixel-perfect control.\",\"topic\":\"Elementor Pro 3.33\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/3.33-custom-css.png\",\"chipTags\":[\"New Feature\"],\"cta\":\"Upgrade now\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.33-custom-css\\/\"},{\"id\":\"blend-mode-3.33\",\"title\":\"Blend Mode\",\"description\":\"Layer and blend visuals to create depth, contrast, and cinematic design effects.\",\"topic\":\"Editor V4\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/3.33-blend.png\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.33-blog\\/\",\"readMoreText\":\"Learn More\"},{\"id\":\"transform-3.32\",\"title\":\"Design with depth using Transform\",\"description\":\"Move, scale, rotate, and skew any element with ease. Transform controls add depth, stacked effects, and seamless States for hover, focus, and active micro-interactions.\",\"topic\":\"Editor V4\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/3.32-transform.png\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.32-blog\\/\",\"readMoreText\":\"Learn More\"},{\"id\":\"size-variable-3.32\",\"title\":\"Consistency with Size Variables\",\"description\":\"Define reusable values for properties like spacing or typography, then update them once to scale changes instantly across your site.\",\"topic\":\"Elementor Pro 3.32\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/3.32-size-variables.png\",\"chipPlan\":\"Pro\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.32-blog\\/\",\"readMoreText\":\"Learn More\",\"conditions\":[[{\"type\":\"plugin\",\"plugin\":\"elementor-pro\\/elementor-pro.php\"}]]},{\"id\":\"size-variable-3.32\",\"title\":\"Consistency with Size Variables\",\"description\":\"Define reusable values for properties like spacing or typography, then update them once to scale changes instantly across your site.\",\"topic\":\"Elementor Pro 3.32\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/3.32-size-variables.png\",\"chipTags\":[\"New Feature\"],\"cta\":\"Upgrade now\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.32-size-variable\\/\"},{\"id\":\"transitions-3.32\",\"title\":\"Smooth interactions with Transitions\",\"description\":\"Bring polish to every interaction. Transitions let you animate style changes smoothly between states. In Pro, layer multiple transitions by property for refined, modern micro-animations.\",\"topic\":\"Editor V4\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/3.32-transition.png\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.32-blog\\/\",\"readMoreText\":\"Learn More\"},{\"id\":\"variables-3.31\",\"title\":\"Scalable design with Variables\",\"description\":\"Define once, reuse everywhere. Color & Font Variables help you build consistent, scalable design systems that update globally and are perfect for large sites or teams.\",\"topic\":\"Editor V4\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/3.31-variables.png\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.31-v4-blog\\/\",\"readMoreText\":\"Learn More\"},{\"id\":\"filters-3.31\",\"title\":\"Visual effects with Filters and Backdrop Filters\",\"description\":\"Apply multiple Filters like blur, brightness, and contrast. Stack, reorder, and preview in real time without writing a line of code.\",\"topic\":\"Editor V4\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/3.31-filters.png\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.31-v4-blog\\/\",\"readMoreText\":\"Learn More\"},{\"id\":\"ally-assistant\",\"title\":\"New! Fix accessibility issues with Ally Assistant\",\"description\":\"Scan any page for accessibility issues and fix them in one click. From color contrast to missing alt text, Ally Assistant provides guided steps or AI-powered fixes to make your site more inclusive.\",\"topic\":\"Ally by Elementor\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/ally-assistant.png\",\"chipTags\":[\"New Feature\"],\"cta\":\"Scan for free\",\"ctaLink\":\"http:\\/\\/go.elementor.com\\/acc-assistant-launch-whats-new\",\"conditions\":[[{\"type\":\"plugin\",\"operator\":\"!=\",\"plugin\":\"pojo-accessibility\\/pojo-accessibility.php\"}]]},{\"id\":\"classes-3.31\",\"title\":\"Smarter Class Manager tools\",\"description\":\"Quickly locate and manage Global Classes with usage counts, a new locator panel, and full class search. Perfect for scaling and refactoring complex design systems.\",\"topic\":\"Editor V4\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/3.31-classes.png\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.31-v4-blog\\/\",\"readMoreText\":\"Learn More\"},{\"id\":\"attributes-3.31\",\"title\":\"Add semantic HTML with Attributes\",\"description\":\"Add custom HTML attributes like aria-*, data-*, and role to any element. Structure your markup for better accessibility, performance, and compliance.\",\"topic\":\"Elementor Pro 3.31\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/3.31-attributes.png\",\"chipPlan\":\"Pro\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.31-v4-blog\\/\",\"readMoreText\":\"Learn More\",\"conditions\":[[{\"type\":\"plugin\",\"plugin\":\"elementor-pro\\/elementor-pro.php\"}]]},{\"id\":\"attributes-3.31\",\"title\":\"Add semantic HTML with Attributes\",\"description\":\"Add custom HTML attributes like aria-*, data-*, and role to any element. Structure your markup for better accessibility, performance, and compliance.\",\"topic\":\"Elementor Pro 3.31\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/3.31-attributes.png\",\"chipTags\":[\"New Feature\"],\"cta\":\"Upgrade now\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.31-attributes\\/\"},{\"id\":\"cloud-websites-3.30\",\"title\":\"Full Website Templates in the cloud\",\"description\":\"Save and apply entire websites, including multiple pages, styles, site settings, media, and layout configurations - directly from the cloud.\",\"topic\":\"Elementor Pro 3.30\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/cloud-3.30.png\",\"chipPlan\":\"Pro\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.39-v4-blog\\/\",\"readMoreText\":\"Learn More\",\"conditions\":[[{\"type\":\"plugin\",\"plugin\":\"elementor-pro\\/elementor-pro.php\"}]]},{\"id\":\"cloud-websites-3.30\",\"title\":\"Full Website Templates in the cloud\",\"description\":\"Save and apply entire websites, including multiple pages, styles, site settings, media, and layout configurations - directly from the cloud.\",\"topic\":\"Elementor Pro 3.30\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/cloud-3.30.png\",\"chipTags\":[\"New Feature\"],\"cta\":\"Upgrade now\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.30-cloud-websites\\/\"},{\"id\":\"ally-notification\",\"title\":\"Just released! Ally - a new plugin for web accessibility & usability\",\"description\":\"Ally simplifies the complexities of making your website more accessible. With new regulations here and coming, making your website more usable and inclusive is no longer just an option, but a must.\",\"topic\":\"Ally by Elementor\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/ally-notification.png\",\"chipTags\":[\"New plugin\"],\"cta\":\"Get it free\",\"ctaLink\":\"https:\\/\\/wordpress.org\\/plugins\\/pojo-accessibility\\/\",\"conditions\":[[{\"type\":\"plugin\",\"operator\":\"!=\",\"plugin\":\"pojo-accessibility\\/pojo-accessibility.php\"}]]},{\"id\":\"ai-site-planner\",\"title\":\"Instant Sitemaps & Wireframes\",\"description\":\"Get your website plan in minutes with AI Site Planner. Describe your desired site and AI will generate a sitemap, brief and wireframe populated with initial content, ready for you to customize.\",\"topic\":\"Elementor AI\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/aI-site-planner.png\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/ai-notification-site-planner\\/\",\"readMoreText\":\"Learn More\"},{\"id\":\"image-optimizer-3.19\",\"title\":\"Effortlessly optimize images for a stunning, high-speed website with the Image Optimizer plugin.\",\"description\":\"Image Optimizer perfectly balances between image quality and performance to boost your website.  Resize, compress, and convert images to WebP, for faster loading times and and better user experience.\",\"topic\":\"Image Optimizer Plugin by Elementor\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/image-optimizer-3.19.png\",\"chipTags\":[\"New plugin\"],\"cta\":\"Get the Image Optimizer\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/io-notification-wp-dash-learn-more\\/\",\"conditions\":[[{\"type\":\"plugin\",\"operator\":\"!=\",\"plugin\":\"image-optimization\\/image-optimization.php\"}]]},{\"id\":\"5-star-rating-prompt\",\"title\":\"Love the New Features? Let Us Know with 5 Stars!\",\"description\":\"Help spread the word by telling the world what you love about Elementor.\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/5-star-rating-prompt.png\",\"cta\":\"Leave a Review\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/wp-dash-notification-five-stars\\/\"},{\"id\":\"site-mailer-introducing\",\"title\":\"Introducing Site Mailer\",\"description\":\"Keep your WordPress emails out of the spam folder with improved deliverability and an easy setup\\u2014no need for an SMTP plugin or complicated configurations.\",\"topic\":\"Site Mailer Plugin by Elementor\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/Site-mailer.png\",\"chipTags\":[\"New plugin\"],\"cta\":\"Start Free Trial\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/sm-wp-dash-whatsnew\\/\",\"conditions\":[[{\"type\":\"plugin\",\"operator\":\"!=\",\"plugin\":\"site-mailer\\/site-mailer.php\"}]]}]\";}', 'off'),
(456, 'pp_license_key', '820357b27bedb9bf31cf47c98f5a04b1', 'auto'),
(457, 'pp_license_status', 'valid', 'auto'),
(460, 'elementor_custom_icon_sets_config', 'a:0:{}', 'auto'),
(473, '_elementor_ab_testing_data', 'a:2:{s:7:\"timeout\";i:1769441727;s:5:\"value\";s:273:\"[{\"coreOnboarding\":{\"emphasizeConnectBenefits101\":false,\"embedConnectInOnboarding102\":false,\"onboardingStartsWithLogin103\":false,\"offerThemeChoicesHelloBiz201\":true,\"emphasizeThemeValueAudience202\":false,\"updateCopyVisuals401\":false,\"reduceHierarchyBlankOption402\":false}}]\";}', 'off'),
(463, 'e_editor_counter', '61', 'auto'),
(466, 'category_children', 'a:0:{}', 'auto');
INSERT INTO `wpcn_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(467, 'elementor_remote_info_library', 'a:3:{s:10:\"types_data\";a:4:{s:5:\"block\";a:2:{s:10:\"categories\";a:30:{i:0;s:8:\"404 page\";i:1;s:5:\"about\";i:2;s:7:\"archive\";i:3;s:8:\"Benefits\";i:4;s:14:\"call to action\";i:5;s:7:\"clients\";i:6;s:7:\"contact\";i:7;s:4:\"Data\";i:8;s:10:\"ehp-footer\";i:9;s:10:\"ehp-header\";i:10;s:3:\"faq\";i:11;s:8:\"features\";i:12;s:6:\"footer\";i:13;s:7:\"Gallery\";i:14;s:6:\"header\";i:15;s:4:\"hero\";i:16;s:11:\"Link in Bio\";i:17;s:9:\"portfolio\";i:18;s:7:\"pricing\";i:19;s:15:\"product archive\";i:20;s:5:\"Quote\";i:21;s:15:\"Service Details\";i:22;s:8:\"services\";i:23;s:11:\"single page\";i:24;s:11:\"single post\";i:25;s:14:\"single product\";i:26;s:5:\"stats\";i:27;s:9:\"subscribe\";i:28;s:4:\"team\";i:29;s:12:\"testimonials\";}s:4:\"sets\";a:5:{i:0;s:11:\"Boxing Club\";i:1;s:19:\"Business Consultant\";i:2;s:16:\"Marketing Agency\";i:3;s:9:\"Wireframe\";i:4;s:15:\"Workshop Center\";}}s:5:\"popup\";a:1:{s:10:\"categories\";a:6:{i:0;s:10:\"bottom bar\";i:1;s:7:\"classic\";i:2;s:6:\"fly-in\";i:3;s:11:\"full screen\";i:4;s:9:\"hello bar\";i:5;s:8:\"slide-in\";}}s:2:\"lp\";a:1:{s:10:\"categories\";a:15:{i:0;s:8:\"Business\";i:1;s:16:\"Coming Soon Page\";i:2;s:9:\"eCommerce\";i:3;s:9:\"Education\";i:4;s:6:\"Events\";i:5;s:18:\"Health and Fitness\";i:6;s:3:\"NFT\";i:7;s:14:\"Online Service\";i:8;s:7:\"Product\";i:9;s:11:\"Real Estate\";i:10;s:18:\"Social Involvement\";i:11;s:14:\"Thank You Page\";i:12;s:6:\"Travel\";i:13;s:18:\"Under Construction\";i:14;s:9:\"Wireframe\";}}s:2:\"lb\";a:1:{s:10:\"categories\";a:2:{i:0;s:4:\"post\";i:1;s:7:\"product\";}}}s:10:\"categories\";a:30:{i:0;s:8:\"404 page\";i:1;s:5:\"about\";i:2;s:7:\"archive\";i:3;s:8:\"Benefits\";i:4;s:14:\"call to action\";i:5;s:7:\"clients\";i:6;s:7:\"contact\";i:7;s:4:\"Data\";i:8;s:10:\"ehp-footer\";i:9;s:10:\"ehp-header\";i:10;s:3:\"faq\";i:11;s:8:\"features\";i:12;s:6:\"footer\";i:13;s:7:\"Gallery\";i:14;s:6:\"header\";i:15;s:4:\"hero\";i:16;s:11:\"Link in Bio\";i:17;s:9:\"portfolio\";i:18;s:7:\"pricing\";i:19;s:15:\"product archive\";i:20;s:5:\"Quote\";i:21;s:15:\"Service Details\";i:22;s:8:\"services\";i:23;s:11:\"single page\";i:24;s:11:\"single post\";i:25;s:14:\"single product\";i:26;s:5:\"stats\";i:27;s:9:\"subscribe\";i:28;s:4:\"team\";i:29;s:12:\"testimonials\";}s:9:\"templates\";a:823:{i:0;a:20:{s:4:\"tmpl\";i:1280;s:2:\"id\";i:22403;s:5:\"title\";s:40:\"Hello Bar | Subscribe | Aesthetic Clinic\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/aesthetic-clinic-19.jpg\";s:12:\"tmpl_created\";i:1647354307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/hello-bar-subscribe-aesthetic-clinic/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:48:\"[\"Barbershop\",\"Business\",\"Discount\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:1;a:20:{s:4:\"tmpl\";i:1281;s:2:\"id\";i:22410;s:5:\"title\";s:32:\"Fly-In | Discount | Hair Stylist\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/hair-stylist-20.jpg\";s:12:\"tmpl_created\";i:1647354614;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-discount-hair-stylist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:32:\"[\"Barbershop\",\"Discount\",\"Hair\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:2;a:20:{s:4:\"tmpl\";i:1285;s:2:\"id\";i:22440;s:5:\"title\";s:32:\"Classic | Subscribe | Shoe Store\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/shoes-store-21.jpg\";s:12:\"tmpl_created\";i:1647418620;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-subscribe-shoe-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:37:\"[\"Ecommerce\",\"Marketing\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:3;a:20:{s:4:\"tmpl\";i:1286;s:2:\"id\";i:22446;s:5:\"title\";s:37:\"Full Screen | Subscribe | Denim Store\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/denim-store-22.jpg\";s:12:\"tmpl_created\";i:1647419614;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/full-screen-subscribe-denim-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:35:\"[\"Ecommerce\",\"Fashion\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:4;a:20:{s:4:\"tmpl\";i:1287;s:2:\"id\";i:22452;s:5:\"title\";s:37:\"Fly-In | Subscribe | Pizza Restaurant\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/pizza-restaurant-23.jpg\";s:12:\"tmpl_created\";i:1647420733;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/fly-in-subscribe-pizza-restaurant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:19:\"[\"Business\",\"Food\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:5;a:20:{s:4:\"tmpl\";i:1288;s:2:\"id\";i:22458;s:5:\"title\";s:38:\"Full Screen | Subscribe | Fashion Shop\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/fashion-shop-24.jpg\";s:12:\"tmpl_created\";i:1647426379;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-subscribe-fashion-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:31:\"[\"Ecommerce\",\"Fashion\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:6;a:20:{s:4:\"tmpl\";i:1289;s:2:\"id\";i:22464;s:5:\"title\";s:32:\"Fly-In | Contact | Makeup Studio\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/makeup-studio-25.jpg\";s:12:\"tmpl_created\";i:1647427026;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-contact-makeup-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:22:\"[\"Business\",\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:7;a:20:{s:4:\"tmpl\";i:1290;s:2:\"id\";i:22470;s:5:\"title\";s:32:\"Fly-In | Contact | Design Studio\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/design-studio-26.jpg\";s:12:\"tmpl_created\";i:1647428250;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-contact-design-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:39:\"[\"Business\",\"Contact\",\"Digital Agency\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:8;a:20:{s:4:\"tmpl\";i:1291;s:2:\"id\";i:22480;s:5:\"title\";s:27:\"Classic | CTA | MasterClass\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/master-class-27.jpg\";s:12:\"tmpl_created\";i:1647428474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-cta-masterclass/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"cta\",\"Magazine\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:9;a:20:{s:4:\"tmpl\";i:1292;s:2:\"id\";i:22489;s:5:\"title\";s:29:\"Classic | CTA | Music Concert\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/music-concert-29.jpg\";s:12:\"tmpl_created\";i:1647429738;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-cta-music-concert/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"cta\",\"Landing Pages\",\"Magazine\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:10;a:20:{s:4:\"tmpl\";i:1293;s:2:\"id\";i:22495;s:5:\"title\";s:27:\"Classic | CTA | Music Album\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/music-album-30.jpg\";s:12:\"tmpl_created\";i:1647430056;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-cta-music-album/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Ba\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:11;a:20:{s:4:\"tmpl\";i:1294;s:2:\"id\";i:22501;s:5:\"title\";s:37:\"Fly-In | CTA | Photography Exhibition\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/photography-exhibition-31.jpg\";s:12:\"tmpl_created\";i:1647430512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/fly-in-cta-photography-exhibition/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:33:\"[\"cta\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:12;a:20:{s:4:\"tmpl\";i:1295;s:2:\"id\";i:22507;s:5:\"title\";s:34:\"Classic | CTA | Clothing Shop Sale\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/clothing-shop-sale-32.jpg\";s:12:\"tmpl_created\";i:1647430774;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/classic-cta-clothing-shop-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:35:\"[\"Ecommerce\",\"Fashion\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:13;a:20:{s:4:\"tmpl\";i:1296;s:2:\"id\";i:22486;s:5:\"title\";s:30:\"Classic | CTA | Shop Promotion\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/shop-promotion-28.jpg\";s:12:\"tmpl_created\";i:1647430951;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-shop-promotion/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"cta\",\"Magazine\",\"Photography\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:14;a:20:{s:4:\"tmpl\";i:1297;s:2:\"id\";i:22516;s:5:\"title\";s:32:\"Fly-In | CTA | Glasses Shop Sale\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/glasses-shop-sale-33.jpg\";s:12:\"tmpl_created\";i:1647431136;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-cta-glasses-shop-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:30:\"[\"Business\",\"cta\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:15;a:20:{s:4:\"tmpl\";i:1298;s:2:\"id\";i:22522;s:5:\"title\";s:30:\"Fly-In | Discount | Skate Shop\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/50-skate-shop-Discount.jpg\";s:12:\"tmpl_created\";i:1647434058;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/fly-in-discount-skate-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:32:\"[\"Discount\",\"Ecommerce\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:16;a:20:{s:4:\"tmpl\";i:1299;s:2:\"id\";i:22532;s:5:\"title\";s:43:\"Classic | Subscription | Basketball Academy\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/21-basketball-academy-Subscription.jpg\";s:12:\"tmpl_created\";i:1647434608;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/classic-subscription-basketball-academy/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:33:\"[\"Education\",\"Marketing\",\"Sport\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:17;a:20:{s:4:\"tmpl\";i:1300;s:2:\"id\";i:22543;s:5:\"title\";s:38:\"Classic | Discount | Veterinary Clinic\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/veterinery-clinic-small.jpg\";s:12:\"tmpl_created\";i:1647435581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/classic-discount-veterinary-clinic/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"Discount\",\"Pets\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:18;a:20:{s:4:\"tmpl\";i:1301;s:2:\"id\";i:22553;s:5:\"title\";s:39:\"Classic | Contact | Business Consulting\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/27-business-consulting-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647439935;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/classic-contact-business-consulting/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:22:\"[\"Business\",\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:19;a:20:{s:4:\"tmpl\";i:1302;s:2:\"id\";i:22562;s:5:\"title\";s:28:\"Classic | Contact | Handyman\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/handyman-small.jpg\";s:12:\"tmpl_created\";i:1647440333;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-contact-handyman/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:33:\"[\"Business\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:20;a:20:{s:4:\"tmpl\";i:1303;s:2:\"id\";i:22573;s:5:\"title\";s:40:\"Classic | Discount | Online Fashion Shop\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/31-online-fashion-shop-Discount.jpg\";s:12:\"tmpl_created\";i:1647462549;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-discount-online-fashion-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Discount\",\"Ecommerce\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:21;a:20:{s:4:\"tmpl\";i:1304;s:2:\"id\";i:22583;s:5:\"title\";s:36:\"Fly-In | Discount | Personal Trainer\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/personal-trainer-small.jpg\";s:12:\"tmpl_created\";i:1647503781;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-discount-personal-trainer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:31:\"[\"Discount\",\"Sport\",\"Training\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:22;a:20:{s:4:\"tmpl\";i:1305;s:2:\"id\";i:22592;s:5:\"title\";s:41:\"Classic | Contact | Illustrator Portfolio\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/illustrator-protfolio-small.jpg\";s:12:\"tmpl_created\";i:1647504218;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/classic-contact-illustrator-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:49:\"[\"Contact\",\"Creative Portfolio\",\"Digital Agency\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:23;a:20:{s:4:\"tmpl\";i:1306;s:2:\"id\";i:22602;s:5:\"title\";s:46:\"Bottom Bar | Discount | Handmade Ceramics Shop\";s:9:\"thumbnail\";s:91:\"https://library.elementor.com/wp-content/uploads/2022/03/handmade-ceramic-shop-36-small.jpg\";s:12:\"tmpl_created\";i:1647507007;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/bottom-bar-discount-handmade-ceramics-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:48:\"[\"Business\",\"cta\",\"Ecommerce\",\"Interior Design\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:24;a:20:{s:4:\"tmpl\";i:1307;s:2:\"id\";i:22612;s:5:\"title\";s:51:\"Classic | Contact | Classic Car Restoration Company\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/restoration-car-shop-37-small.jpg\";s:12:\"tmpl_created\";i:1647507310;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:153:\"https://library.elementor.com/popups/classic-contact-classic-car-restoration-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Booking\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:25;a:20:{s:4:\"tmpl\";i:1308;s:2:\"id\";i:22621;s:5:\"title\";s:30:\"Classic | Booking | Life Coach\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/38-life-coach-Booking.jpg\";s:12:\"tmpl_created\";i:1647508596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-booking-life-coach/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:33:\"[\"Booking\",\"Business\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:26;a:20:{s:4:\"tmpl\";i:1309;s:2:\"id\";i:22632;s:5:\"title\";s:42:\"Classic |  Subscription | Merchandise Shop\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/Merchandise-Shop-39-small.jpg\";s:12:\"tmpl_created\";i:1647509196;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/classic-subscription-merchandise-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Ecommerce\",\"Marketing\",\"Shop\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:27;a:20:{s:4:\"tmpl\";i:1310;s:2:\"id\";i:22643;s:5:\"title\";s:48:\"Fly-In | Contact | Non-Governmental Organization\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/03/NGO-41-small.jpg\";s:12:\"tmpl_created\";i:1647509528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:150:\"https://library.elementor.com/popups/fly-in-contact-non-governmental-organization/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:28;a:20:{s:4:\"tmpl\";i:1311;s:2:\"id\";i:22654;s:5:\"title\";s:35:\"Hello Bar | Contact | Family Doctor\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/family-doctor-44-small.jpg\";s:12:\"tmpl_created\";i:1647509732;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/hello-bar-contact-family-doctor/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:31:\"[\"Contact\",\"Health\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:29;a:20:{s:4:\"tmpl\";i:1312;s:2:\"id\";i:22663;s:5:\"title\";s:36:\"Classic | Subscription | Sports Blog\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/03/45-sport-blog-Subscription.jpg\";s:12:\"tmpl_created\";i:1647509908;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-subscription-sports-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:16:\"[\"Blog\",\"Sport\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:30;a:20:{s:4:\"tmpl\";i:1313;s:2:\"id\";i:22673;s:5:\"title\";s:30:\"Hello Bar | Booking | Event DJ\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/DJ-service-46-small.jpg\";s:12:\"tmpl_created\";i:1647510160;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/hello-bar-booking-event-dj/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:31:\"[\"Booking\",\"Events\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:31;a:20:{s:4:\"tmpl\";i:1314;s:2:\"id\";i:22684;s:5:\"title\";s:36:\"Fly-In | Discount | Cleaning Company\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/51-cleaning-company-Discount.jpg\";s:12:\"tmpl_created\";i:1647510546;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-discount-cleaning-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:31:\"[\"Discount\",\"Offer\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:32;a:20:{s:4:\"tmpl\";i:1315;s:2:\"id\";i:22693;s:5:\"title\";s:28:\"Fly-In | Contact | Carpenter\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/carpenter-53-small.jpg\";s:12:\"tmpl_created\";i:1647511972;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/fly-in-contact-carpenter/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:22:\"[\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:33;a:20:{s:4:\"tmpl\";i:1316;s:2:\"id\";i:22703;s:5:\"title\";s:31:\"Classic | Booking | Yoga Studio\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/55-yoga-studio-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647512209;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-booking-yoga-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:30:\"[\"Booking\",\"Contact\",\"Health\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:34;a:20:{s:4:\"tmpl\";i:1317;s:2:\"id\";i:22714;s:5:\"title\";s:37:\"Classic | Discount | Pet Care Company\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/56-Pet-Care-Discount.jpg\";s:12:\"tmpl_created\";i:1647513031;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/classic-discount-pet-care-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:17:\"[\"Offer\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:35;a:20:{s:4:\"tmpl\";i:1318;s:2:\"id\";i:22725;s:5:\"title\";s:38:\"Fly-In | Discount | Online Coffee Shop\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/online-coffee-shop-57-small.jpg\";s:12:\"tmpl_created\";i:1647513325;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/fly-in-discount-online-coffee-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:29:\"[\"Food\",\"Offer\",\"Restaurant\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:36;a:20:{s:4:\"tmpl\";i:1319;s:2:\"id\";i:22737;s:5:\"title\";s:44:\"Fly-In | CTA | Moving &#038; Storage Company\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/moving-company-59-small.jpg\";s:12:\"tmpl_created\";i:1647520956;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/fly-in-cta-moving-storage-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:37;a:20:{s:4:\"tmpl\";i:1320;s:2:\"id\";i:22749;s:5:\"title\";s:47:\"Classic | Contact | Industrial Design Portfolio\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/60-industrial-design-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647528116;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/classic-contact-industrial-design-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:40:\"[\"Contact\",\"Interior Design\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:38;a:20:{s:4:\"tmpl\";i:1321;s:2:\"id\";i:22759;s:5:\"title\";s:25:\"Classic | Contact | Drone\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/drone-61-small.jpg\";s:12:\"tmpl_created\";i:1647528899;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/classic-contact-drone/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:22:\"[\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:39;a:20:{s:4:\"tmpl\";i:1322;s:2:\"id\";i:22768;s:5:\"title\";s:46:\"Full Screen | Menu | Fashion Stylist Portfolio\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/62-Fashion-Stylist-Menu.jpg\";s:12:\"tmpl_created\";i:1647529434;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/full-screen-menu-fashion-stylist-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:31:\"[\"Fashion\",\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:40;a:20:{s:4:\"tmpl\";i:1323;s:2:\"id\";i:22780;s:5:\"title\";s:31:\"Fly-In | CTA | Landscape Design\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/64-Landscape-Design-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647530337;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-cta-landscape-design/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:18:\"[\"cta\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:41;a:20:{s:4:\"tmpl\";i:1324;s:2:\"id\";i:22790;s:5:\"title\";s:48:\"Bottom Bar  | Contact | Architecture Photography\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/architecture-photography-65-small.jpg\";s:12:\"tmpl_created\";i:1647532358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/bottom-bar-contact-architecture-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:26:\"[\"Architecture\",\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:42;a:20:{s:4:\"tmpl\";i:1325;s:2:\"id\";i:22800;s:5:\"title\";s:41:\"Fly-In  | CTA | Speech-Language Therapist\";s:9:\"thumbnail\";s:103:\"https://library.elementor.com/wp-content/uploads/2022/03/66-Speech-Language-Therapist-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647532720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/fly-in-cta-speech-language-therapist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:25:\"[\"cta\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:43;a:20:{s:4:\"tmpl\";i:1326;s:2:\"id\";i:22812;s:5:\"title\";s:35:\"Full Screen | Verification | Winery\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/67-Winery-Verification.jpg\";s:12:\"tmpl_created\";i:1647761384;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/full-screen-verification-winery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:24:\"[\"Alert\",\"Verification\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:44;a:20:{s:4:\"tmpl\";i:1327;s:2:\"id\";i:22822;s:5:\"title\";s:36:\"Fly-In | Subscription | Nutritionist\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/nutritionist-69-small.jpg\";s:12:\"tmpl_created\";i:1647762620;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-subscription-nutritionist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:28:\"[\"Food\",\"Health\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:45;a:20:{s:4:\"tmpl\";i:1328;s:2:\"id\";i:22833;s:5:\"title\";s:40:\"Classic | Subscription | App &#038; SaaS\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/03/app-70-small.jpg\";s:12:\"tmpl_created\";i:1647762955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-subscription-app-saas/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:14:\"[\"App\",\"SaaS\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:46;a:20:{s:4:\"tmpl\";i:1329;s:2:\"id\";i:22844;s:5:\"title\";s:41:\"Bottom Bar | Discount | Handmade Cupcakes\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/72-Handmade-Cupcakes-Discount.jpg\";s:12:\"tmpl_created\";i:1647763350;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/bottom-bar-discount-handmade-cupcakes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:21:\"[\"Food\",\"Restaurant\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:47;a:20:{s:4:\"tmpl\";i:1330;s:2:\"id\";i:22855;s:5:\"title\";s:40:\"Bottom Bar | Subscription | Fashion Blog\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/fashion-blog-75-small.jpg\";s:12:\"tmpl_created\";i:1647763907;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/bottom-bar-subscription-fashion-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:30:\"[\"Blog\",\"Fashion\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:48;a:20:{s:4:\"tmpl\";i:1331;s:2:\"id\";i:22866;s:5:\"title\";s:28:\"Fly-In | CTA | Private Tutor\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/private-tutor-77-small.jpg\";s:12:\"tmpl_created\";i:1647764062;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/fly-in-cta-private-tutor/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:49;a:20:{s:4:\"tmpl\";i:1332;s:2:\"id\";i:22876;s:5:\"title\";s:30:\"Classic | CTA | Tennis Academy\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/78-Tennis-Academy-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647765192;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-tennis-academy/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:50;a:20:{s:4:\"tmpl\";i:1333;s:2:\"id\";i:22887;s:5:\"title\";s:31:\"Fly-In | CTA | Shared Workspace\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/shared-workspace-79-small.jpg\";s:12:\"tmpl_created\";i:1647765419;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-cta-shared-workspace/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:18:\"[\"Business\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:51;a:20:{s:4:\"tmpl\";i:1334;s:2:\"id\";i:22899;s:5:\"title\";s:30:\"Bottom Bar | CTA | Art Gallery\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/80-Art-Gallery-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647765652;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/bottom-bar-cta-art-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:13:\"[\"Art\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:52;a:20:{s:4:\"tmpl\";i:1335;s:2:\"id\";i:22910;s:5:\"title\";s:44:\"Fly-In | Subscription | Hiking Tours Company\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/hiking-tours-company-81-small.jpg\";s:12:\"tmpl_created\";i:1647765835;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/fly-in-subscription-hiking-tours-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:29:\"[\"Subscribe\",\"Travel\",\"Trip\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:53;a:20:{s:4:\"tmpl\";i:1336;s:2:\"id\";i:22921;s:5:\"title\";s:26:\"Classic | CTA | Music Band\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/music-band-82-small.jpg\";s:12:\"tmpl_created\";i:1647769462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/popups/classic-cta-music-band/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:21:\"[\"Marketing\",\"Music\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:54;a:20:{s:4:\"tmpl\";i:1337;s:2:\"id\";i:22935;s:5:\"title\";s:35:\"Classic | CTA | Computer Technician\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/comuter-technician-83-small.jpg\";s:12:\"tmpl_created\";i:1647769843;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/classic-cta-computer-technician/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:18:\"[\"cta\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:55;a:20:{s:4:\"tmpl\";i:1338;s:2:\"id\";i:22945;s:5:\"title\";s:37:\"Classic | Discount | Delivery Company\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/delivery-company-88-small.jpg\";s:12:\"tmpl_created\";i:1647770834;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/classic-discount-delivery-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"Discount\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:56;a:20:{s:4:\"tmpl\";i:1339;s:2:\"id\";i:22959;s:5:\"title\";s:29:\"Classic | Discount | Eco Shop\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/echo-shop-89-small.jpg\";s:12:\"tmpl_created\";i:1647771211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-discount-eco-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:24:\"[\"Discount\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:57;a:20:{s:4:\"tmpl\";i:1340;s:2:\"id\";i:22972;s:5:\"title\";s:54:\"Fly-In | Subscription | Health &#038; Mindfulness Blog\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/health-blog-91-small.jpg\";s:12:\"tmpl_created\";i:1647771461;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/fly-in-subscription-health-mindfulness-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:21:\"[\"Health\",\"Magazine\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:58;a:20:{s:4:\"tmpl\";i:1341;s:2:\"id\";i:22982;s:5:\"title\";s:31:\"Full Screen | Menu | Art Museum\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/art-museum-112-small.jpg\";s:12:\"tmpl_created\";i:1647771938;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/full-screen-menu-art-museum/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:59;a:20:{s:4:\"tmpl\";i:1342;s:2:\"id\";i:22992;s:5:\"title\";s:40:\"Classic | Discount | Urban Clothing Shop\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/health-blog-91-small-1.jpg\";s:12:\"tmpl_created\";i:1647773067;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-discount-urban-clothing-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Discount\",\"Ecommerce\",\"Fashion\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:60;a:20:{s:4:\"tmpl\";i:1343;s:2:\"id\";i:23004;s:5:\"title\";s:60:\"Full Screen | Menu | Digital &#038; Technology Design School\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-design-tech-school-small-1.jpg\";s:12:\"tmpl_created\";i:1647773366;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:155:\"https://library.elementor.com/popups/full-screen-menu-digital-technology-design-school/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:61;a:20:{s:4:\"tmpl\";i:1344;s:2:\"id\";i:23015;s:5:\"title\";s:62:\"Bottom Bar | Contact | Digital &#038; Technology Design School\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-design-tech-school-small.jpg\";s:12:\"tmpl_created\";i:1647773492;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:157:\"https://library.elementor.com/popups/bottom-bar-contact-digital-technology-design-school/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:23:\"[\"Contact\",\"Portfolio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:62;a:20:{s:4:\"tmpl\";i:1345;s:2:\"id\";i:23025;s:5:\"title\";s:32:\"Full Screen | Menu | Flower Shop\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/flower-shop-small.jpg\";s:12:\"tmpl_created\";i:1647773820;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/full-screen-menu-flower-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:63;a:20:{s:4:\"tmpl\";i:1346;s:2:\"id\";i:23037;s:5:\"title\";s:36:\"Classic | Subscription | Flower Shop\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/flower-shop-small-1.jpg\";s:12:\"tmpl_created\";i:1647773949;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-subscription-flower-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:24:\"[\"Discount\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:64;a:20:{s:4:\"tmpl\";i:1347;s:2:\"id\";i:23056;s:5:\"title\";s:48:\"Classic | Discount | Health &#038; Fitness eBook\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/fitness-ebook-small-1.jpg\";s:12:\"tmpl_created\";i:1647774468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/classic-discount-health-fitness-ebook/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"Contact\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:65;a:20:{s:4:\"tmpl\";i:1348;s:2:\"id\";i:23067;s:5:\"title\";s:37:\"Fly-In | Menu | Baby Sleep Consultant\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/baby-sleep-consultant-small-1.jpg\";s:12:\"tmpl_created\";i:1647778954;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/baby-sleep-consultant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:66;a:20:{s:4:\"tmpl\";i:1349;s:2:\"id\";i:23077;s:5:\"title\";s:46:\"Classic | Subscription | Baby Sleep Consultant\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/baby-sleep-consultant-small.jpg\";s:12:\"tmpl_created\";i:1647779074;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/classic-subscription-baby-sleep-consultant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:12:\"[\"Discount\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:67;a:20:{s:4:\"tmpl\";i:1350;s:2:\"id\";i:23090;s:5:\"title\";s:33:\"Full Screen | Menu | Luxury Hotel\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/luxury-hotel-small.jpg\";s:12:\"tmpl_created\";i:1647779390;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/full-screen-menu-luxury-hotel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:68;a:20:{s:4:\"tmpl\";i:1351;s:2:\"id\";i:23100;s:5:\"title\";s:31:\"Fly-In | Booking | Luxury Hotel\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/luxury-hotel-small-1.jpg\";s:12:\"tmpl_created\";i:1647779500;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-booking-luxury-hotel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:20:\"[\"Booking\",\"Travel\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:69;a:20:{s:4:\"tmpl\";i:1352;s:2:\"id\";i:23109;s:5:\"title\";s:38:\"Full Screen | Menu | Design Conference\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/03/design-conference-35-small.jpg\";s:12:\"tmpl_created\";i:1647779675;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-menu-design-conference/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:70;a:20:{s:4:\"tmpl\";i:1353;s:2:\"id\";i:23120;s:5:\"title\";s:41:\"Full Screen | Booking | Design Conference\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/design-conference-35-small-1.jpg\";s:12:\"tmpl_created\";i:1647779793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/full-screen-booking-design-conference/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:35:\"[\"Booking\",\"Conference\",\"Creative\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:71;a:20:{s:4:\"tmpl\";i:1354;s:2:\"id\";i:23129;s:5:\"title\";s:29:\"Slide-In | Menu | VR Headsets\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/VR-headset-small.jpg\";s:12:\"tmpl_created\";i:1647781211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/slide-in-menu-vr-headsets/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:72;a:20:{s:4:\"tmpl\";i:1355;s:2:\"id\";i:23139;s:5:\"title\";s:31:\"Classic | Contact | VR Headsets\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/VR-headset-small-1.jpg\";s:12:\"tmpl_created\";i:1647781384;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-contact-vr-headsets/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:73;a:20:{s:4:\"tmpl\";i:1356;s:2:\"id\";i:23149;s:5:\"title\";s:38:\"Slide-In | Menu | Portrait Photography\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/48-portrair-photography-Menu.jpg\";s:12:\"tmpl_created\";i:1647782336;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/slide-in-menu-portrait-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:74;a:20:{s:4:\"tmpl\";i:1357;s:2:\"id\";i:23159;s:5:\"title\";s:47:\"Hello Bar | Subscription | Portrait Photography\";s:9:\"thumbnail\";s:97:\"https://library.elementor.com/wp-content/uploads/2022/03/48-portrair-photography-Subscription.jpg\";s:12:\"tmpl_created\";i:1647782478;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/hello-bar-subscription-portrait-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:34:\"[\"Blog\",\"Photography\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:75;a:20:{s:4:\"tmpl\";i:1358;s:2:\"id\";i:23169;s:5:\"title\";s:32:\"Full Screen | Menu | English Pub\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/49-englisg-pub-Menu.jpg\";s:12:\"tmpl_created\";i:1647782664;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/full-screen-menu-english-pub/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:76;a:20:{s:4:\"tmpl\";i:1359;s:2:\"id\";i:23179;s:5:\"title\";s:32:\"Classic | Discount | English Pub\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/49-englisg-pub-Discount.jpg\";s:12:\"tmpl_created\";i:1647782796;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-discount-english-pub/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:20:\"[\"Discount\",\"Offer\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:77;a:20:{s:4:\"tmpl\";i:1360;s:2:\"id\";i:23189;s:5:\"title\";s:27:\"Full Screen | Menu | Singer\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/58-Music-Artist-Menu.jpg\";s:12:\"tmpl_created\";i:1647783070;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/full-screen-menu-singer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:29:\"[\"Fullscreen\",\"menu\",\"Music\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:78;a:20:{s:4:\"tmpl\";i:1361;s:2:\"id\";i:23200;s:5:\"title\";s:31:\"Classic | Subscription | Singer\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/58-Music-Artist-Subscription.jpg\";s:12:\"tmpl_created\";i:1647783249;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-subscription-singer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:21:\"[\"Music\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:79;a:20:{s:4:\"tmpl\";i:1362;s:2:\"id\";i:23210;s:5:\"title\";s:38:\"Full Screen | Menu | Virtual Assistant\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/virtual-assistnt-73-small.jpg\";s:12:\"tmpl_created\";i:1647784292;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-menu-virtual-assistant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:80;a:20:{s:4:\"tmpl\";i:1363;s:2:\"id\";i:23223;s:5:\"title\";s:39:\"Hello Bar | Contact | Virtual Assistant\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/73-Virtual-Assistant-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647784616;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/hello-bar-contact-virtual-assistant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:37:\"[\"Contact\",\"Psychologist\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:81;a:20:{s:4:\"tmpl\";i:1364;s:2:\"id\";i:23234;s:5:\"title\";s:32:\"Slide-In  | Menu | Personal Chef\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/74-Personal-Chef-Menu.jpg\";s:12:\"tmpl_created\";i:1647798194;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/slide-in-menu-personal-chef/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:82;a:20:{s:4:\"tmpl\";i:1365;s:2:\"id\";i:23244;s:5:\"title\";s:29:\"Classic | CTA | Personal Chef\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/74-Personal-Chef-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647798297;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-cta-personal-chef/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:24:\"[\"Booking\",\"Chef\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:83;a:20:{s:4:\"tmpl\";i:1366;s:2:\"id\";i:23254;s:5:\"title\";s:31:\"Full Screen | Menu | Food Truck\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/food-truck-76-small-1.jpg\";s:12:\"tmpl_created\";i:1647798447;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/full-screen-menu-food-truck/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:84;a:20:{s:4:\"tmpl\";i:1367;s:2:\"id\";i:23265;s:5:\"title\";s:30:\"Fly-In | Discount | Food Truck\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/food-truck-76-small.jpg\";s:12:\"tmpl_created\";i:1647798657;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/fly-in-discount-food-truck/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:20:\"[\"Discount\",\"Offer\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:85;a:20:{s:4:\"tmpl\";i:1369;s:2:\"id\";i:23323;s:5:\"title\";s:28:\"Classic | CTA | Black Friday\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-6-Small.jpg\";s:12:\"tmpl_created\";i:1647855505;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-cta-black-friday/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:86;a:20:{s:4:\"tmpl\";i:1370;s:2:\"id\";i:23329;s:5:\"title\";s:29:\"Slide-In | CTA | Black Friday\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-5-Small.jpg\";s:12:\"tmpl_created\";i:1647855865;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/slide-in-cta-black-friday/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:87;a:20:{s:4:\"tmpl\";i:1371;s:2:\"id\";i:23335;s:5:\"title\";s:31:\"Slide-In | CTA | Black Friday 1\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-1-Small.jpg\";s:12:\"tmpl_created\";i:1647856357;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/slide-in-cta-black-friday-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:88;a:20:{s:4:\"tmpl\";i:1372;s:2:\"id\";i:23341;s:5:\"title\";s:30:\"Classic | CTA | Black Friday 2\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-3-Small.jpg\";s:12:\"tmpl_created\";i:1647856493;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-black-friday-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:89;a:20:{s:4:\"tmpl\";i:1373;s:2:\"id\";i:23347;s:5:\"title\";s:30:\"Classic | CTA | Black Friday 3\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-2-Small.jpg\";s:12:\"tmpl_created\";i:1647856891;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-black-friday-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:90;a:20:{s:4:\"tmpl\";i:1374;s:2:\"id\";i:23354;s:5:\"title\";s:30:\"Classic | CTA | Black Friday 4\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-4-Small.jpg\";s:12:\"tmpl_created\";i:1647856996;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-black-friday-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:91;a:20:{s:4:\"tmpl\";i:1375;s:2:\"id\";i:23394;s:5:\"title\";s:27:\"Classic | CTA | Halloween 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-3-Small.jpg\";s:12:\"tmpl_created\";i:1647857351;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-cta-halloween-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:31:\"[\"cta\",\"Ecommerce\",\"Halloween\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:92;a:20:{s:4:\"tmpl\";i:1376;s:2:\"id\";i:23401;s:5:\"title\";s:33:\"Slide-In | Discount | Halloween 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-2-Small.jpg\";s:12:\"tmpl_created\";i:1647857567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-discount-halloween-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:36:\"[\"Discount\",\"Ecommerce\",\"Halloween\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:93;a:20:{s:4:\"tmpl\";i:1377;s:2:\"id\";i:23407;s:5:\"title\";s:33:\"Slide-In | Discount | Halloween 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-1-Small.jpg\";s:12:\"tmpl_created\";i:1647857814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-discount-halloween-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:36:\"[\"Discount\",\"Ecommerce\",\"Halloween\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:94;a:20:{s:4:\"tmpl\";i:1378;s:2:\"id\";i:23416;s:5:\"title\";s:31:\"Fly-In | Discount | Halloween 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-5-Small.jpg\";s:12:\"tmpl_created\";i:1647858024;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-discount-halloween-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:44:\"[\"Discount\",\"Ecommerce\",\"Halloween\",\"Offer\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:95;a:20:{s:4:\"tmpl\";i:1379;s:2:\"id\";i:23422;s:5:\"title\";s:36:\"Classic | Subscription | Halloween 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-4-Small.jpg\";s:12:\"tmpl_created\";i:1647858246;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-subscription-halloween-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:48:\"[\"Discount\",\"Ecommerce\",\"Halloween\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:96;a:20:{s:4:\"tmpl\";i:1380;s:2:\"id\";i:23471;s:5:\"title\";s:28:\"Slide-In | CTA | Christmas 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-2-Small.jpg\";s:12:\"tmpl_created\";i:1647859193;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/slide-in-cta-christmas-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:19:\"[\"Christmas\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:97;a:20:{s:4:\"tmpl\";i:1381;s:2:\"id\";i:23477;s:5:\"title\";s:28:\"Slide-In | CTA | Christmas 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-4-Small.jpg\";s:12:\"tmpl_created\";i:1647859838;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/slide-in-cta-christmas-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:19:\"[\"Christmas\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:98;a:20:{s:4:\"tmpl\";i:1382;s:2:\"id\";i:23483;s:5:\"title\";s:26:\"Fly-In | CTA | Christmas 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-1-Small.jpg\";s:12:\"tmpl_created\";i:1647860157;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/popups/fly-in-cta-christmas-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:31:\"[\"Christmas\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:99;a:20:{s:4:\"tmpl\";i:1383;s:2:\"id\";i:23489;s:5:\"title\";s:33:\"Slide-In | Discount | Christmas 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-5-Small.jpg\";s:12:\"tmpl_created\";i:1647860302;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-discount-christmas-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:31:\"[\"Christmas\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:100;a:20:{s:4:\"tmpl\";i:1384;s:2:\"id\";i:23496;s:5:\"title\";s:32:\"Classic | Discount | Christmas 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-3-Small.jpg\";s:12:\"tmpl_created\";i:1647860454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-discount-christmas-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Christmas\",\"Offer\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:101;a:20:{s:4:\"tmpl\";i:1385;s:2:\"id\";i:23523;s:5:\"title\";s:30:\"Classic | CTA | Valentines Day\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/Valentines-Day-2-Small.jpg\";s:12:\"tmpl_created\";i:1647860912;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-valentines-day/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"cta\",\"Valentine\'s Day\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:102;a:20:{s:4:\"tmpl\";i:1386;s:2:\"id\";i:23529;s:5:\"title\";s:39:\"Hello Bar | Discount | Valentines Day 2\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/Valentines-Day-1-Small.jpg\";s:12:\"tmpl_created\";i:1647861064;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/hello-bar-discount-valentines-day-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:30:\"[\"Discount\",\"Valentine\'s Day\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:103;a:20:{s:4:\"tmpl\";i:1387;s:2:\"id\";i:23536;s:5:\"title\";s:32:\"Classic | CTA | Valentines Day 3\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/Valentines-Day-3-Small.jpg\";s:12:\"tmpl_created\";i:1647861536;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-cta-valentines-day-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"cta\",\"Valentine\'s Day\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:104;a:20:{s:4:\"tmpl\";i:1388;s:2:\"id\";i:23586;s:5:\"title\";s:51:\"Fly-In | Subscribe | Health &#038; Wellness Company\";s:9:\"thumbnail\";s:103:\"https://library.elementor.com/wp-content/uploads/2022/03/35-Subscribe-Health-Wellness-Company-Small.jpg\";s:12:\"tmpl_created\";i:1647862008;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/fly-in-subscribe-health-wellness-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:24:\"[\"Business\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:105;a:20:{s:4:\"tmpl\";i:1389;s:2:\"id\";i:23592;s:5:\"title\";s:34:\"Classic | Subscribe | Tech Company\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/36-Subscribe-Tech-Company-Small.jpg\";s:12:\"tmpl_created\";i:1647866706;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/classic-subscribe-tech-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"Marketing\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:106;a:20:{s:4:\"tmpl\";i:1390;s:2:\"id\";i:23598;s:5:\"title\";s:36:\"Classic | Contact Us | Fight Classes\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/37-Contact-Us-Fight-Classes-Small.jpg\";s:12:\"tmpl_created\";i:1647866869;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-contact-us-fight-classes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"Contact\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:107;a:20:{s:4:\"tmpl\";i:1391;s:2:\"id\";i:23611;s:5:\"title\";s:31:\"Classic | CTA | Mochi Shop Sale\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2022/03/39-Click-Through-Mochi-Shop-Sale-Small.jpg\";s:12:\"tmpl_created\";i:1647867750;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-cta-mochi-shop-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"cta\",\"Offer\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:108;a:20:{s:4:\"tmpl\";i:1392;s:2:\"id\";i:23618;s:5:\"title\";s:28:\"Classic | CTA | Fashion Shop\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2022/03/40-Click-Through-Fashion-Shop-Small.jpg\";s:12:\"tmpl_created\";i:1647868251;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-cta-fashion-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:109;a:20:{s:4:\"tmpl\";i:1393;s:2:\"id\";i:23624;s:5:\"title\";s:29:\"Fly-In | Login | Tech Company\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/41-Login-Tech-Company-Small.jpg\";s:12:\"tmpl_created\";i:1647868704;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/fly-in-login-tech-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:9:\"[\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:110;a:20:{s:4:\"tmpl\";i:1394;s:2:\"id\";i:23630;s:5:\"title\";s:36:\"Fly-In | Verification | Liquor Store\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/42-Verification-Liquor-Store-Small.jpg\";s:12:\"tmpl_created\";i:1647870308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-verification-liquor-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:16:\"[\"Verification\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:111;a:20:{s:4:\"tmpl\";i:1395;s:2:\"id\";i:23636;s:5:\"title\";s:39:\"Hello Bar | Subscribe | Online Magazine\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/44-Subscribe-Online-Magazine-Small.jpg\";s:12:\"tmpl_created\";i:1647870465;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/hello-bar-subscribe-online-magazine/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:20:\"[\"Blog\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:112;a:20:{s:4:\"tmpl\";i:1396;s:2:\"id\";i:23642;s:5:\"title\";s:27:\"Fly-In | Login | Health Spa\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/43-Login-Health-Spa-Small.jpg\";s:12:\"tmpl_created\";i:1647872427;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/fly-in-login-health-spa/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:20:\"[\"Login\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:113;a:20:{s:4:\"tmpl\";i:1397;s:2:\"id\";i:23648;s:5:\"title\";s:33:\"Fly-In | Verification | Wine Shop\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/45-Verification-Wine-Shop-Small.jpg\";s:12:\"tmpl_created\";i:1647872627;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/fly-in-verification-wine-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:16:\"[\"Verification\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:114;a:20:{s:4:\"tmpl\";i:1421;s:2:\"id\";i:24235;s:5:\"title\";s:24:\"Ladydog Club &#8211; NFT\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/05/Ladydog_Club.jpg\";s:12:\"tmpl_created\";i:1651525072;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/ladydog-club-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:115;a:20:{s:4:\"tmpl\";i:1422;s:2:\"id\";i:24166;s:5:\"title\";s:15:\"Dot &#8211; NFT\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2022/05/Dot-250_280.jpg\";s:12:\"tmpl_created\";i:1651525117;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/lp/dot-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:116;a:20:{s:4:\"tmpl\";i:1423;s:2:\"id\";i:24191;s:5:\"title\";s:28:\"Cosmic Neighbors &#8211; NFT\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Cosmic_Neighbors-250_280.jpg\";s:12:\"tmpl_created\";i:1651525124;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/cosmic-neighbors-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:117;a:20:{s:4:\"tmpl\";i:1424;s:2:\"id\";i:24255;s:5:\"title\";s:30:\"Happy Food Friends &#8211; NFT\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/05/Featured_Image.jpg\";s:12:\"tmpl_created\";i:1651525475;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/happy-food-friends-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:118;a:20:{s:4:\"tmpl\";i:1443;s:2:\"id\";i:24599;s:5:\"title\";s:27:\"Wireframe &#8211; Courses 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Courses-1.jpg\";s:12:\"tmpl_created\";i:1653989626;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/wireframe-courses-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:180:\"[\"About\",\"Academy\",\"Booking\",\"Business\",\"Course Online\",\"Features\",\"Footer\",\"Landing Pages\",\"Online Service\",\"Professional\",\"School\",\"Services\",\"Subscribe\",\"Teacher\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:119;a:20:{s:4:\"tmpl\";i:1444;s:2:\"id\";i:24614;s:5:\"title\";s:28:\"Wireframe &#8211; Services 1\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-1-2.jpg\";s:12:\"tmpl_created\";i:1653990084;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:139:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Form\",\"Header\",\"Landing Pages\",\"Online Service\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:120;a:20:{s:4:\"tmpl\";i:1445;s:2:\"id\";i:24629;s:5:\"title\";s:28:\"Wireframe &#8211; Services 2\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-2-2.jpg\";s:12:\"tmpl_created\";i:1653990132;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:123:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Form\",\"Gallery\",\"Landing Pages\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:121;a:20:{s:4:\"tmpl\";i:1446;s:2:\"id\";i:24644;s:5:\"title\";s:27:\"Wireframe &#8211; Webinar 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Webinar-1.jpg\";s:12:\"tmpl_created\";i:1653990164;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/wireframe-webinar-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:177:\"[\"About\",\"Academy\",\"Booking\",\"Conference\",\"Course Online\",\"Education\",\"Features\",\"Footer\",\"Form\",\"Landing Pages\",\"Online Event\",\"Online Service\",\"Subscribe\",\"Virtual\",\"Webinar\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:122;a:20:{s:4:\"tmpl\";i:1447;s:2:\"id\";i:24655;s:5:\"title\";s:28:\"Wireframe &#8211; Services 3\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-3-2.jpg\";s:12:\"tmpl_created\";i:1653990198;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:143:\"[\"About\",\"Agency\",\"Business\",\"Contact\",\"Footer\",\"Form\",\"Gallery\",\"Landing Pages\",\"Portfolio\",\"Professional\",\"Project\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:123;a:20:{s:4:\"tmpl\";i:1448;s:2:\"id\";i:24677;s:5:\"title\";s:28:\"Wireframe &#8211; Services 4\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-4.jpg\";s:12:\"tmpl_created\";i:1653990233;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:102:\"[\"About\",\"Business\",\"Contact\",\"Footer\",\"Form\",\"Landing Pages\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:124;a:20:{s:4:\"tmpl\";i:1449;s:2:\"id\";i:24687;s:5:\"title\";s:28:\"Wireframe &#8211; Products 1\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Products-1.jpg\";s:12:\"tmpl_created\";i:1653990273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-products-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:128:\"[\"About\",\"Booking\",\"Business\",\"Clients\",\"Ecommerce\",\"Features\",\"Footer\",\"Landing Pages\",\"Products\",\"Sales\",\"Shop\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:125;a:20:{s:4:\"tmpl\";i:1450;s:2:\"id\";i:24706;s:5:\"title\";s:28:\"Wireframe &#8211; Services 5\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-5.jpg\";s:12:\"tmpl_created\";i:1653990322;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:149:\"[\"About\",\"Booking\",\"Consulting\",\"Contact\",\"Doctor\",\"Footer\",\"Form\",\"Header\",\"Landing Pages\",\"Online Service\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:126;a:20:{s:4:\"tmpl\";i:1451;s:2:\"id\";i:23604;s:5:\"title\";s:38:\"Classic | Subscribe | Nail Polish Shop\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2022/03/38-Subscribe-Nail-Polish-Shop-Small.jpg\";s:12:\"tmpl_created\";i:1660205114;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/classic-subscribe-nail-polish-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:20:\"[\"Blog\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:127;a:20:{s:4:\"tmpl\";i:1452;s:2:\"id\";i:23047;s:5:\"title\";s:46:\"Fly-In | Contact | Health &#038; Fitness eBook\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/fitness-ebook-small.jpg\";s:12:\"tmpl_created\";i:1660205149;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/fly-in-contact-health-fitness-ebook/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:28:\"[\"Contact\",\"Ebook\",\"Health\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:128;a:20:{s:4:\"tmpl\";i:1199;s:2:\"id\";i:18839;s:5:\"title\";s:27:\"Hello Bar | CTA | eCommerce\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/05/350x250.png\";s:12:\"tmpl_created\";i:1621870603;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/hello-bar-cta-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:41:\"[\"Ecommerce\",\"Online Shop\",\"Sale\",\"Shop\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:129;a:20:{s:4:\"tmpl\";i:1247;s:2:\"id\";i:21907;s:5:\"title\";s:50:\"Fly-In | Team Details  | Electronic Music Festival\";s:9:\"thumbnail\";s:104:\"https://library.elementor.com/wp-content/uploads/2022/03/Kit-8-electronic-music-festival-CTA-image-1.jpg\";s:12:\"tmpl_created\";i:1646660881;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:157:\"https://library.elementor.com/popups/fly-in-team-details-popup-electronic-music-festival/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:130;a:20:{s:4:\"tmpl\";i:1253;s:2:\"id\";i:22162;s:5:\"title\";s:46:\"Full Screen | Menu | Electronic Music Festival\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/8-music-festival-Team-Details.jpg\";s:12:\"tmpl_created\";i:1647272934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:154:\"https://library.elementor.com/popups/full-screen-menu-popup-electronic-music-festival/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:131;a:20:{s:4:\"tmpl\";i:1254;s:2:\"id\";i:22172;s:5:\"title\";s:45:\"Classic | Discount | Health &#038; Beauty Spa\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/health-beauty-spa-small.jpg\";s:12:\"tmpl_created\";i:1647273547;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/classic-discount-popup-health-beauty-spa/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:36:\"[\"Hair\",\"Health\",\"Sales\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:132;a:20:{s:4:\"tmpl\";i:1255;s:2:\"id\";i:22183;s:5:\"title\";s:44:\"Hello Bar | CTA | Environmental Organization\";s:9:\"thumbnail\";s:104:\"https://library.elementor.com/wp-content/uploads/2022/03/11-Environmental-Organization-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647274384;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:152:\"https://library.elementor.com/popups/hello-bar-cta-popup-environmental-organization/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:133;a:20:{s:4:\"tmpl\";i:1256;s:2:\"id\";i:22195;s:5:\"title\";s:39:\"Classic | Discount | Italian Restaurant\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/restaurant-small.jpg\";s:12:\"tmpl_created\";i:1647329432;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:147:\"https://library.elementor.com/popups/classic-discount-popup-italian-restaurant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:22:\"[\"Restaurant\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:134;a:20:{s:4:\"tmpl\";i:1257;s:2:\"id\";i:22210;s:5:\"title\";s:45:\"Bottom Bar | Discount | Technology Conference\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/tech-conference-small.jpg\";s:12:\"tmpl_created\";i:1647330423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:153:\"https://library.elementor.com/popups/bottom-bar-discount-popup-technology-conference/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:38:\"[\"Conference\",\"Sales\",\"Save the Date\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:135;a:20:{s:4:\"tmpl\";i:1258;s:2:\"id\";i:22221;s:5:\"title\";s:32:\"Hello Bar | Menu | Tattoo Studio\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/tattoo-studio-small-1.jpg\";s:12:\"tmpl_created\";i:1647330705;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/hello-bar-menu-popup-tattoo-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:17:\"[\"Header\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:136;a:20:{s:4:\"tmpl\";i:1259;s:2:\"id\";i:22231;s:5:\"title\";s:37:\"Full Screen | Booking | Tattoo Studio\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/tattoo-studio-small.jpg\";s:12:\"tmpl_created\";i:1647331823;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/full-screen-booking-popup-tattoo-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:32:\"[\"Booking\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:137;a:20:{s:4:\"tmpl\";i:1260;s:2:\"id\";i:22251;s:5:\"title\";s:34:\"Classic | Discount | Dental Clinic\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/dental-clinic-small.jpg\";s:12:\"tmpl_created\";i:1647332171;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-discount-popup-dental-clinic/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:30:\"[\"Health\",\"Marketing\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:138;a:20:{s:4:\"tmpl\";i:1261;s:2:\"id\";i:22261;s:5:\"title\";s:34:\"Slide-In | Contact | Makeup Artist\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/20-Makeup-Artist-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647333946;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/slide-in-contact-popup-makeup-artist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:33:\"[\"Business\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:139;a:20:{s:4:\"tmpl\";i:1262;s:2:\"id\";i:22271;s:5:\"title\";s:24:\"Fly-In | CTA | Headphone\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/headphones-1-small.jpg\";s:12:\"tmpl_created\";i:1647334784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/fly-in-cta-popup-headphone/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:41:\"[\"cta\",\"Ecommerce\",\"Marketing\",\"Product\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:140;a:20:{s:4:\"tmpl\";i:1263;s:2:\"id\";i:22277;s:5:\"title\";s:29:\"Classic | CTA | Online Course\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/online-course-2.jpg\";s:12:\"tmpl_created\";i:1647337110;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/classic-cta-popup-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:35:\"[\"Course Online\",\"cta\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:141;a:20:{s:4:\"tmpl\";i:1264;s:2:\"id\";i:22283;s:5:\"title\";s:40:\"Bottom Bar | Contact | Virtual Assistant\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/virtual-assistant-3.jpg\";s:12:\"tmpl_created\";i:1647337517;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/bottom-bar-contact-popup-virtual-assistant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:33:\"[\"Business\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:142;a:20:{s:4:\"tmpl\";i:1265;s:2:\"id\";i:22289;s:5:\"title\";s:32:\"Fly-In | Contact | Private Tutor\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/private-tutor-4.jpg\";s:12:\"tmpl_created\";i:1647337676;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/fly-in-contact-popup-private-tutor/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:27:\"[\"Contact\",\"Course Online\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:143;a:20:{s:4:\"tmpl\";i:1266;s:2:\"id\";i:22295;s:5:\"title\";s:31:\"Classic |  Login | Login Travel\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/login-travel-6.jpg\";s:12:\"tmpl_created\";i:1647339467;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-login-popup-login-travel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:9:\"[\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:144;a:20:{s:4:\"tmpl\";i:1267;s:2:\"id\";i:22301;s:5:\"title\";s:36:\"Full Screen | Login | Login Business\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/login-business-7.jpg\";s:12:\"tmpl_created\";i:1647339782;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:144:\"https://library.elementor.com/popups/full-screen-login-popup-login-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:16:\"[\"Login\",\"SaaS\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:145;a:20:{s:4:\"tmpl\";i:1268;s:2:\"id\";i:22307;s:5:\"title\";s:28:\"Classic | Login | Login Blog\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/03/login-blog-8.jpg\";s:12:\"tmpl_created\";i:1647339986;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/classic-login-popup-login-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:16:\"[\"Blog\",\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:146;a:20:{s:4:\"tmpl\";i:1269;s:2:\"id\";i:22313;s:5:\"title\";s:31:\"Classic | Login | Login Fashion\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/login-fashion-9.jpg\";s:12:\"tmpl_created\";i:1647340204;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/classic-login-popup-login-fashion/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"Fashion\",\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:147;a:20:{s:4:\"tmpl\";i:1270;s:2:\"id\";i:22319;s:5:\"title\";s:40:\"Classic |  Login | Login Design Platform\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/03/login-design-platform-10.jpg\";s:12:\"tmpl_created\";i:1647340531;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:147:\"https://library.elementor.com/popups/classic-login-popup-login-design-platform/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"Design\",\"Login\",\"SaaS\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:148;a:20:{s:4:\"tmpl\";i:1271;s:2:\"id\";i:22325;s:5:\"title\";s:36:\"Fly-In | Contact | Digital Marketing\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-marketing-11.jpg\";s:12:\"tmpl_created\";i:1647340770;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:144:\"https://library.elementor.com/popups/fly-in-contact-popup-digital-marketing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:51:\"[\"Business\",\"Contact\",\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:149;a:20:{s:4:\"tmpl\";i:1272;s:2:\"id\";i:22331;s:5:\"title\";s:36:\"Fly-In | CTA | Dog Cat Food Delivery\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/dog-cat-food-delivery-5.jpg\";s:12:\"tmpl_created\";i:1647341069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:144:\"https://library.elementor.com/popups/fly-in-cta-popup-dog-cat-food-delivery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:33:\"[\"cta\",\"Delivery Service\",\"Pets\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:150;a:20:{s:4:\"tmpl\";i:1273;s:2:\"id\";i:22337;s:5:\"title\";s:37:\"Full Screen | Contact | Design Studio\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/design-studio-12.jpg\";s:12:\"tmpl_created\";i:1647341370;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/full-screen-contact-popup-design-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:39:\"[\"Business\",\"Contact\",\"Digital Agency\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:151;a:20:{s:4:\"tmpl\";i:1274;s:2:\"id\";i:22343;s:5:\"title\";s:44:\"Classic | Contact | Support Product Platform\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2022/03/support-13.jpg\";s:12:\"tmpl_created\";i:1647341972;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/classic-contact-support-product-platform/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:21:\"[\"Contact\",\"Support\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:152;a:20:{s:4:\"tmpl\";i:1275;s:2:\"id\";i:22371;s:5:\"title\";s:38:\"Full Screen | Contact | Small Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/small-business-14.jpg\";s:12:\"tmpl_created\";i:1647342508;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-contact-small-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:40:\"[\"Business\",\"Contact\",\"Interior Design\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:153;a:20:{s:4:\"tmpl\";i:1276;s:2:\"id\";i:22377;s:5:\"title\";s:31:\"Classic | Contact | Online Shop\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/online-shop-15.jpg\";s:12:\"tmpl_created\";i:1647352786;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-contact-online-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:154;a:20:{s:4:\"tmpl\";i:1277;s:2:\"id\";i:22383;s:5:\"title\";s:40:\"Classic | Booking | Children Optometrist\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/children-optometrist-16.jpg\";s:12:\"tmpl_created\";i:1647352963;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-booking-children-optometrist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:53:\"[\"Booking\",\"Business\",\"Contact\",\"Education\",\"Health\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:155;a:20:{s:4:\"tmpl\";i:1278;s:2:\"id\";i:22389;s:5:\"title\";s:28:\"Fly-In | Contact | Open Week\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2022/03/open-week17.jpg\";s:12:\"tmpl_created\";i:1647353281;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/fly-in-contact-open-week/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:34:\"[\"Business\",\"Contact\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:156;a:20:{s:4:\"tmpl\";i:1279;s:2:\"id\";i:22397;s:5:\"title\";s:43:\"Full Screen | CTA | Plant Pots Online Store\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/03/plant-pots-online-store-18.jpg\";s:12:\"tmpl_created\";i:1647353429;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/full-screen-cta-plant-pots-online-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:33:\"[\"Ecommerce\",\"Marketing\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:157;a:20:{s:4:\"tmpl\";i:1054;s:2:\"id\";i:15414;s:5:\"title\";s:32:\"Classic | Contact | Dance Studio\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/10/PopUp.jpg\";s:12:\"tmpl_created\";i:1603180596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-contact-dance-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:762;s:11:\"trend_index\";i:650;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:158;a:20:{s:4:\"tmpl\";i:1398;s:2:\"id\";i:23687;s:5:\"title\";s:32:\"Pizza Promotion &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/04/48-Pizza-Promotion.jpg\";s:12:\"tmpl_created\";i:1649670575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/pizza-promotion-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:92:\"[\"Business\",\"Cooking\",\"Delivery\",\"Discount\",\"Fast Food\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:159;a:20:{s:4:\"tmpl\";i:1400;s:2:\"id\";i:23751;s:5:\"title\";s:33:\"Baby Sleep Webinar &#8211; Events\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/04/63-Baby-Sleep-Webinar.jpg\";s:12:\"tmpl_created\";i:1649676065;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/baby-sleep-webinar-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:227:\"[\"Baby\",\"Booking\",\"Business\",\"Children\",\"Course Online\",\"Education\",\"Events\",\"Health\",\"Landing Pages\",\"Life Coach\",\"Lifestyle\",\"Online Event\",\"Online Service\",\"Parenting\",\"Professional\",\"Remote\",\"Services\",\"Training\",\"Webinar\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:160;a:20:{s:4:\"tmpl\";i:1401;s:2:\"id\";i:23776;s:5:\"title\";s:34:\"Ski Hotel Promotion &#8211; Travel\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/04/64-Ski-Hotel-Promotion.jpg\";s:12:\"tmpl_created\";i:1649691720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/ski-hotel-promotion-travel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Travel\";s:4:\"tags\";s:118:\"[\"Accommodation\",\"Booking\",\"Discount. Landing Pages\",\"Lifestyle\",\"Luxury\",\"Services\",\"Spa\",\"Travel\",\"Trip\",\"Vacation\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:161;a:20:{s:4:\"tmpl\";i:1402;s:2:\"id\";i:23804;s:5:\"title\";s:30:\"Cake Delivery &#8211; Business\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/04/67-Cake-Delivery.jpg\";s:12:\"tmpl_created\";i:1649692909;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/cake-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:101:\"[\"Bakery\",\"Business\",\"Cake\",\"Cooking\",\"Delivery\",\"Discount\",\"Food\",\"Landing Pages\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:162;a:20:{s:4:\"tmpl\";i:1403;s:2:\"id\";i:23832;s:5:\"title\";s:32:\"Furniture Store &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/04/87-Furniture-Store.jpg\";s:12:\"tmpl_created\";i:1649694812;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/furniture-store-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:232:\"[\"Architecture\",\"Art\",\"Business\",\"Construction\",\"Coupon\",\"Creative\",\"Decor\",\"Designer\",\"Discount\",\"Fashion\",\"Furniture Design\",\"Home\",\"House\",\"Interior Design\",\"Landing Pages\",\"Lifestyle\",\"Products\",\"Professional\",\"Services\",\"Shop\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:163;a:20:{s:4:\"tmpl\";i:1404;s:2:\"id\";i:23746;s:5:\"title\";s:22:\"Nails &#8211; Business\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2022/04/62-Nails-1.jpg\";s:12:\"tmpl_created\";i:1649704635;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/nails-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:173:\"[\"Art\",\"Beauty\",\"Business\",\"Colorful\",\"Cosmetics\",\"Creative\",\"Design\",\"Discount\",\"Fashion\",\"Girly\",\"Landing Pages\",\"Lifestyle\",\"Manicure\",\"Modern\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:164;a:20:{s:4:\"tmpl\";i:1405;s:2:\"id\";i:23846;s:5:\"title\";s:29:\"Music Festival &#8211; Events\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/04/88-Music-Festival.jpg\";s:12:\"tmpl_created\";i:1649707763;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/music-festival-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:128:\"[\"Author\",\"Booking\",\"Business\",\"Creative\",\"Discount\",\"Events\",\"Landing Pages\",\"Music\",\"Online\",\"Online Event\",\"Party\",\"Virtual\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:165;a:20:{s:4:\"tmpl\";i:1406;s:2:\"id\";i:23872;s:5:\"title\";s:40:\"Fashion Styling Course &#8211; Education\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/89-Fashion-Styling-Course.jpg\";s:12:\"tmpl_created\";i:1649708569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/fashion-styling-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:173:\"[\"Aesthetic\",\"Art\",\"Beauty\",\"Business\",\"Course Online\",\"Creative\",\"Discount\",\"Education\",\"Fashion\",\"Landing Pages\",\"Lifestyle\",\"Online\",\"Online Service\",\"Stylist\",\"Virtual\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:166;a:20:{s:4:\"tmpl\";i:1407;s:2:\"id\";i:23897;s:5:\"title\";s:33:\"Bags Online Shop &#8211; Business\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/04/90-Bags-Online-Shop.jpg\";s:12:\"tmpl_created\";i:1649709513;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/bags-online-shop-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:170:\"[\"Art\",\"Bag\",\"Business\",\"Creative\",\"Design\",\"Discount\",\"Fashion\",\"Landing Pages\",\"Lifestyle\",\"Luxury\",\"Modern\",\"Online\",\"Online Shop\",\"Products\",\"Sales\",\"Shop\",\"Stylist\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:167;a:20:{s:4:\"tmpl\";i:1408;s:2:\"id\";i:23932;s:5:\"title\";s:32:\"Cooking Academy &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/04/91-Cooking-Academy.jpg\";s:12:\"tmpl_created\";i:1649710216;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/cooking-academy-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:145:\"[\"Academy\",\"Booking\",\"Business\",\"Chef\",\"Cooking\",\"Education\",\"Food\",\"Free Trial\",\"Landing Pages\",\"Professional\",\"School\",\"Teacher\",\"Testimonial\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:168;a:20:{s:4:\"tmpl\";i:1409;s:2:\"id\";i:23970;s:5:\"title\";s:45:\"Ophthalmology Medical Clinic &#8211; Business\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/04/92-Ophthalmology-Medical-Clinic.jpg\";s:12:\"tmpl_created\";i:1649711096;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/lp/ophthalmology-medical-clinic-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:165:\"[\"About\",\"Business\",\"Care\",\"Consulting\",\"Eye\",\"Free Trial\",\"Glasses\",\"Health\",\"Landing Pages\",\"Lifestyle\",\"Medical\",\"Modern\",\"Optometrist\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:169;a:20:{s:4:\"tmpl\";i:1425;s:2:\"id\";i:24331;s:5:\"title\";s:24:\"Wireframe &#8211; Home 1\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Home-1.jpg\";s:12:\"tmpl_created\";i:1653988363;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/wireframe-home-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:102:\"[\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Homepage\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:170;a:20:{s:4:\"tmpl\";i:1218;s:2:\"id\";i:20792;s:5:\"title\";s:26:\"Luxury Car &#8211; Product\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/11/250x280-1.jpg\";s:12:\"tmpl_created\";i:1636903770;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/lp/luxury-car-product/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:54:\"[\"car\",\"Ecommerce\",\"Landing Pages\",\"Luxury\",\"Product\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:171;a:20:{s:4:\"tmpl\";i:1428;s:2:\"id\";i:24398;s:5:\"title\";s:25:\"Wireframe &#8211; About 1\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-1.jpg\";s:12:\"tmpl_created\";i:1653988534;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:83:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Professional\",\"Services\",\"Team\"]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:172;a:20:{s:4:\"tmpl\";i:991;s:2:\"id\";i:13413;s:5:\"title\";s:33:\"Classic | Contact | Online Course\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp-Help.jpg\";s:12:\"tmpl_created\";i:1587474761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-contact-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:530;s:11:\"trend_index\";i:369;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:173;a:20:{s:4:\"tmpl\";i:1053;s:2:\"id\";i:15272;s:5:\"title\";s:32:\"Classic | Contact | Psychologist\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/09/PopUp.png\";s:12:\"tmpl_created\";i:1600170487;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-contact-psychologist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:578;s:11:\"trend_index\";i:312;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:174;a:20:{s:4:\"tmpl\";i:899;s:2:\"id\";i:11839;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Header_small.png\";s:12:\"tmpl_created\";i:1569430015;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"creative portfolio\",\"header\",\"portfolio\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:189;s:11:\"trend_index\";i:20;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:175;a:20:{s:4:\"tmpl\";i:1433;s:2:\"id\";i:24477;s:5:\"title\";s:27:\"Wireframe &#8211; Gallery 2\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Gallery-2.jpg\";s:12:\"tmpl_created\";i:1653988835;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-gallery-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:82:\"[\"Business\",\"Contact\",\"Design\",\"Footer\",\"Gallery\",\"Header\",\"Portfolio\",\"Services\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:176;a:20:{s:4:\"tmpl\";i:1205;s:2:\"id\";i:20233;s:5:\"title\";s:32:\"Art Magazine &#8211; Coming Soon\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Art-Magazine-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633881371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/art-magazine-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:48:\"[\"Art\",\"Coming Soon\",\"Landing Pages\",\"Magazine\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:177;a:20:{s:4:\"tmpl\";i:1214;s:2:\"id\";i:20539;s:5:\"title\";s:31:\"Design Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/10/Design-Blog-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1634022706;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/design-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:47:\"[\"Blog\",\"Coming Soon\",\"Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:178;a:20:{s:4:\"tmpl\";i:1224;s:2:\"id\";i:21013;s:5:\"title\";s:24:\"Restaurant &#8211; About\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/12/7-About-Restaurant.jpg\";s:12:\"tmpl_created\";i:1638795588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/restaurant-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:36:\"[\"About\",\"Chef\",\"Food\",\"Restaurant\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:179;a:20:{s:4:\"tmpl\";i:992;s:2:\"id\";i:13402;s:5:\"title\";s:29:\"Classic | CTA | Online Course\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/04/Popup-Course-Completed.jpg\";s:12:\"tmpl_created\";i:1587474772;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-cta-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:619;s:11:\"trend_index\";i:582;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:180;a:20:{s:4:\"tmpl\";i:1206;s:2:\"id\";i:20254;s:5:\"title\";s:41:\"Digital Marketing Agency &#8211; Business\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Digital-Marketing-Agency-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633882427;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/lp/digital-marketing-agency-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:65:\"[\"Agency\",\"Business\",\"Digital Agency\",\"Landing Pages\",\"Services\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:181;a:20:{s:4:\"tmpl\";i:1235;s:2:\"id\";i:21281;s:5:\"title\";s:25:\"Law Firm &#8211; Services\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/12/16-Services-Law-firm.jpg\";s:12:\"tmpl_created\";i:1638819128;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/law-firm-services-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Consulting\",\"Law\",\"Law Firm\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:182;a:20:{s:4:\"tmpl\";i:1017;s:2:\"id\";i:14111;s:5:\"title\";s:36:\"Classic | Japanese restaurant | Sale\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/06/Pop-Up-Page-Small.jpg\";s:12:\"tmpl_created\";i:1592300400;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-japanese-restaurant-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:717;s:11:\"trend_index\";i:697;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:183;a:20:{s:4:\"tmpl\";i:1213;s:2:\"id\";i:20509;s:5:\"title\";s:40:\"Dogs Adoption &#8211; Social Involvement\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/10/Dog-Adoption-250x280-1.jpg\";s:12:\"tmpl_created\";i:1634022353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/dogs-adoption-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:49:\"[\"Adoption\",\"Involvement\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:184;a:20:{s:4:\"tmpl\";i:1233;s:2:\"id\";i:21205;s:5:\"title\";s:29:\"Photographer &#8211; Projects\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/25-Projects-Photographer.jpg\";s:12:\"tmpl_created\";i:1638818372;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/photographer-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:43:\"[\"Black and white\",\"Photography\",\"Project\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:185;a:20:{s:4:\"tmpl\";i:993;s:2:\"id\";i:13422;s:5:\"title\";s:30:\"Classic | Menu | Online Course\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp-Menu.jpg\";s:12:\"tmpl_created\";i:1587474782;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-menu-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:516;s:11:\"trend_index\";i:432;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:186;a:20:{s:4:\"tmpl\";i:925;s:2:\"id\";i:12540;s:5:\"title\";s:33:\"Classic | Menu | Travel and tours\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/12/PopUp_Menu_s.png\";s:12:\"tmpl_created\";i:1575960267;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-menu-travel-and-tours/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:690;s:11:\"trend_index\";i:714;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:187;a:20:{s:4:\"tmpl\";i:1208;s:2:\"id\";i:20361;s:5:\"title\";s:51:\"Exercise &#038; Fitness Equipment &#8211; eCommerce\";s:9:\"thumbnail\";s:97:\"https://library.elementor.com/wp-content/uploads/2021/10/Exercise-Fitness-Equipment-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633883766;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/lp/exercise-fitness-equipment-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:50:\"[\"Fitness\",\"Health\",\"Landing Pages\",\"Online Shop\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:188;a:20:{s:4:\"tmpl\";i:1239;s:2:\"id\";i:21373;s:5:\"title\";s:28:\"Photographer &#8211; Gallery\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/18-Gallery-Photographer.jpg\";s:12:\"tmpl_created\";i:1638821177;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/photographer-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Gallery\",\"Photography\",\"Portfolio\",\"Project\",\"Travel\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:189;a:20:{s:4:\"tmpl\";i:1426;s:2:\"id\";i:24348;s:5:\"title\";s:24:\"Wireframe &#8211; Home 2\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Home-2.jpg\";s:12:\"tmpl_created\";i:1653988444;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/wireframe-home-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:102:\"[\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Homepage\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:190;a:20:{s:4:\"tmpl\";i:958;s:2:\"id\";i:13129;s:5:\"title\";s:28:\"Classic | Menu | Photography\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/PopUp_s.png\";s:12:\"tmpl_created\";i:1582092645;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-menu-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:646;s:11:\"trend_index\";i:521;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:191;a:20:{s:4:\"tmpl\";i:1427;s:2:\"id\";i:24366;s:5:\"title\";s:24:\"Wireframe &#8211; Home 3\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Home-3.jpg\";s:12:\"tmpl_created\";i:1653988491;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/wireframe-home-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:102:\"[\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Homepage\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:192;a:20:{s:4:\"tmpl\";i:1207;s:2:\"id\";i:20299;s:5:\"title\";s:51:\"Interior Design Consultation &#8211; Online Service\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2021/10/Interior-Design-Consultation-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633882989;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/lp/interior-design-consultation-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:65:\"[\"Consulting\",\"Interior Design\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:193;a:20:{s:4:\"tmpl\";i:952;s:2:\"id\";i:12726;s:5:\"title\";s:52:\"Classic | Newsletter | Subscribe | Magazine and Blog\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/01/PopUp_Newsletter_s.png\";s:12:\"tmpl_created\";i:1579061019;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:152:\"https://library.elementor.com/popups/classic-newsletter-subscribe-magazine-and-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:357;s:11:\"trend_index\";i:281;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:194;a:20:{s:4:\"tmpl\";i:883;s:2:\"id\";i:11468;s:5:\"title\";s:20:\"Classic | Sale | Gym\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/08/PopUp_Small.png\";s:12:\"tmpl_created\";i:1567393182;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/classic-sale-gym/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:696;s:11:\"trend_index\";i:740;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:195;a:20:{s:4:\"tmpl\";i:1216;s:2:\"id\";i:20623;s:5:\"title\";s:57:\"Luxurious Camping Accommodation For Events &#8211; Events\";s:9:\"thumbnail\";s:113:\"https://library.elementor.com/wp-content/uploads/2021/10/Luxurious-Camping-Accommodation-For-Events-250x280-2.jpg\";s:12:\"tmpl_created\";i:1634041681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:151:\"https://library.elementor.com/lp/luxurious-camping-accommodation-for-events-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:43:\"[\"Event\",\"Events\",\"Landing Pages\",\"Travel\"]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:196;a:20:{s:4:\"tmpl\";i:1219;s:2:\"id\";i:20886;s:5:\"title\";s:28:\"Online Training &#8211; Home\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/12/2-Home-Online-Training.jpg\";s:12:\"tmpl_created\";i:1638784769;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/online-training-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Fitness\",\"Online\",\"Sport\",\"Training\"]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:197;a:20:{s:4:\"tmpl\";i:1065;s:2:\"id\";i:15570;s:5:\"title\";s:33:\"Classic | Subscribe | Travel Blog\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/11/PopUp.jpg\";s:12:\"tmpl_created\";i:1606215555;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-subscribe-travel-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:709;s:11:\"trend_index\";i:459;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:198;a:20:{s:4:\"tmpl\";i:1431;s:2:\"id\";i:24437;s:5:\"title\";s:25:\"Wireframe &#8211; About 4\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-4.jpg\";s:12:\"tmpl_created\";i:1653988733;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:74:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Professional\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:199;a:20:{s:4:\"tmpl\";i:1210;s:2:\"id\";i:20414;s:5:\"title\";s:45:\"Online English Courses &#8211; Online Service\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2021/10/Online-English-Courses-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633884482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/lp/online-english-courses-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:50:\"[\"Course Online\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:200;a:20:{s:4:\"tmpl\";i:1132;s:2:\"id\";i:16553;s:5:\"title\";s:31:\"Fly-In | Contact | Beauty Salon\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/12/PopUp.jpg\";s:12:\"tmpl_created\";i:1608622602;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-contact-beauty-salon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:691;s:11:\"trend_index\";i:428;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:201;a:20:{s:4:\"tmpl\";i:1441;s:2:\"id\";i:24574;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 5\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-5.jpg\";s:12:\"tmpl_created\";i:1653989135;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:88:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Google Maps\",\"Header\",\"Professional\",\"Subscribe\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:202;a:20:{s:4:\"tmpl\";i:1217;s:2:\"id\";i:20333;s:5:\"title\";s:40:\"Plant Pots Online Shop &#8211; eCommerce\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2021/10/Plant-Pots-Online-Shop-250x280-2.jpg\";s:12:\"tmpl_created\";i:1634042184;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/plant-pots-online-shop-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:50:\"[\"Ecommerce\",\"Landing Pages\",\"Online Shop\",\"Shop\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:203;a:20:{s:4:\"tmpl\";i:1211;s:2:\"id\";i:20447;s:5:\"title\";s:33:\"Shared Workspace &#8211; Business\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/10/250x280-Shared-Workspace.jpg\";s:12:\"tmpl_created\";i:1633884934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/shared-workspace-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:28:\"[\"Business\",\"Landing Pages\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:204;a:20:{s:4:\"tmpl\";i:1237;s:2:\"id\";i:21313;s:5:\"title\";s:34:\"Spa &#038; Beauty &#8211; Services\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/12/Spa-Beauty-Treatments-page-1.jpg\";s:12:\"tmpl_created\";i:1638819709;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/spa-beauty-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:55:\"[\"Beauty\",\"Hair\",\"Health\",\"Services\",\"Spa\",\"Treatment\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:205;a:20:{s:4:\"tmpl\";i:1004;s:2:\"id\";i:13538;s:5:\"title\";s:32:\"Fly-In | Newsletter | Barbershop\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/05/Pop-Up-Page-Small.jpg\";s:12:\"tmpl_created\";i:1589893364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-newsletter-barbershop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:710;s:11:\"trend_index\";i:667;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:206;a:20:{s:4:\"tmpl\";i:924;s:2:\"id\";i:12550;s:5:\"title\";s:32:\"Fly-in | Sale | Travel and Tours\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/PopUp_s.png\";s:12:\"tmpl_created\";i:1575960263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/flyin-sale-travel-and-tours/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:754;s:11:\"trend_index\";i:791;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:207;a:20:{s:4:\"tmpl\";i:1212;s:2:\"id\";i:20479;s:5:\"title\";s:49:\"Teeth Straightening &#8211; Health &#038; Fitness\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/10/250x280-Teeth-Whitening.jpg\";s:12:\"tmpl_created\";i:1633886115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/teeth-straightening-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:46:\"[\"Business\",\"Dental\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:208;a:20:{s:4:\"tmpl\";i:1234;s:2:\"id\";i:21234;s:5:\"title\";s:34:\"Insurance Company &#8211; Services\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/12/15-Services-Insurance-Company.jpg\";s:12:\"tmpl_created\";i:1638818688;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/insurance-company-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"Faq\",\"Form\",\"Insurance\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:209;a:20:{s:4:\"tmpl\";i:1035;s:2:\"id\";i:15062;s:5:\"title\";s:35:\"Fly-In | Sign up | Flooring Company\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/08/PopUp.png\";s:12:\"tmpl_created\";i:1597739629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/fly-in-sign-up-flooring-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:625;s:11:\"trend_index\";i:309;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:210;a:20:{s:4:\"tmpl\";i:1209;s:2:\"id\";i:20394;s:5:\"title\";s:30:\"Time Management &#8211; Events\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/10/Time-Management-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633884077;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/time-management-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:17:\"[\"Landing Pages\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:211;a:20:{s:4:\"tmpl\";i:1229;s:2:\"id\";i:21118;s:5:\"title\";s:28:\"Contact &#8211; Plants Store\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/12-Contact-Plants-Store.jpg\";s:12:\"tmpl_created\";i:1638802472;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/contact-plants-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:40:\"[\"Contact\",\"Info\",\"Plant\",\"Testimonial\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:212;a:20:{s:4:\"tmpl\";i:893;s:2:\"id\";i:11822;s:5:\"title\";s:30:\"Full Screen | Menu | Portfolio\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/09/PopUp_small.png\";s:12:\"tmpl_created\";i:1569429896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/full-screen-menu-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:654;s:11:\"trend_index\";i:626;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:213;a:20:{s:4:\"tmpl\";i:1203;s:2:\"id\";i:18591;s:5:\"title\";s:28:\"Coffee Sale &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/04/250x280-7.png\";s:12:\"tmpl_created\";i:1633877319;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/coffee-sale-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:33:\"[\"Coffee\",\"Landing Pages\",\"Sale\"]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:214;a:20:{s:4:\"tmpl\";i:1231;s:2:\"id\";i:21184;s:5:\"title\";s:28:\"Dental Care &#8211; Services\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/14-Services-Dental-Care.jpg\";s:12:\"tmpl_created\";i:1638807148;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dental-care-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:45:\"[\"Dental\",\"Medical\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:215;a:20:{s:4:\"tmpl\";i:1064;s:2:\"id\";i:15580;s:5:\"title\";s:31:\"Fullscreen | Menu | Travel Blog\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/11/PopUp-Menu.jpg\";s:12:\"tmpl_created\";i:1606215358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fullscreen-menu-travel-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:673;s:11:\"trend_index\";i:348;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:216;a:20:{s:4:\"tmpl\";i:1133;s:2:\"id\";i:16645;s:5:\"title\";s:28:\"Headphones &#8211; eCommerce\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/lp_headphones.png\";s:12:\"tmpl_created\";i:1609944115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/commerce-headphones/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:39:\"[\"Ecommerce\",\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:633;s:11:\"trend_index\";i:87;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:217;a:20:{s:4:\"tmpl\";i:1442;s:2:\"id\";i:24584;s:5:\"title\";s:27:\"Wireframe &#8211; Pricing 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Pricing-1.jpg\";s:12:\"tmpl_created\";i:1653989152;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-pricing-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:146:\"[\"Booking\",\"Business\",\"Clients\",\"Contact\",\"Faq\",\"Features\",\"Footer\",\"Online Service\",\"Pricing\",\"Products\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:218;a:20:{s:4:\"tmpl\";i:1138;s:2:\"id\";i:16762;s:5:\"title\";s:25:\"Conference &#8211; Events\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Conference.png\";s:12:\"tmpl_created\";i:1610455119;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/conference-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:60:\"[\"Conference\",\"Convention\",\"Event\",\"Events\",\"Landing Pages\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:705;s:11:\"trend_index\";i:216;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:219;a:20:{s:4:\"tmpl\";i:1438;s:2:\"id\";i:24539;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 2\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-2.jpg\";s:12:\"tmpl_created\";i:1653989019;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:69:\"[\"Business\",\"Contact\",\"Footer\",\"Google Maps\",\"Header\",\"Professional\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:220;a:20:{s:4:\"tmpl\";i:981;s:2:\"id\";i:13281;s:5:\"title\";s:37:\"Hello Bar | Contact | Interior Design\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp.png\";s:12:\"tmpl_created\";i:1586148801;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/hello-bar-contact-interior-design/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:19:\"[\"Interior Design\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:763;s:11:\"trend_index\";i:679;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:221;a:20:{s:4:\"tmpl\";i:1052;s:2:\"id\";i:15259;s:5:\"title\";s:31:\"Hello Bar | Menu | Psychologist\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/09/Menu-PopUp.png\";s:12:\"tmpl_created\";i:1600170209;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/hello-bar-menu-psychologist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:739;s:11:\"trend_index\";i:583;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:222;a:20:{s:4:\"tmpl\";i:1434;s:2:\"id\";i:24494;s:5:\"title\";s:28:\"Wireframe &#8211; Services 1\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-1.jpg\";s:12:\"tmpl_created\";i:1653988874;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/wireframe-services-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:53:\"[\"Business\",\"Faq\",\"Footer\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:223;a:20:{s:4:\"tmpl\";i:1194;s:2:\"id\";i:18701;s:5:\"title\";s:32:\"Digital Course &#8211; eCommerce\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/04/250x280.jpg\";s:12:\"tmpl_created\";i:1618995134;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/digital-course-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:57:\"[\"Course Online\",\"Ecommerce\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:224;a:20:{s:4:\"tmpl\";i:1192;s:2:\"id\";i:18612;s:5:\"title\";s:34:\"Bag Product Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Bag-Product.jpeg\";s:12:\"tmpl_created\";i:1618395406;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/bag-product-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:61:\"[\"Bag\",\"Ecommerce\",\"Landing Pages\",\"Product\",\"Sale\",\"Travel\"]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:875;s:11:\"trend_index\";i:605;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:225;a:20:{s:4:\"tmpl\";i:1227;s:2:\"id\";i:21083;s:5:\"title\";s:26:\"Conference &#8211; Contact\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/10-Contact-Conference.jpg\";s:12:\"tmpl_created\";i:1638799208;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/conference-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:44:\"[\"Conference\",\"Contact\",\"Form\",\"Info\",\"Map\"]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:226;a:20:{s:4:\"tmpl\";i:1193;s:2:\"id\";i:18644;s:5:\"title\";s:37:\"Camera Product Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/camera_sale_featured-img.jpg\";s:12:\"tmpl_created\";i:1618396388;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/lp/camera-product-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:59:\"[\"Camera\",\"Ecommerce\",\"Landing Pages\",\"Photography\",\"Sale\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:873;s:11:\"trend_index\";i:535;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:227;a:20:{s:4:\"tmpl\";i:951;s:2:\"id\";i:12736;s:5:\"title\";s:41:\"Slide In | Contact Us | Magazine and Blog\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/01/PopUp_contact_s.png\";s:12:\"tmpl_created\";i:1579060978;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/slide-in-contact-us/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:734;s:11:\"trend_index\";i:686;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:228;a:20:{s:4:\"tmpl\";i:1222;s:2:\"id\";i:20960;s:5:\"title\";s:26:\"Travel Agency &#8211; Home\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/12/5-Home-Travel-Agency.jpg\";s:12:\"tmpl_created\";i:1638788432;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/travel-agency-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:53:\"[\"Adventures\",\"Experience\",\"Explore\",\"Travel\",\"Trip\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:229;a:20:{s:4:\"tmpl\";i:1196;s:2:\"id\";i:18815;s:5:\"title\";s:25:\"Car Wash &#8211; Business\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Car-Wash.png\";s:12:\"tmpl_created\";i:1621336431;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/car-wash-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:45:\"[\"Business\",\"car\",\"Discount\",\"Landing Pages\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:230;a:20:{s:4:\"tmpl\";i:1242;s:2:\"id\";i:21473;s:5:\"title\";s:40:\"Architecture Photography &#8211; Gallery\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2021/12/20-Gallery-Architecture-Photography.jpg\";s:12:\"tmpl_created\";i:1638822115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/architecture-photography-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:52:\"[\"Architecture\",\"Gallery\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:231;a:20:{s:4:\"tmpl\";i:1015;s:2:\"id\";i:14067;s:5:\"title\";s:37:\"Slide In | Japanese restaurant | Menu\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/06/Menu-Pop-Up-Small.jpg\";s:12:\"tmpl_created\";i:1592290352;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/slide-in-japanese-restaurant-menu/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:650;s:11:\"trend_index\";i:565;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:232;a:20:{s:4:\"tmpl\";i:923;s:2:\"id\";i:12229;s:5:\"title\";s:33:\"Slide In | Law Firm | Information\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/11/popup.png\";s:12:\"tmpl_created\";i:1572847842;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-law-firm-information/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:547;s:11:\"trend_index\";i:413;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:233;a:20:{s:4:\"tmpl\";i:1198;s:2:\"id\";i:18824;s:5:\"title\";s:33:\"Design School &#8211; Coming Soon\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/05/250x280-1.png\";s:12:\"tmpl_created\";i:1621336756;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/design-school-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:49:\"[\"Coming Soon\",\"Design\",\"Landing Pages\",\"School\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:234;a:20:{s:4:\"tmpl\";i:1236;s:2:\"id\";i:21259;s:5:\"title\";s:28:\"3D Designer &#8211; Projects\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/24-Projects-3D-Designer.jpg\";s:12:\"tmpl_created\";i:1638819185;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/3d-designer-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:69:\"[\"3D\",\"Creative Portfolio\",\"Design\",\"Designer\",\"Portfolio\",\"Project\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:235;a:20:{s:4:\"tmpl\";i:1028;s:2:\"id\";i:14827;s:5:\"title\";s:39:\"Slide-In | Contact | Luxury Real Estate\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/07/PopUp.png\";s:12:\"tmpl_created\";i:1595323523;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/slide-in-contact-luxury-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:559;s:11:\"trend_index\";i:284;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:236;a:20:{s:4:\"tmpl\";i:1197;s:2:\"id\";i:18819;s:5:\"title\";s:27:\"Dog Walker &#8211; Business\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Dog-Walker.png\";s:12:\"tmpl_created\";i:1621336601;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/dog-walker-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:41:\"[\"Business\",\"Dog\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:237;a:20:{s:4:\"tmpl\";i:1238;s:2:\"id\";i:21349;s:5:\"title\";s:29:\"Architecture &#8211; Projects\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/23-Projects-Architecture.jpg\";s:12:\"tmpl_created\";i:1638820870;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/architecture-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:70:\"[\"Architecture\",\"Creative\",\"Creative Portfolio\",\"Portfolio\",\"Project\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:238;a:20:{s:4:\"tmpl\";i:1034;s:2:\"id\";i:15075;s:5:\"title\";s:34:\"Slide-In | Menu | Flooring Company\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/08/PopUp-1.png\";s:12:\"tmpl_created\";i:1597739605;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/slide-in-menu-flooring-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:383;s:11:\"trend_index\";i:162;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:239;a:20:{s:4:\"tmpl\";i:1414;s:2:\"id\";i:24079;s:5:\"title\";s:32:\"Fashion Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Fashion-Shop.jpg\";s:12:\"tmpl_created\";i:1650988089;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/fashion-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:88:\"[\"Aesthetic\",\"Business\",\"Coming Soon\",\"Ecommerce\",\"Girly\",\"Lifestyle\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:240;a:20:{s:4:\"tmpl\";i:1195;s:2:\"id\";i:18761;s:5:\"title\";s:33:\"Fashion Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Fashion-Store.png\";s:12:\"tmpl_created\";i:1621336146;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/fashion-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:56:\"[\"Coming Soon\",\"Fashion\",\"Landing Pages\",\"Shop\",\"store\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:241;a:20:{s:4:\"tmpl\";i:1153;s:2:\"id\";i:17060;s:5:\"title\";s:36:\"Private Tutor &#8211; Online Service\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Tutor-2.png\";s:12:\"tmpl_created\";i:1610631042;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/private-tutor-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:64:\"[\"Education\",\"Landing Pages\",\"Online Service\",\"Teacher\",\"Tutor\"]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:780;s:11:\"trend_index\";i:628;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:242;a:20:{s:4:\"tmpl\";i:1430;s:2:\"id\";i:24434;s:5:\"title\";s:25:\"Wireframe &#8211; About 3\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-3.jpg\";s:12:\"tmpl_created\";i:1653988697;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:76:\"[\"About\",\"Business\",\"Contact\",\"Faq\",\"Footer\",\"Header\",\"Professional\",\"Team\"]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:243;a:20:{s:4:\"tmpl\";i:1158;s:2:\"id\";i:17232;s:5:\"title\";s:33:\"Life Coach &#8211; Online Service\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Life-Coach.png\";s:12:\"tmpl_created\";i:1610902793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/life-coach-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:38:\"[\"Coach\",\"Landing Pages\",\"Life Coach\"]\";s:10:\"menu_order\";i:27;s:16:\"popularity_index\";i:787;s:11:\"trend_index\";i:751;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:244;a:20:{s:4:\"tmpl\";i:1436;s:2:\"id\";i:24515;s:5:\"title\";s:28:\"Wireframe &#8211; Services 3\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-3.jpg\";s:12:\"tmpl_created\";i:1653988946;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/wireframe-services-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:66:\"[\"Business\",\"Contact\",\"Footer\",\"Header\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:27;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:245;a:20:{s:4:\"tmpl\";i:875;s:2:\"id\";i:11241;s:5:\"title\";s:36:\"Classic | Digital Agency | Marketing\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/PopUp_small.jpg\";s:12:\"tmpl_created\";i:1564643043;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-digital-agency-marketing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:362;s:11:\"trend_index\";i:315;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:246;a:20:{s:4:\"tmpl\";i:1146;s:2:\"id\";i:16932;s:5:\"title\";s:35:\"Finance Consulting &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/01/Finance-Consulting.png\";s:12:\"tmpl_created\";i:1610532170;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/lp/finance-consulting-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:80:\"[\"Advisor\",\"Business\",\"Consulting\",\"Finance\",\"Investment\",\"Landing Pages\",\"Tax\"]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:790;s:11:\"trend_index\";i:630;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:247;a:20:{s:4:\"tmpl\";i:1429;s:2:\"id\";i:24421;s:5:\"title\";s:25:\"Wireframe &#8211; About 2\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-2.jpg\";s:12:\"tmpl_created\";i:1653988579;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:87:\"[\"About\",\"Business\",\"Contact\",\"Faq\",\"Features\",\"Footer\",\"Header\",\"Professional\",\"Team\"]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:248;a:20:{s:4:\"tmpl\";i:674;s:2:\"id\";i:8505;s:5:\"title\";s:11:\"404 page 01\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/001.jpg\";s:12:\"tmpl_created\";i:1526415501;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-01/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:533;s:11:\"trend_index\";i:222;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:249;a:20:{s:4:\"tmpl\";i:1136;s:2:\"id\";i:16721;s:5:\"title\";s:35:\"Dental &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2021/01/Dental.jpg\";s:12:\"tmpl_created\";i:1610448567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/dental-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:44:\"[\"Dental\",\"Doctor\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:801;s:11:\"trend_index\";i:655;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:250;a:20:{s:4:\"tmpl\";i:1417;s:2:\"id\";i:24116;s:5:\"title\";s:32:\"Tech Company &#8211; Coming Soon\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Tech-Company.jpg\";s:12:\"tmpl_created\";i:1650989265;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/tech-company-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:87:\"[\"Business\",\"Coding\",\"Coming Soon\",\"Computer\",\"Developer\",\"IT\",\"Services\",\"Technology\"]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:251;a:20:{s:4:\"tmpl\";i:675;s:2:\"id\";i:8511;s:5:\"title\";s:11:\"404 page 02\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/002.jpg\";s:12:\"tmpl_created\";i:1526415528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-02/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:347;s:11:\"trend_index\";i:155;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:252;a:20:{s:4:\"tmpl\";i:1161;s:2:\"id\";i:17269;s:5:\"title\";s:34:\"Electronics Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Electronic-Products.png\";s:12:\"tmpl_created\";i:1610903298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/electronics-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:29:\"[\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:30;s:16:\"popularity_index\";i:800;s:11:\"trend_index\";i:556;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:253;a:20:{s:4:\"tmpl\";i:1220;s:2:\"id\";i:20908;s:5:\"title\";s:42:\"Packing &#038; Moving Company &#8211; Home\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/12/3-Home-Packing-Moving-Company.jpg\";s:12:\"tmpl_created\";i:1638786127;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/packing-moving-company-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Movers\",\"Moving\",\"Storge\"]\";s:10:\"menu_order\";i:30;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:254;a:20:{s:4:\"tmpl\";i:1152;s:2:\"id\";i:17032;s:5:\"title\";s:42:\"Donate Computer &#8211; Social Involvement\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Donation-2.png\";s:12:\"tmpl_created\";i:1610630585;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/donate-computer-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:67:\"[\"Computer\",\"Donate\",\"Donation\",\"Kids\",\"Landing Pages\",\"Nonprofit\"]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:718;s:11:\"trend_index\";i:278;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:255;a:20:{s:4:\"tmpl\";i:672;s:2:\"id\";i:8512;s:5:\"title\";s:11:\"404 page 03\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/003.jpg\";s:12:\"tmpl_created\";i:1526415449;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-03/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:450;s:11:\"trend_index\";i:375;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:256;a:20:{s:4:\"tmpl\";i:1245;s:2:\"id\";i:21546;s:5:\"title\";s:28:\"Interior Design &#8211; Home\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/1-Home-Interior-Design-1.jpg\";s:12:\"tmpl_created\";i:1639046269;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/interior-design-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:68:\"[\"Design\",\"Form\",\"Furniture Design\",\"Interior Design\",\"Testimonial\"]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:257;a:20:{s:4:\"tmpl\";i:1135;s:2:\"id\";i:16684;s:5:\"title\";s:34:\"SaaS HR Management &#8211; Product\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2021/01/lp_hr.png\";s:12:\"tmpl_created\";i:1609945486;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/saas-hr-management-product/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:39:\"[\"HR\",\"Landing Pages\",\"Product\",\"SaaS\"]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:708;s:11:\"trend_index\";i:292;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:258;a:20:{s:4:\"tmpl\";i:671;s:2:\"id\";i:8513;s:5:\"title\";s:11:\"404 page 04\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/004.jpg\";s:12:\"tmpl_created\";i:1526415417;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-04/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:420;s:11:\"trend_index\";i:176;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:259;a:20:{s:4:\"tmpl\";i:1249;s:2:\"id\";i:22137;s:5:\"title\";s:31:\"Design Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/10/Design-Blog-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1647177194;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/design-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:47:\"[\"Blog\",\"Coming Soon\",\"Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:260;a:20:{s:4:\"tmpl\";i:1134;s:2:\"id\";i:16660;s:5:\"title\";s:37:\"Medical center &#8211; Online service\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-medical-cosultation-250_280.png\";s:12:\"tmpl_created\";i:1609945122;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/lp/medical-center-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:44:\"[\"Landing Pages\",\"Medical\",\"Online Service\"]\";s:10:\"menu_order\";i:33;s:16:\"popularity_index\";i:750;s:11:\"trend_index\";i:332;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:261;a:20:{s:4:\"tmpl\";i:1226;s:2:\"id\";i:21069;s:5:\"title\";s:21:\"Hotel &#8211; Contact\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/12/9-Contact-Hotel.jpg\";s:12:\"tmpl_created\";i:1638798545;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/hotel-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:36:\"[\"Contact\",\"from\",\"Info\",\"Vacation\"]\";s:10:\"menu_order\";i:33;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:262;a:20:{s:4:\"tmpl\";i:1150;s:2:\"id\";i:17001;s:5:\"title\";s:36:\"Parental Counseling &#8211; Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2021/01/Parenting-Coach-2.png\";s:12:\"tmpl_created\";i:1610534999;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/parental-counseling-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:99:\"[\"Advisor\",\"Business\",\"Coach\",\"Counseling\",\"Landing Pages\",\"Online Service\",\"Parental\",\"Parenting\"]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:817;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:263;a:20:{s:4:\"tmpl\";i:1432;s:2:\"id\";i:24461;s:5:\"title\";s:27:\"Wireframe &#8211; Gallery 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Gallery-1.jpg\";s:12:\"tmpl_created\";i:1653988784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-gallery-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:82:\"[\"Business\",\"Contact\",\"Design\",\"Footer\",\"Gallery\",\"Header\",\"Portfolio\",\"Services\"]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:264;a:20:{s:4:\"tmpl\";i:676;s:2:\"id\";i:8514;s:5:\"title\";s:11:\"404 Page 05\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/005.jpg\";s:12:\"tmpl_created\";i:1526415558;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-05/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:419;s:11:\"trend_index\";i:220;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:265;a:20:{s:4:\"tmpl\";i:1137;s:2:\"id\";i:16742;s:5:\"title\";s:31:\"Online Course &#8211; Education\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Course.png\";s:12:\"tmpl_created\";i:1610454122;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/online-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:55:\"[\"Academy\",\"Course Online\",\"Education\",\"Landing Pages\"]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:777;s:11:\"trend_index\";i:776;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:266;a:20:{s:4:\"tmpl\";i:668;s:2:\"id\";i:8523;s:5:\"title\";s:11:\"404 page 06\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/006.jpg\";s:12:\"tmpl_created\";i:1526415291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-06/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:298;s:11:\"trend_index\";i:268;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:267;a:20:{s:4:\"tmpl\";i:1440;s:2:\"id\";i:24563;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 4\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-4.jpg\";s:12:\"tmpl_created\";i:1653989095;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:84:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Gallery\",\"Header\",\"Professional\",\"Subscribe\"]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:268;a:20:{s:4:\"tmpl\";i:1162;s:2:\"id\";i:17284;s:5:\"title\";s:38:\"Dietitian &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/01/Dietitian.png\";s:12:\"tmpl_created\";i:1610903484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/dietitian-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:39:\"[\"Fitness\",\"Health\",\"landscape design\"]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:814;s:11:\"trend_index\";i:800;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:269;a:20:{s:4:\"tmpl\";i:1439;s:2:\"id\";i:24553;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 3\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-3.jpg\";s:12:\"tmpl_created\";i:1653989057;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:67:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Professional\",\"Testimonial\"]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:270;a:20:{s:4:\"tmpl\";i:1144;s:2:\"id\";i:16897;s:5:\"title\";s:30:\"Personal Chef &#8211; Business\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/Personal-Chef.png\";s:12:\"tmpl_created\";i:1610466247;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/personal-chef-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:53:\"[\"Business\",\"Chef\",\"Food\",\"Landing Pages\",\"Services\"]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:795;s:11:\"trend_index\";i:617;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:271;a:20:{s:4:\"tmpl\";i:1435;s:2:\"id\";i:24504;s:5:\"title\";s:28:\"Wireframe &#8211; Services 2\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-2.jpg\";s:12:\"tmpl_created\";i:1653988910;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/wireframe-services-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:80:\"[\"Business\",\"Contact\",\"Footer\",\"Header\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:272;a:20:{s:4:\"tmpl\";i:669;s:2:\"id\";i:8524;s:5:\"title\";s:11:\"404 page 07\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/007.jpg\";s:12:\"tmpl_created\";i:1526415337;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-07/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:303;s:11:\"trend_index\";i:171;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:273;a:20:{s:4:\"tmpl\";i:1147;s:2:\"id\";i:16946;s:5:\"title\";s:52:\"Online Full-Stack Developer Course &#8211; Education\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Full-Stack-Developer-Course.png\";s:12:\"tmpl_created\";i:1610532778;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/lp/online-full-stack-developer-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:76:\"[\"Academy\",\"Coding\",\"Course Online\",\"Developer\",\"Education\",\"Landing Pages\"]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:805;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:274;a:20:{s:4:\"tmpl\";i:1437;s:2:\"id\";i:24528;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-1.jpg\";s:12:\"tmpl_created\";i:1653988981;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:76:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Google Maps\",\"Header\",\"Professional\"]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:275;a:20:{s:4:\"tmpl\";i:1143;s:2:\"id\";i:16868;s:5:\"title\";s:40:\"Virtual Assistant &#8211; Online Service\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/01/Virtual-Assistant-250x280-1.png\";s:12:\"tmpl_created\";i:1610465656;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/virtual-assistant-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:46:\"[\"Assistant\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:793;s:11:\"trend_index\";i:757;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:276;a:20:{s:4:\"tmpl\";i:673;s:2:\"id\";i:8526;s:5:\"title\";s:11:\"404 page 09\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/009.jpg\";s:12:\"tmpl_created\";i:1526415474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-09/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:477;s:11:\"trend_index\";i:285;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:277;a:20:{s:4:\"tmpl\";i:1228;s:2:\"id\";i:21104;s:5:\"title\";s:26:\"Restaurant &#8211; Contact\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/11-Contact-Restaurant.jpg\";s:12:\"tmpl_created\";i:1638800146;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/restaurant-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:60:\"[\"Contact\",\"Food\",\"Form\",\"Google Maps\",\"Info\",\"Testimonial\"]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:278;a:20:{s:4:\"tmpl\";i:1140;s:2:\"id\";i:16812;s:5:\"title\";s:40:\"Construction Project &#8211; Real Estate\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/01/Construction-Project.png\";s:12:\"tmpl_created\";i:1610463582;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/construction-project-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:59:\"[\"Construction\",\"Landing Pages\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:40;s:16:\"popularity_index\";i:796;s:11:\"trend_index\";i:724;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:279;a:20:{s:4:\"tmpl\";i:1244;s:2:\"id\";i:21393;s:5:\"title\";s:34:\"Interior Designer &#8211; Projects\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2021/12/big-22-Projects-Interior-Designer-New.jpeg\";s:12:\"tmpl_created\";i:1638823945;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/interior-designer-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:93:\"[\"Creative\",\"Creative Portfolio\",\"Design\",\"Designer\",\"Interior Design\",\"Portfolio\",\"Project\"]\";s:10:\"menu_order\";i:40;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:280;a:20:{s:4:\"tmpl\";i:1148;s:2:\"id\";i:16960;s:5:\"title\";s:44:\"Dog &amp; Cat Food Delivery &#8211; Business\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2021/01/Dog-Food.png\";s:12:\"tmpl_created\";i:1610533581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/lp/dog-cat-food-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:71:\"[\"Business\",\"Cat\",\"Delivery\",\"Dog\",\"Food\",\"Landing Pages\",\"Pet\",\"Pets\"]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:782;s:11:\"trend_index\";i:510;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:281;a:20:{s:4:\"tmpl\";i:670;s:2:\"id\";i:8525;s:5:\"title\";s:11:\"404 page 08\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/008.jpg\";s:12:\"tmpl_created\";i:1526415374;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-08/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:510;s:11:\"trend_index\";i:575;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:282;a:20:{s:4:\"tmpl\";i:1251;s:2:\"id\";i:22143;s:5:\"title\";s:33:\"Fashion Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Fashion-Store.png\";s:12:\"tmpl_created\";i:1647177389;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/fashion-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Coming Soon\",\"Fashion\",\"Landing Pages\",\"Shop\",\"store\"]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:283;a:20:{s:4:\"tmpl\";i:1155;s:2:\"id\";i:17095;s:5:\"title\";s:36:\"Mobile Pet Grooming &#8211; Business\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Mobile-Pet-Grooming.png\";s:12:\"tmpl_created\";i:1610632115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/mobile-pet-grooming-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:38:\"[\"Dog\",\"Groom\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:786;s:11:\"trend_index\";i:731;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:284;a:20:{s:4:\"tmpl\";i:1241;s:2:\"id\";i:21451;s:5:\"title\";s:26:\"Exhibition &#8211; Gallery\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/21-Gallery-Exhibition.jpg\";s:12:\"tmpl_created\";i:1638821855;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/exhibition-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:74:\"[\"Art\",\"Creative\",\"Creative Portfolio\",\"Exhibition\",\"Gallery\",\"Portfolio\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:285;a:20:{s:4:\"tmpl\";i:502;s:2:\"id\";i:5438;s:5:\"title\";s:7:\"About 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_4.png\";s:12:\"tmpl_created\";i:1520443512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:147;s:11:\"trend_index\";i:9;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:286;a:20:{s:4:\"tmpl\";i:1159;s:2:\"id\";i:17245;s:5:\"title\";s:34:\"Marketing Course &#8211; Education\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2021/01/PPC.png\";s:12:\"tmpl_created\";i:1610902958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/marketing-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:45:\"[\"Course Online\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:770;s:11:\"trend_index\";i:430;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:287;a:20:{s:4:\"tmpl\";i:1240;s:2:\"id\";i:21430;s:5:\"title\";s:30:\"Travel Blogger &#8211; Gallery\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/12/19-Gallery-Travel-Blogger.jpg\";s:12:\"tmpl_created\";i:1638821592;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/travel-blogger-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:43:\"[\"Gallery\",\"Photography\",\"Slider\",\"Travel\"]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:288;a:20:{s:4:\"tmpl\";i:1149;s:2:\"id\";i:16983;s:5:\"title\";s:41:\"Pilates Instructor &#8211; Online Service\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/01/Pilates-Instructor.png\";s:12:\"tmpl_created\";i:1610534138;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/lp/pilates-instructor-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:70:\"[\"Free Trial\",\"Instructor\",\"Landing Pages\",\"Online Service\",\"Pilates\"]\";s:10:\"menu_order\";i:44;s:16:\"popularity_index\";i:778;s:11:\"trend_index\";i:412;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:289;a:20:{s:4:\"tmpl\";i:1416;s:2:\"id\";i:24104;s:5:\"title\";s:33:\"Ceramics Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Ceramics-Shop.jpg\";s:12:\"tmpl_created\";i:1650988949;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/ceramics-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:115:\"[\"Art\",\"Business\",\"Coming Soon\",\"Creative\",\"Decor\",\"Design\",\"Furniture Design\",\"Interior Design\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:44;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:290;a:20:{s:4:\"tmpl\";i:557;s:2:\"id\";i:6135;s:5:\"title\";s:8:\"About 10\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_2.png\";s:12:\"tmpl_created\";i:1520443663;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:77;s:11:\"trend_index\";i:47;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:291;a:20:{s:4:\"tmpl\";i:1412;s:2:\"id\";i:24033;s:5:\"title\";s:37:\"Dance Studio &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-Dance-Studio.jpg\";s:12:\"tmpl_created\";i:1649881344;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/dance-studio-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:113:\"[\"Academy\",\"Business\",\"Dance Studio\",\"Form\",\"Pilates\",\"School\",\"Sport\",\"Teacher\",\"Training\",\"Under Construction\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:292;a:20:{s:4:\"tmpl\";i:1190;s:2:\"id\";i:18568;s:5:\"title\";s:32:\"Flower Delivery &#8211; Business\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/04/Flower-Delivery.png\";s:12:\"tmpl_created\";i:1617546716;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/flower-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:37:\"[\"Delivery\",\"Flower\",\"Landing Pages\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:874;s:11:\"trend_index\";i:763;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:293;a:20:{s:4:\"tmpl\";i:1145;s:2:\"id\";i:16917;s:5:\"title\";s:22:\"Webinar &#8211; Events\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Webinar-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610466822;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/webinar-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:36:\"[\"Events\",\"Landing Pages\",\"Webinar\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:821;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:294;a:20:{s:4:\"tmpl\";i:1413;s:2:\"id\";i:24049;s:5:\"title\";s:33:\"ECO Shop &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-ECO-Shop.jpg\";s:12:\"tmpl_created\";i:1649882053;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/eco-shop-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:110:\"[\"Aesthetic\",\"Business\",\"Creative\",\"Decor\",\"Health\",\"Help\",\"Lifestyle\",\"Products\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:295;a:20:{s:4:\"tmpl\";i:497;s:2:\"id\";i:5397;s:5:\"title\";s:8:\"About 11\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_1.png\";s:12:\"tmpl_created\";i:1520443503;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:148;s:11:\"trend_index\";i:43;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:296;a:20:{s:4:\"tmpl\";i:1154;s:2:\"id\";i:17079;s:5:\"title\";s:42:\"Calls Volunteer &#8211; Social Involvement\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/01/Calls-Volunteer.png\";s:12:\"tmpl_created\";i:1610631774;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/calls-volunteer-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:68:\"[\"Care\",\"Covid-19\",\"Help\",\"Involvement\",\"Landing Pages\",\"Volunteer\"]\";s:10:\"menu_order\";i:47;s:16:\"popularity_index\";i:854;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:297;a:20:{s:4:\"tmpl\";i:1419;s:2:\"id\";i:24136;s:5:\"title\";s:29:\"Food Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Food-Blog.jpg\";s:12:\"tmpl_created\";i:1650990034;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/food-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:62:\"[\"Blog\",\"Business\",\"Coming Soon\",\"Cooking\",\"Education\",\"Food\"]\";s:10:\"menu_order\";i:47;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:298;a:20:{s:4:\"tmpl\";i:1142;s:2:\"id\";i:16836;s:5:\"title\";s:33:\"Marketing Agency &#8211; Business\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/01/Marketing-Agency-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610464490;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/marketing-agency-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:74:\"[\"Agency\",\"Business\",\"Landing Pages\",\"Marketing\",\"Marketing Landing Page\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:816;s:11:\"trend_index\";i:787;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:299;a:20:{s:4:\"tmpl\";i:1411;s:2:\"id\";i:24020;s:5:\"title\";s:35:\"Mobile App &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-Mobile-App.jpg\";s:12:\"tmpl_created\";i:1649880955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/mobile-app-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:77:\"[\"App\",\"Business\",\"Coding\",\"Computer\",\"Launch\",\"Mobile\",\"Under Construction\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:300;a:20:{s:4:\"tmpl\";i:498;s:2:\"id\";i:5405;s:5:\"title\";s:8:\"About 12\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_1.png\";s:12:\"tmpl_created\";i:1520443505;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:216;s:11:\"trend_index\";i:50;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:301;a:20:{s:4:\"tmpl\";i:1139;s:2:\"id\";i:16785;s:5:\"title\";s:42:\"Gym Promotion &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2021/01/Gym-LP.jpg\";s:12:\"tmpl_created\";i:1610455496;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/gym-promotion-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:42:\"[\"Fitness\",\"Gym\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:49;s:16:\"popularity_index\";i:820;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:302;a:20:{s:4:\"tmpl\";i:1420;s:2:\"id\";i:24152;s:5:\"title\";s:32:\"Perfume Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Perfume-Shop.jpg\";s:12:\"tmpl_created\";i:1650990353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/perfume-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:68:\"[\"Business\",\"Coming Soon\",\"Cosmetics\",\"Lifestyle\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:49;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:303;a:20:{s:4:\"tmpl\";i:1185;s:2:\"id\";i:18492;s:5:\"title\";s:34:\"Bicycle Pre-Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Bike-Landing-Page.png\";s:12:\"tmpl_created\";i:1617535552;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/bicycle-pre-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:34:\"[\"Bicycle\",\"Landing Pages\",\"Sale\"]\";s:10:\"menu_order\";i:50;s:16:\"popularity_index\";i:871;s:11:\"trend_index\";i:826;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:304;a:20:{s:4:\"tmpl\";i:1418;s:2:\"id\";i:24126;s:5:\"title\";s:28:\"Skincare &#8211; Coming Soon\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Skincare.jpg\";s:12:\"tmpl_created\";i:1650989585;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/skincare-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:128:\"[\"Aesthetic\",\"Beauty\",\"Beauty Salon\",\"Business\",\"Coming Soon\",\"Cosmetics\",\"Girly\",\"Lifestyle\",\"Services\",\"Skincare\",\"Treatment\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:305;a:20:{s:4:\"tmpl\";i:1181;s:2:\"id\";i:18349;s:5:\"title\";s:39:\"Virtual try-on glasses &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-8.png\";s:12:\"tmpl_created\";i:1614772569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/lp/virtual-try-on-glasses-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:64:\"[\"Fashion\",\"Glasses\",\"Landing Pages\",\"Online Service\",\"Virtual\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:848;s:11:\"trend_index\";i:803;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:306;a:20:{s:4:\"tmpl\";i:500;s:2:\"id\";i:5421;s:5:\"title\";s:8:\"About 13\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_3.png\";s:12:\"tmpl_created\";i:1520443509;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:215;s:11:\"trend_index\";i:77;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:307;a:20:{s:4:\"tmpl\";i:513;s:2:\"id\";i:5533;s:5:\"title\";s:8:\"About 15\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_10.png\";s:12:\"tmpl_created\";i:1520443534;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:21;s:11:\"trend_index\";i:57;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:308;a:20:{s:4:\"tmpl\";i:1410;s:2:\"id\";i:24004;s:5:\"title\";s:33:\"Skincare &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-Skincare.jpg\";s:12:\"tmpl_created\";i:1649880534;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/skincare-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:144:\"[\"Aesthetic\",\"Beauty\",\"Beauty Salon\",\"Business\",\"Cosmetics\",\"Girly\",\"Lifestyle\",\"Makeup\",\"Services\",\"Skincare\",\"Treatment\",\"Under Construction\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:309;a:20:{s:4:\"tmpl\";i:1172;s:2:\"id\";i:17458;s:5:\"title\";s:31:\"Moving Company &#8211; Business\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Moving-Company.png\";s:12:\"tmpl_created\";i:1612727025;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/moving-company-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:46:\"[\"Business\",\"Landing Pages\",\"Movers\",\"Moving\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:826;s:11:\"trend_index\";i:767;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:310;a:20:{s:4:\"tmpl\";i:1415;s:2:\"id\";i:24092;s:5:\"title\";s:29:\"Vase Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Vase-Shop.jpg\";s:12:\"tmpl_created\";i:1650988613;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/vase-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:115:\"[\"Art\",\"Business\",\"Coming Soon\",\"Creative\",\"Decor\",\"Design\",\"Furniture Design\",\"Interior Design\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:53;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:311;a:20:{s:4:\"tmpl\";i:1186;s:2:\"id\";i:18517;s:5:\"title\";s:29:\"Food Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Food-Blog.png\";s:12:\"tmpl_created\";i:1617539897;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/food-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:45:\"[\"Blog\",\"Coming Soon\",\"Food\",\"Landing Pages\"]\";s:10:\"menu_order\";i:53;s:16:\"popularity_index\";i:844;s:11:\"trend_index\";i:672;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:312;a:20:{s:4:\"tmpl\";i:1167;s:2:\"id\";i:17379;s:5:\"title\";s:33:\"IT Service &#8211; Online Service\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-IT-Service.png\";s:12:\"tmpl_created\";i:1612713022;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/it-service-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:41:\"[\"IT\",\"Landing Pages\",\"Remote\",\"Support\"]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:806;s:11:\"trend_index\";i:634;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:313;a:20:{s:4:\"tmpl\";i:1248;s:2:\"id\";i:22134;s:5:\"title\";s:32:\"Art Magazine &#8211; Coming Soon\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Art-Magazine-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1647176713;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/art-magazine-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:48:\"[\"Art\",\"Coming Soon\",\"Landing Pages\",\"Magazine\"]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:314;a:20:{s:4:\"tmpl\";i:512;s:2:\"id\";i:5525;s:5:\"title\";s:8:\"About 14\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_10.png\";s:12:\"tmpl_created\";i:1520443532;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:9;s:11:\"trend_index\";i:29;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:315;a:20:{s:4:\"tmpl\";i:1189;s:2:\"id\";i:18560;s:5:\"title\";s:52:\"Finance Learning Platform &#8211; Under Construction\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Finance-Platform.png\";s:12:\"tmpl_created\";i:1617542761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/lp/finance-learning-platform-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:27:\"[\"Finance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:843;s:11:\"trend_index\";i:561;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:316;a:20:{s:4:\"tmpl\";i:1225;s:2:\"id\";i:21041;s:5:\"title\";s:41:\"Business Consulting Company &#8211; About\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2021/12/8-About-Business-Consulting-Company.jpg\";s:12:\"tmpl_created\";i:1638797560;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/business-consulting-company-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"Coach\",\"Collaboration\",\"Consulting\",\"Life Coach\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:317;a:20:{s:4:\"tmpl\";i:1187;s:2:\"id\";i:18528;s:5:\"title\";s:36:\"Home Decor Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Home-Decore.png\";s:12:\"tmpl_created\";i:1617541784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/home-decor-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:57:\"[\"Coming Soon\",\"Decor\",\"Interior Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:872;s:11:\"trend_index\";i:819;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:318;a:20:{s:4:\"tmpl\";i:1243;s:2:\"id\";i:21135;s:5:\"title\";s:28:\"Construction &#8211; Service\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/13-Service-Construction.jpg\";s:12:\"tmpl_created\";i:1638823202;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/construction-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:48:\"[\"Architecture\",\"Construction\",\"Faq\",\"Services\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:319;a:20:{s:4:\"tmpl\";i:501;s:2:\"id\";i:5429;s:5:\"title\";s:8:\"About 16\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_4.png\";s:12:\"tmpl_created\";i:1520443510;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:59;s:11:\"trend_index\";i:8;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:320;a:20:{s:4:\"tmpl\";i:1174;s:2:\"id\";i:17504;s:5:\"title\";s:29:\"Hair Stylist &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-3.png\";s:12:\"tmpl_created\";i:1612883014;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/hair-stylist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:59:\"[\"Business\",\"Hair\",\"hairdresser\",\"Landing Pages\",\"Stylist\"]\";s:10:\"menu_order\";i:57;s:16:\"popularity_index\";i:840;s:11:\"trend_index\";i:806;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:321;a:20:{s:4:\"tmpl\";i:1223;s:2:\"id\";i:20981;s:5:\"title\";s:37:\"Creative Digital Agency &#8211; About\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2021/12/6-About-Creative-Digital-Agency.jpg\";s:12:\"tmpl_created\";i:1638789303;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/creative-digital-agency-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"About\",\"Advisor\",\"Creative\",\"Creative Portfolio\"]\";s:10:\"menu_order\";i:57;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:322;a:20:{s:4:\"tmpl\";i:1184;s:2:\"id\";i:18449;s:5:\"title\";s:45:\"Aesthetic Clinic &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2021/03/Aesthetic-Clinic.png\";s:12:\"tmpl_created\";i:1616682181;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/lp/aesthetic-clinic-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:57:\"[\"Aesthetic\",\"Beauty\",\"Fitness\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:859;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:323;a:20:{s:4:\"tmpl\";i:1221;s:2:\"id\";i:20926;s:5:\"title\";s:33:\"Doctors Online Consultation -Home\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/12/4-Home-Doctors-Online-Consultation.jpg\";s:12:\"tmpl_created\";i:1638787371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/doctors-online-consultation-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:35:\"[\"App\",\"Health\",\"Medical\",\"Online\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:324;a:20:{s:4:\"tmpl\";i:505;s:2:\"id\";i:5464;s:5:\"title\";s:8:\"About 17\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_6.png\";s:12:\"tmpl_created\";i:1520443518;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:220;s:11:\"trend_index\";i:142;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:325;a:20:{s:4:\"tmpl\";i:1165;s:2:\"id\";i:17353;s:5:\"title\";s:44:\"Online Cooking Course &#8211; Online Service\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-2.png\";s:12:\"tmpl_created\";i:1612705144;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/lp/online-cooking-course-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:50:\"[\"Cooking\",\"Course Online\",\"Food\",\"Landing Pages\"]\";s:10:\"menu_order\";i:59;s:16:\"popularity_index\";i:845;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:326;a:20:{s:4:\"tmpl\";i:1188;s:2:\"id\";i:18550;s:5:\"title\";s:39:\"Online Store &#8211; Under Construction\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Online-Store.png\";s:12:\"tmpl_created\";i:1617542506;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/lp/online-store-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:59:\"[\"Landing Pages\",\"Online Shop\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:832;s:11:\"trend_index\";i:600;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:327;a:20:{s:4:\"tmpl\";i:1250;s:2:\"id\";i:22140;s:5:\"title\";s:33:\"Design School &#8211; Coming Soon\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/05/250x280-1.png\";s:12:\"tmpl_created\";i:1647177317;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/design-school-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:49:\"[\"Coming Soon\",\"Design\",\"Landing Pages\",\"School\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:328;a:20:{s:4:\"tmpl\";i:510;s:2:\"id\";i:5504;s:5:\"title\";s:8:\"About 18\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_9.png\";s:12:\"tmpl_created\";i:1520443528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:104;s:11:\"trend_index\";i:46;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:329;a:20:{s:4:\"tmpl\";i:1191;s:2:\"id\";i:18539;s:5:\"title\";s:40:\"Travel Agency &#8211; Under Construction\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Travel-Agency-1.png\";s:12:\"tmpl_created\";i:1617610273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/travel-agency-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:56:\"[\"Agency\",\"Landing Pages\",\"Travel\",\"Under Construction\"]\";s:10:\"menu_order\";i:61;s:16:\"popularity_index\";i:876;s:11:\"trend_index\";i:652;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:330;a:20:{s:4:\"tmpl\";i:1175;s:2:\"id\";i:18270;s:5:\"title\";s:24:\"Open week &#8211; Events\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280.png\";s:12:\"tmpl_created\";i:1614767186;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/open-week-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:59:\"[\"Education\",\"Event\",\"Events\",\"Landing Pages\",\"University\"]\";s:10:\"menu_order\";i:62;s:16:\"popularity_index\";i:831;s:11:\"trend_index\";i:673;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:331;a:20:{s:4:\"tmpl\";i:1177;s:2:\"id\";i:18300;s:5:\"title\";s:30:\"Makeup Artist &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-2.png\";s:12:\"tmpl_created\";i:1614768608;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/makeup-artist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:79:\"[\"Beauty\",\"Business\",\"Course Online\",\"Landing Pages\",\"Makeup\",\"Online Service\"]\";s:10:\"menu_order\";i:63;s:16:\"popularity_index\";i:861;s:11:\"trend_index\";i:783;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:332;a:20:{s:4:\"tmpl\";i:511;s:2:\"id\";i:5515;s:5:\"title\";s:8:\"About 19\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_9.png\";s:12:\"tmpl_created\";i:1520443530;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:63;s:16:\"popularity_index\";i:268;s:11:\"trend_index\";i:161;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:333;a:20:{s:4:\"tmpl\";i:1179;s:2:\"id\";i:18329;s:5:\"title\";s:63:\"Online Real Estate Investment Conference &#8211; Online Service\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-5.png\";s:12:\"tmpl_created\";i:1614770404;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:157:\"https://library.elementor.com/lp/online-real-estate-investment-conference-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:76:\"[\"Conference\",\"Event\",\"Events\",\"Landing Pages\",\"Online Event\",\"Real estate\"]\";s:10:\"menu_order\";i:64;s:16:\"popularity_index\";i:866;s:11:\"trend_index\";i:779;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:334;a:20:{s:4:\"tmpl\";i:506;s:2:\"id\";i:5472;s:5:\"title\";s:7:\"About 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_7.png\";s:12:\"tmpl_created\";i:1520443520;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:64;s:16:\"popularity_index\";i:210;s:11:\"trend_index\";i:116;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:335;a:20:{s:4:\"tmpl\";i:1183;s:2:\"id\";i:18391;s:5:\"title\";s:45:\"Children&#8217;s Optometrist &#8211; Business\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Childrens-Optometrist.png\";s:12:\"tmpl_created\";i:1614773564;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/lp/childrens-optometrist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:85:\"[\"Business\",\"Children\",\"Eye\",\"Glasses\",\"Health\",\"Kids\",\"Landing Pages\",\"Optometrist\"]\";s:10:\"menu_order\";i:65;s:16:\"popularity_index\";i:877;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:336;a:20:{s:4:\"tmpl\";i:1182;s:2:\"id\";i:18366;s:5:\"title\";s:30:\"Car Insurance &#8211; Business\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Car-Insurance.png\";s:12:\"tmpl_created\";i:1614773263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/car-insurance-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:46:\"[\"Business\",\"car\",\"Insurance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:869;s:11:\"trend_index\";i:797;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:337;a:20:{s:4:\"tmpl\";i:1201;s:2:\"id\";i:19144;s:5:\"title\";s:25:\"Birthday Party Invitation\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/06/250x280.png\";s:12:\"tmpl_created\";i:1623848691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/birthday-party-invitation/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:67:\"[\"Birthday\",\"Event\",\"Landing Pages\",\"Party\",\"RSVD\",\"Save the Date\"]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:338;a:20:{s:4:\"tmpl\";i:1124;s:2:\"id\";i:16473;s:5:\"title\";s:26:\"Beauty Salon &#8211; About\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/12/about-1.jpg\";s:12:\"tmpl_created\";i:1608622373;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/beauty-salon-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:615;s:11:\"trend_index\";i:184;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:339;a:20:{s:4:\"tmpl\";i:1176;s:2:\"id\";i:18291;s:5:\"title\";s:47:\"Grill Restaurant Food Delivery &#8211; Business\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Food-Delivery-LP.png\";s:12:\"tmpl_created\";i:1614767830;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/lp/grill-restaurant-food-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:79:\"[\"Delivery\",\"Delivery Service\",\"Fast Food\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:819;s:11:\"trend_index\";i:685;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:340;a:20:{s:4:\"tmpl\";i:504;s:2:\"id\";i:5455;s:5:\"title\";s:8:\"About 20\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_6.png\";s:12:\"tmpl_created\";i:1520443516;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:134;s:11:\"trend_index\";i:70;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:341;a:20:{s:4:\"tmpl\";i:1125;s:2:\"id\";i:16488;s:5:\"title\";s:28:\"Beauty Salon &#8211; Contact\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/12/contact.jpg\";s:12:\"tmpl_created\";i:1608622374;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/beauty-salon-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:548;s:11:\"trend_index\";i:101;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:342;a:20:{s:4:\"tmpl\";i:1180;s:2:\"id\";i:18340;s:5:\"title\";s:30:\"Restaurant &#8211; Coming Soon\";s:9:\"thumbnail\";s:98:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Restuarant-Coming-Soon-LP.png\";s:12:\"tmpl_created\";i:1614772183;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/restaurant-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:51:\"[\"Coming Soon\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:810;s:11:\"trend_index\";i:809;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:343;a:20:{s:4:\"tmpl\";i:499;s:2:\"id\";i:5413;s:5:\"title\";s:8:\"About 21\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_2.png\";s:12:\"tmpl_created\";i:1520443507;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:83;s:11:\"trend_index\";i:52;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:344;a:20:{s:4:\"tmpl\";i:1126;s:2:\"id\";i:16496;s:5:\"title\";s:28:\"Beauty Salon &#8211; Gallery\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/12/gallery-1.jpg\";s:12:\"tmpl_created\";i:1608622379;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/beauty-salon-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:491;s:11:\"trend_index\";i:90;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:345;a:20:{s:4:\"tmpl\";i:1173;s:2:\"id\";i:17480;s:5:\"title\";s:42:\"At-home Massage Therapist &#8211; Business\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/02/At-Home-Massage-Therapist.jpg\";s:12:\"tmpl_created\";i:1612879264;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/at-home-massage-therapist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:60:\"[\"Business\",\"Health\",\"Landing Pages\",\"Services\",\"Therapist\"]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:856;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:346;a:20:{s:4:\"tmpl\";i:1127;s:2:\"id\";i:16457;s:5:\"title\";s:25:\"Beauty Salon &#8211; Home\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/home-1.jpg\";s:12:\"tmpl_created\";i:1608622383;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/beauty-salon-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:70;s:16:\"popularity_index\";i:408;s:11:\"trend_index\";i:56;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:347;a:20:{s:4:\"tmpl\";i:1178;s:2:\"id\";i:18317;s:5:\"title\";s:26:\"Insurance &#8211; Business\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Life-Insirance.png\";s:12:\"tmpl_created\";i:1614769488;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/lp/insurance-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:61:\"[\"Business\",\"Family\",\"Financial\",\"Insurance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:70;s:16:\"popularity_index\";i:870;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:348;a:20:{s:4:\"tmpl\";i:1128;s:2:\"id\";i:16518;s:5:\"title\";s:29:\"Beauty Salon &#8211; Services\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/12/services-1.jpg\";s:12:\"tmpl_created\";i:1608622386;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/beauty-salon-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:664;s:11:\"trend_index\";i:261;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:349;a:20:{s:4:\"tmpl\";i:1168;s:2:\"id\";i:17401;s:5:\"title\";s:40:\"Conference Thank You Page &#8211; Events\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280.png\";s:12:\"tmpl_created\";i:1612724753;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/conference-thank-you-page-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:59:\"[\"Conference\",\"Event\",\"Events\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:799;s:11:\"trend_index\";i:540;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:350;a:20:{s:4:\"tmpl\";i:503;s:2:\"id\";i:5447;s:5:\"title\";s:7:\"About 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_5.png\";s:12:\"tmpl_created\";i:1520443514;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:48;s:11:\"trend_index\";i:12;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:351;a:20:{s:4:\"tmpl\";i:1073;s:2:\"id\";i:15486;s:5:\"title\";s:25:\"Travel Blog &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/11/About.jpg\";s:12:\"tmpl_created\";i:1606215720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/travel-blog-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:608;s:11:\"trend_index\";i:343;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:352;a:20:{s:4:\"tmpl\";i:1166;s:2:\"id\";i:17368;s:5:\"title\";s:38:\"Real Estate Agency &#8211; Real-Estate\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Real-Estate.png\";s:12:\"tmpl_created\";i:1612711814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/lp/real-estate-agency-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:73:\"[\"Landing Pages\",\"listing\",\"Real estate\",\"Realestate\",\"realtor\",\"realty\"]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:858;s:11:\"trend_index\";i:777;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:353;a:20:{s:4:\"tmpl\";i:1074;s:2:\"id\";i:15478;s:5:\"title\";s:27:\"Travel Blog &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/11/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1606215735;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/travel-blog-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:687;s:11:\"trend_index\";i:564;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:354;a:20:{s:4:\"tmpl\";i:1170;s:2:\"id\";i:17423;s:5:\"title\";s:57:\"Volunteer Calls Thank You Page &#8211; Social Involvement\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/02/Volunteer-Calls-TYP.jpg\";s:12:\"tmpl_created\";i:1612726058;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:151:\"https://library.elementor.com/lp/volunteer-calls-thank-you-page-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:62:\"[\"Care\",\"Involvement\",\"Landing Pages\",\"Thank You\",\"Volunteer\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:857;s:11:\"trend_index\";i:818;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:355;a:20:{s:4:\"tmpl\";i:507;s:2:\"id\";i:5480;s:5:\"title\";s:7:\"About 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_7-1.png\";s:12:\"tmpl_created\";i:1520443522;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-4-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:428;s:11:\"trend_index\";i:303;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:356;a:20:{s:4:\"tmpl\";i:1075;s:2:\"id\";i:15467;s:5:\"title\";s:24:\"Travel Blog &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/11/Home.jpg\";s:12:\"tmpl_created\";i:1606215756;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/travel-blog-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:74;s:16:\"popularity_index\";i:567;s:11:\"trend_index\";i:224;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:357;a:20:{s:4:\"tmpl\";i:1169;s:2:\"id\";i:17409;s:5:\"title\";s:37:\"Webinar Thank You Page &#8211; Events\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Webinar-TYP.png\";s:12:\"tmpl_created\";i:1612725644;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/lp/webinar-thank-you-page-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:56:\"[\"Event\",\"Events\",\"Landing Pages\",\"Thank You\",\"Webinar\"]\";s:10:\"menu_order\";i:74;s:16:\"popularity_index\";i:868;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:358;a:20:{s:4:\"tmpl\";i:1056;s:2:\"id\";i:15317;s:5:\"title\";s:25:\"Dance Studio &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/10/Home.jpg\";s:12:\"tmpl_created\";i:1603181291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/dance-studio-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:596;s:11:\"trend_index\";i:301;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:359;a:20:{s:4:\"tmpl\";i:545;s:2:\"id\";i:6027;s:5:\"title\";s:7:\"About 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_1-1.png\";s:12:\"tmpl_created\";i:1520443639;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-5-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:40;s:11:\"trend_index\";i:40;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:360;a:20:{s:4:\"tmpl\";i:1160;s:2:\"id\";i:17258;s:5:\"title\";s:32:\"Beauty Product &#8211; eCommerce\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2021/01/Beauty-Product.png\";s:12:\"tmpl_created\";i:1610903153;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/beauty-product-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:38:\"[\"Beauty\",\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:797;s:11:\"trend_index\";i:703;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:361;a:20:{s:4:\"tmpl\";i:1057;s:2:\"id\";i:15334;s:5:\"title\";s:26:\"Dance Studio &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/10/About.jpg\";s:12:\"tmpl_created\";i:1603181364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/dance-studio-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:626;s:11:\"trend_index\";i:373;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:362;a:20:{s:4:\"tmpl\";i:546;s:2:\"id\";i:6036;s:5:\"title\";s:7:\"About 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_1-1.png\";s:12:\"tmpl_created\";i:1520443641;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-6-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:90;s:11:\"trend_index\";i:123;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:363;a:20:{s:4:\"tmpl\";i:1171;s:2:\"id\";i:17435;s:5:\"title\";s:39:\"Gym &#8211; App Service &#8211; Product\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-4.png\";s:12:\"tmpl_created\";i:1612726462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/gym-app-service-product/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:58:\"[\"App\",\"Fitness\",\"Gym\",\"Health\",\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:767;s:11:\"trend_index\";i:577;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:364;a:20:{s:4:\"tmpl\";i:1058;s:2:\"id\";i:15349;s:5:\"title\";s:28:\"Dance Studio &#8211; Classes\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/10/Classes.jpg\";s:12:\"tmpl_created\";i:1603181425;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dance-studio-classes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:77;s:16:\"popularity_index\";i:629;s:11:\"trend_index\";i:458;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:365;a:20:{s:4:\"tmpl\";i:1156;s:2:\"id\";i:17111;s:5:\"title\";s:33:\"Sunglasses Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/01/Sunglasses-LP-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610632408;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/sunglasses-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:59:\"[\"Ecommerce\",\"Fashion\",\"Landing Pages\",\"Sale\",\"Sunglasses\"]\";s:10:\"menu_order\";i:77;s:16:\"popularity_index\";i:812;s:11:\"trend_index\";i:732;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:366;a:20:{s:4:\"tmpl\";i:1055;s:2:\"id\";i:15366;s:5:\"title\";s:29:\"Dance Studio &#8211; Schedule\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/10/Classes-Schedule.jpg\";s:12:\"tmpl_created\";i:1603181056;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/dance-studio-schedule/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:698;s:11:\"trend_index\";i:602;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:367;a:20:{s:4:\"tmpl\";i:1157;s:2:\"id\";i:17223;s:5:\"title\";s:25:\"Fashion &#8211; eCommerce\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2021/01/Commerce-Fashion.png\";s:12:\"tmpl_created\";i:1610902553;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/fashion-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:29:\"[\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:808;s:11:\"trend_index\";i:745;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:368;a:20:{s:4:\"tmpl\";i:1059;s:2:\"id\";i:15373;s:5:\"title\";s:28:\"Dance Studio &#8211; Pricing\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/10/Pricing.jpg\";s:12:\"tmpl_created\";i:1603181678;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dance-studio-pricing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:731;s:11:\"trend_index\";i:661;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:369;a:20:{s:4:\"tmpl\";i:1151;s:2:\"id\";i:17017;s:5:\"title\";s:28:\"Shoes Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/01/Shoes-LP-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610535361;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/shoes-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:55:\"[\"Discount\",\"Ecommerce\",\"Landing Pages\",\"Sale\",\"Shoes\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:803;s:11:\"trend_index\";i:642;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:370;a:20:{s:4:\"tmpl\";i:508;s:2:\"id\";i:5488;s:5:\"title\";s:7:\"About 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_8.png\";s:12:\"tmpl_created\";i:1520443524;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:307;s:11:\"trend_index\";i:169;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:371;a:20:{s:4:\"tmpl\";i:1060;s:2:\"id\";i:15384;s:5:\"title\";s:28:\"Dance Studio &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/10/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1603181738;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dance-studio-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:741;s:11:\"trend_index\";i:721;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:372;a:20:{s:4:\"tmpl\";i:556;s:2:\"id\";i:6122;s:5:\"title\";s:7:\"About 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_2-1.png\";s:12:\"tmpl_created\";i:1520443661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:38;s:11:\"trend_index\";i:26;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:373;a:20:{s:4:\"tmpl\";i:1163;s:2:\"id\";i:17301;s:5:\"title\";s:53:\"Personal Chef &#8211; Thank You Page &#8211; Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2021/01/TYP-Personal-Chef.jpg\";s:12:\"tmpl_created\";i:1610903622;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/lp/personal-chef-thank-you-page-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:43:\"[\"Chef\",\"Food\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:823;s:11:\"trend_index\";i:754;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:374;a:20:{s:4:\"tmpl\";i:1042;s:2:\"id\";i:15158;s:5:\"title\";s:26:\"Psychologist &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/09/About.jpg\";s:12:\"tmpl_created\";i:1600157561;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/psychologist-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:81;s:16:\"popularity_index\";i:618;s:11:\"trend_index\";i:426;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:375;a:20:{s:4:\"tmpl\";i:1164;s:2:\"id\";i:17313;s:5:\"title\";s:60:\"Development Course  &#8211; Thank You Page &#8211; Education\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/01/Dev-Course-TYP-.png\";s:12:\"tmpl_created\";i:1610903776;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/lp/development-course-thank-you-page-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:57:\"[\"Course Online\",\"Education\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:81;s:16:\"popularity_index\";i:834;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:376;a:20:{s:4:\"tmpl\";i:1045;s:2:\"id\";i:15197;s:5:\"title\";s:28:\"Psychologist &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/09/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1600160499;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/psychologist-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:82;s:16:\"popularity_index\";i:666;s:11:\"trend_index\";i:558;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:377;a:20:{s:4:\"tmpl\";i:509;s:2:\"id\";i:5496;s:5:\"title\";s:7:\"About 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_8-1.png\";s:12:\"tmpl_created\";i:1520443526;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:82;s:16:\"popularity_index\";i:523;s:11:\"trend_index\";i:453;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:378;a:20:{s:4:\"tmpl\";i:1041;s:2:\"id\";i:15142;s:5:\"title\";s:25:\"Psychologist &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/09/Home.jpg\";s:12:\"tmpl_created\";i:1600156308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/psychologist-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:83;s:16:\"popularity_index\";i:464;s:11:\"trend_index\";i:297;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:379;a:20:{s:4:\"tmpl\";i:1044;s:2:\"id\";i:15188;s:5:\"title\";s:28:\"Psychologist &#8211; Pricing\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/09/Pricing.jpg\";s:12:\"tmpl_created\";i:1600159731;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/psychologist-pricing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:84;s:16:\"popularity_index\";i:732;s:11:\"trend_index\";i:537;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:380;a:20:{s:4:\"tmpl\";i:684;s:2:\"id\";i:8961;s:5:\"title\";s:9:\"archive 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.1.jpg\";s:12:\"tmpl_created\";i:1528639909;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:84;s:16:\"popularity_index\";i:79;s:11:\"trend_index\";i:15;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:381;a:20:{s:4:\"tmpl\";i:1043;s:2:\"id\";i:15167;s:5:\"title\";s:29:\"Psychologist &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/09/Services.jpg\";s:12:\"tmpl_created\";i:1600158206;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/psychologist-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:85;s:16:\"popularity_index\";i:606;s:11:\"trend_index\";i:379;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:382;a:20:{s:4:\"tmpl\";i:1036;s:2:\"id\";i:14932;s:5:\"title\";s:30:\"Flooring Company &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/08/About.png\";s:12:\"tmpl_created\";i:1597740110;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/flooring-company-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:86;s:16:\"popularity_index\";i:488;s:11:\"trend_index\";i:319;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:383;a:20:{s:4:\"tmpl\";i:685;s:2:\"id\";i:8969;s:5:\"title\";s:9:\"archive 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.2.jpg\";s:12:\"tmpl_created\";i:1528700014;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:86;s:16:\"popularity_index\";i:250;s:11:\"trend_index\";i:124;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:384;a:20:{s:4:\"tmpl\";i:1037;s:2:\"id\";i:14998;s:5:\"title\";s:32:\"Flooring Company &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/08/Contact-Us.png\";s:12:\"tmpl_created\";i:1597740222;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/flooring-company-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:87;s:16:\"popularity_index\";i:553;s:11:\"trend_index\";i:380;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:385;a:20:{s:4:\"tmpl\";i:1038;s:2:\"id\";i:14965;s:5:\"title\";s:32:\"Flooring Company &#8211; Gallery\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/08/Gallery.png\";s:12:\"tmpl_created\";i:1597740353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/flooring-company-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:88;s:16:\"popularity_index\";i:371;s:11:\"trend_index\";i:291;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:386;a:20:{s:4:\"tmpl\";i:686;s:2:\"id\";i:8973;s:5:\"title\";s:9:\"archive 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.3.jpg\";s:12:\"tmpl_created\";i:1528700205;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:88;s:16:\"popularity_index\";i:176;s:11:\"trend_index\";i:54;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:387;a:20:{s:4:\"tmpl\";i:1282;s:2:\"id\";i:22417;s:5:\"title\";s:52:\"Finance Learning Platform &#8211; Under Construction\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Finance-Platform.png\";s:12:\"tmpl_created\";i:1647354987;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/finance-learning-platform-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Finance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:89;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:388;a:20:{s:4:\"tmpl\";i:1040;s:2:\"id\";i:14947;s:5:\"title\";s:33:\"Flooring company &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/08/Services.png\";s:12:\"tmpl_created\";i:1597740551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/flooring-company-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:90;s:16:\"popularity_index\";i:538;s:11:\"trend_index\";i:392;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:389;a:20:{s:4:\"tmpl\";i:1039;s:2:\"id\";i:14901;s:5:\"title\";s:29:\"Flooring Company &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/08/Home.png\";s:12:\"tmpl_created\";i:1597740474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/flooring-company-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:91;s:16:\"popularity_index\";i:387;s:11:\"trend_index\";i:185;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:390;a:20:{s:4:\"tmpl\";i:687;s:2:\"id\";i:8977;s:5:\"title\";s:9:\"archive 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.4.jpg\";s:12:\"tmpl_created\";i:1528700326;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:91;s:16:\"popularity_index\";i:354;s:11:\"trend_index\";i:396;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:391;a:20:{s:4:\"tmpl\";i:1252;s:2:\"id\";i:22146;s:5:\"title\";s:36:\"Home Decor Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Home-Decore.png\";s:12:\"tmpl_created\";i:1647177514;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/home-decor-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:57:\"[\"Coming Soon\",\"Decor\",\"Interior Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:92;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:392;a:20:{s:4:\"tmpl\";i:688;s:2:\"id\";i:8981;s:5:\"title\";s:9:\"archive 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.5.jpg\";s:12:\"tmpl_created\";i:1528700484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:93;s:16:\"popularity_index\";i:333;s:11:\"trend_index\";i:195;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:393;a:20:{s:4:\"tmpl\";i:1021;s:2:\"id\";i:14737;s:5:\"title\";s:32:\"Luxury Real Estate &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/07/About.png\";s:12:\"tmpl_created\";i:1595313527;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/luxury-real-estate-about-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:93;s:16:\"popularity_index\";i:150;s:11:\"trend_index\";i:447;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:394;a:20:{s:4:\"tmpl\";i:689;s:2:\"id\";i:8985;s:5:\"title\";s:9:\"archive 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.6.jpg\";s:12:\"tmpl_created\";i:1528700612;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:94;s:16:\"popularity_index\";i:204;s:11:\"trend_index\";i:95;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:395;a:20:{s:4:\"tmpl\";i:1020;s:2:\"id\";i:14756;s:5:\"title\";s:34:\"Luxury Real Estate &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/07/Contact-Us.png\";s:12:\"tmpl_created\";i:1595313519;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/luxury-real-estate-contact-us-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:94;s:16:\"popularity_index\";i:610;s:11:\"trend_index\";i:569;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:396;a:20:{s:4:\"tmpl\";i:1019;s:2:\"id\";i:14716;s:5:\"title\";s:31:\"Luxury Real Estate &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/07/Home.png\";s:12:\"tmpl_created\";i:1595313512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/luxury-real-estate-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:95;s:16:\"popularity_index\";i:394;s:11:\"trend_index\";i:165;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:397;a:20:{s:4:\"tmpl\";i:690;s:2:\"id\";i:8989;s:5:\"title\";s:9:\"archive 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.7.jpg\";s:12:\"tmpl_created\";i:1528701063;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:96;s:16:\"popularity_index\";i:208;s:11:\"trend_index\";i:111;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:398;a:20:{s:4:\"tmpl\";i:1018;s:2:\"id\";i:14763;s:5:\"title\";s:31:\"Luxury Real Estate &#8211; News\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/07/news-Archive.png\";s:12:\"tmpl_created\";i:1595313273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/luxury-real-estate-news-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:96;s:16:\"popularity_index\";i:404;s:11:\"trend_index\";i:167;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:399;a:20:{s:4:\"tmpl\";i:1283;s:2:\"id\";i:22423;s:5:\"title\";s:39:\"Online Store &#8211; Under Construction\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Online-Store.png\";s:12:\"tmpl_created\";i:1647355154;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/online-store-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:59:\"[\"Landing Pages\",\"Online Shop\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:97;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:400;a:20:{s:4:\"tmpl\";i:691;s:2:\"id\";i:8996;s:5:\"title\";s:9:\"archive 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.8.jpg\";s:12:\"tmpl_created\";i:1528701290;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:98;s:16:\"popularity_index\";i:227;s:11:\"trend_index\";i:153;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:401;a:20:{s:4:\"tmpl\";i:1010;s:2:\"id\";i:13960;s:5:\"title\";s:32:\"Japanese restaurant &#8211; Home\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/06/Home-Page.jpg\";s:12:\"tmpl_created\";i:1592289775;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/japanese-restaurant-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:98;s:16:\"popularity_index\";i:537;s:11:\"trend_index\";i:287;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:402;a:20:{s:4:\"tmpl\";i:1284;s:2:\"id\";i:22428;s:5:\"title\";s:40:\"Travel Agency &#8211; Under Construction\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Travel-Agency-1.png\";s:12:\"tmpl_created\";i:1647355339;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/travel-agency-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Agency\",\"Landing Pages\",\"Travel\",\"Under Construction\"]\";s:10:\"menu_order\";i:99;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:403;a:20:{s:4:\"tmpl\";i:692;s:2:\"id\";i:9001;s:5:\"title\";s:9:\"archive 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.9.jpg\";s:12:\"tmpl_created\";i:1528701433;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:100;s:16:\"popularity_index\";i:265;s:11:\"trend_index\";i:208;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:404;a:20:{s:4:\"tmpl\";i:1007;s:2:\"id\";i:13993;s:5:\"title\";s:45:\"Japanese restaurant &#8211; Chef&#8217;s Menu\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/06/Chef_s-Menu-Page.jpg\";s:12:\"tmpl_created\";i:1592289691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/japanese-restaurant-chefs-menu/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:100;s:16:\"popularity_index\";i:651;s:11:\"trend_index\";i:675;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:405;a:20:{s:4:\"tmpl\";i:1006;s:2:\"id\";i:14012;s:5:\"title\";s:36:\"Japanese restaurant &#8211; Bar Menu\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/06/Bar-Menu-Page.jpg\";s:12:\"tmpl_created\";i:1592289665;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/japanese-restaurant-bar-menu/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:101;s:16:\"popularity_index\";i:735;s:11:\"trend_index\";i:829;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:406;a:20:{s:4:\"tmpl\";i:1005;s:2:\"id\";i:13917;s:5:\"title\";s:33:\"Japanese restaurant &#8211; About\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/06/About-Page.jpg\";s:12:\"tmpl_created\";i:1592289629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/japanese-restaurant-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:102;s:16:\"popularity_index\";i:640;s:11:\"trend_index\";i:389;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:407;a:20:{s:4:\"tmpl\";i:997;s:2:\"id\";i:13528;s:5:\"title\";s:22:\"Barbershop &#8211; 404\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/05/404-Page.jpg\";s:12:\"tmpl_created\";i:1589893152;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/barbershop-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:34:\"[\"404\",\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:103;s:16:\"popularity_index\";i:768;s:11:\"trend_index\";i:681;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:408;a:20:{s:4:\"tmpl\";i:1009;s:2:\"id\";i:13937;s:5:\"title\";s:35:\"Japanese restaurant &#8211; Gallery\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/Gallery-Page.jpg\";s:12:\"tmpl_created\";i:1592289748;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/japanese-restaurant-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:103;s:16:\"popularity_index\";i:648;s:11:\"trend_index\";i:551;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:409;a:20:{s:4:\"tmpl\";i:1008;s:2:\"id\";i:14030;s:5:\"title\";s:34:\"Japanese restaurant &#8211; Events\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/06/Events-Page.jpg\";s:12:\"tmpl_created\";i:1592289713;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/japanese-restaurant-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:104;s:16:\"popularity_index\";i:723;s:11:\"trend_index\";i:711;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:410;a:20:{s:4:\"tmpl\";i:998;s:2:\"id\";i:13518;s:5:\"title\";s:26:\"Barbershop &#8211; Archive\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/05/Blog-Page.jpg\";s:12:\"tmpl_created\";i:1589893157;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/barbershop-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:105;s:16:\"popularity_index\";i:737;s:11:\"trend_index\";i:523;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:411;a:20:{s:4:\"tmpl\";i:1016;s:2:\"id\";i:13984;s:5:\"title\";s:40:\"Japanese restaurant &#8211; Reservations\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/reservations.jpg\";s:12:\"tmpl_created\";i:1592294757;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/japanese-restaurant-reservations/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:105;s:16:\"popularity_index\";i:715;s:11:\"trend_index\";i:727;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:412;a:20:{s:4:\"tmpl\";i:999;s:2:\"id\";i:13479;s:5:\"title\";s:23:\"Barbershop &#8211; Home\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/05/Home-Page.jpg\";s:12:\"tmpl_created\";i:1589893275;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/barbershop-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:106;s:16:\"popularity_index\";i:683;s:11:\"trend_index\";i:832;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:413;a:20:{s:4:\"tmpl\";i:996;s:2:\"id\";i:13604;s:5:\"title\";s:25:\"Barbershop &#8211; Footer\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/05/Footer-Small.jpg\";s:12:\"tmpl_created\";i:1589893147;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/barbershop-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:37:\"[\"Barber Shop\",\"Barbershop\",\"Footer\"]\";s:10:\"menu_order\";i:107;s:16:\"popularity_index\";i:555;s:11:\"trend_index\";i:267;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:414;a:20:{s:4:\"tmpl\";i:1000;s:2:\"id\";i:13503;s:5:\"title\";s:24:\"Barbershop &#8211; About\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/05/About-Page.jpg\";s:12:\"tmpl_created\";i:1589893289;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/barbershop-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:107;s:16:\"popularity_index\";i:744;s:11:\"trend_index\";i:739;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:415;a:20:{s:4:\"tmpl\";i:995;s:2:\"id\";i:13612;s:5:\"title\";s:25:\"Barbershop &#8211; Header\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/06/barber-shop-header.jpg\";s:12:\"tmpl_created\";i:1589893142;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/barbershop-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:37:\"[\"Barber Shop\",\"Barbershop\",\"Header\"]\";s:10:\"menu_order\";i:108;s:16:\"popularity_index\";i:343;s:11:\"trend_index\";i:137;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:416;a:20:{s:4:\"tmpl\";i:1001;s:2:\"id\";i:13548;s:5:\"title\";s:27:\"Barbershop &#8211; Services\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/05/Services-Page.jpg\";s:12:\"tmpl_created\";i:1589893298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/barbershop-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:108;s:16:\"popularity_index\";i:761;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:417;a:20:{s:4:\"tmpl\";i:1002;s:2:\"id\";i:13560;s:5:\"title\";s:26:\"Barbershop &#8211; Gallery\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/05/Gallery-Page.jpg\";s:12:\"tmpl_created\";i:1589893307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/barbershop-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:109;s:16:\"popularity_index\";i:756;s:11:\"trend_index\";i:822;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:418;a:20:{s:4:\"tmpl\";i:1003;s:2:\"id\";i:13587;s:5:\"title\";s:26:\"Barbershop &#8211; Contact\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/05/Contact-Us-Page.jpg\";s:12:\"tmpl_created\";i:1589893315;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/barbershop-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:110;s:16:\"popularity_index\";i:753;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:419;a:20:{s:4:\"tmpl\";i:982;s:2:\"id\";i:13307;s:5:\"title\";s:26:\"Online Course &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Home.jpg\";s:12:\"tmpl_created\";i:1587474541;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/online-course-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:111;s:16:\"popularity_index\";i:230;s:11:\"trend_index\";i:125;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:420;a:20:{s:4:\"tmpl\";i:994;s:2:\"id\";i:13621;s:5:\"title\";s:30:\"Barbershop &#8211; Single Post\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/05/Single-Page.jpg\";s:12:\"tmpl_created\";i:1589893137;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/barbershop-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:111;s:16:\"popularity_index\";i:736;s:11:\"trend_index\";i:580;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:421;a:20:{s:4:\"tmpl\";i:1131;s:2:\"id\";i:16527;s:5:\"title\";s:24:\"Beauty Salon &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/12/404.jpg\";s:12:\"tmpl_created\";i:1608622517;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/beauty-salon-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:29:\"[\"404\",\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:112;s:16:\"popularity_index\";i:742;s:11:\"trend_index\";i:563;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:422;a:20:{s:4:\"tmpl\";i:983;s:2:\"id\";i:13328;s:5:\"title\";s:27:\"Online Course &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/About.jpg\";s:12:\"tmpl_created\";i:1587474558;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/online-course-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:112;s:16:\"popularity_index\";i:508;s:11:\"trend_index\";i:429;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:423;a:20:{s:4:\"tmpl\";i:984;s:2:\"id\";i:13338;s:5:\"title\";s:33:\"Online Course &#8211; Course Page\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Course-Page.png\";s:12:\"tmpl_created\";i:1587474574;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/online-course-course-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:113;s:16:\"popularity_index\";i:337;s:11:\"trend_index\";i:310;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:424;a:20:{s:4:\"tmpl\";i:985;s:2:\"id\";i:13352;s:5:\"title\";s:29:\"Online Course &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1587474591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/online-course-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:114;s:16:\"popularity_index\";i:565;s:11:\"trend_index\";i:533;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:425;a:20:{s:4:\"tmpl\";i:1130;s:2:\"id\";i:16535;s:5:\"title\";s:27:\"Beauty Salon &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/Footer.jpg\";s:12:\"tmpl_created\";i:1608622498;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/beauty-salon-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:32:\"[\"Beauty Salon\",\"Footer\",\"Hair\"]\";s:10:\"menu_order\";i:115;s:16:\"popularity_index\";i:524;s:11:\"trend_index\";i:126;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:426;a:20:{s:4:\"tmpl\";i:971;s:2:\"id\";i:13187;s:5:\"title\";s:33:\"Interior Design &#8211; Home Page\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Home.png\";s:12:\"tmpl_created\";i:1586148661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/interior-design-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:115;s:16:\"popularity_index\";i:331;s:11:\"trend_index\";i:264;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:427;a:20:{s:4:\"tmpl\";i:1453;s:2:\"id\";i:16346;s:5:\"title\";s:33:\"Your New Home &#8211; Real Estate\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2017/03/lp3-l.png\";s:12:\"tmpl_created\";i:1660205402;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/your-new-home-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:31:\"[\"Landing Pages\",\"Real estate\"]\";s:10:\"menu_order\";i:116;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:428;a:20:{s:4:\"tmpl\";i:972;s:2:\"id\";i:13199;s:5:\"title\";s:29:\"Interior Design &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/About.png\";s:12:\"tmpl_created\";i:1586148666;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/interior-design-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:116;s:16:\"popularity_index\";i:316;s:11:\"trend_index\";i:334;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:429;a:20:{s:4:\"tmpl\";i:1129;s:2:\"id\";i:16545;s:5:\"title\";s:27:\"Beauty Salon &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/Header.jpg\";s:12:\"tmpl_created\";i:1608622495;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/beauty-salon-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:32:\"[\"Beauty Salon\",\"Hair\",\"Header\"]\";s:10:\"menu_order\";i:117;s:16:\"popularity_index\";i:356;s:11:\"trend_index\";i:49;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:430;a:20:{s:4:\"tmpl\";i:973;s:2:\"id\";i:13214;s:5:\"title\";s:32:\"Interior Design &#8211; Projects\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/portfolio_s.jpg\";s:12:\"tmpl_created\";i:1586148672;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/interior-design-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:117;s:16:\"popularity_index\";i:367;s:11:\"trend_index\";i:323;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:431;a:20:{s:4:\"tmpl\";i:641;s:2:\"id\";i:7686;s:5:\"title\";s:12:\"Blog Posts 1\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2018/03/blog_posts.png\";s:12:\"tmpl_created\";i:1521558047;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/blog-posts-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:26:\"[\"Archive\",\"Blog\",\"posts\"]\";s:10:\"menu_order\";i:118;s:16:\"popularity_index\";i:131;s:11:\"trend_index\";i:152;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:432;a:20:{s:4:\"tmpl\";i:974;s:2:\"id\";i:13229;s:5:\"title\";s:31:\"Interior Design &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/Contact-Us.png\";s:12:\"tmpl_created\";i:1586148677;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/interior-design-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:118;s:16:\"popularity_index\";i:395;s:11:\"trend_index\";i:337;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:433;a:20:{s:4:\"tmpl\";i:959;s:2:\"id\";i:12948;s:5:\"title\";s:29:\"Photography &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Home_s.png\";s:12:\"tmpl_created\";i:1582093442;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/photography-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:119;s:16:\"popularity_index\";i:241;s:11:\"trend_index\";i:201;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:434;a:20:{s:4:\"tmpl\";i:960;s:2:\"id\";i:12798;s:5:\"title\";s:25:\"Photography &#8211; About\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/About_s.png\";s:12:\"tmpl_created\";i:1582093446;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/photography-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:120;s:16:\"popularity_index\";i:499;s:11:\"trend_index\";i:374;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:435;a:20:{s:4:\"tmpl\";i:484;s:2:\"id\";i:5283;s:5:\"title\";s:9:\"Clients 1\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_2.png\";s:12:\"tmpl_created\";i:1520443478;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/clients-1-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:120;s:16:\"popularity_index\";i:294;s:11:\"trend_index\";i:202;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:436;a:20:{s:4:\"tmpl\";i:961;s:2:\"id\";i:12868;s:5:\"title\";s:27:\"Photography &#8211; Contact\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Contact_s.png\";s:12:\"tmpl_created\";i:1582093450;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/photography-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:121;s:16:\"popularity_index\";i:531;s:11:\"trend_index\";i:350;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:437;a:20:{s:4:\"tmpl\";i:962;s:2:\"id\";i:13056;s:5:\"title\";s:28:\"Photography &#8211; Wildlife\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/02/Wildlife_s.png\";s:12:\"tmpl_created\";i:1582093454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/photography-wildlife/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:122;s:16:\"popularity_index\";i:579;s:11:\"trend_index\";i:656;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:438;a:20:{s:4:\"tmpl\";i:487;s:2:\"id\";i:5306;s:5:\"title\";s:10:\"Clients 10\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_3.png\";s:12:\"tmpl_created\";i:1520443484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:122;s:16:\"popularity_index\";i:657;s:11:\"trend_index\";i:581;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:439;a:20:{s:4:\"tmpl\";i:963;s:2:\"id\";i:12922;s:5:\"title\";s:37:\"Photography &#8211; Glowing Jellyfish\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/02/Jellyfish_S.png\";s:12:\"tmpl_created\";i:1582093457;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/photography-glowing-jellyfish/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:123;s:16:\"popularity_index\";i:628;s:11:\"trend_index\";i:532;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:440;a:20:{s:4:\"tmpl\";i:964;s:2:\"id\";i:12875;s:5:\"title\";s:36:\"Photography &#8211; Fluttering Birds\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/Birds_s.png\";s:12:\"tmpl_created\";i:1582093461;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/photography-fluttering-birds/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:124;s:16:\"popularity_index\";i:693;s:11:\"trend_index\";i:766;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:441;a:20:{s:4:\"tmpl\";i:965;s:2:\"id\";i:12962;s:5:\"title\";s:26:\"Photography &#8211; Nature\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Nature_s.png\";s:12:\"tmpl_created\";i:1582093465;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/photography-nature/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:125;s:16:\"popularity_index\";i:592;s:11:\"trend_index\";i:778;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:442;a:20:{s:4:\"tmpl\";i:491;s:2:\"id\";i:5341;s:5:\"title\";s:10:\"Clients 11\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_4.png\";s:12:\"tmpl_created\";i:1520443491;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:125;s:16:\"popularity_index\";i:603;s:11:\"trend_index\";i:633;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:443;a:20:{s:4:\"tmpl\";i:966;s:2:\"id\";i:12833;s:5:\"title\";s:38:\"Photography &#8211; Blossoming Flowers\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Flowers_s.png\";s:12:\"tmpl_created\";i:1582093469;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/photography-blossoming-flowers/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:126;s:16:\"popularity_index\";i:597;s:11:\"trend_index\";i:750;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:444;a:20:{s:4:\"tmpl\";i:488;s:2:\"id\";i:5315;s:5:\"title\";s:10:\"Clients 12\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_4-1.png\";s:12:\"tmpl_created\";i:1520443486;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:126;s:16:\"popularity_index\";i:485;s:11:\"trend_index\";i:263;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:445;a:20:{s:4:\"tmpl\";i:967;s:2:\"id\";i:12898;s:5:\"title\";s:36:\"Photography &#8211; Forest Mushrooms\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/02/Mushrooms_s.png\";s:12:\"tmpl_created\";i:1582093473;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/photography-forest-mushrooms/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:127;s:16:\"popularity_index\";i:667;s:11:\"trend_index\";i:649;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:446;a:20:{s:4:\"tmpl\";i:968;s:2:\"id\";i:12994;s:5:\"title\";s:24:\"Photography &#8211; Pets\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Pets_s.png\";s:12:\"tmpl_created\";i:1582093477;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/photography-pets/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:128;s:16:\"popularity_index\";i:612;s:11:\"trend_index\";i:508;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:447;a:20:{s:4:\"tmpl\";i:969;s:2:\"id\";i:12805;s:5:\"title\";s:37:\"Photography &#8211; B&amp;W Portraits\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/Black_s.png\";s:12:\"tmpl_created\";i:1582093481;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/photography-bw-portraits/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:129;s:16:\"popularity_index\";i:695;s:11:\"trend_index\";i:735;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:448;a:20:{s:4:\"tmpl\";i:490;s:2:\"id\";i:5333;s:5:\"title\";s:10:\"Clients 13\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_6.png\";s:12:\"tmpl_created\";i:1520443489;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:129;s:16:\"popularity_index\";i:234;s:11:\"trend_index\";i:128;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:449;a:20:{s:4:\"tmpl\";i:970;s:2:\"id\";i:13031;s:5:\"title\";s:33:\"Photography &#8211; Vivid Parrots\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Parrots_s.png\";s:12:\"tmpl_created\";i:1582093484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/photography-vivid-parrots/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:130;s:16:\"popularity_index\";i:660;s:11:\"trend_index\";i:643;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:450;a:20:{s:4:\"tmpl\";i:496;s:2:\"id\";i:5389;s:5:\"title\";s:10:\"Clients 14\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_9.png\";s:12:\"tmpl_created\";i:1520443501;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:130;s:16:\"popularity_index\";i:407;s:11:\"trend_index\";i:307;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:451;a:20:{s:4:\"tmpl\";i:940;s:2:\"id\";i:12621;s:5:\"title\";s:26:\"Magazine &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/01/Home_s.png\";s:12:\"tmpl_created\";i:1579060604;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/magazine-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:131;s:16:\"popularity_index\";i:167;s:11:\"trend_index\";i:121;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:452;a:20:{s:4:\"tmpl\";i:936;s:2:\"id\";i:12352;s:5:\"title\";s:24:\"Travel &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/12/Home_s.png\";s:12:\"tmpl_created\";i:1575960464;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/travel-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:132;s:16:\"popularity_index\";i:291;s:11:\"trend_index\";i:194;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:453;a:20:{s:4:\"tmpl\";i:486;s:2:\"id\";i:5298;s:5:\"title\";s:10:\"Clients 15\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_3.png\";s:12:\"tmpl_created\";i:1520443482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:132;s:16:\"popularity_index\";i:465;s:11:\"trend_index\";i:520;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:454;a:20:{s:4:\"tmpl\";i:932;s:2:\"id\";i:12400;s:5:\"title\";s:20:\"Travel &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/12/About.png\";s:12:\"tmpl_created\";i:1575960441;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/travel-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:133;s:16:\"popularity_index\";i:444;s:11:\"trend_index\";i:445;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:455;a:20:{s:4:\"tmpl\";i:938;s:2:\"id\";i:12479;s:5:\"title\";s:20:\"Travel &#8211; Tours\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/Tours_s.png\";s:12:\"tmpl_created\";i:1575960474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/travel-tours/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:134;s:16:\"popularity_index\";i:539;s:11:\"trend_index\";i:726;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:456;a:20:{s:4:\"tmpl\";i:495;s:2:\"id\";i:5381;s:5:\"title\";s:10:\"Clients 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_9.png\";s:12:\"tmpl_created\";i:1520443499;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:134;s:16:\"popularity_index\";i:198;s:11:\"trend_index\";i:168;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:457;a:20:{s:4:\"tmpl\";i:937;s:2:\"id\";i:12466;s:5:\"title\";s:27:\"Travel &#8211; Testimonials\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/12/Testimonials.png\";s:12:\"tmpl_created\";i:1575960469;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/travel-testimonials/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:135;s:16:\"popularity_index\";i:527;s:11:\"trend_index\";i:481;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:458;a:20:{s:4:\"tmpl\";i:935;s:2:\"id\";i:12443;s:5:\"title\";s:22:\"Travel &#8211; Gallery\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/Gallery.png\";s:12:\"tmpl_created\";i:1575960459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/travel-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:136;s:16:\"popularity_index\";i:467;s:11:\"trend_index\";i:501;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:459;a:20:{s:4:\"tmpl\";i:934;s:2:\"id\";i:12431;s:5:\"title\";s:18:\"Travel &#8211; FAQ\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/12/FAQ.png\";s:12:\"tmpl_created\";i:1575960453;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/travel-faq/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:137;s:16:\"popularity_index\";i:501;s:11:\"trend_index\";i:387;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:460;a:20:{s:4:\"tmpl\";i:493;s:2:\"id\";i:5357;s:5:\"title\";s:9:\"Clients 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_7.png\";s:12:\"tmpl_created\";i:1520443495;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/clients-2-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:137;s:16:\"popularity_index\";i:341;s:11:\"trend_index\";i:232;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:461;a:20:{s:4:\"tmpl\";i:933;s:2:\"id\";i:12421;s:5:\"title\";s:27:\"Travel &#8211; Contact Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/12/Contsct-Us.png\";s:12:\"tmpl_created\";i:1575960445;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/travel-contact-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:138;s:16:\"popularity_index\";i:571;s:11:\"trend_index\";i:536;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:462;a:20:{s:4:\"tmpl\";i:892;s:2:\"id\";i:11763;s:5:\"title\";s:27:\"Portfolio &#8211; Home Page\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Homepage_small.png\";s:12:\"tmpl_created\";i:1569428959;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/portfolio-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:139;s:16:\"popularity_index\";i:280;s:11:\"trend_index\";i:241;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:463;a:20:{s:4:\"tmpl\";i:485;s:2:\"id\";i:5290;s:5:\"title\";s:9:\"Clients 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_2.png\";s:12:\"tmpl_created\";i:1520443480;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/clients-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:139;s:16:\"popularity_index\";i:545;s:11:\"trend_index\";i:502;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:464;a:20:{s:4:\"tmpl\";i:891;s:2:\"id\";i:11781;s:5:\"title\";s:23:\"Portfolio &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/09/About_small.png\";s:12:\"tmpl_created\";i:1569428955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/portfolio-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:140;s:16:\"popularity_index\";i:349;s:11:\"trend_index\";i:290;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:465;a:20:{s:4:\"tmpl\";i:482;s:2:\"id\";i:5266;s:5:\"title\";s:9:\"Clients 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_1.png\";s:12:\"tmpl_created\";i:1520443474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:140;s:16:\"popularity_index\";i:95;s:11:\"trend_index\";i:134;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:466;a:20:{s:4:\"tmpl\";i:890;s:2:\"id\";i:11793;s:5:\"title\";s:26:\"Portfolio &#8211; Projects\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Projects_small.png\";s:12:\"tmpl_created\";i:1569428951;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/portfolio-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:141;s:16:\"popularity_index\";i:448;s:11:\"trend_index\";i:467;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:467;a:20:{s:4:\"tmpl\";i:889;s:2:\"id\";i:11800;s:5:\"title\";s:25:\"Portfolio &#8211; Contact\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/09/Contact_small.png\";s:12:\"tmpl_created\";i:1569428946;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/portfolio-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:142;s:16:\"popularity_index\";i:494;s:11:\"trend_index\";i:449;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:468;a:20:{s:4:\"tmpl\";i:866;s:2:\"id\";i:11163;s:5:\"title\";s:32:\"Digital Agency &#8211; Home Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/07/Home_small.png\";s:12:\"tmpl_created\";i:1564641877;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/digital-agency-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:143;s:16:\"popularity_index\";i:57;s:11:\"trend_index\";i:32;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:469;a:20:{s:4:\"tmpl\";i:483;s:2:\"id\";i:5275;s:5:\"title\";s:9:\"Clients 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_1.png\";s:12:\"tmpl_created\";i:1520443476;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:143;s:16:\"popularity_index\";i:334;s:11:\"trend_index\";i:321;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:470;a:20:{s:4:\"tmpl\";i:492;s:2:\"id\";i:5349;s:5:\"title\";s:9:\"Clients 7\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_7.png\";s:12:\"tmpl_created\";i:1520443493;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:144;s:16:\"popularity_index\";i:233;s:11:\"trend_index\";i:92;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:471;a:20:{s:4:\"tmpl\";i:916;s:2:\"id\";i:12143;s:5:\"title\";s:22:\"Law Firm &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/11/about.png\";s:12:\"tmpl_created\";i:1572847069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/law-firm-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:146;s:16:\"popularity_index\";i:350;s:11:\"trend_index\";i:344;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:472;a:20:{s:4:\"tmpl\";i:489;s:2:\"id\";i:5324;s:5:\"title\";s:9:\"Clients 8\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_5-1.png\";s:12:\"tmpl_created\";i:1520443488;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:146;s:16:\"popularity_index\";i:526;s:11:\"trend_index\";i:381;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:473;a:20:{s:4:\"tmpl\";i:920;s:2:\"id\";i:12091;s:5:\"title\";s:21:\"Law Firm &#8211; Team\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2019/11/team.png\";s:12:\"tmpl_created\";i:1572847113;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/law-firm-team/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:147;s:16:\"popularity_index\";i:318;s:11:\"trend_index\";i:314;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:474;a:20:{s:4:\"tmpl\";i:869;s:2:\"id\";i:11129;s:5:\"title\";s:28:\"Digital Agency &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/About_small.png\";s:12:\"tmpl_created\";i:1564641889;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/digital-agency-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:148;s:16:\"popularity_index\";i:182;s:11:\"trend_index\";i:166;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:475;a:20:{s:4:\"tmpl\";i:880;s:2:\"id\";i:11572;s:5:\"title\";s:19:\"Gym &#8211; Trainer\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Trainer_Small.png\";s:12:\"tmpl_created\";i:1567392934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-trainer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:149;s:16:\"popularity_index\";i:521;s:11:\"trend_index\";i:590;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:476;a:20:{s:4:\"tmpl\";i:494;s:2:\"id\";i:5368;s:5:\"title\";s:9:\"Clients 9\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_8.png\";s:12:\"tmpl_created\";i:1520443497;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:149;s:16:\"popularity_index\";i:253;s:11:\"trend_index\";i:273;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:477;a:20:{s:4:\"tmpl\";i:917;s:2:\"id\";i:12133;s:5:\"title\";s:24:\"Law Firm &#8211; Careers\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/11/careers.png\";s:12:\"tmpl_created\";i:1572847078;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-careers/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:151;s:16:\"popularity_index\";i:583;s:11:\"trend_index\";i:640;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:478;a:20:{s:4:\"tmpl\";i:425;s:2:\"id\";i:4436;s:5:\"title\";s:11:\"Contact  16\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_black_2.png\";s:12:\"tmpl_created\";i:1520443293;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:151;s:16:\"popularity_index\";i:161;s:11:\"trend_index\";i:68;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:479;a:20:{s:4:\"tmpl\";i:915;s:2:\"id\";i:12155;s:5:\"title\";s:26:\"Law Firm &#8211; Home Page\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2019/11/home.png\";s:12:\"tmpl_created\";i:1572847054;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/law-firm-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:152;s:16:\"popularity_index\";i:193;s:11:\"trend_index\";i:110;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:480;a:20:{s:4:\"tmpl\";i:423;s:2:\"id\";i:4420;s:5:\"title\";s:9:\"Contact 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_black_1.png\";s:12:\"tmpl_created\";i:1520443289;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/contact-1-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:152;s:16:\"popularity_index\";i:196;s:11:\"trend_index\";i:127;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:481;a:20:{s:4:\"tmpl\";i:921;s:2:\"id\";i:12080;s:5:\"title\";s:24:\"Law Firm &#8211; Partner\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/11/partner-1.png\";s:12:\"tmpl_created\";i:1572847120;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-partner/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:153;s:16:\"popularity_index\";i:556;s:11:\"trend_index\";i:471;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:482;a:20:{s:4:\"tmpl\";i:534;s:2:\"id\";i:5836;s:5:\"title\";s:10:\"Contact 10\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_white_2.png\";s:12:\"tmpl_created\";i:1520443597;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:154;s:16:\"popularity_index\";i:114;s:11:\"trend_index\";i:76;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:483;a:20:{s:4:\"tmpl\";i:865;s:2:\"id\";i:11074;s:5:\"title\";s:31:\"Digital Agency &#8211; Services\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/07/Services_small.png\";s:12:\"tmpl_created\";i:1564641872;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/digital-agency-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:154;s:16:\"popularity_index\";i:163;s:11:\"trend_index\";i:170;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:484;a:20:{s:4:\"tmpl\";i:879;s:2:\"id\";i:11506;s:5:\"title\";s:19:\"Gym &#8211; Classes\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Classes_Small.png\";s:12:\"tmpl_created\";i:1567392930;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-classes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:155;s:16:\"popularity_index\";i:514;s:11:\"trend_index\";i:554;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:485;a:20:{s:4:\"tmpl\";i:535;s:2:\"id\";i:5844;s:5:\"title\";s:10:\"Contact 11\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_black_2.png\";s:12:\"tmpl_created\";i:1520443599;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:156;s:16:\"popularity_index\";i:289;s:11:\"trend_index\";i:313;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:486;a:20:{s:4:\"tmpl\";i:922;s:2:\"id\";i:12044;s:5:\"title\";s:24:\"Law Firm &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/11/contsct_us.png\";s:12:\"tmpl_created\";i:1572847130;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:157;s:16:\"popularity_index\";i:437;s:11:\"trend_index\";i:304;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:487;a:20:{s:4:\"tmpl\";i:430;s:2:\"id\";i:4476;s:5:\"title\";s:10:\"Contact 15\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_4.png\";s:12:\"tmpl_created\";i:1520443303;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:157;s:16:\"popularity_index\";i:229;s:11:\"trend_index\";i:187;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:488;a:20:{s:4:\"tmpl\";i:918;s:2:\"id\";i:12124;s:5:\"title\";s:25:\"Law Firm &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/11/services.png\";s:12:\"tmpl_created\";i:1572847096;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/law-firm-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:158;s:16:\"popularity_index\";i:433;s:11:\"trend_index\";i:296;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:489;a:20:{s:4:\"tmpl\";i:864;s:2:\"id\";i:11056;s:5:\"title\";s:35:\"Digital Agency &#8211; Social Media\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/07/Social-Media_small.png\";s:12:\"tmpl_created\";i:1564641867;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/digital-agency-social-media/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:159;s:16:\"popularity_index\";i:297;s:11:\"trend_index\";i:361;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:490;a:20:{s:4:\"tmpl\";i:476;s:2:\"id\";i:5214;s:5:\"title\";s:10:\"Contact 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_2.png\";s:12:\"tmpl_created\";i:1520443462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/contact-16-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:159;s:16:\"popularity_index\";i:194;s:11:\"trend_index\";i:106;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:491;a:20:{s:4:\"tmpl\";i:878;s:2:\"id\";i:11536;s:5:\"title\";s:19:\"Gym &#8211; Fitness\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Fitness_Small.png\";s:12:\"tmpl_created\";i:1567392927;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:160;s:16:\"popularity_index\";i:621;s:11:\"trend_index\";i:674;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:492;a:20:{s:4:\"tmpl\";i:882;s:2:\"id\";i:11545;s:5:\"title\";s:21:\"Gym &#8211; Home Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/08/Home_Small.png\";s:12:\"tmpl_created\";i:1567392943;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/gym-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:161;s:16:\"popularity_index\";i:310;s:11:\"trend_index\";i:229;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:493;a:20:{s:4:\"tmpl\";i:919;s:2:\"id\";i:12116;s:5:\"title\";s:24:\"Law Firm &#8211; Service\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/11/family_law.png\";s:12:\"tmpl_created\";i:1572847105;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:162;s:16:\"popularity_index\";i:489;s:11:\"trend_index\";i:339;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:494;a:20:{s:4:\"tmpl\";i:478;s:2:\"id\";i:5230;s:5:\"title\";s:10:\"Contact 17\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_3.png\";s:12:\"tmpl_created\";i:1520443466;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:162;s:16:\"popularity_index\";i:339;s:11:\"trend_index\";i:335;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:495;a:20:{s:4:\"tmpl\";i:868;s:2:\"id\";i:11094;s:5:\"title\";s:30:\"Digital Agency &#8211; Clients\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/07/Clients_small.png\";s:12:\"tmpl_created\";i:1564641885;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/digital-agency-clients/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:163;s:16:\"popularity_index\";i:424;s:11:\"trend_index\";i:424;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:496;a:20:{s:4:\"tmpl\";i:481;s:2:\"id\";i:5257;s:5:\"title\";s:10:\"Contact 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_5.png\";s:12:\"tmpl_created\";i:1520443472;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:163;s:16:\"popularity_index\";i:438;s:11:\"trend_index\";i:490;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:497;a:20:{s:4:\"tmpl\";i:881;s:2:\"id\";i:11478;s:5:\"title\";s:17:\"Gym &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/08/About_Small.png\";s:12:\"tmpl_created\";i:1567392939;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/gym-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:164;s:16:\"popularity_index\";i:481;s:11:\"trend_index\";i:579;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:498;a:20:{s:4:\"tmpl\";i:532;s:2:\"id\";i:5820;s:5:\"title\";s:9:\"Contact 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_white_1.png\";s:12:\"tmpl_created\";i:1520443593;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:166;s:16:\"popularity_index\";i:183;s:11:\"trend_index\";i:357;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:499;a:20:{s:4:\"tmpl\";i:877;s:2:\"id\";i:11563;s:5:\"title\";s:19:\"Gym &#8211; Pricing\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Pricing_Small.png\";s:12:\"tmpl_created\";i:1567392923;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-pricing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:166;s:16:\"popularity_index\";i:577;s:11:\"trend_index\";i:736;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:500;a:20:{s:4:\"tmpl\";i:422;s:2:\"id\";i:4411;s:5:\"title\";s:9:\"Contact 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_1.png\";s:12:\"tmpl_created\";i:1520443287;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/contact-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:167;s:16:\"popularity_index\";i:113;s:11:\"trend_index\";i:217;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:501;a:20:{s:4:\"tmpl\";i:867;s:2:\"id\";i:11034;s:5:\"title\";s:30:\"Digital Agency &#8211; Contact\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/07/Contsct-Us_small.png\";s:12:\"tmpl_created\";i:1564641881;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/contact-digital-agency/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:168;s:16:\"popularity_index\";i:191;s:11:\"trend_index\";i:156;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:502;a:20:{s:4:\"tmpl\";i:533;s:2:\"id\";i:5828;s:5:\"title\";s:9:\"Contact 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_black_1.png\";s:12:\"tmpl_created\";i:1520443595;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:170;s:16:\"popularity_index\";i:312;s:11:\"trend_index\";i:495;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:503;a:20:{s:4:\"tmpl\";i:876;s:2:\"id\";i:11528;s:5:\"title\";s:19:\"Gym &#8211; Contact\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Contact_Small.png\";s:12:\"tmpl_created\";i:1567392917;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:171;s:16:\"popularity_index\";i:505;s:11:\"trend_index\";i:624;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:504;a:20:{s:4:\"tmpl\";i:424;s:2:\"id\";i:4428;s:5:\"title\";s:9:\"Contact 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_2.png\";s:12:\"tmpl_created\";i:1520443291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:171;s:16:\"popularity_index\";i:118;s:11:\"trend_index\";i:131;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:505;a:20:{s:4:\"tmpl\";i:426;s:2:\"id\";i:4444;s:5:\"title\";s:9:\"Contact 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_1.png\";s:12:\"tmpl_created\";i:1520443295;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:174;s:16:\"popularity_index\";i:84;s:11:\"trend_index\";i:93;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:506;a:20:{s:4:\"tmpl\";i:432;s:2:\"id\";i:4492;s:5:\"title\";s:9:\"Contact 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_3.png\";s:12:\"tmpl_created\";i:1520443307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/contact-5-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:176;s:16:\"popularity_index\";i:37;s:11:\"trend_index\";i:31;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:507;a:20:{s:4:\"tmpl\";i:427;s:2:\"id\";i:4452;s:5:\"title\";s:9:\"Contact 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_black_1.png\";s:12:\"tmpl_created\";i:1520443296;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:178;s:16:\"popularity_index\";i:139;s:11:\"trend_index\";i:150;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:508;a:20:{s:4:\"tmpl\";i:429;s:2:\"id\";i:4468;s:5:\"title\";s:9:\"Contact 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_3.png\";s:12:\"tmpl_created\";i:1520443301;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:179;s:16:\"popularity_index\";i:127;s:11:\"trend_index\";i:72;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:509;a:20:{s:4:\"tmpl\";i:431;s:2:\"id\";i:4484;s:5:\"title\";s:9:\"Contact 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_black_3.png\";s:12:\"tmpl_created\";i:1520443305;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:182;s:16:\"popularity_index\";i:328;s:11:\"trend_index\";i:260;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:510;a:20:{s:4:\"tmpl\";i:428;s:2:\"id\";i:4460;s:5:\"title\";s:9:\"Contact 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_2.png\";s:12:\"tmpl_created\";i:1520443298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:184;s:16:\"popularity_index\";i:99;s:11:\"trend_index\";i:80;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:511;a:20:{s:4:\"tmpl\";i:613;s:2:\"id\";i:5558;s:5:\"title\";s:5:\"CTA 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_2.png\";s:12:\"tmpl_created\";i:1520520684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:185;s:16:\"popularity_index\";i:129;s:11:\"trend_index\";i:69;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:512;a:20:{s:4:\"tmpl\";i:634;s:2:\"id\";i:5939;s:5:\"title\";s:6:\"CTA 10\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_13-1.png\";s:12:\"tmpl_created\";i:1520520760;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:187;s:16:\"popularity_index\";i:190;s:11:\"trend_index\";i:118;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:513;a:20:{s:4:\"tmpl\";i:633;s:2:\"id\";i:5930;s:5:\"title\";s:6:\"CTA 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_15.png\";s:12:\"tmpl_created\";i:1520520758;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:190;s:16:\"popularity_index\";i:76;s:11:\"trend_index\";i:84;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:514;a:20:{s:4:\"tmpl\";i:632;s:2:\"id\";i:5921;s:5:\"title\";s:6:\"CTA 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_14.png\";s:12:\"tmpl_created\";i:1520520757;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:192;s:16:\"popularity_index\";i:278;s:11:\"trend_index\";i:234;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:515;a:20:{s:4:\"tmpl\";i:618;s:2:\"id\";i:5607;s:5:\"title\";s:6:\"CTA 13\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_5.png\";s:12:\"tmpl_created\";i:1520520695;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:194;s:16:\"popularity_index\";i:42;s:11:\"trend_index\";i:11;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:516;a:20:{s:4:\"tmpl\";i:574;s:2:\"id\";i:6017;s:5:\"title\";s:6:\"CTA 14\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_14.png\";s:12:\"tmpl_created\";i:1520520331;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:196;s:16:\"popularity_index\";i:152;s:11:\"trend_index\";i:122;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:517;a:20:{s:4:\"tmpl\";i:628;s:2:\"id\";i:5885;s:5:\"title\";s:6:\"CTA 15\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_11.png\";s:12:\"tmpl_created\";i:1520520751;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:197;s:16:\"popularity_index\";i:274;s:11:\"trend_index\";i:256;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:518;a:20:{s:4:\"tmpl\";i:627;s:2:\"id\";i:5877;s:5:\"title\";s:6:\"CTA 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_10.png\";s:12:\"tmpl_created\";i:1520520749;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:200;s:16:\"popularity_index\";i:564;s:11:\"trend_index\";i:677;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:519;a:20:{s:4:\"tmpl\";i:625;s:2:\"id\";i:5860;s:5:\"title\";s:6:\"CTA 17\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_9.png\";s:12:\"tmpl_created\";i:1520520746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:201;s:16:\"popularity_index\";i:120;s:11:\"trend_index\";i:63;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:520;a:20:{s:4:\"tmpl\";i:626;s:2:\"id\";i:5869;s:5:\"title\";s:6:\"CTA 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_10.png\";s:12:\"tmpl_created\";i:1520520747;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:204;s:16:\"popularity_index\";i:345;s:11:\"trend_index\";i:486;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:521;a:20:{s:4:\"tmpl\";i:611;s:2:\"id\";i:5542;s:5:\"title\";s:6:\"CTA 19\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_1.png\";s:12:\"tmpl_created\";i:1520520681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:205;s:16:\"popularity_index\";i:169;s:11:\"trend_index\";i:270;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:522;a:20:{s:4:\"tmpl\";i:614;s:2:\"id\";i:5567;s:5:\"title\";s:5:\"CTA 2\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_2.png\";s:12:\"tmpl_created\";i:1520520685;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:207;s:16:\"popularity_index\";i:143;s:11:\"trend_index\";i:225;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:523;a:20:{s:4:\"tmpl\";i:629;s:2:\"id\";i:5893;s:5:\"title\";s:6:\"CTA 21\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_12.png\";s:12:\"tmpl_created\";i:1520520752;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:210;s:16:\"popularity_index\";i:259;s:11:\"trend_index\";i:457;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:524;a:20:{s:4:\"tmpl\";i:619;s:2:\"id\";i:5634;s:5:\"title\";s:6:\"CTA 24\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_6.png\";s:12:\"tmpl_created\";i:1520520699;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-24/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:212;s:16:\"popularity_index\";i:188;s:11:\"trend_index\";i:255;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:525;a:20:{s:4:\"tmpl\";i:620;s:2:\"id\";i:5642;s:5:\"title\";s:6:\"CTA 25\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_6.png\";s:12:\"tmpl_created\";i:1520520701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-25/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:214;s:16:\"popularity_index\";i:226;s:11:\"trend_index\";i:262;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:526;a:20:{s:4:\"tmpl\";i:615;s:2:\"id\";i:5583;s:5:\"title\";s:6:\"CTA 26\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_3.png\";s:12:\"tmpl_created\";i:1520520689;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-26/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:216;s:16:\"popularity_index\";i:117;s:11:\"trend_index\";i:117;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:527;a:20:{s:4:\"tmpl\";i:630;s:2:\"id\";i:5904;s:5:\"title\";s:6:\"CTA 27\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_13.png\";s:12:\"tmpl_created\";i:1520520754;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-27/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:217;s:16:\"popularity_index\";i:528;s:11:\"trend_index\";i:517;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:528;a:20:{s:4:\"tmpl\";i:631;s:2:\"id\";i:5912;s:5:\"title\";s:6:\"CTA 28\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_11.png\";s:12:\"tmpl_created\";i:1520520755;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-28/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:219;s:16:\"popularity_index\";i:665;s:11:\"trend_index\";i:702;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:529;a:20:{s:4:\"tmpl\";i:473;s:2:\"id\";i:5189;s:5:\"title\";s:6:\"CTA 29\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_1.png\";s:12:\"tmpl_created\";i:1520443456;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-29/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:221;s:16:\"popularity_index\";i:472;s:11:\"trend_index\";i:631;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:530;a:20:{s:4:\"tmpl\";i:623;s:2:\"id\";i:5667;s:5:\"title\";s:5:\"CTA 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_8.png\";s:12:\"tmpl_created\";i:1520520705;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:222;s:16:\"popularity_index\";i:171;s:11:\"trend_index\";i:250;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:531;a:20:{s:4:\"tmpl\";i:474;s:2:\"id\";i:5198;s:5:\"title\";s:6:\"CTA 30\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_1.png\";s:12:\"tmpl_created\";i:1520443458;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-30/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:225;s:16:\"popularity_index\";i:572;s:11:\"trend_index\";i:511;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:532;a:20:{s:4:\"tmpl\";i:475;s:2:\"id\";i:5206;s:5:\"title\";s:6:\"CTA 31\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_2.png\";s:12:\"tmpl_created\";i:1520443459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-31/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:226;s:16:\"popularity_index\";i:593;s:11:\"trend_index\";i:611;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:533;a:20:{s:4:\"tmpl\";i:480;s:2:\"id\";i:5249;s:5:\"title\";s:6:\"CTA 32\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_4.png\";s:12:\"tmpl_created\";i:1520443470;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-32/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:228;s:16:\"popularity_index\";i:512;s:11:\"trend_index\";i:409;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:534;a:20:{s:4:\"tmpl\";i:612;s:2:\"id\";i:5550;s:5:\"title\";s:6:\"CTA 33\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_1.png\";s:12:\"tmpl_created\";i:1520520682;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-33/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:231;s:16:\"popularity_index\";i:260;s:11:\"trend_index\";i:562;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:535;a:20:{s:4:\"tmpl\";i:536;s:2:\"id\";i:5852;s:5:\"title\";s:6:\"CTA 34\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2018/03/form_1.png\";s:12:\"tmpl_created\";i:1520443600;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-34/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:232;s:16:\"popularity_index\";i:563;s:11:\"trend_index\";i:828;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:536;a:20:{s:4:\"tmpl\";i:624;s:2:\"id\";i:5675;s:5:\"title\";s:5:\"CTA 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_8.png\";s:12:\"tmpl_created\";i:1520520707;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:235;s:16:\"popularity_index\";i:391;s:11:\"trend_index\";i:484;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:537;a:20:{s:4:\"tmpl\";i:616;s:2:\"id\";i:5591;s:5:\"title\";s:5:\"CTA 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_4.png\";s:12:\"tmpl_created\";i:1520520691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:237;s:16:\"popularity_index\";i:133;s:11:\"trend_index\";i:130;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:538;a:20:{s:4:\"tmpl\";i:617;s:2:\"id\";i:5599;s:5:\"title\";s:5:\"CTA 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_4.png\";s:12:\"tmpl_created\";i:1520520693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:239;s:16:\"popularity_index\";i:252;s:11:\"trend_index\";i:362;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:539;a:20:{s:4:\"tmpl\";i:514;s:2:\"id\";i:5575;s:5:\"title\";s:5:\"CTA 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_3.png\";s:12:\"tmpl_created\";i:1520443543;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:240;s:16:\"popularity_index\";i:13;s:11:\"trend_index\";i:586;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:540;a:20:{s:4:\"tmpl\";i:622;s:2:\"id\";i:5658;s:5:\"title\";s:5:\"CTA 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_7.png\";s:12:\"tmpl_created\";i:1520520704;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:243;s:16:\"popularity_index\";i:187;s:11:\"trend_index\";i:235;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:541;a:20:{s:4:\"tmpl\";i:621;s:2:\"id\";i:5650;s:5:\"title\";s:5:\"CTA 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_7.png\";s:12:\"tmpl_created\";i:1520520702;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:244;s:16:\"popularity_index\";i:94;s:11:\"trend_index\";i:148;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:542;a:20:{s:4:\"tmpl\";i:1061;s:2:\"id\";i:15407;s:5:\"title\";s:24:\"Dance Studio &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/10/404.jpg\";s:12:\"tmpl_created\";i:1603181958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/dance-studio-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:22:\"[\"404\",\"Dance Studio\"]\";s:10:\"menu_order\";i:246;s:16:\"popularity_index\";i:783;s:11:\"trend_index\";i:710;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:543;a:20:{s:4:\"tmpl\";i:1062;s:2:\"id\";i:15400;s:5:\"title\";s:27:\"Dance Studio &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/10/Footer.jpg\";s:12:\"tmpl_created\";i:1603181989;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/dance-studio-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:25:\"[\"Dance Studio\",\"Footer\"]\";s:10:\"menu_order\";i:247;s:16:\"popularity_index\";i:586;s:11:\"trend_index\";i:243;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:544;a:20:{s:4:\"tmpl\";i:1063;s:2:\"id\";i:15391;s:5:\"title\";s:27:\"Dance Studio &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/10/Header.jpg\";s:12:\"tmpl_created\";i:1603182011;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/dance-studio-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:25:\"[\"Dance Studio\",\"Header\"]\";s:10:\"menu_order\";i:248;s:16:\"popularity_index\";i:352;s:11:\"trend_index\";i:67;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:545;a:20:{s:4:\"tmpl\";i:874;s:2:\"id\";i:11192;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/07/Footer_small.jpg\";s:12:\"tmpl_created\";i:1564642399;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:39:\"[\"Digital Agency\",\"Footer\",\"Marketing\"]\";s:10:\"menu_order\";i:250;s:16:\"popularity_index\";i:172;s:11:\"trend_index\";i:105;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:546;a:20:{s:4:\"tmpl\";i:873;s:2:\"id\";i:11198;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-digital-marketing-agency.png\";s:12:\"tmpl_created\";i:1564642395;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:39:\"[\"Digital Agency\",\"Header\",\"Marketing\"]\";s:10:\"menu_order\";i:251;s:16:\"popularity_index\";i:34;s:11:\"trend_index\";i:10;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:547;a:20:{s:4:\"tmpl\";i:872;s:2:\"id\";i:11204;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/07/404_small.jpg\";s:12:\"tmpl_created\";i:1564642389;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:36:\"[\"404\",\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:253;s:16:\"popularity_index\";i:301;s:11:\"trend_index\";i:239;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:548;a:20:{s:4:\"tmpl\";i:871;s:2:\"id\";i:11220;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/08/Archive_small1.png\";s:12:\"tmpl_created\";i:1564642385;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:255;s:16:\"popularity_index\";i:116;s:11:\"trend_index\";i:73;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:549;a:20:{s:4:\"tmpl\";i:870;s:2:\"id\";i:11231;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/Post_small1.png\";s:12:\"tmpl_created\";i:1564642380;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/digital-agency/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:257;s:16:\"popularity_index\";i:145;s:11:\"trend_index\";i:71;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:550;a:20:{s:4:\"tmpl\";i:520;s:2:\"id\";i:5711;s:5:\"title\";s:5:\"FAQ 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_2.png\";s:12:\"tmpl_created\";i:1520443571;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:260;s:16:\"popularity_index\";i:200;s:11:\"trend_index\";i:231;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:551;a:20:{s:4:\"tmpl\";i:523;s:2:\"id\";i:5737;s:5:\"title\";s:6:\"FAQ 10\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_4.png\";s:12:\"tmpl_created\";i:1520443576;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/faq-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:261;s:16:\"popularity_index\";i:155;s:11:\"trend_index\";i:112;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:552;a:20:{s:4:\"tmpl\";i:524;s:2:\"id\";i:5746;s:5:\"title\";s:6:\"FAQ 11\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_4.png\";s:12:\"tmpl_created\";i:1520443578;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/faq-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:264;s:16:\"popularity_index\";i:212;s:11:\"trend_index\";i:305;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:553;a:20:{s:4:\"tmpl\";i:519;s:2:\"id\";i:5703;s:5:\"title\";s:6:\"FAQ 13\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_2.png\";s:12:\"tmpl_created\";i:1520443569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/faq-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:265;s:16:\"popularity_index\";i:29;s:11:\"trend_index\";i:38;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:554;a:20:{s:4:\"tmpl\";i:521;s:2:\"id\";i:5719;s:5:\"title\";s:5:\"FAQ 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_3.png\";s:12:\"tmpl_created\";i:1520443573;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:267;s:16:\"popularity_index\";i:125;s:11:\"trend_index\";i:251;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:555;a:20:{s:4:\"tmpl\";i:522;s:2:\"id\";i:5729;s:5:\"title\";s:5:\"FAQ 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_3.png\";s:12:\"tmpl_created\";i:1520443575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:269;s:16:\"popularity_index\";i:319;s:11:\"trend_index\";i:327;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:556;a:20:{s:4:\"tmpl\";i:525;s:2:\"id\";i:5755;s:5:\"title\";s:5:\"FAQ 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_5.png\";s:12:\"tmpl_created\";i:1520443580;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:271;s:16:\"popularity_index\";i:112;s:11:\"trend_index\";i:180;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:557;a:20:{s:4:\"tmpl\";i:526;s:2:\"id\";i:5764;s:5:\"title\";s:5:\"FAQ 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_5.png\";s:12:\"tmpl_created\";i:1520443582;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:273;s:16:\"popularity_index\";i:338;s:11:\"trend_index\";i:474;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:558;a:20:{s:4:\"tmpl\";i:517;s:2:\"id\";i:5684;s:5:\"title\";s:5:\"FAQ 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_1.png\";s:12:\"tmpl_created\";i:1520443565;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:274;s:16:\"popularity_index\";i:74;s:11:\"trend_index\";i:193;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:559;a:20:{s:4:\"tmpl\";i:518;s:2:\"id\";i:5693;s:5:\"title\";s:5:\"FAQ 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_1.png\";s:12:\"tmpl_created\";i:1520443567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:276;s:16:\"popularity_index\";i:224;s:11:\"trend_index\";i:515;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:560;a:20:{s:4:\"tmpl\";i:548;s:2:\"id\";i:6053;s:5:\"title\";s:10:\"Features 1\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_5.png\";s:12:\"tmpl_created\";i:1520443645;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:277;s:16:\"popularity_index\";i:179;s:11:\"trend_index\";i:463;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:561;a:20:{s:4:\"tmpl\";i:542;s:2:\"id\";i:5991;s:5:\"title\";s:11:\"Features 10\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_4.png\";s:12:\"tmpl_created\";i:1520443632;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/features-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:279;s:16:\"popularity_index\";i:135;s:11:\"trend_index\";i:265;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:562;a:20:{s:4:\"tmpl\";i:547;s:2:\"id\";i:6044;s:5:\"title\";s:11:\"Features 11\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_5.png\";s:12:\"tmpl_created\";i:1520443643;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/features-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:280;s:16:\"popularity_index\";i:70;s:11:\"trend_index\";i:163;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:563;a:20:{s:4:\"tmpl\";i:566;s:2:\"id\";i:6212;s:5:\"title\";s:11:\"Features 12\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_7.png\";s:12:\"tmpl_created\";i:1520443684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/features-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:281;s:16:\"popularity_index\";i:81;s:11:\"trend_index\";i:98;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:564;a:20:{s:4:\"tmpl\";i:567;s:2:\"id\";i:6220;s:5:\"title\";s:10:\"Features 2\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_8.png\";s:12:\"tmpl_created\";i:1520443685;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:282;s:16:\"popularity_index\";i:88;s:11:\"trend_index\";i:189;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:565;a:20:{s:4:\"tmpl\";i:541;s:2:\"id\";i:5983;s:5:\"title\";s:10:\"Features 3\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_3.png\";s:12:\"tmpl_created\";i:1520443630;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:283;s:16:\"popularity_index\";i:231;s:11:\"trend_index\";i:351;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:566;a:20:{s:4:\"tmpl\";i:540;s:2:\"id\";i:5974;s:5:\"title\";s:10:\"Features 4\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_3.png\";s:12:\"tmpl_created\";i:1520443629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:286;s:16:\"popularity_index\";i:69;s:11:\"trend_index\";i:181;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:567;a:20:{s:4:\"tmpl\";i:516;s:2:\"id\";i:5624;s:5:\"title\";s:10:\"Features 5\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_1.png\";s:12:\"tmpl_created\";i:1520443553;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:287;s:16:\"popularity_index\";i:93;s:11:\"trend_index\";i:352;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:568;a:20:{s:4:\"tmpl\";i:515;s:2:\"id\";i:5615;s:5:\"title\";s:10:\"Features 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_5.png\";s:12:\"tmpl_created\";i:1520443551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:290;s:16:\"popularity_index\";i:41;s:11:\"trend_index\";i:119;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:569;a:20:{s:4:\"tmpl\";i:539;s:2:\"id\";i:5963;s:5:\"title\";s:10:\"Features 7\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_2.png\";s:12:\"tmpl_created\";i:1520443626;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:291;s:16:\"popularity_index\";i:67;s:11:\"trend_index\";i:133;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:570;a:20:{s:4:\"tmpl\";i:565;s:2:\"id\";i:6204;s:5:\"title\";s:10:\"Features 8\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_6.png\";s:12:\"tmpl_created\";i:1520443681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:292;s:16:\"popularity_index\";i:217;s:11:\"trend_index\";i:223;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:571;a:20:{s:4:\"tmpl\";i:564;s:2:\"id\";i:6196;s:5:\"title\";s:10:\"Features 9\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_6.png\";s:12:\"tmpl_created\";i:1520443680;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:294;s:16:\"popularity_index\";i:106;s:11:\"trend_index\";i:113;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:572;a:20:{s:4:\"tmpl\";i:1033;s:2:\"id\";i:15033;s:5:\"title\";s:28:\"Flooring Company &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/08/404.png\";s:12:\"tmpl_created\";i:1597739459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/flooring-company-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:45:\"[\"404\",\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:296;s:16:\"popularity_index\";i:655;s:11:\"trend_index\";i:671;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:573;a:20:{s:4:\"tmpl\";i:1032;s:2:\"id\";i:15042;s:5:\"title\";s:32:\"Flooring Company &#8211; Archive\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/08/Blog.png\";s:12:\"tmpl_created\";i:1597739084;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/flooring-company-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:297;s:16:\"popularity_index\";i:320;s:11:\"trend_index\";i:275;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:574;a:20:{s:4:\"tmpl\";i:1031;s:2:\"id\";i:15017;s:5:\"title\";s:31:\"Flooring Company &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Footer.png\";s:12:\"tmpl_created\";i:1597738933;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/flooring-company-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:48:\"[\"Flooring company\",\"Flooring website\",\"Footer\"]\";s:10:\"menu_order\";i:299;s:16:\"popularity_index\";i:323;s:11:\"trend_index\";i:192;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:575;a:20:{s:4:\"tmpl\";i:1030;s:2:\"id\";i:15007;s:5:\"title\";s:31:\"Flooring Company &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Header.png\";s:12:\"tmpl_created\";i:1597738896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/flooring-company-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:48:\"[\"Flooring company\",\"Flooring website\",\"Header\"]\";s:10:\"menu_order\";i:302;s:16:\"popularity_index\";i:459;s:11:\"trend_index\";i:333;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:576;a:20:{s:4:\"tmpl\";i:1029;s:2:\"id\";i:15052;s:5:\"title\";s:36:\"Flooring Company &#8211; Single post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Single.png\";s:12:\"tmpl_created\";i:1597738858;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/blocks/flooring-company-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:303;s:16:\"popularity_index\";i:392;s:11:\"trend_index\";i:226;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:577;a:20:{s:4:\"tmpl\";i:651;s:2:\"id\";i:7837;s:5:\"title\";s:9:\"footer 01\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.14.jpg\";s:12:\"tmpl_created\";i:1524582852;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-01/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:305;s:16:\"popularity_index\";i:495;s:11:\"trend_index\";i:539;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:578;a:20:{s:4:\"tmpl\";i:647;s:2:\"id\";i:7937;s:5:\"title\";s:10:\"footer 010\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.5.jpg\";s:12:\"tmpl_created\";i:1524582665;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-010/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:308;s:16:\"popularity_index\";i:185;s:11:\"trend_index\";i:115;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:579;a:20:{s:4:\"tmpl\";i:646;s:2:\"id\";i:7950;s:5:\"title\";s:10:\"footer 011\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.4.jpg\";s:12:\"tmpl_created\";i:1524582631;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-011/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:310;s:16:\"popularity_index\";i:244;s:11:\"trend_index\";i:203;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:580;a:20:{s:4:\"tmpl\";i:645;s:2:\"id\";i:7959;s:5:\"title\";s:10:\"footer 012\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.3.jpg\";s:12:\"tmpl_created\";i:1524582605;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-012/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:311;s:16:\"popularity_index\";i:177;s:11:\"trend_index\";i:140;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:581;a:20:{s:4:\"tmpl\";i:644;s:2:\"id\";i:7982;s:5:\"title\";s:10:\"footer 013\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.2.jpg\";s:12:\"tmpl_created\";i:1524582468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-013/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:314;s:16:\"popularity_index\";i:209;s:11:\"trend_index\";i:212;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:582;a:20:{s:4:\"tmpl\";i:643;s:2:\"id\";i:7997;s:5:\"title\";s:10:\"footer 014\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.1.jpg\";s:12:\"tmpl_created\";i:1524582343;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-014/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:316;s:16:\"popularity_index\";i:64;s:11:\"trend_index\";i:41;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:583;a:20:{s:4:\"tmpl\";i:693;s:2:\"id\";i:9119;s:5:\"title\";s:10:\"footer 015\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/Footer_GetStarted_350.png\";s:12:\"tmpl_created\";i:1532428138;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/demo/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:317;s:16:\"popularity_index\";i:240;s:11:\"trend_index\";i:154;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:584;a:20:{s:4:\"tmpl\";i:652;s:2:\"id\";i:7852;s:5:\"title\";s:9:\"footer 02\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.13.jpg\";s:12:\"tmpl_created\";i:1524582875;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-02/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:320;s:16:\"popularity_index\";i:199;s:11:\"trend_index\";i:96;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:585;a:20:{s:4:\"tmpl\";i:653;s:2:\"id\";i:7862;s:5:\"title\";s:9:\"footer 03\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.12.jpg\";s:12:\"tmpl_created\";i:1524582903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-03/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:321;s:16:\"popularity_index\";i:137;s:11:\"trend_index\";i:91;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:586;a:20:{s:4:\"tmpl\";i:654;s:2:\"id\";i:7871;s:5:\"title\";s:9:\"footer 04\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.11.jpg\";s:12:\"tmpl_created\";i:1524582927;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-04/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:323;s:16:\"popularity_index\";i:97;s:11:\"trend_index\";i:55;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:587;a:20:{s:4:\"tmpl\";i:655;s:2:\"id\";i:7884;s:5:\"title\";s:9:\"footer 05\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.10.jpg\";s:12:\"tmpl_created\";i:1524582944;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-05/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:325;s:16:\"popularity_index\";i:92;s:11:\"trend_index\";i:109;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:588;a:20:{s:4:\"tmpl\";i:656;s:2:\"id\";i:7892;s:5:\"title\";s:9:\"footer 06\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.9.jpg\";s:12:\"tmpl_created\";i:1524583015;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-06/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:326;s:16:\"popularity_index\";i:132;s:11:\"trend_index\";i:146;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:589;a:20:{s:4:\"tmpl\";i:650;s:2:\"id\";i:7904;s:5:\"title\";s:9:\"footer 07\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.8.jpg\";s:12:\"tmpl_created\";i:1524582814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-07/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:328;s:16:\"popularity_index\";i:203;s:11:\"trend_index\";i:186;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:590;a:20:{s:4:\"tmpl\";i:649;s:2:\"id\";i:7917;s:5:\"title\";s:9:\"footer 08\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.7.jpg\";s:12:\"tmpl_created\";i:1524582788;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-08/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:329;s:16:\"popularity_index\";i:89;s:11:\"trend_index\";i:144;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:591;a:20:{s:4:\"tmpl\";i:648;s:2:\"id\";i:7927;s:5:\"title\";s:9:\"footer 09\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.6.jpg\";s:12:\"tmpl_created\";i:1524582691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-09/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:331;s:16:\"popularity_index\";i:178;s:11:\"trend_index\";i:100;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:592;a:20:{s:4:\"tmpl\";i:642;s:2:\"id\";i:4676;s:5:\"title\";s:8:\"Footer 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_7.png\";s:12:\"tmpl_created\";i:1522014215;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/footer_7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"Footer\"]\";s:10:\"menu_order\";i:338;s:16:\"popularity_index\";i:237;s:11:\"trend_index\";i:346;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:593;a:20:{s:4:\"tmpl\";i:637;s:2:\"id\";i:7627;s:5:\"title\";s:8:\"Footer 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_hero_1.png\";s:12:\"tmpl_created\";i:1521547332;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/footer-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"Footer\"]\";s:10:\"menu_order\";i:340;s:16:\"popularity_index\";i:100;s:11:\"trend_index\";i:83;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:594;a:20:{s:4:\"tmpl\";i:638;s:2:\"id\";i:7638;s:5:\"title\";s:8:\"Footer 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_hero_2.png\";s:12:\"tmpl_created\";i:1521547502;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/footer-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"Footer\"]\";s:10:\"menu_order\";i:342;s:16:\"popularity_index\";i:124;s:11:\"trend_index\";i:147;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:595;a:20:{s:4:\"tmpl\";i:888;s:2:\"id\";i:11424;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/08/404_Small.png\";s:12:\"tmpl_created\";i:1567393309;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:13:\"[\"404\",\"Gym\"]\";s:10:\"menu_order\";i:344;s:16:\"popularity_index\";i:679;s:11:\"trend_index\";i:769;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:596;a:20:{s:4:\"tmpl\";i:887;s:2:\"id\";i:11435;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/08/Archiv_Small.png\";s:12:\"tmpl_created\";i:1567393296;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:346;s:16:\"popularity_index\";i:441;s:11:\"trend_index\";i:507;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:597;a:20:{s:4:\"tmpl\";i:886;s:2:\"id\";i:11445;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/08/Post_Small.png\";s:12:\"tmpl_created\";i:1567393229;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:349;s:16:\"popularity_index\";i:452;s:11:\"trend_index\";i:479;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:598;a:20:{s:4:\"tmpl\";i:885;s:2:\"id\";i:11453;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/08/Footer_Small.png\";s:12:\"tmpl_created\";i:1567393224;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:16:\"[\"Footer\",\"Gym\"]\";s:10:\"menu_order\";i:351;s:16:\"popularity_index\";i:270;s:11:\"trend_index\";i:331;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:599;a:20:{s:4:\"tmpl\";i:884;s:2:\"id\";i:11461;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-gym-and-fitness.png\";s:12:\"tmpl_created\";i:1567393219;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/gym/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:16:\"[\"Gym\",\"Header\"]\";s:10:\"menu_order\";i:352;s:16:\"popularity_index\";i:201;s:11:\"trend_index\";i:135;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:600;a:20:{s:4:\"tmpl\";i:635;s:2:\"id\";i:7596;s:5:\"title\";s:8:\"Header 1\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.12.jpg\";s:12:\"tmpl_created\";i:1521546999;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:10:\"[\"Header\"]\";s:10:\"menu_order\";i:354;s:16:\"popularity_index\";i:33;s:11:\"trend_index\";i:17;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:601;a:20:{s:4:\"tmpl\";i:663;s:2:\"id\";i:7801;s:5:\"title\";s:9:\"header 10\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.9.jpg\";s:12:\"tmpl_created\";i:1524583659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:356;s:16:\"popularity_index\";i:51;s:11:\"trend_index\";i:14;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:602;a:20:{s:4:\"tmpl\";i:658;s:2:\"id\";i:7812;s:5:\"title\";s:9:\"header 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.10.jpg\";s:12:\"tmpl_created\";i:1524583298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:358;s:16:\"popularity_index\";i:96;s:11:\"trend_index\";i:103;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:603;a:20:{s:4:\"tmpl\";i:657;s:2:\"id\";i:7825;s:5:\"title\";s:9:\"header 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.11.jpg\";s:12:\"tmpl_created\";i:1524583273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:360;s:16:\"popularity_index\";i:63;s:11:\"trend_index\";i:75;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:604;a:20:{s:4:\"tmpl\";i:694;s:2:\"id\";i:9127;s:5:\"title\";s:9:\"header 13\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2018/07/Header_get_started_1200V3.png\";s:12:\"tmpl_created\";i:1532428699;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:362;s:16:\"popularity_index\";i:61;s:11:\"trend_index\";i:58;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:605;a:20:{s:4:\"tmpl\";i:636;s:2:\"id\";i:7615;s:5:\"title\";s:8:\"Header 2\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.1.jpg\";s:12:\"tmpl_created\";i:1521547237;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:10:\"[\"Header\"]\";s:10:\"menu_order\";i:365;s:16:\"popularity_index\";i:30;s:11:\"trend_index\";i:33;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:606;a:20:{s:4:\"tmpl\";i:665;s:2:\"id\";i:7713;s:5:\"title\";s:8:\"header 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.2.jpg\";s:12:\"tmpl_created\";i:1524584780;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:367;s:16:\"popularity_index\";i:43;s:11:\"trend_index\";i:28;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:607;a:20:{s:4:\"tmpl\";i:659;s:2:\"id\";i:7724;s:5:\"title\";s:8:\"header 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.3.jpg\";s:12:\"tmpl_created\";i:1524583367;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:369;s:16:\"popularity_index\";i:24;s:11:\"trend_index\";i:13;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:608;a:20:{s:4:\"tmpl\";i:660;s:2:\"id\";i:7734;s:5:\"title\";s:8:\"header 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.4.jpg\";s:12:\"tmpl_created\";i:1524583436;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:371;s:16:\"popularity_index\";i:36;s:11:\"trend_index\";i:18;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:609;a:20:{s:4:\"tmpl\";i:666;s:2:\"id\";i:7744;s:5:\"title\";s:8:\"Header 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.5.jpg\";s:12:\"tmpl_created\";i:1524584784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:372;s:16:\"popularity_index\";i:65;s:11:\"trend_index\";i:94;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:610;a:20:{s:4:\"tmpl\";i:664;s:2:\"id\";i:7754;s:5:\"title\";s:8:\"header 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.6.jpg\";s:12:\"tmpl_created\";i:1524583712;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:375;s:16:\"popularity_index\";i:111;s:11:\"trend_index\";i:143;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:611;a:20:{s:4:\"tmpl\";i:661;s:2:\"id\";i:7771;s:5:\"title\";s:8:\"header 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.7.jpg\";s:12:\"tmpl_created\";i:1524583540;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:376;s:16:\"popularity_index\";i:91;s:11:\"trend_index\";i:60;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:612;a:20:{s:4:\"tmpl\";i:662;s:2:\"id\";i:7787;s:5:\"title\";s:8:\"header 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.8.jpg\";s:12:\"tmpl_created\";i:1524583598;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:379;s:16:\"popularity_index\";i:102;s:11:\"trend_index\";i:78;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:613;a:20:{s:4:\"tmpl\";i:572;s:2:\"id\";i:6266;s:5:\"title\";s:6:\"Hero 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_4.png\";s:12:\"tmpl_created\";i:1520443695;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:380;s:16:\"popularity_index\";i:52;s:11:\"trend_index\";i:35;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:614;a:20:{s:4:\"tmpl\";i:528;s:2:\"id\";i:5783;s:5:\"title\";s:7:\"Hero 10\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_2.png\";s:12:\"tmpl_created\";i:1520443586;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/hero-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:383;s:16:\"popularity_index\";i:365;s:11:\"trend_index\";i:567;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:615;a:20:{s:4:\"tmpl\";i:527;s:2:\"id\";i:5773;s:5:\"title\";s:7:\"Hero 11\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_1.png\";s:12:\"tmpl_created\";i:1520443584;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/hero-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:384;s:16:\"popularity_index\";i:39;s:11:\"trend_index\";i:179;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:616;a:20:{s:4:\"tmpl\";i:479;s:2:\"id\";i:5238;s:5:\"title\";s:7:\"Hero 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_4.png\";s:12:\"tmpl_created\";i:1520443468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/hero-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:386;s:16:\"popularity_index\";i:611;s:11:\"trend_index\";i:555;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:617;a:20:{s:4:\"tmpl\";i:573;s:2:\"id\";i:6274;s:5:\"title\";s:6:\"Hero 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_5.png\";s:12:\"tmpl_created\";i:1520443698;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:389;s:16:\"popularity_index\";i:87;s:11:\"trend_index\";i:88;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:618;a:20:{s:4:\"tmpl\";i:569;s:2:\"id\";i:6239;s:5:\"title\";s:6:\"Hero 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_1.png\";s:12:\"tmpl_created\";i:1520443689;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:391;s:16:\"popularity_index\";i:23;s:11:\"trend_index\";i:34;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:619;a:20:{s:4:\"tmpl\";i:571;s:2:\"id\";i:6258;s:5:\"title\";s:6:\"Hero 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_3.png\";s:12:\"tmpl_created\";i:1520443693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:393;s:16:\"popularity_index\";i:479;s:11:\"trend_index\";i:470;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:620;a:20:{s:4:\"tmpl\";i:570;s:2:\"id\";i:6249;s:5:\"title\";s:6:\"Hero 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_2.png\";s:12:\"tmpl_created\";i:1520443691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:395;s:16:\"popularity_index\";i:56;s:11:\"trend_index\";i:85;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:621;a:20:{s:4:\"tmpl\";i:568;s:2:\"id\";i:6230;s:5:\"title\";s:6:\"Hero 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_white_1.png\";s:12:\"tmpl_created\";i:1520443687;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:396;s:16:\"popularity_index\";i:406;s:11:\"trend_index\";i:542;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:622;a:20:{s:4:\"tmpl\";i:530;s:2:\"id\";i:5801;s:5:\"title\";s:6:\"Hero 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_4.png\";s:12:\"tmpl_created\";i:1520443589;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:398;s:16:\"popularity_index\";i:15;s:11:\"trend_index\";i:37;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:623;a:20:{s:4:\"tmpl\";i:531;s:2:\"id\";i:5811;s:5:\"title\";s:6:\"Hero 8\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_5.png\";s:12:\"tmpl_created\";i:1520443591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:400;s:16:\"popularity_index\";i:105;s:11:\"trend_index\";i:86;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:624;a:20:{s:4:\"tmpl\";i:529;s:2:\"id\";i:5792;s:5:\"title\";s:6:\"Hero 9\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_3.png\";s:12:\"tmpl_created\";i:1520443588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:403;s:16:\"popularity_index\";i:225;s:11:\"trend_index\";i:244;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:625;a:20:{s:4:\"tmpl\";i:978;s:2:\"id\";i:13251;s:5:\"title\";s:27:\"Interior Design &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/04/404.png\";s:12:\"tmpl_created\";i:1586148737;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/interior-design-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:405;s:16:\"popularity_index\";i:730;s:11:\"trend_index\";i:795;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:626;a:20:{s:4:\"tmpl\";i:979;s:2:\"id\";i:13244;s:5:\"title\";s:30:\"Interior Design &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/04/Footer.png\";s:12:\"tmpl_created\";i:1586148742;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/interior-design-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:39:\"[\"Business\",\"Footer\",\"Interior Design\"]\";s:10:\"menu_order\";i:406;s:16:\"popularity_index\";i:322;s:11:\"trend_index\";i:178;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:627;a:20:{s:4:\"tmpl\";i:980;s:2:\"id\";i:13236;s:5:\"title\";s:30:\"Interior Design &#8211; Header\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-interior-design.png\";s:12:\"tmpl_created\";i:1586148746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/interior-design-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:39:\"[\"Business\",\"Header\",\"Interior Design\"]\";s:10:\"menu_order\";i:408;s:16:\"popularity_index\";i:146;s:11:\"trend_index\";i:64;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:628;a:20:{s:4:\"tmpl\";i:977;s:2:\"id\";i:13259;s:5:\"title\";s:36:\"Interior Design &#8211; News Archive\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Archiv-Blog.png\";s:12:\"tmpl_created\";i:1586148733;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/blocks/interior-design-news-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:410;s:16:\"popularity_index\";i:436;s:11:\"trend_index\";i:132;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:629;a:20:{s:4:\"tmpl\";i:976;s:2:\"id\";i:13267;s:5:\"title\";s:35:\"Interior Design &#8211; Single News\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Post.png\";s:12:\"tmpl_created\";i:1586148728;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/blocks/interior-design-single-news/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:413;s:16:\"popularity_index\";i:402;s:11:\"trend_index\";i:108;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:630;a:20:{s:4:\"tmpl\";i:975;s:2:\"id\";i:13274;s:5:\"title\";s:38:\"Interior Design &#8211; Single Project\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/04/Single-Project-.png\";s:12:\"tmpl_created\";i:1586148723;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/blocks/interior-design-single-project/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:414;s:16:\"popularity_index\";i:601;s:11:\"trend_index\";i:324;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:631;a:20:{s:4:\"tmpl\";i:1011;s:2:\"id\";i:14058;s:5:\"title\";s:36:\"Japanese restaurant &#8211; 404 page\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/06/404-Page.jpg\";s:12:\"tmpl_created\";i:1592290211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/blocks/japanese-restaurant-404-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:38:\"[\"404\",\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:416;s:16:\"popularity_index\";i:724;s:11:\"trend_index\";i:647;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:632;a:20:{s:4:\"tmpl\";i:1012;s:2:\"id\";i:14050;s:5:\"title\";s:34:\"Japanese restaurant &#8211; Footer\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/Footer-Small.jpg\";s:12:\"tmpl_created\";i:1592290247;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/japanese-restaurant-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:41:\"[\"Food\",\"Footer\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:419;s:16:\"popularity_index\";i:317;s:11:\"trend_index\";i:238;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:633;a:20:{s:4:\"tmpl\";i:1013;s:2:\"id\";i:14042;s:5:\"title\";s:34:\"Japanese Restaurant &#8211; Header\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2020/06/japanese-restaurant-header.jpg\";s:12:\"tmpl_created\";i:1592290277;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/japanese-restaurant-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:41:\"[\"Food\",\"Header\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:421;s:16:\"popularity_index\";i:411;s:11:\"trend_index\";i:274;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:634;a:20:{s:4:\"tmpl\";i:914;s:2:\"id\";i:12164;s:5:\"title\";s:20:\"Law Firm &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/11/404.png\";s:12:\"tmpl_created\";i:1572846979;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/law-firm-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:24:\"[\"404\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:422;s:16:\"popularity_index\";i:704;s:11:\"trend_index\";i:716;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:635;a:20:{s:4:\"tmpl\";i:913;s:2:\"id\";i:12170;s:5:\"title\";s:23:\"Law Firm &#8211; Archiv\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/archiv.png\";s:12:\"tmpl_created\";i:1572846967;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/law-firm-archiv/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:424;s:16:\"popularity_index\";i:431;s:11:\"trend_index\";i:294;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:636;a:20:{s:4:\"tmpl\";i:912;s:2:\"id\";i:12179;s:5:\"title\";s:23:\"Law Firm &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/footer.png\";s:12:\"tmpl_created\";i:1572846958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/law-firm-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:27:\"[\"Footer\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:425;s:16:\"popularity_index\";i:388;s:11:\"trend_index\";i:240;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:637;a:20:{s:4:\"tmpl\";i:911;s:2:\"id\";i:12194;s:5:\"title\";s:23:\"Law Firm &#8211; Header\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-law-firm.png\";s:12:\"tmpl_created\";i:1572846935;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/law-firm-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:27:\"[\"Header\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:427;s:16:\"popularity_index\";i:80;s:11:\"trend_index\";i:39;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:638;a:20:{s:4:\"tmpl\";i:910;s:2:\"id\";i:12203;s:5:\"title\";s:30:\"Law Firm &#8211; Search Archiv\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/11/search_result.png\";s:12:\"tmpl_created\";i:1572846925;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/law-firm-search-archiv/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:430;s:16:\"popularity_index\";i:493;s:11:\"trend_index\";i:433;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:639;a:20:{s:4:\"tmpl\";i:909;s:2:\"id\";i:12212;s:5:\"title\";s:28:\"Law Firm &#8211; Single Post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/single.png\";s:12:\"tmpl_created\";i:1572846914;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/law-firm-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:432;s:16:\"popularity_index\";i:326;s:11:\"trend_index\";i:214;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:640;a:20:{s:4:\"tmpl\";i:1022;s:2:\"id\";i:14772;s:5:\"title\";s:35:\"Luxury Real Estate &#8211; 404 page\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/07/404.png\";s:12:\"tmpl_created\";i:1595315728;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/blocks/luxury-real-estate-404-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:34:\"[\"404\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:433;s:16:\"popularity_index\";i:759;s:11:\"trend_index\";i:720;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:641;a:20:{s:4:\"tmpl\";i:1023;s:2:\"id\";i:14779;s:5:\"title\";s:33:\"Luxury Real Estate &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/07/Footer.png\";s:12:\"tmpl_created\";i:1595315743;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/luxury-real-estate-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:37:\"[\"Footer\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:434;s:16:\"popularity_index\";i:536;s:11:\"trend_index\";i:505;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:642;a:20:{s:4:\"tmpl\";i:1024;s:2:\"id\";i:14790;s:5:\"title\";s:33:\"Luxury Real Estate &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/07/Header.png\";s:12:\"tmpl_created\";i:1595315760;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/luxury-real-estate-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:37:\"[\"Header\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:436;s:16:\"popularity_index\";i:101;s:11:\"trend_index\";i:157;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:643;a:20:{s:4:\"tmpl\";i:1026;s:2:\"id\";i:14809;s:5:\"title\";s:45:\"Luxury Real Estate &#8211; Properties Archive\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/07/Properties.png\";s:12:\"tmpl_created\";i:1595315826;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/blocks/luxury-real-estate-properties-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:438;s:16:\"popularity_index\";i:414;s:11:\"trend_index\";i:420;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:644;a:20:{s:4:\"tmpl\";i:1027;s:2:\"id\";i:14816;s:5:\"title\";s:47:\"Luxury Real Estate &#8211; Property single post\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/07/Single-Property-.png\";s:12:\"tmpl_created\";i:1595315847;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/blocks/luxury-real-estate-property-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:441;s:16:\"popularity_index\";i:541;s:11:\"trend_index\";i:665;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:645;a:20:{s:4:\"tmpl\";i:1025;s:2:\"id\";i:14799;s:5:\"title\";s:38:\"Luxury Real Estate &#8211; single post\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/07/Post.png\";s:12:\"tmpl_created\";i:1595315792;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/blocks/luxury-real-estate-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:442;s:16:\"popularity_index\";i:369;s:11:\"trend_index\";i:441;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:646;a:20:{s:4:\"tmpl\";i:950;s:2:\"id\";i:12635;s:5:\"title\";s:20:\"Magazine &#8211; 404\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/01/404_s.png\";s:12:\"tmpl_created\";i:1579060746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/magazine-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:25:\"[\"404\",\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:445;s:16:\"popularity_index\";i:645;s:11:\"trend_index\";i:734;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:647;a:20:{s:4:\"tmpl\";i:949;s:2:\"id\";i:12643;s:5:\"title\";s:24:\"Magazine &#8211; Archiv1\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/01/Archiv1_s.png\";s:12:\"tmpl_created\";i:1579060737;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/magazine-archiv1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:447;s:16:\"popularity_index\";i:346;s:11:\"trend_index\";i:272;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:648;a:20:{s:4:\"tmpl\";i:946;s:2:\"id\";i:12669;s:5:\"title\";s:23:\"Magazine &#8211; Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/01/Footer_s.png\";s:12:\"tmpl_created\";i:1579060715;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/magazine-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:28:\"[\"Blog\",\"Footer\",\"Magazine\"]\";s:10:\"menu_order\";i:448;s:16:\"popularity_index\";i:442;s:11:\"trend_index\";i:349;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:649;a:20:{s:4:\"tmpl\";i:945;s:2:\"id\";i:12678;s:5:\"title\";s:23:\"Magazine &#8211; Header\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-magazine.png\";s:12:\"tmpl_created\";i:1579060701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/magazine-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:28:\"[\"Blog\",\"Header\",\"Magazine\"]\";s:10:\"menu_order\";i:450;s:16:\"popularity_index\";i:295;s:11:\"trend_index\";i:197;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:650;a:20:{s:4:\"tmpl\";i:947;s:2:\"id\";i:12661;s:5:\"title\";s:23:\"Magazine &#8211; Search\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/01/Search_s.png\";s:12:\"tmpl_created\";i:1579060722;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/magazine-search/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:452;s:16:\"popularity_index\";i:396;s:11:\"trend_index\";i:509;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:651;a:20:{s:4:\"tmpl\";i:944;s:2:\"id\";i:12688;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 1\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post2_s.png\";s:12:\"tmpl_created\";i:1579060692;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/magazine-single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:453;s:16:\"popularity_index\";i:342;s:11:\"trend_index\";i:175;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:652;a:20:{s:4:\"tmpl\";i:943;s:2:\"id\";i:12699;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 2\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post3_s.png\";s:12:\"tmpl_created\";i:1579060680;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/magazine-single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:454;s:16:\"popularity_index\";i:348;s:11:\"trend_index\";i:129;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:653;a:20:{s:4:\"tmpl\";i:942;s:2:\"id\";i:12707;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 3\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post1_s.png\";s:12:\"tmpl_created\";i:1579060669;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/magazine-single-post-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:457;s:16:\"popularity_index\";i:476;s:11:\"trend_index\";i:246;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:654;a:20:{s:4:\"tmpl\";i:941;s:2:\"id\";i:12716;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 3\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post4_s.png\";s:12:\"tmpl_created\";i:1579060659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/magazine-single-post-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:459;s:16:\"popularity_index\";i:513;s:11:\"trend_index\";i:489;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:655;a:20:{s:4:\"tmpl\";i:948;s:2:\"id\";i:12652;s:5:\"title\";s:17:\"Magazine- Archiv2\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/01/Archiv2_s.png\";s:12:\"tmpl_created\";i:1579060730;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/magazine-archiv2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:461;s:16:\"popularity_index\";i:525;s:11:\"trend_index\";i:585;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:656;a:20:{s:4:\"tmpl\";i:990;s:2:\"id\";i:13361;s:5:\"title\";s:25:\"Online Course &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/04/404.jpg\";s:12:\"tmpl_created\";i:1587474710;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/online-course-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:35:\"[\"404\",\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:462;s:16:\"popularity_index\";i:682;s:11:\"trend_index\";i:498;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:657;a:20:{s:4:\"tmpl\";i:987;s:2:\"id\";i:13387;s:5:\"title\";s:32:\"Online Course &#8211; End Lesson\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Lesson-End-.jpg\";s:12:\"tmpl_created\";i:1587474682;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/online-course-end-lesson/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:464;s:16:\"popularity_index\";i:653;s:11:\"trend_index\";i:408;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:658;a:20:{s:4:\"tmpl\";i:989;s:2:\"id\";i:13369;s:5:\"title\";s:28:\"Online Course &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/04/Footer.jpg\";s:12:\"tmpl_created\";i:1587474701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/online-course-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:38:\"[\"Course Online\",\"Education\",\"Footer\"]\";s:10:\"menu_order\";i:466;s:16:\"popularity_index\";i:389;s:11:\"trend_index\";i:308;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:659;a:20:{s:4:\"tmpl\";i:988;s:2:\"id\";i:13378;s:5:\"title\";s:28:\"Online Course &#8211; Header\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-education-online-courses.jpg\";s:12:\"tmpl_created\";i:1587474693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/online-course-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:38:\"[\"Course Online\",\"Education\",\"Header\"]\";s:10:\"menu_order\";i:469;s:16:\"popularity_index\";i:492;s:11:\"trend_index\";i:519;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:660;a:20:{s:4:\"tmpl\";i:986;s:2:\"id\";i:13395;s:5:\"title\";s:34:\"Online Course &#8211; Start Lesson\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/04/Lesson-Start.jpg\";s:12:\"tmpl_created\";i:1587474673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/online-course-start-lesson/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:471;s:16:\"popularity_index\";i:672;s:11:\"trend_index\";i:578;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:661;a:20:{s:4:\"tmpl\";i:953;s:2:\"id\";i:13089;s:5:\"title\";s:23:\"Photography &#8211; 404\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/02/404_s.png\";s:12:\"tmpl_created\";i:1582091623;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/photography-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:33:\"[\"404\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:473;s:16:\"popularity_index\";i:702;s:11:\"trend_index\";i:706;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:662;a:20:{s:4:\"tmpl\";i:954;s:2:\"id\";i:13096;s:5:\"title\";s:32:\"Photography &#8211; Archiv Media\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Archiv_s.png\";s:12:\"tmpl_created\";i:1582091742;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/photography-archiv-media/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:475;s:16:\"popularity_index\";i:631;s:11:\"trend_index\";i:405;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:663;a:20:{s:4:\"tmpl\";i:955;s:2:\"id\";i:13103;s:5:\"title\";s:26:\"Photography &#8211; Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Footer_s.png\";s:12:\"tmpl_created\";i:1582091903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/photography-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:36:\"[\"Footer\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:477;s:16:\"popularity_index\";i:422;s:11:\"trend_index\";i:230;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:664;a:20:{s:4:\"tmpl\";i:957;s:2:\"id\";i:13112;s:5:\"title\";s:26:\"Photography &#8211; Header\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-photography-portfolio.png\";s:12:\"tmpl_created\";i:1582092483;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/photography-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:36:\"[\"Header\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:478;s:16:\"popularity_index\";i:325;s:11:\"trend_index\";i:205;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:665;a:20:{s:4:\"tmpl\";i:956;s:2:\"id\";i:13120;s:5:\"title\";s:31:\"Photography &#8211; Single Post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Post_s.png\";s:12:\"tmpl_created\";i:1582092351;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/photography-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:480;s:16:\"popularity_index\";i:671;s:11:\"trend_index\";i:645;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:666;a:20:{s:4:\"tmpl\";i:901;s:2:\"id\";i:11807;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/09/404_small.png\";s:12:\"tmpl_created\";i:1569430070;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:40:\"[\"404\",\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:483;s:16:\"popularity_index\";i:480;s:11:\"trend_index\";i:497;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:667;a:20:{s:4:\"tmpl\";i:900;s:2:\"id\";i:11832;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Footer_small.png\";s:12:\"tmpl_created\";i:1569430019;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:43:\"[\"Creative Portfolio\",\"Footer\",\"Portfolio\"]\";s:10:\"menu_order\";i:484;s:16:\"popularity_index\";i:246;s:11:\"trend_index\";i:102;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:668;a:20:{s:4:\"tmpl\";i:898;s:2:\"id\";i:11847;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Archiv_small.png\";s:12:\"tmpl_created\";i:1569430010;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:487;s:16:\"popularity_index\";i:336;s:11:\"trend_index\";i:455;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:669;a:20:{s:4:\"tmpl\";i:897;s:2:\"id\";i:11854;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/09/Post_small.png\";s:12:\"tmpl_created\";i:1569429983;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:489;s:16:\"popularity_index\";i:482;s:11:\"trend_index\";i:609;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:670;a:20:{s:4:\"tmpl\";i:904;s:2:\"id\";i:11890;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-design-portfolio.png\";s:12:\"tmpl_created\";i:1571907344;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"Creative Portfolio\",\"Header\",\"Portfolio\"]\";s:10:\"menu_order\";i:491;s:16:\"popularity_index\";i:306;s:11:\"trend_index\";i:364;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:671;a:20:{s:4:\"tmpl\";i:896;s:2:\"id\";i:11861;s:5:\"title\";s:27:\"Portfolio &#8211; Project 1\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project1_small.png\";s:12:\"tmpl_created\";i:1569429975;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/portfolio-project-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:493;s:16:\"popularity_index\";i:643;s:11:\"trend_index\";i:764;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:672;a:20:{s:4:\"tmpl\";i:895;s:2:\"id\";i:11870;s:5:\"title\";s:27:\"Portfolio &#8211; Project 2\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project2_small.png\";s:12:\"tmpl_created\";i:1569429964;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/portfolio-project-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:495;s:16:\"popularity_index\";i:662;s:11:\"trend_index\";i:816;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:673;a:20:{s:4:\"tmpl\";i:903;s:2:\"id\";i:11897;s:5:\"title\";s:27:\"Portfolio &#8211; Project 2\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project2_small.png\";s:12:\"tmpl_created\";i:1569494236;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/portfolio-project-2-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:496;s:16:\"popularity_index\";i:733;s:11:\"trend_index\";i:744;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:674;a:20:{s:4:\"tmpl\";i:894;s:2:\"id\";i:11877;s:5:\"title\";s:27:\"Portfolio &#8211; Project 3\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project3_small.png\";s:12:\"tmpl_created\";i:1569429954;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/portfolio-project-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:498;s:16:\"popularity_index\";i:692;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:675;a:20:{s:4:\"tmpl\";i:597;s:2:\"id\";i:5019;s:5:\"title\";s:11:\"Portfolio 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_1.png\";s:12:\"tmpl_created\";i:1520520580;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:500;s:16:\"popularity_index\";i:170;s:11:\"trend_index\";i:236;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:676;a:20:{s:4:\"tmpl\";i:609;s:2:\"id\";i:5141;s:5:\"title\";s:12:\"Portfolio 10\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_10.png\";s:12:\"tmpl_created\";i:1520520601;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:503;s:16:\"popularity_index\";i:416;s:11:\"trend_index\";i:478;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:677;a:20:{s:4:\"tmpl\";i:598;s:2:\"id\";i:5027;s:5:\"title\";s:12:\"Portfolio 11\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_2.png\";s:12:\"tmpl_created\";i:1520520581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:504;s:16:\"popularity_index\";i:304;s:11:\"trend_index\";i:421;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:678;a:20:{s:4:\"tmpl\";i:599;s:2:\"id\";i:5037;s:5:\"title\";s:12:\"Portfolio 12\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_3.png\";s:12:\"tmpl_created\";i:1520520583;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:507;s:16:\"popularity_index\";i:279;s:11:\"trend_index\";i:399;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:679;a:20:{s:4:\"tmpl\";i:600;s:2:\"id\";i:5057;s:5:\"title\";s:12:\"Portfolio 13\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_4.png\";s:12:\"tmpl_created\";i:1520520586;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:509;s:16:\"popularity_index\";i:239;s:11:\"trend_index\";i:288;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:680;a:20:{s:4:\"tmpl\";i:601;s:2:\"id\";i:5071;s:5:\"title\";s:12:\"Portfolio 14\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_5.png\";s:12:\"tmpl_created\";i:1520520588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:511;s:16:\"popularity_index\";i:276;s:11:\"trend_index\";i:329;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:681;a:20:{s:4:\"tmpl\";i:603;s:2:\"id\";i:5090;s:5:\"title\";s:12:\"Portfolio 15\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_6.png\";s:12:\"tmpl_created\";i:1520520591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:513;s:16:\"popularity_index\";i:186;s:11:\"trend_index\";i:283;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:682;a:20:{s:4:\"tmpl\";i:604;s:2:\"id\";i:5098;s:5:\"title\";s:12:\"Portfolio 16\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_7.png\";s:12:\"tmpl_created\";i:1520520593;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:515;s:16:\"popularity_index\";i:156;s:11:\"trend_index\";i:211;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:683;a:20:{s:4:\"tmpl\";i:606;s:2:\"id\";i:5115;s:5:\"title\";s:12:\"Portfolio 17\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_8.png\";s:12:\"tmpl_created\";i:1520520596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:517;s:16:\"popularity_index\";i:19;s:11:\"trend_index\";i:22;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:684;a:20:{s:4:\"tmpl\";i:608;s:2:\"id\";i:5133;s:5:\"title\";s:12:\"Portfolio 18\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_9.png\";s:12:\"tmpl_created\";i:1520520599;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:519;s:16:\"popularity_index\";i:180;s:11:\"trend_index\";i:280;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:685;a:20:{s:4:\"tmpl\";i:610;s:2:\"id\";i:5149;s:5:\"title\";s:11:\"Portfolio 2\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_10.png\";s:12:\"tmpl_created\";i:1520520602;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:521;s:16:\"popularity_index\";i:413;s:11:\"trend_index\";i:635;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:686;a:20:{s:4:\"tmpl\";i:468;s:2:\"id\";i:5045;s:5:\"title\";s:11:\"Portfolio 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_2.png\";s:12:\"tmpl_created\";i:1520443423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:523;s:16:\"popularity_index\";i:636;s:11:\"trend_index\";i:608;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:687;a:20:{s:4:\"tmpl\";i:602;s:2:\"id\";i:5082;s:5:\"title\";s:11:\"Portfolio 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_4.png\";s:12:\"tmpl_created\";i:1520520589;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:524;s:16:\"popularity_index\";i:558;s:11:\"trend_index\";i:654;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:688;a:20:{s:4:\"tmpl\";i:605;s:2:\"id\";i:5107;s:5:\"title\";s:11:\"Portfolio 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_7.png\";s:12:\"tmpl_created\";i:1520520594;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:527;s:16:\"popularity_index\";i:380;s:11:\"trend_index\";i:347;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:689;a:20:{s:4:\"tmpl\";i:607;s:2:\"id\";i:5125;s:5:\"title\";s:11:\"Portfolio 6\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_8.png\";s:12:\"tmpl_created\";i:1520520597;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:529;s:16:\"popularity_index\";i:236;s:11:\"trend_index\";i:386;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:690;a:20:{s:4:\"tmpl\";i:596;s:2:\"id\";i:5007;s:5:\"title\";s:11:\"Portfolio 7\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_1.png\";s:12:\"tmpl_created\";i:1520520578;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:530;s:16:\"popularity_index\";i:44;s:11:\"trend_index\";i:183;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:691;a:20:{s:4:\"tmpl\";i:434;s:2:\"id\";i:4509;s:5:\"title\";s:9:\"Pricing 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_1.png\";s:12:\"tmpl_created\";i:1520443310;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:532;s:16:\"popularity_index\";i:703;s:11:\"trend_index\";i:641;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:692;a:20:{s:4:\"tmpl\";i:439;s:2:\"id\";i:4553;s:5:\"title\";s:10:\"Pricing 10\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_4.png\";s:12:\"tmpl_created\";i:1520443319;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:534;s:16:\"popularity_index\";i:511;s:11:\"trend_index\";i:506;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:693;a:20:{s:4:\"tmpl\";i:441;s:2:\"id\";i:4572;s:5:\"title\";s:10:\"Pricing 11\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_5.png\";s:12:\"tmpl_created\";i:1520443324;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:537;s:16:\"popularity_index\";i:308;s:11:\"trend_index\";i:248;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:694;a:20:{s:4:\"tmpl\";i:442;s:2:\"id\";i:4580;s:5:\"title\";s:10:\"Pricing 12\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_6.png\";s:12:\"tmpl_created\";i:1520443326;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:539;s:16:\"popularity_index\";i:576;s:11:\"trend_index\";i:526;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:695;a:20:{s:4:\"tmpl\";i:444;s:2:\"id\";i:4597;s:5:\"title\";s:10:\"Pricing 13\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_7.png\";s:12:\"tmpl_created\";i:1520443330;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:540;s:16:\"popularity_index\";i:613;s:11:\"trend_index\";i:450;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:696;a:20:{s:4:\"tmpl\";i:446;s:2:\"id\";i:4613;s:5:\"title\";s:10:\"Pricing 14\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_8.png\";s:12:\"tmpl_created\";i:1520443334;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:543;s:16:\"popularity_index\";i:581;s:11:\"trend_index\";i:568;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:697;a:20:{s:4:\"tmpl\";i:436;s:2:\"id\";i:4529;s:5:\"title\";s:9:\"Pricing 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_2.png\";s:12:\"tmpl_created\";i:1520443314;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:545;s:16:\"popularity_index\";i:609;s:11:\"trend_index\";i:613;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:698;a:20:{s:4:\"tmpl\";i:438;s:2:\"id\";i:4545;s:5:\"title\";s:9:\"Pricing 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_3.png\";s:12:\"tmpl_created\";i:1520443317;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:547;s:16:\"popularity_index\";i:707;s:11:\"trend_index\";i:825;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:699;a:20:{s:4:\"tmpl\";i:440;s:2:\"id\";i:4562;s:5:\"title\";s:9:\"Pricing 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_4.png\";s:12:\"tmpl_created\";i:1520443322;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:549;s:16:\"popularity_index\";i:697;s:11:\"trend_index\";i:821;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:700;a:20:{s:4:\"tmpl\";i:443;s:2:\"id\";i:4589;s:5:\"title\";s:9:\"Pricing 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_6.png\";s:12:\"tmpl_created\";i:1520443327;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:551;s:16:\"popularity_index\";i:716;s:11:\"trend_index\";i:639;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:701;a:20:{s:4:\"tmpl\";i:445;s:2:\"id\";i:4605;s:5:\"title\";s:9:\"Pricing 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_7.png\";s:12:\"tmpl_created\";i:1520443332;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:553;s:16:\"popularity_index\";i:738;s:11:\"trend_index\";i:773;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:702;a:20:{s:4:\"tmpl\";i:433;s:2:\"id\";i:4500;s:5:\"title\";s:9:\"Pricing 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_1.png\";s:12:\"tmpl_created\";i:1520443308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:554;s:16:\"popularity_index\";i:500;s:11:\"trend_index\";i:451;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:703;a:20:{s:4:\"tmpl\";i:435;s:2:\"id\";i:4521;s:5:\"title\";s:9:\"Pricing 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_2.png\";s:12:\"tmpl_created\";i:1520443312;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:557;s:16:\"popularity_index\";i:311;s:11:\"trend_index\";i:372;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:704;a:20:{s:4:\"tmpl\";i:437;s:2:\"id\";i:4537;s:5:\"title\";s:9:\"Pricing 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_3.png\";s:12:\"tmpl_created\";i:1520443315;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:559;s:16:\"popularity_index\";i:589;s:11:\"trend_index\";i:841;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:705;a:20:{s:4:\"tmpl\";i:1046;s:2:\"id\";i:15204;s:5:\"title\";s:24:\"Psychologist &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/09/404.jpg\";s:12:\"tmpl_created\";i:1600161419;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/psychologist-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:40:\"[\"404\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:564;s:16:\"popularity_index\";i:574;s:11:\"trend_index\";i:493;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:706;a:20:{s:4:\"tmpl\";i:1047;s:2:\"id\";i:15212;s:5:\"title\";s:28:\"Psychologist &#8211; Archive\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/09/Blog.jpg\";s:12:\"tmpl_created\";i:1600162340;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/psychologist-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:565;s:16:\"popularity_index\";i:379;s:11:\"trend_index\";i:358;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:707;a:20:{s:4:\"tmpl\";i:1048;s:2:\"id\";i:15219;s:5:\"title\";s:27:\"Psychologist &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/09/Footer.jpg\";s:12:\"tmpl_created\";i:1600163069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/psychologist-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:43:\"[\"Footer\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:566;s:16:\"popularity_index\";i:599;s:11:\"trend_index\";i:500;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:708;a:20:{s:4:\"tmpl\";i:701;s:2:\"id\";i:9239;s:5:\"title\";s:17:\"product archive 1\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-1.png\";s:12:\"tmpl_created\";i:1532953482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/product-archive-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:566;s:16:\"popularity_index\";i:60;s:11:\"trend_index\";i:25;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:709;a:20:{s:4:\"tmpl\";i:1049;s:2:\"id\";i:15230;s:5:\"title\";s:27:\"Psychologist &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/09/Header.png\";s:12:\"tmpl_created\";i:1600163444;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/psychologist-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"Header\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:567;s:16:\"popularity_index\";i:429;s:11:\"trend_index\";i:423;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:710;a:20:{s:4:\"tmpl\";i:702;s:2:\"id\";i:9247;s:5:\"title\";s:17:\"product archive 2\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-2.png\";s:12:\"tmpl_created\";i:1532953793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/product-archive-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:567;s:16:\"popularity_index\";i:71;s:11:\"trend_index\";i:30;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:711;a:20:{s:4:\"tmpl\";i:1050;s:2:\"id\";i:15240;s:5:\"title\";s:34:\"Psychologist &#8211; single post 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/09/Single-Post.png\";s:12:\"tmpl_created\";i:1600164087;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/psychologist-single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:568;s:16:\"popularity_index\";i:562;s:11:\"trend_index\";i:570;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:712;a:20:{s:4:\"tmpl\";i:703;s:2:\"id\";i:9254;s:5:\"title\";s:17:\"product archive 3\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-3.png\";s:12:\"tmpl_created\";i:1532954032;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/product-archive-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:568;s:16:\"popularity_index\";i:73;s:11:\"trend_index\";i:44;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:713;a:20:{s:4:\"tmpl\";i:1051;s:2:\"id\";i:15251;s:5:\"title\";s:34:\"Psychologist &#8211; single post 2\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2020/09/Single-Service-Page.png\";s:12:\"tmpl_created\";i:1600165179;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/psychologist-single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:569;s:16:\"popularity_index\";i:507;s:11:\"trend_index\";i:368;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:714;a:20:{s:4:\"tmpl\";i:412;s:2:\"id\";i:4313;s:5:\"title\";s:11:\"Services 13\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_8.png\";s:12:\"tmpl_created\";i:1520443268;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:570;s:16:\"popularity_index\";i:115;s:11:\"trend_index\";i:53;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:715;a:20:{s:4:\"tmpl\";i:413;s:2:\"id\";i:4324;s:5:\"title\";s:11:\"Services 14\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_9.png\";s:12:\"tmpl_created\";i:1520443270;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:571;s:16:\"popularity_index\";i:277;s:11:\"trend_index\";i:138;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:716;a:20:{s:4:\"tmpl\";i:418;s:2:\"id\";i:4368;s:5:\"title\";s:11:\"Services 16\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_13.png\";s:12:\"tmpl_created\";i:1520443279;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:572;s:16:\"popularity_index\";i:62;s:11:\"trend_index\";i:59;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:717;a:20:{s:4:\"tmpl\";i:420;s:2:\"id\";i:4391;s:5:\"title\";s:11:\"Services 17\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_14.png\";s:12:\"tmpl_created\";i:1520443283;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:573;s:16:\"popularity_index\";i:153;s:11:\"trend_index\";i:120;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:718;a:20:{s:4:\"tmpl\";i:403;s:2:\"id\";i:4235;s:5:\"title\";s:11:\"Services 18\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_2.png\";s:12:\"tmpl_created\";i:1520443251;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:574;s:16:\"popularity_index\";i:273;s:11:\"trend_index\";i:172;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:719;a:20:{s:4:\"tmpl\";i:417;s:2:\"id\";i:4357;s:5:\"title\";s:11:\"Services 20\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_12.png\";s:12:\"tmpl_created\";i:1520443277;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:575;s:16:\"popularity_index\";i:45;s:11:\"trend_index\";i:45;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:720;a:20:{s:4:\"tmpl\";i:415;s:2:\"id\";i:4341;s:5:\"title\";s:11:\"Services 21\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_11.png\";s:12:\"tmpl_created\";i:1520443274;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:576;s:16:\"popularity_index\";i:142;s:11:\"trend_index\";i:114;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:721;a:20:{s:4:\"tmpl\";i:414;s:2:\"id\";i:4332;s:5:\"title\";s:11:\"Services 22\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_10.png\";s:12:\"tmpl_created\";i:1520443272;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-22/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:577;s:16:\"popularity_index\";i:138;s:11:\"trend_index\";i:149;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:722;a:20:{s:4:\"tmpl\";i:401;s:2:\"id\";i:4212;s:5:\"title\";s:11:\"Services 23\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_1.png\";s:12:\"tmpl_created\";i:1520443248;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-23/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:578;s:16:\"popularity_index\";i:136;s:11:\"trend_index\";i:302;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:723;a:20:{s:4:\"tmpl\";i:408;s:2:\"id\";i:4276;s:5:\"title\";s:11:\"Services 24\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_4.png\";s:12:\"tmpl_created\";i:1520443261;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-24/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:579;s:16:\"popularity_index\";i:353;s:11:\"trend_index\";i:514;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:724;a:20:{s:4:\"tmpl\";i:406;s:2:\"id\";i:4260;s:5:\"title\";s:11:\"Services 25\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_3.png\";s:12:\"tmpl_created\";i:1520443257;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-25/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:580;s:16:\"popularity_index\";i:184;s:11:\"trend_index\";i:209;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:725;a:20:{s:4:\"tmpl\";i:404;s:2:\"id\";i:4244;s:5:\"title\";s:11:\"Services 26\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_2.png\";s:12:\"tmpl_created\";i:1520443253;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-26/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:581;s:16:\"popularity_index\";i:544;s:11:\"trend_index\";i:596;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:726;a:20:{s:4:\"tmpl\";i:421;s:2:\"id\";i:4400;s:5:\"title\";s:11:\"Services 27\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_13.png\";s:12:\"tmpl_created\";i:1520443285;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-27/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:582;s:16:\"popularity_index\";i:286;s:11:\"trend_index\";i:438;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:727;a:20:{s:4:\"tmpl\";i:419;s:2:\"id\";i:4376;s:5:\"title\";s:11:\"Services 28\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_12.png\";s:12:\"tmpl_created\";i:1520443281;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-28/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:583;s:16:\"popularity_index\";i:151;s:11:\"trend_index\";i:249;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:728;a:20:{s:4:\"tmpl\";i:416;s:2:\"id\";i:4349;s:5:\"title\";s:11:\"Services 29\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_11.png\";s:12:\"tmpl_created\";i:1520443275;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-29/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:584;s:16:\"popularity_index\";i:330;s:11:\"trend_index\";i:483;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:729;a:20:{s:4:\"tmpl\";i:402;s:2:\"id\";i:4227;s:5:\"title\";s:11:\"Services 30\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_1.png\";s:12:\"tmpl_created\";i:1520443250;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-30/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:585;s:16:\"popularity_index\";i:351;s:11:\"trend_index\";i:553;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:730;a:20:{s:4:\"tmpl\";i:560;s:2:\"id\";i:6162;s:5:\"title\";s:11:\"Services 31\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_1.png\";s:12:\"tmpl_created\";i:1520443668;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-31/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:586;s:16:\"popularity_index\";i:372;s:11:\"trend_index\";i:550;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:731;a:20:{s:4:\"tmpl\";i:411;s:2:\"id\";i:4302;s:5:\"title\";s:10:\"Services 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_7.png\";s:12:\"tmpl_created\";i:1520443266;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:587;s:16:\"popularity_index\";i:58;s:11:\"trend_index\";i:97;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:732;a:20:{s:4:\"tmpl\";i:410;s:2:\"id\";i:4293;s:5:\"title\";s:10:\"Services 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_6.png\";s:12:\"tmpl_created\";i:1520443265;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:588;s:16:\"popularity_index\";i:288;s:11:\"trend_index\";i:269;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:733;a:20:{s:4:\"tmpl\";i:409;s:2:\"id\";i:4284;s:5:\"title\";s:10:\"Services 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_5.png\";s:12:\"tmpl_created\";i:1520443263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:589;s:16:\"popularity_index\";i:27;s:11:\"trend_index\";i:21;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:734;a:20:{s:4:\"tmpl\";i:407;s:2:\"id\";i:4268;s:5:\"title\";s:10:\"Services 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_4.png\";s:12:\"tmpl_created\";i:1520443259;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:590;s:16:\"popularity_index\";i:173;s:11:\"trend_index\";i:213;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:735;a:20:{s:4:\"tmpl\";i:405;s:2:\"id\";i:4252;s:5:\"title\";s:10:\"Services 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_3.png\";s:12:\"tmpl_created\";i:1520443255;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:591;s:16:\"popularity_index\";i:46;s:11:\"trend_index\";i:99;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:736;a:20:{s:4:\"tmpl\";i:677;s:2:\"id\";i:8676;s:5:\"title\";s:13:\"single page 1\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.6.jpg\";s:12:\"tmpl_created\";i:1527682423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:592;s:16:\"popularity_index\";i:285;s:11:\"trend_index\";i:145;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:737;a:20:{s:4:\"tmpl\";i:678;s:2:\"id\";i:8678;s:5:\"title\";s:13:\"single page 2\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.2.jpg\";s:12:\"tmpl_created\";i:1527682780;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:593;s:16:\"popularity_index\";i:140;s:11:\"trend_index\";i:82;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:738;a:20:{s:4:\"tmpl\";i:679;s:2:\"id\";i:8679;s:5:\"title\";s:13:\"single page 3\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.3.jpg\";s:12:\"tmpl_created\";i:1527682847;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:594;s:16:\"popularity_index\";i:122;s:11:\"trend_index\";i:23;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:739;a:20:{s:4:\"tmpl\";i:680;s:2:\"id\";i:8680;s:5:\"title\";s:13:\"single page 4\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.1.jpg\";s:12:\"tmpl_created\";i:1527682896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:595;s:16:\"popularity_index\";i:373;s:11:\"trend_index\";i:190;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:740;a:20:{s:4:\"tmpl\";i:681;s:2:\"id\";i:8681;s:5:\"title\";s:13:\"single page 5\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.5.jpg\";s:12:\"tmpl_created\";i:1527682969;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:596;s:16:\"popularity_index\";i:287;s:11:\"trend_index\";i:218;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:741;a:20:{s:4:\"tmpl\";i:682;s:2:\"id\";i:8682;s:5:\"title\";s:13:\"single page 6\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.4.jpg\";s:12:\"tmpl_created\";i:1527683026;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:597;s:16:\"popularity_index\";i:412;s:11:\"trend_index\";i:227;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:742;a:20:{s:4:\"tmpl\";i:683;s:2:\"id\";i:8703;s:5:\"title\";s:13:\"single page 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.7.jpg\";s:12:\"tmpl_created\";i:1527683072;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:598;s:16:\"popularity_index\";i:401;s:11:\"trend_index\";i:316;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:743;a:20:{s:4:\"tmpl\";i:640;s:2:\"id\";i:7650;s:5:\"title\";s:13:\"Single Post 1\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/single_post_1_v2.jpg\";s:12:\"tmpl_created\";i:1521557736;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:24:\"[\"Blog\",\"Post\",\"Single\"]\";s:10:\"menu_order\";i:599;s:16:\"popularity_index\";i:119;s:11:\"trend_index\";i:266;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:744;a:20:{s:4:\"tmpl\";i:639;s:2:\"id\";i:7663;s:5:\"title\";s:13:\"Single Post 2\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/single_post_2_v2.jpg\";s:12:\"tmpl_created\";i:1521547761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:24:\"[\"Blog\",\"Post\",\"Single\"]\";s:10:\"menu_order\";i:600;s:16:\"popularity_index\";i:50;s:11:\"trend_index\";i:139;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:745;a:20:{s:4:\"tmpl\";i:705;s:2:\"id\";i:9296;s:5:\"title\";s:13:\"Single Post 3\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3002.jpg\";s:12:\"tmpl_created\";i:1537440673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:601;s:16:\"popularity_index\";i:213;s:11:\"trend_index\";i:204;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:746;a:20:{s:4:\"tmpl\";i:704;s:2:\"id\";i:9301;s:5:\"title\";s:13:\"Single Post 4\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3003.jpg\";s:12:\"tmpl_created\";i:1537440661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:602;s:16:\"popularity_index\";i:248;s:11:\"trend_index\";i:336;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:747;a:20:{s:4:\"tmpl\";i:706;s:2:\"id\";i:9313;s:5:\"title\";s:13:\"Single Post 5\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3001.jpg\";s:12:\"tmpl_created\";i:1537440798;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:603;s:16:\"popularity_index\";i:197;s:11:\"trend_index\";i:177;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:748;a:20:{s:4:\"tmpl\";i:707;s:2:\"id\";i:9343;s:5:\"title\";s:13:\"Single Post 6\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3004.jpg\";s:12:\"tmpl_created\";i:1537443531;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:604;s:16:\"popularity_index\";i:228;s:11:\"trend_index\";i:279;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:749;a:20:{s:4:\"tmpl\";i:708;s:2:\"id\";i:9349;s:5:\"title\";s:13:\"Single Post 7\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3005.jpg\";s:12:\"tmpl_created\";i:1537443903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:605;s:16:\"popularity_index\";i:158;s:11:\"trend_index\";i:253;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:750;a:20:{s:4:\"tmpl\";i:555;s:2:\"id\";i:6114;s:5:\"title\";s:7:\"Stats 1\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_6.png\";s:12:\"tmpl_created\";i:1520443659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:610;s:16:\"popularity_index\";i:434;s:11:\"trend_index\";i:692;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:751;a:20:{s:4:\"tmpl\";i:562;s:2:\"id\";i:6178;s:5:\"title\";s:8:\"Stats 10\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_2.png\";s:12:\"tmpl_created\";i:1520443676;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:611;s:16:\"popularity_index\";i:435;s:11:\"trend_index\";i:755;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:752;a:20:{s:4:\"tmpl\";i:561;s:2:\"id\";i:6170;s:5:\"title\";s:8:\"Stats 11\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_2.png\";s:12:\"tmpl_created\";i:1520443670;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:612;s:16:\"popularity_index\";i:366;s:11:\"trend_index\";i:552;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:753;a:20:{s:4:\"tmpl\";i:697;s:2:\"id\";i:9174;s:5:\"title\";s:17:\"single product 01\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product01_350.png\";s:12:\"tmpl_created\";i:1532950125;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-01/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:612;s:16:\"popularity_index\";i:31;s:11:\"trend_index\";i:6;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:754;a:20:{s:4:\"tmpl\";i:563;s:2:\"id\";i:6186;s:5:\"title\";s:8:\"Stats 12\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_3.png\";s:12:\"tmpl_created\";i:1520443678;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:613;s:16:\"popularity_index\";i:569;s:11:\"trend_index\";i:811;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:755;a:20:{s:4:\"tmpl\";i:698;s:2:\"id\";i:9178;s:5:\"title\";s:17:\"single product 02\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product02_350new.png\";s:12:\"tmpl_created\";i:1532951997;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-02/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:613;s:16:\"popularity_index\";i:66;s:11:\"trend_index\";i:42;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:756;a:20:{s:4:\"tmpl\";i:550;s:2:\"id\";i:6071;s:5:\"title\";s:8:\"Stats 13\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_3.png\";s:12:\"tmpl_created\";i:1520443649;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:614;s:16:\"popularity_index\";i:168;s:11:\"trend_index\";i:328;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:757;a:20:{s:4:\"tmpl\";i:699;s:2:\"id\";i:9180;s:5:\"title\";s:17:\"single product 03\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product03_350.png\";s:12:\"tmpl_created\";i:1532952302;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-03/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:614;s:16:\"popularity_index\";i:108;s:11:\"trend_index\";i:66;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:758;a:20:{s:4:\"tmpl\";i:554;s:2:\"id\";i:6106;s:5:\"title\";s:7:\"Stats 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_6.png\";s:12:\"tmpl_created\";i:1520443657;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:615;s:16:\"popularity_index\";i:361;s:11:\"trend_index\";i:784;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:759;a:20:{s:4:\"tmpl\";i:700;s:2:\"id\";i:9182;s:5:\"title\";s:17:\"single product 04\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product040_350.png\";s:12:\"tmpl_created\";i:1532952606;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-04/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:615;s:16:\"popularity_index\";i:123;s:11:\"trend_index\";i:81;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:760;a:20:{s:4:\"tmpl\";i:551;s:2:\"id\";i:6079;s:5:\"title\";s:7:\"Stats 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_4.png\";s:12:\"tmpl_created\";i:1520443651;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:616;s:16:\"popularity_index\";i:284;s:11:\"trend_index\";i:385;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:761;a:20:{s:4:\"tmpl\";i:552;s:2:\"id\";i:6089;s:5:\"title\";s:7:\"Stats 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_5.png\";s:12:\"tmpl_created\";i:1520443653;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:617;s:16:\"popularity_index\";i:205;s:11:\"trend_index\";i:452;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:762;a:20:{s:4:\"tmpl\";i:549;s:2:\"id\";i:6063;s:5:\"title\";s:7:\"Stats 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_2.png\";s:12:\"tmpl_created\";i:1520443647;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:618;s:16:\"popularity_index\";i:181;s:11:\"trend_index\";i:419;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:763;a:20:{s:4:\"tmpl\";i:553;s:2:\"id\";i:6097;s:5:\"title\";s:7:\"Stats 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_2.png\";s:12:\"tmpl_created\";i:1520443655;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:619;s:16:\"popularity_index\";i:264;s:11:\"trend_index\";i:492;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:764;a:20:{s:4:\"tmpl\";i:538;s:2:\"id\";i:5956;s:5:\"title\";s:7:\"Stats 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_1.png\";s:12:\"tmpl_created\";i:1520443623;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:620;s:16:\"popularity_index\";i:532;s:11:\"trend_index\";i:541;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:765;a:20:{s:4:\"tmpl\";i:537;s:2:\"id\";i:5947;s:5:\"title\";s:7:\"Stats 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_1.png\";s:12:\"tmpl_created\";i:1520443621;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:621;s:16:\"popularity_index\";i:368;s:11:\"trend_index\";i:531;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:766;a:20:{s:4:\"tmpl\";i:559;s:2:\"id\";i:6152;s:5:\"title\";s:7:\"Stats 9\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_1.png\";s:12:\"tmpl_created\";i:1520443666;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:622;s:16:\"popularity_index\";i:272;s:11:\"trend_index\";i:557;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:767;a:20:{s:4:\"tmpl\";i:469;s:2:\"id\";i:5157;s:5:\"title\";s:11:\"Subscribe 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_white_1.png\";s:12:\"tmpl_created\";i:1520443448;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:623;s:16:\"popularity_index\";i:340;s:11:\"trend_index\";i:293;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:768;a:20:{s:4:\"tmpl\";i:472;s:2:\"id\";i:5181;s:5:\"title\";s:11:\"Subscribe 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_2.png\";s:12:\"tmpl_created\";i:1520443454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/subscribe-2-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:624;s:16:\"popularity_index\";i:451;s:11:\"trend_index\";i:340;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:769;a:20:{s:4:\"tmpl\";i:470;s:2:\"id\";i:5165;s:5:\"title\";s:11:\"Subscribe 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_1.png\";s:12:\"tmpl_created\";i:1520443450;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:625;s:16:\"popularity_index\";i:520;s:11:\"trend_index\";i:620;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:770;a:20:{s:4:\"tmpl\";i:477;s:2:\"id\";i:5222;s:5:\"title\";s:11:\"Subscribe 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_3.png\";s:12:\"tmpl_created\";i:1520443464;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:626;s:16:\"popularity_index\";i:397;s:11:\"trend_index\";i:427;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:771;a:20:{s:4:\"tmpl\";i:471;s:2:\"id\";i:5173;s:5:\"title\";s:11:\"Subscribe 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_white_2.png\";s:12:\"tmpl_created\";i:1520443452;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:627;s:16:\"popularity_index\";i:261;s:11:\"trend_index\";i:237;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:772;a:20:{s:4:\"tmpl\";i:465;s:2:\"id\";i:4801;s:5:\"title\";s:7:\"Team 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_8.png\";s:12:\"tmpl_created\";i:1520443369;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:628;s:16:\"popularity_index\";i:332;s:11:\"trend_index\";i:188;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:773;a:20:{s:4:\"tmpl\";i:462;s:2:\"id\";i:4770;s:5:\"title\";s:7:\"Team 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_6.png\";s:12:\"tmpl_created\";i:1520443364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/team-12-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:629;s:16:\"popularity_index\";i:432;s:11:\"trend_index\";i:488;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:774;a:20:{s:4:\"tmpl\";i:458;s:2:\"id\";i:4727;s:5:\"title\";s:7:\"Team 13\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_2.png\";s:12:\"tmpl_created\";i:1520443356;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:630;s:16:\"popularity_index\";i:375;s:11:\"trend_index\";i:345;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:775;a:20:{s:4:\"tmpl\";i:543;s:2:\"id\";i:5999;s:5:\"title\";s:7:\"Team 14\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_10.png\";s:12:\"tmpl_created\";i:1520443634;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:631;s:16:\"popularity_index\";i:110;s:11:\"trend_index\";i:318;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:776;a:20:{s:4:\"tmpl\";i:455;s:2:\"id\";i:4698;s:5:\"title\";s:7:\"Team 15\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_1.png\";s:12:\"tmpl_created\";i:1520443350;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:632;s:16:\"popularity_index\";i:449;s:11:\"trend_index\";i:410;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:777;a:20:{s:4:\"tmpl\";i:463;s:2:\"id\";i:4781;s:5:\"title\";s:7:\"Team 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_7.png\";s:12:\"tmpl_created\";i:1520443365;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:633;s:16:\"popularity_index\";i:267;s:11:\"trend_index\";i:330;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:778;a:20:{s:4:\"tmpl\";i:558;s:2:\"id\";i:6144;s:5:\"title\";s:7:\"Team 17\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_11.png\";s:12:\"tmpl_created\";i:1520443664;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:634;s:16:\"popularity_index\";i:166;s:11:\"trend_index\";i:365;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:779;a:20:{s:4:\"tmpl\";i:464;s:2:\"id\";i:4793;s:5:\"title\";s:7:\"Team 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_8.png\";s:12:\"tmpl_created\";i:1520443367;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:635;s:16:\"popularity_index\";i:207;s:11:\"trend_index\";i:173;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:780;a:20:{s:4:\"tmpl\";i:466;s:2:\"id\";i:4809;s:5:\"title\";s:7:\"Team 19\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_9.png\";s:12:\"tmpl_created\";i:1520443371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:636;s:16:\"popularity_index\";i:300;s:11:\"trend_index\";i:465;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:781;a:20:{s:4:\"tmpl\";i:459;s:2:\"id\";i:4736;s:5:\"title\";s:7:\"Team 20\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_4.png\";s:12:\"tmpl_created\";i:1520443358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:637;s:16:\"popularity_index\";i:144;s:11:\"trend_index\";i:159;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:782;a:20:{s:4:\"tmpl\";i:467;s:2:\"id\";i:4818;s:5:\"title\";s:7:\"Team 21\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_9.png\";s:12:\"tmpl_created\";i:1520443373;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:638;s:16:\"popularity_index\";i:515;s:11:\"trend_index\";i:606;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:783;a:20:{s:4:\"tmpl\";i:461;s:2:\"id\";i:4759;s:5:\"title\";s:7:\"Team 22\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_5.png\";s:12:\"tmpl_created\";i:1520443362;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-22/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:639;s:16:\"popularity_index\";i:299;s:11:\"trend_index\";i:376;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:784;a:20:{s:4:\"tmpl\";i:460;s:2:\"id\";i:4746;s:5:\"title\";s:7:\"Team 23\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_4.png\";s:12:\"tmpl_created\";i:1520443360;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-23/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:640;s:16:\"popularity_index\";i:282;s:11:\"trend_index\";i:378;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:785;a:20:{s:4:\"tmpl\";i:457;s:2:\"id\";i:4718;s:5:\"title\";s:6:\"Team 4\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_3.png\";s:12:\"tmpl_created\";i:1520443354;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:641;s:16:\"popularity_index\";i:192;s:11:\"trend_index\";i:359;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:786;a:20:{s:4:\"tmpl\";i:456;s:2:\"id\";i:4706;s:5:\"title\";s:6:\"Team 5\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_2.png\";s:12:\"tmpl_created\";i:1520443352;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:642;s:16:\"popularity_index\";i:149;s:11:\"trend_index\";i:299;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:787;a:20:{s:4:\"tmpl\";i:544;s:2:\"id\";i:6008;s:5:\"title\";s:6:\"Team 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_10.png\";s:12:\"tmpl_created\";i:1520443636;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:643;s:16:\"popularity_index\";i:75;s:11:\"trend_index\";i:277;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:788;a:20:{s:4:\"tmpl\";i:454;s:2:\"id\";i:4690;s:5:\"title\";s:6:\"Team 7\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_1.png\";s:12:\"tmpl_created\";i:1520443348;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:644;s:16:\"popularity_index\";i:243;s:11:\"trend_index\";i:402;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:789;a:20:{s:4:\"tmpl\";i:586;s:2:\"id\";i:4921;s:5:\"title\";s:14:\"Testimonial 10\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_5.png\";s:12:\"tmpl_created\";i:1520520562;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:645;s:16:\"popularity_index\";i:219;s:11:\"trend_index\";i:198;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:790;a:20:{s:4:\"tmpl\";i:582;s:2:\"id\";i:4889;s:5:\"title\";s:14:\"Testimonial 11\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/customers-2.jpg\";s:12:\"tmpl_created\";i:1520520556;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:646;s:16:\"popularity_index\";i:557;s:11:\"trend_index\";i:522;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:791;a:20:{s:4:\"tmpl\";i:580;s:2:\"id\";i:4871;s:5:\"title\";s:14:\"Testimonial 12\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_3.png\";s:12:\"tmpl_created\";i:1520520552;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:647;s:16:\"popularity_index\";i:262;s:11:\"trend_index\";i:391;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:792;a:20:{s:4:\"tmpl\";i:578;s:2:\"id\";i:4854;s:5:\"title\";s:14:\"Testimonial 13\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_2.png\";s:12:\"tmpl_created\";i:1520520549;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:648;s:16:\"popularity_index\";i:637;s:11:\"trend_index\";i:741;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:793;a:20:{s:4:\"tmpl\";i:595;s:2:\"id\";i:4995;s:5:\"title\";s:14:\"Testimonial 14\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_12.png\";s:12:\"tmpl_created\";i:1520520577;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:649;s:16:\"popularity_index\";i:400;s:11:\"trend_index\";i:411;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:794;a:20:{s:4:\"tmpl\";i:593;s:2:\"id\";i:4979;s:5:\"title\";s:14:\"Testimonial 15\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_10.png\";s:12:\"tmpl_created\";i:1520520573;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:650;s:16:\"popularity_index\";i:568;s:11:\"trend_index\";i:544;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:795;a:20:{s:4:\"tmpl\";i:576;s:2:\"id\";i:4835;s:5:\"title\";s:14:\"Testimonial 16\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_1.png\";s:12:\"tmpl_created\";i:1520520546;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:651;s:16:\"popularity_index\";i:399;s:11:\"trend_index\";i:401;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:796;a:20:{s:4:\"tmpl\";i:594;s:2:\"id\";i:4987;s:5:\"title\";s:14:\"Testimonial 17\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_12-1.png\";s:12:\"tmpl_created\";i:1520520575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:652;s:16:\"popularity_index\";i:159;s:11:\"trend_index\";i:199;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:797;a:20:{s:4:\"tmpl\";i:577;s:2:\"id\";i:4843;s:5:\"title\";s:14:\"Testimonial 18\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_2.png\";s:12:\"tmpl_created\";i:1520520548;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:653;s:16:\"popularity_index\";i:457;s:11:\"trend_index\";i:780;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:798;a:20:{s:4:\"tmpl\";i:579;s:2:\"id\";i:4863;s:5:\"title\";s:14:\"Testimonial 19\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_3.png\";s:12:\"tmpl_created\";i:1520520551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:654;s:16:\"popularity_index\";i:245;s:11:\"trend_index\";i:599;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:799;a:20:{s:4:\"tmpl\";i:581;s:2:\"id\";i:4880;s:5:\"title\";s:14:\"Testimonial 20\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/customers-1.jpg\";s:12:\"tmpl_created\";i:1520520554;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:655;s:16:\"popularity_index\";i:446;s:11:\"trend_index\";i:653;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:800;a:20:{s:4:\"tmpl\";i:583;s:2:\"id\";i:4897;s:5:\"title\";s:14:\"Testimonial 21\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_5.png\";s:12:\"tmpl_created\";i:1520520557;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:656;s:16:\"popularity_index\";i:78;s:11:\"trend_index\";i:289;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:801;a:20:{s:4:\"tmpl\";i:584;s:2:\"id\";i:4905;s:5:\"title\";s:14:\"Testimonial 22\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_6.png\";s:12:\"tmpl_created\";i:1520520559;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-22/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:657;s:16:\"popularity_index\";i:121;s:11:\"trend_index\";i:221;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:802;a:20:{s:4:\"tmpl\";i:585;s:2:\"id\";i:4913;s:5:\"title\";s:14:\"Testimonial 23\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_7.png\";s:12:\"tmpl_created\";i:1520520561;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-23/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:658;s:16:\"popularity_index\";i:247;s:11:\"trend_index\";i:566;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:803;a:20:{s:4:\"tmpl\";i:575;s:2:\"id\";i:4826;s:5:\"title\";s:14:\"Testimonial 24\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_1.png\";s:12:\"tmpl_created\";i:1520520544;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/testimonial-24-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:659;s:16:\"popularity_index\";i:256;s:11:\"trend_index\";i:395;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:804;a:20:{s:4:\"tmpl\";i:587;s:2:\"id\";i:4929;s:5:\"title\";s:14:\"Testimonial 24\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_8.png\";s:12:\"tmpl_created\";i:1520520564;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-24/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:660;s:16:\"popularity_index\";i:49;s:11:\"trend_index\";i:206;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:805;a:20:{s:4:\"tmpl\";i:591;s:2:\"id\";i:4963;s:5:\"title\";s:14:\"Testimonial 25\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_10.png\";s:12:\"tmpl_created\";i:1520520570;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/testimonial-25-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:661;s:16:\"popularity_index\";i:417;s:11:\"trend_index\";i:546;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:806;a:20:{s:4:\"tmpl\";i:592;s:2:\"id\";i:4971;s:5:\"title\";s:14:\"Testimonial 26\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_11.png\";s:12:\"tmpl_created\";i:1520520572;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-26/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:662;s:16:\"popularity_index\";i:649;s:11:\"trend_index\";i:718;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:807;a:20:{s:4:\"tmpl\";i:589;s:2:\"id\";i:4947;s:5:\"title\";s:14:\"Testimonial 27\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_9.png\";s:12:\"tmpl_created\";i:1520520567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-27/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:663;s:16:\"popularity_index\";i:221;s:11:\"trend_index\";i:496;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:808;a:20:{s:4:\"tmpl\";i:590;s:2:\"id\";i:4955;s:5:\"title\";s:14:\"Testimonial 29\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_9.png\";s:12:\"tmpl_created\";i:1520520569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-29/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:664;s:16:\"popularity_index\";i:378;s:11:\"trend_index\";i:695;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:809;a:20:{s:4:\"tmpl\";i:588;s:2:\"id\";i:4939;s:5:\"title\";s:13:\"Testimonial 9\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_8.png\";s:12:\"tmpl_created\";i:1520520565;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/testimonial-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:665;s:16:\"popularity_index\";i:103;s:11:\"trend_index\";i:341;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:810;a:20:{s:4:\"tmpl\";i:928;s:2:\"id\";i:12509;s:5:\"title\";s:18:\"Travel &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/12/404.png\";s:12:\"tmpl_created\";i:1575960378;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/travel-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:24:\"[\"404\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:666;s:16:\"popularity_index\";i:747;s:11:\"trend_index\";i:712;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:811;a:20:{s:4:\"tmpl\";i:929;s:2:\"id\";i:12516;s:5:\"title\";s:27:\"Travel &#8211; Archive Blog\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/12/Archiv_s.png\";s:12:\"tmpl_created\";i:1575960387;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/travel-archive-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:667;s:16:\"popularity_index\";i:496;s:11:\"trend_index\";i:487;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:812;a:20:{s:4:\"tmpl\";i:927;s:2:\"id\";i:12500;s:5:\"title\";s:21:\"Travel &#8211; Header\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-travel-and-tours.png\";s:12:\"tmpl_created\";i:1575960371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/travel-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:27:\"[\"Header\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:668;s:16:\"popularity_index\";i:443;s:11:\"trend_index\";i:434;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:813;a:20:{s:4:\"tmpl\";i:930;s:2:\"id\";i:12524;s:5:\"title\";s:26:\"Travel &#8211; Single Post\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/12/Single_Post_s.png\";s:12:\"tmpl_created\";i:1575960397;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/travel-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:669;s:16:\"popularity_index\";i:591;s:11:\"trend_index\";i:663;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:814;a:20:{s:4:\"tmpl\";i:931;s:2:\"id\";i:12531;s:5:\"title\";s:31:\"Travel &#8211; Single Post Tour\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/12/Single_Tour_s.png\";s:12:\"tmpl_created\";i:1575960404;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/travel-single-post-tour/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:670;s:16:\"popularity_index\";i:630;s:11:\"trend_index\";i:548;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:815;a:20:{s:4:\"tmpl\";i:926;s:2:\"id\";i:12492;s:5:\"title\";s:14:\"Travel -Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/12/Footer_s.png\";s:12:\"tmpl_created\";i:1575960358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/travel-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:27:\"[\"Footer\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:671;s:16:\"popularity_index\";i:453;s:11:\"trend_index\";i:322;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:816;a:20:{s:4:\"tmpl\";i:1068;s:2:\"id\";i:15498;s:5:\"title\";s:23:\"Travel Blog &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/11/404.jpg\";s:12:\"tmpl_created\";i:1606215636;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/travel-blog-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:23:\"[\"404\",\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:672;s:16:\"popularity_index\";i:749;s:11:\"trend_index\";i:759;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:817;a:20:{s:4:\"tmpl\";i:1069;s:2:\"id\";i:15508;s:5:\"title\";s:29:\"Travel Blog &#8211; Archive 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/11/Archive-1-350.jpg\";s:12:\"tmpl_created\";i:1606215649;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/travel-blog-archive-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:673;s:16:\"popularity_index\";i:659;s:11:\"trend_index\";i:468;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:818;a:20:{s:4:\"tmpl\";i:1070;s:2:\"id\";i:15518;s:5:\"title\";s:29:\"Travel Blog &#8211; Archive 2\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/11/Archive-2-350-Copy.jpg\";s:12:\"tmpl_created\";i:1606215663;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/travel-blog-archive-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:674;s:16:\"popularity_index\";i:688;s:11:\"trend_index\";i:431;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:819;a:20:{s:4:\"tmpl\";i:1071;s:2:\"id\";i:15528;s:5:\"title\";s:26:\"Travel Blog &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/11/Footer.jpg\";s:12:\"tmpl_created\";i:1606215673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/travel-blog-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:26:\"[\"Blog\",\"Footer\",\"Travel\"]\";s:10:\"menu_order\";i:675;s:16:\"popularity_index\";i:656;s:11:\"trend_index\";i:377;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:820;a:20:{s:4:\"tmpl\";i:1067;s:2:\"id\";i:15536;s:5:\"title\";s:26:\"Travel Blog &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/11/Header.jpg\";s:12:\"tmpl_created\";i:1606215625;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/travel-blog-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:26:\"[\"Blog\",\"Header\",\"Travel\"]\";s:10:\"menu_order\";i:676;s:16:\"popularity_index\";i:584;s:11:\"trend_index\";i:228;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:821;a:20:{s:4:\"tmpl\";i:1072;s:2:\"id\";i:15545;s:5:\"title\";s:33:\"Travel Blog &#8211; Single Post 1\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/11/Single-1-350.jpg\";s:12:\"tmpl_created\";i:1606215684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/travel-blog-single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:677;s:16:\"popularity_index\";i:669;s:11:\"trend_index\";i:482;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:822;a:20:{s:4:\"tmpl\";i:1066;s:2:\"id\";i:15556;s:5:\"title\";s:33:\"Travel Blog &#8211; Single Post 2\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/11/Single-2-350.jpg\";s:12:\"tmpl_created\";i:1606215613;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/travel-blog-single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:678;s:16:\"popularity_index\";i:652;s:11:\"trend_index\";i:454;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}}}', 'off');
INSERT INTO `wpcn_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(468, 'elementor_unfiltered_files_upload', '1', 'auto'),
(482, 'elementor_pro_recaptcha_secret_key', '', 'auto'),
(483, 'elementor_pro_recaptcha_v3_site_key', '', 'auto'),
(484, 'elementor_pro_recaptcha_v3_secret_key', '', 'auto'),
(485, 'elementor_pro_recaptcha_v3_threshold', '0.5', 'auto'),
(486, 'elementor_pro_facebook_app_id', '', 'auto'),
(487, 'elementor_pro_mailchimp_api_key', '', 'auto'),
(488, 'elementor_validate_api_data', '', 'auto'),
(489, 'elementor_pro_drip_api_token', '', 'auto'),
(490, 'elementor_pro_activecampaign_api_key', '', 'auto'),
(491, 'elementor_pro_activecampaign_api_url', '', 'auto'),
(492, 'elementor_pro_getresponse_api_key', '', 'auto'),
(493, 'elementor_pro_convertkit_api_key', '', 'auto'),
(494, 'elementor_pro_mailerlite_api_key', '', 'auto'),
(495, 'elementor_typekit-kit-id', '', 'auto'),
(643, 'elementor_font_awesome_pro_kit_id', '', 'auto'),
(497, 'elementor_pro_stripe_test_secret_key', '', 'auto'),
(498, 'elementor_validate_stripe_api_test_secret_key_button', '', 'auto'),
(499, 'elementor_pro_stripe_live_secret_key', '', 'auto'),
(500, 'elementor_validate_stripe_api_live_secret_key_button', '', 'auto'),
(501, 'elementor_stripe_legal_disclaimer', '', 'auto'),
(502, 'elementor_editor_break_lines', '', 'auto'),
(503, 'elementor_google_font', '1', 'auto'),
(504, 'elementor_load_fa4_shim', '', 'auto'),
(505, 'elementor_meta_generator_tag', '', 'auto'),
(506, 'elementor_css_print_method', 'external', 'auto'),
(507, 'elementor_optimized_image_loading', '1', 'auto'),
(508, 'elementor_optimized_gutenberg_loading', '1', 'auto'),
(509, 'elementor_lazy_load_background_images', '1', 'auto'),
(510, 'elementor_local_google_fonts', '0', 'auto'),
(511, 'elementor_element_cache_ttl', '24', 'auto'),
(512, 'elementor_experiment-container', 'default', 'auto'),
(513, 'elementor_experiment-nested-elements', 'active', 'auto'),
(514, 'elementor_experiment-mega-menu', 'default', 'auto'),
(515, 'elementor_experiment-taxonomy-filter', 'default', 'auto'),
(516, 'elementor_experiment-e_font_icon_svg', 'default', 'auto'),
(517, 'elementor_experiment-additional_custom_breakpoints', 'default', 'auto'),
(518, 'elementor_experiment-e_optimized_markup', 'default', 'auto'),
(519, 'elementor_experiment-theme_builder_v2', 'default', 'auto'),
(520, 'elementor_experiment-page-transitions', 'active', 'auto'),
(521, 'elementor_experiment-notes', 'default', 'auto'),
(522, 'elementor_experiment-form-submissions', 'default', 'auto'),
(523, 'elementor_experiment-e_scroll_snap', 'default', 'auto'),
(469, 'elementor_controls_usage', 'a:5:{s:7:\"section\";a:10:{s:9:\"icon-list\";a:2:{s:5:\"count\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:4;s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:6:{s:13:\"space_between\";i:6;s:7:\"divider\";i:2;s:14:\"divider_height\";i:2;s:17:\"icon_align_tablet\";i:5;s:10:\"icon_align\";i:2;s:17:\"icon_align_mobile\";i:1;}s:18:\"section_icon_style\";a:4:{s:10:\"icon_color\";i:2;s:16:\"icon_color_hover\";i:2;s:24:\"icon_self_vertical_align\";i:1;s:20:\"icon_vertical_offset\";i:1;}s:18:\"section_text_style\";a:5:{s:26:\"icon_typography_typography\";i:6;s:25:\"icon_typography_font_size\";i:6;s:10:\"text_color\";i:6;s:16:\"text_color_hover\";i:2;s:27:\"icon_typography_font_weight\";i:4;}}s:8:\"advanced\";a:2:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:6;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:9:\"container\";a:2:{s:5:\"count\";i:20;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:9:{s:14:\"flex_direction\";i:15;s:20:\"flex_justify_content\";i:9;s:16:\"flex_align_items\";i:8;s:8:\"flex_gap\";i:4;s:13:\"content_width\";i:11;s:5:\"width\";i:8;s:10:\"min_height\";i:1;s:11:\"boxed_width\";i:4;s:9:\"flex_wrap\";i:3;}}s:5:\"style\";a:4:{s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:20;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:6;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:16:\"background_color\";i:1;}s:14:\"section_border\";a:4:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}s:26:\"section_background_overlay\";a:5:{s:29:\"background_overlay_background\";i:1;s:26:\"background_overlay_opacity\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_color_b\";i:1;s:33:\"background_overlay_gradient_angle\";i:1;}}s:8:\"advanced\";a:4:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:20;}s:14:\"section_layout\";a:2:{s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:2;}s:15:\"section_effects\";a:2:{s:6:\"sticky\";i:1;s:21:\"sticky_effects_offset\";i:1;}}}}s:12:\"social-icons\";a:2:{s:5:\"count\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:4:{s:16:\"social_icon_list\";i:3;s:5:\"shape\";i:2;s:5:\"align\";i:1;s:12:\"align_tablet\";i:1;}}s:5:\"style\";a:2:{s:20:\"section_social_style\";a:5:{s:10:\"icon_color\";i:3;s:9:\"icon_size\";i:3;s:12:\"icon_padding\";i:3;s:12:\"icon_spacing\";i:3;s:13:\"border_radius\";i:3;}s:20:\"section_social_hover\";a:1:{s:21:\"hover_secondary_color\";i:1;}}s:8:\"advanced\";a:3:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:3;}s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:5:\"image\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:4:{s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:2;}}s:7:\"content\";a:1:{s:13:\"section_image\";a:4:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:7:\"link_to\";i:2;s:4:\"link\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:5:\"align\";i:2;s:5:\"space\";i:2;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:2;}}}}s:16:\"pp-advanced-menu\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_layout\";a:4:{s:11:\"align_items\";i:2;s:7:\"pointer\";i:2;s:9:\"menu_type\";i:2;s:12:\"toggle_align\";i:2;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:2;}}s:5:\"style\";a:5:{s:12:\"style_toggle\";a:4:{s:23:\"toggle_background_color\";i:2;s:29:\"toggle_background_color_hover\";i:2;s:12:\"toggle_color\";i:2;s:18:\"toggle_color_hover\";i:2;}s:16:\"style_responsive\";a:13:{s:18:\"offcanvas_position\";i:2;s:27:\"close_icon_background_color\";i:2;s:33:\"close_icon_background_color_hover\";i:2;s:16:\"overlay_bg_color\";i:2;s:17:\"mobile_link_color\";i:2;s:24:\"mobile_sub_link_bg_color\";i:2;s:21:\"mobile_sub_link_color\";i:2;s:17:\"mobile_link_hover\";i:2;s:20:\"mobile_link_bg_hover\";i:2;s:24:\"mobile_sub_link_bg_hover\";i:2;s:21:\"mobile_sub_link_hover\";i:2;s:16:\"close_icon_color\";i:2;s:22:\"close_icon_color_hover\";i:2;}s:16:\"style_typography\";a:8:{s:26:\"menu_typography_typography\";i:2;s:25:\"menu_typography_font_size\";i:2;s:27:\"menu_typography_font_weight\";i:2;s:30:\"dropdown_typography_typography\";i:2;s:31:\"dropdown_typography_font_weight\";i:2;s:30:\"menu_typography_text_transform\";i:2;s:30:\"menu_typography_letter_spacing\";i:2;s:29:\"dropdown_typography_font_size\";i:2;}s:23:\"section_style_main_menu\";a:4:{s:28:\"padding_horizontal_menu_item\";i:2;s:15:\"color_menu_item\";i:2;s:21:\"color_menu_item_hover\";i:2;s:22:\"color_menu_item_active\";i:2;}s:22:\"section_style_dropdown\";a:11:{s:19:\"color_dropdown_item\";i:2;s:30:\"background_color_dropdown_item\";i:2;s:25:\"color_dropdown_item_hover\";i:2;s:36:\"background_color_dropdown_item_hover\";i:2;s:26:\"color_dropdown_item_active\";i:2;s:37:\"background_color_dropdown_item_active\";i:2;s:23:\"dropdown_divider_border\";i:2;s:22:\"dropdown_divider_color\";i:2;s:22:\"dropdown_divider_width\";i:2;s:35:\"dropdown_box_shadow_box_shadow_type\";i:1;s:30:\"dropdown_box_shadow_box_shadow\";i:1;}}}}s:6:\"button\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:2:{s:4:\"text\";i:1;s:4:\"link\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:12:\"text_padding\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:16:\"theme-page-title\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:4:{s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:15:\"theme-site-logo\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:4:{s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:10:\"image_size\";i:1;s:5:\"image\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:5:\"width\";i:1;}}}}s:11:\"text-editor\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:7:\"heading\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:2;s:11:\"header_size\";i:2;}}s:8:\"advanced\";a:2:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:2;}s:14:\"_section_style\";a:1:{s:14:\"_element_width\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:2:{s:21:\"typography_typography\";i:1;s:11:\"title_color\";i:2;}}}}}s:4:\"page\";a:9:{s:7:\"heading\";a:2:{s:5:\"count\";i:7;s:8:\"controls\";a:4:{s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:7;s:11:\"header_size\";i:6;}}s:8:\"advanced\";a:3:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:7;}s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;s:16:\"_flex_align_self\";i:1;}s:15:\"_section_border\";a:2:{s:14:\"_border_border\";i:1;s:13:\"_border_width\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:5:{s:5:\"align\";i:3;s:21:\"typography_typography\";i:6;s:22:\"typography_font_weight\";i:5;s:22:\"typography_line_height\";i:4;s:23:\"typography_word_spacing\";i:4;}}}}s:9:\"container\";a:2:{s:5:\"count\";i:13;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:7:{s:13:\"content_width\";i:8;s:5:\"width\";i:6;s:14:\"flex_direction\";i:6;s:10:\"min_height\";i:1;s:20:\"flex_justify_content\";i:4;s:16:\"flex_align_items\";i:4;s:9:\"flex_wrap\";i:1;}}s:5:\"style\";a:4:{s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:13;}s:18:\"section_background\";a:9:{s:21:\"background_background\";i:9;s:28:\"background_slideshow_gallery\";i:1;s:36:\"background_slideshow_background_size\";i:1;s:40:\"background_slideshow_background_position\";i:1;s:16:\"background_image\";i:2;s:19:\"background_position\";i:2;s:21:\"background_attachment\";i:2;s:17:\"background_repeat\";i:2;s:15:\"background_size\";i:2;}s:26:\"section_background_overlay\";a:8:{s:29:\"background_overlay_background\";i:2;s:33:\"background_overlay_gradient_angle\";i:1;s:26:\"background_overlay_opacity\";i:2;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:29:\"background_overlay_attachment\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;}s:14:\"section_border\";a:7:{s:13:\"border_border\";i:3;s:12:\"border_width\";i:3;s:12:\"border_color\";i:3;s:26:\"box_shadow_box_shadow_type\";i:3;s:21:\"box_shadow_box_shadow\";i:3;s:32:\"box_shadow_hover_box_shadow_type\";i:3;s:27:\"box_shadow_hover_box_shadow\";i:3;}}s:8:\"advanced\";a:3:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:13;}s:14:\"section_layout\";a:2:{s:7:\"padding\";i:8;s:6:\"margin\";i:1;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:5;s:18:\"animation_duration\";i:4;}}}}s:11:\"text-editor\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;s:16:\"_flex_align_self\";i:1;}s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:4:\"icon\";a:2:{s:5:\"count\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:13:\"selected_icon\";i:3;}}s:5:\"style\";a:1:{s:18:\"section_style_icon\";a:2:{s:5:\"align\";i:3;s:4:\"size\";i:3;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:3;}}}}s:9:\"icon-list\";a:2:{s:5:\"count\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:3;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:3;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}s:18:\"section_text_style\";a:1:{s:16:\"text_color_hover\";i:3;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:3;}}}}s:4:\"form\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:19:\"section_form_fields\";a:3:{s:11:\"form_fields\";i:1;s:11:\"show_labels\";i:1;s:10:\"input_size\";i:1;}s:15:\"section_buttons\";a:1:{s:11:\"button_size\";i:1;}s:13:\"section_email\";a:1:{s:13:\"form_metadata\";i:1;}}s:8:\"advanced\";a:4:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:15:\"_section_border\";a:3:{s:14:\"_border_border\";i:1;s:13:\"_border_width\";i:1;s:13:\"_border_color\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_form_style\";a:2:{s:10:\"column_gap\";i:1;s:7:\"row_gap\";i:1;}s:19:\"section_field_style\";a:2:{s:18:\"field_border_color\";i:1;s:19:\"field_border_radius\";i:1;}s:20:\"section_button_style\";a:3:{s:20:\"button_border_radius\";i:1;s:23:\"button_background_color\";i:1;s:29:\"button_background_hover_color\";i:1;}}}}s:17:\"pp-business-hours\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:18:\"section_price_menu\";a:2:{s:14:\"business_hours\";i:1;s:21:\"business_hours_custom\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_rows_style\";a:3:{s:12:\"rows_padding\";i:1;s:18:\"rows_divider_style\";i:1;s:18:\"rows_divider_color\";i:1;}s:28:\"section_business_hours_style\";a:6:{s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:27:\"hours_typography_typography\";i:1;s:26:\"hours_typography_font_size\";i:1;s:9:\"day_color\";i:1;s:11:\"hours_color\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:6:\"button\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:2:{s:4:\"text\";i:1;s:4:\"link\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:21:\"typography_typography\";i:1;s:25:\"typography_letter_spacing\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:11:\"google_maps\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:1;s:6:\"height\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}}s:7:\"wp-page\";a:13:{s:7:\"heading\";a:2:{s:5:\"count\";i:33;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:33;s:11:\"header_size\";i:12;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:5:\"align\";i:18;s:21:\"typography_typography\";i:12;s:22:\"typography_font_weight\";i:10;s:22:\"typography_line_height\";i:4;s:23:\"typography_word_spacing\";i:4;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:1;}}s:8:\"advanced\";a:4:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:33;}s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:15;s:8:\"_padding\";i:1;s:16:\"_flex_align_self\";i:1;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:3;s:18:\"animation_duration\";i:3;}s:15:\"_section_border\";a:2:{s:14:\"_border_border\";i:1;s:13:\"_border_width\";i:1;}}}}s:9:\"container\";a:2:{s:5:\"count\";i:70;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:9:{s:13:\"content_width\";i:45;s:14:\"flex_direction\";i:31;s:20:\"flex_justify_content\";i:21;s:5:\"width\";i:19;s:8:\"flex_gap\";i:19;s:9:\"flex_wrap\";i:3;s:16:\"flex_align_items\";i:3;s:10:\"min_height\";i:2;s:11:\"boxed_width\";i:1;}}s:5:\"style\";a:4:{s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:70;}s:18:\"section_background\";a:8:{s:21:\"background_background\";i:28;s:16:\"background_color\";i:13;s:16:\"background_image\";i:3;s:19:\"background_position\";i:3;s:21:\"background_attachment\";i:3;s:17:\"background_repeat\";i:3;s:15:\"background_size\";i:3;s:28:\"background_slideshow_gallery\";i:1;}s:26:\"section_background_overlay\";a:9:{s:29:\"background_overlay_background\";i:3;s:26:\"background_overlay_opacity\";i:2;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:29:\"background_overlay_attachment\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_color_b\";i:1;}s:14:\"section_border\";a:7:{s:13:\"border_border\";i:11;s:12:\"border_width\";i:11;s:12:\"border_color\";i:11;s:26:\"box_shadow_box_shadow_type\";i:10;s:21:\"box_shadow_box_shadow\";i:10;s:32:\"box_shadow_hover_box_shadow_type\";i:3;s:27:\"box_shadow_hover_box_shadow\";i:3;}}s:8:\"advanced\";a:4:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:70;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:27;s:18:\"animation_duration\";i:26;}s:14:\"section_layout\";a:3:{s:7:\"padding\";i:36;s:11:\"css_classes\";i:3;s:6:\"margin\";i:1;}s:19:\"_section_responsive\";a:6:{s:15:\"hide_widescreen\";i:1;s:12:\"hide_desktop\";i:1;s:17:\"hide_tablet_extra\";i:1;s:11:\"hide_tablet\";i:1;s:17:\"hide_mobile_extra\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:11:\"text-editor\";a:2:{s:5:\"count\";i:27;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:27;s:8:\"drop_cap\";i:1;}}s:8:\"advanced\";a:2:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:27;}s:14:\"_section_style\";a:4:{s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;s:16:\"_flex_align_self\";i:1;s:7:\"_margin\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:8;}}}}s:5:\"image\";a:2:{s:5:\"count\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:5;s:10:\"image_size\";i:5;}}s:8:\"advanced\";a:2:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:5;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:4;s:18:\"animation_duration\";i:4;}}}}s:9:\"icon-list\";a:2:{s:5:\"count\";i:12;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:12;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:12;s:10:\"icon_align\";i:3;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:12;}s:18:\"section_text_style\";a:5:{s:26:\"icon_typography_typography\";i:9;s:27:\"icon_typography_font_family\";i:9;s:25:\"icon_typography_font_size\";i:3;s:27:\"icon_typography_font_weight\";i:9;s:16:\"text_color_hover\";i:3;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:12;}}}}s:14:\"call-to-action\";a:2:{s:5:\"count\";i:10;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:18:\"section_main_image\";a:3:{s:4:\"skin\";i:10;s:8:\"bg_image\";i:10;s:13:\"bg_image_size\";i:10;}s:15:\"section_content\";a:4:{s:5:\"title\";i:10;s:9:\"title_tag\";i:10;s:11:\"description\";i:10;s:6:\"button\";i:10;}}s:5:\"style\";a:2:{s:9:\"box_style\";a:4:{s:10:\"min-height\";i:10;s:9:\"alignment\";i:10;s:17:\"vertical_position\";i:10;s:7:\"padding\";i:10;}s:21:\"section_content_style\";a:4:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:28:\"title_typography_font_weight\";i:10;s:13:\"title_spacing\";i:10;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:14:\"_element_width\";i:10;s:21:\"_element_custom_width\";i:10;}s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:10;}}}}s:4:\"form\";a:2:{s:5:\"count\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:4:{s:19:\"section_form_fields\";a:3:{s:11:\"form_fields\";i:3;s:10:\"input_size\";i:3;s:9:\"form_name\";i:1;}s:15:\"section_buttons\";a:1:{s:11:\"button_size\";i:3;}s:13:\"section_email\";a:4:{s:13:\"form_metadata\";i:3;s:13:\"email_subject\";i:3;s:15:\"email_from_name\";i:3;s:14:\"email_reply_to\";i:1;}s:15:\"section_email_2\";a:2:{s:15:\"email_subject_2\";i:3;s:17:\"email_from_name_2\";i:3;}}s:8:\"advanced\";a:4:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:3;}s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:3;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:3;s:17:\"_background_color\";i:2;}s:15:\"_section_border\";a:3:{s:14:\"_border_border\";i:3;s:13:\"_border_width\";i:3;s:13:\"_border_color\";i:3;}}s:5:\"style\";a:3:{s:18:\"section_form_style\";a:8:{s:10:\"column_gap\";i:3;s:7:\"row_gap\";i:3;s:13:\"label_spacing\";i:3;s:27:\"label_typography_typography\";i:3;s:28:\"label_typography_font_family\";i:3;s:26:\"label_typography_font_size\";i:3;s:28:\"label_typography_font_weight\";i:3;s:11:\"label_color\";i:1;}s:19:\"section_field_style\";a:6:{s:18:\"field_border_color\";i:3;s:19:\"field_border_radius\";i:3;s:27:\"field_typography_typography\";i:3;s:28:\"field_typography_font_family\";i:3;s:26:\"field_typography_font_size\";i:3;s:28:\"field_typography_font_weight\";i:3;}s:20:\"section_button_style\";a:4:{s:20:\"button_border_radius\";i:3;s:23:\"button_background_color\";i:3;s:29:\"button_background_hover_color\";i:3;s:19:\"button_text_padding\";i:2;}}}}s:6:\"button\";a:2:{s:5:\"count\";i:8;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:2:{s:4:\"text\";i:8;s:4:\"link\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:7;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}s:8:\"advanced\";a:3:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:8;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:2;s:18:\"animation_duration\";i:2;}}}}s:4:\"html\";a:2:{s:5:\"count\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:4:\"html\";i:4;}}s:8:\"advanced\";a:4:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:4;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:2;s:18:\"animation_duration\";i:2;}s:19:\"_section_responsive\";a:6:{s:15:\"hide_widescreen\";i:2;s:12:\"hide_desktop\";i:2;s:17:\"hide_tablet_extra\";i:2;s:11:\"hide_tablet\";i:2;s:17:\"hide_mobile_extra\";i:2;s:11:\"hide_mobile\";i:2;}}}}s:8:\"icon-box\";a:2:{s:5:\"count\";i:7;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:4:{s:13:\"selected_icon\";i:7;s:10:\"title_text\";i:7;s:16:\"description_text\";i:7;s:10:\"title_size\";i:7;}}s:5:\"style\";a:3:{s:17:\"section_style_box\";a:2:{s:10:\"icon_space\";i:7;s:18:\"title_bottom_space\";i:7;}s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:7;}s:21:\"section_style_content\";a:3:{s:27:\"title_typography_typography\";i:7;s:28:\"title_typography_font_family\";i:7;s:28:\"title_typography_font_weight\";i:7;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:7;}}}}s:4:\"icon\";a:2:{s:5:\"count\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:13:\"selected_icon\";i:3;}}s:5:\"style\";a:1:{s:18:\"section_style_icon\";a:2:{s:5:\"align\";i:3;s:4:\"size\";i:3;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:3;}}}}s:12:\"social-icons\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:5:{s:16:\"social_icon_list\";i:1;s:5:\"shape\";i:1;s:5:\"align\";i:1;s:12:\"align_tablet\";i:1;s:18:\"align_mobile_extra\";i:1;}}s:5:\"style\";a:1:{s:20:\"section_social_style\";a:5:{s:10:\"icon_color\";i:1;s:9:\"icon_size\";i:1;s:12:\"icon_padding\";i:1;s:12:\"icon_spacing\";i:1;s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:7:\"gallery\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:8:\"settings\";a:6:{s:7:\"gallery\";i:1;s:9:\"galleries\";i:1;s:7:\"columns\";i:1;s:3:\"gap\";i:1;s:12:\"aspect_ratio\";i:1;s:20:\"thumbnail_image_size\";i:1;}}s:8:\"advanced\";a:2:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}}}}}s:6:\"header\";a:5:{s:5:\"image\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:4:{s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}s:7:\"content\";a:1:{s:13:\"section_image\";a:4:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:5:\"align\";i:1;s:5:\"space\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:9:\"container\";a:2:{s:5:\"count\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:7:{s:14:\"flex_direction\";i:4;s:13:\"content_width\";i:2;s:5:\"width\";i:2;s:20:\"flex_justify_content\";i:2;s:16:\"flex_align_items\";i:1;s:8:\"flex_gap\";i:1;s:10:\"min_height\";i:1;}}s:5:\"style\";a:4:{s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:4;}s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}s:18:\"section_background\";a:5:{s:21:\"background_background\";i:1;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:5:{s:29:\"background_overlay_background\";i:1;s:26:\"background_overlay_opacity\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_color_b\";i:1;s:33:\"background_overlay_gradient_angle\";i:1;}}s:8:\"advanced\";a:2:{s:35:\"section_powerpack_elements_advanced\";a:2:{s:21:\"pp_display_conditions\";i:4;s:28:\"pp_display_conditions_enable\";i:1;}s:14:\"section_layout\";a:5:{s:7:\"padding\";i:3;s:7:\"z_index\";i:1;s:6:\"margin\";i:1;s:11:\"css_classes\";i:1;s:20:\"e_display_conditions\";i:1;}}}}s:16:\"pp-advanced-menu\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_layout\";a:4:{s:11:\"align_items\";i:1;s:7:\"pointer\";i:1;s:9:\"menu_type\";i:1;s:12:\"toggle_align\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}s:5:\"style\";a:5:{s:12:\"style_toggle\";a:4:{s:23:\"toggle_background_color\";i:1;s:29:\"toggle_background_color_hover\";i:1;s:12:\"toggle_color\";i:1;s:18:\"toggle_color_hover\";i:1;}s:16:\"style_responsive\";a:13:{s:18:\"offcanvas_position\";i:1;s:27:\"close_icon_background_color\";i:1;s:33:\"close_icon_background_color_hover\";i:1;s:16:\"overlay_bg_color\";i:1;s:17:\"mobile_link_color\";i:1;s:24:\"mobile_sub_link_bg_color\";i:1;s:21:\"mobile_sub_link_color\";i:1;s:17:\"mobile_link_hover\";i:1;s:20:\"mobile_link_bg_hover\";i:1;s:24:\"mobile_sub_link_bg_hover\";i:1;s:21:\"mobile_sub_link_hover\";i:1;s:16:\"close_icon_color\";i:1;s:22:\"close_icon_color_hover\";i:1;}s:16:\"style_typography\";a:8:{s:26:\"menu_typography_typography\";i:1;s:25:\"menu_typography_font_size\";i:1;s:27:\"menu_typography_font_weight\";i:1;s:30:\"dropdown_typography_typography\";i:1;s:31:\"dropdown_typography_font_weight\";i:1;s:30:\"menu_typography_text_transform\";i:1;s:30:\"menu_typography_letter_spacing\";i:1;s:29:\"dropdown_typography_font_size\";i:1;}s:23:\"section_style_main_menu\";a:3:{s:28:\"padding_horizontal_menu_item\";i:1;s:21:\"color_menu_item_hover\";i:1;s:22:\"color_menu_item_active\";i:1;}s:22:\"section_style_dropdown\";a:9:{s:19:\"color_dropdown_item\";i:1;s:30:\"background_color_dropdown_item\";i:1;s:25:\"color_dropdown_item_hover\";i:1;s:36:\"background_color_dropdown_item_hover\";i:1;s:26:\"color_dropdown_item_active\";i:1;s:37:\"background_color_dropdown_item_active\";i:1;s:23:\"dropdown_divider_border\";i:1;s:22:\"dropdown_divider_color\";i:1;s:22:\"dropdown_divider_width\";i:1;}}}}s:6:\"button\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:2:{s:4:\"text\";i:1;s:4:\"link\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:12:\"text_padding\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:16:\"theme-page-title\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:4:{s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}}s:6:\"footer\";a:7:{s:5:\"image\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;}}s:8:\"advanced\";a:2:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}s:14:\"_section_style\";a:3:{s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;s:7:\"_margin\";i:1;}}}}s:11:\"text-editor\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;}s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:9:\"container\";a:2:{s:5:\"count\";i:7;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:5:{s:13:\"content_width\";i:5;s:5:\"width\";i:4;s:11:\"boxed_width\";i:3;s:9:\"flex_wrap\";i:2;s:14:\"flex_direction\";i:2;}}s:5:\"style\";a:2:{s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:7;}s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;}}s:8:\"advanced\";a:2:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:7;}s:14:\"section_layout\";a:1:{s:7:\"padding\";i:2;}}}}s:7:\"heading\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:2;s:11:\"header_size\";i:2;}}s:8:\"advanced\";a:2:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:2;}s:14:\"_section_style\";a:1:{s:14:\"_element_width\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:2:{s:21:\"typography_typography\";i:1;s:11:\"title_color\";i:2;}}}}s:9:\"icon-list\";a:2:{s:5:\"count\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:9:\"icon_list\";i:3;s:4:\"view\";i:1;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:5:{s:13:\"space_between\";i:3;s:17:\"icon_align_tablet\";i:3;s:23:\"icon_align_mobile_extra\";i:3;s:10:\"icon_align\";i:1;s:17:\"icon_align_mobile\";i:1;}s:18:\"section_text_style\";a:4:{s:26:\"icon_typography_typography\";i:3;s:25:\"icon_typography_font_size\";i:3;s:10:\"text_color\";i:3;s:27:\"icon_typography_font_weight\";i:3;}s:18:\"section_icon_style\";a:2:{s:24:\"icon_self_vertical_align\";i:1;s:20:\"icon_vertical_offset\";i:1;}}s:8:\"advanced\";a:2:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:12:\"social-icons\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:4:{s:16:\"social_icon_list\";i:1;s:5:\"shape\";i:1;s:5:\"align\";i:1;s:12:\"align_tablet\";i:1;}}s:5:\"style\";a:1:{s:20:\"section_social_style\";a:5:{s:10:\"icon_color\";i:1;s:9:\"icon_size\";i:1;s:12:\"icon_padding\";i:1;s:12:\"icon_spacing\";i:1;s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:11:\"google_maps\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:1;s:6:\"height\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}}}', 'off'),
(470, 'elementor_library_category_children', 'a:0:{}', 'auto'),
(477, 'elementor_cpt_support', 'a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}', 'auto'),
(478, 'elementor_disable_color_schemes', 'yes', 'auto'),
(530, 'edd_sl_0db1b5f4838f5bc5af637174ef14407d', 'a:2:{s:7:\"timeout\";i:1773776840;s:5:\"value\";s:2283:\"{\"new_version\":\"2.12.17\",\"stable_version\":\"2.12.17\",\"name\":\"PowerPack Elements\",\"slug\":\"powerpack-elements\",\"url\":\"https:\\/\\/powerpackelements.com\\/downloads\\/powerpack-elements\\/?changelog=1\",\"last_updated\":\"2026-02-27 05:55:28\",\"homepage\":\"https:\\/\\/powerpackelements.com\",\"package\":\"https:\\/\\/powerpackelements.com\\/edd-sl\\/package_download\\/MTc3Mzk1ODY0MDo4MjAzNTdiMjdiZWRiOWJmMzFjZjQ3Yzk4ZjVhMDRiMToxMDU1OjdkNWY0MGY4YzdhNzg3OTFmZTIwMmI1ZWUxNzA0NDk0Omh0dHBzQC8vbXJhcmlmLm1lL2Nwbm9yZGljOjA=\",\"download_link\":\"https:\\/\\/powerpackelements.com\\/edd-sl\\/package_download\\/MTc3Mzk1ODY0MDo4MjAzNTdiMjdiZWRiOWJmMzFjZjQ3Yzk4ZjVhMDRiMToxMDU1OjdkNWY0MGY4YzdhNzg3OTFmZTIwMmI1ZWUxNzA0NDk0Omh0dHBzQC8vbXJhcmlmLm1lL2Nwbm9yZGljOjA=\",\"sections\":{\"changelog\":\"<p>Visit\\u00a0<a href=\\\"https:\\/\\/powerpackelements.com\\/change-logs\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">changelogs page<\\/a> for details.<\\/p>\\n\"},\"banners\":{\"high\":\"\",\"low\":\"\"},\"icons\":{\"1x\":\"https:\\/\\/powerpackelements.com\\/wp-content\\/uploads\\/edd\\/2019\\/02\\/pp-feature-128x128.png\",\"2x\":\"https:\\/\\/powerpackelements.com\\/wp-content\\/uploads\\/edd\\/2019\\/02\\/pp-feature-256x256.png\"},\"contributors\":{\"ideaboxcreations\":{\"display_name\":\"ideaboxcreations\",\"profile\":\"\\/\\/profiles.wordpress.org\\/ideaboxcreations\",\"avatar\":\"https:\\/\\/wordpress.org\\/grav-redirect.php?user=ideaboxcreations\"},\"bloompixel\":{\"display_name\":\"bloompixel\",\"profile\":\"\\/\\/profiles.wordpress.org\\/bloompixel\",\"avatar\":\"https:\\/\\/wordpress.org\\/grav-redirect.php?user=bloompixel\"},\"simrandeep\":{\"display_name\":\"simrandeep\",\"profile\":\"\\/\\/profiles.wordpress.org\\/simrandeep\",\"avatar\":\"https:\\/\\/wordpress.org\\/grav-redirect.php?user=simrandeep\"},\"ibachal\":{\"display_name\":\"ibachal\",\"profile\":\"\\/\\/profiles.wordpress.org\\/ibachal\",\"avatar\":\"https:\\/\\/wordpress.org\\/grav-redirect.php?user=ibachal\"},\"puneetsahalot\":{\"display_name\":\"puneetsahalot\",\"profile\":\"\\/\\/profiles.wordpress.org\\/puneetsahalot\",\"avatar\":\"https:\\/\\/wordpress.org\\/grav-redirect.php?user=puneetsahalot\"}},\"tested\":\"6.7.1\",\"changelog\":[\"<p>Visit\\u00a0<a href=\\\"https:\\/\\/powerpackelements.com\\/change-logs\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">changelogs page<\\/a> for details.<\\/p>\\n\"],\"plugin\":\"powerpack-elements\\/powerpack-elements.php\",\"id\":\"powerpack-elements\\/powerpack-elements.php\"}\";}', 'off'),
(471, 'elementor_pro_theme_builder_conditions', 'a:2:{s:6:\"footer\";a:1:{i:104;a:1:{i:0;s:15:\"include/general\";}}s:6:\"header\";a:1:{i:30;a:1:{i:0;s:15:\"include/general\";}}}', 'auto'),
(474, '_elementor_element_cache_unique_id', '7e3dc5e517862d53cc17d5f276a76400', 'auto'),
(479, 'elementor_disable_typography_schemes', '', 'auto'),
(480, 'elementor_google_maps_api_key', '', 'auto'),
(481, 'elementor_pro_recaptcha_site_key', '', 'auto'),
(476, '_elementor_settings_update_time', '1769351361', 'auto'),
(7658, '_transient_timeout_astra-theme-cron-test-ok', '1782211792', 'off'),
(7659, '_transient_astra-theme-cron-test-ok', '1', 'off'),
(7668, '_site_transient_timeout_php_check_2cd6b574a37d822556e9c586248b843b', '1782812997', 'off'),
(7669, '_site_transient_php_check_2cd6b574a37d822556e9c586248b843b', 'a:5:{s:19:\"recommended_version\";s:3:\"8.3\";s:15:\"minimum_version\";s:3:\"7.4\";s:12:\"is_supported\";b:1;s:9:\"is_secure\";b:1;s:13:\"is_acceptable\";b:1;}', 'off'),
(597, 'astra-color-palettes', 'a:5:{s:14:\"currentPalette\";s:9:\"palette_1\";s:8:\"palettes\";a:4:{s:9:\"palette_1\";a:9:{i:0;s:7:\"#507eff\";i:1;s:7:\"#000a66\";i:2;s:7:\"#1e293b\";i:3;s:7:\"#334155\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#F0F5FA\";i:6;s:7:\"#111111\";i:7;s:7:\"#D1D5DB\";i:8;s:7:\"#111111\";}s:9:\"palette_2\";a:9:{i:0;s:7:\"#0067FF\";i:1;s:7:\"#005EE9\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#364151\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#E7F6FF\";i:6;s:7:\"#070614\";i:7;s:7:\"#D1DAE5\";i:8;s:7:\"#222222\";}s:9:\"palette_3\";a:9:{i:0;s:7:\"#6528F7\";i:1;s:7:\"#5511F8\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#454F5E\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#F2F0FE\";i:6;s:7:\"#0D0614\";i:7;s:7:\"#D8D8F5\";i:8;s:7:\"#222222\";}s:9:\"palette_4\";a:9:{i:0;s:7:\"#0085FF\";i:1;s:7:\"#0177E3\";i:2;s:7:\"#FFFFFF\";i:3;s:7:\"#E7F6FF\";i:4;s:7:\"#212A37\";i:5;s:7:\"#0F172A\";i:6;s:7:\"#4F5B62\";i:7;s:7:\"#070614\";i:8;s:7:\"#222222\";}}s:7:\"presets\";a:11:{s:3:\"Oak\";a:9:{i:0;s:7:\"#0067FF\";i:1;s:7:\"#005EE9\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#364151\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#E7F6FF\";i:6;s:7:\"#070614\";i:7;s:7:\"#D1DAE5\";i:8;s:7:\"#222222\";}s:5:\"Viola\";a:9:{i:0;s:7:\"#6528F7\";i:1;s:7:\"#5511F8\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#454F5E\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#F2F0FE\";i:6;s:7:\"#0D0614\";i:7;s:7:\"#D8D8F5\";i:8;s:7:\"#222222\";}s:5:\"Cedar\";a:9:{i:0;s:7:\"#DD183B\";i:1;s:7:\"#CC1939\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#3A3A3A\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#FFEDE6\";i:6;s:7:\"#140609\";i:7;s:7:\"#FFD1BF\";i:8;s:7:\"#222222\";}s:6:\"Willow\";a:9:{i:0;s:7:\"#54B435\";i:1;s:7:\"#379237\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#2F3B40\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#EDFBE2\";i:6;s:7:\"#0C1406\";i:7;s:7:\"#D5EAD8\";i:8;s:7:\"#222222\";}s:4:\"Lily\";a:9:{i:0;s:7:\"#DCA54A\";i:1;s:7:\"#D09A40\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#4A4A4A\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#FAF5E5\";i:6;s:7:\"#141004\";i:7;s:7:\"#F0E6C5\";i:8;s:7:\"#222222\";}s:4:\"Rose\";a:9:{i:0;s:7:\"#FB5FAB\";i:1;s:7:\"#EA559D\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#454F5E\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#FCEEF5\";i:6;s:7:\"#140610\";i:7;s:7:\"#FAD8E9\";i:8;s:7:\"#222222\";}s:4:\"Sage\";a:9:{i:0;s:7:\"#1B9C85\";i:1;s:7:\"#178E79\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#454F5E\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#EDF6EE\";i:6;s:7:\"#06140C\";i:7;s:7:\"#D4F3D7\";i:8;s:7:\"#222222\";}s:5:\"Flare\";a:9:{i:0;s:7:\"#FD9800\";i:1;s:7:\"#E98C00\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#454F5E\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#FEF9E1\";i:6;s:7:\"#141006\";i:7;s:7:\"#F9F0C8\";i:8;s:7:\"#222222\";}s:5:\"Maple\";a:9:{i:0;s:7:\"#FF6210\";i:1;s:7:\"#F15808\";i:2;s:7:\"#1C0D0A\";i:3;s:7:\"#353535\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#FEF1E4\";i:6;s:7:\"#140B06\";i:7;s:7:\"#E5D7D1\";i:8;s:7:\"#222222\";}s:5:\"Birch\";a:9:{i:0;s:7:\"#737880\";i:1;s:7:\"#65696F\";i:2;s:7:\"#151616\";i:3;s:7:\"#393C40\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#F6F6F6\";i:6;s:7:\"#232529\";i:7;s:7:\"#F1F0F0\";i:8;s:7:\"#222222\";}s:4:\"Dark\";a:9:{i:0;s:7:\"#0085FF\";i:1;s:7:\"#0177E3\";i:2;s:7:\"#FFFFFF\";i:3;s:7:\"#E7F6FF\";i:4;s:7:\"#212A37\";i:5;s:7:\"#0F172A\";i:6;s:7:\"#4F5B62\";i:7;s:7:\"#070614\";i:8;s:7:\"#222222\";}}s:11:\"presetNames\";a:4:{s:9:\"palette_1\";N;s:9:\"palette_2\";s:3:\"Oak\";s:9:\"palette_3\";s:5:\"Viola\";s:9:\"palette_4\";s:4:\"Dark\";}s:4:\"flag\";b:0;}', 'on'),
(612, 'site_logo', '50', 'auto'),
(1676, 'auto_core_update_notified', 'a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:21:\"arifwebsols@gmail.com\";s:7:\"version\";s:3:\"7.0\";s:9:\"timestamp\";i:1779860331;}', 'off'),
(3098, 'analyst_cache', 's:6:\"a:0:{}\";', 'auto'),
(3112, 'bmi_required_space', '213850480', 'auto'),
(3100, '_new_bb_banner', 'a:3:{s:9:\"dismissed\";b:0;s:12:\"dismissed_at\";i:0;s:11:\"using_since\";i:1773766072;}', 'auto'),
(3101, 'bmi_gdrive_banner_dismissed', '1', 'auto'),
(3103, 'bmi_cron_new_domain_done', '1', 'auto'),
(3102, 'bmi_sk_keepalive', 'Ru47sHht88feQRXMcgSYGeudo4ajefNR', 'auto'),
(3104, 'BMI::STORAGE::LOCAL::PATH', '/home/mrarqpph/public_html/cpnordic/wp-content/backup-migration-dkJq8m7fov', 'auto'),
(3105, 'bmip_to_be_uploaded', 'a:3:{s:14:\"current_upload\";a:0:{}s:5:\"queue\";a:0:{}s:6:\"failed\";a:0:{}}', 'auto'),
(3106, '_transient_bmi_latest_size_plugins', '100671031', 'on'),
(3107, '_transient_bmi_latest_size_uploads', '13180940', 'on'),
(3108, '_transient_bmi_latest_size_themes', '38898307', 'on'),
(3109, '_transient_bmi_latest_size_contents_others', '65', 'on'),
(3110, '_transient_bmi_latest_size_wordpress', '61552719', 'on'),
(3111, '_transient_bmi_latest_size_database', '53704529', 'on'),
(3310, '_transient_is_multi_author', '0', 'on'),
(7664, '_site_transient_timeout_theme_roots', '1782209996', 'off'),
(7665, '_site_transient_theme_roots', 'a:5:{s:11:\"astra-child\";s:7:\"/themes\";s:5:\"astra\";s:7:\"/themes\";s:16:\"twentytwentyfive\";s:7:\"/themes\";s:16:\"twentytwentyfour\";s:7:\"/themes\";s:17:\"twentytwentythree\";s:7:\"/themes\";}', 'off'),
(7466, 'litespeed.conf.hash', '2deflyNZidImFKBZxxpBt3UwxZXpgiLU', 'auto'),
(7467, 'litespeed.conf.api_key', '', 'auto'),
(7468, 'litespeed.conf.auto_upgrade', '', 'auto'),
(7469, 'litespeed.conf.server_ip', '', 'auto'),
(7470, 'litespeed.conf.guest', '', 'auto'),
(7471, 'litespeed.conf.guest_optm', '', 'auto'),
(7472, 'litespeed.conf.news', '1', 'auto'),
(7473, 'litespeed.conf.cache', '1', 'auto'),
(7474, 'litespeed.conf.cache-priv', '1', 'auto'),
(7475, 'litespeed.conf.cache-commenter', '1', 'auto'),
(7476, 'litespeed.conf.cache-rest', '1', 'auto'),
(7477, 'litespeed.conf.cache-page_login', '1', 'auto'),
(7478, 'litespeed.conf.cache-mobile', '', 'auto'),
(7479, 'litespeed.conf.cache-mobile_rules', '[\"Mobile\",\"Android\",\"Silk\\/\",\"Kindle\",\"BlackBerry\",\"Opera Mini\",\"Opera Mobi\"]', 'auto'),
(7480, 'litespeed.conf.cache-browser', '', 'auto'),
(7481, 'litespeed.conf.cache-exc_useragents', '[]', 'auto'),
(7482, 'litespeed.conf.cache-exc_cookies', '[]', 'auto'),
(7483, 'litespeed.conf.cache-exc_qs', '[]', 'auto'),
(7484, 'litespeed.conf.cache-exc_cat', '[]', 'auto'),
(7485, 'litespeed.conf.cache-exc_tag', '[]', 'auto'),
(7486, 'litespeed.conf.cache-force_uri', '[]', 'auto'),
(7487, 'litespeed.conf.cache-force_pub_uri', '[]', 'auto'),
(7488, 'litespeed.conf.cache-priv_uri', '[]', 'auto'),
(7489, 'litespeed.conf.cache-exc', '[]', 'auto'),
(7490, 'litespeed.conf.cache-exc_roles', '[]', 'auto'),
(7491, 'litespeed.conf.cache-drop_qs', '[\"fbclid\",\"gclid\",\"utm*\",\"_ga\"]', 'auto'),
(7492, 'litespeed.conf.cache-ttl_pub', '604800', 'auto'),
(7493, 'litespeed.conf.cache-ttl_priv', '1800', 'auto'),
(7494, 'litespeed.conf.cache-ttl_frontpage', '604800', 'auto'),
(7495, 'litespeed.conf.cache-ttl_feed', '604800', 'auto'),
(7496, 'litespeed.conf.cache-ttl_rest', '604800', 'auto'),
(7497, 'litespeed.conf.cache-ttl_browser', '31557600', 'auto'),
(7498, 'litespeed.conf.cache-ttl_status', '[\"404 3600\",\"500 600\"]', 'auto'),
(7499, 'litespeed.conf.cache-login_cookie', '', 'auto'),
(7500, 'litespeed.conf.cache-ajax_ttl', '[]', 'auto'),
(7501, 'litespeed.conf.cache-vary_cookies', '[]', 'auto'),
(7502, 'litespeed.conf.cache-vary_group', '[]', 'auto'),
(7503, 'litespeed.conf.purge-upgrade', '', 'auto'),
(7504, 'litespeed.conf.purge-stale', '', 'auto'),
(7505, 'litespeed.conf.purge-post_all', '', 'auto'),
(7506, 'litespeed.conf.purge-post_f', '1', 'auto'),
(7507, 'litespeed.conf.purge-post_h', '1', 'auto'),
(7508, 'litespeed.conf.purge-post_p', '1', 'auto'),
(7509, 'litespeed.conf.purge-post_pwrp', '1', 'auto'),
(7510, 'litespeed.conf.purge-post_a', '1', 'auto'),
(7511, 'litespeed.conf.purge-post_y', '', 'auto'),
(7512, 'litespeed.conf.purge-post_m', '1', 'auto'),
(7513, 'litespeed.conf.purge-post_d', '', 'auto'),
(7514, 'litespeed.conf.purge-post_t', '1', 'auto'),
(7515, 'litespeed.conf.purge-post_pt', '1', 'auto'),
(7516, 'litespeed.conf.purge-timed_urls', '[]', 'auto'),
(7517, 'litespeed.conf.purge-timed_urls_time', '', 'auto'),
(7518, 'litespeed.conf.purge-hook_all', '[\"switch_theme\",\"wp_create_nav_menu\",\"wp_update_nav_menu\",\"wp_delete_nav_menu\",\"create_term\",\"edit_terms\",\"delete_term\",\"add_link\",\"edit_link\",\"delete_link\"]', 'auto'),
(7519, 'litespeed.conf.esi', '', 'auto'),
(7520, 'litespeed.conf.esi-cache_admbar', '1', 'auto'),
(7521, 'litespeed.conf.esi-cache_commform', '1', 'auto'),
(7522, 'litespeed.conf.esi-nonce', '[\"stats_nonce\",\"subscribe_nonce\"]', 'auto'),
(7523, 'litespeed.conf.util-instant_click', '', 'auto'),
(7524, 'litespeed.conf.util-no_https_vary', '', 'auto'),
(7525, 'litespeed.conf.debug-disable_all', '', 'auto'),
(7526, 'litespeed.conf.debug', '0', 'auto'),
(7527, 'litespeed.conf.debug-ips', '[\"127.0.0.1\"]', 'auto'),
(7528, 'litespeed.conf.debug-level', '', 'auto'),
(7529, 'litespeed.conf.debug-filesize', '3', 'auto'),
(7530, 'litespeed.conf.debug-collapse_qs', '', 'auto'),
(7531, 'litespeed.conf.debug-inc', '[]', 'auto'),
(7532, 'litespeed.conf.debug-exc', '[]', 'auto'),
(7533, 'litespeed.conf.debug-exc_strings', '[]', 'auto'),
(7534, 'litespeed.conf.db_optm-revisions_max', '0', 'auto'),
(7535, 'litespeed.conf.db_optm-revisions_age', '0', 'auto'),
(7536, 'litespeed.conf.optm-css_min', '', 'auto'),
(7537, 'litespeed.conf.optm-css_comb', '', 'auto'),
(7538, 'litespeed.conf.optm-css_comb_ext_inl', '1', 'auto'),
(7539, 'litespeed.conf.optm-ucss', '', 'auto'),
(7540, 'litespeed.conf.optm-ucss_inline', '', 'auto'),
(7541, 'litespeed.conf.optm-ucss_whitelist', '[]', 'auto'),
(7542, 'litespeed.conf.optm-ucss_file_exc_inline', '[]', 'auto'),
(7543, 'litespeed.conf.optm-ucss_exc', '[]', 'auto'),
(7544, 'litespeed.conf.optm-css_exc', '[]', 'auto'),
(7545, 'litespeed.conf.optm-js_min', '', 'auto'),
(7546, 'litespeed.conf.optm-js_comb', '', 'auto'),
(7547, 'litespeed.conf.optm-js_comb_ext_inl', '1', 'auto'),
(7548, 'litespeed.conf.optm-js_delay_inc', '[]', 'auto'),
(7549, 'litespeed.conf.optm-js_exc', '[\"jquery.js\",\"jquery.min.js\"]', 'auto'),
(7550, 'litespeed.conf.optm-html_min', '', 'auto'),
(7551, 'litespeed.conf.optm-html_lazy', '[]', 'auto'),
(7552, 'litespeed.conf.optm-html_skip_comment', '[]', 'auto'),
(7553, 'litespeed.conf.optm-qs_rm', '', 'auto'),
(7554, 'litespeed.conf.optm-ggfonts_rm', '', 'auto'),
(7555, 'litespeed.conf.optm-css_async', '', 'auto'),
(7556, 'litespeed.conf.optm-ccss_per_url', '', 'auto'),
(7557, 'litespeed.conf.optm-ccss_sep_posttype', '[\"page\"]', 'auto'),
(7558, 'litespeed.conf.optm-ccss_sep_uri', '[]', 'auto'),
(7559, 'litespeed.conf.optm-ccss_whitelist', '[]', 'auto'),
(7560, 'litespeed.conf.optm-css_async_inline', '1', 'auto'),
(7561, 'litespeed.conf.optm-css_font_display', '', 'auto'),
(7562, 'litespeed.conf.optm-js_defer', '0', 'auto'),
(7563, 'litespeed.conf.optm-emoji_rm', '', 'auto'),
(7564, 'litespeed.conf.optm-noscript_rm', '', 'auto'),
(7565, 'litespeed.conf.optm-ggfonts_async', '', 'auto'),
(7566, 'litespeed.conf.optm-exc_roles', '[]', 'auto'),
(7567, 'litespeed.conf.optm-ccss_con', '', 'auto'),
(7568, 'litespeed.conf.optm-js_defer_exc', '[\"jquery.js\",\"jquery.min.js\",\"gtm.js\",\"analytics.js\"]', 'auto'),
(7569, 'litespeed.conf.optm-gm_js_exc', '[]', 'auto'),
(7570, 'litespeed.conf.optm-dns_prefetch', '[]', 'auto'),
(7571, 'litespeed.conf.optm-dns_prefetch_ctrl', '', 'auto'),
(7572, 'litespeed.conf.optm-dns_preconnect', '[]', 'auto'),
(7573, 'litespeed.conf.optm-exc', '[]', 'auto'),
(7574, 'litespeed.conf.optm-guest_only', '1', 'auto'),
(7575, 'litespeed.conf.object', '', 'auto'),
(7576, 'litespeed.conf.object-kind', '', 'auto'),
(7577, 'litespeed.conf.object-host', 'localhost', 'auto'),
(7578, 'litespeed.conf.object-port', '11211', 'auto'),
(7579, 'litespeed.conf.object-life', '360', 'auto'),
(7580, 'litespeed.conf.object-persistent', '1', 'auto'),
(7581, 'litespeed.conf.object-admin', '1', 'auto'),
(7582, 'litespeed.conf.object-db_id', '0', 'auto'),
(7583, 'litespeed.conf.object-user', '', 'auto'),
(7584, 'litespeed.conf.object-pswd', '', 'auto');
INSERT INTO `wpcn_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(7585, 'litespeed.conf.object-global_groups', '[\"users\",\"userlogins\",\"useremail\",\"userslugs\",\"usermeta\",\"user_meta\",\"site-transient\",\"site-options\",\"site-lookup\",\"site-details\",\"blog-lookup\",\"blog-details\",\"blog-id-cache\",\"rss\",\"global-posts\",\"global-cache-test\"]', 'auto'),
(7586, 'litespeed.conf.object-non_persistent_groups', '[\"comment\",\"counts\",\"plugins\",\"wc_session_id\"]', 'auto'),
(7587, 'litespeed.conf.discuss-avatar_cache', '', 'auto'),
(7588, 'litespeed.conf.discuss-avatar_cron', '', 'auto'),
(7589, 'litespeed.conf.discuss-avatar_cache_ttl', '604800', 'auto'),
(7590, 'litespeed.conf.optm-localize', '', 'auto'),
(7591, 'litespeed.conf.optm-localize_domains', '[\"### Popular scripts ###\",\"https:\\/\\/platform.twitter.com\\/widgets.js\",\"https:\\/\\/connect.facebook.net\\/en_US\\/fbevents.js\"]', 'auto'),
(7592, 'litespeed.conf.media-lazy', '', 'auto'),
(7593, 'litespeed.conf.media-lazy_placeholder', '', 'auto'),
(7594, 'litespeed.conf.media-placeholder_resp', '', 'auto'),
(7595, 'litespeed.conf.media-placeholder_resp_color', '#cfd4db', 'auto'),
(7596, 'litespeed.conf.media-placeholder_resp_svg', '<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"{width}\" height=\"{height}\" viewBox=\"0 0 {width} {height}\"><rect width=\"100%\" height=\"100%\" style=\"fill:{color};fill-opacity: 0.1;\"/></svg>', 'auto'),
(7597, 'litespeed.conf.media-lqip', '', 'auto'),
(7598, 'litespeed.conf.media-lqip_qual', '4', 'auto'),
(7599, 'litespeed.conf.media-lqip_min_w', '150', 'auto'),
(7600, 'litespeed.conf.media-lqip_min_h', '150', 'auto'),
(7601, 'litespeed.conf.media-placeholder_resp_async', '1', 'auto'),
(7602, 'litespeed.conf.media-iframe_lazy', '', 'auto'),
(7603, 'litespeed.conf.media-add_missing_sizes', '', 'auto'),
(7604, 'litespeed.conf.media-lazy_exc', '[]', 'auto'),
(7605, 'litespeed.conf.media-lazy_cls_exc', '[\"wmu-preview-img\"]', 'auto'),
(7606, 'litespeed.conf.media-lazy_parent_cls_exc', '[]', 'auto'),
(7607, 'litespeed.conf.media-iframe_lazy_cls_exc', '[]', 'auto'),
(7608, 'litespeed.conf.media-iframe_lazy_parent_cls_exc', '[]', 'auto'),
(7609, 'litespeed.conf.media-lazy_uri_exc', '[]', 'auto'),
(7610, 'litespeed.conf.media-lqip_exc', '[]', 'auto'),
(7611, 'litespeed.conf.media-vpi', '', 'auto'),
(7612, 'litespeed.conf.media-vpi_cron', '', 'auto'),
(7613, 'litespeed.conf.media-auto_rescale_ori', '', 'auto'),
(7614, 'litespeed.conf.img_optm-auto', '', 'auto'),
(7615, 'litespeed.conf.img_optm-ori', '1', 'auto'),
(7616, 'litespeed.conf.img_optm-rm_bkup', '', 'auto'),
(7617, 'litespeed.conf.img_optm-webp', '0', 'auto'),
(7618, 'litespeed.conf.img_optm-lossless', '', 'auto'),
(7619, 'litespeed.conf.img_optm-sizes_skipped', '[]', 'auto'),
(7620, 'litespeed.conf.img_optm-exif', '1', 'auto'),
(7621, 'litespeed.conf.img_optm-webp_attr', '[\"img.src\",\"div.data-thumb\",\"img.data-src\",\"img.data-lazyload\",\"div.data-large_image\",\"img.retina_logo_url\",\"div.data-parallax-image\",\"div.data-vc-parallax-image\",\"video.poster\"]', 'auto'),
(7622, 'litespeed.conf.img_optm-webp_replace_srcset', '', 'auto'),
(7623, 'litespeed.conf.img_optm-jpg_quality', '82', 'auto'),
(7624, 'litespeed.conf.crawler', '', 'auto'),
(7625, 'litespeed.conf.crawler-crawl_interval', '302400', 'auto'),
(7626, 'litespeed.conf.crawler-load_limit', '1', 'auto'),
(7627, 'litespeed.conf.crawler-sitemap', '', 'auto'),
(7628, 'litespeed.conf.crawler-roles', '[]', 'auto'),
(7629, 'litespeed.conf.crawler-cookies', '[]', 'auto'),
(7630, 'litespeed.conf.misc-heartbeat_front', '', 'auto'),
(7631, 'litespeed.conf.misc-heartbeat_front_ttl', '60', 'auto'),
(7632, 'litespeed.conf.misc-heartbeat_back', '', 'auto'),
(7633, 'litespeed.conf.misc-heartbeat_back_ttl', '60', 'auto'),
(7634, 'litespeed.conf.misc-heartbeat_editor', '', 'auto'),
(7635, 'litespeed.conf.misc-heartbeat_editor_ttl', '15', 'auto'),
(7636, 'litespeed.conf.cdn', '', 'auto'),
(7637, 'litespeed.conf.cdn-ori', '[]', 'auto'),
(7638, 'litespeed.conf.cdn-ori_dir', '[\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\",\"wp-includes\"]', 'auto'),
(7639, 'litespeed.conf.cdn-exc', '[]', 'auto'),
(7640, 'litespeed.conf.cdn-quic', '', 'auto'),
(7641, 'litespeed.conf.cdn-cloudflare', '', 'auto'),
(7642, 'litespeed.conf.cdn-cloudflare_email', '', 'auto'),
(7643, 'litespeed.conf.cdn-cloudflare_key', '', 'auto'),
(7644, 'litespeed.conf.cdn-cloudflare_name', '', 'auto'),
(7645, 'litespeed.conf.cdn-cloudflare_zone', '', 'auto'),
(7646, 'litespeed.conf.cdn-cloudflare_clear', '', 'auto'),
(7647, 'litespeed.conf.cdn-mapping', '[{\"url\":\"\",\"inc_img\":\"1\",\"inc_css\":\"1\",\"inc_js\":\"1\",\"filetype\":[\".aac\",\".css\",\".eot\",\".gif\",\".jpeg\",\".jpg\",\".js\",\".less\",\".mp3\",\".mp4\",\".ogg\",\".otf\",\".pdf\",\".png\",\".svg\",\".ttf\",\".webp\",\".woff\",\".woff2\"]}]', 'auto'),
(7648, 'litespeed.conf.cdn-attr', '[\".src\",\".data-src\",\".href\",\".poster\",\"source.srcset\"]', 'auto'),
(7649, 'litespeed.conf.qc-nameservers', '', 'auto'),
(7650, 'litespeed.conf.qc-cname', '', 'auto'),
(7651, 'litespeed.conf.debug-disable_tmp', '0', 'auto'),
(7652, 'litespeed.purge.queue', '-1', 'auto'),
(7653, 'litespeed.purge.queue2', '-1', 'auto'),
(7666, '_site_transient_update_themes', 'O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1782208196;s:7:\"checked\";a:5:{s:11:\"astra-child\";s:5:\"1.0.0\";s:5:\"astra\";s:6:\"4.12.1\";s:16:\"twentytwentyfive\";s:3:\"1.4\";s:16:\"twentytwentyfour\";s:3:\"1.4\";s:17:\"twentytwentythree\";s:3:\"1.6\";}s:8:\"response\";a:3:{s:5:\"astra\";a:6:{s:5:\"theme\";s:5:\"astra\";s:11:\"new_version\";s:6:\"4.13.4\";s:3:\"url\";s:35:\"https://wordpress.org/themes/astra/\";s:7:\"package\";s:54:\"https://downloads.wordpress.org/theme/astra.4.13.4.zip\";s:8:\"requires\";s:3:\"5.3\";s:12:\"requires_php\";s:3:\"5.3\";}s:16:\"twentytwentyfive\";a:6:{s:5:\"theme\";s:16:\"twentytwentyfive\";s:11:\"new_version\";s:3:\"1.5\";s:3:\"url\";s:46:\"https://wordpress.org/themes/twentytwentyfive/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/theme/twentytwentyfive.1.5.zip\";s:8:\"requires\";s:3:\"6.7\";s:12:\"requires_php\";s:3:\"7.2\";}s:16:\"twentytwentyfour\";a:6:{s:5:\"theme\";s:16:\"twentytwentyfour\";s:11:\"new_version\";s:3:\"1.5\";s:3:\"url\";s:46:\"https://wordpress.org/themes/twentytwentyfour/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/theme/twentytwentyfour.1.5.zip\";s:8:\"requires\";s:3:\"6.4\";s:12:\"requires_php\";s:3:\"7.0\";}}s:9:\"no_update\";a:1:{s:17:\"twentytwentythree\";a:6:{s:5:\"theme\";s:17:\"twentytwentythree\";s:11:\"new_version\";s:3:\"1.6\";s:3:\"url\";s:47:\"https://wordpress.org/themes/twentytwentythree/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/theme/twentytwentythree.1.6.zip\";s:8:\"requires\";s:3:\"6.1\";s:12:\"requires_php\";s:3:\"5.6\";}}s:12:\"translations\";a:0:{}}', 'off'),
(7465, 'litespeed.conf._version', '7.8.0.1', 'auto'),
(7464, 'litespeed.cloud._summary', '{\"curr_request.ver_check\":0,\"last_request.ver_check\":1782100718}', 'auto'),
(6478, 'db_upgraded', '1', 'auto'),
(7069, 'elementor-custom-breakpoints-files', 'a:31:{s:23:\"custom-apple-webkit.min\";a:1:{s:4:\"time\";i:1781156129;}s:19:\"custom-lightbox.min\";a:1:{s:4:\"time\";i:1781156129;}s:19:\"custom-frontend.min\";a:1:{s:4:\"time\";i:1781156129;}s:27:\"custom-widget-accordion.min\";a:1:{s:4:\"time\";i:1781156129;}s:23:\"custom-widget-alert.min\";a:1:{s:4:\"time\";i:1781156129;}s:26:\"custom-widget-icon-box.min\";a:1:{s:4:\"time\";i:1781156129;}s:27:\"custom-widget-icon-list.min\";a:1:{s:4:\"time\";i:1781156129;}s:27:\"custom-widget-image-box.min\";a:1:{s:4:\"time\";i:1781156129;}s:31:\"custom-widget-image-gallery.min\";a:1:{s:4:\"time\";i:1781156129;}s:26:\"custom-widget-progress.min\";a:1:{s:4:\"time\";i:1781156129;}s:29:\"custom-widget-star-rating.min\";a:1:{s:4:\"time\";i:1781156129;}s:22:\"custom-widget-tabs.min\";a:1:{s:4:\"time\";i:1781156129;}s:24:\"custom-widget-toggle.min\";a:1:{s:4:\"time\";i:1781156129;}s:29:\"custom-widget-nested-tabs.min\";a:1:{s:4:\"time\";i:1781156129;}s:29:\"custom-widget-link-in-bio.min\";a:1:{s:4:\"time\";i:1781156129;}s:34:\"custom-widget-link-in-bio-base.min\";a:1:{s:4:\"time\";i:1781156129;}s:34:\"custom-widget-floating-buttons.min\";a:1:{s:4:\"time\";i:1781156129;}s:36:\"custom-widget-floating-bars-base.min\";a:1:{s:4:\"time\";i:1781156129;}s:37:\"custom-widget-floating-bars-var-3.min\";a:1:{s:4:\"time\";i:1781156129;}s:38:\"custom-widget-contact-buttons-base.min\";a:1:{s:4:\"time\";i:1781156129;}s:39:\"custom-widget-contact-buttons-var-7.min\";a:1:{s:4:\"time\";i:1781156129;}s:39:\"custom-widget-contact-buttons-var-9.min\";a:1:{s:4:\"time\";i:1781156129;}s:40:\"custom-widget-contact-buttons-var-10.min\";a:1:{s:4:\"time\";i:1781156129;}s:31:\"custom-pro-widget-loop-grid.min\";a:1:{s:4:\"time\";i:1781156129;}s:28:\"custom-pro-widget-slides.min\";a:1:{s:4:\"time\";i:1781156129;}s:30:\"custom-pro-widget-nav-menu.min\";a:1:{s:4:\"time\";i:1781156129;}s:30:\"custom-pro-widget-flip-box.min\";a:1:{s:4:\"time\";i:1781156129;}s:36:\"custom-pro-widget-call-to-action.min\";a:1:{s:4:\"time\";i:1781156129;}s:42:\"custom-pro-widget-testimonial-carousel.min\";a:1:{s:4:\"time\";i:1781156129;}s:36:\"custom-pro-widget-video-playlist.min\";a:1:{s:4:\"time\";i:1781156129;}s:31:\"custom-pro-widget-mega-menu.min\";a:1:{s:4:\"time\";i:1781156129;}}', 'auto'),
(7070, '_elementor_assets_data', 'a:1:{s:3:\"svg\";a:1:{s:9:\"font-icon\";a:7:{s:14:\"fas-caret-down\";a:2:{s:7:\"content\";a:4:{s:5:\"width\";i:320;s:6:\"height\";i:512;s:4:\"path\";s:119:\"M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z\";s:3:\"key\";s:14:\"fas-caret-down\";}s:7:\"version\";s:6:\"5.15.3\";}s:16:\"eicon-caret-down\";a:2:{s:7:\"content\";a:4:{s:5:\"width\";d:571.4;s:6:\"height\";d:571.4;s:4:\"path\";s:118:\"M571 393Q571 407 561 418L311 668Q300 679 286 679T261 668L11 418Q0 407 0 393T11 368 36 357H536Q550 357 561 368T571 393Z\";s:3:\"key\";s:16:\"eicon-caret-down\";}s:7:\"version\";s:6:\"5.13.0\";}s:18:\"fas-map-marker-alt\";a:2:{s:7:\"content\";a:4:{s:5:\"width\";i:384;s:6:\"height\";i:512;s:4:\"path\";s:244:\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\";s:3:\"key\";s:18:\"fas-map-marker-alt\";}s:7:\"version\";s:6:\"5.15.3\";}s:13:\"fas-phone-alt\";a:2:{s:7:\"content\";a:4:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"path\";s:264:\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\";s:3:\"key\";s:13:\"fas-phone-alt\";}s:7:\"version\";s:6:\"5.15.3\";}s:12:\"far-envelope\";a:2:{s:7:\"content\";a:4:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"path\";s:494:\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\";s:3:\"key\";s:12:\"far-envelope\";}s:7:\"version\";s:6:\"5.15.3\";}s:14:\"fab-facebook-f\";a:2:{s:7:\"content\";a:4:{s:5:\"width\";i:320;s:6:\"height\";i:512;s:4:\"path\";s:172:\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\";s:3:\"key\";s:14:\"fab-facebook-f\";}s:7:\"version\";s:6:\"5.15.3\";}s:13:\"fab-instagram\";a:2:{s:7:\"content\";a:4:{s:5:\"width\";i:448;s:6:\"height\";i:512;s:4:\"path\";s:922:\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\";s:3:\"key\";s:13:\"fab-instagram\";}s:7:\"version\";s:6:\"5.15.3\";}}}}', 'auto'),
(6483, '_site_transient_update_core', 'O:8:\"stdClass\":4:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:57:\"https://downloads.wordpress.org/release/wordpress-7.0.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:57:\"https://downloads.wordpress.org/release/wordpress-7.0.zip\";s:10:\"no_content\";s:68:\"https://downloads.wordpress.org/release/wordpress-7.0-no-content.zip\";s:11:\"new_bundled\";s:69:\"https://downloads.wordpress.org/release/wordpress-7.0-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:3:\"7.0\";s:7:\"version\";s:3:\"7.0\";s:11:\"php_version\";s:3:\"7.4\";s:13:\"mysql_version\";s:5:\"5.5.5\";s:11:\"new_bundled\";s:3:\"6.7\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1782208195;s:15:\"version_checked\";s:3:\"7.0\";s:12:\"translations\";a:0:{}}', 'off'),
(7661, '_transient_timeout_elementor_rollback_versions_3.34.2', '1782812995', 'off'),
(7662, '_transient_elementor_rollback_versions_3.34.2', 'a:30:{i:0;s:6:\"3.34.1\";i:1;s:6:\"3.34.0\";i:2;s:6:\"3.33.6\";i:3;s:6:\"3.33.5\";i:4;s:6:\"3.33.4\";i:5;s:6:\"3.33.3\";i:6;s:6:\"3.33.2\";i:7;s:6:\"3.33.1\";i:8;s:6:\"3.33.0\";i:9;s:6:\"3.32.5\";i:10;s:6:\"3.32.4\";i:11;s:6:\"3.32.3\";i:12;s:6:\"3.32.2\";i:13;s:6:\"3.32.1\";i:14;s:6:\"3.32.0\";i:15;s:6:\"3.31.5\";i:16;s:6:\"3.31.4\";i:17;s:6:\"3.31.3\";i:18;s:6:\"3.31.2\";i:19;s:6:\"3.31.1\";i:20;s:6:\"3.31.0\";i:21;s:6:\"3.30.4\";i:22;s:6:\"3.30.3\";i:23;s:6:\"3.30.2\";i:24;s:6:\"3.30.1\";i:25;s:6:\"3.30.0\";i:26;s:6:\"3.29.2\";i:27;s:6:\"3.29.1\";i:28;s:6:\"3.29.0\";i:29;s:6:\"3.28.4\";}', 'off'),
(7667, '_site_transient_update_plugins', 'O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1782208196;s:8:\"response\";a:4:{s:31:\"backup-backup/backup-backup.php\";O:8:\"stdClass\":14:{s:2:\"id\";s:27:\"w.org/plugins/backup-backup\";s:4:\"slug\";s:13:\"backup-backup\";s:6:\"plugin\";s:31:\"backup-backup/backup-backup.php\";s:11:\"new_version\";s:5:\"2.1.6\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/backup-backup/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/plugin/backup-backup.2.1.6.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:66:\"https://ps.w.org/backup-backup/assets/icon-128x128.png?rev=2995566\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:68:\"https://ps.w.org/backup-backup/assets/banner-772x250.png?rev=2429136\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";s:6:\"tested\";s:3:\"7.0\";s:12:\"requires_php\";s:3:\"5.6\";s:16:\"requires_plugins\";a:0:{}s:14:\"upgrade_notice\";s:3252:\"<p>What&#039;s new in 2.1.6?</p>\n\n<ul>\n<li>[FEATURE] Added direct-to-cloud streaming configuration, notices, and validation checks.</li>\n<li>[FEATURE] Added file integrity verification with chained hash calculation for streamed backups.</li>\n<li>[FEATURE] Added manifest-based MD5 verification support for enhanced backup validation.</li>\n<li>[FEATURE] Added streaming support to the backup process with manifest integration.</li>\n<li>[FEATURE] Added available cloud storage space detection and validation for BackupBliss storage.</li>\n<li>[FEATURE] Added streaming space requirement checks with compatibility recommendations.</li>\n<li>[FEATURE] Added lock status information to backup manifests based on cron state.</li>\n<li>[FEATURE] Added cron-related information to system information reports.</li>\n<li>[FEATURE] Added transient storage of the latest backup file for improved retrieval and tracking.</li>\n<li>[FEATURE] Added streamed backup name display in the backup success modal.</li>\n<li>[FEATURE] Enhanced cloud backup validation and response handling for storage strategy checks.</li>\n<li>[FEATURE] Standardized external storage provider identification across all supported cloud storage providers.</li>\n<li>[ENHANCEMENT] Increased chained hash chunk size to 50MB for improved hashing performance.</li>\n<li>[ENHANCEMENT] Enhanced backup file name validation and security hardening.</li>\n<li>[ENHANCEMENT] Improved cron diagnostics, overdue detection logic, and troubleshooting information.</li>\n<li>[ENHANCEMENT] Improved dashboard tooltips, notifications, and backup method descriptions.</li>\n<li>[ENHANCEMENT] Improved handling of upload rate limiting with automatic retry support for HTTP 429 responses.</li>\n<li>[ENHANCEMENT] Refactored file hashing into a dedicated service for improved maintainability.</li>\n<li>[ENHANCEMENT] Improved BackupBliss storage integration, configuration management, and upload handling.</li>\n<li>[FIX] Prevented early exit when saving backup configuration settings.</li>\n<li>[FIX] Sanitized backup file and URL arguments for improved security.</li>\n<li>[FIX] Resolved cURL deprecation warnings and improved resource validation before closing handles.</li>\n<li>[FIX] Corrected chained hash chunk size constant value.</li>\n<li>[FIX] Corrected storage strategy handling throughout backup processing.</li>\n<li>[FIX] Improved file size retrieval handling with existence checks.</li>\n<li>[FIX] Improved notifications for local site and ping server issues.</li>\n<li>[FIX] Updated troubleshooting selectors and resync functionality for improved user experience.</li>\n<li>[FIX] Improved plugin deactivation and uninstall cleanup for scheduled tasks.</li>\n<li>[FIX] Improved BackupBliss upload session failure logging and storage information retrieval.</li>\n<li>[FIX] Removed unnecessary modal state classes after backup completion.</li>\n<li>[FIX] Prevented fatal errors when checking active plugins.</li>\n<li>[FIX] Improved handling of backup progress status responses.</li>\n<li>[STYLE] Updated review banner markup and cloud backup notice styling for improved consistency.</li>\n<li>[MISC] Various UX improvements, internal optimizations, text refinements, and stability enhancements throughout the plugin.</li>\n</ul>\";}s:23:\"elementor/elementor.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:23:\"w.org/plugins/elementor\";s:4:\"slug\";s:9:\"elementor\";s:6:\"plugin\";s:23:\"elementor/elementor.php\";s:11:\"new_version\";s:5:\"4.1.4\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/elementor.4.1.4.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.gif?rev=3444228\";s:2:\"1x\";s:62:\"https://ps.w.org/elementor/assets/icon-128x128.gif?rev=3444228\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=3443226\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=3443226\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.8\";s:6:\"tested\";s:3:\"7.0\";s:12:\"requires_php\";s:3:\"7.4\";s:16:\"requires_plugins\";a:0:{}}s:35:\"litespeed-cache/litespeed-cache.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:29:\"w.org/plugins/litespeed-cache\";s:4:\"slug\";s:15:\"litespeed-cache\";s:6:\"plugin\";s:35:\"litespeed-cache/litespeed-cache.php\";s:11:\"new_version\";s:5:\"7.8.1\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/litespeed-cache/\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/plugin/litespeed-cache.7.8.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/litespeed-cache/assets/icon-256x256.png?rev=2554181\";s:2:\"1x\";s:68:\"https://ps.w.org/litespeed-cache/assets/icon-128x128.png?rev=2554181\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/litespeed-cache/assets/banner-1544x500.png?rev=2554181\";s:2:\"1x\";s:70:\"https://ps.w.org/litespeed-cache/assets/banner-772x250.png?rev=2554181\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.3\";s:6:\"tested\";s:5:\"6.9.4\";s:12:\"requires_php\";s:3:\"7.2\";s:16:\"requires_plugins\";a:0:{}}s:31:\"elementor-pro/elementor-pro.php\";O:8:\"stdClass\":17:{s:14:\"stable_version\";s:5:\"4.1.0\";s:12:\"last_updated\";s:19:\"2026-05-26 08:58:09\";s:11:\"new_version\";s:5:\"4.1.0\";s:4:\"name\";s:13:\"Elementor Pro\";s:4:\"slug\";s:13:\"elementor-pro\";s:3:\"url\";s:36:\"https://elementor.com/pro/changelog/\";s:8:\"homepage\";s:26:\"https://elementor.com/pro/\";s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:3:\"7.0\";s:18:\"elementor_requires\";s:5:\"3.0.1\";s:7:\"package\";s:377:\"https://plugin-downloads.elementor.com/v2/package_download/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiZXAtdWdMdTFycDNCQ25rY1VNRGRhVUIxNzAxMTA0NjUwRWdENFc3dWVmdDZpIiwidXJsIjoiaHR0cHM6Ly9tcmFyaWYubWUvY3Bub3JkaWMiLCJkb3dubG9hZF9iZXRhIjpmYWxzZSwiZmlsZV9rZXkiOiIxIiwiaWF0IjoxNzc5ODYwMzMwLCJleHAiOjE3Nzk5NDY3MzB9.ApYn71ZM6VgCXy-bZfamHxkxrSGX3dW08nRiP6iQJKM/package_download\";s:13:\"download_link\";s:377:\"https://plugin-downloads.elementor.com/v2/package_download/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiZXAtdWdMdTFycDNCQ25rY1VNRGRhVUIxNzAxMTA0NjUwRWdENFc3dWVmdDZpIiwidXJsIjoiaHR0cHM6Ly9tcmFyaWYubWUvY3Bub3JkaWMiLCJkb3dubG9hZF9iZXRhIjpmYWxzZSwiZmlsZV9rZXkiOiIxIiwiaWF0IjoxNzc5ODYwMzMwLCJleHAiOjE3Nzk5NDY3MzB9.ApYn71ZM6VgCXy-bZfamHxkxrSGX3dW08nRiP6iQJKM/package_download\";s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=1475479\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=1475479\";}s:5:\"icons\";a:1:{s:3:\"svg\";s:61:\"https://assets.elementor.com/miscellaneous/v1/images/icon.svg\";}s:17:\"canary_deployment\";a:2:{s:11:\"plugin_info\";a:12:{s:11:\"new_version\";s:5:\"3.7.0\";s:4:\"name\";s:13:\"Elementor Pro\";s:4:\"slug\";s:13:\"elementor-pro\";s:3:\"url\";s:36:\"https://elementor.com/pro/changelog/\";s:8:\"homepage\";s:26:\"https://elementor.com/pro/\";s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:3:\"7.0\";s:18:\"elementor_requires\";s:5:\"3.0.1\";s:7:\"package\";s:354:\"https://plugin-downloads.elementor.com/v2/previous_download/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiZXAtdWdMdTFycDNCQ25rY1VNRGRhVUIxNzAxMTA0NjUwRWdENFc3dWVmdDZpIiwidmVyc2lvbiI6IjMuNy4wIiwidXJsIjoiaHR0cHM6Ly9tcmFyaWYubWUvY3Bub3JkaWMiLCJpYXQiOjE3Nzk4NjAzMzAsImV4cCI6MTc3OTk0NjczMH0.bpjqxntrvATKjM-hgctin40iMyVTaTASz2F9VX_qMPo/previous_download\";s:13:\"download_link\";s:354:\"https://plugin-downloads.elementor.com/v2/previous_download/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiZXAtdWdMdTFycDNCQ25rY1VNRGRhVUIxNzAxMTA0NjUwRWdENFc3dWVmdDZpIiwidmVyc2lvbiI6IjMuNy4wIiwidXJsIjoiaHR0cHM6Ly9tcmFyaWYubWUvY3Bub3JkaWMiLCJpYXQiOjE3Nzk4NjAzMzAsImV4cCI6MTc3OTk0NjczMH0.bpjqxntrvATKjM-hgctin40iMyVTaTASz2F9VX_qMPo/previous_download\";s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=1475479\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=1475479\";}s:5:\"icons\";a:1:{s:3:\"svg\";s:61:\"https://assets.elementor.com/miscellaneous/v1/images/icon.svg\";}}s:10:\"conditions\";a:1:{i:0;a:1:{i:0;a:3:{s:4:\"type\";s:8:\"language\";s:9:\"languages\";a:27:{i:0;s:5:\"he_IL\";i:1;s:5:\"nl_NL\";i:2;s:5:\"en_GB\";i:3;s:5:\"en_NZ\";i:4;s:5:\"en_ZA\";i:5;s:5:\"en_AU\";i:6;s:5:\"en_CA\";i:7;s:5:\"sv_SE\";i:8;s:5:\"da_DK\";i:9;s:5:\"fr_FR\";i:10;s:5:\"nl_NL\";i:11;s:5:\"nb_NO\";i:12;s:5:\"de_AT\";i:13;s:2:\"fi\";i:14;s:5:\"it_IT\";i:15;s:5:\"nn_NO\";i:16;s:5:\"de_CH\";i:17;s:5:\"en_GB\";i:18;s:5:\"is_IS\";i:19;s:2:\"ga\";i:20;s:5:\"fr_BE\";i:21;s:5:\"nl_BE\";i:22;s:3:\"ast\";i:23;s:5:\"lb_LU\";i:24;s:5:\"es_ES\";i:25;s:5:\"pt_PT\";i:26;s:3:\"mlt\";}s:8:\"operator\";s:2:\"in\";}}}}s:5:\"cloud\";b:0;s:6:\"plugin\";s:31:\"elementor-pro/elementor-pro.php\";}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:0:{}s:7:\"checked\";a:5:{s:31:\"backup-backup/backup-backup.php\";s:5:\"2.1.1\";s:23:\"elementor/elementor.php\";s:6:\"3.34.2\";s:31:\"elementor-pro/elementor-pro.php\";s:5:\"4.1.0\";s:35:\"litespeed-cache/litespeed-cache.php\";s:7:\"7.8.0.1\";s:41:\"powerpack-elements/powerpack-elements.php\";s:6:\"2.10.3\";}}', 'off');
INSERT INTO `wpcn_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(6485, 'elementor_pro_remote_info_api_data_3.34.2', 'a:2:{s:7:\"timeout\";i:1779903531;s:5:\"value\";s:255653:\"{\"stable_version\":\"4.1.0\",\"last_updated\":\"2026-05-26 08:58:09\",\"sections\":\"a:2:{s:11:\\\"description\\\";s:161:\\\"Elementor Pro adds new features to the Elementor Page Builder plugin. Control your conversions, your user engagement, your entire website, from one page builder.\\\";s:9:\\\"changelog\\\";s:239443:\\\"<h2>Elementor Pro - by Elementor.com<\\/h2>\\n<h4>4.1.0 - 2026-05-26<\\/h4>\\n<ul>\\n<li>Tweak: Added Radio Button element to Atomic Form - Atomic Editor<\\/li>\\n<li>Tweak: Added Select element to Atomic Form - Atomic Editor<\\/li>\\n<li>Tweak: Added Date Picker element to Atomic Form - Atomic Editor<\\/li>\\n<li>Tweak: Added Time Picker element to Atomic Form - Atomic Editor<\\/li>\\n<li>Tweak: Added File Upload element to Atomic Form - Atomic Editor<\\/li>\\n<li>Tweak: Added Webhook URL support to Atomic Form - Atomic Editor<\\/li>\\n<li>Tweak: Improved the default To and From field settings in Atomic Form - Atomic Editor<\\/li>\\n<li>Tweak: Updated the Connected Input ID control to a Select control in Atomic Form - Atomic Editor<\\/li>\\n<li>Tweak: Added the Atomic Elements section when editing Loop Grid templates - Atomic Editor<\\/li>\\n<li>Tweak: Added support for dynamic field mentions in email content in Atomic Form - Atomic Editor<\\/li>\\n<li>Tweak: Added Start and End grid lines for the While Scrolling effect in Interactions - Atomic Editor<\\/li>\\n<li>Tweak: Updated the minimum required WordPress version to 6.8<\\/li>\\n<li>Fix: Custom styles are lost for Atomic elements used in loops - Atomic Editor<\\/li>\\n<li>Fix: Action Log and Page Title are not recorded in Atomic Form submissions - Atomic Editor<\\/li>\\n<li>Fix: Inline editing does not work for Buttons inside Atomic Form - Atomic Editor<\\/li>\\n<li>Fix: Atomic Form cannot be dragged into containers or child containers - Atomic Editor<\\/li>\\n<li>Fix: Pasting content from another site may cause a fatal error with Loop Item Templates<\\/li>\\n<\\/ul>\\n<h4>4.0.4 - 2026-04-28<\\/h4>\\n<ul>\\n<li>Fix: Flexbox and Div Block do not work with display conditions - Atomic Editor<\\/li>\\n<li>Fix: Custom CSS editor not editable in RTL websites - Atomic Editor<\\/li>\\n<\\/ul>\\n<h4>4.0.3 - 2026-04-20<\\/h4>\\n<ul>\\n<li>Tweak: Updated base style font styling in Atomic Form - Atomic Editor<\\/li>\\n<li>Fix: Submit button not working inside popups in Atomic Form - Atomic Editor<\\/li>\\n<li>Fix: Forms fail to send when using ACF Email dynamic tag - Atomic Editor<\\/li>\\n<li>Fix: Custom CSS editor not editable in RTL websites - Atomic Editor<\\/li>\\n<\\/ul>\\n<h4>4.0.2 - 2026-04-13<\\/h4>\\n<ul>\\n<li>Fix: Interactions apply only to the first matching element instead of all instances on the page - Atomic Editor<\\/li>\\n<\\/ul>\\n<h4>4.0.1 - 2026-04-01<\\/h4>\\n<ul>\\n<li>Fix: Exposed text properties appear empty in existing components - Atomic Editor (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/35357\\\">#35357<\\/a>)<\\/li>\\n<li>Fix: Cannot publish existing components with overridable properties - Atomic Editor<\\/li>\\n<li>Fix: Unexpected characters appear when deleting attribute values using backspace - Atomic Editor<\\/li>\\n<\\/ul>\\n<h4>4.0.0 - 2026-03-30<\\/h4>\\n<ul>\\n<li>New: Introducing Atomic Forms using composable Atomic elements - create flexible form layouts by combining individual field elements - Atomic Editor<\\/li>\\n<li>New: Introducing Interactions with new triggers and custom effects for dynamic experiences - create animations based on user scroll and user behavior - Atomic Editor<\\/li>\\n<li>Tweak: Component creation is available for Pro users - Atomic Editor<\\/li>\\n<li>Tweak: Added the ability to detach Components into editable layouts - Atomic Editor<\\/li>\\n<li>Tweak: Added support for custom fonts in typography controls - Atomic Editor<\\/li>\\n<li>Fix: Unable to paste content into the Custom CSS field - Atomic Editor<\\/li>\\n<li>Fix: Error when assigning a dynamic custom field to a component\'s inner element in Components - Atomic Editor<\\/li>\\n<\\/ul>\\n<h4>3.35.1 - 2026-02-11<\\/h4>\\n<ul>\\n<li>Fix: Enqueue script errors when <code>WP_DEBUG<\\/code> is enabled (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/34617\\\">#34617<\\/a>)<\\/li>\\n<li>Fix: General UI issues in Editor screens in WordPress Admin<\\/li>\\n<\\/ul>\\n<h4>3.35.0 - 2026-02-02<\\/h4>\\n<ul>\\n<li>Tweak: Extended the color picker to support ACF fields - Editor V4<\\/li>\\n<li>Tweak: Enabled size variables with custom units across relevant controls - Editor V4<\\/li>\\n<li>Tweak: Enabled size variables in border radius controls - Editor V4<\\/li>\\n<\\/ul>\\n<h4>3.34.4 - 2026-01-29<\\/h4>\\n<ul>\\n<li>Fix: Shortcodes overflow the screen on Saved Templates screen in WordPress Admin<\\/li>\\n<li>Fix: Avoid Multiple Popups control does not work in Popups<\\/li>\\n<\\/ul>\\n<h4>3.34.3 - 2026-01-26<\\/h4>\\n<ul>\\n<li>Fix: Theme Builder WordPress view does not work as expected<\\/li>\\n<li>Fix: Submissions menu appears even when the setting is disabled<\\/li>\\n<\\/ul>\\n<h4>3.34.2 - 2026-01-22<\\/h4>\\n<ul>\\n<li>Tweak: Updated notification behavior in Elementor menu in WordPress admin<\\/li>\\n<\\/ul>\\n<h4>3.34.1 - 2026-01-20<\\/h4>\\n<ul>\\n<li>Tweak: Unified the Elementor interface into a single place to manage, optimize, and configure Elementor capabilities in WordPress admin<\\/li>\\n<\\/ul>\\n<h4>3.34.0 - 2025-12-22<\\/h4>\\n<ul>\\n<li>New: Added support for Display Conditions for Atomic Elements - Editor V4<\\/li>\\n<li>Tweak: Enabled media queries for the Desktop breakpoint only in Custom CSS - Editor V4<\\/li>\\n<li>Tweak: Added support for ACF field in Dynamic Tags - Editor V4<\\/li>\\n<li>Tweak: Added support for Google Calendar in Contact URL Dynamic Tag - Editor V4<\\/li>\\n<li>Tweak: Added support for Tel link in Contact URL Dynamic Tag - Editor V4<\\/li>\\n<li>Tweak: Added support for ACF Image field in Dynamic Tags - Editor V4<\\/li>\\n<li>Tweak: Removed icon from the accessibility tree in Flip Box widget<\\/li>\\n<li>Tweak: Applied CSS logical properties in text-align controls and improved RTL rendering in the Editor<\\/li>\\n<li>Fix: Website Template library displayed in English instead of the translated language<\\/li>\\n<li>Fix: Custom CSS field breaks when using certain characters - Editor V4<\\/li>\\n<\\/ul>\\n<h4>3.33.2 - 2025-12-03<\\/h4>\\n<ul>\\n<li>Fix: Incorrect status shown for Custom Code, Fonts, and Icons after importing a Website Template<\\/li>\\n<li>Fix: Display Conditions window appears empty in the editor<\\/li>\\n<\\/ul>\\n<h4>3.33.1 - 2025-11-11<\\/h4>\\n<ul>\\n<li>Fix: Styles not loading correctly in Custom Fonts and Custom Icons admin screens (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/33396\\\">#33396<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.33.0 - 2025-11-10<\\/h4>\\n<ul>\\n<li>New: Introducing Custom CSS for element-level styling with full isolation and responsive control - Editor V4<\\/li>\\n<li>New: Introducing media save to cloud in Website Templates, enabling users to store media assets directly in the cloud for easier access and management.<\\/li>\\n<li>Tweak: Added support for Post Excerpt dynamic tag - Editor V4<\\/li>\\n<li>Tweak: Added support for Internal URL dynamic tag - Editor V4<\\/li>\\n<li>Tweak: Added support for Post Terms dynamic tag - Editor V4<\\/li>\\n<li>Tweak: Added support for Shortcode dynamic tag - Editor V4<\\/li>\\n<li>Tweak: Added support for Popup dynamic tag - Editor V4<\\/li>\\n<li>Tweak: Added support for Off-Canvas dynamic tag - Editor V4<\\/li>\\n<li>Tweak: Added support for Lightbox dynamic tag - Editor V4<\\/li>\\n<li>Tweak: Added support for Add To Cart dynamic tag - Editor V4<\\/li>\\n<li>Tweak: Added support for ACF URL dynamic tag - Editor V4<\\/li>\\n<li>Tweak: Added support for Archive Title dynamic tag - Editor V4<\\/li>\\n<li>Tweak: Added support for the Email Contact URL dynamic tag - Editor V4<\\/li>\\n<li>Tweak: Added support for reduced-motion preferences in Flip Box widget<\\/li>\\n<li>Tweak: Updated minimum supported versions for Chrome, Firefox, and Safari<\\/li>\\n<li>Tweak: Updated Notes button location in the Editor Top Bar<\\/li>\\n<\\/ul>\\n<h4>3.32.3 - 2025-10-21<\\/h4>\\n<ul>\\n<li>Fix: Website Template fails to apply when Custom Code or Custom Icons are included<\\/li>\\n<\\/ul>\\n<h4>3.32.2 - 2025-09-29<\\/h4>\\n<ul>\\n<li>Fix: Exported taxonomies are not displayed correctly on the summary page in Website Templates export<\\/li>\\n<li>Fix: Certain taxonomies are not exported as expected in Website Templates export<\\/li>\\n<\\/ul>\\n<h4>3.32.1 - 2025-09-16<\\/h4>\\n<ul>\\n<li>Fix: Theme Builder fails to load when containers are disabled<\\/li>\\n<li>Fix: Popup and single product templates not imported or exported as expected<\\/li>\\n<\\/ul>\\n<h4>3.32.0 - 2025-09-15<\\/h4>\\n<ul>\\n<li>New: Introducing Size Variables to store and reuse numeric values across spacing, typography, layout, and borders - Editor V4<\\/li>\\n<li>New: Introducing granular Transitions with property-level control for advanced micro-animations - Editor V4<\\/li>\\n<li>New: Added granular content selection for Website Templates import and export, including pages, menus, post types, and taxonomies<\\/li>\\n<li>Tweak: Enhanced accessibility of background images in Slides widget with proper aria attributes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23543\\\">#23543<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/31063\\\">#31063<\\/a>)<\\/li>\\n<li>Tweak: Added REST API support for the Custom Code feature<\\/li>\\n<li>Tweak: Moved Background control from Content tab to Style tab in Flip Box widget<\\/li>\\n<li>Tweak: Removed SVG icons from the accessibility tree in Share Buttons widget<\\/li>\\n<li>Tweak: Removed dropdown indicator icons from the accessibility tree in WordPress Menu widget<\\/li>\\n<li>Fix: PHP 8.4 deprecation notices when running with <code>WP_DEBUG<\\/code> enabled<\\/li>\\n<li>Fix: Reduced-motion preferences are not applied to Animated Headline widget<\\/li>\\n<li>Fix: Reduced-motion preferences are not applied in Motion Effects<\\/li>\\n<li>Fix: Added required PHP and WordPress versions to the plugin header<\\/li>\\n<\\/ul>\\n<h4>3.31.3 - 2025-09-08<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in WordPress Menu widget<\\/li>\\n<\\/ul>\\n<h4>3.31.2 - 2025-08-10<\\/h4>\\n<ul>\\n<li>Tweak: Improved release version functionality<\\/li>\\n<\\/ul>\\n<h4>3.31.1 - 2025-08-06<\\/h4>\\n<ul>\\n<li>Tweak: Updated <code>form-data<\\/code> package version<\\/li>\\n<\\/ul>\\n<h4>3.31.0 - 2025-08-05<\\/h4>\\n<ul>\\n<li>New: Introducing Attributes - add custom HTML attributes to elements for advanced control - Editor V4<\\/li>\\n<li>Tweak: Optimized Custom Code styles by removing redundant RTL file<\\/li>\\n<li>Tweak: Improved performance by loading ribbon styles only when used in Call to Action and Price Table widgets<\\/li>\\n<li>Tweak: Improved semantic markup structure for header and footer documents<\\/li>\\n<li>Tweak: Reorganized design controls in Animated Headline widget<\\/li>\\n<li>Tweak: Reorganized design controls in Blockquote widget<\\/li>\\n<li>Tweak: Reorganized design controls in Countdown widget<\\/li>\\n<li>Tweak: Replaced SASS mixins and functions with native CSS logical properties<\\/li>\\n<li>Fix: Empty headers are rendered in Table of Contents widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28167\\\">#28167<\\/a>)<\\/li>\\n<li>Fix: <code>TypeError<\\/code> bug in Menu widget<\\/li>\\n<\\/ul>\\n<h4>3.30.1 - 2025-07-22<\\/h4>\\n<ul>\\n<li>Security Fix: Improved content sanitization in multiple widgets<\\/li>\\n<li>Fix: UI issue in Hotspot widget when Optimized Markup experiment is enabled<\\/li>\\n<li>Fix: Taxonomy filter not working in the Editor when Optimized Markup experiment is enabled<\\/li>\\n<\\/ul>\\n<h4>3.30.0 - 2025-07-01<\\/h4>\\n<ul>\\n<li>New: Introduced Full Website Templates in the Cloud - export, manage, and reuse full site kits across all your websites from one place<\\/li>\\n<li>Tweak: Activated &quot;Optimized Markup&quot; feature on new sites<\\/li>\\n<li>Tweak: Activated &quot;Menu&quot; feature on new sites<\\/li>\\n<li>Tweak: Improved error handling for Theme Builder display conditions<\\/li>\\n<li>Tweak: Added styling controls to Post Excerpt widget<\\/li>\\n<li>Tweak: Improved accessibility with <code>role<\\/code> and <code>aria-label<\\/code> attributes Post Navigation widget<\\/li>\\n<li>Tweak: Added <code>aria-label<\\/code> in Form widget<\\/li>\\n<li>Tweak: Added <code>aria-label<\\/code> in Login widget<\\/li>\\n<li>Tweak: Arranged content as lists in Portfolio and Posts widgets<\\/li>\\n<li>Tweak: Added Box Shadow and Text Shadow controls in Countdown widget<\\/li>\\n<li>Tweak: Moved image resolution control to content tab in Price List widget<\\/li>\\n<li>Tweak: Renamed and reorganized style sections in Price List widget<\\/li>\\n<li>Tweak: Added conditional logic to controls in Price Table widget<\\/li>\\n<li>Tweak: Grouped layout controls under list section in Price List widget<\\/li>\\n<li>Tweak: Updated minimum required WordPress version to 6.6<\\/li>\\n<li>Fix: Inline font icons support doesn\'t work in Post Navigation widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24367\\\">#24367<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18343\\\">#18343<\\/a>)<\\/li>\\n<li>Fix: Page Title condition doesn\'t work on child pages in Widget Display Conditions<\\/li>\\n<li>Fix: Editor users with &quot;Access to edit content only&quot; are able to delete elements<\\/li>\\n<li>Fix: Links are not crawlable in Video Playlist widget<\\/li>\\n<li>Fix: Uses hardcoded admin fonts in Video Playlist widget<\\/li>\\n<li>Fix: Editor freezes when the Form widget is used with a high PHP upload size limit<\\/li>\\n<li>Fix: Errors occur when Debug mode is enabled in Slides widget<\\/li>\\n<li>Fix: Plugin dependency not enforced in Elementor Pro<\\/li>\\n<li>Fix: Console shows deprecation warning in Global Widgets<\\/li>\\n<\\/ul>\\n<h4>3.29.2 - 2025-06-04<\\/h4>\\n<ul>\\n<li>Tweak: Added selectors to Menu widget for compatibility with Optimized Markup experiment<\\/li>\\n<\\/ul>\\n<h4>3.29.1 - 2025-05-28<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Animated Headline widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Price Table widget<\\/li>\\n<\\/ul>\\n<h4>3.29.0 - 2025-05-19<\\/h4>\\n<ul>\\n<li>New: Introduced Cloud Templates - save, manage, and reuse your templates across all your sites from a single cloud library<\\/li>\\n<li>Tweak: Improved accessibility with <code>role<\\/code> attributes in Share Buttons widget<\\/li>\\n<li>Tweak: Improved accessibility by grouping content with <code>role=region<\\/code> in the Video Playlist widget<\\/li>\\n<li>Fix: Focus color is not applied correctly for accessibility in WordPress Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24239\\\">#24239<\\/a>)<\\/li>\\n<li>Fix: Common scripts loaded late when using the Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.28.4 - 2025-05-05<\\/h4>\\n<ul>\\n<li>Fix: Empty results appeared on the frontend when using the Taxonomy Filter with the \'Avoid Duplicates\' option in Loop Grid widget<\\/li>\\n<li>Fix: Errors occur when Debug mode is enabled and the Optimized Markup experiment is active<\\/li>\\n<\\/ul>\\n<h4>3.28.3 - 2025-04-16<\\/h4>\\n<ul>\\n<li>Tweak: Improved sidebar navigation flow on the Elementor Home screen<\\/li>\\n<\\/ul>\\n<h4>3.28.2 - 2025-03-30<\\/h4>\\n<ul>\\n<li>Fix: Default Elementor animation shown for logged-out users when using an &quot;External URL&quot; source in Lottie widget<\\/li>\\n<\\/ul>\\n<h4>3.28.1 - 2025-03-23<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Animated Headline and Form widgets<\\/li>\\n<\\/ul>\\n<h4>3.28.0 - 2025-03-17<\\/h4>\\n<ul>\\n<li>Tweak: Ensured File Upload field styles are overridden by global styles in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11651\\\">#11651<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17223\\\">#17223<\\/a>)<\\/li>\\n<li>Tweak: Updated Scroll Snap description to clarify incompatibility with animations and motion effects<\\/li>\\n<li>Tweak: Prevented special characters from being encoded in the email subject field in Form widget<\\/li>\\n<li>Tweak: Loaded module styles within the module instead of registering them in <code>plugin.php<\\/code><\\/li>\\n<li>Tweak: Updated minimum required WordPress version to 6.5<\\/li>\\n<li>Tweak: Improved keyboard accessibility for menus in Editor Top Bar<\\/li>\\n<li>Tweak: Made the edit button accessible in the Template widget<\\/li>\\n<li>Tweak: Optimized Form widget performance by caching field assets <code>using get_style_depends()<\\/code> and <code>get_script_depends()<\\/code> methods<\\/li>\\n<li>Tweak: Added Text Shadow control in Testimonial Carousel, Call to Action and Animated Headline widgets<\\/li>\\n<li>Fix: Button icon alignment breaks when Inline Font Icons feature is activated (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16077\\\">#16077<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16511\\\">#16511<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17692\\\">#17692<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17922\\\">#17922<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19253\\\">#19253<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19370\\\">#19370<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21236\\\">#21236<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21844\\\">#21844<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28080\\\">#28080<\\/a>)<\\/li>\\n<li>Fix: Dropdown caret color did not follow menu item color when Inline Font Icons feature is activated (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17500\\\">#17500<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18466\\\">#18466<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21664\\\">#21664<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24929\\\">#24929<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28064\\\">#28064<\\/a>)<\\/li>\\n<li>Fix: Page doesn\'t scroll up when a coupon error notice appears in Checkout widget<\\/li>\\n<\\/ul>\\n<h4>3.27.7 - 2025-03-13<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Lottie widget<\\/li>\\n<\\/ul>\\n<h4>3.27.6 - 2025-03-10<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Template Condition<\\/li>\\n<\\/ul>\\n<h4>3.27.5 - 2025-03-03<\\/h4>\\n<ul>\\n<li>Fix: The <code>wp_trigger_error<\\/code> function causes the site to crash instead of triggering a warning when used with ACF text<\\/li>\\n<\\/ul>\\n<h4>3.27.4 - 2025-02-16<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Screenshots module<\\/li>\\n<li>Security Fix: Improved code security enforcement in Query control<\\/li>\\n<li>Fix: ACF <code>true_false<\\/code> field causing a fatal error when used as a dynamic tag with third-party plugins (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/30170\\\">#30170<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.27.3 - 2025-02-06<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Stripe Button widget<\\/li>\\n<\\/ul>\\n<h4>3.27.2 - 2025-02-03<\\/h4>\\n<ul>\\n<li>Fix: Value type configuration issue causing errors when using ACF<\\/li>\\n<li>Fix: Hide content on responsive breakpoint option is not working on WordPress Menu widget when Optimized Markup experiment is activated<\\/li>\\n<\\/ul>\\n<h4>3.27.1 - 2025-01-27<\\/h4>\\n<ul>\\n<li>Tweak: Increased the number of items allowed in Dynamic Tags options in Display Conditions for Elements<\\/li>\\n<li>Security Fix: Improved code security enforcement in Global widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Lottie widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Admin settings<\\/li>\\n<li>Fix: Accessible navigation in popups caused unintended scrolling of the page when triggered (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/29175\\\">#29175<\\/a>)<\\/li>\\n<li>Fix: Empty custom fields are missing in the Dynamic Tags options in Display Conditions for Elements<\\/li>\\n<\\/ul>\\n<h4>3.27.0 - 2025-01-20<\\/h4>\\n<ul>\\n<li>Tweak: Removed the <code>elementor-widget-container<\\/code> div from the Menu, Loop, Table of Contents, Form, and Hotspot widgets as part of the Optimized Markup experiment to improve HTML structure<\\/li>\\n<li>Tweak: Reduced DOM size by optimizing the submit button markup in Search widget<\\/li>\\n<li>Tweak: Moved style loading to the head instead of the footer to improve CLS<\\/li>\\n<li>Tweak: Enabled conditional loading of Swiper.js based on widget dependencies to reduce unnecessary assets and improve page load times<\\/li>\\n<li>Tweak: Standardized navigation elements like arrows and bullets across all carousel and slider widgets for improved accessibility<\\/li>\\n<li>Tweak: Improved accessibility when the submit button has only an icon and no text in Search widget<\\/li>\\n<li>Tweak: Removed <code>load_plugin_textdomain()<\\/code> function from Elementor Pro<\\/li>\\n<\\/ul>\\n<h4>3.26.3 - 2025-01-07<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Search widget<\\/li>\\n<li>Fix: Height issues cause slideshow thumbnails to display incorrectly in Media Carousel (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/29663\\\">#29663<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.26.2 - 2024-12-22<\\/h4>\\n<ul>\\n<li>Fix: Menu items are not clickable in various scenarios in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/29191\\\">#29191<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.26.1 - 2024-12-17<\\/h4>\\n<ul>\\n<li>Fix: Restore deprecated <code>Plugin::enqueue_styles()<\\/code> function to avoid errors with 3rd party plugins<\\/li>\\n<\\/ul>\\n<h4>3.26.0 - 2024-12-16<\\/h4>\\n<ul>\\n<li>New: Introducing dynamic content support for Off-canvas in Loop Grid widget templates - enabling seamless display of additional content dynamically (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/29049\\\">#29049<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28935\\\">#28935<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7106\\\">#7106<\\/a>)<\\/li>\\n<li>New: AdBlock Detection trigger for Popups - display targeted popups for visitors using ad blockers<\\/li>\\n<li>New: Added Reload Page link action for Dynamic Tags<\\/li>\\n<li>Tweak: Added &quot;Space Between Dots&quot; control to Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2526\\\">#2526<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3277\\\">#3277<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21697\\\">#21697<\\/a>)<\\/li>\\n<li>Tweak: Replaced hidden <code>elementor-screen-only<\\/code> div with <code>aria-label<\\/code> attributes<\\/li>\\n<li>Tweak: Removed <code>elementor-widget-container<\\/code> div from Elementor widgets as part of the Optimized Markup experiment<\\/li>\\n<li>Tweak: Optimize popup styling by loading it only when necessary<\\/li>\\n<li>Tweak: Updated Gap between slides control to support only PX units in Carousel widget<\\/li>\\n<li>Tweak: Removed the dependency between the Tabs handler and the Menu handler<\\/li>\\n<li>Tweak: Added the ability to set <code>aria-label<\\/code> in Carousel widgets<\\/li>\\n<li>Tweak: Added <code>aria-roledescription=carousel<\\/code> to carousel wrapper<\\/li>\\n<li>Tweak: Added <code>aria-roledescription=slide<\\/code> to slide wrapper<\\/li>\\n<li>Tweak: Optimized carousel widgets markup as part of the Optimized Markup experiment<\\/li>\\n<li>Tweak: Updated minimum required Safari version to 15.5<\\/li>\\n<li>Tweak: Facebook widgets are no longer supported on mobile due to Facebook functionality changes<\\/li>\\n<li>Fix: Motion Effects sticky feature is not working when Scroll Snap is enabled<\\/li>\\n<li>Fix: Custom Image Resolution option is not working in Gallery widget<\\/li>\\n<li>Fix: \'Reading Settings\' unexpectedly reduces the number of posts displayed when using the Archive with Pagination setting<\\/li>\\n<li>Fix: Step Form does not scroll to the top when the first field is not an input field in Form widget<\\/li>\\n<li>Fix: Display Condition feature is available without an active Elementor license in Floating Elements<\\/li>\\n<li>Fix: Background options of Flip Box in Loop Grid widget are not working when images are added using ACF Dynamic Tags<\\/li>\\n<li>Fix: Dropdown icon in the Select field of the Form widget is cut off when the Inline Font Icons feature is activated<\\/li>\\n<li>Fix: Incompatibility between Form widget and WPML when using Nested Elements<\\/li>\\n<li>Fix: Performance issues when changing the title name in the Menu widget<\\/li>\\n<li>Fix: Warnings appear when Element Caching is set to Inactive in Carousel widgets<\\/li>\\n<li>Fix: Swiper styling missing from Lightbox inside Gallery widgets<\\/li>\\n<\\/ul>\\n<h4>3.25.5 - 2024-12-10<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Form widget<\\/li>\\n<li>Fix: Accessible navigation in popups caused unintended scrolling of the page when triggered (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/29175\\\">#29175<\\/a>)<\\/li>\\n<li>Fix: Popup overlay shown for non-logged users even when disabled<\\/li>\\n<\\/ul>\\n<h4>3.25.4 - 2024-11-20<\\/h4>\\n<ul>\\n<li>Tweak: Improved Global Widget loading method to enhance performance<\\/li>\\n<\\/ul>\\n<h4>3.25.3 - 2024-11-13<\\/h4>\\n<ul>\\n<li>Fix: Nested Elements are activated even when the Container experiment is inactive<\\/li>\\n<\\/ul>\\n<h4>3.25.2 - 2024-11-03<\\/h4>\\n<ul>\\n<li>Fix: Styling issues affecting popup layout when using a Dynamic Tag to open the popup<\\/li>\\n<li>Fix: Image captions are not displaying for non-logged-in users in Media Carousel widget<\\/li>\\n<li>Fix: Custom Add to Cart widget with Quantity enabled causes critical error (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/29159\\\">#29159<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.25.1 - 2024-10-31<\\/h4>\\n<ul>\\n<li>Fix: Multiple Custom Add to Cart widgets on the same page are adding the same product<\\/li>\\n<\\/ul>\\n<h4>3.25.0 - 2024-10-28<\\/h4>\\n<ul>\\n<li>Tweak: Added pagination functionality to the Live Results in Search widget<\\/li>\\n<li>Tweak: Added Anchor Offset control to allow precise positioning when scrolling to anchor links on the page<\\/li>\\n<li>Tweak: Load motion effects styles only when they are in use<\\/li>\\n<li>Tweak: Load sticky styles only when they are in use<\\/li>\\n<li>Tweak: Load popup styles only when they are in use<\\/li>\\n<li>Tweak: Load theme builder styles only when they are in use<\\/li>\\n<li>Tweak: Load transition styles for Call to Action and Gallery widgets only when they are in use<\\/li>\\n<li>Tweak: Load styles for Form widgets separately to enhance performance<\\/li>\\n<li>Tweak: Load styles for WooCommerce widgets separately to enhance performance<\\/li>\\n<li>Tweak: Load styles for Theme Elements widgets separately to enhance performance<\\/li>\\n<li>Tweak: Load styles for Carousel widgets separately to enhance performance<\\/li>\\n<li>Tweak: Load styles for Pricing widgets separately to enhance performance<\\/li>\\n<li>Tweak: Load styles for Floating Elements separately to enhance performance<\\/li>\\n<li>Tweak: Load styles for Link in Bio widgets separately to enhance performance<\\/li>\\n<li>Tweak: Load minified CSS in the Loop Builder\'s Call to Action button in the Editor<\\/li>\\n<li>Tweak: Removed &quot;Payments&quot; module styles<\\/li>\\n<li>Tweak: Removed <code>elementor-button-wrapper<\\/code> div from Payapl widget as part of the Optimized Markup experiment<\\/li>\\n<li>Tweak: Removed <code>elementor-button-wrapper<\\/code> div from Stripe widget as part of the Optimized Markup experiment<\\/li>\\n<li>Tweak: Merged &quot;Form Submissions&quot; feature into the version and moved it to the Advanced tab<\\/li>\\n<li>Tweak: Merged &quot;Display Conditions&quot; into the version<\\/li>\\n<li>Fix: Missing translation string for the empty message in the Table of Contents widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/27580\\\">#27580<\\/a>)<\\/li>\\n<li>Fix: Local Storage and Session Storage were being used even when popups were not in use (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7151\\\">#7151<\\/a>)<\\/li>\\n<li>Fix: Masonry layout is not working when pagination is set to &quot;Load More&quot; or &quot;Infinite Scroll&quot; in Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23684\\\">#23684<\\/a>)<\\/li>\\n<li>Fix: Extra gap between widgets on the frontend when using Off-canvas widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/27706\\\">#27706<\\/a>)<\\/li>\\n<li>Fix: Pagination and custom queries did not work when the Posts Widget was saved as a Global Widget or used via shortcode<\\/li>\\n<li>Fix: Lightbox videos are missing controls and displayed at the wrong size in Media Carousel widget<\\/li>\\n<li>Fix: Pagination options with Individual Pagination not working as expected in Posts and Loop Grid widgets<\\/li>\\n<li>Fix: Justified or Masonry layouts for the Pro Gallery would not display images on the frontend when inserted via nested tabs<\\/li>\\n<li>Fix: Error issue in the Loop Grid widget when used in theme parts with the Taxonomy Filter<\\/li>\\n<li>Fix: Removed the focus ring after clicking to open the Off Canvas inside the Editor<\\/li>\\n<li>Fix: Background gradient colors from the dynamic color tag values are not rendering on the frontend<\\/li>\\n<li>Fix: Excessive database requests generated by the Loop Grid widget<\\/li>\\n<li>Fix: Colors from Dynamic Tags were not rendered on the frontend<\\/li>\\n<li>Fix: Display issue in the Menu widget caused by the \'Native Intersection Observer API<\\/li>\\n<li>Fix: Dropdown area not working in certain scenarios in Menu widget<\\/li>\\n<li>Fix: Content Width control inside the Mega Menu is displaying an empty value<\\/li>\\n<\\/ul>\\n<h4>3.24.4 - 2024-10-09<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Media Carousel widget<\\/li>\\n<\\/ul>\\n<h4>3.24.3 - 2024-10-01<\\/h4>\\n<ul>\\n<li>Fix: Floating Elements template not loading when Single Page template is set with All Singular condition<\\/li>\\n<li>Fix: Form field styles not loading properly in various scenarios<\\/li>\\n<\\/ul>\\n<h4>3.24.2 - 2024-09-18<\\/h4>\\n<ul>\\n<li>Fix: Icons not displaying when Inline SVG Icons experiment is active in Link In Bio widgets and Floating Elements<\\/li>\\n<\\/ul>\\n<h4>3.24.1 - 2024-09-12<\\/h4>\\n<ul>\\n<li>Fix: Widget styles not loading correctly on front causing alignment inconsistencies (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28676\\\">#28676<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.24.0 - 2024-09-10<\\/h4>\\n<ul>\\n<li>New: Introducing support for Variable Fonts - allowing for more dynamic and flexible text styling (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6703\\\">#6703<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11333\\\">#11333<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19277\\\">#19277<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25485\\\">#25485<\\/a>)<\\/li>\\n<li>Tweak: Added \'Structure\' indication for widgets with Display Conditions applied (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28027\\\">#28027<\\/a>)<\\/li>\\n<li>Tweak: Added a new option for setting the live search results width (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28280\\\">#28280<\\/a>)<\\/li>\\n<li>Tweak: Improved Honeypot field functionality in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28480\\\">#28480<\\/a>)<\\/li>\\n<li>Tweak: Added options to \'Copy\', \'Paste\', and \'Clear\' Display Conditions in Context Menu<\\/li>\\n<li>Tweak: Improved performance of the Menu widget when using Dynamic Tags in the URL field<\\/li>\\n<li>Tweak: Improved performance when using Dynamic Tags in Nested Elements<\\/li>\\n<li>Tweak: Added the option for users to disable Akismet for specific Elementor forms<\\/li>\\n<li>Tweak: Adjusted URL structure when presenting the Search Archive page in Search widget<\\/li>\\n<li>Tweak: Added the \'Create Template\' button in Search widget<\\/li>\\n<li>Tweak: Added an option to enable the \'Loader\' animation while live results are loading in Search widget<\\/li>\\n<li>Tweak: Load share buttons compatibility styles only when they are in use<\\/li>\\n<li>Tweak: Load dialog styles only when they are in use<\\/li>\\n<li>Tweak: Load global widget styles only during Editor preview<\\/li>\\n<li>Tweak: Conditionally load widget styles only when the widgets are used<\\/li>\\n<li>Tweak: Load styles for CTA hover animations only when they are in use<\\/li>\\n<li>Tweak: Load notes styles only when the WordPress Toolbar is displayed<\\/li>\\n<li>Tweak: Split <code>animations.min.css<\\/code> into multiple CSS files and load them conditionally<\\/li>\\n<li>Tweak: Promoted Display Conditions feature to Stable status<\\/li>\\n<li>Tweak: Merged Taxonomy Filter feature into the version<\\/li>\\n<li>Tweak: Merged Search feature into the version<\\/li>\\n<li>Tweak: Added a note to \'Current Query\' explaining the impact of WordPress settings on pagination within Archives<\\/li>\\n<li>Tweak: Added the ability to set <code>aria-label<\\/code> for the Off-Canvas widget<\\/li>\\n<li>Fix: Manual Selection option is not excluding sticky posts in Posts and Loop Grid widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18689\\\">#18689<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23331\\\">#23331<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28179\\\">#28179<\\/a>)<\\/li>\\n<li>Fix: Template ID does not change according to the imported Loop Item (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21404\\\">#21404<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22202\\\">#22202<\\/a>)<\\/li>\\n<li>Fix: \'Editing Mode\' for the Off-canvas was not functioning correctly in certain scenarios<\\/li>\\n<li>Fix: Added definition to <code>clear_custom_image_sizes<\\/code> hook to prevent edge case issues<\\/li>\\n<li>Fix: Flickering issue with search result buttons when closing results using the keyboard escape key in Search widget<\\/li>\\n<li>Fix: Theme Style settings for buttons were overriding the text styling in Search widget<\\/li>\\n<li>Fix: Nesting menu inside another menu causes functionality issues in Menu widget<\\/li>\\n<li>Fix: Error when using array as custom fields value in Dynamic Tags<\\/li>\\n<\\/ul>\\n<h4>3.23.3 - 2024-08-05<\\/h4>\\n<ul>\\n<li>Fix: Dropdown area not working in certain scenarios in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28194\\\">#28194<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.23.2 - 2024-07-29<\\/h4>\\n<ul>\\n<li>Fix: Horizontal scroll bar appearing on the page when using Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28087\\\">#28087<\\/a>)<\\/li>\\n<li>Fix: Dropdown area disappearing in certain scenarios in Menu widget<\\/li>\\n<\\/ul>\\n<h4>3.23.1 - 2024-07-23<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in link URL<\\/li>\\n<\\/ul>\\n<h4>3.23.0 - 2024-07-15<\\/h4>\\n<ul>\\n<li>New: Search Widget with Live Results - Display live search results as visitors type into the search box, enhancing user experience and engagement (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/27664\\\">#27664<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24931\\\">#24931<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21459\\\">#21459<\\/a>)<\\/li>\\n<li>Tweak: Renamed <code>width<\\/code> to <code>Min width<\\/code> and added <code>Max width<\\/code> control to Hotspot tooltips (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18930\\\">#18930<\\/a>)<\\/li>\\n<li>Tweak: Applied a logical DOM order to the Mega Menu widget to improve accessibility<\\/li>\\n<li>Tweak: Added the ability to set <code>aria-label<\\/code> for WordPress Menu widget<\\/li>\\n<li>Tweak: Added the ability to set <code>aria-label<\\/code> for Menu widget<\\/li>\\n<li>Tweak: Added a bottom option to the Image Position control in Call to Action widget<\\/li>\\n<li>Fix: Missing version string in included CSS query string when Improved CSS Loading is enabled (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21879\\\">#21879<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23821\\\">#23821<\\/a>)<\\/li>\\n<li>Fix: Form submission icon message does not display correctly when Inline Font Icons feature is activated<\\/li>\\n<li>Fix: Save and Close button position issues in the conditions screen in Theme Builder.<\\/li>\\n<li>Fix: Focus appears on the first element when using the mouse to open Off-Canvas <\\/li>\\n<li>Fix: Links to Elementor Settings are broken in various locations<\\/li>\\n<li>Fix: Conditions field not showing all relevant conditions in Theme Builder<\\/li>\\n<li>Fix: Off-Canvas flickering in sticky containers with exit animations triggered by sticky effects<\\/li>\\n<\\/ul>\\n<h4>3.22.1 - 2024-06-24<\\/h4>\\n<ul>\\n<li>Fix: Styling of Global widgets not loading when Element Caching experiment is activated (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/27704\\\">#27704<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.22.0 - 2024-06-16<\\/h4>\\n<ul>\\n<li>New: Introducing Off-Canvas widget - create engaging and creative layers triggered by a link (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6225\\\">#6225<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21769\\\">#21769<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25770\\\">#25770<\\/a>)<\\/li>\\n<li>Tweak: Added option to remove \'User IP\' and \'User Agent\' from the form submissions metadata (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14285\\\">#14285<\\/a>)<\\/li>\\n<li>Tweak: Replaced <code>waypoints.js<\\/code> library with the native Intersection Observer API<\\/li>\\n<li>Tweak: Extended Alignment and Position capabilities in Form widget<\\/li>\\n<li>Tweak: Moved icon View control to style tab in Flip Box widget<\\/li>\\n<li>Tweak: Moved icon View control to style tab in Call to Action widget<\\/li>\\n<li>Tweak: Optimized Form widget to eliminate unnecessary markup when the button icon is empty<\\/li>\\n<li>Tweak: Optimized Posts widget to eliminate unnecessary markup when Load More button text is empty<\\/li>\\n<li>Tweak: Remove <code>placeholder<\\/code> arguments from URL controls<\\/li>\\n<li>Tweak: Implemented CSS logical properties to Icon Position in Form, Posts and Menu Cart widgets<\\/li>\\n<li>Tweak: Activated Display Conditions feature for existing sites<\\/li>\\n<li>Tweak: Activated Taxonomy Filter feature for existing sites<\\/li>\\n<li>Tweak: Added functionality to delay the running of the ready triggers on inner elements<\\/li>\\n<li>Fix: Icons are now part of the link in the Menu Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24298\\\">#24298<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25112\\\">#25112<\\/a>)<\\/li>\\n<li>Fix: <code>all: unset<\\/code> assigned to buttons cause focus issues (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24322\\\">#24322<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25448\\\">#25448<\\/a>)<\\/li>\\n<li>Fix: Menu cart SVG icon disappears on front when Optimized Control Loading experiment is activated (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/27342\\\">#27342<\\/a>)<\\/li>\\n<li>Fix: Elementor Pro auto-updates are not working on multisite networks (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12615\\\">#12615<\\/a>)<\\/li>\\n<li>Fix: PHP error appears in the editor when using Loop Grid in an archive template<\\/li>\\n<li>Fix: UI glitch on Icon Position control in Paypal and Stripe Buttons widgets<\\/li>\\n<li>Fix: Icon Position control RTL issue in Hotspot widget<\\/li>\\n<li>Fix: Manual Selection &quot;Include By&quot; Query doesn\'t work with product categories<\\/li>\\n<\\/ul>\\n<h4>3.21.3 - 2024-05-20<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Loop Grid widget<\\/li>\\n<li>Fix: License expired affects the Display Conditions functionality in the front end<\\/li>\\n<\\/ul>\\n<h4>3.21.2 - 2024-04-30<\\/h4>\\n<ul>\\n<li>Fix: Special characters are not displayed correctly when using the Excerpt widget in Loop template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25860\\\">#25860<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.21.1 - 2024-04-24<\\/h4>\\n<ul>\\n<li>Fix: Excerpt Length setting doesn\'t function correctly for languages with non-English characters in Post Excerpt widget<\\/li>\\n<\\/ul>\\n<h4>3.21.0 - 2024-04-15<\\/h4>\\n<ul>\\n<li>New: Introducing Loop Taxonomy Query - Enabling the display of post and product categories and tags within Loop Grid and Loop Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21372\\\">#21372<\\/a>)<\\/li>\\n<li>Tweak: Optimized Hotspot widget to prevent rendering when no image is provided<\\/li>\\n<li>Tweak: Optimized Blockquote widget to eliminate unnecessary markup when devoid of content<\\/li>\\n<li>Tweak: Optimized Template widget to eliminate unnecessary markup when no template is selected<\\/li>\\n<li>Tweak: Optimized Code Highlight widget to eliminate unnecessary markup when there is no content<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Elementor<\\/li>\\n<li>Tweak: Implemented accessibility improvements in Portfolio widget<\\/li>\\n<li>Tweak: Implemented accessibility improvements of Author Avatar image alt text in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25440\\\">#25440<\\/a>)<\\/li>\\n<li>Tweak: Notes feature merged to version<\\/li>\\n<li>Tweak: Implemented accessibility improvements of Profile Picture alt text in Author widget<\\/li>\\n<li>Fix: Display issue on hover state in WooCommerce Menu Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.20.3 - 2024-04-10<\\/h4>\\n<ul>\\n<li>Fix: Compatibility issue between the My Account widget and other third-party plugins (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20986\\\">#20986<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.20.2 - 2024-03-26<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Media Carousel widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Form widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Post Navigation widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Gallery widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Video Playlist widget<\\/li>\\n<\\/ul>\\n<h4>3.20.1 - 2024-03-20<\\/h4>\\n<ul>\\n<li>Fix: Strengthened code integrity in deprecated Woo Single Element widget<\\/li>\\n<li>Fix: PHP error notice appears when using Loop Grid with the Taxonomy Filter widgets<\\/li>\\n<\\/ul>\\n<h4>3.20.0 - 2024-03-11<\\/h4>\\n<ul>\\n<li>Tweak: Implemented OR logic in the Display Conditions feature<\\/li>\\n<li>Tweak: Added X and Threads social networks to Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25299\\\">#25299<\\/a>)<\\/li>\\n<li>Tweak: Added Archive Title dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Featured Image Title dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Featured Image Alt dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Featured Image Caption dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Author Bio dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Author Email dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Author Website dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Page Title rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Post Title rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Featured Image rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Comments Number rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Archive Author rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added support for WordPress Custom Fields in Display Conditions feature<\\/li>\\n<li>Tweak: Implemented accessibility improvements in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23875\\\">#23875<\\/a>)<\\/li>\\n<li>Tweak: Implemented accessibility improvements in Login widget<\\/li>\\n<li>Tweak: Added additional style controls in the Table of Contents widget<\\/li>\\n<li>Tweak: Added Transition Duration option in Blockquote widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21295\\\">#21295<\\/a>)<\\/li>\\n<li>Tweak: Added Transition Duration to button in Flip Box widget<\\/li>\\n<li>Tweak: Added Transition Duration to button in Author Box widget<\\/li>\\n<li>Tweak: Added Transition Duration to List in Table of Contents widget<\\/li>\\n<li>Tweak: Added Transition Duration to button in Login widget<\\/li>\\n<li>Tweak: Added Transition Duration in Post Navigation widget<\\/li>\\n<li>Tweak: Added Transition Duration Show More in Video Playlist widget<\\/li>\\n<li>Tweak: Added Transition Duration to button in Form widget<\\/li>\\n<li>Tweak: Removed separator-none argument from all Editor controls<\\/li>\\n<li>Tweak: Add <code>&lt;time&gt;<\\/code> wrapper for Date and Time items in Post Info widget<\\/li>\\n<li>Tweak: Page Transitions feature merged to version<\\/li>\\n<li>Tweak: Scroll Snap feature merged to version<\\/li>\\n<li>Tweak: Promoted Display Conditions feature to Beta status and activated for new sites<\\/li>\\n<li>Tweak: Promoted Taxonomy Filter feature to beta status and activated for new sites<\\/li>\\n<li>Fix: Page Transitions feature and Load Font Awesome 4 Support cause a console error (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18885\\\">#18885<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19334\\\">#19334<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21082\\\">#21082<\\/a>)<\\/li>\\n<li>Fix: Added better output escaping in Taxonomy Filter widget<\\/li>\\n<\\/ul>\\n<h4>3.19.3 - 2024-02-26<\\/h4>\\n<ul>\\n<li>Tweak: Improved Loop CSS loading structure in Loop Grid item<\\/li>\\n<li>Security Fix: Addressed security weaknesses in Dynamic Tags<\\/li>\\n<\\/ul>\\n<h4>3.19.2 - 2024-02-07<\\/h4>\\n<ul>\\n<li>Fix: Export data inconsistencies when using form actions in Form widget<\\/li>\\n<\\/ul>\\n<h4>3.19.1 - 2024-02-05<\\/h4>\\n<ul>\\n<li>Fix: Enqueuing non-existing Loop Template CSS file in Loop Item template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24959\\\">#24959<\\/a>)<\\/li>\\n<li>Fix: Improved code security enforcement in Countdown widget<\\/li>\\n<\\/ul>\\n<h4>3.19.0 - 2024-01-29<\\/h4>\\n<ul>\\n<li>New: Introducing Display Conditions for Elements - allowing users to customize content visibility based on specified criteria (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4246\\\">#4246<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21152\\\">#21152<\\/a>)<\\/li>\\n<li>New: Implemented Akismet Integration for enhanced spam protection and security in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11401\\\">#11401<\\/a>)<\\/li>\\n<li>New: Introducing Permissions functionality to Element Manager - providing users with enhanced control over access and management capabilities<\\/li>\\n<li>Tweak: Added styling option for dropdown indicator in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21907\\\">#21907<\\/a>)<\\/li>\\n<li>Tweak: Added additional size units and custom units in all elements<\\/li>\\n<li>Tweak: Implemented CSS logical properties in WordPress Menu widget<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Reviews widget<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Countdown widget<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Elementor Editor<\\/li>\\n<li>Tweak: Updated <code>jquery.smartmenus.js<\\/code> version from 1.1.1 to 1.2.0<\\/li>\\n<li>Fix: Dynamic Background Image does not load on the first Loop Item in a Loop Grid (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21489\\\">#21489<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22368\\\">#22368<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23085\\\">#23085<\\/a>)<\\/li>\\n<li>Fix: History panel deprecation notices in console log<\\/li>\\n<li>Fix: Second Pro rollback installed the latest version instead of the specifically selected older version<\\/li>\\n<li>Fix: Incorrect position of the dropdown content when applying entrance animation in Menu Widget<\\/li>\\n<li>Fix: UX issues when using in-place editing in Menu widget<\\/li>\\n<li>Fix: Pagination with page reload is not working when used with the Taxonomy filter and Loop Grid widget in Archive template<\\/li>\\n<\\/ul>\\n<h4>3.18.2 - 2023-12-20<\\/h4>\\n<ul>\\n<li>Fix: Modified controls sanitization to enforce better security policies in Price List widget<\\/li>\\n<li>Fix: Error messages related to loop filter appear on front when using PHP 8.X and <code>WP_DEBUG<\\/code> is true<\\/li>\\n<\\/ul>\\n<h4>3.18.1 - 2023-12-06<\\/h4>\\n<ul>\\n<li>Fix: No results appeared when reloading the page with deep link and de-selecting terms in Taxonomy Filter widget<\\/li>\\n<li>Fix: No results appeared when filtering the Uncategorized category in Filter Taxonomy widget<\\/li>\\n<li>Fix: Notes still available when the Notes feature is deactivated<\\/li>\\n<\\/ul>\\n<h4>3.18.0 - 2023-12-04<\\/h4>\\n<ul>\\n<li>Tweak: Added the ability to upload files as attachments to emails in the File Upload field in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4868\\\">#4868<\\/a>)<\\/li>\\n<li>Tweak: Introduced the capability to design and edit the empty state in the Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24261\\\">#24261<\\/a>)<\\/li>\\n<li>Tweak: Implemented the option to close the menu content area with a click anywhere on the screen in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22686\\\">#22686<\\/a>)<\\/li>\\n<li>Tweak: Improve scrolling behavior inside the content area when there is not enough space in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22712\\\">#22712<\\/a>)<\\/li>\\n<li>Tweak: Expanded breakpoint options in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22488\\\">#22488<\\/a>)<\\/li>\\n<li>Tweak: Added Logical Combination control in Taxonomy Filter widget<\\/li>\\n<li>Tweak: Added additional units to Horizontal and Vertical padding for Dropdown in WordPress Menu widget<\\/li>\\n<li>Tweak: Hide navigation arrows when there is only one slide in Loop Carousel and Carousel widgets<\\/li>\\n<li>Tweak: Added various HTML Tag controls in Video Playlist widget<\\/li>\\n<li>Tweak: Added responsive control to navigation size in Slides, Reviews, Media Carousel and Testimonial Carousel widgets<\\/li>\\n<li>Tweak: Added semantic <code>&lt;search&gt;<\\/code> wrapper in Search Form widget<\\/li>\\n<li>Tweak: Added semantic <code>&lt;search&gt;<\\/code> wrapper in Taxonomy Filter widget<\\/li>\\n<li>Tweak: Added Multiple Selection control in Taxonomy Filter widget<\\/li>\\n<li>Fix: Deprecated notice when using ${var} in strings instead of {$var} with PHP 8.2 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23927\\\">#23927<\\/a>)<\\/li>\\n<li>Fix: Dropdown indicator position issue in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23947\\\">#23947<\\/a>)<\\/li>\\n<li>Fix: Dynamic Tags are not available when choosing \'self-hosted\' source in Video widget<\\/li>\\n<li>Fix: Telephone field placeholder is aligned to the left in RTL websites in Form widget<\\/li>\\n<\\/ul>\\n<h4>3.17.1 - 2023-11-01<\\/h4>\\n<ul>\\n<li>Fix: Modified controls sanitization to enforce better security policies in Code Highlight, Form, Lottie, Price List, and Video Playlist widgets<\\/li>\\n<\\/ul>\\n<h4>3.17.0 - 2023-10-25<\\/h4>\\n<ul>\\n<li>Tweak: Added AJAX pagination option or seamless page navigation between content in Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1284\\\">#1284<\\/a>)<\\/li>\\n<li>Tweak: Introduced Individual Pagination option when multiple Post widgets are on the same page, providing enhanced control over pagination<\\/li>\\n<li>Tweak: Introduced Individual Pagination option when multiple Loop Grid widgets are on the same page, providing enhanced control over pagination<\\/li>\\n<li>Tweak: Added a None option to the breakpoint options in Menu widget<\\/li>\\n<li>Tweak: Added a horizontal scrolling option in Menu widget<\\/li>\\n<li>Tweak: Upgraded minimum required PHP version to 7.3<\\/li>\\n<li>Tweak: Improved accessibility when minimize button is disabled in Table of Content widget<\\/li>\\n<li>Fix: Table of Content widget without icons displays <code>undefined<\\/code> error (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17523\\\">#17523<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17768\\\">#17768<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18463\\\">#18463<\\/a>)<\\/li>\\n<li>Fix: Hover behavior issues on menu items in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23430\\\">#23430<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22431\\\">#22431<\\/a>)<\\/li>\\n<li>Fix: Links inside Loop Carousel are not working on initial load in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23705\\\">#23705<\\/a>)<\\/li>\\n<li>Fix: Popups accessible navigation adds outlines to the wrong first focusable element<\\/li>\\n<li>Fix: Dropdown area aligned to the left side of the screen if contains Tabs widget in Menu widget<\\/li>\\n<li>Fix: Content horizontal position not aligning correctly when used with carousel widgets in Menu widget<\\/li>\\n<li>Fix: Accessibility errors in PageSpeed Insights in Table of Contents widget<\\/li>\\n<\\/ul>\\n<h4>3.16.2 - 2023-09-20<\\/h4>\\n<ul>\\n<li>Fix: Fit to Content dropdown position calculation is incorrect in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23808\\\">#23808<\\/a>)<\\/li>\\n<li>Fix: Reverted hide navigation arrows when there is only one slide in the Loop or Nested carousel (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23804\\\">#23804<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.16.1 - 2023-09-14<\\/h4>\\n<ul>\\n<li>Fix: Dynamic tag for ACF image field is not working as expected (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23757\\\">#23757<\\/a>)<\\/li>\\n<li>Fix: Sticky functionality affects padding values in Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23758\\\">#23758<\\/a>)<\\/li>\\n<li>Fix: HTML list issues for padding and margin in Menu widget<\\/li>\\n<\\/ul>\\n<h4>3.16.0 - 2023-09-12<\\/h4>\\n<ul>\\n<li>Tweak: Implemented accessibility improvements in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23607\\\">#23607<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22554\\\">#22554<\\/a>)<\\/li>\\n<li>Fix: \'Fallback: Recent Posts\' option malfunctions in the Query control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21436\\\">#21436<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23259\\\">#23259<\\/a>)<\\/li>\\n<li>Tweak: Hide navigation arrows when there is only one slide in the Loop or Nested carousel (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22056\\\">#22056<\\/a>)<\\/li>\\n<li>Tweak: Used appropriate image <code>alt<\\/code> in Testimonial Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17680\\\">#17680<\\/a>)<\\/li>\\n<li>Tweak: Optimized Scroll Snap functionality when using Container widget<\\/li>\\n<li>Tweak: Enhanced Elementor Role Manager functionality when using Containers<\\/li>\\n<li>Tweak: Added Notes feature to the Editor Top Bar<\\/li>\\n<li>Tweak: Replace CSS <code>float<\\/code> with other layouts in the Editor<\\/li>\\n<li>Tweak: Upgraded HTML Structure for the Menu widget<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Carousel and Menu widgets<\\/li>\\n<li>Tweak: Added keyboard accessibility to a link in Posts widget<\\/li>\\n<li>Tweak: Loop Builder feature merged to version<\\/li>\\n<li>Fix: Addressed inconsistency in hover effect durations between icon, dropdown indicator colors, and text colors in the Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22376\\\">#22376<\\/a>)<\\/li>\\n<li>Fix: Slides break if the parent container is set to HTML A tag in Loop Carousel and Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22678\\\">#22678<\\/a>)<\\/li>\\n<li>Fix: The icon size setting is not affecting uploaded SVG icons in the Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22372\\\">#22372<\\/a>)<\\/li>\\n<li>Fix: Taxonomy filter does not work with slug in foreign characters (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23315\\\">#23315<\\/a>)<\\/li>\\n<li>Fix: Improved code security enforcement in Dynamic Tags<\\/li>\\n<li>Fix: Sticky container incorrectly adjusts its width when transitioning from a smaller breakpoint to a larger one within the Editor<\\/li>\\n<\\/ul>\\n<h4>3.15.1 - 2023-08-09<\\/h4>\\n<ul>\\n<li>Fix: Improved code security enforcement in Table of Contents widget<\\/li>\\n<\\/ul>\\n<h4>3.15.0 - 2023-07-31<\\/h4>\\n<ul>\\n<li>New: Introducing Taxonomy Filter widget - Empower visitors to seamlessly filter listings in Loop Grids based on taxonomies (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3140\\\">#3140<\\/a>)<\\/li>\\n<li>Tweak: Added an &quot;Offset Sides&quot; functionality in Carousel and Loop Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21114\\\">#21114<\\/a>)<\\/li>\\n<li>Tweak: Modified the size of the Publish button in the Editor Top Bar feature (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22472\\\">#22472<\\/a>)<\\/li>\\n<li>Tweak: Improved Ajax permissions functionality for better security enforcement<\\/li>\\n<li>Tweak: Added option for pagination custom position in Carousel and Loop Carousel widgets<\\/li>\\n<li>Tweak: Added option for navigation custom position in Carousel and Loop Carousel widgets<\\/li>\\n<li>Tweak: Added additional styling options for navigation in Carousel and Loop Carousel widgets<\\/li>\\n<li>Tweak: Added labels to shortcode column in WordPress admin<\\/li>\\n<li>Tweak: Unified the appearance of <code>stretch<\\/code> and <code>center<\\/code> buttons in Menu widget<\\/li>\\n<li>Tweak: Unified the appearance of <code>stretch<\\/code> and <code>center<\\/code> buttons in My Account widget<\\/li>\\n<li>Tweak: Improved panel UI in Video Playlist widget<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Elementor Editor<\\/li>\\n<li>Tweak: Added &quot;Title HTML Tag&quot; and &quot;Description HTML Tag&quot; in Price List widget<\\/li>\\n<li>Tweak: Added &quot;Title HTML Tag&quot; and &quot;Description HTML Tag&quot; in Slides widget<\\/li>\\n<li>Tweak: Added &quot;Title HTML Tag&quot; and &quot;Description HTML Tag&quot; in Flip Box widget<\\/li>\\n<li>Tweak: Added &quot;Description HTML Tag&quot; in Call To Action widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Share Buttons widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Form widget<\\/li>\\n<li>Fix: WooCommerce Status page failed to recognize Elementor WooCommerce widgets<\\/li>\\n<li>Fix: Pagination does not work inside single templates when using Posts and Loop Grid widgets<\\/li>\\n<li>Fix: Incorrect saving of WooCommerce page settings in Elementor site settings under certain scenarios<\\/li>\\n<\\/ul>\\n<h4>3.14.1 - 2023-06-26<\\/h4>\\n<ul>\\n<li>Tweak: Improved navigation on touch devices in Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22827\\\">#22827<\\/a>)<\\/li>\\n<li>Fix: Missing navigation arrows on lightbox in Gallery widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22870\\\">#22870<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.14.0 - 2023-06-19<\\/h4>\\n<ul>\\n<li>New: Introducing Carousel widget - Infinite design possibilities, and nesting capabilities (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2587\\\">#2587<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/219\\\">#219<\\/a>)<\\/li>\\n<li>Tweak: Added Static Item Position functionality to Alternate template in Loop Grid widget<\\/li>\\n<li>Tweak: Added visual indication of Page Parts<\\/li>\\n<li>Tweak: Added dividers option between menu items in Menu widget<\\/li>\\n<li>Tweak: Changed the HTML structure of Pagination and Navigation in Loop Carousel and Nested Carousel widgets<\\/li>\\n<li>Tweak: Added shop page in WooCommerce Pages section in Site Settings<\\/li>\\n<li>Tweak: Added Text Shadow, Box Shadow and Padding control to button in Call to Action widget<\\/li>\\n<li>Tweak: Added Lazy Load support for images in Video Playlist widget<\\/li>\\n<li>Tweak: Added <code>alt<\\/code> attribute to images in Video Playlist widget<\\/li>\\n<li>Tweak: Replaced select control with choose control for Flip Direction control in Flip Box widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to Carousel and Loop Carousel widgets<\\/li>\\n<li>Tweak: Use <code>media_types<\\/code> array in Media controls<\\/li>\\n<li>Fix: Lightbox is still enabled after disabling it in the Site Settings in Gallery widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11193\\\">#11193<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19871\\\">#19871<\\/a>)<\\/li>\\n<li>Fix: Responsive settings for templates don\'t work as expected when Additional Custom Breakpoints feature is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16819\\\">#16819<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19394\\\">#19394<\\/a>)<\\/li>\\n<li>Fix: Inner containers are not presented as expected in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21813\\\">#21813<\\/a>)<\\/li>\\n<li>Fix: Popup width does not support percentages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22413\\\">#22413<\\/a>)<\\/li>\\n<li>Fix: PHP 8.x throws errors when using WooCommerce Ajax response (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22199\\\">#22199<\\/a>)<\\/li>\\n<li>Fix: Mini cart template appears as empty in various scenarios in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22789\\\">#22789<\\/a>)<\\/li>\\n<li>Fix: Order by Price doesn\'t work for the Latest products or Manual Selection in Products widget<\\/li>\\n<li>Fix: Dropdown indicator icon is not vertically aligned to the text when using icon in Menu Widget<\\/li>\\n<li>Fix: Mixed content warning in the console for Video Playlist widget<\\/li>\\n<li>Fix: Preview settings are not presented as expected after first save in Loop Template<\\/li>\\n<li>Fix: Not-crawlable link error in Video Playlist widget<\\/li>\\n<li>Fix: Lightbox is still enabled after disabling it in the Site Settings in Logo widget<\\/li>\\n<li>Fix: Focus state issue on page load when using Table of Content widget<\\/li>\\n<\\/ul>\\n<h4>3.13.2 - 2023-05-22<\\/h4>\\n<ul>\\n<li>Fix: Hover settings not working as expected on Touch-Enabled devices in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22258\\\">#22258<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.13.1 - 2023-05-11<\\/h4>\\n<ul>\\n<li>Security Fix: Addressed security weaknesses in access management related functions<\\/li>\\n<li>Fix: Excerpt content pulled from post content is showing with HTML tags in Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22367\\\">#22367<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.13.0 - 2023-05-08<\\/h4>\\n<ul>\\n<li>Tweak: Provided an option to assign excerpt automatically from post content in Post Excerpt dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20256\\\">#20256<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21715\\\">#21715<\\/a>)<\\/li>\\n<li>Tweak: Added Display Conditions functionality in Editor Top bar (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21675\\\">#21675<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22050\\\">#22050<\\/a>)<\\/li>\\n<li>Tweak: Removed <code>elementor_page_id<\\/code> from request URLs in the WC AJAX calls (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18675\\\">#18675<\\/a>)<\\/li>\\n<li>Tweak: Added icons to menu items in Mega Menu widget (<a href=\\\"https:\\/\\/github.com\\/orgs\\/elementor\\/discussions\\/21602\\\">#21602<\\/a>)<\\/li>\\n<li>Tweak: Added keyboard accessibility to Toggle Button in WordPress Menu widget (<a href=\\\"https:\\/\\/github.com\\/orgs\\/elementor\\/discussions\\/2348\\\">#2348<\\/a>)<\\/li>\\n<li>Tweak: Added \'Active item state\' to top-level menu items for anchor links in the Menu widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to navigation arrows in Loop Carousel widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to navigation arrows in Slides widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to navigation arrows in Media, Testimonial and Reviews Carousel widgets<\\/li>\\n<li>Tweak: Added keyboard accessibility to Table of Content widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to Search Form widget<\\/li>\\n<li>Tweak: Added accessibility to images in Slides widget<\\/li>\\n<li>Tweak: Added accessibility to images in Call To Action widget<\\/li>\\n<li>Tweak: Added accessibility to images in Media Carousel widget<\\/li>\\n<li>Tweak: Added accessibility to images in Gallery widget<\\/li>\\n<li>Tweak: Added Lazy Load support for avatar image in Post Info widget<\\/li>\\n<li>Tweak: Added Lazy Load support to various Elementor Editor and Admin images<\\/li>\\n<li>Tweak: Added Lazy Load support for author image in Author Box widget<\\/li>\\n<li>Tweak: Added Lazy Load support for images in Price List widget<\\/li>\\n<li>Fix: Content width is affected by the widget\'s width when Content Width is set to Fit to Content in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21842\\\">#21842<\\/a>)<\\/li>\\n<li>Fix: Empty value on Rows field causes an error in Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21451\\\">#21451<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.12.2 - 2023-04-09<\\/h4>\\n<ul>\\n<li>Fix: Mini cart template appears as empty in various WordPress themes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21836\\\">#21836<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.12.1 - 2023-04-02<\\/h4>\\n<ul>\\n<li>Fix: Default background colors are presented as transparent in Popup (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21824\\\">#21824<\\/a>)<\\/li>\\n<li>Fix: Reverted the tweak of Form Submissions feature merged to the version (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21821\\\">#21821<\\/a>)<\\/li>\\n<li>Fix: Dropdown area is not closing when hovering outside of the content area in Menu widget<\\/li>\\n<\\/ul>\\n<h4>3.12.0 - 2023-03-29<\\/h4>\\n<ul>\\n<li>New: Introducing the Mega Menu with the new Menu widget - empowers you to achieve a much higher level of menu design, customization, and creativity<\\/li>\\n<li>New: Diversify your design with a Loop Alternate template - apply another template within your Loop Grid for design creativity<\\/li>\\n<li>New: Kickstart your workflow with predesigned Loop container-based templates<\\/li>\\n<li>Tweak: Added custom icon controls to various locations in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13678\\\">#13678<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17941\\\">#17941<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19295\\\">#19295<\\/a>)<\\/li>\\n<li>Tweak: Added a spacing control between navigation and slides in the Loop Carousel<\\/li>\\n<li>Tweak: Added responsive control to the \'Gap between slides\' control in the Loop Carousel<\\/li>\\n<li>Tweak: Added Custom CSS section in Loop Item template<\\/li>\\n<li>Tweak: Added an Article class metadata in Loop Item template<\\/li>\\n<li>Tweak: Added Lazy Load support for background images in CTA widget when using the Lazy Load Background Images experiment<\\/li>\\n<li>Tweak: Added Lazy Load support for background images in Flipbox widget when using the Lazy Load Background Images experiment<\\/li>\\n<li>Tweak: Added additional size units and custom units in all elements<\\/li>\\n<li>Tweak: Changed Nav Menu widget name to WordPress Menu widget<\\/li>\\n<li>Tweak: Added &quot;Form Validation&quot; control to Form widget<\\/li>\\n<li>Tweak: Updated custom messages in the Form widget<\\/li>\\n<li>Tweak: Improved accessibility in various elements in Gallery widget<\\/li>\\n<li>Tweak: Form Submissions feature merged to version<\\/li>\\n<li>Tweak: Loop feature promoted to Stable status<\\/li>\\n<li>Tweak: Page Transitions feature promoted to Stable status<\\/li>\\n<li>Tweak: Improved accessibility in filter bar in Gallery widget<\\/li>\\n<li>Tweak: Remove unused <code>aspect-ratio-*<\\/code> CSS classes<\\/li>\\n<li>Fix: Not all active breakpoints appear under &quot;Advanced Rules&quot; in popup publish settings (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17020\\\">#17020<\\/a>)<\\/li>\\n<li>Fix: Dynamic background image and video is not working with ACF in Loop Grid widget<\\/li>\\n<\\/ul>\\n<h4>3.11.7 - 2023-03-22<\\/h4>\\n<ul>\\n<li>Tweak: Improved code security enforcement in WooCommerce components<\\/li>\\n<\\/ul>\\n<h4>3.11.6 - 2023-03-14<\\/h4>\\n<ul>\\n<li>Tweak: Improved code security enforcement in Author Box and Countdown widgets<\\/li>\\n<\\/ul>\\n<h4>3.11.5 - 2023-03-12<\\/h4>\\n<ul>\\n<li>Fix: Hamburger Menu Toggle not showing if breakpoint is set to Tablet Extra in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21003\\\">#21003<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.11.4 - 2023-03-07<\\/h4>\\n<ul>\\n<li>Tweak: Prevented SVG file upload for better security enforcement in Forms widget<\\/li>\\n<\\/ul>\\n<h4>3.11.3 - 2023-02-26<\\/h4>\\n<ul>\\n<li>Fix: Error message appears when submitting a form placed below Loop Grid and Loop Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21432\\\">#21432<\\/a>)<\\/li>\\n<li>Fix: PHP 8.x compatibility issues in various places<\\/li>\\n<\\/ul>\\n<h4>3.11.2 - 2023-02-22<\\/h4>\\n<ul>\\n<li>Fix: Save &amp; Back handle becomes inaccessible in various scenarios cases in Loop Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21316\\\">#21316<\\/a>)<\\/li>\\n<li>Fix: Can\'t edit page when using \'Content Tabs\' and \'Section\' options in Video Playlist widget<\\/li>\\n<\\/ul>\\n<h4>3.11.1 - 2023-02-15<\\/h4>\\n<ul>\\n<li>Fix: Featured Image dynamic tag is not working in Background images (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21313\\\">#21313<\\/a>)<\\/li>\\n<li>Fix: Time zone is not correct in Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17485\\\">#17485<\\/a>)<\\/li>\\n<li>Fix: File upload field is not working in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21341\\\">#21341<\\/a>)<\\/li>\\n<li>Fix: Post Image Attachments dynamic tag is not working in various widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21314\\\">#21314<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.11.0 - 2023-02-13<\\/h4>\\n<ul>\\n<li>New: Introducing Loop Carousel widget - Create powerful &amp; repeating loop templates and populate each one with dynamic content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/219\\\">#219<\\/a>)<\\/li>\\n<li>New: Added Date and Time Range option to Advanced Rules in Popup<\\/li>\\n<li>Tweak: Improved accessibility when opening and closing a popup (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9788\\\">#9788<\\/a>)<\\/li>\\n<li>Tweak: Improved accessibility of full-screen mode in Search Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19907\\\">#19907<\\/a>)<\\/li>\\n<li>Tweak: Added keyboard accessibility support to Flip Box widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5861\\\">#5861<\\/a>)<\\/li>\\n<li>Tweak: Add <code>aria-label<\\/code> to read more link in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13784\\\">#13784<\\/a>)<\\/li>\\n<li>Tweak: Use <code>aspect-ratio<\\/code> property instead of CSS trick in Media Carousel widget<\\/li>\\n<li>Tweak: Updated translation string in Stripe widget<\\/li>\\n<li>Fix: Masonry and Columns controls are not working as expected with responsive in Posts and Loop Grid widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20670\\\">#20670<\\/a>)<\\/li>\\n<li>Fix: Invalid attributes names in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17400\\\">#17400<\\/a>)<\\/li>\\n<li>Fix: Post Image Attachments dynamic tag is not working as expected in various widgets<\\/li>\\n<li>Fix: Form fields order is not presented correctly when exported to CSV in Form Submissions<\\/li>\\n<li>Fix: Dynamic background image and video are not working with ACF in Loop Grid widget<\\/li>\\n<\\/ul>\\n<h4>3.10.3 - 2023-01-29<\\/h4>\\n<ul>\\n<li>Tweak: Added introduction video to loop item information modal in Theme Builder<\\/li>\\n<li>Fix: PHP 8.x throws errors and notices in some cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21087\\\">#21087<\\/a>)<\\/li>\\n<li>Fix: Infinite Scroll and Load on click pagination are not working as expected in Archive template<\\/li>\\n<li>Fix: Show row even when values do not exist in Form Submissions<\\/li>\\n<\\/ul>\\n<h4>3.10.2 - 2023-01-17<\\/h4>\\n<ul>\\n<li>Fix: Updated compatibility tag for Elementor v3.10<\\/li>\\n<\\/ul>\\n<h4>3.10.1 - 2023-01-09<\\/h4>\\n<p>Fix: Preview Could not be loaded error message appears on pages containing the Loop Grid in a header or footer templates<\\/p>\\n<h4>3.10.0 - 2023-01-09<\\/h4>\\n<ul>\\n<li>New: Added new dynamic tag for due date in Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7737\\\">#7737<\\/a>)<\\/li>\\n<li>Tweak: Added <code>modified<\\/code> and <code>comment_count<\\/code> to Order By in posts query control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11159\\\">#11159<\\/a>)<\\/li>\\n<li>Tweak: Replaced <code>footer<\\/code> tag in Blockquote and Comments widgets for better semantics<\\/li>\\n<li>Fix: Compatibility issue in Imagify Media Library filters due to <code>_elementor_is_screenshot<\\/code> meta filter (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19988\\\">#19988<\\/a>)<\\/li>\\n<li>Fix: Hotspot Widget label icon height issues when Inline Font Icons experiment is active<\\/li>\\n<li>Fix: Editing glitch when using two loop grid widgets on the same page with the same loop item template<\\/li>\\n<li>Fix: Equal height is not working when using sections in Loop Grid widget<\\/li>\\n<li>Fix: Large amount of menu items are not appearing correctly on a mobile device in Nav Menu widget<\\/li>\\n<li>Fix: Featured Image does not change dynamically when using infinite\\/click pagination in Loop Grid widget<\\/li>\\n<li>Fix: Removed action call of non-existent <code>display_empty_cart_template()<\\/code> method in Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.9.2 - 2022-12-21<\\/h4>\\n<ul>\\n<li>Fix: JS events do not trigger in Popups (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20708\\\">#20708<\\/a>)<\\/li>\\n<li>Fix: PHP Errors appear when not using the toggle menu in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18636\\\">#18636<\\/a>)<\\/li>\\n<li>Fix: Popups\' backgrounds disappear when using Lazy Load Background Images experiment<\\/li>\\n<\\/ul>\\n<h4>3.9.1 - 2022-12-14<\\/h4>\\n<ul>\\n<li>Fix: WooCommerce Product Gallery dynamic tag is not working in Basic Gallery, Gallery and Image Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20678\\\">#20678<\\/a>)<\\/li>\\n<li>Fix: Hide Empty option is not working in Menu Cart widget<\\/li>\\n<li>Fix: The Stripe Button widget doesn\'t work in Templates<\\/li>\\n<\\/ul>\\n<h4>3.9.0 - 2022-12-06<\\/h4>\\n<ul>\\n<li>New: Added support for WooCommerce to Loop Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20020\\\">#20020<\\/a>)<\\/li>\\n<li>Tweak: Added more options to \'Show up to X times\' advanced rule in Popups (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8187\\\">#8187<\\/a>)<\\/li>\\n<li>Tweak: Allow saving and reloading a page while editing in-place loop item template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19882\\\">#19882<\\/a>)<\\/li>\\n<li>Tweak: Added <code>$location param<\\/code> to <code>elementor\\/theme\\/get_location_templates\\/template_id<\\/code> hook (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18453\\\">#18453<\\/a>)<\\/li>\\n<li>Tweak: Removed redundant labels from group controls (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11666\\\">#11666<\\/a>)<\\/li>\\n<li>Tweak: Added support to use sections and columns as the layout structure of a Loop item template<\\/li>\\n<li>Tweak: Disabled movement when a repeater item is in focus in edit mode<\\/li>\\n<li>Tweak: Upgrade the autoprefixer package to better minify CSS files<\\/li>\\n<li>Tweak: Removed duplicate SQL queries on every page for better performance<\\/li>\\n<li>Tweak: Improved License validation mechanism to avoid limitations<\\/li>\\n<li>Tweak: Added more units options to Border Width control in various elements<\\/li>\\n<li>Tweak: Added <code>em<\\/code> units to Border Radius control in various elements<\\/li>\\n<li>Tweak: Added \'Equal height\' functionality to Loop Grid widget<\\/li>\\n<li>Fix: Issue with Related Products widget and WooCommerce Pixel Manager plugin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16934\\\">#16934<\\/a>)<\\/li>\\n<li>Fix: My Account widget gets hidden when using a single page template with post content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19627\\\">#19627<\\/a>)<\\/li>\\n<li>Fix: Cart is not updated when cache enabled in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19312\\\">#19312<\\/a>)<\\/li>\\n<li>Fix: Entrance animations are not working as expected with Infinite Loop and Load on CLick pagination in Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20293\\\">#20293<\\/a>)<\\/li>\\n<li>Fix: Loading page issues in Form Submissions screen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19973\\\">#19973<\\/a>)<\\/li>\\n<li>Fix: Recently Edited date and time not working as expected in Elementor Overview plugin in WordPress dashboard (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17966\\\">#17966<\\/a>)<\\/li>\\n<li>Fix: Recurring license mismatch error message when using translators plugins<\\/li>\\n<li>Fix: Submenu items triggers page transition instead of opening in Nav Menu widget<\\/li>\\n<li>Fix: Query values of Posts widget are not imported correctly when importing a Kit<\\/li>\\n<li>Fix: Loop items are exceeding the widget boundaries in Loop Grid widget<\\/li>\\n<li>Fix: Order by option is not working as expected when choosing Upsells, Cross-Sells and Related Products query in Products widget<\\/li>\\n<li>Fix: Various widgets disappear in certain scenarios when choosing direction Row or Column in Container<\\/li>\\n<\\/ul>\\n<h4>3.8.2 - 2022-11-20<\\/h4>\\n<ul>\\n<li>Fix: Z-index issues when applying sticky to Container<\\/li>\\n<li>Fix: Error message appears on front with Editor and Shop Manager roles when using the Loop Builder widget<\\/li>\\n<\\/ul>\\n<h4>3.8.1 - 2022-11-06<\\/h4>\\n<ul>\\n<li>Fix: Sticky inner section is not staying in the column when applying sticky option in Sections (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20203\\\">#20203<\\/a>)<\\/li>\\n<li>Fix: Post Title widget located in a loop item template disappears when enabling the hide title option inside page settings (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20207\\\">#20207<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20255\\\">#20255<\\/a>)<\\/li>\\n<li>Fix: ACF Dynamic data not rendering correctly in various scenarios (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20235\\\">#20235<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20258\\\">#20258<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20277\\\">#20277<\\/a>)<\\/li>\\n<li>Fix: Z-index issues when applying sticky to Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20227\\\">#20227<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.8.0 - 2022-10-30<\\/h4>\\n<ul>\\n<li>New: Introducing Loop Builder as a beta status experiment - Create powerful &amp; repeating loop templates and populate each one with dynamic content and design flexibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4440\\\">#4440<\\/a>)<\\/li>\\n<li>Tweak: Add <code>wp_body_open()<\\/code> to header in Header template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11562\\\">#11562<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15828\\\">#15828<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13089\\\">#13089<\\/a>)<\\/li>\\n<li>Tweak: Added support border-radius option to the Code Highlight widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14316\\\">#14316<\\/a>)<\\/li>\\n<li>Tweak: Import\\/Export CLI and UI mechanisms were merged into a unified service<\\/li>\\n<li>Tweak: User with no permission to Notes cannot be mentioned in a note<\\/li>\\n<li>Tweak: User with no permission to view a post cannot be mentioned in a note<\\/li>\\n<li>Tweak: Notes was added to the right click context-menu<\\/li>\\n<li>Tweak: Notes panel can be resizable<\\/li>\\n<li>Tweak: Notes panel can be dragged outside of the canvas in responsive mode in the editor<\\/li>\\n<li>Tweak: Updated form validation messages translation strings in Form widget<\\/li>\\n<li>Tweak: Updated translators comments<\\/li>\\n<li>Tweak: Theme Builder logo and Title should be clickable<\\/li>\\n<li>Tweak: Reduced API requests and DB calls on non-write setup<\\/li>\\n<li>Tweak: Added media queries to the Table of Contents widget<\\/li>\\n<li>Fix: Sticky option is not working as expected in various scenarios in Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18357\\\">#18357<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19540\\\">#19540<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19618\\\">#19618<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19777\\\">#19777<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19827\\\">#19827<\\/a>)<\\/li>\\n<li>Fix: Mixed Content errors on HTTPS in Video Playlist Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18895\\\">#18895<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18945\\\">#18945<\\/a>)<\\/li>\\n<li>Fix: Note\'s timestamp is being updated according to the last activity in Notes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19123\\\">#19123<\\/a>)<\\/li>\\n<li>Fix: Accessibility attribute <code>role=navigation<\\/code> is redundant in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17582\\\">#17582<\\/a>)<\\/li>\\n<li>Fix: Accessibility attribute <code>role=navigation<\\/code> is redundant in pagination in Posts widget<\\/li>\\n<li>Fix: Share buttons is accessible with keyboard but not clickable<\\/li>\\n<li>Fix: Sub-items icons style is missing in preview with Inline Font Icons experiment in Nav Menu widget<\\/li>\\n<li>Fix: Quotes are appearing as HTML when editing a note in Notes<\\/li>\\n<li>Fix: Label\'s Icon height increases when Inline Font Icons experiment is active in Hotspot Widget<\\/li>\\n<li>Fix: Sub conditions of templates are not overridden when importing a Kit<\\/li>\\n<li>Fix: X\\/Y Anchor Point controls were not visible for Scale and Rotate effects<\\/li>\\n<li>Fix: PHP warning notice appears in some situations when using motion effects<\\/li>\\n<\\/ul>\\n<h4>3.7.7 - 2022-09-20<\\/h4>\\n<ul>\\n<li>Fix: Default Flex Grow affects the layout when the container is set to direction Column in various widgets<\\/li>\\n<\\/ul>\\n<h4>3.7.6 - 2022-09-14<\\/h4>\\n<ul>\\n<li>Fix: Submissions menu item appears at the bottom of Elementor section in WordPress dashboard<\\/li>\\n<\\/ul>\\n<h4>3.7.5 - 2022-08-31<\\/h4>\\n<ul>\\n<li>Fix: Error message appears on front if WooCommerce is activated (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19553\\\">#19553<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.7.4 - 2022-08-29<\\/h4>\\n<ul>\\n<li>Tweak: PHP 5.6 Is deprecated<\\/li>\\n<li>Fix: Triangle icon is not being displayed in the Select field when Inline Font Icons Experiment is active in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18598\\\">#18598<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19495\\\">#19495<\\/a>)<\\/li>\\n<li>Fix: The page jumps or flickers to the video playlist on page reload in Video Playlist Widget<\\/li>\\n<\\/ul>\\n<h4>3.7.3 - 2022-07-31<\\/h4>\\n<ul>\\n<li>Tweak: Improved license mechanism for correct validation<\\/li>\\n<li>Fix: Sticky option causes unexpected results when using the Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18357\\\">#18357<\\/a>)<\\/li>\\n<li>Fix: Price list, Portfolio, Flip Box and Gallery widgets disappear when the direction is set to column in Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18880\\\">#18880<\\/a>)<\\/li>\\n<li>Fix: Quotes character is showing up as <code>&amp;quot;<\\/code> when editing a note in Notes<\\/li>\\n<\\/ul>\\n<h4>3.7.2 - 2022-06-15<\\/h4>\\n<ul>\\n<li>Tweak: Applied optimized file handling in various modules<\\/li>\\n<li>Fix: Related posts query options are missing in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18633\\\">#18633<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18641\\\">#18641<\\/a>)<\\/li>\\n<li>Fix: Menu Cart Icon is not being displayed on all browsers when Inline Font Icons Experiment is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17705\\\">#17705<\\/a>)<\\/li>\\n<li>Fix: Gallery widget is not working as expected in Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18408\\\">#18408<\\/a>)<\\/li>\\n<li>Fix: Flip box is not visible when the direction is set to Row in Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18413\\\">#18413<\\/a>)<\\/li>\\n<li>Fix: Portfolio widget is not visible when dragged into &quot;Row&quot; direction Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17653\\\">#17653<\\/a>)<\\/li>\\n<li>Fix: Menu cart is open automatically in Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18629\\\">#18629<\\/a>)<\\/li>\\n<li>Fix: PHP error is being shown the license is expired in License screen<\\/li>\\n<\\/ul>\\n<h4>3.7.1 - 2022-05-16<\\/h4>\\n<ul>\\n<li>Fix: Notes icon appears as an empty square in admin top bar for users with permissions lower than Editor<\\/li>\\n<li>Fix: Notes experiment causes a PHP fatal error on some cases<\\/li>\\n<li>Fix: UI glitches in Notes feature<\\/li>\\n<\\/ul>\\n<h4>3.7.0 - 2022-05-10<\\/h4>\\n<ul>\\n<li>New: Introducing Notes - Work collaboratively directly within Elementor<\\/li>\\n<li>New: Stripe Button widget - Collect Stripe payments directly from your site (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14748\\\">#14748<\\/a>)<\\/li>\\n<li>New: Meet WooCommerce Add to Cart dynamic tag - add products to cart from every widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10607\\\">#10607<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11801\\\">#11801<\\/a>)<\\/li>\\n<li>New: Added WooCommerce Product Content dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16367\\\">#16367<\\/a>)<\\/li>\\n<li>Tweak: Added Related, Upsells and Cross-Sells query sources to Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8071\\\">#8071<\\/a>)<\\/li>\\n<li>Tweak: Added custom icon control to Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18007\\\">#18007<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14357\\\">#14357<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13151\\\">#13151<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11361\\\">#11361<\\/a>)<\\/li>\\n<li>Tweak: Added an option to minimize on Desktop device in Table of Contents widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9933\\\">#9933<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10729\\\">#10729<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10314\\\">#10314<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6327\\\">#6327<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6691\\\">#6691<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11774\\\">#11774<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9051\\\">#9051<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6327\\\">#6327<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5760\\\">#5760<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9774\\\">#9774<\\/a>)<\\/li>\\n<li>Tweak: Added align button to bottom option in various Product widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10263\\\">#10263<\\/a>)<\\/li>\\n<li>Tweak: Added align button to bottom control in Posts and Archive Posts widgets<\\/li>\\n<li>Tweak: Added the ability to hide and show the coupon section in WooCommerce Cart widget<\\/li>\\n<li>Tweak: Added the ability to hide and show the coupon section in WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added alignment option to various buttons in WooCommerce Cart widget<\\/li>\\n<li>Tweak: Added alignment option to various buttons in WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added percentage unit to padding control in Additional Information customize section in WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added quick link to create new theme parts directly from the Finder<\\/li>\\n<li>Tweak: Added the option to add a custom template to Dashboard screen in My Account widget<\\/li>\\n<li>Tweak: Added spacing control to view cart button in various product widgets<\\/li>\\n<li>Tweak: Added the option to add a custom template to empty cart state in Cart widget<\\/li>\\n<li>Tweak: Adjusted the layout of the Payment Methods screen in the My Account widget<\\/li>\\n<li>Tweak: Added lazy load option to Media Carousel, Reviews and Testimonial Carousel widgets<\\/li>\\n<li>Tweak: Added Site Identity quick link to Logo widget<\\/li>\\n<li>Tweak: Added Site Identity quick link to Site Title widget<\\/li>\\n<li>Tweak: Created an attribute that allows disabling page transition for specific links<\\/li>\\n<li>Tweak: Added dynamic tag controls to Gallery widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Countdown widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Portfolio widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Price Table widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Login widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Blockquote widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Facebook Comments widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Post Navigation widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Search Form widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Author Box widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Post info widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Archive Posts widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Product Meta widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Archive Products widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Sitemap widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Reviews widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Code Highlight widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to PayPal Button widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added missing PHP documentation to hooks<\\/li>\\n<li>Fix: Scrolling glitches on mobile devices when Sticky Effect is enabled (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17767\\\">#17767<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18330\\\">#18330<\\/a>)<\\/li>\\n<li>Fix: Only 1st honypot field is validated when using multiple honeypot fields in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18136\\\">#18136<\\/a>)<\\/li>\\n<li>Fix: Checkout button background color is not working as expected in Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18289\\\">#18289<\\/a>)<\\/li>\\n<li>Fix: Button labels are not accessible for screen readers in Share buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8615\\\">#8615<\\/a>)<\\/li>\\n<li>Fix: Downloads titles controls are not working in responsive in WooCommerce Purchase Summary widget<\\/li>\\n<li>Fix: Excerpt length is not working as expected in Posts and Archive Posts widgets<\\/li>\\n<li>Fix: Titles &amp; Totals weight is not working in WooCommerce Checkout widget<\\/li>\\n<li>Fix: Product image is not appearing on Single Product Page on template load<\\/li>\\n<li>Fix: Additional Information title not editable in some scenarios in WooCommerce Checkout widget<\\/li>\\n<li>Fix: Cart is not updating automatically on mobile in Cart widget<\\/li>\\n<li>Fix: UI Glitch in Masonry control in Portfolio widget<\\/li>\\n<li>Fix: Custom breakpoints experiment didn\'t work on Single post and page templates<\\/li>\\n<li>Fix: Testimonial carousel &amp; Reviews widgets disregards the <code>alt<\\/code> attribute<\\/li>\\n<li>Fix: Playlist widget deeplink didn\'t send user directly to the widget in the page<\\/li>\\n<li>Fix: Masonry option causes the images to disappear in the Editor in Posts widget<\\/li>\\n<li>Fix: Scrollbar appears after clicking on the dropdown toggle in Nav Menu widget<\\/li>\\n<li>Fix: Custom icons disappear on frontend if the pack name contains numbers<\\/li>\\n<li>Fix: Custom Font disappears if the name contains only numbers<\\/li>\\n<li>Fix: <code>end-section()<\\/code> is missing from Progress Tracker and Facebook Embed widgets<\\/li>\\n<li>Tweak: Added a filter for conditions cache query in Theme Builder<\\/li>\\n<li>Fix: Customizations lost on Ajax refresh in WooCommerce Cart widget<\\/li>\\n<li>Fix: Hello theme Header and Footer experiment is not working when WooCommerce plugin is active<\\/li>\\n<li>Fix: Color controls are not working as expected in Checkout widget<\\/li>\\n<li>Fix: Color controls are not working as expected in My Account widget<\\/li>\\n<li>Fix: Empty state widget preview in the editor is disappearing in various widgets<\\/li>\\n<li>Fix: Cart is not updating automatically on mobile in WooCommerce Cart widget<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-7-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.6.5 - 2022-04-12<\\/h4>\\n<ul>\\n<li>Fix: Compatibility issues for several widgets in iOS 14 and macOS 13 devices (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18090\\\">#18090<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15910\\\">#15910<\\/a>)<\\/li>\\n<li>Fix: Button Alignment doesn\'t work in Custom Add To Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17810\\\">#17810<\\/a>)<\\/li>\\n<li>Fix: PHP warning is thrown in some cases in PayPal button widget<\\/li>\\n<li>Fix: PHP 8.1 throws errors and notices in some cases<\\/li>\\n<li>Fix: PHP notice was thrown when Kit Import process initiated without display conditions<\\/li>\\n<li>Fix: Create Account button always opens on the Sign Up screen even if the user has an account in Onboarding process<\\/li>\\n<\\/ul>\\n<h4>3.6.4 - 2022-03-15<\\/h4>\\n<ul>\\n<li>Tweak: Kit import dynamic reference support for templates and dynamic tags<\\/li>\\n<li>Tweak: Updated tested up to version tag to <code>3.6.0<\\/code><\\/li>\\n<li>Fix: Sticky caused scrolling issues after clicking an element that expands the page height (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17821\\\">#17821<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17839\\\">#17839<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18069\\\">#18069<\\/a>)<\\/li>\\n<li>Fix: When saving Global widget JS error is being thrown and editor fails to load (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17954\\\">#17954<\\/a>)<\\/li>\\n<li>Fix: Motion effects are missing from Background section under Style tab in Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18063\\\">#18063<\\/a>)<\\/li>\\n<li>Fix: Imported Kit doesn\'t appear in the theme builder after successful import in some cases<\\/li>\\n<li>Fix: Added future Pro support to fix the Cart icon that shifted aside in Menu cart widget<\\/li>\\n<\\/ul>\\n<h4>3.6.3 - 2022-02-28<\\/h4>\\n<ul>\\n<li>Fix: Custom Code display conditions modal is not working (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17865\\\">#17865<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17942\\\">#17942<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17994\\\">#17994<\\/a>)<\\/li>\\n<li>Fix: Share buttons are not accessible for keyboard navigation (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8615\\\">#8615<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.6.2 - 2022-02-14<\\/h4>\\n<ul>\\n<li>Fix: Auto updates mechanism is not working as expected (this version might be also installed automatically)<\\/li>\\n<\\/ul>\\n<h4>3.6.1 - 2022-02-09<\\/h4>\\n<ul>\\n<li>Tweak: Allow connecting via generic source for future feature support<\\/li>\\n<li>Fix: Custom Code doesn\'t work when WooCommerce is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17675\\\">#17675<\\/a>)<\\/li>\\n<li>Fix: Content animation didn\'t work when Improved asset loading experiment is active Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17055\\\">#17055<\\/a>)<\\/li>\\n<li>Fix: PHP warning appears some times when trying to force-check for available updates<\\/li>\\n<li>Fix: Page transitions are being triggered when not needed<\\/li>\\n<li>Fix: Text alignment on Tablet responsive device affects base device in Testimonial Carousel widget<\\/li>\\n<li>Fix: Harden Submissions feature to prevent potential security issues<\\/li>\\n<li>Fix: Page Transitions Icon option Preloader doesn\'t work on frontend<\\/li>\\n<\\/ul>\\n<h4>3.6.0 - 2022-01-31<\\/h4>\\n<ul>\\n<li>New: WooCommerce Purchase Summary widget - Fully customize the content and style of your order summary page (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5756\\\">#5756<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15862\\\">#15862<\\/a>)<\\/li>\\n<li>New: WooCommerce Notices styling on Site Settings - Customize the appearance of WooCommerce notices (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14570\\\">#14570<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15896\\\">#15896<\\/a>)<\\/li>\\n<li>New: WooCommerce Notices widget - Set the position of WooCommerce notices on your shop pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8124\\\">#8124<\\/a>)<\\/li>\\n<li>Experiment: Page Transitions - Customize the page loading experience, and increase brand recognition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10576\\\">#10576<\\/a>)<\\/li>\\n<li>Tweak: Added WooCommerce &amp; Theme Elements widgets to Improved CSS Loading experiment to save up 126KB per page load (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17412\\\">#17412<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17337\\\">#17337<\\/a>)<\\/li>\\n<li>Tweak: Added new layout options in WooCommerce Add To Cart and WooCommerce Custom Add To Cart widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5437\\\">#5437<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10617\\\">#10617<\\/a>)<\\/li>\\n<li>Tweak: Added Stroke functionality for typography control in various widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11158\\\">#11158<\\/a>)<\\/li>\\n<li>Tweak: Removed <code>elementor-section-wrap<\\/code> by adding it to the Optimized DOM Output experiment (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16950\\\">#16950<\\/a>)<\\/li>\\n<li>Tweak: Added style controls for variations in WooCommerce Menu Cart widget<\\/li>\\n<li>Tweak: Added color control to navigation dots in Media Carousel, Reviews, and Slides widgets<\\/li>\\n<li>Tweak: Disabled Vimeo autoplay on edit mode when getting video data in Video Playlist widget<\\/li>\\n<li>Tweak: Added notice about Facebook\'s new EU consent policy in Facebook Button, Facebook Comments, Facebook Embed, and Facebook Page widgets<\\/li>\\n<li>Tweak: Refactor string translation calls to use native WP translation methods<\\/li>\\n<li>Tweak: Convert <code>home_url<\\/code> license API call to <code>get_site_url<\\/code> for better compatibility<\\/li>\\n<li>Tweak: Promoted Default to New Theme Builder and Scroll Snap experiments to Stable status in Experiments screen<\\/li>\\n<li>Tweak: Scroll Snap experiment set to active by default for all websites in Experiments screen<\\/li>\\n<li>Tweak: Scrolling Effects in Header and Section backgrounds are not working as expected when effects are relative to the entire page<\\/li>\\n<li>Tweak: Added &quot;Auto Updates&quot; capability to Pro versions<\\/li>\\n<li>Tweak: Removed sequenced animation hover effect option from Classic skin in Call to Action widget<\\/li>\\n<li>Tweak: Added &quot;Excerpt Length&quot; control in Post Excerpt widget<\\/li>\\n<li>Tweak: Deleted deprecated methods from Query Control module<\\/li>\\n<li>Tweak: Adjusted Inline-CSS Experiment to work with Additional Custom Breakpoints experiment<\\/li>\\n<li>Fix: Automatically open cart functionality didn\'t work in product page in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5921\\\">#5921<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16276\\\">#16276<\\/a>,<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16879\\\">#16879<\\/a>)<\\/li>\\n<li>Fix: Buttons are not visible when there are too many products in the cart in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16221\\\">#16221<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17283\\\">#17283<\\/a>,<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16333\\\">#16333<\\/a>,<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13005\\\">#13005<\\/a>)<\\/li>\\n<li>Fix: Mini cart modal z-index is too low in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16333\\\">#16333<\\/a>)<\\/li>\\n<li>Fix: Side cart buttons are not visible at first glance on mobile in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16221\\\">#16221<\\/a>)<\\/li>\\n<li>Fix: Read More field recognizes inline HTML elements as plain text in Posts and Archive Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16985\\\">#16985<\\/a>)<\\/li>\\n<li>Fix: Load More functionality caused JS error console in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17036\\\">#17036<\\/a>)<\\/li>\\n<li>Fix: Autoplay is not working as expected when the lazy load is active in Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15304\\\">#15304<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16274\\\">#16274<\\/a>)<\\/li>\\n<li>Fix: Right navigation area wasn\'t 100% clickable in Post Navigation widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14252\\\">#14252<\\/a>)<\\/li>\\n<li>Fix: Posts duplicate when there are two Posts widgets inside a page using pagination functionality (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17056\\\">#17056<\\/a>)<\\/li>\\n<li>Fix: Global widget changes are not reflected on frontend (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16820\\\">#16820<\\/a>)<\\/li>\\n<li>Fix: JS Error console message when using the Load More functionality and Post Per Page option in Posts widget<\\/li>\\n<li>Fix: Heading styling is not being loaded when Inline CSS experiment is active in Post and Page Title widgets<\\/li>\\n<li>Fix: Sticky offset not working as expected when changing device mode on the browser<\\/li>\\n<li>Fix: Scroll Snap functionality wasn\'t applied on Templates and Archives<\\/li>\\n<li>Fix: Toggle icon color didn\'t work on hover state when Inline Font Icons experiment is activated in Nav Menu widget<\\/li>\\n<li>Fix: Variations style controls are not working as expected in WooCommerce Add to Cart widget<\\/li>\\n<li>Fix: Display conditions module is not working as expected when using the new Theme Builder UI<\\/li>\\n<li>Fix: Edit header handles <code>z-index<\\/code> issues in Header document<\\/li>\\n<li>Fix: Panel icons UI glitch in Call To Action widget<\\/li>\\n<li>Fix: WordPress 5.9 <code>WP_User_query<\\/code> <code>who<\\/code> argument deprecation adjustments<\\/li>\\n<\\/ul>\\n<h4>3.5.2 - 2021-11-28<\\/h4>\\n<ul>\\n<li>Tweak: Adjusted license mechanism to support trial period<\\/li>\\n<li>Fix: Updates made to Global Widgets do not reflect accordingly to linked widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16815\\\">#16815<\\/a>)<\\/li>\\n<li>Fix: Hamburger toggle button doesn\'t change to \\u201cclose\\u201d when menu is collapsed in Nav Menu widget when Inline Font Awesome experiment is active<\\/li>\\n<li>Fix: Global Widget cannot be unlinked<\\/li>\\n<\\/ul>\\n<h4>3.5.1 - 2021-11-10<\\/h4>\\n<ul>\\n<li>Fix: Inline HTML elements appear as plain text in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16816\\\">#16816<\\/a>)<\\/li>\\n<li>Fix: Dropdown items inherited values from Main Menu space between control in Nav Menu widget (<a href=\\\"(https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16815)\\\">#16815<\\/a><\\/li>\\n<li>Fix: Order Summary titles style controls not applying on various devices in Cart widget<\\/li>\\n<li>Fix: Panel &quot;Need Help&quot; link is not correct in WooCommerce section in Site Settings<\\/li>\\n<\\/ul>\\n<h4>3.5.0 - 2021-11-01<\\/h4>\\n<ul>\\n<li>New: WooCommerce Checkout widget - Fully customize the content and style of your checkout page (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15282\\\">#15282<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15990\\\">#15990<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11014\\\">#11014<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13218\\\">#13218<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5383\\\">#5383<\\/a>)<\\/li>\\n<li>New: WooCommerce Cart widget - Style your cart page the way you want with design flexibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15282\\\">#15282<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11014\\\">#11014<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13218\\\">#13218<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5383\\\">#5383<\\/a>)<\\/li>\\n<li>New: WooCommerce My Account widget - Create a custom design for your my account pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11014\\\">#11014<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5383\\\">#5383<\\/a>)<\\/li>\\n<li>New: Progress Tracker widget - Motivate your customers to keep reading your site content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16576\\\">#16576<\\/a>)<\\/li>\\n<li>New: Meet WooCommerce Site Settings - Set your store pages within Elementor<\\/li>\\n<li>Experiment: Scroll Snap - Set the scene of every scroll (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10752\\\">#10752<\\/a>)<\\/li>\\n<li>Tweak: Changed infrastructure to prevent rendering bugs in Global Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16354\\\">#16354<\\/a>)<\\/li>\\n<li>Tweak: Added the option to open submission in a new tab in Form Submissions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14967\\\">#14967<\\/a>)<\\/li>\\n<li>Tweak: Added various responsive controls in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1851\\\">#1851<\\/a>)<\\/li>\\n<li>Tweak: Split Title and Price styling controls in Price List widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7688\\\">#7688<\\/a>)<\\/li>\\n<li>Tweak: Added various responsive capabilities to controls in Posts Archive widget<\\/li>\\n<li>Tweak: Adjusted Motion Effects module to support future feature<\\/li>\\n<li>Tweak: Changed admin notice content when Pro installed without Core installed<\\/li>\\n<li>Tweak: Cleanup in <code>wp_options<\\/code> table<\\/li>\\n<li>Tweak: Changed Connect logic in Elementor top bar to simplify the connect process<\\/li>\\n<li>Tweak: Marked new Theme Builder as an Experiment and set to default for new sites<\\/li>\\n<li>Tweak: Enforced better security policies in various widgets and modules<\\/li>\\n<li>Tweak: Added load more button functionality to the Posts Archive widget<\\/li>\\n<li>Tweak: Renamed Elementor\'s responsive SCSS variables<\\/li>\\n<li>Tweak: Added dividers to horizontal layout in Nav Menu widget<\\/li>\\n<li>Tweak: Removed Google+ social network from Share Buttons widget<\\/li>\\n<li>Tweak: Convert usage of old Responsive class to use the new Breakpoints Manager<\\/li>\\n<li>Fix: jQuery in Heading doesn\'t work for not logged in users in Custom Code (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14515\\\">#14515<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14266\\\">#14266<\\/a>)<\\/li>\\n<li>Fix: Menu animation causing page horizontal scroll in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15184\\\">#15184<\\/a>)<\\/li>\\n<li>Fix: Wrong function call in Table of Content &amp; Post Excerpt widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16547\\\">#16547<\\/a>)<\\/li>\\n<li>Fix: Slides to Scroll control can\'t be set to Default if Widescreen mode has a value in Testimonial Carousel widget<\\/li>\\n<li>Fix: Sticky offset not working properly when changing device mode<\\/li>\\n<li>Fix: UTF character issues when exporting CSV file in Form Submissions<\\/li>\\n<li>Fix: Load More functionality doesn\'t work when the Posts widget placed inside an Archive template<\\/li>\\n<li>Fix: UI glitches and editing issues in Video Playlist widget<\\/li>\\n<\\/ul>\\n<h4>3.4.2 - 2021-10-12<\\/h4>\\n<ul>\\n<li>Fix: Icons color style conflicts when Font-Awesome Inline experiment is active in Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16435\\\">#16435<\\/a>)<\\/li>\\n<li>Fix: Mini Cart hides page content when closed in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16305\\\">#16305<\\/a>)<\\/li>\\n<li>Fix: UI glitches in the Editor edit mode when inserting Post Content widget and Font-Awesome Inline experiment is active in Single Post template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16358\\\">#16358<\\/a>)<\\/li>\\n<li>Fix: Slides per view controls disappeared from multiple breakpoints in Testimonial Carousel<\\/li>\\n<li>Fix: Product variations UI glitch in Menu Cart widget<\\/li>\\n<li>Fix: Buttons UI glitch on Safari browser in Menu Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.4.1 - 2021-09-01<\\/h4>\\n<ul>\\n<li>Fix: Sticky functionality is not working if the Additional Custom Breakpoints experiment is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16186\\\">#16186<\\/a>)<\\/li>\\n<li>Fix: Slideshow skin UI glitch in Media Carousel widget<\\/li>\\n<li>Fix: Product price typography weight control is not working as expected in Menu Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.4.0 - 2021-09-01<\\/h4>\\n<ul>\\n<li>Tweak: Added new Mini Cart layout type in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11312\\\">#11312<\\/a>)<\\/li>\\n<li>Tweak: Added styling options for Cart, Products, and Cart buttons in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14952\\\">#14952<\\/a>)<\\/li>\\n<li>Tweak: Added the ability to open cart automatically when an item is added in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14119\\\">#14119<\\/a>)<\\/li>\\n<li>Tweak: Added the ability to remove an item from cart without reloading the page with an AJAX request (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9531\\\">#9531<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10875\\\">#10875<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11309\\\">#11309<\\/a>)<\\/li>\\n<li>Tweak: Added Load More AJAX functionality to Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12126\\\">#12126<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1284\\\">#1284<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14557\\\">#14557<\\/a>)<\\/li>\\n<li>Tweak: Added Vimeo support to the Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15319\\\">#15319<\\/a>)<\\/li>\\n<li>Tweak: Improved asset loading performance by serving lighter JS files (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8572\\\">#8572<\\/a>)<\\/li>\\n<li>Tweak: Added query string to the URL only after the first video is played in Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15348\\\">#15348<\\/a>)<\\/li>\\n<li>Tweak: Added various layout options with more responsive controls and cart structure options in Menu Cart widget<\\/li>\\n<li>Tweak: Added the option to open the menu cart by click or hover in Menu Cart widget<\\/li>\\n<li>Tweak: Added the ability to choose a specific product to draw data from in WooCommerce Dynamic tags<\\/li>\\n<li>Tweak: Removed auto-scroll to the widget location when arriving from external URL in Video Playlist widget<\\/li>\\n<li>Tweak: Removed the Video Playlist widget from the Experiments list<\\/li>\\n<li>Tweak: Added descriptive error messages for MailChimp action after submit and on form submit in Forms widget<\\/li>\\n<li>Tweak: Added tooltip trigger None and Hover for link in Hotspot widget<\\/li>\\n<li>Tweak: Added responsive controls to Offset and Effects Offset in Sticky options<\\/li>\\n<li>Tweak: Added responsive control to Alignment in Testimonial Carousel widget<\\/li>\\n<li>Tweak: Adjusted Motion Effects module to support future feature<\\/li>\\n<li>Tweak: Added future compatibility to support better loading of <code>eicons<\\/code> font<\\/li>\\n<li>Tweak: Changed Rename Part title and button color in Theme Builder<\\/li>\\n<li>Fix: Products don\'t appear on the cart while editing in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15451\\\">#15451<\\/a>)<\\/li>\\n<li>Fix: Videos always start muted in the Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15292\\\">#15292<\\/a>)<\\/li>\\n<li>Fix: Unnecessary spacing if submenu indicator is set to None in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15365\\\">#15365<\\/a>)<\\/li>\\n<li>Fix: MailChimp double opt-in feature doesn\'t work in Forms widget<\\/li>\\n<li>Fix: Fetching MailChimp groups field blocks the loading of the rest of the fields in the Form widget<\\/li>\\n<li>Fix: Missing field IDs causes forms not to be sent in Forms widget<\\/li>\\n<li>Fix: Full Content Skin is not working properly when inserted twice on the same page in Posts widget<\\/li>\\n<li>Fix: Avoid Duplicates option doesn\'t exclude manual selections in Posts widget<\\/li>\\n<li>Fix: Submenu indicator alignment issue in Nav menu widget<\\/li>\\n<li>Fix: Query control deprecated message appears when debug mode is defined<\\/li>\\n<li>Fix: Tweet Button icon incorrect color and size when the icon is rendered as SVG in Blockquote widget<\\/li>\\n<li>Fix: Video icon size is not changing on Active state in Video Playlist widget<\\/li>\\n<li>Fix: Header icon color is not working in Table Of Content widget<\\/li>\\n<li>Fix: Icons style glitches when Font Awesome Inline experiment is active in Video Playlist widget<\\/li>\\n<li>Fix: Bullet markers are not visible on preview mode when Font Awesome Inline experiment is active in Table of Content widget<\\/li>\\n<li>Fix: UI Glitch when Font-Awesome Inline experiment is active in Price Table widget<\\/li>\\n<li>Fix: Submenu Indicator appears larger when Font Awesome Inline experiment is active in Nav Menu widget<\\/li>\\n<li>Fix: Part name is deleted when clicking on the &quot;Change&quot; Button without changing the name in Theme Builder<\\/li>\\n<li>Fix: Redundant pagination queries in the Editor<\\/li>\\n<li>Deprecated: Remove all usages of <code>ElementorUtils::get_create_new_post_url()<\\/code><\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-4-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.3.8 - 2021-08-23<\\/h4>\\n<ul>\\n<li>Fix: Products grid width issue when adjusting columns and rows in Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16001\\\">#16001<\\/a>)<\\/li>\\n<li>Fix: Font Awesome Inline experiment causes icons glitch in Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16045\\\">#16045<\\/a>)<\\/li>\\n<li>Fix: reCAPTCHA v3 <code>z-index<\\/code> is lower than the Section\'s background color<\\/li>\\n<li>Fix: Style missing when Font Awesome inline experiment is active in Post Info widget<\\/li>\\n<li>Fix: Font Awesome icons were not loaded in Post Info widget<\\/li>\\n<li>Fix: Zero character can\'t be used as a placeholder in Number field in Form widget<\\/li>\\n<li>Fix: Carousels are not working properly in the Editor when Additional Custom Breakpoints experiment is active<\\/li>\\n<\\/ul>\\n<h4>3.3.7 - 2021-08-15<\\/h4>\\n<ul>\\n<li>Tweak: Added support for Additional Custom Breakpoints in Nav Menu widget<\\/li>\\n<li>Tweak: Added support for Additional Custom breakpoints in Motion Effects<\\/li>\\n<li>Fix: Columns didn\'t respond to changes in Gallery widget if Additional Custom Breakpoints Experiment is active<\\/li>\\n<\\/ul>\\n<h4>3.3.6 - 2021-08-10<\\/h4>\\n<ul>\\n<li>Tweak: Added support for future feature in Nav Menu widget<\\/li>\\n<li>Fix: WooCommerce responsive grid styles are not being reflected in Product Related widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15857\\\">#15857<\\/a>)<\\/li>\\n<li>Fix: WooCommerce responsive grid styles are not being reflected in Upsells widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15857\\\">#15857<\\/a>)<\\/li>\\n<li>Fix: WooCommerce responsive grid styles are not being reflected in Product Categories widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15857\\\">#15857<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.3.5 - 2021-08-01<\\/h4>\\n<ul>\\n<li>Fix: Responsive layout glitches in Products and Products Archive widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15773\\\">#15773<\\/a>)<\\/li>\\n<li>Fix: reCAPTCHA V3 integration conflict with required fields validation in Forms widget<\\/li>\\n<\\/ul>\\n<h4>3.3.4 - 2021-07-21<\\/h4>\\n<ul>\\n<li>Fix: Grid layout glitch in WooCommerce Products Archive widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15718\\\">#15718<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.3.3 - 2021-07-20<\\/h4>\\n<ul>\\n<li>Tweak: Added a descriptive message in Collect Submissions action after submit<\\/li>\\n<li>Tweak: Added future compatibility for Additional Custom Breakpoints for Pro widgets<\\/li>\\n<li>Fix: Some widget style breaks when Improved CSS Loading Experiment is active in certain cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15632\\\">#15632<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15683\\\">#15683<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15660\\\">#15660<\\/a>)<\\/li>\\n<li>Fix: Translation update keep appearing as available after install (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14297\\\">#14297<\\/a>)<\\/li>\\n<li>Fix: Wrong default icon color when using Font Awesome icons as inline SVG in Call to Action widget<\\/li>\\n<\\/ul>\\n<h4>3.3.2 - 2021-07-13<\\/h4>\\n<ul>\\n<li>Tweak: Updated plugin description<\\/li>\\n<li>Fix: MailChimp tags in form widget replaced existing tags (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11111\\\">#11111<\\/a>)<\\/li>\\n<li>Fix: Clicking videos from the items list in edit mode doesn\\u2019t initiate videos properly<\\/li>\\n<li>Fix: User unauthorized message when activated but not connected in Kit Library<\\/li>\\n<li>Fix: Carousel widgets did not support additional custom breakpoint responsive values<\\/li>\\n<li>Fix: Tab border is overridden by the Section background color in Video Playlist widget<\\/li>\\n<li>Fix: Widgets style breaks when Improved CSS Load experiment is active in a Single Page template and Post Content widget<\\/li>\\n<\\/ul>\\n<h4>3.3.1 - 2021-06-20<\\/h4>\\n<ul>\\n<li>Tweak: Added support for more Theme Builder display conditions in Export \\/ Import experiment<\\/li>\\n<li>Tweak: Adjusted License page heading structure for future feature<\\/li>\\n<li>Tweak: Adjusted Font Awesome icon for allowing support for future feature<\\/li>\\n<li>Fix: <code>frontend.min.js<\\/code> file size increased in Elementor Pro 3.3.0 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15278\\\">#15278<\\/a>)<\\/li>\\n<li>Fix: Prevent conditions from being reset when object cache is enabled in site (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13299\\\">#13299<\\/a>)<\\/li>\\n<li>Fix: Custom Code publish modal responsiveness issues (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14519\\\">#14519<\\/a>)<\\/li>\\n<li>Fix: Populating fields with options programmatically doesn\'t appear in Submissions screen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10671\\\">#10671<\\/a>)<\\/li>\\n<li>Fix: Large images are not shown on the Image Carousel widget when set via Toolset dynamic tag<\\/li>\\n<li>Fix: Enable inline editing to the inner content tabs in Video Playlist widget<\\/li>\\n<li>Fix: Clicking on the video list doesn\'t play videos properly in Video Playlist widget<\\/li>\\n<li>Fix: Hide Play Icon control when Image overlay is toggled off in Video Playlist widget<\\/li>\\n<li>Fix: Removed extra space below the player when viewing from mobile view in Video Playlist widget<\\/li>\\n<li>Fix: Import button is not working properly in Theme Builder interface<\\/li>\\n<li>Fix: Preview Dynamic Content as control is not updating preview and throws an error in Popup Builder<\\/li>\\n<\\/ul>\\n<h4>3.3.0 - 2021-06-08<\\/h4>\\n<ul>\\n<li>New: Video Playlist widget - Add Engaging Video Content to Your Website (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11859\\\">#11859<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7803\\\">#7803<\\/a>)<\\/li>\\n<li>New: Hotspot widget - Create Interactive Images With Contextually Relevant Information (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7282\\\">#7282<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2768\\\">#2768<\\/a>)<\\/li>\\n<li>Tweak: Accessibility improvements for sub-menus in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13859\\\">#13859<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13810\\\">#13810<\\/a>)<\\/li>\\n<li>Tweak: MailChimp action after submit can now add new tags to existing subscribers in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11111\\\">#11111<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/forms\\/record\\/actions_before<\\/code> to filter the record before it sent to Actions After Submit in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14261\\\">#14261<\\/a>)<\\/li>\\n<li>Tweak: Yoast SEO breadcrumbs widget can be used in Elementor without the need of enabling them in Yoast setting<\\/li>\\n<li>Tweak: Added future support for widgets CSS conditional loading (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10329\\\">#10329<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14229\\\">#14229<\\/a>)<\\/li>\\n<li>Tweak: Added future support for Sticky JS library conditional loading<\\/li>\\n<li>Tweak: Added future support for Import \\/ Export experiment<\\/li>\\n<li>Tweak: Preparations and fixes for Import Export Experiment in Pro version<\\/li>\\n<li>Tweak: Added gradient button capabilities to Login widget buttons<\\/li>\\n<li>Tweak: Added gradient button capabilities to Slides widget button<\\/li>\\n<li>Tweak: Added gradient button capabilities to Price Table widget button<\\/li>\\n<li>Tweak: Added gradient button capabilities to Flip Box widget button<\\/li>\\n<li>Tweak: Added Code Highlight widget Developers Documentation<\\/li>\\n<li>Tweak: Adjusted Submissions page for future updates<\\/li>\\n<li>Tweak: Added <code>em<\\/code> and <code>%<\\/code> units for padding control in Carousel widgets<\\/li>\\n<li>Tweak: Shorten currency name to currency symbol in PayPal button widget<\\/li>\\n<li>Fix: Custom Fonts URLs should be replaced when replace URL is triggered (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7376\\\">#7376<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10382\\\">#10382<\\/a>)<\\/li>\\n<li>Fix: The currency symbol size changed in the Price Table widget if enabling sale (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13519\\\">#13519<\\/a>)<\\/li>\\n<li>Fix: Nav Menu widget is not loading Font Awesome submenu icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9907\\\">#9907<\\/a>)<\\/li>\\n<li>Fix: Hamburger toggle is not working in Nav menu widget<\\/li>\\n<li>Fix: Activation bug for IDN domains<\\/li>\\n<li>Fix: Conditions modal responsive glitches in Custom Code<\\/li>\\n<li>Fix: Duplicated strings in Custom Code module<\\/li>\\n<li>Fix: Enable resize option for code input field in Custom Code<\\/li>\\n<li>Fix: \\u201cSave &amp; Close \\u201cbutton in Custom Code\'s Conditions modal was not visible on small screen sizes<\\/li>\\n<li>Fix: Removing a column from a section in the navigator resulted in an empty section<\\/li>\\n<li>Fix: Recommend option is cut If the layout is not &quot;Standard&quot; in the Facebook Button widget<\\/li>\\n<li>Fix: Video item does not play without adding an image in Media Carousel widget<\\/li>\\n<li>Fix: <code>search-plus<\\/code> icon missing from panel in Media Carousel widget<\\/li>\\n<li>Fix: UI hover state glitch in Media Carousel widget<\\/li>\\n<li>Fix: PHP notice was thrown when trying to import a kit without overrideConditions parameter in Kit Import flow<\\/li>\\n<li>Fix: Templates conditions not imported if there are no conflicts in Import Export Experiment<\\/li>\\n<li>Fix: Non english values are not encoded properly on Submissions export<\\/li>\\n<li>Fix: Theme Builder import is not working properly<\\/li>\\n<li>Fix: UI glitch when no global widgets were found in Editor Panel<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-3-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.2.2 - 2021-05-05<\\/h4>\\n<ul>\\n<li>Tweak: Added support for Expert tier templates in Templates Library<\\/li>\\n<li>Tweak: Updated compatibility tag to support Elementor v3.2.x<\\/li>\\n<li>Tweak: Added compatibility for future Library improvements<\\/li>\\n<li>Fix: Toolset image dynamic field is not working with Gallery widget<\\/li>\\n<\\/ul>\\n<h4>3.2.1 - 2021-03-21<\\/h4>\\n<ul>\\n<li>Tweak: Added strings context in PayPal button and Price Table widgets<\\/li>\\n<li>Tweak: Added support for future Import \\/ Export Kit feature<\\/li>\\n<li>Fix: Submissions with over than 191 characters weren\'t indexed properly<\\/li>\\n<\\/ul>\\n<h4>3.2.0 - 2021-03-14<\\/h4>\\n<ul>\\n<li>New: PayPal Button widget - Collect PayPal payments directly from your site<\\/li>\\n<li>Experiment: Submissions - Save all of your form submissions in one place (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1686\\\">#1686<\\/a>)<\\/li>\\n<li>Tweak: Added Stay In Column option to Inner Section element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7956\\\">#7956<\\/a>)<\\/li>\\n<li>Tweak: Adjusted \'Max Height\' control range in Table of Contents widget<\\/li>\\n<li>Tweak: Changed descriptive text in Create Custom Code screen<\\/li>\\n<li>Tweak: Added support for dynamic capabilities in Code Highlight widget<\\/li>\\n<li>Tweak: Added support for future load on demand for <code>share-link<\\/code> library<\\/li>\\n<li>Tweak: Added support for future load on demand for <code>dialog<\\/code> library in Popup<\\/li>\\n<li>Tweak: Allow overwriting the assets URL when using a mirror domain<\\/li>\\n<li>Fix: Animation was triggered multiple times when accessing the viewport in certain cases in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13951\\\">#13951<\\/a>)<\\/li>\\n<li>Fix: Location is not being updated after a Custom Code snippet is published (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13971\\\">#13971<\\/a>)<\\/li>\\n<li>Fix: Custom Fonts CSS files were not updated after regenerating CSS files<\\/li>\\n<li>Fix: Conditions modal is not responsive in Custom Code<\\/li>\\n<li>Fix: Empty order buttons are displayed in Custom Fonts screen<\\/li>\\n<li>Fix: Typo in \'Reply To\' Email action after submit placeholder in Forms widget<\\/li>\\n<li>Fix: Unnecessary Save Draft button in Custom Code<\\/li>\\n<li>Fix: RTL glitches in Custom Code<\\/li>\\n<li>Fix: Sanitized options in the editor to enforce better security policies<\\/li>\\n<li>Deprecated: See all deprecations to this version in our (<a href=\\\"https:\\/\\/developers.elementor.com\\/v3-2-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.1.1 - 2021-02-23<\\/h4>\\n<ul>\\n<li>Tweak: Adjusted \'Max Height\' control range in Table of Contents widget<\\/li>\\n<li>Fix: Popup event handler is undefined (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11475]\\\">#11475<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10690\\\">#10690<\\/a>)<\\/li>\\n<li>Fix: Conditions modal is not responsive in Custom Code<\\/li>\\n<li>Fix: RTL glitches in Code Highlight widget<\\/li>\\n<li>Fix: Minor UI glitches in Code Highlight widget<\\/li>\\n<li>Fix: Users can\'t get Pro Developer Edition version updates<\\/li>\\n<\\/ul>\\n<h4>3.1.0 - 2021-02-13<\\/h4>\\n<ul>\\n<li>New: Introducing Custom Code - Add custom code snippets to your site, including <code>head<\\/code>, <code>body<\\/code> start and <code>body<\\/code> end<\\/li>\\n<li>New: Meet Code Highlight widget - showcase any syntax with highlighted UI (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5815\\\">#5815<\\/a>)<\\/li>\\n<li>Experiment: Improved Pro widgets performance by loading JS and Swiper assets conditionally in frontend (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8572\\\">#8572<\\/a>, <a href=\\\"https:\\/\\/developers.elementor.com\\/experiment-optimized-asset-loading\\/\\\">Developer Documentation<\\/a>)<\\/li>\\n<li>Tweak: Added Compatibility Tag support in Elementor Pro (<a href=\\\"https:\\/\\/developers.elementor.com\\/compatibility-tag\\/\\\">Developer Documentation<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities to Rotating Text animation in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4625\\\">#4625<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8569\\\">#8569<\\/a>)<\\/li>\\n<li>Tweak: Added an option to set Selected color for Typing effect in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5403\\\">#5403<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7826\\\">#7826<\\/a>)<\\/li>\\n<li>Tweak: Added animation Loop option for Animated Headline (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9749\\\">#9749<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2457\\\">#2457<\\/a>)<\\/li>\\n<li>Tweak: Added timing options for Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4392\\\">#4392<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities for Testimonial Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8569\\\">#8569<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities for Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4242\\\">#4242<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8569\\\">#8569<\\/a>)<\\/li>\\n<li>Tweak: Added Word Wrap control to Code Highlight widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13577\\\">#13577<\\/a>)<\\/li>\\n<li>Tweak: Upgraded Font Awesome Pro library to v5.15.1<\\/li>\\n<li>Tweak: Improved method of loading field mapping repeater in Form widget (<a href=\\\"https:\\/\\/developers.elementor.com\\/how-to-add-a-repeater-control-to-elementor-add-on\\/\\\">Developer Documentation<\\/a>)<\\/li>\\n<li>Tweak: Added &quot;Show on Browsers&quot; Popup Advanced Rule<\\/li>\\n<li>Tweak: Added real-time JS handling to prevent redundant renders in Slides widget and all Carousel widgets<\\/li>\\n<li>Tweak: Import scroll utility from core and remove it from Pro<\\/li>\\n<li>Tweak: Added alignment options for Post Excerpt widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9757\\\">#9757<\\/a>)<\\/li>\\n<li>Tweak: Changed alignment control to work with selectors in Share Buttons<\\/li>\\n<li>Tweak: Upgraded to Webpack 5, Grunt-Webpack 4 and TerserPlugin instead of UglifyJsPlugin<\\/li>\\n<li>Fix: Steps Divider is not vertically aligned in Multi Step Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12569\\\">#12569<\\/a>)<\\/li>\\n<li>Fix: Slides are playing in an infinite loop mode even when the option is disabled in Slides Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6726\\\">#6726<\\/a>)<\\/li>\\n<li>Fix: Redundant spacing is added to Share Buttons widget<\\/li>\\n<li>Fix: Step buttons text is not updated without a page reload in Forms widget<\\/li>\\n<li>Fix: Overflow issue in certain animations in Animated Headline widget<\\/li>\\n<li>Fix: When dragging a new Testimonial Carousel there is a console error thrown<\\/li>\\n<li>Fix: Step Buttons are cut in mobile view in Multi Step Form<\\/li>\\n<li>Fix: Submit and Step buttons size differences when using Twenty Twenty theme<\\/li>\\n<li>Fix: Duplicate button Text Color control in Slides widget<\\/li>\\n<li>Fix: JS error is thrown when editing and saving global widgets<\\/li>\\n<li>Fix: <code>get_version<\\/code> API function may fail with Redis \\/ DB cache<\\/li>\\n<li>Fix: Multiple license check requests are created in certain cases<\\/li>\\n<li>Deprecated: Deprecate methods prefixed with an underscore and replace them with unprefixed methods<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-1-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.0.10 - 2021-01-20<\\/h4>\\n<ul>\\n<li>Tweak: Added Editing Handles string translation compatibility with Elementor v3.1.0<\\/li>\\n<\\/ul>\\n<h4>3.0.9 - 2020-12-29<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility to support Elementor 3.1.0<\\/li>\\n<li>Fix: Wrong phrasing of Import template success message in Theme Builder<\\/li>\\n<li>Fix: Border color glitch in Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.0.8 - 2020-11-26<\\/h4>\\n<ul>\\n<li>Fix: Navigation arrows UI glitch in Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13172\\\">#13172<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.0.7 - 2020-11-25<\\/h4>\\n<ul>\\n<li>Fix: Console Error when dragging  Testimonials Carousel widget<\\/li>\\n<li>Fix: Arrows of Testimonial and Reviews Carousel widgets navigate to the wrong direction in RTL websites<\\/li>\\n<li>Fix: Removed the conditional loading of Webpack<\\/li>\\n<li>Fix: Fatal error is thrown after deleting an associated custom taxonomy when Posts widget with Cards skin has a badge<\\/li>\\n<li>Fix: Upload JSON files only when the user allowed to prevent security issues<\\/li>\\n<li>Fix: Gallery not displayed in Theme Builder templates preview<\\/li>\\n<\\/ul>\\n<h4>3.0.6 - 2020-11-04<\\/h4>\\n<ul>\\n<li>Tweak: Updated the embedded post in Facebook Embed widget<\\/li>\\n<li>Fix: Minor UI glitches in Theme Builder\'s conditions screen footer<\\/li>\\n<li>Fix: Template type changes into Single Page after conditions change in Theme Builder<\\/li>\\n<li>Fix: Redundant Custom Caption option in Site Logo widget<\\/li>\\n<li>Fix: Removed unused code in Drip integration<\\/li>\\n<li>Fix: Removed Weibo and WeChat social networks due to website and links inactivity from Share Buttons widget<\\/li>\\n<li>Fix: Removed redundant code from Portfolio and Post Navigation widgets<\\/li>\\n<\\/ul>\\n<h4>3.0.5 - 2020-09-23<\\/h4>\\n<ul>\\n<li>Fix: If the default page layout is set to &quot;Canvas&quot; Headers and Footers cannot be edited<\\/li>\\n<li>Fix: Product Image Dynamic Tag throws an error when no image is set<\\/li>\\n<li>Fix: Missing Single document placeholder in Theme Builder<\\/li>\\n<li>Fix: Document editing handles inherit the <code>font-family<\\/code> from 3rd party source<\\/li>\\n<li>Fix: Can\'t add linebreaks to Textarea input when used as Multi Step Form<\\/li>\\n<li>Fix: Incorrect width in Facebook Page widget<\\/li>\\n<li>Fix: Added compatibility to allow the use of \'get_create_url\' in Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.0.4 - 2020-09-09<\\/h4>\\n<ul>\\n<li>Fix: Autogenerated screenshots appear in WP Media Library modal (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12304\\\">#12304<\\/a>)<\\/li>\\n<li>Fix: Make sure Elementor Posts widget Pagination doesn\'t interfere with 3rd party plugins (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12126\\\">#12126<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12127\\\">#12127<\\/a>)<\\/li>\\n<li>Fix: Shrinking conditions indicator in Theme Builder<\\/li>\\n<li>Fix: Column can\'t be dragged and dropped if it populates a Global widget<\\/li>\\n<li>Fix: Styles are missing from Single templates in some edge cases<\\/li>\\n<\\/ul>\\n<h4>3.0.3 - 2020-09-02<\\/h4>\\n<ul>\\n<li>Fix: Pagination doesn\'t work in WordPress 5.5 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12126\\\">#12126<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12127\\\">#12127<\\/a>)<\\/li>\\n<li>Fix: Change delete template action to &quot;Move to Trash&quot; in the new Theme Builder view<\\/li>\\n<\\/ul>\\n<h4>3.0.2 - 2020-08-31<\\/h4>\\n<ul>\\n<li>Tweak: Replaced WordPress &quot;Learn More&quot; links with dynamic links for better control over time (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12312\\\">#12312<\\/a>)<\\/li>\\n<li>Tweak: UI tweaks to the Conditions screen In the new Theme Builder<\\/li>\\n<li>Fix: Motion Effects not working when assigned to a column and throws JS error when DOM optimization is disabled (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12299\\\">#12299<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12275\\\">#12275<\\/a>)<\\/li>\\n<li>Fix: Multiple Galleries display all the images in the Lightbox slideshow (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11809\\\">#11809<\\/a>)<\\/li>\\n<li>Fix: Old Theme Builder is being opened when accessing through the Finder<\\/li>\\n<li>Fix: Mixed templates import glitch in Theme Builder<\\/li>\\n<li>Fix: Card icon sizes in Theme Builder<\\/li>\\n<li>Fix: Preview button leads to <code>render_mode<\\/code> instead of preview when importing a template from the new Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.0.1 - 2020-08-26<\\/h4>\\n<ul>\\n<li>Tweak: Keep previous Theme Builder when accessing from the WP Dashboard for legacy support<\\/li>\\n<li>Tweak: Updated video tutorials in Theme Builder<\\/li>\\n<li>Tweak: Don\'t show auto-screenshots in the Media Library (Props <a href=\\\"https:\\/\\/github.com\\/black-eye\\\">@black-eye<\\/a>)<\\/li>\\n<li>Fix: Repeater items throws <code>childView<\\/code> is undefined message in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12239\\\">#12239<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12221\\\">#12221<\\/a>)<\\/li>\\n<li>Fix: Misspelling of the word &quot;occurred&quot; in Form widget default error message (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12137\\\">#12137<\\/a>)<\\/li>\\n<li>Fix: Facebook comments not showing up (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12157\\\">#12157<\\/a>)<\\/li>\\n<li>Fix: Check for conflicts in Theme Builder doesn\'t work properly<\\/li>\\n<li>Fix: Minor UI fixes in Theme Builder<\\/li>\\n<li>Fix: Dark mode glitches in Theme Builder<\\/li>\\n<li>Fix: Global Site Part toaster appears when you publish a Popup<\\/li>\\n<li>Fix: Site Parts aren\'t in the correct order in Theme Builder<\\/li>\\n<li>Fix: Date field caused forms to get corrupted in Forms widget<\\/li>\\n<li>Fix: Theme Builder application page is forbidden<\\/li>\\n<\\/ul>\\n<h4>3.0.0 - 2020-08-23<\\/h4>\\n<ul>\\n<li>New: Introducing the new and improved Theme Builder<\\/li>\\n<li>Tweak: Removed <code>.elementor-inner<\\/code> and <code>.elementor-column-wrap<\\/code> from DOM output to improve performance (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7351\\\">#7351<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7817\\\">#7817<\\/a>, <a href=\\\"https:\\/\\/developers.elementor.com\\/dom-improvements-ahead-html-wrappers-removal-from-v3-0\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added contextual anchors ID support to Table of Contents widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10052\\\">#10052<\\/a>)<\\/li>\\n<li>Tweak: Added WeChat and Weibo social networks to Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11554\\\">#11554<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities for Redirect after Login\\/Logout in Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11343\\\">#11343<\\/a>)<\\/li>\\n<li>Tweak: Added Blend Mode and CSS Filters controls to adjust the Background Overlay in Flipbox widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11653\\\">#11653<\\/a>)<\\/li>\\n<li>Tweak: Added responsive capabilities to Toggle Button styling in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8269\\\">#8269<\\/a>)<\\/li>\\n<li>Tweak: Added responsive Text Alignment control in Call to Action widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11968\\\">#11968<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic content to Ribbon element in Call to Action widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10364\\\">#10364<\\/a>)<\\/li>\\n<li>Tweak: Converted uses of Color and Typography Schemes to Global Colors and Fonts<\\/li>\\n<li>Tweak: Separated Title and Description control fields labels in Call to Action widget<\\/li>\\n<li>Tweak: Removed unnecessary style in WC Product with variations<\\/li>\\n<li>Tweak: Converted Portfolio, Posts and Share Buttons widgets to use CSS Variable-based Elementor Grid (<a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-dropping-support-ie\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added Date Modified option to Posts widget metadata<\\/li>\\n<li>Fix: PHP 7.4 compatibility to Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11355\\\">#11355<\\/a>)<\\/li>\\n<li>Fix: Divider alignment issue in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11628\\\">#11628<\\/a>)<\\/li>\\n<li>Fix: Color doesn\\u2019t change in Products Archive Description widget<\\/li>\\n<li>Fix: WC Product variations layout breaks when using Variation Swatches plugin<\\/li>\\n<li>Fix: WC Product variations layout issue<\\/li>\\n<li>Fix: WC Product variations mobile zoom-in glitch<\\/li>\\n<li>Fix: Can\'t edit a Popup after accessing Theme Style<\\/li>\\n<li>Fix: Twitter icon missing in Blockquote widget<\\/li>\\n<li>Fix: Removed redundant default text color from Share Buttons minimal skin<\\/li>\\n<li>Fix: UI glitch in Display Conditions modal<\\/li>\\n<li>Fix: Insert template button UI glitch in Templates Library<\\/li>\\n<li>Fix: Added sanitization to post titles in WordPress dashboard for better security<\\/li>\\n<li>Fix: Show when arriving from search engines rule doesn\'t work in Popup<\\/li>\\n<li>Fix: Child categories are shown with a different parent category in Query control<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-0-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>2.10.3 - 2020-06-29<\\/h4>\\n<ul>\\n<li>Fix: Form not being submitted when using &quot;Progress Bar&quot; and &quot;None&quot; view types in Multi Step Form (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11596\\\">#11596<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11610\\\">#11610<\\/a>)<\\/li>\\n<li>Fix: Missing &quot;for&quot; attribute in Password field label in Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8646\\\">#8646<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.10.2 - 2020-06-16<\\/h4>\\n<ul>\\n<li>Fix: Run step events only when in Multi Step Form mode (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11644\\\">#11644<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.10.1 - 2020-06-16<\\/h4>\\n<ul>\\n<li>Tweak: Improved License validation mechanism to avoid limitations<\\/li>\\n<li>Tweak: Changed control labels and ordering in Price Table, Lottie and Form widgets<\\/li>\\n<li>Fix: Popup close button vertical position glitch (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10921\\\">#10921<\\/a>)<\\/li>\\n<li>Fix: Radio field placement glitch when in Multi Step mode in Form widget<\\/li>\\n<li>Fix: Clicking <code>Enter<\\/code> key submits the form in Multi Step Form<\\/li>\\n<li>Fix: Hardened sanitization in Custom Attributes to avoid security issues<\\/li>\\n<\\/ul>\\n<h4>2.10.0 - 2020-06-07<\\/h4>\\n<ul>\\n<li>New: Introducing Multi-Step Forms - Breakdown long forms into simple steps (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5975\\\">#5975<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3911\\\">#3911<\\/a>)<\\/li>\\n<li>New: Introducing Lottie widget - easily add Lottie animations to your site, no coding needed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11026\\\">#11026<\\/a>)<\\/li>\\n<li>Tweak: Added spacing option to Posts widget pagination (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5682\\\">#5682<\\/a>)<\\/li>\\n<li>Tweak: Changed texts and logic for administrator plugin renewal notices<\\/li>\\n<li>Tweak: Added new Scroll Util for improved scrolling handling<\\/li>\\n<li>Tweak: Improved Motion Effects animation performance<\\/li>\\n<\\/ul>\\n<h4>2.9.5 - 2020-05-24<\\/h4>\\n<ul>\\n<li>Fix: Added sanitization to Custom Attributes control to avoid security issue<\\/li>\\n<\\/ul>\\n<h4>2.9.4 - 2020-05-07<\\/h4>\\n<ul>\\n<li>Fix: Hardened user role that is allowed to upload icon sets and unzip only allowed files in Custom Icons to prevent security vulnerability<\\/li>\\n<\\/ul>\\n<h4>2.9.3 - 2020-04-19<\\/h4>\\n<ul>\\n<li>Fix: Form shortcode IDs are not wrapped in double-quotes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11023\\\">#11023<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10932\\\">#10932<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10967\\\">#10967<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11000\\\">#11000<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11049\\\">#11049<\\/a>)<\\/li>\\n<li>Fix: Escaped Form records metadata to prevent security vulnerability<\\/li>\\n<li>Fix: Closing &quot;Save Changes&quot; document confirmation modal causes Panel infinite loading<\\/li>\\n<li>Fix: Ken Burns effect not working when there is only one slide in Slides widget<\\/li>\\n<li>Fix: Document handles UI glitch<\\/li>\\n<\\/ul>\\n<h4>2.9.2 - 2020-03-25<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility with WordPress v5.4 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10745\\\">#10745<\\/a>)<\\/li>\\n<li>Fix: Image ratio number is displayed under the Archive Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10874\\\">#10874<\\/a>)<\\/li>\\n<li>Fix: Theme Style Link color setting overrides the Table of Content list style<\\/li>\\n<li>Fix: PHP notice when using dynamic user info <code>id<\\/code><\\/li>\\n<li>Fix: Navigation arrows direction is crossed on first drag in Slides Widget<\\/li>\\n<li>Fix: &quot;No headings were found on this page&quot; message was not displayed in the frontend in Table of Contents widget<\\/li>\\n<li>Fix: Container includes Popup tags by default in Table of Contents widget<\\/li>\\n<li>Fix: Twitter icon display issue when Font Awesome 4 support is disabled in Blockquote widget<\\/li>\\n<li>Fix: ACF Dynamic tag not working in Form widget Redirect action<\\/li>\\n<\\/ul>\\n<h4>2.9.1 - 2020-03-16<\\/h4>\\n<ul>\\n<li>Fix: Can\'t access Elementor Editor when there is Page Title widget in the page<\\/li>\\n<li>Fix: Applying styling to Post Content widget affects the Page and Post editing handles<\\/li>\\n<\\/ul>\\n<h4>2.9.0 - 2020-03-15<\\/h4>\\n<ul>\\n<li>New: Introducing Full Site Editing: Design header, footer, and content all in one place! (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4985\\\">#4985<\\/a>)<\\/li>\\n<li>New: Added Global Custom CSS for Your Entire Site in Theme Style (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3345\\\">#3345<\\/a>)<\\/li>\\n<li>New: Added Dynamic Colors tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6485\\\">#6485<\\/a>)<\\/li>\\n<li>Tweak: Added option to set the Site Part HTML Wrapper Tags (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9293\\\">#9293<\\/a>)<\\/li>\\n<li>Tweak: Added Link Attributes support to Pro widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5716\\\">#5716<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3642\\\">#3642<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9225\\\">#9225<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9079\\\">#9079<\\/a>)<\\/li>\\n<li>Tweak: Added Theme Style support in Theme Builder parts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10564\\\">#10564<\\/a>)<\\/li>\\n<li>Tweak: Avoid creating empty Custom Font<\\/li>\\n<li>Tweak: Added <code>aria-expanded<\\/code> attribute to Menu Cart widget<\\/li>\\n<li>Tweak: Moved Link Actions module to Core plugin<\\/li>\\n<li>Tweak: Changed the name of \\u201cTypeKit Web Fonts by Adobe\\u201d to \\u201cAdobe Fonts\\u201d<\\/li>\\n<li>Tweak: Removed redundant display conditions from Blockquote, Flipbox, Price Table, and Search Form widgets<\\/li>\\n<li>Tweak: Pro widgets are not draggable unless Elementor license has been activated<\\/li>\\n<li>Tweak: Remove redundant <code>label_block<\\/code> parameters from several controls<\\/li>\\n<li>Tweak: Converted controls selectors to CSS variables in Gallery widget<\\/li>\\n<li>Tweak: Replaced Stumbleupon with Mix in Reviews widget recommended icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10099\\\">#10099<\\/a>)<\\/li>\\n<li>Tweak: Added Mix to the Share Buttons network list (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10099\\\">#10099<\\/a>)<\\/li>\\n<li>Tweak: Added &quot;Open in new tab&quot; option to Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7924\\\">#7924<\\/a>)<\\/li>\\n<li>Tweak: Upgraded Font Awesome Pro library to v5.12.0<\\/li>\\n<li>Tweak: Added new Lightbox compatibility for Gallery and Media Carousel widgets<\\/li>\\n<li>Tweak: Expose external API for Swiper instances<\\/li>\\n<li>Tweak: Added compatibility to JS API in Theme Builder, Popups, Form widget and Global widget<\\/li>\\n<li>Tweak: Replaced nerd icons with new Elementor emojis<\\/li>\\n<li>Tweak: Added specific <code>color<\\/code> attribute to header title in Table of Contents widget<\\/li>\\n<li>Fix: Line break issues in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10585\\\">#10585<\\/a>)<\\/li>\\n<li>Fix: Theme Style Link color overrides the Table of Content list style<\\/li>\\n<li>Fix: Active state glitches when using Table of contents widget with Sticky mode<\\/li>\\n<li>Fix: &quot;Graphic Element&quot; section appears as empty in case of unmarked Graphic Element in Call to Action widget<\\/li>\\n<li>Fix: Page Title widget render glitches in the Editor<\\/li>\\n<li>Fix: Image ratio parameter visible in some edge cases in Posts widget<\\/li>\\n<li>Fix: Image missing when sharing to Pinterest using Share Buttons widget<\\/li>\\n<li>Fix: Theme Style Link color setting override the list style in Table of Contents widget<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v2-9-0-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>2.8.5 - 2020-03-08<\\/h4>\\n<ul>\\n<li>Tweak: Added new Swiper parameter to all Pro carousels to allow 3rd party integration<\\/li>\\n<li>Fix: Missing closing bracket in Animated Headline widget<\\/li>\\n<li>Fix: Share buttons widgets show Font Awesome 4 icons on first drag in Editor<\\/li>\\n<\\/ul>\\n<h4>2.8.4 - 2020-02-16<\\/h4>\\n<ul>\\n<li>Tweak: Added Lightbox Title &amp; Description support to Gallery widget<\\/li>\\n<li>Tweak: Added RTL support for Slides widget<\\/li>\\n<li>Tweak: Display Lightbox images in Full size in Gallery widget<\\/li>\\n<li>Fix: Template with Slides widget not working properly when placed inside Tabs, Accordion and Toggle widget<\\/li>\\n<li>Fix: Dropdown menu lost styling after Elementor Pro v2.8 upgrade in Nav Menu widget<\\/li>\\n<li>Fix: Indent doesn\'t work on RTL websites in Table of Contents widget<\\/li>\\n<li>Fix: Query Control throws <code>Undefined index: q<\\/code> error<\\/li>\\n<li>Fix: Typography control not affecting dropdown menu in Nav Menu widget<\\/li>\\n<li>Fix: Discord forms integration fails to send submissions in some server configurations<\\/li>\\n<li>Fix: Rotating headlines don\'t align center in Animated Headline widget<\\/li>\\n<li>Fix: Custom secondary color displayed when not needed in Share buttons widget<\\/li>\\n<li>Fix: Motion Effects of certain objects are not functioning properly on Safari browser<\\/li>\\n<li>Fix: Missing eye icon in Single template footer preview button<\\/li>\\n<\\/ul>\\n<h4>2.8.3 - 2020-01-01<\\/h4>\\n<ul>\\n<li>Tweak: Updated Table of Contents widget panel location<\\/li>\\n<li>Fix: ACF URL Dynamic field throws <code>undefined index<\\/code> PHP notice (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9929\\\">#9929<\\/a>)<\\/li>\\n<li>Fix: Gallery lightbox pagination shows images from all tabs<\\/li>\\n<li>Fix: &quot;Reply To&quot; option not working in Form widget &quot;Email 2&quot; Action<\\/li>\\n<li>Fix: ACF Dynamic tag not working in Form widget Redirect action<\\/li>\\n<li>Fix: Underline option not working in Table of Contents widget Normal state<\\/li>\\n<li>Fix: Query Control <code>Undefined index: autocomplete<\\/code> notice in some cases<\\/li>\\n<li>Fix: Missing display condition to Read More Spacing control in Posts widget<\\/li>\\n<\\/ul>\\n<h4>2.8.2 - 2019-12-19<\\/h4>\\n<ul>\\n<li>Tweak: Improved scroll-spy and collapsing functionality in Table of Contents widget<\\/li>\\n<li>Fix: &quot;No products were found&quot; message not being displayed in an empty Products Archive<\\/li>\\n<li>Fix: Redundant <code>&lt;br&gt;<\\/code> tags in Single theme template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9927\\\">#9927<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9928\\\">#9928<\\/a>)<\\/li>\\n<li>Fix: Draft Popup shows up in Dynamic tag dropdown<\\/li>\\n<\\/ul>\\n<h4>2.8.1 - 2019-12-18<\\/h4>\\n<ul>\\n<li>Fix: Share Buttons widget not working (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9920\\\">#9920<\\/a>)<\\/li>\\n<li>Fix: Redundant <code>&lt;p&gt;<\\/code> tags added to Single Template posts<\\/li>\\n<\\/ul>\\n<h4>2.8.0 - 2019-12-18<\\/h4>\\n<ul>\\n<li>New: Table of Contents Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5171\\\">#5171<\\/a>)<\\/li>\\n<li>New: Added Font Awesome Pro Duotone font family support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9578\\\">#9578<\\/a>)<\\/li>\\n<li>Tweak: Added Lazy Load option to Gallery widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9763\\\">#9763<\\/a>)<\\/li>\\n<li>Tweak: Added Random order option to Gallery widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9269\\\">#9269<\\/a>)<\\/li>\\n<li>Tweak: Updated Font Awesome Pro to v5.11.2 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9578\\\">#9578<\\/a>)<\\/li>\\n<li>Tweak: Added preselect support for multiple default select values in Forms Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9324\\\">#9324<\\/a>)<\\/li>\\n<li>Tweak: Avoid duplicate queries for Custom Icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9579\\\">#9579<\\/a>)<\\/li>\\n<li>Tweak: Major performance improvements to Gallery widget<\\/li>\\n<li>Tweak: Avoid non-existing images in Gallery widget<\\/li>\\n<li>Tweak: Added <code>tabindex<\\/code>, <code>aria-expanded<\\/code>, <code>aria-hidden<\\/code> and <code>role=\\\"navigation\\\"<\\/code> accessibility attributes to Nav Menu widget<\\/li>\\n<li>Tweak: Changed button HTML tag from <code>button<\\/code> to <code>span<\\/code> in Call to Action and Flip Box widgets for better W3C compliance and accessibility<\\/li>\\n<li>Tweak: Removed Google+ from default networks in Share Buttons widget<\\/li>\\n<li>Tweak: Added compatibility for Library Connect<\\/li>\\n<li>Tweak: Added i18n to Toolset date dynamic tag<\\/li>\\n<li>Tweak: Added external link support to Gallery widget<\\/li>\\n<li>Tweak: Changed the link external attributes implementation to use <code>add_link_attributes()<\\/code> in Gallery widget<\\/li>\\n<li>Tweak: Updated references to the new Schemes system location<\\/li>\\n<li>Tweak: Avoid running Gallery handler when the gallery is empty<\\/li>\\n<li>Tweak: UI Tweaks in Editor Panel<\\/li>\\n<li>Tweak: Added responsive capabilities to Pointer Width control in Nav Menu widget<\\/li>\\n<li>Tweak: Added mobile support for responsive controls in Nav Menu widget<\\/li>\\n<li>Tweak: Refactor <code>register_controls()<\\/code> method in Posts widget skin trait<\\/li>\\n<li>Fix: ACF URL &quot;undefined Index&quot; notice (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7646\\\">#7646<\\/a>)<\\/li>\\n<li>Fix: WooCommerce Mini-Cart widget causes fatal error in edge cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9304\\\">#9304<\\/a>)<\\/li>\\n<li>Fix: <code>PHP Notice: Undefined index<\\/code> display for Author query (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9864\\\">#9864<\\/a>)<\\/li>\\n<li>Fix: Added compatibility for Button widget placed inside Swiper carousel (<a href=\\\"https:\\/\\/wordpress.org\\/support\\/topic\\/broken-buttons-since-elementor-2-8\\/\\\">Topic<\\/a>)<\\/li>\\n<li>Fix: Avoid empty spaces in Post info widget<\\/li>\\n<li>Tweak: Always show &quot;Custom label&quot; control in Login widget<\\/li>\\n<li>Fix: Nav Menu item typography selector in Nav Menu widget<\\/li>\\n<li>Fix: Facebook Like Button widget causes flickering<\\/li>\\n<li>Fix: WooCommerce mini-cart behaviour when using <code>plain<\\/code> permalinks format<\\/li>\\n<li>Fix: Avoid running Popup triggers when set without conditions<\\/li>\\n<li>Fix: Removed &quot;Date&quot; query from Products widget<\\/li>\\n<li>Fix: Slides widget when used as a Shortcode and is hidden<\\/li>\\n<li>Fix: Custom URL being accessed on swipe in Media Carousel<\\/li>\\n<li>Fix: Media Carousel widget Cube effect glitch<\\/li>\\n<li>Fix: Lightbox shows images from multiple Gallery widgets in the same page<\\/li>\\n<li>Fix: Image <code>alt<\\/code> Text not displayed on overlay in Gallery widget<\\/li>\\n<li>Fix: Gallery widget not visible in Posts widget Full Content skin<\\/li>\\n<li>Fix: WooCommerce mini-cart remove unnecessary hooks registration when WooCommerce integration set to <code>Disable<\\/code><\\/li>\\n<li>Fix: Slides widget button wrapping breaks in mobile view<\\/li>\\n<li>Fix: Dynamic capabilities with the Reviews widget<\\/li>\\n<li>Fix: Disabling autoplay doesn\'t work in Slides widget<\\/li>\\n<li>Fix: Posts widget Full Content skin not working on Single template<\\/li>\\n<li>Fix: Autocomplete not working for &quot;By Author&quot; condition in Display Conditions screen<\\/li>\\n<li>Fix: Posts widget alignment issue<\\/li>\\n<li>Fix: Product Variations Clear button not working in edge cases<\\/li>\\n<li>Fix: Styling issues in Form widget submit button<\\/li>\\n<\\/ul>\\n<h4>2.7.3 - 2019-10-28<\\/h4>\\n<ul>\\n<li>Tweak: Added RTL support to Galleries widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9213\\\">#9213<\\/a>)<\\/li>\\n<li>Tweak: Added Custom Icons compatibility for WordPress 5.3<\\/li>\\n<li>Fix: Missing template function declaration causes fatal error in WC mini-cart widget<\\/li>\\n<li>Fix: Pause on hover doesn\'t work in Carousel widgets<\\/li>\\n<li>Fix: Link-actions conflict with <code>?action=<\\/code> parameter in the URL<\\/li>\\n<li>Fix: Lightbox navigation not working in Gallery widget Single mode<\\/li>\\n<li>Fix: Ken burns effect not working on the 1st slide if Infinite Loop option is turned off in Carousel widgets<\\/li>\\n<li>Fix: Popup Advanced Rules detects internal links as external if current URL starts with <code>www<\\/code><\\/li>\\n<\\/ul>\\n<h4>2.7.2 - 2019-10-06<\\/h4>\\n<ul>\\n<li>Fix: Slide Overlay not working when applying Ken burns effect in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9209\\\">#9209<\\/a>)<\\/li>\\n<li>Fix: Content width glitch in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9180\\\">#9180<\\/a>)<\\/li>\\n<li>Fix: Horizontal Alignment not working when applying custom style per slide in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9180\\\">#9180<\\/a>)<\\/li>\\n<li>Fix: Missing semicolon in Custom Fonts <code>font-display<\\/code> CSS<\\/li>\\n<\\/ul>\\n<h4>2.7.1 - 2019-09-26<\\/h4>\\n<ul>\\n<li>Fix: Background Overlay layer is over the slide content in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9180\\\">#9180<\\/a>)<\\/li>\\n<li>Fix: Duplicate images under &quot;All&quot; filter in Multiple Gallery<\\/li>\\n<\\/ul>\\n<h4>2.7.0 - 2019-09-24<\\/h4>\\n<ul>\\n<li>New: Enhanced Galleries widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1898\\\">#1898<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3103\\\">#3103<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4279\\\">#4279<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7631\\\">#7631<\\/a>)<\\/li>\\n<li>New: Dynamic Number (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5952\\\">#5952<\\/a>)<\\/li>\\n<li>New: Full content skin for Posts and Archive-posts widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4617\\\">#4617<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic number capability to Price List, Price Table, Counter, Star Rating, Progress Bar widgets<\\/li>\\n<li>Tweak: Added tags support to forms Mailchimp action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5418\\\">#5418<\\/a>)<\\/li>\\n<li>Tweak: User Profile Picture Dynamic Tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7947\\\">#7947<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8740\\\">#8740<\\/a>)<\\/li>\\n<li>Tweak: Added <code>font-display<\\/code> support to custom fonts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5993\\\">#5993<\\/a>, <a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-pro-2-7-custom-fonts-font-display-support\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added Text Shadow control to Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8800\\\">#8800<\\/a>)<\\/li>\\n<li>Tweak: Added Re-subscribe support to MailerLite (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8799\\\">#8799<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities to Facebook Embed widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9030\\\">#9030<\\/a>)<\\/li>\\n<li>Tweak: Use <code>swiper.js<\\/code> instead of <code>slick.js<\\/code> in Slides widget (<a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-2-7-moving-sliders-from-slick-to-swiper\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/search_form\\/before_input<\\/code> action hook to Search Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5598\\\">#5598<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/search_form\\/after_input<\\/code> action hook to Search Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5598\\\">#5598<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic support for Custom field key (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7789\\\">#7789<\\/a>)<\\/li>\\n<li>Tweak: Increased expired license notice bar frequency<\\/li>\\n<li>Tweak: Changed the icon name of Slides widget<\\/li>\\n<li>Tweak: Added designated Finder\'s Icons for Custom icons &amp; Custom fonts<\\/li>\\n<li>Tweak: Use Ken Burns Effect as an external module<\\/li>\\n<li>Tweak: Remove Fontello conflicting CSS on import to Custom Icons sets<\\/li>\\n<li>Tweak: Editor Panel UI tweaks<\\/li>\\n<li>Tweak: Added DOM events on Popup show\\/hide (<a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-pro-2-7-popup-events\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added option to change the variations field width in Add to Cart widget<\\/li>\\n<li>Tweak: Use select control instead of select2 in Menu Cart widget<\\/li>\\n<li>Tweak: Added conditions to the tabs instead of to each control in Share Buttons widget<\\/li>\\n<li>Tweak: Added Typography controls to HTML field in Forms widget<\\/li>\\n<li>Tweak: Allow edit selected Font file in Custom Font<\\/li>\\n<li>Tweak: Changed reCAPTCHA v3 error message<\\/li>\\n<li>Tweak: Remove the &quot;Save as Global&quot; option on Global widget context menu<\\/li>\\n<li>Fix: Corrected selector for <code>removeControlSpinner()<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8790\\\">#8790<\\/a>)<\\/li>\\n<li>Fix: Slides widget navigation icons misplacement (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8533\\\">#8533<\\/a>)<\\/li>\\n<li>Fix: Horizontal Scrollbar when Slider widget is set to Full Width (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8527\\\">#8527<\\/a>)<\\/li>\\n<li>Fix: Inconsistent behavior when &quot;Infinite Loop&quot; enabled with &quot;Autoplay&quot; in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6726\\\">#6726<\\/a>)<\\/li>\\n<li>Fix: Ken Burns effect on Chrome transition glitches (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1671\\\">#1671<\\/a>)<\\/li>\\n<li>Fix: Nothing found message shows up inside the columns set in Posts Archive widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7347\\\">#7347<\\/a>)<\\/li>\\n<li>Fix: Responsive UI glitch in Popup Conditions modal tabs<\\/li>\\n<li>Fix: Removed unnecessary divider in Call to Action widget<\\/li>\\n<li>Fix: Custom Add To Cart * button style (size, position and background color) when <code>quantity<\\/code> is enabled.<\\/li>\\n<li>Fix: Add support for Document\\/PageBase in Theme Builder (Core &gt;=2.7.0)<\\/li>\\n<li>Fix: Ampersand character breaks email link in Share Buttons widget<\\/li>\\n<li>Fix: Correct custom font attachment <code>mime-type<\\/code> to show uploaded Custom Fonts<\\/li>\\n<li>Fix: Mini-Cart not refreshing in Menu Cart widget<\\/li>\\n<li>Fix: Cart drawer not working when WC Subscriptions plugin is activated<\\/li>\\n<li>Fix:  Querying CPT with custom taxonomies does not show the taxonomies before saving<\\/li>\\n<li>Fix: Double rendering on change caused console error in Theme Builder\'s conditions screen<\\/li>\\n<li>Fix: Translations and Strings in Share Buttons widget<\\/li>\\n<li>Fix: Avoid using offset if the source is Manual selection in Query Control<\\/li>\\n<li>Fix: Form being submitted although reCAPTCHA v3 validation failed in Forms widget<\\/li>\\n<\\/ul>\\n<h4>2.6.5 - 2019-08-26<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.7<\\/li>\\n<li>Fix: Button style not working when <code>quantity<\\/code> is enabled in Custom Add To Cart widget<\\/li>\\n<li>Fix: Updated minified JS file fixed WhatsApp base URL in Share Buttons widget<\\/li>\\n<\\/ul>\\n<h4>2.6.4 - 2019-08-21<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.7<\\/li>\\n<li>Fix: Changed WhatsApp base URL in Share Buttons widget for cross-device compatibility<\\/li>\\n<li>Fix: Random slides order after several clicks on pagination in Testimonial Carousel widget<\\/li>\\n<\\/ul>\\n<h4>2.6.3 - 2019-08-18<\\/h4>\\n<ul>\\n<li>Fix: Core version rollback to <code>&gt;2.6.0<\\/code> causes a fatal error<\\/li>\\n<li>Fix: Duplicate images when slideshow skin is selected in Media Carousel lightbox<\\/li>\\n<li>Fix: Default bottom margin added to reCAPTCHA V3 badge<\\/li>\\n<li>Fix: Input glitch in reCAPTCHA V3 threshold settings<\\/li>\\n<\\/ul>\\n<h4>2.6.2 - 2019-07-30<\\/h4>\\n<ul>\\n<li>Tweak: Better accessibility support in Search Form widget<\\/li>\\n<li>Fix: UI glitched in Popup publish screen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8616\\\">#8616<\\/a>)<\\/li>\\n<li>Fix: &quot;Child of Term&quot; and &quot;Any child of term&quot; conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8695\\\">#8695<\\/a>)<\\/li>\\n<li>Fix: Restored <code>library_widget_templates<\\/code> action hook for 3rd party compatibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8687\\\">#8687<\\/a>)<\\/li>\\n<li>Fix: Twitter Icon missing in Blockquote widget<\\/li>\\n<li>Fix: Form reCAPTCHA v3 badge position not working<\\/li>\\n<li>Fix: Renewal notice bar appears in wrong situations<\\/li>\\n<li>Fix: Draft Icon Set loads empty Icon Library<\\/li>\\n<\\/ul>\\n<h4>2.6.1 - 2019-07-24<\\/h4>\\n<ul>\\n<li>Fix: Query Control autocomplete not retrieving results (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8672\\\">#8672<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8661\\\">#8661<\\/a>)<\\/li>\\n<li>Fix: Price Table features section not working (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8660\\\">#8660<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.6.0 - 2019-07-23<\\/h4>\\n<ul>\\n<li>New: Introducing Custom Icon sets - including Fontello, IcoMoon and Fontastic support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/110\\\">#110<\\/a>)<\\/li>\\n<li>New: Added Font Awesome 5 Pro integration including 5,300+ icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4430\\\">#4430<\\/a>)<\\/li>\\n<li>New: Added reCAPTCHA v3 integration to Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8213\\\">#8213<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6039\\\">#6039<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7165\\\">#7165<\\/a>)<\\/li>\\n<li>Tweak: Added Exit Animation for Popups (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7063\\\">#7063<\\/a>)<\\/li>\\n<li>Tweak: Added ACF Dynamic tag support for archive pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5147\\\">#5147<\\/a>)<\\/li>\\n<li>Tweak: Added Navigator Indicators for Custom CSS &amp; Motion Effects (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2180\\\">#2180<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities for Form Redirect action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7552\\\">#7552<\\/a>)<\\/li>\\n<li>Tweak: Added Logged In Message styling options for Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7928\\\">#7928<\\/a>)<\\/li>\\n<li>Tweak: Added <code>none<\\/code> breakpoint option to Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7916\\\">#7916<\\/a>)<\\/li>\\n<li>Tweak: Added option to place Post Terms dynamic tag without links (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8366\\\">#8366<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor\\/query\\/query_results<\\/code> hook to Query Control to allow full control over results (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7912\\\">#7912<\\/a>)<\\/li>\\n<li>Tweak: Allow choosing Heading HTML tag in Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8090\\\">#8090<\\/a>)<\\/li>\\n<li>Tweak: Show popup on dynamic click even when <code>Avoid Multiple Popups<\\/code> option is selected (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8189\\\">#8189<\\/a>)<\\/li>\\n<li>Tweak: Added condition option to all of archive child pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8256\\\">#8256<\\/a>)<\\/li>\\n<li>Tweak: Added <code>Effects Relative To<\\/code> control to Scrolling Effects<\\/li>\\n<li>Tweak: Allow shortcodes in HTML Form field<\\/li>\\n<li>Tweak: Removed donReach integration from Share Buttons widget due to service inconsistent stability<\\/li>\\n<li>Tweak: Changed MailChimp <code>List<\\/code> label to <code>Audience<\\/code><\\/li>\\n<li>Tweak: Improved Entrance and Exit animation behavior in Popup<\\/li>\\n<li>Tweak: Added <code>Deprecated Notice<\\/code> control to <code>Archive Products<\\/code> and <code>Woo Products<\\/code> widgets<\\/li>\\n<li>Tweak: Added default dynamic title for archives in Theme Builder<\\/li>\\n<li>Tweak: Added condition to show <code>Centered Slides<\\/code> control in Media Carousel widget<\\/li>\\n<li>Tweak: Added notice bar in the Editor when the license is expired or not activated<\\/li>\\n<li>Tweak: Replaced <code>select<\\/code> control with <code>choose<\\/code> control in Price List widget<\\/li>\\n<li>Tweak: Removed Font Awesome 4 dependencies from the Editor<\\/li>\\n<li>Tweak: Minor styling tweaks in the Popup publish modal<\\/li>\\n<li>Tweak: Hide ordering form in Products widget on front page<\\/li>\\n<li>Tweak: Removed page title markup when \'Hide Title\' is active<\\/li>\\n<li>Tweak: Added style controls for HTML field in Form widget<\\/li>\\n<li>Fix: Form widget Date picker makes the Popup builder disappear (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7240\\\">#7240<\\/a>)<\\/li>\\n<li>Fix: Sticky element stop point stops working on viewport resize (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7884\\\">#7884<\\/a>)<\\/li>\\n<li>Fix: Copy-Paste style not pasting the Pointer option in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8497\\\">#8497<\\/a>)<\\/li>\\n<li>Fix: Missing Print icon in Share Buttons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8506\\\">#8506<\\/a>)<\\/li>\\n<li>Fix: UI style glitch in Blockquote widget when viewing from iPad<\\/li>\\n<li>Deprecated: <code>DB::save_editor()<\\/code> - Remove usage of this method (<a href=\\\"https:\\/\\/developers.elementor.com\\/v2-6-0-planned-deprecations\\/\\\">Deprecation Post<\\/a>)<\\/li>\\n<li>Deprecated: <code>DB::get_plain_editor()<\\/code> - Remove usage of this method (<a href=\\\"https:\\/\\/developers.elementor.com\\/v2-6-0-planned-deprecations\\/\\\">Deprecation Post<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.14 - 2019-07-14<\\/h4>\\n<ul>\\n<li>Fix: Better WC Related Product grid support to various themes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8555\\\">#8555<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.13 - 2019-07-11<\\/h4>\\n<ul>\\n<li>Fix: Better WC grid support to various themes<\\/li>\\n<\\/ul>\\n<h4>2.5.12 - 2019-07-10<\\/h4>\\n<ul>\\n<li>Fix: Grid for WooCommerce Archive Product widget<\\/li>\\n<li>Fix: Remove redundant <code>whitespace<\\/code> CSS property causes style glitch in iPad<\\/li>\\n<li>Tweak: Added more compatibility for Elementor v2.6<\\/li>\\n<\\/ul>\\n<h4>2.5.11 - 2019-07-02<\\/h4>\\n<ul>\\n<li>Fix: Close icon missing from Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8460\\\">#8460<\\/a>)<\\/li>\\n<li>Fix: Elementor Pro v2.5.10 shows PHP notice regarding notice bar (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8461\\\">#8461<\\/a>)<\\/li>\\n<li>Fix: Fatal error when deleting used Pods fields (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8396\\\">#8396<\\/a>)<\\/li>\\n<li>Fix: Missing dropdown icon in conditions screen<\\/li>\\n<\\/ul>\\n<h4>2.5.10 - 2019-05-28<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.6<\\/li>\\n<li>Tweak: Error caused by empty Rows &amp; Columns values in Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8261\\\">#8261<\\/a>)<\\/li>\\n<li>Fix: Do not unset <code>product<\\/code> CPT if it\'s not from WooCommerce (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8160\\\">#8160<\\/a>)<\\/li>\\n<li>Fix: Column Spacing not working in WooCommerce Archive Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8285\\\">#8285<\\/a>)<\\/li>\\n<li>Fix: Title styling not working in Products Categories widget<\\/li>\\n<li>Fix: Empty value in Dynamic Pods Gallery dropdown using Safari browser<\\/li>\\n<li>Fix: WooCommerce archives included in &quot;All Archives&quot; condition<\\/li>\\n<\\/ul>\\n<h4>2.5.9 - 2019-05-28<\\/h4>\\n<ul>\\n<li>Tweak: Removed <code>auto-confirm<\\/code> control from MailPoet to support new version of MailPoet<\\/li>\\n<li>Fix: Multiple Custom Fonts not rendered in the editor<\\/li>\\n<li>Fix: Products <code>sale<\\/code> query - handle exclude by manual selection.<\\/li>\\n<li>Fix: Product Categories grid row &amp; column style<\\/li>\\n<li>Fix: Form integration AJAX cache override<\\/li>\\n<li>Fix: Removed redundant CSS on Canvas &amp; Header-Footer page templates<\\/li>\\n<\\/ul>\\n<h4>2.5.8 - 2019-05-06<\\/h4>\\n<ul>\\n<li>Fix: Popup entrance animation not working in frontend<\\/li>\\n<li>Fix: Popup Exit Intent trigger activated multiple times<\\/li>\\n<\\/ul>\\n<h4>2.5.7 - 2019-05-05<\\/h4>\\n<ul>\\n<li>Fix: Embedded video keeps playing after a Popup is closed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7875\\\">#7875<\\/a>)<\\/li>\\n<li>Fix: Maximum call stack size exceeded error in Safari (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7824\\\">#7824<\\/a>)<\\/li>\\n<li>Fix: Entrance animations not appearing on Popup reopen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7395\\\">#7395<\\/a>)<\\/li>\\n<li>Fix: WC variations select style glitch in several themes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8008\\\">#8008<\\/a>)<\\/li>\\n<li>Fix: Theme Builder taxonomy conditions not retrieving proper results in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.5.6 - 2019-04-29<\\/h4>\\n<ul>\\n<li>Tweak: Removed <code>Shortcode<\\/code> dynamic from Image, Gallery and Media control<\\/li>\\n<li>Fix: Popup not inheriting entrance animation in responsive mode (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7809\\\">#7809<\\/a>)<\\/li>\\n<li>Fix: Terms autocomplete retrieves wrong results in Query Control<\\/li>\\n<li>Fix: Query Control Related by author glitches in edge cases<\\/li>\\n<li>Fix: Query Control using terms for Products widget<\\/li>\\n<li>Fix: Posts cards style glitch in small screens<\\/li>\\n<li>Fix: Display conditions delete icon missing in small screens<\\/li>\\n<li>Fix: Avoid rendering Menu Cart widget in WordPress native editor<\\/li>\\n<\\/ul>\\n<h4>2.5.5 - 2019-04-08<\\/h4>\\n<ul>\\n<li>Tweak: Allow text selection inside a Popup<\\/li>\\n<li>Fix: Added backwards compatibility for <code>tax_query<\\/code> in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7751\\\">#7751<\\/a>)<\\/li>\\n<li>Fix: Missing arguments for <code>widget_title<\\/code> filter (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7745\\\">#7745<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.4 - 2019-04-03<\\/h4>\\n<ul>\\n<li>Fix: Move Query from using <code>term_id<\\/code> to <code>term_taxonomy_id<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7653\\\">#7653<\\/a>)<\\/li>\\n<li>Fix: Offset manipulation hook removal in Query control<\\/li>\\n<li>Fix: Missing form field <code>ID<\\/code> in some edge cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7711\\\">#7711<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7660\\\">#7660<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.3 - 2019-03-31<\\/h4>\\n<ul>\\n<li>Tweak: Updated Google Calendar dynamic tag URL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7673\\\">#7673<\\/a>)<\\/li>\\n<li>Fix: Missing form field names (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7651\\\">#7651<\\/a>)<\\/li>\\n<li>Fix: PHP 5.4 backward compatibility in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7633\\\">#7633<\\/a>)<\\/li>\\n<li>Fix: <code>products_deprecated<\\/code> Query Control module compatibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7654\\\">#7654<\\/a>)<\\/li>\\n<li>Fix: Changed query method from <code>term_id<\\/code> to <code>term_taxonomy_id<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7653\\\">#7653<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.2 - 2019-03-27<\\/h4>\\n<ul>\\n<li>Fix: Overwrite parent widget type in Global Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7632\\\">#7632<\\/a>)<\\/li>\\n<li>Fix: Avoid Duplicates option not working in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7635\\\">#7635<\\/a>)<\\/li>\\n<li>Fix: Manual Selection option not working in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7634\\\">#7634<\\/a>)<\\/li>\\n<li>Fix: Incorrect condition caused handlers issues inside popup<\\/li>\\n<\\/ul>\\n<h4>2.5.1 - 2019-03-26<\\/h4>\\n<ul>\\n<li>Fix: Query Control invalid call to deprecated action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7619\\\">#7619<\\/a>)<\\/li>\\n<li>Tweak: Renamed action hook from <code>elementor_pro\\/{$widget_name}\\/query\\/{$query_id}<\\/code> to <code>elementor\\/query\\/{$query_id}<\\/code><\\/li>\\n<li>Tweak: Renamed filter hook from <code>elementor_pro\\/query_control\\/get_query_args\\/current_query<\\/code> to <code>elementor\\/query\\/get_query_args\\/current_query<\\/code><\\/li>\\n<\\/ul>\\n<h4>2.5.0 - 2019-03-26<\\/h4>\\n<ul>\\n<li>New: Introducing Motion Effects including Scrolling &amp; Mouse effects (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/72\\\">#72<\\/a>)<\\/li>\\n<li>New: Introducing Related Posts for Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7306\\\">#7306<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7490\\\">#7490<\\/a>)<\\/li>\\n<li>New: Introducing Date query for Query Control<\\/li>\\n<li>New: Introducing Sticky Posts support for Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2501\\\">#2501<\\/a>)<\\/li>\\n<li>Tweak: Added option to open a Popup by a custom selector (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6871\\\">#6871<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6876\\\">#6876<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7258\\\">#7258<\\/a>)<\\/li>\\n<li>Tweak: Option to count when Popup is closed in &quot;Show up to X times&quot; Advanced Rule<\\/li>\\n<li>Tweak: Added full border radius control options inside Popup<\\/li>\\n<li>Tweak: Changed exit intent icon in Popups<\\/li>\\n<li>Tweak: Show only one popup in its own preview<\\/li>\\n<li>Tweak: Added responsive support to Popup entrance animation control<\\/li>\\n<li>Tweak: Conditions - Singular <code>All Pages<\\/code> string changed to <code>Pages<\\/code><\\/li>\\n<li>Tweak: Added form field shortcode support for Drip tags (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7000\\\">#7000<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities to Price List widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7258\\\">#7258<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities to Custom Attributes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6779\\\">#6779<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities to Flip Box widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6986\\\">#6986<\\/a>)<\\/li>\\n<li>Tweak: Decrease <code>z-index<\\/code> for Nav Menu (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6869\\\">#6869<\\/a>)<\\/li>\\n<li>Tweak: Changed &quot;Scrolling Effects&quot; section label to &quot;Motion Effects&quot;<\\/li>\\n<li>Tweak: Use filter <code>get_meta_viewport<\\/code> for header templates (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7043\\\">#7043<\\/a>)<\\/li>\\n<li>Tweak: use filterable <code>Util::get_public_post_types()<\\/code> in Theme Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7172\\\">#7172<\\/a>)<\\/li>\\n<li>Tweak: Added Cloudflare rocket-loader support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7443\\\">#7443<\\/a>)<\\/li>\\n<li>Tweak: Added responsive support to WC Products Columns &amp; Rows Gap controls (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6913\\\">#6913<\\/a>)<\\/li>\\n<li>Tweak: WC Menu cart &quot;View Cart&quot; &amp; &quot;Checkout&quot; buttons styling<\\/li>\\n<li>Fix: Custom ID reset to default when dragging repeater<\\/li>\\n<li>Fix: Conflict between archive-products widget and WC customizer<\\/li>\\n<li>Fix: Add to Cart widget <code>spacing<\\/code> and <code>space-between<\\/code><\\/li>\\n<li>Fix: Library view when creating a new Header or Footer<\\/li>\\n<li>Fix: Post types labels missing on Add New Template modal<\\/li>\\n<\\/ul>\\n<h4>2.4.8 - 2019-03-11<\\/h4>\\n<ul>\\n<li>Fix: Missing query section in Products widget<\\/li>\\n<li>Fix: Missing Taxonomy controls in Products widget in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.4.7 - 2019-03-06<\\/h4>\\n<ul>\\n<li>Fix: Compatibility Global Widget with Elementor v2.5.0+<\\/li>\\n<\\/ul>\\n<h4>2.4.6 - 2019-03-04<\\/h4>\\n<ul>\\n<li>Fix: Pods gallery dynamic when empty (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7127\\\">#7127<\\/a>)<\\/li>\\n<li>Fix: Duplicate call for conditions screen issue<\\/li>\\n<li>Fix: Compatibility with Elementor v2.5.0<\\/li>\\n<\\/ul>\\n<h4>2.4.5 - 2019-02-18<\\/h4>\\n<ul>\\n<li>Fix: Image size issue in Testimonial Carousel (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7058\\\">#7058<\\/a>)<\\/li>\\n<li>Fix: MailChimp groups not saved in a form integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7083\\\">#7083<\\/a>)<\\/li>\\n<li>Fix: Show popup preview only on it\'s own preview<\\/li>\\n<li>Fix: Elementor dashboard templates URL corrupted links in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.4.4 - 2019-02-11<\\/h4>\\n<ul>\\n<li>Tweak: Added ACF Date Time Picker field support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6690\\\">#6690<\\/a>)<\\/li>\\n<li>Tweak: Changed the term of <code>All Posts<\\/code> condition to <code>Posts<\\/code><\\/li>\\n<li>Fix: Added <code>&lt;IfModule&gt;<\\/code> to avoid 500 error when <code>mod-headers<\\/code> is missing (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7034\\\">#7034<\\/a>)<\\/li>\\n<li>Fix: Include post CSS deletion in Global Widget update (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6856\\\">#6856<\\/a>)<\\/li>\\n<li>Fix: <code>Textarea<\\/code> default value in Forms Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6934\\\">#6934<\\/a>)<\\/li>\\n<li>Fix: MailPoet latest version caused fatal error (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6996\\\">#6996<\\/a>)<\\/li>\\n<li>Fix: Fatal Error caused by calling MailPoet deleted method<\\/li>\\n<li>Notice: MailPoet <code>Auto Confirm<\\/code> option will now default to &quot;On&quot;<\\/li>\\n<\\/ul>\\n<h4>2.4.3 - 2019-01-30<\\/h4>\\n<ul>\\n<li>Fix: Custom Add to Cart widget responsive alignment settings<\\/li>\\n<li>Fix: Links in Post Info widget<\\/li>\\n<li>Fix: WooCommerce <code>View Cart<\\/code> string translate<\\/li>\\n<li>Fix: Wrapper classes for header\\/footer templates (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6884\\\">#6884<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.4.2 - 2019-01-25<\\/h4>\\n<ul>\\n<li>Tweak: Added pixel units to Close Button position control in Popups<\\/li>\\n<li>Fix: Exclude error in WC Products widget<\\/li>\\n<\\/ul>\\n<h4>2.4.1 - 2019-01-24<\\/h4>\\n<ul>\\n<li>Tweak: Added CSS classes control to Popup (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6826\\\">#6826<\\/a>)<\\/li>\\n<li>Tweak: Added responsive image size to Testimonial Carousel widget<\\/li>\\n<li>Fix: PHP warning when Toolset Date dynamic is empty (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6842\\\">#6842<\\/a>)<\\/li>\\n<li>Fix: Support of exclude-ids in WC Products widget<\\/li>\\n<li>Fix: Popup close button not clickable<\\/li>\\n<li>Fix: Alignment justify issue of Add to Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6749\\\">#6749<\\/a>)<\\/li>\\n<li>Fix: Bad anchors breaks the page JS<\\/li>\\n<li>Fix: Popup overlay shown when turned off<\\/li>\\n<\\/ul>\\n<h4>2.4.0 - 2019-01-21<\\/h4>\\n<ul>\\n<li>New: Introducing Popup Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/628\\\">#628<\\/a>)<\\/li>\\n<li>New: Added <code>Popup<\\/code> Dynamic Tag<\\/li>\\n<li>New: Added <code>Popup<\\/code> forms action after submit<\\/li>\\n<li>New: Added User Info dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6322\\\">#6322<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities for &quot;Nothing Found&quot; message<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/theme_builder\\/archive\\/escape_nothing_found_message<\\/code> Filter to avoid HTML escaping in &quot;Nothing Found&quot; message (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6053\\\">#6053<\\/a>)<\\/li>\\n<li>Tweak: Added <code>add_doc_to_location<\\/code> method to Allow insertion of a document to a location<\\/li>\\n<li>Fix: <code>z-index<\\/code> issue with CTA widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6486\\\">#6486<\\/a>)<\\/li>\\n<li>Fix: Hide the Post Content widget and show it only in a Single document<\\/li>\\n<li>Fix: <code>selector<\\/code> replacement in Custom CSS<\\/li>\\n<li>Fix: Apply <code>the_content<\\/code> on the real content only<\\/li>\\n<li>Fix: CSS for WC products selector (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6559\\\">#6559<\\/a>)<\\/li>\\n<li>Fix: Odnoklassniki share URL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6638\\\">#6638<\\/a>)<\\/li>\\n<li>Fix: Custom link new tab in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5766\\\">#5766<\\/a>)<\\/li>\\n<li>Fix: <code>nofollow<\\/code> link in Flip Box &amp; CTA widgets<\\/li>\\n<li>Fix: Post Terms in Post Info widget<\\/li>\\n<li>Fix: Added screen reader to some icons &amp; buttons for better accessibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5386\\\">#5386<\\/a>)<\\/li>\\n<li>Fix: Accessibility labels in Reviews widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6630\\\">#6630<\\/a>)<\\/li>\\n<li>Fix: Link to cart page not working when WooCommerce Subscriptions is active<\\/li>\\n<li>Fix: MailChimp Selected list not showing on reloading in Form widget<\\/li>\\n<li>Fix: Sub-menu arrow position in Nav Menu widget<\\/li>\\n<li>Fix: Conflict with WP Security Audit Log plugin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6648\\\">#6648<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.3.1 - 2018-12-19<\\/h4>\\n<ul>\\n<li>Fix: Template widget search functionality (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6473\\\">#6473<\\/a>)<\\/li>\\n<li>Fix: Apply <code>the_content<\\/code> filter to post content in theme builder<\\/li>\\n<\\/ul>\\n<h4>2.3.0 - 2018-12-17<\\/h4>\\n<ul>\\n<li>New: Introducing Discord Integration for Forms (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4218\\\">#4218<\\/a>)<\\/li>\\n<li>New: Introducing Slack Integration for Forms<\\/li>\\n<li>New: Introducing MailerLite Integration for Forms (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4462\\\">#4462<\\/a>)<\\/li>\\n<li>New: Activate Elementor Pro plugin by connecting to Elementor account<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/utils\\/get_public_post_types<\\/code> filter hook (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5900\\\">#5900<\\/a>)<\\/li>\\n<li>Tweak: Added <code>loop_start<\\/code> &amp; <code>the_content<\\/code> hooks for Post Content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6173\\\">#6173<\\/a>)<\\/li>\\n<li>Tweak: Removed Custom Attributes from Page Settings<\\/li>\\n<li>Tweak: Always add the Custom CSS control to the Advanced tab<\\/li>\\n<li>Fix: In sub Term condition false positive in edge cases<\\/li>\\n<li>Fix: ToolSet Dynamic Image fallback<\\/li>\\n<li>Fix: Style glitch with the dropdown color in Nav Menu widget<\\/li>\\n<li>Fix: Style glitch in the Conditions screen in Safari browser<\\/li>\\n<li>Fix: Ribbon in the CTA widget obscures drop down menu (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6080\\\">#6080<\\/a>)<\\/li>\\n<li>Fix: The color of label won\'t change color in Widget login<\\/li>\\n<\\/ul>\\n<h4>2.2.5 - 2018-12-11<\\/h4>\\n<ul>\\n<li>New: Add Style Tab &amp; Custom CSS for Header &amp; Footer Templates.<\\/li>\\n<li>Tweak: Added a better identifier for subpages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6362\\\">#6362<\\/a>)<\\/li>\\n<li>Tweak: Removed Custom Attributes from page settings<\\/li>\\n<li>Fix: Yahoo event URL date issue (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6354\\\">#6354<\\/a>)<\\/li>\\n<li>Fix: Allow timezone settings in Google event URL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6354\\\">#6354<\\/a>)<\\/li>\\n<li>Fix: Avoid <code>z-index<\\/code> changes by <code>nanocss<\\/code> in build process<\\/li>\\n<li>Fix: Added missing WC upsells products CSS<\\/li>\\n<li>Fix: Nav Menu dropdown losing color on hover<\\/li>\\n<li>Fix: WC Product Add-ons CSS compatibility<\\/li>\\n<\\/ul>\\n<h4>2.2.4 - 2018-12-04<\\/h4>\\n<ul>\\n<li>Fix: Global widget not saving changes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6340\\\">#6340<\\/a>)<\\/li>\\n<li>Fix: Dynamic tags support in Blockquote widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6334\\\">#6334<\\/a>)<\\/li>\\n<li>Fix: Forms Redirect URL action when using form field values with spaces<\\/li>\\n<\\/ul>\\n<h4>2.2.3 - 2018-11-29<\\/h4>\\n<ul>\\n<li>Fix: Missing &quot;Edit Template&quot; in Template widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6271\\\">#6271<\\/a>)<\\/li>\\n<li>Fix: Follow menu anchors with UTF8 characters in Nav Menu<\\/li>\\n<li>Fix: Show only supported templates in Template widget<\\/li>\\n<li>Fix: Revert conflicting fix for a default order for WC archive<\\/li>\\n<\\/ul>\\n<h4>2.2.2 - 2018-11-28<\\/h4>\\n<ul>\\n<li>Fix: Lightbox dynamic tag crashes the editor<\\/li>\\n<\\/ul>\\n<h4>2.2.1 - 2018-11-28<\\/h4>\\n<ul>\\n<li>New: Added <code>ACF File<\\/code> Dynamic tag to support text controls.<\\/li>\\n<li>Tweak: Added option to hide item count bubble when cart is empty in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6223\\\">#6223<\\/a>)<\\/li>\\n<li>Tweak: Added Actions group for Lightbox and Contact URL tags<\\/li>\\n<li>Tweak: Added filter <code>elementor_pro\\/dynamic_tags\\/shortcode\\/should_escape<\\/code> to avoid escaping in Shortcode dynamic tag<\\/li>\\n<li>Tweak: MailPoet3 integration allow Subscriber to to subscribe to multiple lists<\\/li>\\n<li>Tweak: Added front-end max file size validation for upload fields<\\/li>\\n<li>Tweak: Added <code>by-author<\\/code> per Post-Type condition for theme builder<\\/li>\\n<li>Fix: Template widget panel not showing the selected template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6271\\\">#6271<\\/a>)<\\/li>\\n<li>Fix: Conflict between ACF with Safari browser on Select option in Dynamic tag<\\/li>\\n<li>Fix: Add post classes only for the Single template<\\/li>\\n<li>Fix: Set document type as not editable for unsupported document like Global widget<\\/li>\\n<li>Fix: Avoid duplicate query for current WC product query<\\/li>\\n<li>Fix: Product Archive showing oldest products instead of latest<\\/li>\\n<li>Fix: CSS reset in Posts widget using cards skin<\\/li>\\n<\\/ul>\\n<h4>2.2.0 - 2018-11-19<\\/h4>\\n<ul>\\n<li>New: Introducing Custom Attributes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/290\\\">#290<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3990\\\">#3990<\\/a>)<\\/li>\\n<li>New: Added evergreen option for Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4459\\\">#4459<\\/a>)<\\/li>\\n<li>New: Added expire actions option for Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5242\\\">#5242<\\/a>)<\\/li>\\n<li>New: Introducing Reviews widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3854\\\">#3854<\\/a>)<\\/li>\\n<li>New: Introducing Sitemap widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5594\\\">#5594<\\/a>)<\\/li>\\n<li>New: Added Request Parameter dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4934\\\">#4934<\\/a>)<\\/li>\\n<li>New: Added Shortcode dynamic tag<\\/li>\\n<li>New: Added Image and Video Lightbox dynamic tag<\\/li>\\n<li>New: Added Contact URL dynamic tag<\\/li>\\n<li>New: Added Featured Image Data dynamic tag<\\/li>\\n<li>New: Added default value to each field in the Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4268\\\">#4268<\\/a>)<\\/li>\\n<li>New: Added &quot;Any Child Of&quot; condition to template conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5321\\\">#5321<\\/a>)<\\/li>\\n<li>New: Added &quot;In Child&quot; condition to template conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5587\\\">#5587<\\/a>)<\\/li>\\n<li>Tweak: Added Form Redirect URL with form values (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2564\\\">#2564<\\/a>)<\\/li>\\n<li>Tweak: Added default post classes to template wrapper (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5959\\\">#5959<\\/a>)<\\/li>\\n<li>Tweak: Better labels for terms in Query control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6092\\\">#6092<\\/a>)<\\/li>\\n<li>Tweak: Renamed &quot;Child Of&quot; templates condition to &quot;Direct Child Of&quot;<\\/li>\\n<li>Tweak: Added <code>elementor\\/theme\\/get_location_templates\\/condition_sub_id<\\/code> filter hook to allow template condition translations<\\/li>\\n<li>Tweak: Load the Template Library widget via Ajax for better performance<\\/li>\\n<li>Tweak: Added 404 page title for Page Title dynamic tag<\\/li>\\n<li>Fix: Menu Cart Toggle has # URL link (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6141\\\">#6141<\\/a>)<\\/li>\\n<li>Fix: Alignment issue in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5790\\\">#5790<\\/a>)<\\/li>\\n<li>Fix: Avoid potential security risk in forms<\\/li>\\n<li>Fix: Template By Author condition conflicts with 404 page<\\/li>\\n<li>Fix: Restored WC Product Content widget in Single Product template<\\/li>\\n<li>Fix: Theme Builder Preview URLs for date archives and 404 pages<\\/li>\\n<li>Fix: Highlight active menu anchor items only when scrolled into view<\\/li>\\n<li>Fix: Carousel Pagination Progress style to support new Swiper version<\\/li>\\n<\\/ul>\\n<h4>2.1.13 - 2018-11-12<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for new brand Finder in v2.3.0<\\/li>\\n<li>Fix: Settings conflict when there are multiple carousels in the page<\\/li>\\n<\\/ul>\\n<h4>2.1.12 - 2018-11-05<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.3<\\/li>\\n<li>Tweak: Better performance for Template Library widget<\\/li>\\n<li>Fix: Fatal error if a taxonomy used in a dynamic field is removed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6029\\\">#6029<\\/a>)<\\/li>\\n<li>Fix: Date Time dynamic tag now respect site language (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6001\\\">#6001<\\/a>)<\\/li>\\n<li>Fix: Custom CSS printed twice in the front-end<\\/li>\\n<li>Fix: ACF Image field PHP warning (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6051\\\">#6051<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.1.11 - 2018-10-22<\\/h4>\\n<ul>\\n<li>New: Added ACF local fields compatibility<\\/li>\\n<li>Tweak: Re-brand TypeKit by Adobe Fonts integration<\\/li>\\n<li>Fix: Exclude <code>is_embed<\\/code> from Singular condition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5915\\\">#5915<\\/a>)<\\/li>\\n<li>Fix: Avoid conflict with Ad Blockers and Share Buttons<\\/li>\\n<li>Fix: Current date time dynamic tag now shows local time<\\/li>\\n<li>Fix: Avoid conflict with 3rd party plugins that filter the permalink<\\/li>\\n<li>Fix: Avoid PHP warning when no groups are selected for MailChimp integration<\\/li>\\n<li>Fix: Avoid PHP warning if checkbox field is empty for ACF<\\/li>\\n<li>Fix: Respect password protected for a WC single product template<\\/li>\\n<li>Fix: Respect <code>order<\\/code> settings for WC archive also without pagination<\\/li>\\n<\\/ul>\\n<h4>2.1.10 - 2018-10-09<\\/h4>\\n<ul>\\n<li>Tweak: Added responsive alignment control for Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5821\\\">#5821<\\/a>)<\\/li>\\n<li>Tweak: Added link control to Animated Headline widget<\\/li>\\n<li>Fix: Mobile nav menu jump on RTL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5711\\\">#5711<\\/a>)<\\/li>\\n<li>Fix: Responsive alignment control in Add to Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5830\\\">#5830<\\/a>)<\\/li>\\n<li>Fix: Added IE compatibility for Animated Headline widget<\\/li>\\n<li>Fix: Post Content widget is now shown only on <code>Single<\\/code> templates<\\/li>\\n<li>Fix: Query Control Pagination with offset<\\/li>\\n<\\/ul>\\n<h4>2.1.9 - 2018-09-17<\\/h4>\\n<ul>\\n<li>Tweak: Added Centered Slides option for Slideshow carousel<\\/li>\\n<li>Fix: Allow only public CPT for Manual Selection in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5091\\\">#5091<\\/a>)<\\/li>\\n<li>Fix: ACF Gallery option support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5344\\\">#5344<\\/a>)<\\/li>\\n<li>Fix: Page scrolling on resize when sticky is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5740\\\">#5740<\\/a>)<\\/li>\\n<li>Fix: Edit custom name for Global Widget in the Navigator (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5689\\\">#5689<\\/a>)<\\/li>\\n<li>Fix: Coverflow transition effect in Carousel<\\/li>\\n<li>Fix: Weird mobile behavior with Cube effect in Carousel<\\/li>\\n<li>Fix: Show the first thumbnail in the Slideshow carousel correctly<\\/li>\\n<\\/ul>\\n<h4>2.1.8 - 2018-09-12<\\/h4>\\n<ul>\\n<li>Tweak: Added styling options for WC Additional Information widget<\\/li>\\n<li>Tweak: Added styling options for \'View Cart\' link in Products widget<\\/li>\\n<li>Fix: 3rd party plugin support for WC single product template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5338\\\">#5338<\\/a>)<\\/li>\\n<li>Fix: Layout of Related Product widget with WC native style<\\/li>\\n<\\/ul>\\n<h4>2.1.7 - 2018-09-03<\\/h4>\\n<ul>\\n<li>New: WC Archive Description widget<\\/li>\\n<li>Tweak: Added blend mode to Slides widget background overlay (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5555\\\">#5555<\\/a>)<\\/li>\\n<li>Tweak: Added \'Current Subcategories\' option to Product Categories widget<\\/li>\\n<li>Fix: Added default vertical alignment in Author Box widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5589\\\">#5589<\\/a>)<\\/li>\\n<li>Tweak: Added more blend mode options for CTA widget<\\/li>\\n<li>Tweak: Improved plugin updater method based on WordPress version<\\/li>\\n<li>Fix: Improved IE compatibility for Posts and Portfolio widgets<\\/li>\\n<li>Fix: Added default gap for products pagination<\\/li>\\n<li>Fix: Post thumbnail flickering in Safari browser<\\/li>\\n<li>Fix: Close mobile nav menu on click only in full-width mode<\\/li>\\n<li>Fix: Added trailing slash to pagination links in Posts widget<\\/li>\\n<\\/ul>\\n<h4>2.1.6 - 2018-08-28<\\/h4>\\n<ul>\\n<li>New: WC Product Category Image widget and Dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5117\\\">#5117<\\/a>)<\\/li>\\n<li>Tweak: Allow HTML in Excerpt widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5491\\\">#5491<\\/a>)<\\/li>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.2<\\/li>\\n<li>Tweak: Deprecated Follow option in the Facebook Button widget<\\/li>\\n<li>Fix: Posts widget grid in Safari &amp; IE11 (Depended on Elementor v2.2)<\\/li>\\n<li>Fix: Posts widget CSS when using cards skin in masonry mode<\\/li>\\n<li>Fix: ACF Image &amp; ACF URL option support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5344\\\">#5344<\\/a>)<\\/li>\\n<li>Fix: WC product gallery links in RTL<\\/li>\\n<li>Fix: Dynamic tags in Call To Action widget<\\/li>\\n<\\/ul>\\n<h4>2.1.5 - 2018-08-21<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.2<\\/li>\\n<li>Fix: Posts Widget layout theme compatibility<\\/li>\\n<li>Fix: Added compatibility for WooCommerce native style<\\/li>\\n<\\/ul>\\n<h4>2.1.4 - 2018-08-19<\\/h4>\\n<ul>\\n<li>Fix: Layout issue compatibility with themes caused by v2.1 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5442\\\">#5442<\\/a>)<\\/li>\\n<li>Fix: Dynamic setting in Pricing Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5460\\\">#5460<\\/a>)<\\/li>\\n<li>Fix: Hide Target URL control if is not necessary in Blockquote widget<\\/li>\\n<li>Fix: Selector specificity for WooCommerce Products widget<\\/li>\\n<li>Fix: WooCommerce conflicts in the editor in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.1.3 - 2018-08-15<\\/h4>\\n<ul>\\n<li>Fix: Thumbnails in the Posts widget jumping (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5350\\\">#5350<\\/a>)<\\/li>\\n<li>Fix: Responsive grid in the Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5375\\\">#5375<\\/a>)<\\/li>\\n<li>Fix: Added missing <code>setup_postdata<\\/code> for Product Data Tabs widget<\\/li>\\n<li>Fix: Rollback to older version of Flip Box widget to resolve 3D depth issue (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5399\\\">#5399<\\/a>)<\\/li>\\n<li>Fix: Allowed types in the Upload File field are now case-insensitive (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5254\\\">#5254<\\/a>)<\\/li>\\n<li>Fix: Carousel behavior when using a single slide<\\/li>\\n<\\/ul>\\n<h4>2.1.2 - 2018-08-12<\\/h4>\\n<ul>\\n<li>Fix: Error when ACF Pro is not installed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5367\\\">#5367<\\/a>)<\\/li>\\n<li>Fix: Edge cases in Inspector where document is a boolean<\\/li>\\n<li>Fix: Edge cases for incorrect file fields in PODS<\\/li>\\n<\\/ul>\\n<h4>2.1.1 - 2018-08-09<\\/h4>\\n<ul>\\n<li>Fix: Highlighted text in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5345\\\">#5345<\\/a>)<\\/li>\\n<li>Fix: Flip Box effect issues<\\/li>\\n<li>Fix: ACF Options page fields support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5329\\\">#5329<\\/a>)<\\/li>\\n<li>Fix: Import Pro templates in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.1.0 - 2018-08-07<\\/h4>\\n<ul>\\n<li>New: Introducing WooCommerce Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1690\\\">#1690<\\/a>)<\\/li>\\n<li>New: Introducing 12 new dynamic tags &amp; widgets for WooCommerce: Gallery, Image, Price, Rating, Description, Breadcrumbs, Data Tabs, Stock, Related, Upsell, Title &amp; Archive<\\/li>\\n<li>New: Introducing Cart Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4220\\\">#4220<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4600\\\">#4600<\\/a>)<\\/li>\\n<li>New: Added integration with Toolset (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2949\\\">#2949<\\/a>)<\\/li>\\n<li>New: Added integration with Pods (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4129\\\">#4129<\\/a>)<\\/li>\\n<li>New: Added stick to bottom in scrolling effects (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4799\\\">#4799<\\/a>)<\\/li>\\n<li>New: Added Scrolling Effect to Widgets under advanced tab<\\/li>\\n<li>New: Introducing Internal URL Dynamic Tag<\\/li>\\n<li>Tweak: Added a Last Updated Date in the Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4597\\\">#4597<\\/a>)<\\/li>\\n<li>Tweak: Added Redirect after Logout option for Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4447\\\">#4447<\\/a>)<\\/li>\\n<li>Tweak: Avoid repeating posts when using more than one in the Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1878\\\">#1878<\\/a>)<\\/li>\\n<li>Tweak: Add Custom Query hook for Query control (<a href=\\\"https:\\/\\/developers.elementor.com\\/custom-query-filter\\/\\\">More Info<\\/a>) (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1748\\\">#1748<\\/a>)<\\/li>\\n<li>Tweak: Added form-message style (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1180\\\">#1180<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag for button on the Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4242\\\">#4242<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag for Call to action widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4767\\\">#4767<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic Tags support for Google Map field (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4602\\\">#4602<\\/a>)<\\/li>\\n<li>Tweak: Added an support for <code>label|value<\\/code> in options field (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4594\\\">#4594<\\/a>)<\\/li>\\n<li>Tweak: Added <code>by-author<\\/code> condition for theme builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4681\\\">#4681<\\/a>)<\\/li>\\n<li>Tweak: Added Activate\\/Deactivate license key via WP-CLI command (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4149\\\">#4149<\\/a>)<\\/li>\\n<li>Tweak: Added <code>is_scroll<\\/code> trigger to scrolling effect (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4340\\\">#4340<\\/a>)<\\/li>\\n<li>Tweak: Added In Same Term support for Post Navigation widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4177\\\">#4177<\\/a>)<\\/li>\\n<li>Tweak: Added responsive control for Slides To Scroll control in all carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3697\\\">#3697<\\/a>)<\\/li>\\n<li>Tweak: Added style options for Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1335\\\">#1335<\\/a>)<\\/li>\\n<li>Tweak: Added button CSS ID for Forms widget<\\/li>\\n<li>Tweak: Added pixel units to Post-Info divider height control<\\/li>\\n<li>Tweak: Rewrite sticky library to handle with stretch section, auto scroller &amp; more bugs<\\/li>\\n<li>Tweak: Re-organize the panel categories per document type<\\/li>\\n<li>Tweak: Added ACF support for <code>options-page<\\/code> fields<\\/li>\\n<li>Tweak: Added dynamic tag for Animated headlines<\\/li>\\n<li>Tweak: Added dynamic tag for BlockQuote widget<\\/li>\\n<li>Fix: Elementor Full Width template in GeneratePress theme (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4817\\\">#4817<\\/a>)<\\/li>\\n<li>Fix: Checkbox fields can accidentally be set to required (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4324\\\">#4324<\\/a>)<\\/li>\\n<li>Fix: Initial slide in Carousel widget<\\/li>\\n<li>Fix: Stay on current slide while editing in Carousel widget<\\/li>\\n<li>Fix: Default slides per device in Carousel widget<\\/li>\\n<li>Deprecated: Woo Products, Woo Elements &amp; Single elements widgets<\\/li>\\n<\\/ul>\\n<h4>2.0.18 - 2018-07-27<\\/h4>\\n<ul>\\n<li>Fix: Global widget error on saving page<\\/li>\\n<\\/ul>\\n<h4>2.0.17 - 2018-07-26<\\/h4>\\n<ul>\\n<li>Fix: Sub menu indicator direction in Nav Menu widget<\\/li>\\n<li>Fix: Change the title and icon for Global Widget when is moving<\\/li>\\n<li>Fix: CSS wrapper selector for Page Document<\\/li>\\n<\\/ul>\\n<h4>2.0.16 - 2018-07-16<\\/h4>\\n<ul>\\n<li>Tweak: CSS Filter Control module is now included in Elementor<\\/li>\\n<li>Fix: Border gap in Portfolio widget when item gap set as <code>0<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5077\\\">#5077<\\/a>)<\\/li>\\n<li>Fix: Restore current query after get Global Widget data<\\/li>\\n<li>Fix: Add action item in History on unlink Global widget<\\/li>\\n<\\/ul>\\n<h4>2.0.15 - 2018-07-10<\\/h4>\\n<ul>\\n<li>Fix: Dropdown menu items collapsing when activated (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4996\\\">#4996<\\/a>)<\\/li>\\n<li>Fix: GMT offset in Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4997\\\">#4997<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.0.14 - 2018-07-08<\\/h4>\\n<ul>\\n<li>Tweak: Added set method to form record for developers (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4983\\\">#4983<\\/a>)<\\/li>\\n<li>Fix: Autoplay option for Carousels<\\/li>\\n<li>Fix: Close mobile menu on item click in the Nav Menu widget<\\/li>\\n<\\/ul>\\n<h4>2.0.13 - 2018-07-03<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for Elementor v2.1<\\/li>\\n<\\/ul>\\n<h4>2.0.12 - 2018-07-02<\\/h4>\\n<ul>\\n<li>Fix: Global widget PHP notices<\\/li>\\n<li>Fix: Slides widget active slide lost focus when clicking Editor tabs<\\/li>\\n<li>Fix: Form select field send all selected values on multiple selection<\\/li>\\n<li>Fix: Validate time field only if it\'s not empty<\\/li>\\n<li>Fix: ConvertKit API not saving name field<\\/li>\\n<\\/ul>\\n<h4>2.0.11 - 2018-06-12<\\/h4>\\n<ul>\\n<li>Fix: Theme Builder <code>author<\\/code> archive condition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4593\\\">#4593<\\/a>)<\\/li>\\n<li>Fix: Respect password protected posts in Post Content widget<\\/li>\\n<li>Fix: Custom Fonts redirect to post edit screen in edge cases.<\\/li>\\n<\\/ul>\\n<h4>2.0.10 - 2018-06-05<\\/h4>\\n<ul>\\n<li>Tweak: Added <code>elementor\\/theme\\/get_location_templates\\/template_id<\\/code> filter hook for multi-language plugins<\\/li>\\n<li>Fix: Dynamic Post Terms missing taxonomies if the taxonomy is registered to more then one post types (#4386)<\\/li>\\n<li>Fix: Fields shortcode missing after removing a field in Form widget<\\/li>\\n<li>Deprecated: <code>get_theme_templates_by_location<\\/code> is replaced by <code>get_location_templates<\\/code><\\/li>\\n<\\/ul>\\n<h4>2.0.9 - 2018-05-28<\\/h4>\\n<ul>\\n<li>Fix: Compatibility for PHP version 5.4<\\/li>\\n<\\/ul>\\n<h4>2.0.8 - 2018-05-28<\\/h4>\\n<ul>\\n<li>Tweak: Added Active state for Nav Menu dropdown<\\/li>\\n<li>Tweak: Added style for &quot;Nothing Found&quot; Message for Archive Posts widget<\\/li>\\n<li>Tweak: Removed caption control in Site Logo widget<\\/li>\\n<li>Tweak: Added option to position currency symbol before\\/after In Price Table widget<\\/li>\\n<li>Fix: Query control manual selection does not show more than 10 items (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4479\\\">#4479<\\/a>)<\\/li>\\n<li>Fix: Styling glitch with terms list in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4342\\\">#4342<\\/a>)<\\/li>\\n<li>Fix: Sub terms missing in Query control in edge cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4527\\\">#4527<\\/a>)<\\/li>\\n<li>Fix: Avoid rendering a template if it\'s not published<\\/li>\\n<li>Fix: 404 Page style not working<\\/li>\\n<li>Fix: Price Table button with hover animation not working in editor<\\/li>\\n<li>Fix: Styling conflict in Call to Action widget<\\/li>\\n<li>Fix: Global Widget tab translation<\\/li>\\n<li>Fix: Adding parent wrapper class to Site Title widget<\\/li>\\n<\\/ul>\\n<h4>2.0.7 - 2018-05-16<\\/h4>\\n<ul>\\n<li>Fix: Content not found on section when single is set to &quot;All Singular&quot;<\\/li>\\n<li>Fix: Open 404 template library for 404 page<\\/li>\\n<li>Tweak: Added CSS prefix for dev files<\\/li>\\n<li>Tweak: Removed product post type from display conditions<\\/li>\\n<\\/ul>\\n<h4>2.0.6 - 2018-05-15<\\/h4>\\n<ul>\\n<li>Tweak: Set type on create new single template<\\/li>\\n<li>Tweak: Always show the conditions dialog in the Draft status<\\/li>\\n<li>Tweak: Added document type <code>widget<\\/code><\\/li>\\n<li>Tweak: Added Post Custom Field tag to URL category<\\/li>\\n<li>Fix: When ACF Field Groups are Empty (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4428\\\">#4428<\\/a>)<\\/li>\\n<li>Fix: Links inside carousel in edge cases<\\/li>\\n<li>Fix: Responsive issue in My Templates area<\\/li>\\n<li>Fix: Image alignment for post content with text alignment<\\/li>\\n<li>Fix: Post Content widget when preview post is missing<\\/li>\\n<li>Fix: Global Widget tab translation<\\/li>\\n<li>Fix: Style settings for Post \\/ Archive Title widgets<\\/li>\\n<\\/ul>\\n<h4>2.0.5 - 2018-05-08<\\/h4>\\n<ul>\\n<li>Fix: Creating a CPT with name like document-type breaks the editor (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4203\\\">#4203<\\/a>)<\\/li>\\n<li>Fix: Added support for new version of reCAPTCHA<\\/li>\\n<li>Fix: Added fallback for controls after <code>post_status<\\/code><\\/li>\\n<li>Fix: Required field in forms widget<\\/li>\\n<li>Fix: Media Carousel in the Coverflow skin<\\/li>\\n<li>Fix: 404 Page show wrong template in edge cases<\\/li>\\n<li>Fix: Save the default menu in the Nav Menu widget<\\/li>\\n<\\/ul>\\n<h4>2.0.4 - 2018-05-02<\\/h4>\\n<ul>\\n<li>Tweak: Added parent\'s class for extended widgets<\\/li>\\n<li>Tweak: Set entire-site as default to avoid conflict with save without conditions<\\/li>\\n<li>Tweak: Initialize global model when it\'s needed<\\/li>\\n<li>Tweak: Removed some duplicate strings<\\/li>\\n<li>Tweak: Query control now includes empty terms<\\/li>\\n<li>Tweak: Design polish for conditions dialog<\\/li>\\n<li>Tweak: Decreasing <code>minimumInputLength<\\/code> to 1 of select2<\\/li>\\n<li>Fix: Editor not loading for single templates in edge cases<\\/li>\\n<li>Fix: Select2 in Safari takes it\'s time to get the original select width (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4310\\\">#4310<\\/a>)<\\/li>\\n<li>Fix: Slides per view not working for some effects<\\/li>\\n<li>Fix: New slides not showing in the editor<\\/li>\\n<li>Fix: Editor for section without a defined location, defaults to content area<\\/li>\\n<\\/ul>\\n<h4>2.0.3 - 2018-04-24<\\/h4>\\n<ul>\\n<li>Tweak: Optimize CSS for Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4214\\\">#4214<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4216\\\">#4216<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4225\\\">#4225<\\/a>)<\\/li>\\n<li>Fix: Double render on frontend view in core locations<\\/li>\\n<li>Fix: Masonry not working in edge cases<\\/li>\\n<li>Fix: Added default setting for Author Info tag<\\/li>\\n<\\/ul>\\n<h4>2.0.2 - 2018-04-18<\\/h4>\\n<ul>\\n<li>Fix: Regenerate conditions to include all templates<\\/li>\\n<\\/ul>\\n<h4>2.0.1 - 2018-04-17<\\/h4>\\n<ul>\\n<li>Tweak: Added div wrapper for Nothing Found massage (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4136\\\">#4136<\\/a>)<\\/li>\\n<li>Tweak: Show empty categories in Query Control &amp; Display Conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4127\\\">#4127<\\/a>)<\\/li>\\n<li>Tweak: Added Divider control for Post Info widget<\\/li>\\n<li>Fix: Update admin links in Yoast Breadcrumbs widget<\\/li>\\n<li>Fix: Sticky element conflict with clearfix CSS<\\/li>\\n<li>Fix: Compatibility for PHP version 5.4.32 &amp; 5.5.16 and below<\\/li>\\n<li>Fix: Avoid running <code>wp_head<\\/code> hooks twice<\\/li>\\n<\\/ul>\\n<h4>2.0.0 - 2018-04-16<\\/h4>\\n<ul>\\n<li>New: Introducing Theme Builder - <a href=\\\"https:\\/\\/elementor.com\\/introducing-theme-builder\\/\\\">Release Post<\\/a> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/417\\\">#417<\\/a>)<\\/li>\\n<li>New: Introducing Locations API to inject custom location templates<\\/li>\\n<li>New: Introducing Display Conditions for all dynamic templates<\\/li>\\n<li>New: Introducing Dynamic Tag feature - a new way to add dynamic content to your design<\\/li>\\n<li>New: Introducing Role manager to allow &quot;Content Only mode&quot; (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/483\\\">#483<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/653\\\">#653<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/885\\\">#885<\\/a>)<\\/li>\\n<li>New: Introducing 9 new dynamic widgets: Archive Posts, Archive Title, Post Content, Post Info, Post Title, Post Excerpt, Featured Image, Site Logo &amp; Site Name (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/543\\\">#543<\\/a>)<\\/li>\\n<li>New: Introducing Developers area with guides and API documentation - <a href=\\\"https:\\/\\/elementor.com\\/introducing-elementor-developer-api\\/\\\">Release Post<\\/a> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/451\\\">#451<\\/a>)<\\/li>\\n<li>New: Introducing <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor-hello-theme\\\">Elementor Hello Theme<\\/a> - A demonstration theme for developers<\\/li>\\n<li>New: Added new type of templates: Header, Footer, Single and Archive (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2761\\\">#2761<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2623\\\">#2623<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2109\\\">#2109<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2061\\\">#2061<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2439\\\">#2439<\\/a>)<\\/li>\\n<li>New: Design 404 page with Single template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1558\\\">#1558<\\/a>)<\\/li>\\n<li>New: Design Search Results with Archive template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3196\\\">#3196<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2590\\\">#2590<\\/a>)<\\/li>\\n<li>New: Added Scrolling Effect for sections including <em>Sticky Element<\\/em> per device (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2412\\\">#2412<\\/a>)<\\/li>\\n<li>New: Integration with Custom Fields (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2054\\\">#2054<\\/a>)<\\/li>\\n<li>New: Partial support for Toolset integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2949\\\">#2949<\\/a>)<\\/li>\\n<li>New: Partial support for Pods integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2169\\\">#2169<\\/a>)<\\/li>\\n<li>New: Partial support for ACF integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2041\\\">#2041<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2059\\\">#2059<\\/a>)<\\/li>\\n<li>Tweak: Add custom fields support for ActiveCampaign (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3531\\\">#3531<\\/a>)<\\/li>\\n<li>Tweak: Allow brackets in Forms Tel field<\\/li>\\n<li>Tweak: Added currency format control for Price Table widget<\\/li>\\n<li>Tweak: Reduced API request for some servers<\\/li>\\n<li>Fix: Dropdown <code>border-radius<\\/code> in Nav Menu widget<\\/li>\\n<li>Fix: Price List widget layout breaks in edge cases<\\/li>\\n<li>Note: This version requires Elementor v2.0.6<\\/li>\\n<\\/ul>\\n<h4>1.15.6 - 2018-03-28<\\/h4>\\n<ul>\\n<li>Fix: Removed duplicate Custom CSS section (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3938\\\">#3938<\\/a>)<\\/li>\\n<li>Fix: <code>box-shadow<\\/code> issue with cards skin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3940\\\">#3940<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.15.5 - 2018-03-27<\\/h4>\\n<ul>\\n<li>Fix: Added global widget compatibility for Elementor v2.0<\\/li>\\n<li>Fix: Reduced API request for some servers<\\/li>\\n<\\/ul>\\n<h4>1.15.4 - 2018-03-26<\\/h4>\\n<ul>\\n<li>Tweak: Allow brackets in phone field<\\/li>\\n<li>Tweak: Added compatibility with Yoast 7.0.+<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor v2.0<\\/li>\\n<li>Fix: Support for multiple carousel setting in editor<\\/li>\\n<li>Fix: <code>on_export<\\/code> issue in forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3890\\\">#3890<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.15.3 - 2018-03-07<\\/h4>\\n<ul>\\n<li>Tweak: Added unique class to field group div (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3595\\\">#3595<\\/a>)<\\/li>\\n<li>Fix: Screen Options missing when Pro is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3622\\\">#3622<\\/a>)<\\/li>\\n<li>Fix: Allow label styling even when <code>show labels<\\/code> is set hide (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3544\\\">#3544<\\/a>)<\\/li>\\n<li>Fix: Typography control not working in edge cases<\\/li>\\n<li>Fix: Safari compatibility for Search widget<\\/li>\\n<\\/ul>\\n<h4>1.15.2 - 2018-02-27<\\/h4>\\n<ul>\\n<li>Fix: Only add support mine-type if needed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3543\\\">#3543<\\/a>)<\\/li>\\n<li>Fix: Better support for Old Typekit kits<\\/li>\\n<\\/ul>\\n<h4>1.15.1 - 2018-02-21<\\/h4>\\n<ul>\\n<li>Tweak: Custom font title placeholder is not <code>enter font family<\\/code><\\/li>\\n<li>Tweak: Custom font title set as required<\\/li>\\n<li>Fix: Custom font, <code>font-face<\\/code> enqueued only once if used in global (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3513\\\">#3513<\\/a>)<\\/li>\\n<li>Fix: Added workaround for upload validation which relies on a PHP extension (fileinfo) with inconsistent reporting behavior.<\\/li>\\n<\\/ul>\\n<h4>1.15.0 - 2018-02-19<\\/h4>\\n<ul>\\n<li>New: Added custom fonts manager for self hosted fonts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/852\\\">#852<\\/a>)<\\/li>\\n<li>New: Integration with Adobe TypeKit fonts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/631\\\">#631<\\/a>)<\\/li>\\n<li>Tweak: Clear menu from Nav Menu widget on template export<\\/li>\\n<li>Tweak: Allow zero for GetResponse integration as <code>day of cycle<\\/code><\\/li>\\n<\\/ul>\\n<h4>1.14.2 - 2018-02-13<\\/h4>\\n<ul>\\n<li>Fix: Global widget content that got affected by previous update<\\/li>\\n<\\/ul>\\n<h4>1.14.1 - 2018-02-13<\\/h4>\\n<ul>\\n<li>Tweak: Added <code>none<\\/code> option to content animation in CTA widget<\\/li>\\n<li>Tweak: Added <code>form_id<\\/code> to ActiveCampaign integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3422\\\">#3422<\\/a>)<\\/li>\\n<li>Fix: Page crashed when Global widget not found.<\\/li>\\n<\\/ul>\\n<h4>1.14.0 - 2018-02-12<\\/h4>\\n<ul>\\n<li>New: Added Call to Action widget<\\/li>\\n<li>Tweak: MailPoet pull field mapping from MailPoet instead of hardcoded<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor v2.0<\\/li>\\n<li>Fix: Allow zero (0) to be accepted as a field value<\\/li>\\n<li>Fix: Login form when custom login URL is set<\\/li>\\n<li>Fix: Added Day of cycle control to GetResponse integration<\\/li>\\n<\\/ul>\\n<h4>1.13.2 - 2018-01-23<\\/h4>\\n<ul>\\n<li>Tweak: Added placeholder to Password field<\\/li>\\n<li>Tweak: Removed <code>subscriber_already_exists_message<\\/code> control to prevent potential data leakage<\\/li>\\n<li>Fix: MailPoet Subscriber Already Exists error validation against translated string directly from MailPoet<\\/li>\\n<li>Fix: Changed <code>imagesLoaded()<\\/code> to Vanilla JS to avoid compatibility issues with some themes<\\/li>\\n<li>Fix: Only validate Tel field if not empty<\\/li>\\n<li>Fix: Stop slider while editing<\\/li>\\n<\\/ul>\\n<h4>1.13.1 - 2018-01-16<\\/h4>\\n<ul>\\n<li>Fix: Added compatibility with old PHP versions<\\/li>\\n<\\/ul>\\n<h4>1.13.0 - 2018-01-16<\\/h4>\\n<ul>\\n<li>New: Added File Upload field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1482\\\">#1482<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2974\\\">#2974<\\/a>)<\\/li>\\n<li>New: Added Acceptance field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1693\\\">#1693<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2974\\\">#2974<\\/a>)<\\/li>\\n<li>New: Added Date field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1868\\\">#1868<\\/a>)<\\/li>\\n<li>New: Added Time field for Forms widget<\\/li>\\n<li>New: Added Password field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2164\\\">#2164<\\/a>)<\\/li>\\n<li>New: Added HTML field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1500\\\">#1500<\\/a>)<\\/li>\\n<li>Tweak: Added characters validation for Tel field<\\/li>\\n<li>Tweak: Added min &amp; max validation for Number field<\\/li>\\n<li>Tweak: Added multiple selection for Select field<\\/li>\\n<li>Tweak: Added donReach integration for Share Buttons widget<\\/li>\\n<\\/ul>\\n<h4>1.12.3 - 2018-01-09<\\/h4>\\n<ul>\\n<li>Fix: Render element plain content instead of parsed content when not needed in global widget<\\/li>\\n<li>Fix: Apply <code>url-encoding<\\/code> to &quot;Tweet&quot; button text in Blockquote widget to prevent unexpected corruption of the tweet text<\\/li>\\n<li>Fix: Removed My Account link from dashboard widget<\\/li>\\n<\\/ul>\\n<h4>1.12.2 - 2018-01-03<\\/h4>\\n<ul>\\n<li>Tweak: Added animation none for Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2964\\\">#2964<\\/a>)<\\/li>\\n<li>Fix: Active license button style<\\/li>\\n<\\/ul>\\n<h4>1.12.1 - 2018-01-02<\\/h4>\\n<ul>\\n<li>Tweak: Removed theme-element widgets from plain content<\\/li>\\n<li>Tweak: Set all theme-element widgets to extend same widget Base<\\/li>\\n<li>Tweak: Removed credit URL in forms meta data<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor v1.9<\\/li>\\n<li>Fix: Validate Get response Error as real error<\\/li>\\n<li>Fix: Removed responsive height control from Facebook Page widget<\\/li>\\n<\\/ul>\\n<h4>1.12.0 - 2017-12-20<\\/h4>\\n<ul>\\n<li>New: Added Drip integration to Forms<\\/li>\\n<li>New: Added ActiveCampaign integration to Forms<\\/li>\\n<li>New: Added ConverKit integration to Forms<\\/li>\\n<li>New: Added GetResponse integration to Forms<\\/li>\\n<li>New: Added form <code>id<\\/code>, <code>name<\\/code> attributes to handle integration with auto collectors like HubSpot<\\/li>\\n<li>New: Added Global API key for MailChimp to improve the workflow<\\/li>\\n<li>Tweak: Better error handling and message display for Forms<\\/li>\\n<li>Fix: PHP notice Undefined variable <code>$cc_header<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2934\\\">#2934<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.11.0 - 2017-12-11<\\/h4>\\n<ul>\\n<li>New: Added a native Comments widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/543\\\">#543<\\/a>)<\\/li>\\n<li>New: Added an Author Box widget<\\/li>\\n<li>New: Added a Post Navigation widget<\\/li>\\n<li>New: Added a Yoast Breadcrumbs widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2749\\\">#2749<\\/a>)<\\/li>\\n<li>Tweak: Added a close button to search widget under Full Screen skin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2762\\\">#2762<\\/a>)<\\/li>\\n<li>Fix: Allow currency symbol to appear even if price isn\'t numeric<\\/li>\\n<li>Fix: Edge cases when the nav menu is empty in a stretched section<\\/li>\\n<li>Fix: Added fallback when you remove the <code>space-between<\\/code> on Swiper carousel<\\/li>\\n<\\/ul>\\n<h4>1.10.2 - 2017-12-03<\\/h4>\\n<ul>\\n<li>Fix: Missing save widget icon (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2878\\\">#2878<\\/a>)<\\/li>\\n<li>Fix: Global widgets not saving edits (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2874\\\">#2874<\\/a>)<\\/li>\\n<li>Fix: Removed <code>white-space: nowrap;<\\/code> property from vertical menu in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2815\\\">#2815<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.10.1 - 2017-11-30<\\/h4>\\n<ul>\\n<li>Tweak: Added default value for search form<\\/li>\\n<li>Tweak: Order template list A-Z in the library widget<\\/li>\\n<li>Tweak: get_users\\/authors query is now done using AJAX only, for better performance in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2865\\\">#2865<\\/a>)<\\/li>\\n<li>Fix: When adding <code>.00<\\/code> it is not displayed on the front<\\/li>\\n<li>Fix: Make sure space between is numeric for carousel control<\\/li>\\n<li>Fix: Added space for radio &amp; checkbox fields in form widget<\\/li>\\n<\\/ul>\\n<h4>1.10.0 - 2017-11-15<\\/h4>\\n<ul>\\n<li>New: Added native Search form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2576\\\">#2576<\\/a>)<\\/li>\\n<li>Tweak: Added Slides To Scroll &amp; Loop controls to Media Carousel and Testimonials widgets<\\/li>\\n<li>Tweak: Added Inline editing to Blockquote widget<\\/li>\\n<li>Fix: Animated Headline color bug (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2516\\\">#2516<\\/a>)<\\/li>\\n<li>Fix: Animated Headline with Rotating skin<\\/li>\\n<li>Fix: RTL fix for Animated Headline widget in \'typing\' and \'clip\' animations<\\/li>\\n<li>Fix: Empty menu cause jQuery to crash in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2662\\\">#2662<\\/a>)<\\/li>\\n<li>Fix: Custom CSS gone after reloading the editor<\\/li>\\n<\\/ul>\\n<h4>1.9.5 - 2017-10-27<\\/h4>\\n<ul>\\n<li>Fix: Broken Global widget with JS (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2639\\\">#2639<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.9.4 - 2017-10-24<\\/h4>\\n<ul>\\n<li>Tweak: Improved UI for notices and license page<\\/li>\\n<li>Fix: Update system conflict with other EDD plugins<\\/li>\\n<li>Fix: WooCommerce frontend hooks on Elementor editor (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2577\\\">#2577<\\/a>)<\\/li>\\n<li>Fix: Removed default border left in Nav Menu dropdown CSS (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2496\\\">#2496<\\/a>)<\\/li>\\n<li>Fix: Increased submenu max-width (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2558\\\">#2558<\\/a>)<\\/li>\\n<li>Fix: Save global templates without their defaults<\\/li>\\n<li>Fix: Horizontal scrolling issue with posts grid<\\/li>\\n<\\/ul>\\n<h4>1.9.3 - 2017-10-03<\\/h4>\\n<ul>\\n<li>Fix: Condition slide style that got affected by previous update<\\/li>\\n<\\/ul>\\n<h4>1.9.2 - 2017-10-02<\\/h4>\\n<ul>\\n<li>New: Added integration with MailPoet 3 for Forms actions<\\/li>\\n<li>Fix: Removed height control from Testimonial carousel in mobile editing mode<\\/li>\\n<li>Fix: Removed bottom padding when there\'s no pagination in Testimonial carousel<\\/li>\\n<li>Fix: Added condition for slides style section in skin bubble mode<\\/li>\\n<li>Fix: Slides per view control for mobile editing in Testimonial carousel<\\/li>\\n<li>Fix: Navigation Arrows icons matched with common Elementor Navigation Arrows<\\/li>\\n<\\/ul>\\n<h4>1.9.1 - 2017-09-28<\\/h4>\\n<ul>\\n<li>Fix: Slides per view for slideshow carousel<\\/li>\\n<li>Fix: Final polish for the new Testimonial Carousel widget<\\/li>\\n<li>Fix: Don\'t play video if slide type is not video<\\/li>\\n<li>Fix: Removed slides style section condition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2497\\\">#2497<\\/a>)<\\/li>\\n<li>Fix: Set cursor as pointer for slideshow thumbnails<\\/li>\\n<\\/ul>\\n<h4>1.9.0 - 2017-09-26<\\/h4>\\n<ul>\\n<li>New: Added Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/216\\\">#216<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/347\\\">#347<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2209\\\">#2209<\\/a>)<\\/li>\\n<li>New: Added Testimonial Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/715\\\">#715<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.8.3 - 2017-09-24<\\/h4>\\n<ul>\\n<li>Fix: Added compatibility for WordPress 4.8.2 &amp; 4.7.6<\\/li>\\n<li>Fix: Remove slashes from Form sent data<\\/li>\\n<\\/ul>\\n<h4>1.8.2 - 2017-09-19<\\/h4>\\n<ul>\\n<li>Tweak: Added target URL for the tweet message in Blockquote widget<\\/li>\\n<li>Tweak: Render the slide height before the slider is finished loading<\\/li>\\n<li>Fix: Space between words for Animated Headline widget<\\/li>\\n<li>Fix: RTL compatibility for Animated Headline widget<\\/li>\\n<li>Fix: Italic font style for Animated Headline widget<\\/li>\\n<li>Fix: Excluded Menu widget from the WP Editor text rendering<\\/li>\\n<\\/ul>\\n<h4>1.8.1 - 2017-09-18<\\/h4>\\n<ul>\\n<li>Fix: WCAG Compatible &quot;required&quot; field attribute for W3C validation (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2391\\\">#2391<\\/a>)<\\/li>\\n<li>Fix: Print the main menu only when is necessary in Menu widget<\\/li>\\n<li>Fix: Use CSS media query instead of JS to hide items in Menu widget to avoid flickering on page load (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2381\\\">#2381<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.8.0 - 2017-09-12<\\/h4>\\n<ul>\\n<li>New: Added Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1406\\\">#1406<\\/a>)<\\/li>\\n<li>Fix: Field ID for checkbox control in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2279\\\">#2279<\\/a>)<\\/li>\\n<li>Fix: Style for Blockquote widget included<\\/li>\\n<\\/ul>\\n<h4>1.7.2 - 2017-09-07<\\/h4>\\n<ul>\\n<li>Tweak: Loading Facebook SDK via JS for better compatibility with caching plugins<\\/li>\\n<li>Fix: Responsive Embed Facebook post widget for Safari iOS (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2340\\\">#2340<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.7.1 - 2017-09-05<\\/h4>\\n<ul>\\n<li>Fix: Facebook SDK version<\\/li>\\n<\\/ul>\\n<h4>1.7.0 - 2017-09-05<\\/h4>\\n<ul>\\n<li>New: Added Facebook Button widget for Like, Recommend, Share and Follow<\\/li>\\n<li>New: Added Facebook Embed widget for Post, Video and Comment<\\/li>\\n<li>New: Added Facebook Comments widget<\\/li>\\n<li>New: Added Facebook Page widget (Previously known as Like Box)<\\/li>\\n<li>New: Added Blockquote widget with Tweet button<\\/li>\\n<li>Tweak: Added Facebook SDK integration for all Facebook widgets<\\/li>\\n<li>Fix: Animated headline rotating with long words<\\/li>\\n<\\/ul>\\n<h4>1.6.1 - 2017-08-28<\\/h4>\\n<ul>\\n<li>Fix: Animated Headline marker gets in front of neighboring spans even when &quot;Bring to Front&quot; is not set<\\/li>\\n<li>Fix: Stroke animation in Animated Headline for MS Edge browser<\\/li>\\n<li>Fix: Animated headline with more than 1-word per rotation<\\/li>\\n<li>Fix: Animated Headline in two lines<\\/li>\\n<li>Fix: Some errors in Global widget<\\/li>\\n<\\/ul>\\n<h4>1.6.0 - 2017-08-22<\\/h4>\\n<ul>\\n<li>New: Added Animated Headline widget<\\/li>\\n<li>New: Added Hidden field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2038\\\">#2038<\\/a>)<\\/li>\\n<li>Tweak: Added notice to update Elementor to v1.6.5 or higher<\\/li>\\n<li>Fix: CSS Animations names no longer minified, in order to prevent unexpected conflicts<\\/li>\\n<\\/ul>\\n<h4>1.5.9 - 2017-08-16<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the future release of Elementor v1.7<\\/li>\\n<li>Fix: Portfolio compatibility for GeneratePress theme<\\/li>\\n<li>Fix: Portfolio filter compatibility for RTL<\\/li>\\n<li>Fix: Pagination apply for all posts widget in the page<\\/li>\\n<li>Fix: Global form widget with MailChimp integration not saving<\\/li>\\n<\\/ul>\\n<h4>1.5.8 - 2017-07-25<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the future release of Elementor v1.6<\\/li>\\n<li>Fix: Improved backward compatibility for query control rename<\\/li>\\n<\\/ul>\\n<h4>1.5.7 - 2017-07-24<\\/h4>\\n<ul>\\n<li>Tweak: Moved JS render of reCAPTCHA to a separate file<\\/li>\\n<li>Tweak: Display the label in the reCAPTCHA field for better experience<\\/li>\\n<li>Tweak: Rename <code>panel-posts-control<\\/code> to <code>query-control<\\/code> and added fallback support<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor with history feature<\\/li>\\n<li>Fix: reCAPTCHA preview on the editor<\\/li>\\n<li>Fix: Manual selection (query control) has stopped working after saving (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2000\\\">#2000<\\/a>)<\\/li>\\n<li>Fix: Added condition for icon size control in Share Buttons widget<\\/li>\\n<\\/ul>\\n<h4>1.5.6 - 2017-07-12<\\/h4>\\n<ul>\\n<li>Fix: Query Control correction for taxonomies (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1963\\\">#1963<\\/a>)<\\/li>\\n<li>Fix: Custom CSS override scheme color in the editor<\\/li>\\n<li>Fix: Added order by Menu Order for Query Control in WC widget<\\/li>\\n<li>Fix: Glitch with Flip Box background overlay<\\/li>\\n<\\/ul>\\n<h4>1.5.5 - 2017-07-03<\\/h4>\\n<ul>\\n<li>Tweak: Moved reCAPTCHA render to handler &amp; load only if a form is exist<\\/li>\\n<li>Fix: MailChimp integration: Default number of items returned by API increased to 999<\\/li>\\n<li>Fix: MailChimp integration: Refresh the groups list if API is changed<\\/li>\\n<li>Fix: Sorted items in filter bar by A-Z<\\/li>\\n<li>Fix: Editor glitch with Elementor v1.5 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1927\\\">#1927<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.5.4 - 2017-06-22<\\/h4>\\n<ul>\\n<li>Tweak: Improved compatibility for Elementor v1.5<\\/li>\\n<li>Fix: URL default for Add To Cart widget<\\/li>\\n<li>Fix: Allowed <code>date<\\/code> and <code>birthday<\\/code> fields as text for MailChimp integration<\\/li>\\n<\\/ul>\\n<h4>1.5.3 - 2017-06-19<\\/h4>\\n<ul>\\n<li>Tweak: Make flip-box height responsive control<\\/li>\\n<li>Fix: Facebook share count now gets retrieved by Elementor (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1829\\\">#1829<\\/a>)<\\/li>\\n<li>Fix: Global form widget with MailChimp integration not saving<\\/li>\\n<\\/ul>\\n<h4>1.5.2 - 2017-06-13<\\/h4>\\n<ul>\\n<li>Fix: Custom CSS panel location compatibility for the old versions<\\/li>\\n<\\/ul>\\n<h4>1.5.1 - 2017-06-12<\\/h4>\\n<ul>\\n<li>Fix: MailChimp update existing user registration<\\/li>\\n<li>Fix: Global widget with JS in the editor mode<\\/li>\\n<li>Fix: Label section condition in Login widget<\\/li>\\n<li>Fix: Changes to unlinked global widget do not appear in the editor<\\/li>\\n<\\/ul>\\n<h4>1.5.0 - 2017-05-23<\\/h4>\\n<ul>\\n<li>New: Added Cards, a new skin for Posts widget<\\/li>\\n<li>New: Added Exclude option to post query control group<\\/li>\\n<li>Tweak: Added <code>post_class()<\\/code> for each post in the loop<\\/li>\\n<li>Tweak: Added <code>.elementor-posts-masonry<\\/code> class when Masonry layout is enabled<\\/li>\\n<li>Tweak: Added compatibility for the next release of Elementor v1.5.0<\\/li>\\n<li>Tweak: CSS <code>autoprefixer<\\/code> now supports last 5 versions of browsers<\\/li>\\n<li>Tweak: Added <code>imageLoaded<\\/code> library for Posts &amp; Portfolio widgets<\\/li>\\n<\\/ul>\\n<h4>1.4.4 - 2017-05-18<\\/h4>\\n<ul>\\n<li>Fix: Force Mailchimp API to return all lists and not just 10 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1683\\\">#1683<\\/a>)<\\/li>\\n<li>Fix: Added <code>.elementor-form<\\/code> class to Login form to fix style glitch<\\/li>\\n<\\/ul>\\n<h4>1.4.3 - 2017-05-14<\\/h4>\\n<ul>\\n<li>Tweak: Added Redirect After Login option to Login widget<\\/li>\\n<li>Tweak: Stay in the current page after logout in Login widget<\\/li>\\n<li>Tweak: Preparation for Elementor settings tabs in future version<\\/li>\\n<li>Fix: Pinterest in Share Buttons widget now sharing the URL alone<\\/li>\\n<li>Fix: Bug with <code>active<\\/code> class in portfolio filter item<\\/li>\\n<li>Fix: Higher specific list-style-type <code>none<\\/code> for filter items to override some theme style<\\/li>\\n<\\/ul>\\n<h4>1.4.2 - 2017-05-06<\\/h4>\\n<ul>\\n<li>Fix: Temporary patch for form field shortcode in some servers<\\/li>\\n<\\/ul>\\n<h4>1.4.1 - 2017-05-03<\\/h4>\\n<ul>\\n<li>Fix: Bug with custom success message in form widget<\\/li>\\n<li>Fix: Bug with meta data in email action<\\/li>\\n<\\/ul>\\n<h4>1.4.0 - 2017-05-03<\\/h4>\\n<ul>\\n<li>New: Forms: integration with MailChimp<\\/li>\\n<li>New: Forms: integration with MailPoet<\\/li>\\n<li>New: Forms: Added Email 2 action for email confirmation<\\/li>\\n<li>New: Forms: Added shortcodes for fields<\\/li>\\n<li>New: Forms: Added custom ID for fields<\\/li>\\n<li>New: Forms: Added option to edit email HTML template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1180\\\">#1180<\\/a>)<\\/li>\\n<li>New: Added Login widget<\\/li>\\n<li>Tweak: Move <code>send_html<\\/code> control to <code>email_content_type<\\/code><\\/li>\\n<li>Fix: Email still sent even if validation failed in form widget<\\/li>\\n<\\/ul>\\n<h4>1.3.2 - 2017-05-01<\\/h4>\\n<ul>\\n<li>New: Added action <code>elementor_pro\\/init<\\/code> for better integration with Elementor Pro<\\/li>\\n<li>Fix: Posts without featured image in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1234\\\">#1234<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1382\\\">#1382<\\/a>)<\\/li>\\n<li>Fix: reCAPTCHA &amp; Honeypot fields with new method<\\/li>\\n<li>Fix: Added border width control in Share Buttons to avoid a glitch on Chrome browser<\\/li>\\n<li>Fix: Border radius glitch on hover in Share Buttons<\\/li>\\n<\\/ul>\\n<h4>1.3.1 - 2017-04-25<\\/h4>\\n<ul>\\n<li>Fix: Conflict update with revision history module<\\/li>\\n<\\/ul>\\n<h4>1.3.0 - 2017-04-25<\\/h4>\\n<ul>\\n<li>New: Added Share Buttons widget (<a href=\\\"https:\\/\\/wordpress.org\\/support\\/topic\\/social-sharing-buttons-is-it-possible\\/\\\">Topic<\\/a>)<\\/li>\\n<li>New: Added Custom CSS for Page Settings<\\/li>\\n<li>New: Added Masonry layout for Portfolio widget<\\/li>\\n<li>New: Added Cc &amp; Bcc options to email action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1181\\\">#1181<\\/a>)<\\/li>\\n<li>New: Introduced <code>ElementorProModulesFormsClassesAction_Base<\\/code> class for better 3rd party integration for forms<\\/li>\\n<li>Tweak: Debugger module now also shows errors from Pro<\\/li>\\n<li>Tweak: Added options for Elementor Library<\\/li>\\n<li>Tweak: New base posts module for optimized performance<\\/li>\\n<li>Tweak: Adjusting Posts \\/ Portfolio to the new structure<\\/li>\\n<li>Fix: Export for posts \\/ portfolio<\\/li>\\n<li>Fix: Duplicate repeater field with switcher control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1442\\\">#1442<\\/a>)<\\/li>\\n<li>Fix: Post per Page in the query control<\\/li>\\n<li>Fix: Metadata does not come through on form emails (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1566\\\">#1566<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.2.6 - 2017-04-19<\\/h4>\\n<ul>\\n<li>Fix: Added compatibility with WooCommerce 3.0 - Products &amp; Add to Cart widgets<\\/li>\\n<\\/ul>\\n<h4>1.2.5 - 2017-04-18<\\/h4>\\n<ul>\\n<li>Fix: Offset query for posts widgets (Posts, Portfolio and Products)<\\/li>\\n<\\/ul>\\n<h4>1.2.4 - 2017-03-21<\\/h4>\\n<ul>\\n<li>Tweak: Added Indian Rupee sign to Price Table widget<\\/li>\\n<li>Fix: Portfolio grid for IE11<\\/li>\\n<li>Fix: Link target blank in Price List widget<\\/li>\\n<li>Fix: Active item for filter bar in Portfolio widget<\\/li>\\n<\\/ul>\\n<h4>1.2.3 - 2017-03-06<\\/h4>\\n<ul>\\n<li>Tweak: Fully compatible with Elementor v1.3.0<\\/li>\\n<li>Tweak: Added trigger for after form submission in Forms widget<\\/li>\\n<li>Tweak: Changed handle name in reCAPTCHA field to avoid conflict with other contact forms<\\/li>\\n<li>Fix: Portfolio filter syntax in Non-Latin languages<\\/li>\\n<li>Fix: Added <code>no-repeat<\\/code> property for slide with <code>background-size:contain<\\/code><\\/li>\\n<li>Fix: Condition control &amp; Import value in Posts widgets<\\/li>\\n<li>Fix: Offset and Pagination in WordPress (<a href=\\\"https:\\/\\/codex.wordpress.org\\/Making_Custom_Queries_using_Offset_and_Pagination\\\">More Info<\\/a>)<\\/li>\\n<li>Fix: Submit handler bubbling for custom events in Forms widget<\\/li>\\n<\\/ul>\\n<h4>1.2.2 - 2017-02-23<\\/h4>\\n<ul>\\n<li>Tweak: Change name from Side A\\/B to Front and Back in Flip Box widget<\\/li>\\n<li>Fix: Error when saving third party widgets in the global widget<\\/li>\\n<li>Fix: Image position &quot;none&quot; remains visible in editor preview (Posts)<\\/li>\\n<li>Fix: Hide the pagination when there are no links<\\/li>\\n<\\/ul>\\n<h4>1.2.1 - 2017-02-21<\\/h4>\\n<ul>\\n<li>Fix: Firefox Flip Box 3D compatibility<\\/li>\\n<\\/ul>\\n<h4>1.2.0 - 2017-02-21<\\/h4>\\n<ul>\\n<li>New: Added Flip Box widget<\\/li>\\n<li>New: Added Ken Burns effect for slides<\\/li>\\n<li>New: Added Masonry layout for Posts widget<\\/li>\\n<li>New: Added Pagination option for Posts widget<\\/li>\\n<li>Tweak: Added background size contain to slides<\\/li>\\n<li>Tweak: Improve Query control by preload items<\\/li>\\n<li>Fix: Text color for Checkbox and Radio fields<\\/li>\\n<\\/ul>\\n<h4>1.1.2 - 2017-02-05<\\/h4>\\n<ul>\\n<li>Tweak: Added <code>aria-required<\\/code> for better accessibility in forms widget<\\/li>\\n<li>Fix: Conflict Call to <code>undefined<\\/code> method in Posts &amp; Portfolio widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1271\\\">#1271<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1266\\\">#1266<\\/a>)<\\/li>\\n<li>Fix: Submit button HTML after error sending<\\/li>\\n<li>Fix: Success message for <code>skip_email<\\/code> function<\\/li>\\n<li>Notice: Elementor 1.2.0 or later now required<\\/li>\\n<\\/ul>\\n<h4>1.1.1 - 2017-01-24<\\/h4>\\n<ul>\\n<li>Fix: Can\'t save global widgets when <code>WP_DEBUG<\\/code> is <code>true<\\/code><\\/li>\\n<li>Fix: Undefined variable in WC widgets<\\/li>\\n<li>Fix: Removed duplicate strings<\\/li>\\n<\\/ul>\\n<h4>1.1.0 - 2017-01-24<\\/h4>\\n<ul>\\n<li>New: Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/102\\\">#102<\\/a>)<\\/li>\\n<li>New: WooCommerce Add to Cart widget<\\/li>\\n<li>New: WooCommerce Categories widget<\\/li>\\n<li>New: WooCommerce Elements widget<\\/li>\\n<li>New: Honeypot field for Forms widgets<\\/li>\\n<li>Tweak: Added inline options for taxonomies &amp; authors if is less than 15 items<\\/li>\\n<li>Tweak: Added Required Mark for fields in Forms widget<\\/li>\\n<li>Fix: CSS selectors priority in Slides widget<\\/li>\\n<li>Fix: CSS bug in Price List widget<\\/li>\\n<li>Fix: Update all Post CSS files that includes specific Global Widget<\\/li>\\n<\\/ul>\\n<h4>1.0.9 - 2017-01-18<\\/h4>\\n<ul>\\n<li>Fix: Auto complete bug in query controls<\\/li>\\n<li>Fix: Render template with escaping slashes<\\/li>\\n<li>Fix: Reply-to field in Forms widget<\\/li>\\n<\\/ul>\\n<h4>1.0.8 - 2017-01-11<\\/h4>\\n<ul>\\n<li>Tweak: Code adjustments for Elementor API<\\/li>\\n<li>Fix: Removed go pro link from plugins page in admin<\\/li>\\n<\\/ul>\\n<h4>1.0.7 - 2017-01-05<\\/h4>\\n<ul>\\n<li>Tweak: Added filter by featured \\/ sale for WC Products widget<\\/li>\\n<li>Tweak: Added author control in Portfolio widget<\\/li>\\n<li>Tweak: Code adjustments for Elementor API<\\/li>\\n<li>Fix: Added support for empty image ratio<\\/li>\\n<li>Fix: Avoid nesting a sidebar within a template that will appear in the sidebar itself<\\/li>\\n<\\/ul>\\n<h4>1.0.6 - 2017-01-01<\\/h4>\\n<ul>\\n<li>Tweak: Added Auto-updates for local translation files<\\/li>\\n<li>Fix: Custom CSS for Global widgets<\\/li>\\n<li>Fix: Remove <code>nonce<\\/code> field (Fix some cache plugins)<\\/li>\\n<\\/ul>\\n<h4>1.0.5 - 2016-12-27<\\/h4>\\n<ul>\\n<li>Fix: Slide element bug fix - \'Link apply on\' logic<\\/li>\\n<li>Fix: Removed unique wrapper for Custom CSS in order to allow media queries (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1086\\\">#1086<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.0.4 - 2016-12-21<\\/h4>\\n<ul>\\n<li>Tweak: Mobile Editing for fields in the form widget<\\/li>\\n<li>Tweak: Mobile Editing for posts<\\/li>\\n<li>Tweak: Allow send form as HTML<\\/li>\\n<li>Tweak: Improved auto upgrades for Multisite installation<\\/li>\\n<li>Tweak: Improve editor rendering experience for Portfolio widget<\\/li>\\n<li>Fix: Posts widget check if image exist<\\/li>\\n<li>Fix: Changed the clone method for global widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1042\\\">#1042<\\/a>)<\\/li>\\n<li>Fix: Bug slides in RTL (removed direction control)<\\/li>\\n<li>Fix: Slides with no height jumps when changing slides<\\/li>\\n<\\/ul>\\n<h4>1.0.3 - 2016-12-13<\\/h4>\\n<ul>\\n<li>Fix: Added escape placeholder for HTML Entities in form widget<\\/li>\\n<li>Fix: Countdown widget RTL bug<\\/li>\\n<li>Fix: Remove redundant #elementor selector for control style<\\/li>\\n<li>Fix: Added prefixing with \'0\' for one digit number in Countdown widget<\\/li>\\n<\\/ul>\\n<h4>1.0.2 - 2016-12-12<\\/h4>\\n<ul>\\n<li>Fix: Page layout collapses when inserting reCAPTCHA field in Form<\\/li>\\n<\\/ul>\\n<h4>1.0.1 - 2016-12-12<\\/h4>\\n<ul>\\n<li>Fix: WordPress widgets disappear from Editor when Elementor Pro active<\\/li>\\n<\\/ul>\\n<h4>1.0.0 - 2016-12-12<\\/h4>\\n<ul>\\n<li>Initial release<\\/li>\\n<\\/ul>\\\";}\",\"new_version\":\"4.1.0\",\"name\":\"Elementor Pro\",\"slug\":\"elementor-pro\",\"url\":\"https:\\/\\/elementor.com\\/pro\\/changelog\\/\",\"homepage\":\"https:\\/\\/elementor.com\\/pro\\/\",\"requires\":\"5.0\",\"tested\":\"7.0\",\"elementor_requires\":\"3.0.1\",\"package\":\"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/package_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiZXAtdWdMdTFycDNCQ25rY1VNRGRhVUIxNzAxMTA0NjUwRWdENFc3dWVmdDZpIiwidXJsIjoiaHR0cHM6Ly9tcmFyaWYubWUvY3Bub3JkaWMiLCJkb3dubG9hZF9iZXRhIjpmYWxzZSwiZmlsZV9rZXkiOiIxIiwiaWF0IjoxNzc5ODYwMzMwLCJleHAiOjE3Nzk5NDY3MzB9.ApYn71ZM6VgCXy-bZfamHxkxrSGX3dW08nRiP6iQJKM\\/package_download\",\"download_link\":\"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/package_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiZXAtdWdMdTFycDNCQ25rY1VNRGRhVUIxNzAxMTA0NjUwRWdENFc3dWVmdDZpIiwidXJsIjoiaHR0cHM6Ly9tcmFyaWYubWUvY3Bub3JkaWMiLCJkb3dubG9hZF9iZXRhIjpmYWxzZSwiZmlsZV9rZXkiOiIxIiwiaWF0IjoxNzc5ODYwMzMwLCJleHAiOjE3Nzk5NDY3MzB9.ApYn71ZM6VgCXy-bZfamHxkxrSGX3dW08nRiP6iQJKM\\/package_download\",\"banners\":{\"2x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-1544x500.png?rev=1475479\",\"1x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-772x250.png?rev=1475479\"},\"icons\":{\"svg\":\"https:\\/\\/assets.elementor.com\\/miscellaneous\\/v1\\/images\\/icon.svg\"},\"canary_deployment\":{\"plugin_info\":{\"new_version\":\"3.7.0\",\"name\":\"Elementor Pro\",\"slug\":\"elementor-pro\",\"url\":\"https:\\/\\/elementor.com\\/pro\\/changelog\\/\",\"homepage\":\"https:\\/\\/elementor.com\\/pro\\/\",\"requires\":\"5.0\",\"tested\":\"7.0\",\"elementor_requires\":\"3.0.1\",\"package\":\"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/previous_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiZXAtdWdMdTFycDNCQ25rY1VNRGRhVUIxNzAxMTA0NjUwRWdENFc3dWVmdDZpIiwidmVyc2lvbiI6IjMuNy4wIiwidXJsIjoiaHR0cHM6Ly9tcmFyaWYubWUvY3Bub3JkaWMiLCJpYXQiOjE3Nzk4NjAzMzAsImV4cCI6MTc3OTk0NjczMH0.bpjqxntrvATKjM-hgctin40iMyVTaTASz2F9VX_qMPo\\/previous_download\",\"download_link\":\"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/previous_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiZXAtdWdMdTFycDNCQ25rY1VNRGRhVUIxNzAxMTA0NjUwRWdENFc3dWVmdDZpIiwidmVyc2lvbiI6IjMuNy4wIiwidXJsIjoiaHR0cHM6Ly9tcmFyaWYubWUvY3Bub3JkaWMiLCJpYXQiOjE3Nzk4NjAzMzAsImV4cCI6MTc3OTk0NjczMH0.bpjqxntrvATKjM-hgctin40iMyVTaTASz2F9VX_qMPo\\/previous_download\",\"banners\":{\"2x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-1544x500.png?rev=1475479\",\"1x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-772x250.png?rev=1475479\"},\"icons\":{\"svg\":\"https:\\/\\/assets.elementor.com\\/miscellaneous\\/v1\\/images\\/icon.svg\"}},\"conditions\":[[{\"type\":\"language\",\"languages\":[\"he_IL\",\"nl_NL\",\"en_GB\",\"en_NZ\",\"en_ZA\",\"en_AU\",\"en_CA\",\"sv_SE\",\"da_DK\",\"fr_FR\",\"nl_NL\",\"nb_NO\",\"de_AT\",\"fi\",\"it_IT\",\"nn_NO\",\"de_CH\",\"en_GB\",\"is_IS\",\"ga\",\"fr_BE\",\"nl_BE\",\"ast\",\"lb_LU\",\"es_ES\",\"pt_PT\",\"mlt\"],\"operator\":\"in\"}]]},\"cloud\":false}\";}', 'off');

-- --------------------------------------------------------

--
-- Table structure for table `wpcn_postmeta`
--

CREATE TABLE `wpcn_postmeta` (
  `meta_id` bigint(20) UNSIGNED NOT NULL,
  `post_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `wpcn_postmeta`
--

INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(325, 10, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#111111\",\"background_overlay_color_b\":\"#000A66A3\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23428e4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Byggeri \\u2013 T\\u00f8mrerarbejde og tagd\\u00e6kning\",\"header_size\":\"h4\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"pp_display_conditions\":[{\"_id\":\"b159f8d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/kontakt\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"flex_direction_tablet\":\"column-reverse\",\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS is run by two skilled craftsmen who completed their apprenticeships together in 2022. We are both 25 years old and share a strong passion for quality craftsmanship and long-lasting solutions.<\\/p><p>We originally come from East Funen but are now based in Central Funen, from where we carry out work for both private and commercial clients. Our work ranges from carpentry and roofing to installation and specialized tasks, and we approach every project with professionalism, honesty, and attention to detail.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/om-os\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/tomrerarbejde\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\",\"flex_direction_tablet\":\"column\",\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\",\"id\":57,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"18631d2\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/tagdaekning\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}],\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle ANMELDELSER\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"HVORFOR V\\u00c6LGE CP NORDIC ApS?\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79206f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>N\\u00e5r du v\\u00e6lger CP NORDIC ApS, f\\u00e5r du:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"44023b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/teamwork_4546121.svg\",\"id\":472},\"library\":\"svg\"},\"title_text\":\"et ungt og engageret team\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/effective_1401921.svg\",\"id\":474},\"library\":\"svg\"},\"title_text\":\"fokus p\\u00e5 kvalitet og detaljer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/communication_18765280.svg\",\"id\":479},\"library\":\"svg\"},\"title_text\":\"\\u00e6rlig<br> r\\u00e5dgivning\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/brainstorming_11663441.svg\",\"id\":480},\"library\":\"svg\"},\"title_text\":\"gennemt\\u00e6nkte l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c0f2190\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"327bd23\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/like_3941426.svg\",\"id\":481},\"library\":\"svg\"},\"title_text\":\"arbejde udf\\u00f8rt med ansvar\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2bc9769\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi lover ikke mere, end vi kan holde \\u2013 men vi holder det, vi lover.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2a1d8fc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6323910b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor8\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/wood-background-1-e1738912619419.jpg\",\"id\":510,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]}},\"elements\":[{\"id\":\"640d38eb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"75253fe5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"641310a\",\"elType\":\"widget\",\"settings\":{\"title\":\"KONTAKT OS\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee94578\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fea00\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68d73b3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14202595\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Navn\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"tel\",\"field_label\":\"Telefon\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\"},{\"field_type\":\"select\",\"field_label\":\"Tjenesters navn\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Beskeder\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor4\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_background_color\":\"#383838CC\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Roboto\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"field_typography_font_weight\":\"400\",\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(22, 10, 'ast-featured-img', 'disabled'),
(18, 10, 'site-sidebar-layout', 'no-sidebar'),
(19, 10, 'ast-site-content-layout', 'full-width-container'),
(20, 10, 'site-content-style', 'default'),
(21, 10, 'site-sidebar-style', 'default'),
(23, 10, 'astra-migrate-meta-layouts', 'set'),
(15, 10, '_edit_last', '1'),
(24, 10, 'ast-breadcrumbs-content', 'disabled'),
(25, 10, 'theme-transparent-header-meta', 'default'),
(26, 10, '_edit_lock', '1771073706:1'),
(27, 12, '_edit_last', '1'),
(34, 12, 'ast-featured-img', 'disabled'),
(30, 12, 'site-sidebar-layout', 'no-sidebar'),
(31, 12, 'ast-site-content-layout', 'full-width-container'),
(32, 12, 'site-content-style', 'default'),
(33, 12, 'site-sidebar-style', 'default'),
(35, 12, 'astra-migrate-meta-layouts', 'set'),
(36, 12, 'ast-breadcrumbs-content', 'disabled'),
(37, 12, 'theme-transparent-header-meta', 'default'),
(38, 12, '_edit_lock', '1771067796:1'),
(39, 14, '_edit_last', '1'),
(46, 14, 'ast-featured-img', 'disabled'),
(42, 14, 'site-sidebar-layout', 'no-sidebar'),
(43, 14, 'ast-site-content-layout', 'full-width-container'),
(44, 14, 'site-content-style', 'default'),
(45, 14, 'site-sidebar-style', 'default'),
(47, 14, 'astra-migrate-meta-layouts', 'set'),
(48, 14, 'ast-breadcrumbs-content', 'disabled'),
(49, 14, 'theme-transparent-header-meta', 'default'),
(50, 14, '_edit_lock', '1769438910:1'),
(51, 16, '_edit_last', '1'),
(58, 16, 'ast-featured-img', 'disabled'),
(54, 16, 'site-sidebar-layout', 'no-sidebar'),
(55, 16, 'ast-site-content-layout', 'full-width-container'),
(56, 16, 'site-content-style', 'default'),
(57, 16, 'site-sidebar-style', 'default'),
(59, 16, 'astra-migrate-meta-layouts', 'set'),
(60, 16, 'ast-breadcrumbs-content', 'disabled'),
(61, 16, 'theme-transparent-header-meta', 'default'),
(62, 16, '_edit_lock', '1771070385:1'),
(63, 18, '_edit_last', '1'),
(64, 18, '_edit_lock', '1771071571:1'),
(71, 18, 'ast-featured-img', 'disabled'),
(67, 18, 'site-sidebar-layout', 'no-sidebar'),
(68, 18, 'ast-site-content-layout', 'full-width-container'),
(69, 18, 'site-content-style', 'default'),
(70, 18, 'site-sidebar-style', 'default'),
(72, 18, 'astra-migrate-meta-layouts', 'set'),
(73, 18, 'ast-breadcrumbs-content', 'disabled'),
(74, 18, 'theme-transparent-header-meta', 'default'),
(141, 30, '_elementor_pro_version', '3.34.2'),
(140, 30, '_elementor_version', '3.34.2'),
(139, 30, '_elementor_template_type', 'header'),
(137, 30, '_elementor_source', 'post'),
(138, 30, '_elementor_edit_mode', 'builder'),
(129, 26, '_elementor_edit_mode', 'builder'),
(130, 26, '_elementor_template_type', 'kit'),
(84, 21, '_menu_item_type', 'post_type'),
(85, 21, '_menu_item_menu_item_parent', '0'),
(86, 21, '_menu_item_object_id', '10'),
(87, 21, '_menu_item_object', 'page'),
(88, 21, '_menu_item_target', ''),
(89, 21, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(90, 21, '_menu_item_xfn', ''),
(91, 21, '_menu_item_url', ''),
(144, 30, 'ast-title-bar-display', 'disabled'),
(172, 30, '_elementor_data', '[{\"id\":\"67407e3b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2e8ba73\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f52efb8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"717f375\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"394af17\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"flex_wrap_mobile\":\"nowrap\",\"z_index\":1,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FCFCFC17\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-124\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"\"}},\"elements\":[{\"id\":\"341f8b74\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"33df9dc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7bdec\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"90e6e83\"}],\"pp_display_conditions\":[{\"_id\":\"3e37d22\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"4cc70c2e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":49,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/Transparent-File-02-scaled.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"link_to\":\"custom\",\"space\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"ef1f052\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"7043833\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"space_mobile_extra\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"space_tablet_extra\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"29f8b7e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":80},\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"13efff7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4ba59b9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9a413e\"}],\"pp_display_conditions\":[{\"_id\":\"6633050\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"flex_align_items\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"flex_direction_mobile\":\"row-reverse\",\"flex_justify_content_mobile\":\"flex-start\",\"flex_wrap_mobile\":\"nowrap\"},\"elements\":[{\"id\":\"55ad1095\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"pointer\":\"none\",\"toggle_label\":\"Menu\",\"pp_display_conditions\":[{\"_id\":\"6d90ae3\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"menu_type\":\"off-canvas\",\"toggle_align\":\"right\",\"toggle_background_color\":\"#02010100\",\"toggle_background_color_hover\":\"#02010100\",\"offcanvas_position\":\"right\",\"close_icon_background_color\":\"#02010100\",\"close_icon_background_color_hover\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_weight\":\"500\",\"__globals__\":{\"toggle_color\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_color_hover\":\"globals\\/colors?id=astglobalcolor3\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor5\",\"mobile_sub_link_color\":\"globals\\/colors?id=astglobalcolor5\",\"mobile_sub_link_bg_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor5\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_hover\":\"globals\\/colors?id=astglobalcolor5\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"close_icon_color_hover\":\"globals\\/colors?id=astglobalcolor5\",\"color_menu_item\":\"globals\\/colors?id=astglobalcolor4\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor4\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor4\",\"color_dropdown_item\":\"globals\\/colors?id=astglobalcolor5\",\"background_color_dropdown_item\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor5\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor5\",\"background_color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"dropdown_divider_color\":\"\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"menu_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"color_menu_item_hover\":\"#045cb4\",\"color_menu_item_active\":\"#045cb4\",\"color_dropdown_item\":\"#F0F5FA\",\"background_color_dropdown_item\":\"#046bd2\",\"color_dropdown_item_hover\":\"#F0F5FA\",\"background_color_dropdown_item_hover\":\"#045cb4\",\"color_dropdown_item_active\":\"#F0F5FA\",\"background_color_dropdown_item_active\":\"#045cb4\",\"dropdown_divider_border\":\"solid\",\"dropdown_divider_color\":\"#F0F5FA36\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"toggle_color\":\"#046bd2\",\"toggle_color_hover\":\"#334155\",\"overlay_bg_color\":\"#1e293b\",\"mobile_link_color\":\"#F0F5FA\",\"mobile_sub_link_bg_color\":\"#1e293b\",\"mobile_sub_link_color\":\"#F0F5FA\",\"mobile_link_hover\":\"#F0F5FA\",\"mobile_link_bg_hover\":\"#046bd2\",\"mobile_sub_link_bg_hover\":\"#046bd2\",\"mobile_sub_link_hover\":\"#F0F5FA\",\"close_icon_color\":\"#F0F5FA\",\"close_icon_color_hover\":\"#F0F5FA\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"toggle_size_mobile\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"4027936a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"730407e\",\"pp_condition_date_time_before_value\":\"2024-10-27 14:19\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/kontakt\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"348be72f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f25b0fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8462f23\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f25e330\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"pp_condition_key\":\"page\",\"pp_condition_operator\":\"not\",\"_id\":\"eda4653\",\"pp_condition_page_value\":[\"10\"],\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"\"},\"background_overlay_color\":\"#48aaad\",\"background_overlay_color_b\":\"#1E293B0A\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":179,\"sizes\":[]},\"css_classes\":\"header-breadcrumbs-section\",\"pp_display_conditions_enable\":\"yes\",\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":10,\\\"text\\\":\\\"Hjem\\\"}]}]]\"]},\"elements\":[{\"id\":\"13f6f159\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"page-title\\\" settings=\\\"%7B%22include_context%22%3A%22%22%2C%22show_home_title%22%3A%22%22%2C%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3b30e8f\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"}],\"isInner\":false}]'),
(102, 23, '_menu_item_type', 'post_type'),
(103, 23, '_menu_item_menu_item_parent', '0'),
(104, 23, '_menu_item_object_id', '16'),
(105, 23, '_menu_item_object', 'page'),
(106, 23, '_menu_item_target', ''),
(107, 23, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(108, 23, '_menu_item_xfn', ''),
(109, 23, '_menu_item_url', ''),
(6288, 668, 'ast-featured-img', 'disabled'),
(6287, 668, 'ast-title-bar-display', 'disabled'),
(6307, 668, '_elementor_data', '[{\"id\":\"db67a1d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8002bef\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f0466b5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"22cf5aa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b4c972c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle ANMELDELSER\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5a69c19\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(6285, 668, '_astra_content_layout_flag', 'disabled'),
(6284, 668, '_elementor_edit_mode', 'builder'),
(142, 30, '_astra_content_layout_flag', 'disabled'),
(120, 25, '_menu_item_type', 'post_type'),
(121, 25, '_menu_item_menu_item_parent', '0'),
(122, 25, '_menu_item_object_id', '12'),
(123, 25, '_menu_item_object', 'page'),
(124, 25, '_menu_item_target', ''),
(125, 25, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(126, 25, '_menu_item_xfn', ''),
(127, 25, '_menu_item_url', ''),
(145, 30, 'ast-featured-img', 'disabled'),
(146, 30, 'ast-site-content-layout', 'full-width-container'),
(147, 30, 'site-sidebar-layout', 'no-sidebar'),
(149, 30, '_edit_lock', '1769438450:1'),
(151, 31, '_elementor_edit_mode', 'builder'),
(152, 31, '_elementor_template_type', 'section'),
(153, 31, '_elementor_version', '3.34.0'),
(154, 31, '_elementor_pro_version', '3.17.1'),
(155, 31, '_elementor_page_settings', 'a:0:{}');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(156, 31, '_elementor_data', '[{\"id\":\"28652439\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29f1307\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fa260ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cedb743\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"007c566\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1920281d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_justify_content_tablet_extra\":\"center\",\"flex_align_items\":\"center\",\"flex_wrap_tablet_extra\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f9f92a0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d292bd0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad6ad10\"}],\"pp_display_conditions\":[{\"_id\":\"a7020fb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_widescreen\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2b9e8d4d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"XXX-XXX-XXX\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"f9bb7da\",\"link\":{\"url\":\"tel:XXX-XXX-XXX\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"1ee7ee1\",\"link\":{\"url\":\"mailto:info@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align_tablet_extra\":\"center\",\"icon_color\":\"#fafafa\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#ffffff\",\"pp_display_conditions\":[{\"_id\":\"687bdf5\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"\"},\"icon_color_hover\":\"#E4E4E4\",\"text_color_hover\":\"#E4E4E4\",\"divider\":\"yes\",\"divider_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"69030b8e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-end\",\"flex_justify_content_tablet_extra\":\"center\",\"flex_align_items\":\"center\",\"flex_wrap_tablet_extra\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f9f92a0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d292bd0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad6ad10\"}],\"pp_display_conditions\":[{\"_id\":\"a7020fb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_widescreen\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"57d0d4e7\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"1a75682\",\"link\":{\"url\":\"https:\\/\\/www.facebook.com\\/modernhomecarehh\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"da32d70\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/modernhomecarellc?fbclid=IwZXh0bgNhZW0CMTAAAR2vcF8ghFhyPcka4WAqv2s18S8Bmgs7v24ryKWPZSfs1S7ukdm-Tlgyn2Y_aem_wYugYGBVO_28k3uF4EikcA\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"12fb34f\",\"link\":{\"url\":\"https:\\/\\/www.youtube.com\\/@modernhomecare\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"589cdcb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor5\"},\"icon_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ab3b1c8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2e8ba73\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f52efb8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"717f375\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"394af17\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"flex_wrap_mobile\":\"nowrap\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.03)\"},\"sticky\":\"top\",\"sticky_effects_offset\":50,\"css_classes\":\"header-section\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"69fc79e7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":22},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"33df9dc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7bdec\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"90e6e83\"}],\"pp_display_conditions\":[{\"_id\":\"3e37d22\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1a4500c2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"link_to\":\"custom\",\"space\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"ef1f052\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"7043833\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"space_mobile_extra\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5b0b9416\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":78},\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"13efff7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4ba59b9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9a413e\"}],\"pp_display_conditions\":[{\"_id\":\"6633050\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"flex_align_items\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4fa43899\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"pointer\":\"none\",\"toggle_label\":\"Menu\",\"pp_display_conditions\":[{\"_id\":\"6d90ae3\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"menu_type\":\"off-canvas\",\"toggle_align\":\"right\",\"toggle_background_color\":\"#02010100\",\"toggle_background_color_hover\":\"#02010100\",\"offcanvas_position\":\"right\",\"close_icon_background_color\":\"#02010100\",\"close_icon_background_color_hover\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_weight\":\"500\",\"__globals__\":{\"toggle_color\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_color_hover\":\"globals\\/colors?id=astglobalcolor3\",\"overlay_bg_color\":\"\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor5\",\"mobile_sub_link_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_sub_link_bg_color\":\"\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor5\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_hover\":\"globals\\/colors?id=astglobalcolor5\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"close_icon_color_hover\":\"globals\\/colors?id=astglobalcolor5\",\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item\":\"globals\\/colors?id=astglobalcolor2\",\"background_color_dropdown_item\":\"globals\\/colors?id=astglobalcolor5\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor5\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor5\",\"background_color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"dropdown_divider_color\":\"\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"menu_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"content_width\":\"full\",\"color_menu_item\":\"#434c55\",\"color_menu_item_hover\":\"#13aa65\",\"color_menu_item_active\":\"#13aa65\",\"color_dropdown_item\":\"#434c55\",\"background_color_dropdown_item\":\"#FFFFFF\",\"color_dropdown_item_hover\":\"#FFFFFF\",\"background_color_dropdown_item_hover\":\"rgba(67,76,85,0.83)\",\"color_dropdown_item_active\":\"#FFFFFF\",\"background_color_dropdown_item_active\":\"rgba(67,76,85,0.83)\",\"dropdown_divider_border\":\"solid\",\"dropdown_divider_color\":\"#434C5529\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"toggle_color\":\"#13aa65\",\"toggle_color_hover\":\"#334155\",\"overlay_bg_color\":\"#222933\",\"mobile_link_color\":\"#FFFFFF\",\"mobile_sub_link_bg_color\":\"#1F252C\",\"mobile_sub_link_color\":\"#F0F5FA\",\"mobile_link_hover\":\"#FFFFFF\",\"mobile_link_bg_hover\":\"#13aa65\",\"mobile_sub_link_bg_hover\":\"#13aa65\",\"mobile_sub_link_hover\":\"#FFFFFF\",\"close_icon_color\":\"#FFFFFF\",\"close_icon_color_hover\":\"#FFFFFF\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":9,\"blur\":30,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.11)\"},\"submenu_icon\":{\"value\":\"fas fa-caret-down\",\"library\":\"fa-solid\"},\"toggle_icon\":{\"value\":\"fas fa-bars\",\"library\":\"fa-solid\"},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5bc9c13f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29f1307\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fa260ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cedb743\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"007c566\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1e2983d8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_align_items\":\"center\",\"flex_wrap_tablet_extra\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f9f92a0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d292bd0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad6ad10\"}],\"pp_display_conditions\":[{\"_id\":\"a7020fb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_widescreen\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"boxed_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction_tablet\":\"row\",\"flex_justify_content_tablet\":\"flex-start\",\"flex_align_items_tablet_extra\":\"flex-start\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"108f998f\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"XXX-XXX-XXX\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"f9bb7da\",\"link\":{\"url\":\"tel:XXX-XXX-XXX\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"1ee7ee1\",\"link\":{\"url\":\"mailto:info@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align_tablet_extra\":\"center\",\"icon_color\":\"#fafafa\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#ffffff\",\"pp_display_conditions\":[{\"_id\":\"687bdf5\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"\"},\"icon_color_hover\":\"#E4E4E4\",\"text_color_hover\":\"#E4E4E4\",\"icon_align_tablet\":\"left\",\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"377a20ff\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-end\",\"flex_align_items\":\"center\",\"flex_wrap_tablet_extra\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f9f92a0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d292bd0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad6ad10\"}],\"pp_display_conditions\":[{\"_id\":\"a7020fb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_widescreen\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_align_items_tablet_extra\":\"flex-end\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"32077f17\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"c2b233f\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/cffhealthcare\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-x-twitter\",\"library\":\"fa-brands\"},\"_id\":\"1a3c446\",\"link\":{\"url\":\"https:\\/\\/twitter.com\\/cffhealthcare\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"60a91b8\",\"link\":{\"url\":\"https:\\/\\/www.linkedin.com\\/cffhealthcare?_l=en_US\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"5e2324d\",\"link\":{\"url\":\"https:\\/\\/www.facebook.com\\/cffhealthcare\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"}],\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.4,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"589cdcb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor1\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_elements_tooltip_content\":\"Tooltip Content\",\"shape\":\"circle\",\"content_width\":\"full\",\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5c1cda12\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2e8ba73\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f52efb8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"717f375\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"394af17\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"flex_wrap_mobile\":\"nowrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1e1ffcbb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"33df9dc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7bdec\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"90e6e83\"}],\"pp_display_conditions\":[{\"_id\":\"3e37d22\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"dfb3f4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"link_to\":\"custom\",\"space\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"ef1f052\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"7043833\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"space_mobile_extra\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"space_tablet_extra\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d35c18e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":80},\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"13efff7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4ba59b9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9a413e\"}],\"pp_display_conditions\":[{\"_id\":\"6633050\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"flex_align_items\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"flex_direction_mobile\":\"row-reverse\",\"flex_justify_content_mobile\":\"flex-start\",\"flex_wrap_mobile\":\"nowrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4f386892\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"pointer\":\"none\",\"toggle_label\":\"Menu\",\"pp_display_conditions\":[{\"_id\":\"6d90ae3\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"menu_type\":\"off-canvas\",\"toggle_align\":\"right\",\"toggle_background_color\":\"#02010100\",\"toggle_background_color_hover\":\"#02010100\",\"offcanvas_position\":\"right\",\"close_icon_background_color\":\"#02010100\",\"close_icon_background_color_hover\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_weight\":\"500\",\"__globals__\":{\"toggle_color\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_color_hover\":\"globals\\/colors?id=astglobalcolor3\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor5\",\"mobile_sub_link_color\":\"globals\\/colors?id=astglobalcolor5\",\"mobile_sub_link_bg_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor5\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_hover\":\"globals\\/colors?id=astglobalcolor5\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"close_icon_color_hover\":\"globals\\/colors?id=astglobalcolor5\",\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item\":\"globals\\/colors?id=astglobalcolor5\",\"background_color_dropdown_item\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor5\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor5\",\"background_color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"dropdown_divider_color\":\"\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"menu_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"color_menu_item\":\"#1e293b\",\"color_menu_item_hover\":\"#00bfff\",\"color_menu_item_active\":\"#00bfff\",\"color_dropdown_item\":\"#FFFFFF\",\"background_color_dropdown_item\":\"#48aaad\",\"color_dropdown_item_hover\":\"#1e293b\",\"background_color_dropdown_item_hover\":\"#00bfff\",\"color_dropdown_item_active\":\"#1e293b\",\"background_color_dropdown_item_active\":\"#00bfff\",\"dropdown_divider_border\":\"solid\",\"dropdown_divider_color\":\"#F0F5FA36\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"toggle_color\":\"#48aaad\",\"toggle_color_hover\":\"#334155\",\"overlay_bg_color\":\"#1e293b\",\"mobile_link_color\":\"#FFFFFF\",\"mobile_sub_link_bg_color\":\"#1e293b\",\"mobile_sub_link_color\":\"#334155\",\"mobile_link_hover\":\"#FFFFFF\",\"mobile_link_bg_hover\":\"#48aaad\",\"mobile_sub_link_bg_hover\":\"#48aaad\",\"mobile_sub_link_hover\":\"#1e293b\",\"close_icon_color\":\"#FFFFFF\",\"close_icon_color_hover\":\"#FFFFFF\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"toggle_size_mobile\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"submenu_icon\":{\"value\":\"fas fa-caret-down\",\"library\":\"fa-solid\"},\"toggle_icon\":{\"value\":\"fas fa-bars\",\"library\":\"fa-solid\"},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"5c60e78d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"730407e\",\"pp_condition_date_time_before_value\":\"2024-10-27 14:19\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58b242e5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":201,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":164,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f25b0fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8462f23\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f25e330\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"pp_condition_key\":\"page\",\"pp_condition_operator\":\"not\",\"_id\":\"eda4653\",\"pp_condition_page_value\":[\"10\"],\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"\"},\"background_overlay_color\":\"#48aaad\",\"background_overlay_color_b\":\"#1E293B52\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"css_classes\":\"header-breadcrumbs-section\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"185833fe\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"page-title\\\" settings=\\\"%7B%22include_context%22%3A%22%22%2C%22show_home_title%22%3A%22%22%2C%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3b30e8f\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"}],\"isInner\":false},{\"id\":\"70d07bf7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"background_color\":\"#121212\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"flex_direction_tablet\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"56542ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ba59e70\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"65fd471\"}],\"pp_display_conditions\":[{\"_id\":\"890752a\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5fbf0449\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"boxed_width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e0467be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fba2414\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"86eef93\"}],\"pp_display_conditions\":[{\"_id\":\"892bbfe\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"100\",\"bottom\":\"10\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"797ae2a6\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\"},\"pp_display_conditions\":[{\"_id\":\"5313b69\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"large\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"theme-site-logo\"},{\"id\":\"31da507f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Pharmaceutical, Medical Device, and Biotech life sciences consulting firm.<\\/p>\",\"text_color\":\"#E2E2E2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"37d413f\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align_tablet\":\"center\",\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3e67ce1e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"boxed_width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"boxed_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"wrap\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content_tablet\":\"center\",\"flex_align_items_tablet\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9cef852\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3267f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"568580d\"}],\"pp_display_conditions\":[{\"_id\":\"3b43c19\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"125e01c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick Links\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"97f1c92\",\"pp_condition_date_time_before_value\":\"2023-11-08 15:26\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"align_tablet\":\"center\",\"align_mobile_extra\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"_element_width\":\"inherit\",\"typography_typography\":\"custom\",\"title_color\":\"#FFFFFF\",\"pp_elements_tooltip_content\":\"Tooltip Content\",\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1612870e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5dee041\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"fdf1982\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Our Approach\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"459235d\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Industries\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"428ddef\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Practice Areas\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0786040\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Resources\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"45484e0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Free Checklists\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"616a050\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b46ba8d\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Press\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ef98a52\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"db62914\",\"pp_condition_date_time_before_value\":\"2023-11-08 15:26\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"icon_align_tablet\":\"center\",\"icon_align_mobile_extra\":\"center\",\"__globals__\":{\"text_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=accent\"},\"text_color\":\"#E2E2E2\",\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_elements_tooltip_content\":\"Tooltip Content\",\"icon_typography_font_weight\":\"300\",\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6d4e157e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ac9468\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f73d65c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e9fdb2\"}],\"pp_display_conditions\":[{\"_id\":\"6b3e2fa\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"32d4a67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"97f1c92\",\"pp_condition_date_time_before_value\":\"2023-11-08 15:26\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"align_tablet\":\"center\",\"align_mobile_extra\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"_element_width\":\"inherit\",\"title_color\":\"#FFFFFF\",\"pp_elements_tooltip_content\":\"Tooltip Content\",\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e7654f2\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location Here\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"857a7bd\",\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"}},{\"text\":\"Direct:  XXX-XXX-XXX\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:XXX-XXX-XXX\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f722a06\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"db62914\",\"pp_condition_date_time_before_value\":\"2023-11-08 15:26\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align_tablet\":\"center\",\"icon_align_mobile_extra\":\"center\",\"icon_vertical_offset_mobile_extra\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_self_align_mobile_extra\":\"left\",\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"globals\\/colors?id=accent\",\"text_color_hover\":\"globals\\/colors?id=accent\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_vertical_offset_tablet\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"text_color\":\"#E2E2E2\",\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_elements_tooltip_content\":\"Tooltip Content\",\"icon_typography_font_weight\":\"300\",\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7eb4a36c\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"1a3c446\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"60a91b8\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"5e2324d\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"c2b233f\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.6,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fe20157\",\"pp_condition_date_time_before_value\":\"2023-11-15 04:40\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor5\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor5\"},\"align_tablet\":\"center\",\"hover_secondary_color\":\"#b20602\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_elements_tooltip_content\":\"Tooltip Content\",\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"70240c36\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"flex_direction_tablet\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"56542ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ba59e70\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"65fd471\"}],\"pp_display_conditions\":[{\"_id\":\"890752a\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor2\"},\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"50884852\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"boxed_width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"boxed_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"wrap\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content_tablet\":\"center\",\"flex_align_items_tablet\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9cef852\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3267f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"568580d\"}],\"pp_display_conditions\":[{\"_id\":\"3b43c19\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"48ca559e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u00a9 Copyright 2024 all rights reserved\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5dee041\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"db62914\",\"pp_condition_date_time_before_value\":\"2023-11-08 15:26\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"icon_align_tablet\":\"center\",\"icon_align_mobile_extra\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color_hover\":\"\"},\"text_color\":\"#FFFFFF\",\"pp_elements_tooltip_content\":\"Tooltip Content\",\"icon_typography_font_weight\":\"500\",\"view\":\"inline\",\"icon_align\":\"left\",\"icon_align_mobile\":\"center\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4ca28593\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"boxed_width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"boxed_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"wrap\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content_tablet\":\"center\",\"flex_align_items_tablet\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9cef852\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3267f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"568580d\"}],\"pp_display_conditions\":[{\"_id\":\"3b43c19\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"23161f45\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Statement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5dee041\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Accessibility Statement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"bc3708c\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"db62914\",\"pp_condition_date_time_before_value\":\"2023-11-08 15:26\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"icon_align_tablet\":\"center\",\"icon_align_mobile_extra\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\"},\"text_color\":\"#FFFFFF\",\"pp_elements_tooltip_content\":\"Tooltip Content\",\"icon_typography_font_weight\":\"400\",\"view\":\"inline\",\"icon_align\":\"right\",\"divider\":\"yes\",\"divider_height\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(157, 32, '_elementor_edit_mode', 'builder'),
(158, 32, '_elementor_template_type', 'section'),
(159, 32, '_elementor_version', '3.34.0'),
(160, 32, '_elementor_pro_version', '3.17.1'),
(161, 32, '_elementor_page_settings', 'a:0:{}');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(162, 32, '_elementor_data', '[{\"id\":\"28652439\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29f1307\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fa260ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cedb743\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"007c566\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1920281d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_justify_content_tablet_extra\":\"center\",\"flex_align_items\":\"center\",\"flex_wrap_tablet_extra\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f9f92a0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d292bd0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad6ad10\"}],\"pp_display_conditions\":[{\"_id\":\"a7020fb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_widescreen\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2b9e8d4d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"XXX-XXX-XXX\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"f9bb7da\",\"link\":{\"url\":\"tel:XXX-XXX-XXX\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"1ee7ee1\",\"link\":{\"url\":\"mailto:info@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align_tablet_extra\":\"center\",\"icon_color\":\"#fafafa\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#ffffff\",\"pp_display_conditions\":[{\"_id\":\"687bdf5\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"\"},\"icon_color_hover\":\"#E4E4E4\",\"text_color_hover\":\"#E4E4E4\",\"divider\":\"yes\",\"divider_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"69030b8e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-end\",\"flex_justify_content_tablet_extra\":\"center\",\"flex_align_items\":\"center\",\"flex_wrap_tablet_extra\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f9f92a0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d292bd0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad6ad10\"}],\"pp_display_conditions\":[{\"_id\":\"a7020fb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_widescreen\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"57d0d4e7\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"1a75682\",\"link\":{\"url\":\"https:\\/\\/www.facebook.com\\/modernhomecarehh\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"da32d70\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/modernhomecarellc?fbclid=IwZXh0bgNhZW0CMTAAAR2vcF8ghFhyPcka4WAqv2s18S8Bmgs7v24ryKWPZSfs1S7ukdm-Tlgyn2Y_aem_wYugYGBVO_28k3uF4EikcA\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"12fb34f\",\"link\":{\"url\":\"https:\\/\\/www.youtube.com\\/@modernhomecare\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"589cdcb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor5\"},\"icon_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ab3b1c8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2e8ba73\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f52efb8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"717f375\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"394af17\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"flex_wrap_mobile\":\"nowrap\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.03)\"},\"sticky\":\"top\",\"sticky_effects_offset\":50,\"css_classes\":\"header-section\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"69fc79e7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":22},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"33df9dc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7bdec\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"90e6e83\"}],\"pp_display_conditions\":[{\"_id\":\"3e37d22\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1a4500c2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"link_to\":\"custom\",\"space\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"ef1f052\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"7043833\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"space_mobile_extra\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5b0b9416\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":78},\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"13efff7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4ba59b9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9a413e\"}],\"pp_display_conditions\":[{\"_id\":\"6633050\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"flex_align_items\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4fa43899\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"pointer\":\"none\",\"toggle_label\":\"Menu\",\"pp_display_conditions\":[{\"_id\":\"6d90ae3\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"menu_type\":\"off-canvas\",\"toggle_align\":\"right\",\"toggle_background_color\":\"#02010100\",\"toggle_background_color_hover\":\"#02010100\",\"offcanvas_position\":\"right\",\"close_icon_background_color\":\"#02010100\",\"close_icon_background_color_hover\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_weight\":\"500\",\"__globals__\":{\"toggle_color\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_color_hover\":\"globals\\/colors?id=astglobalcolor3\",\"overlay_bg_color\":\"\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor5\",\"mobile_sub_link_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_sub_link_bg_color\":\"\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor5\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_hover\":\"globals\\/colors?id=astglobalcolor5\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"close_icon_color_hover\":\"globals\\/colors?id=astglobalcolor5\",\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item\":\"globals\\/colors?id=astglobalcolor2\",\"background_color_dropdown_item\":\"globals\\/colors?id=astglobalcolor5\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor5\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor5\",\"background_color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"dropdown_divider_color\":\"\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"menu_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"content_width\":\"full\",\"color_menu_item\":\"#434c55\",\"color_menu_item_hover\":\"#13aa65\",\"color_menu_item_active\":\"#13aa65\",\"color_dropdown_item\":\"#434c55\",\"background_color_dropdown_item\":\"#FFFFFF\",\"color_dropdown_item_hover\":\"#FFFFFF\",\"background_color_dropdown_item_hover\":\"rgba(67,76,85,0.83)\",\"color_dropdown_item_active\":\"#FFFFFF\",\"background_color_dropdown_item_active\":\"rgba(67,76,85,0.83)\",\"dropdown_divider_border\":\"solid\",\"dropdown_divider_color\":\"#434C5529\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"toggle_color\":\"#13aa65\",\"toggle_color_hover\":\"#334155\",\"overlay_bg_color\":\"#222933\",\"mobile_link_color\":\"#FFFFFF\",\"mobile_sub_link_bg_color\":\"#1F252C\",\"mobile_sub_link_color\":\"#F0F5FA\",\"mobile_link_hover\":\"#FFFFFF\",\"mobile_link_bg_hover\":\"#13aa65\",\"mobile_sub_link_bg_hover\":\"#13aa65\",\"mobile_sub_link_hover\":\"#FFFFFF\",\"close_icon_color\":\"#FFFFFF\",\"close_icon_color_hover\":\"#FFFFFF\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":9,\"blur\":30,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.11)\"},\"submenu_icon\":{\"value\":\"fas fa-caret-down\",\"library\":\"fa-solid\"},\"toggle_icon\":{\"value\":\"fas fa-bars\",\"library\":\"fa-solid\"},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5bc9c13f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29f1307\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fa260ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cedb743\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"007c566\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1e2983d8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_align_items\":\"center\",\"flex_wrap_tablet_extra\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f9f92a0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d292bd0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad6ad10\"}],\"pp_display_conditions\":[{\"_id\":\"a7020fb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_widescreen\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"boxed_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction_tablet\":\"row\",\"flex_justify_content_tablet\":\"flex-start\",\"flex_align_items_tablet_extra\":\"flex-start\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"108f998f\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"XXX-XXX-XXX\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"f9bb7da\",\"link\":{\"url\":\"tel:XXX-XXX-XXX\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"1ee7ee1\",\"link\":{\"url\":\"mailto:info@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align_tablet_extra\":\"center\",\"icon_color\":\"#fafafa\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#ffffff\",\"pp_display_conditions\":[{\"_id\":\"687bdf5\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"\"},\"icon_color_hover\":\"#E4E4E4\",\"text_color_hover\":\"#E4E4E4\",\"icon_align_tablet\":\"left\",\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"377a20ff\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-end\",\"flex_align_items\":\"center\",\"flex_wrap_tablet_extra\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f9f92a0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d292bd0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad6ad10\"}],\"pp_display_conditions\":[{\"_id\":\"a7020fb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_widescreen\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_align_items_tablet_extra\":\"flex-end\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"32077f17\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"c2b233f\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/cffhealthcare\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-x-twitter\",\"library\":\"fa-brands\"},\"_id\":\"1a3c446\",\"link\":{\"url\":\"https:\\/\\/twitter.com\\/cffhealthcare\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"60a91b8\",\"link\":{\"url\":\"https:\\/\\/www.linkedin.com\\/cffhealthcare?_l=en_US\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"5e2324d\",\"link\":{\"url\":\"https:\\/\\/www.facebook.com\\/cffhealthcare\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"}],\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.4,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"589cdcb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor1\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_elements_tooltip_content\":\"Tooltip Content\",\"shape\":\"circle\",\"content_width\":\"full\",\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5c1cda12\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2e8ba73\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f52efb8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"717f375\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"394af17\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"flex_wrap_mobile\":\"nowrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1e1ffcbb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"33df9dc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7bdec\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"90e6e83\"}],\"pp_display_conditions\":[{\"_id\":\"3e37d22\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"dfb3f4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"link_to\":\"custom\",\"space\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"ef1f052\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"7043833\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"space_mobile_extra\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"space_tablet_extra\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7d35c18e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":80},\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"13efff7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4ba59b9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9a413e\"}],\"pp_display_conditions\":[{\"_id\":\"6633050\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"flex_align_items\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"flex_direction_mobile\":\"row-reverse\",\"flex_justify_content_mobile\":\"flex-start\",\"flex_wrap_mobile\":\"nowrap\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4f386892\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"pointer\":\"none\",\"toggle_label\":\"Menu\",\"pp_display_conditions\":[{\"_id\":\"6d90ae3\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"menu_type\":\"off-canvas\",\"toggle_align\":\"right\",\"toggle_background_color\":\"#02010100\",\"toggle_background_color_hover\":\"#02010100\",\"offcanvas_position\":\"right\",\"close_icon_background_color\":\"#02010100\",\"close_icon_background_color_hover\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_weight\":\"500\",\"__globals__\":{\"toggle_color\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_color_hover\":\"globals\\/colors?id=astglobalcolor3\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor5\",\"mobile_sub_link_color\":\"globals\\/colors?id=astglobalcolor5\",\"mobile_sub_link_bg_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor5\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_hover\":\"globals\\/colors?id=astglobalcolor5\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"close_icon_color_hover\":\"globals\\/colors?id=astglobalcolor5\",\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item\":\"globals\\/colors?id=astglobalcolor5\",\"background_color_dropdown_item\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor5\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor5\",\"background_color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"dropdown_divider_color\":\"\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"menu_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"color_menu_item\":\"#1e293b\",\"color_menu_item_hover\":\"#00bfff\",\"color_menu_item_active\":\"#00bfff\",\"color_dropdown_item\":\"#FFFFFF\",\"background_color_dropdown_item\":\"#48aaad\",\"color_dropdown_item_hover\":\"#1e293b\",\"background_color_dropdown_item_hover\":\"#00bfff\",\"color_dropdown_item_active\":\"#1e293b\",\"background_color_dropdown_item_active\":\"#00bfff\",\"dropdown_divider_border\":\"solid\",\"dropdown_divider_color\":\"#F0F5FA36\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"toggle_color\":\"#48aaad\",\"toggle_color_hover\":\"#334155\",\"overlay_bg_color\":\"#1e293b\",\"mobile_link_color\":\"#FFFFFF\",\"mobile_sub_link_bg_color\":\"#1e293b\",\"mobile_sub_link_color\":\"#334155\",\"mobile_link_hover\":\"#FFFFFF\",\"mobile_link_bg_hover\":\"#48aaad\",\"mobile_sub_link_bg_hover\":\"#48aaad\",\"mobile_sub_link_hover\":\"#1e293b\",\"close_icon_color\":\"#FFFFFF\",\"close_icon_color_hover\":\"#FFFFFF\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"toggle_size_mobile\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"submenu_icon\":{\"value\":\"fas fa-caret-down\",\"library\":\"fa-solid\"},\"toggle_icon\":{\"value\":\"fas fa-bars\",\"library\":\"fa-solid\"},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"5c60e78d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"730407e\",\"pp_condition_date_time_before_value\":\"2024-10-27 14:19\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"58b242e5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":201,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":164,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f25b0fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8462f23\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f25e330\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"pp_condition_key\":\"page\",\"pp_condition_operator\":\"not\",\"_id\":\"eda4653\",\"pp_condition_page_value\":[\"10\"],\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"\"},\"background_overlay_color\":\"#48aaad\",\"background_overlay_color_b\":\"#1E293B52\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"css_classes\":\"header-breadcrumbs-section\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"185833fe\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"page-title\\\" settings=\\\"%7B%22include_context%22%3A%22%22%2C%22show_home_title%22%3A%22%22%2C%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3b30e8f\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"}],\"isInner\":false},{\"id\":\"70d07bf7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"background_color\":\"#121212\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"flex_direction_tablet\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"56542ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ba59e70\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"65fd471\"}],\"pp_display_conditions\":[{\"_id\":\"890752a\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5fbf0449\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"boxed_width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e0467be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fba2414\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"86eef93\"}],\"pp_display_conditions\":[{\"_id\":\"892bbfe\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"100\",\"bottom\":\"10\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"797ae2a6\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\"},\"pp_display_conditions\":[{\"_id\":\"5313b69\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"large\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"theme-site-logo\"},{\"id\":\"31da507f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Pharmaceutical, Medical Device, and Biotech life sciences consulting firm.<\\/p>\",\"text_color\":\"#E2E2E2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"37d413f\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align_tablet\":\"center\",\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3e67ce1e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"boxed_width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"boxed_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"wrap\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content_tablet\":\"center\",\"flex_align_items_tablet\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9cef852\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3267f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"568580d\"}],\"pp_display_conditions\":[{\"_id\":\"3b43c19\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"125e01c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick Links\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"97f1c92\",\"pp_condition_date_time_before_value\":\"2023-11-08 15:26\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"align_tablet\":\"center\",\"align_mobile_extra\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"_element_width\":\"inherit\",\"typography_typography\":\"custom\",\"title_color\":\"#FFFFFF\",\"pp_elements_tooltip_content\":\"Tooltip Content\",\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1612870e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5dee041\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"fdf1982\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Our Approach\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"459235d\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Industries\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"428ddef\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Practice Areas\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0786040\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Resources\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"45484e0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Free Checklists\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"616a050\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b46ba8d\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Press\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ef98a52\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"db62914\",\"pp_condition_date_time_before_value\":\"2023-11-08 15:26\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"icon_align_tablet\":\"center\",\"icon_align_mobile_extra\":\"center\",\"__globals__\":{\"text_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=accent\"},\"text_color\":\"#E2E2E2\",\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_elements_tooltip_content\":\"Tooltip Content\",\"icon_typography_font_weight\":\"300\",\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6d4e157e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ac9468\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f73d65c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e9fdb2\"}],\"pp_display_conditions\":[{\"_id\":\"6b3e2fa\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"32d4a67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"97f1c92\",\"pp_condition_date_time_before_value\":\"2023-11-08 15:26\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"align_tablet\":\"center\",\"align_mobile_extra\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"_element_width\":\"inherit\",\"title_color\":\"#FFFFFF\",\"pp_elements_tooltip_content\":\"Tooltip Content\",\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e7654f2\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location Here\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"857a7bd\",\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"}},{\"text\":\"Direct:  XXX-XXX-XXX\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:XXX-XXX-XXX\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f722a06\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"db62914\",\"pp_condition_date_time_before_value\":\"2023-11-08 15:26\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align_tablet\":\"center\",\"icon_align_mobile_extra\":\"center\",\"icon_vertical_offset_mobile_extra\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_self_align_mobile_extra\":\"left\",\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"globals\\/colors?id=accent\",\"text_color_hover\":\"globals\\/colors?id=accent\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_vertical_offset_tablet\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"text_color\":\"#E2E2E2\",\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_elements_tooltip_content\":\"Tooltip Content\",\"icon_typography_font_weight\":\"300\",\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7eb4a36c\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"1a3c446\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"60a91b8\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"5e2324d\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"c2b233f\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.6,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fe20157\",\"pp_condition_date_time_before_value\":\"2023-11-15 04:40\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor5\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor5\"},\"align_tablet\":\"center\",\"hover_secondary_color\":\"#b20602\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_elements_tooltip_content\":\"Tooltip Content\",\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"70240c36\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"flex_direction_tablet\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"56542ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ba59e70\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"65fd471\"}],\"pp_display_conditions\":[{\"_id\":\"890752a\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor2\"},\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"50884852\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"boxed_width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"boxed_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"wrap\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content_tablet\":\"center\",\"flex_align_items_tablet\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9cef852\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3267f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"568580d\"}],\"pp_display_conditions\":[{\"_id\":\"3b43c19\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"48ca559e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u00a9 Copyright 2024 all rights reserved\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5dee041\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"db62914\",\"pp_condition_date_time_before_value\":\"2023-11-08 15:26\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"icon_align_tablet\":\"center\",\"icon_align_mobile_extra\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color_hover\":\"\"},\"text_color\":\"#FFFFFF\",\"pp_elements_tooltip_content\":\"Tooltip Content\",\"icon_typography_font_weight\":\"500\",\"view\":\"inline\",\"icon_align\":\"left\",\"icon_align_mobile\":\"center\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4ca28593\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"boxed_width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"boxed_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"wrap\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content_tablet\":\"center\",\"flex_align_items_tablet\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9cef852\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3267f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"568580d\"}],\"pp_display_conditions\":[{\"_id\":\"3b43c19\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"23161f45\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Statement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5dee041\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Accessibility Statement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"bc3708c\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"db62914\",\"pp_condition_date_time_before_value\":\"2023-11-08 15:26\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"icon_align_tablet\":\"center\",\"icon_align_mobile_extra\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\"},\"text_color\":\"#FFFFFF\",\"pp_elements_tooltip_content\":\"Tooltip Content\",\"icon_typography_font_weight\":\"400\",\"view\":\"inline\",\"icon_align\":\"right\",\"divider\":\"yes\",\"divider_height\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(164, 31, '_elementor_controls_usage', 'a:10:{s:9:\"icon-list\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:4;s:9:\"icon_list\";i:6;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:6:{s:13:\"space_between\";i:6;s:7:\"divider\";i:2;s:14:\"divider_height\";i:2;s:17:\"icon_align_tablet\";i:5;s:10:\"icon_align\";i:2;s:17:\"icon_align_mobile\";i:1;}s:18:\"section_icon_style\";a:4:{s:10:\"icon_color\";i:2;s:16:\"icon_color_hover\";i:2;s:24:\"icon_self_vertical_align\";i:1;s:20:\"icon_vertical_offset\";i:1;}s:18:\"section_text_style\";a:5:{s:26:\"icon_typography_typography\";i:6;s:25:\"icon_typography_font_size\";i:6;s:10:\"text_color\";i:6;s:16:\"text_color_hover\";i:2;s:27:\"icon_typography_font_weight\";i:4;}}s:8:\"advanced\";a:2:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:6;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:9:{s:14:\"flex_direction\";i:15;s:20:\"flex_justify_content\";i:9;s:16:\"flex_align_items\";i:8;s:8:\"flex_gap\";i:4;s:13:\"content_width\";i:11;s:5:\"width\";i:8;s:10:\"min_height\";i:1;s:11:\"boxed_width\";i:4;s:9:\"flex_wrap\";i:3;}}s:5:\"style\";a:4:{s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:20;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:6;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:16:\"background_color\";i:1;}s:14:\"section_border\";a:4:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}s:26:\"section_background_overlay\";a:5:{s:29:\"background_overlay_background\";i:1;s:26:\"background_overlay_opacity\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_color_b\";i:1;s:33:\"background_overlay_gradient_angle\";i:1;}}s:8:\"advanced\";a:4:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:20;}s:14:\"section_layout\";a:2:{s:7:\"padding\";i:13;s:11:\"css_classes\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:2;}s:15:\"section_effects\";a:2:{s:6:\"sticky\";i:1;s:21:\"sticky_effects_offset\";i:1;}}}}s:12:\"social-icons\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:4:{s:16:\"social_icon_list\";i:3;s:5:\"shape\";i:2;s:5:\"align\";i:1;s:12:\"align_tablet\";i:1;}}s:5:\"style\";a:2:{s:20:\"section_social_style\";a:5:{s:10:\"icon_color\";i:3;s:9:\"icon_size\";i:3;s:12:\"icon_padding\";i:3;s:12:\"icon_spacing\";i:3;s:13:\"border_radius\";i:3;}s:20:\"section_social_hover\";a:1:{s:21:\"hover_secondary_color\";i:1;}}s:8:\"advanced\";a:3:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:3;}s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:4:{s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:2;}}s:7:\"content\";a:1:{s:13:\"section_image\";a:4:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:7:\"link_to\";i:2;s:4:\"link\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:5:\"align\";i:2;s:5:\"space\";i:2;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:2;}}}}s:16:\"pp-advanced-menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:8;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_layout\";a:4:{s:11:\"align_items\";i:2;s:7:\"pointer\";i:2;s:9:\"menu_type\";i:2;s:12:\"toggle_align\";i:2;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:2;}}s:5:\"style\";a:5:{s:12:\"style_toggle\";a:4:{s:23:\"toggle_background_color\";i:2;s:29:\"toggle_background_color_hover\";i:2;s:12:\"toggle_color\";i:2;s:18:\"toggle_color_hover\";i:2;}s:16:\"style_responsive\";a:13:{s:18:\"offcanvas_position\";i:2;s:27:\"close_icon_background_color\";i:2;s:33:\"close_icon_background_color_hover\";i:2;s:16:\"overlay_bg_color\";i:2;s:17:\"mobile_link_color\";i:2;s:24:\"mobile_sub_link_bg_color\";i:2;s:21:\"mobile_sub_link_color\";i:2;s:17:\"mobile_link_hover\";i:2;s:20:\"mobile_link_bg_hover\";i:2;s:24:\"mobile_sub_link_bg_hover\";i:2;s:21:\"mobile_sub_link_hover\";i:2;s:16:\"close_icon_color\";i:2;s:22:\"close_icon_color_hover\";i:2;}s:16:\"style_typography\";a:8:{s:26:\"menu_typography_typography\";i:2;s:25:\"menu_typography_font_size\";i:2;s:27:\"menu_typography_font_weight\";i:2;s:30:\"dropdown_typography_typography\";i:2;s:31:\"dropdown_typography_font_weight\";i:2;s:30:\"menu_typography_text_transform\";i:2;s:30:\"menu_typography_letter_spacing\";i:2;s:29:\"dropdown_typography_font_size\";i:2;}s:23:\"section_style_main_menu\";a:4:{s:28:\"padding_horizontal_menu_item\";i:2;s:15:\"color_menu_item\";i:2;s:21:\"color_menu_item_hover\";i:2;s:22:\"color_menu_item_active\";i:2;}s:22:\"section_style_dropdown\";a:11:{s:19:\"color_dropdown_item\";i:2;s:30:\"background_color_dropdown_item\";i:2;s:25:\"color_dropdown_item_hover\";i:2;s:36:\"background_color_dropdown_item_hover\";i:2;s:26:\"color_dropdown_item_active\";i:2;s:37:\"background_color_dropdown_item_active\";i:2;s:23:\"dropdown_divider_border\";i:2;s:22:\"dropdown_divider_color\";i:2;s:22:\"dropdown_divider_width\";i:2;s:35:\"dropdown_box_shadow_box_shadow_type\";i:1;s:30:\"dropdown_box_shadow_box_shadow\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:2:{s:4:\"text\";i:1;s:4:\"link\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:12:\"text_padding\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:16:\"theme-page-title\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:4:{s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:15:\"theme-site-logo\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:4:{s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:10:\"image_size\";i:1;s:5:\"image\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:5:\"width\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:2;s:11:\"header_size\";i:2;}}s:8:\"advanced\";a:2:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:2;}s:14:\"_section_style\";a:1:{s:14:\"_element_width\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:2:{s:21:\"typography_typography\";i:1;s:11:\"title_color\";i:2;}}}}}'),
(165, 33, '_elementor_source', 'post'),
(166, 33, '_elementor_edit_mode', 'builder'),
(167, 33, '_elementor_template_type', 'header'),
(168, 33, '_elementor_version', '3.34.0'),
(169, 33, '_elementor_pro_version', '3.17.1'),
(170, 33, '_elementor_page_settings', 'a:0:{}'),
(171, 30, '_wp_page_template', 'default'),
(344, 48, '_elementor_edit_mode', 'builder'),
(345, 48, '_elementor_template_type', 'header'),
(346, 48, '_elementor_version', '3.34.0'),
(347, 48, '_elementor_pro_version', '3.17.1'),
(348, 48, '_wp_page_template', 'default'),
(349, 48, '_elementor_data', '[{\"id\":\"1429e242\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29f1307\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fa260ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cedb743\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"007c566\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5ffd1cde\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_justify_content_tablet_extra\":\"center\",\"flex_align_items\":\"center\",\"flex_wrap_tablet_extra\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f9f92a0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d292bd0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad6ad10\"}],\"pp_display_conditions\":[{\"_id\":\"a7020fb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_widescreen\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6e69ad7a\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"XXX-XXX-XXX\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"f9bb7da\",\"link\":{\"url\":\"tel:XXX-XXX-XXX\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"1ee7ee1\",\"link\":{\"url\":\"mailto:info@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align_tablet_extra\":\"center\",\"icon_color\":\"#fafafa\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#ffffff\",\"pp_display_conditions\":[{\"_id\":\"687bdf5\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"\"},\"icon_color_hover\":\"#E4E4E4\",\"text_color_hover\":\"#E4E4E4\",\"divider\":\"yes\",\"divider_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"3027eeaf\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-end\",\"flex_justify_content_tablet_extra\":\"center\",\"flex_align_items\":\"center\",\"flex_wrap_tablet_extra\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f9f92a0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d292bd0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad6ad10\"}],\"pp_display_conditions\":[{\"_id\":\"a7020fb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_widescreen\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"557e3125\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"1a75682\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"da32d70\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"12fb34f\"}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"589cdcb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor5\"},\"icon_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"67407e3b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2e8ba73\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f52efb8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"717f375\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"394af17\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"flex_wrap_mobile\":\"nowrap\"},\"elements\":[{\"id\":\"341f8b74\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"33df9dc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7bdec\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"90e6e83\"}],\"pp_display_conditions\":[{\"_id\":\"3e37d22\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"4cc70c2e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"link_to\":\"custom\",\"space\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"ef1f052\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"7043833\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"space_mobile_extra\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"space_tablet_extra\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"29f8b7e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":80},\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"13efff7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4ba59b9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9a413e\"}],\"pp_display_conditions\":[{\"_id\":\"6633050\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"flex_align_items\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"flex_direction_mobile\":\"row-reverse\",\"flex_justify_content_mobile\":\"flex-start\",\"flex_wrap_mobile\":\"nowrap\"},\"elements\":[{\"id\":\"55ad1095\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"pointer\":\"none\",\"toggle_label\":\"Menu\",\"pp_display_conditions\":[{\"_id\":\"6d90ae3\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"menu_type\":\"off-canvas\",\"toggle_align\":\"right\",\"toggle_background_color\":\"#02010100\",\"toggle_background_color_hover\":\"#02010100\",\"offcanvas_position\":\"right\",\"close_icon_background_color\":\"#02010100\",\"close_icon_background_color_hover\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_weight\":\"500\",\"__globals__\":{\"toggle_color\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_color_hover\":\"globals\\/colors?id=astglobalcolor3\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor5\",\"mobile_sub_link_color\":\"globals\\/colors?id=astglobalcolor5\",\"mobile_sub_link_bg_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor5\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_hover\":\"globals\\/colors?id=astglobalcolor5\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"close_icon_color_hover\":\"globals\\/colors?id=astglobalcolor5\",\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item\":\"globals\\/colors?id=astglobalcolor5\",\"background_color_dropdown_item\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor5\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor5\",\"background_color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"dropdown_divider_color\":\"\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"menu_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"color_menu_item\":\"#1e293b\",\"color_menu_item_hover\":\"#00bfff\",\"color_menu_item_active\":\"#00bfff\",\"color_dropdown_item\":\"#FFFFFF\",\"background_color_dropdown_item\":\"#48aaad\",\"color_dropdown_item_hover\":\"#1e293b\",\"background_color_dropdown_item_hover\":\"#00bfff\",\"color_dropdown_item_active\":\"#1e293b\",\"background_color_dropdown_item_active\":\"#00bfff\",\"dropdown_divider_border\":\"solid\",\"dropdown_divider_color\":\"#F0F5FA36\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"toggle_color\":\"#48aaad\",\"toggle_color_hover\":\"#334155\",\"overlay_bg_color\":\"#1e293b\",\"mobile_link_color\":\"#FFFFFF\",\"mobile_sub_link_bg_color\":\"#1e293b\",\"mobile_sub_link_color\":\"#334155\",\"mobile_link_hover\":\"#FFFFFF\",\"mobile_link_bg_hover\":\"#48aaad\",\"mobile_sub_link_bg_hover\":\"#48aaad\",\"mobile_sub_link_hover\":\"#1e293b\",\"close_icon_color\":\"#FFFFFF\",\"close_icon_color_hover\":\"#FFFFFF\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"toggle_size_mobile\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"4027936a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"730407e\",\"pp_condition_date_time_before_value\":\"2024-10-27 14:19\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"348be72f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":201,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":164,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f25b0fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8462f23\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f25e330\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"pp_condition_key\":\"page\",\"pp_condition_operator\":\"not\",\"_id\":\"eda4653\",\"pp_condition_page_value\":[\"10\"],\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"\"},\"background_overlay_color\":\"#48aaad\",\"background_overlay_color_b\":\"#1E293B52\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"css_classes\":\"header-breadcrumbs-section\",\"pp_display_conditions_enable\":\"yes\"},\"elements\":[{\"id\":\"13f6f159\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"page-title\\\" settings=\\\"%7B%22include_context%22%3A%22%22%2C%22show_home_title%22%3A%22%22%2C%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3b30e8f\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"}],\"isInner\":false}]'),
(193, 36, '_elementor_source', 'post'),
(194, 36, '_elementor_edit_mode', 'builder'),
(195, 36, '_elementor_template_type', 'header'),
(196, 36, '_elementor_version', '3.34.0'),
(197, 36, '_elementor_pro_version', '3.17.1'),
(198, 36, '_wp_page_template', 'default'),
(199, 36, '_elementor_data', '[{\"id\":\"1429e242\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29f1307\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fa260ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cedb743\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"007c566\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5ffd1cde\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_justify_content_tablet_extra\":\"center\",\"flex_align_items\":\"center\",\"flex_wrap_tablet_extra\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f9f92a0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d292bd0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad6ad10\"}],\"pp_display_conditions\":[{\"_id\":\"a7020fb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_widescreen\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6e69ad7a\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"XXX-XXX-XXX\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"f9bb7da\",\"link\":{\"url\":\"tel:XXX-XXX-XXX\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"1ee7ee1\",\"link\":{\"url\":\"mailto:info@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align_tablet_extra\":\"center\",\"icon_color\":\"#fafafa\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#ffffff\",\"pp_display_conditions\":[{\"_id\":\"687bdf5\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"\"},\"icon_color_hover\":\"#E4E4E4\",\"text_color_hover\":\"#E4E4E4\",\"divider\":\"yes\",\"divider_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"3027eeaf\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-end\",\"flex_justify_content_tablet_extra\":\"center\",\"flex_align_items\":\"center\",\"flex_wrap_tablet_extra\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f9f92a0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d292bd0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad6ad10\"}],\"pp_display_conditions\":[{\"_id\":\"a7020fb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_widescreen\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"557e3125\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"1a75682\",\"link\":{\"url\":\"https:\\/\\/www.facebook.com\\/modernhomecarehh\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"da32d70\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/modernhomecarellc?fbclid=IwZXh0bgNhZW0CMTAAAR2vcF8ghFhyPcka4WAqv2s18S8Bmgs7v24ryKWPZSfs1S7ukdm-Tlgyn2Y_aem_wYugYGBVO_28k3uF4EikcA\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"12fb34f\",\"link\":{\"url\":\"https:\\/\\/www.youtube.com\\/@modernhomecare\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"589cdcb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor5\"},\"icon_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"67407e3b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2e8ba73\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f52efb8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"717f375\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"394af17\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"flex_wrap_mobile\":\"nowrap\"},\"elements\":[{\"id\":\"341f8b74\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"33df9dc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7bdec\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"90e6e83\"}],\"pp_display_conditions\":[{\"_id\":\"3e37d22\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"4cc70c2e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"link_to\":\"custom\",\"space\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"ef1f052\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"7043833\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"space_mobile_extra\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"space_tablet_extra\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"29f8b7e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":80},\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"13efff7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4ba59b9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9a413e\"}],\"pp_display_conditions\":[{\"_id\":\"6633050\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"flex_align_items\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"flex_direction_mobile\":\"row-reverse\",\"flex_justify_content_mobile\":\"flex-start\",\"flex_wrap_mobile\":\"nowrap\"},\"elements\":[{\"id\":\"55ad1095\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"pointer\":\"none\",\"toggle_label\":\"Menu\",\"pp_display_conditions\":[{\"_id\":\"6d90ae3\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"menu_type\":\"off-canvas\",\"toggle_align\":\"right\",\"toggle_background_color\":\"#02010100\",\"toggle_background_color_hover\":\"#02010100\",\"offcanvas_position\":\"right\",\"close_icon_background_color\":\"#02010100\",\"close_icon_background_color_hover\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_weight\":\"500\",\"__globals__\":{\"toggle_color\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_color_hover\":\"globals\\/colors?id=astglobalcolor3\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor5\",\"mobile_sub_link_color\":\"globals\\/colors?id=astglobalcolor5\",\"mobile_sub_link_bg_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor5\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_hover\":\"globals\\/colors?id=astglobalcolor5\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"close_icon_color_hover\":\"globals\\/colors?id=astglobalcolor5\",\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item\":\"globals\\/colors?id=astglobalcolor5\",\"background_color_dropdown_item\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor5\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor5\",\"background_color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"dropdown_divider_color\":\"\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"menu_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"color_menu_item\":\"#1e293b\",\"color_menu_item_hover\":\"#00bfff\",\"color_menu_item_active\":\"#00bfff\",\"color_dropdown_item\":\"#FFFFFF\",\"background_color_dropdown_item\":\"#48aaad\",\"color_dropdown_item_hover\":\"#1e293b\",\"background_color_dropdown_item_hover\":\"#00bfff\",\"color_dropdown_item_active\":\"#1e293b\",\"background_color_dropdown_item_active\":\"#00bfff\",\"dropdown_divider_border\":\"solid\",\"dropdown_divider_color\":\"#F0F5FA36\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"toggle_color\":\"#48aaad\",\"toggle_color_hover\":\"#334155\",\"overlay_bg_color\":\"#1e293b\",\"mobile_link_color\":\"#FFFFFF\",\"mobile_sub_link_bg_color\":\"#1e293b\",\"mobile_sub_link_color\":\"#334155\",\"mobile_link_hover\":\"#FFFFFF\",\"mobile_link_bg_hover\":\"#48aaad\",\"mobile_sub_link_bg_hover\":\"#48aaad\",\"mobile_sub_link_hover\":\"#1e293b\",\"close_icon_color\":\"#FFFFFF\",\"close_icon_color_hover\":\"#FFFFFF\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"toggle_size_mobile\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"4027936a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"730407e\",\"pp_condition_date_time_before_value\":\"2024-10-27 14:19\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"348be72f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":201,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":164,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f25b0fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8462f23\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f25e330\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"pp_condition_key\":\"page\",\"pp_condition_operator\":\"not\",\"_id\":\"eda4653\",\"pp_condition_page_value\":[\"10\"],\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"\"},\"background_overlay_color\":\"#48aaad\",\"background_overlay_color_b\":\"#1E293B52\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"css_classes\":\"header-breadcrumbs-section\"},\"elements\":[{\"id\":\"13f6f159\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"page-title\\\" settings=\\\"%7B%22include_context%22%3A%22%22%2C%22show_home_title%22%3A%22%22%2C%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3b30e8f\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"}],\"isInner\":false}]'),
(241, 38, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(173, 34, '_elementor_source', 'post'),
(174, 34, '_elementor_edit_mode', 'builder'),
(175, 34, '_elementor_template_type', 'header'),
(176, 34, '_elementor_version', '3.34.0'),
(177, 34, '_elementor_pro_version', '3.17.1'),
(178, 34, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(179, 34, '_elementor_data', '[{\"id\":\"1429e242\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29f1307\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fa260ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cedb743\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"007c566\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5ffd1cde\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_justify_content_tablet_extra\":\"center\",\"flex_align_items\":\"center\",\"flex_wrap_tablet_extra\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f9f92a0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d292bd0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad6ad10\"}],\"pp_display_conditions\":[{\"_id\":\"a7020fb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_widescreen\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6e69ad7a\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"XXX-XXX-XXX\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"f9bb7da\",\"link\":{\"url\":\"tel:XXX-XXX-XXX\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"1ee7ee1\",\"link\":{\"url\":\"mailto:info@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align_tablet_extra\":\"center\",\"icon_color\":\"#fafafa\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#ffffff\",\"pp_display_conditions\":[{\"_id\":\"687bdf5\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"\"},\"icon_color_hover\":\"#E4E4E4\",\"text_color_hover\":\"#E4E4E4\",\"divider\":\"yes\",\"divider_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"3027eeaf\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-end\",\"flex_justify_content_tablet_extra\":\"center\",\"flex_align_items\":\"center\",\"flex_wrap_tablet_extra\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f9f92a0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d292bd0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad6ad10\"}],\"pp_display_conditions\":[{\"_id\":\"a7020fb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_widescreen\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"557e3125\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"1a75682\",\"link\":{\"url\":\"https:\\/\\/www.facebook.com\\/modernhomecarehh\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"da32d70\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/modernhomecarellc?fbclid=IwZXh0bgNhZW0CMTAAAR2vcF8ghFhyPcka4WAqv2s18S8Bmgs7v24ryKWPZSfs1S7ukdm-Tlgyn2Y_aem_wYugYGBVO_28k3uF4EikcA\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"12fb34f\",\"link\":{\"url\":\"https:\\/\\/www.youtube.com\\/@modernhomecare\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"589cdcb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor5\"},\"icon_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"63922105\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2e8ba73\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f52efb8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"717f375\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"394af17\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"flex_wrap_mobile\":\"nowrap\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.03)\"},\"sticky\":\"top\",\"sticky_effects_offset\":50,\"css_classes\":\"header-section\"},\"elements\":[{\"id\":\"73014a10\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":22},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"33df9dc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7bdec\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"90e6e83\"}],\"pp_display_conditions\":[{\"_id\":\"3e37d22\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3babac68\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"link_to\":\"custom\",\"space\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"ef1f052\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"7043833\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"space_mobile_extra\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"655230a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":78},\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"13efff7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4ba59b9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9a413e\"}],\"pp_display_conditions\":[{\"_id\":\"6633050\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"flex_align_items\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2c83cf6c\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"pointer\":\"none\",\"toggle_label\":\"Menu\",\"pp_display_conditions\":[{\"_id\":\"6d90ae3\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"menu_type\":\"off-canvas\",\"toggle_align\":\"right\",\"toggle_background_color\":\"#02010100\",\"toggle_background_color_hover\":\"#02010100\",\"offcanvas_position\":\"right\",\"close_icon_background_color\":\"#02010100\",\"close_icon_background_color_hover\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_weight\":\"500\",\"__globals__\":{\"toggle_color\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_color_hover\":\"globals\\/colors?id=astglobalcolor3\",\"overlay_bg_color\":\"\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor5\",\"mobile_sub_link_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_sub_link_bg_color\":\"\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor5\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_hover\":\"globals\\/colors?id=astglobalcolor5\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"close_icon_color_hover\":\"globals\\/colors?id=astglobalcolor5\",\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor0\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item\":\"globals\\/colors?id=astglobalcolor2\",\"background_color_dropdown_item\":\"globals\\/colors?id=astglobalcolor5\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor5\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor5\",\"background_color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"dropdown_divider_color\":\"\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"menu_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"content_width\":\"full\",\"color_menu_item\":\"#434c55\",\"color_menu_item_hover\":\"#13aa65\",\"color_menu_item_active\":\"#13aa65\",\"color_dropdown_item\":\"#434c55\",\"background_color_dropdown_item\":\"#FFFFFF\",\"color_dropdown_item_hover\":\"#FFFFFF\",\"background_color_dropdown_item_hover\":\"rgba(67,76,85,0.83)\",\"color_dropdown_item_active\":\"#FFFFFF\",\"background_color_dropdown_item_active\":\"rgba(67,76,85,0.83)\",\"dropdown_divider_border\":\"solid\",\"dropdown_divider_color\":\"#434C5529\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"toggle_color\":\"#13aa65\",\"toggle_color_hover\":\"#334155\",\"overlay_bg_color\":\"#222933\",\"mobile_link_color\":\"#FFFFFF\",\"mobile_sub_link_bg_color\":\"#1F252C\",\"mobile_sub_link_color\":\"#F0F5FA\",\"mobile_link_hover\":\"#FFFFFF\",\"mobile_link_bg_hover\":\"#13aa65\",\"mobile_sub_link_bg_hover\":\"#13aa65\",\"mobile_sub_link_hover\":\"#FFFFFF\",\"close_icon_color\":\"#FFFFFF\",\"close_icon_color_hover\":\"#FFFFFF\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":9,\"blur\":30,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.11)\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"74cb16bb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29f1307\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fa260ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cedb743\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"007c566\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"14a0d034\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_align_items\":\"center\",\"flex_wrap_tablet_extra\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f9f92a0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d292bd0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad6ad10\"}],\"pp_display_conditions\":[{\"_id\":\"a7020fb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_widescreen\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"boxed_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_direction_tablet\":\"row\",\"flex_justify_content_tablet\":\"flex-start\",\"flex_align_items_tablet_extra\":\"flex-start\"},\"elements\":[{\"id\":\"263ffb02\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"XXX-XXX-XXX\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"f9bb7da\",\"link\":{\"url\":\"tel:XXX-XXX-XXX\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"1ee7ee1\",\"link\":{\"url\":\"mailto:info@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align_tablet_extra\":\"center\",\"icon_color\":\"#fafafa\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#ffffff\",\"pp_display_conditions\":[{\"_id\":\"687bdf5\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"\"},\"icon_color_hover\":\"#E4E4E4\",\"text_color_hover\":\"#E4E4E4\",\"icon_align_tablet\":\"left\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6a139e27\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-end\",\"flex_align_items\":\"center\",\"flex_wrap_tablet_extra\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f9f92a0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d292bd0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad6ad10\"}],\"pp_display_conditions\":[{\"_id\":\"a7020fb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_widescreen\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_align_items_tablet_extra\":\"flex-end\"},\"elements\":[{\"id\":\"2ed30cea\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"c2b233f\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/cffhealthcare\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-x-twitter\",\"library\":\"fa-brands\"},\"_id\":\"1a3c446\",\"link\":{\"url\":\"https:\\/\\/twitter.com\\/cffhealthcare\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"60a91b8\",\"link\":{\"url\":\"https:\\/\\/www.linkedin.com\\/cffhealthcare?_l=en_US\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"5e2324d\",\"link\":{\"url\":\"https:\\/\\/www.facebook.com\\/cffhealthcare\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.4,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"589cdcb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor1\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_elements_tooltip_content\":\"Tooltip Content\",\"shape\":\"circle\",\"content_width\":\"full\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"67407e3b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2e8ba73\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f52efb8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"717f375\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"394af17\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"flex_wrap_mobile\":\"nowrap\"},\"elements\":[{\"id\":\"341f8b74\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"33df9dc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7bdec\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"90e6e83\"}],\"pp_display_conditions\":[{\"_id\":\"3e37d22\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"4cc70c2e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"link_to\":\"custom\",\"space\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"ef1f052\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"7043833\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"space_mobile_extra\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"space_tablet_extra\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"29f8b7e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":80},\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"13efff7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4ba59b9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9a413e\"}],\"pp_display_conditions\":[{\"_id\":\"6633050\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"flex_align_items\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"flex_direction_mobile\":\"row-reverse\",\"flex_justify_content_mobile\":\"flex-start\",\"flex_wrap_mobile\":\"nowrap\"},\"elements\":[{\"id\":\"55ad1095\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"pointer\":\"none\",\"toggle_label\":\"Menu\",\"pp_display_conditions\":[{\"_id\":\"6d90ae3\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"menu_type\":\"off-canvas\",\"toggle_align\":\"right\",\"toggle_background_color\":\"#02010100\",\"toggle_background_color_hover\":\"#02010100\",\"offcanvas_position\":\"right\",\"close_icon_background_color\":\"#02010100\",\"close_icon_background_color_hover\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_weight\":\"500\",\"__globals__\":{\"toggle_color\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_color_hover\":\"globals\\/colors?id=astglobalcolor3\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor5\",\"mobile_sub_link_color\":\"globals\\/colors?id=astglobalcolor5\",\"mobile_sub_link_bg_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor5\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_hover\":\"globals\\/colors?id=astglobalcolor5\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"close_icon_color_hover\":\"globals\\/colors?id=astglobalcolor5\",\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item\":\"globals\\/colors?id=astglobalcolor5\",\"background_color_dropdown_item\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor5\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor5\",\"background_color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"dropdown_divider_color\":\"\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"menu_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"color_menu_item\":\"#1e293b\",\"color_menu_item_hover\":\"#00bfff\",\"color_menu_item_active\":\"#00bfff\",\"color_dropdown_item\":\"#FFFFFF\",\"background_color_dropdown_item\":\"#48aaad\",\"color_dropdown_item_hover\":\"#1e293b\",\"background_color_dropdown_item_hover\":\"#00bfff\",\"color_dropdown_item_active\":\"#1e293b\",\"background_color_dropdown_item_active\":\"#00bfff\",\"dropdown_divider_border\":\"solid\",\"dropdown_divider_color\":\"#F0F5FA36\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"toggle_color\":\"#48aaad\",\"toggle_color_hover\":\"#334155\",\"overlay_bg_color\":\"#1e293b\",\"mobile_link_color\":\"#FFFFFF\",\"mobile_sub_link_bg_color\":\"#1e293b\",\"mobile_sub_link_color\":\"#334155\",\"mobile_link_hover\":\"#FFFFFF\",\"mobile_link_bg_hover\":\"#48aaad\",\"mobile_sub_link_bg_hover\":\"#48aaad\",\"mobile_sub_link_hover\":\"#1e293b\",\"close_icon_color\":\"#FFFFFF\",\"close_icon_color_hover\":\"#FFFFFF\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"toggle_size_mobile\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"4027936a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"730407e\",\"pp_condition_date_time_before_value\":\"2024-10-27 14:19\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"348be72f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":201,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":164,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f25b0fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8462f23\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f25e330\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"pp_condition_key\":\"page\",\"pp_condition_operator\":\"not\",\"_id\":\"eda4653\",\"pp_condition_page_value\":[\"10\"],\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"\"},\"background_overlay_color\":\"#48aaad\",\"background_overlay_color_b\":\"#1E293B52\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"css_classes\":\"header-breadcrumbs-section\"},\"elements\":[{\"id\":\"13f6f159\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"page-title\\\" settings=\\\"%7B%22include_context%22%3A%22%22%2C%22show_home_title%22%3A%22%22%2C%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3b30e8f\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"}],\"isInner\":false},{\"id\":\"48e4889e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"background_color\":\"#121212\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"flex_direction_tablet\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"56542ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ba59e70\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"65fd471\"}],\"pp_display_conditions\":[{\"_id\":\"890752a\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\"}]},\"elements\":[{\"id\":\"5e8f3ef\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"boxed_width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e0467be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fba2414\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"86eef93\"}],\"pp_display_conditions\":[{\"_id\":\"892bbfe\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\"}],\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"100\",\"bottom\":\"10\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"3ccbdd14\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\"},\"pp_display_conditions\":[{\"_id\":\"5313b69\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"large\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"theme-site-logo\"},{\"id\":\"73aa313c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Pharmaceutical, Medical Device, and Biotech life sciences consulting firm.<\\/p>\",\"text_color\":\"#E2E2E2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"37d413f\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"47e082da\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"boxed_width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"boxed_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"wrap\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content_tablet\":\"center\",\"flex_align_items_tablet\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9cef852\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3267f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"568580d\"}],\"pp_display_conditions\":[{\"_id\":\"3b43c19\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\"}]},\"elements\":[{\"id\":\"493d6ae4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick Links\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"97f1c92\",\"pp_condition_date_time_before_value\":\"2023-11-08 15:26\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\"}],\"align_tablet\":\"center\",\"align_mobile_extra\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"_element_width\":\"inherit\",\"typography_typography\":\"custom\",\"title_color\":\"#FFFFFF\",\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38af46e2\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5dee041\"},{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"fdf1982\"},{\"text\":\"Our Approach\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"459235d\"},{\"text\":\"Industries\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"428ddef\"},{\"text\":\"Practice Areas\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0786040\"},{\"text\":\"Resources\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"45484e0\"},{\"text\":\"Free Checklists\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"616a050\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b46ba8d\"},{\"text\":\"Press\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ef98a52\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"db62914\",\"pp_condition_date_time_before_value\":\"2023-11-08 15:26\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\"}],\"icon_align_tablet\":\"center\",\"icon_align_mobile_extra\":\"center\",\"__globals__\":{\"text_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=accent\"},\"text_color\":\"#E2E2E2\",\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_elements_tooltip_content\":\"Tooltip Content\",\"icon_typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"77a89948\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ac9468\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f73d65c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e9fdb2\"}],\"pp_display_conditions\":[{\"_id\":\"6b3e2fa\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\"}]},\"elements\":[{\"id\":\"327ed1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"97f1c92\",\"pp_condition_date_time_before_value\":\"2023-11-08 15:26\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\"}],\"align_tablet\":\"center\",\"align_mobile_extra\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"_element_width\":\"inherit\",\"title_color\":\"#FFFFFF\",\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"457eb06\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location Here\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"857a7bd\",\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"}},{\"text\":\"Direct:  XXX-XXX-XXX\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:XXX-XXX-XXX\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f722a06\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"db62914\",\"pp_condition_date_time_before_value\":\"2023-11-08 15:26\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\"}],\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align_tablet\":\"center\",\"icon_align_mobile_extra\":\"center\",\"icon_vertical_offset_mobile_extra\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_self_align_mobile_extra\":\"left\",\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"globals\\/colors?id=accent\",\"text_color_hover\":\"globals\\/colors?id=accent\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_vertical_offset_tablet\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"text_color\":\"#E2E2E2\",\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_elements_tooltip_content\":\"Tooltip Content\",\"icon_typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"584ef36a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"1a3c446\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"60a91b8\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"5e2324d\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"c2b233f\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.6,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fe20157\",\"pp_condition_date_time_before_value\":\"2023-11-15 04:40\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\"}],\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor5\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor5\"},\"align_tablet\":\"center\",\"hover_secondary_color\":\"#b20602\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"78ffe498\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"flex_direction_tablet\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"56542ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ba59e70\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"65fd471\"}],\"pp_display_conditions\":[{\"_id\":\"890752a\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor2\"},\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"71096617\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"boxed_width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"boxed_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"wrap\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content_tablet\":\"center\",\"flex_align_items_tablet\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9cef852\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3267f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"568580d\"}],\"pp_display_conditions\":[{\"_id\":\"3b43c19\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a401344\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u00a9 Copyright 2024 all rights reserved\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5dee041\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"db62914\",\"pp_condition_date_time_before_value\":\"2023-11-08 15:26\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"icon_align_tablet\":\"center\",\"icon_align_mobile_extra\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color_hover\":\"\"},\"text_color\":\"#FFFFFF\",\"pp_elements_tooltip_content\":\"Tooltip Content\",\"icon_typography_font_weight\":\"500\",\"view\":\"inline\",\"icon_align\":\"left\",\"icon_align_mobile\":\"center\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"e53ca27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"boxed_width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"boxed_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"wrap\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content_tablet\":\"center\",\"flex_align_items_tablet\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9cef852\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3267f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"568580d\"}],\"pp_display_conditions\":[{\"_id\":\"3b43c19\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"16edb369\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Statement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5dee041\"},{\"text\":\"Accessibility Statement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"bc3708c\"}],\"space_between\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"db62914\",\"pp_condition_date_time_before_value\":\"2023-11-08 15:26\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"icon_align_tablet\":\"center\",\"icon_align_mobile_extra\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\"},\"text_color\":\"#FFFFFF\",\"pp_elements_tooltip_content\":\"Tooltip Content\",\"icon_typography_font_weight\":\"400\",\"view\":\"inline\",\"icon_align\":\"right\",\"divider\":\"yes\",\"divider_height\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(257, 39, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(343, 48, '_elementor_source', 'post'),
(219, 37, '_elementor_source', 'post'),
(220, 37, '_elementor_edit_mode', 'builder'),
(221, 37, '_elementor_template_type', 'header'),
(222, 37, '_elementor_version', '3.34.0'),
(223, 37, '_elementor_pro_version', '3.17.1'),
(224, 37, '_wp_page_template', 'default'),
(225, 37, '_elementor_data', '[{\"id\":\"1429e242\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29f1307\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fa260ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cedb743\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"007c566\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5ffd1cde\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_justify_content_tablet_extra\":\"center\",\"flex_align_items\":\"center\",\"flex_wrap_tablet_extra\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f9f92a0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d292bd0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad6ad10\"}],\"pp_display_conditions\":[{\"_id\":\"a7020fb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_widescreen\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6e69ad7a\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"XXX-XXX-XXX\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"f9bb7da\",\"link\":{\"url\":\"tel:XXX-XXX-XXX\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"1ee7ee1\",\"link\":{\"url\":\"mailto:info@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align_tablet_extra\":\"center\",\"icon_color\":\"#fafafa\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#ffffff\",\"pp_display_conditions\":[{\"_id\":\"687bdf5\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"\"},\"icon_color_hover\":\"#E4E4E4\",\"text_color_hover\":\"#E4E4E4\",\"divider\":\"yes\",\"divider_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"3027eeaf\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-end\",\"flex_justify_content_tablet_extra\":\"center\",\"flex_align_items\":\"center\",\"flex_wrap_tablet_extra\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f9f92a0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d292bd0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad6ad10\"}],\"pp_display_conditions\":[{\"_id\":\"a7020fb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_widescreen\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"557e3125\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"1a75682\",\"link\":{\"url\":\"https:\\/\\/www.facebook.com\\/modernhomecarehh\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"da32d70\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/modernhomecarellc?fbclid=IwZXh0bgNhZW0CMTAAAR2vcF8ghFhyPcka4WAqv2s18S8Bmgs7v24ryKWPZSfs1S7ukdm-Tlgyn2Y_aem_wYugYGBVO_28k3uF4EikcA\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"12fb34f\",\"link\":{\"url\":\"https:\\/\\/www.youtube.com\\/@modernhomecare\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"589cdcb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor5\"},\"icon_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"67407e3b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2e8ba73\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f52efb8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"717f375\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"394af17\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"flex_wrap_mobile\":\"nowrap\"},\"elements\":[{\"id\":\"341f8b74\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"33df9dc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7bdec\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"90e6e83\"}],\"pp_display_conditions\":[{\"_id\":\"3e37d22\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"4cc70c2e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"link_to\":\"custom\",\"space\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"ef1f052\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"7043833\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"space_mobile_extra\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"space_tablet_extra\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"29f8b7e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":80},\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"13efff7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4ba59b9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9a413e\"}],\"pp_display_conditions\":[{\"_id\":\"6633050\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"flex_align_items\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"flex_direction_mobile\":\"row-reverse\",\"flex_justify_content_mobile\":\"flex-start\",\"flex_wrap_mobile\":\"nowrap\"},\"elements\":[{\"id\":\"55ad1095\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"pointer\":\"none\",\"toggle_label\":\"Menu\",\"pp_display_conditions\":[{\"_id\":\"6d90ae3\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"menu_type\":\"off-canvas\",\"toggle_align\":\"right\",\"toggle_background_color\":\"#02010100\",\"toggle_background_color_hover\":\"#02010100\",\"offcanvas_position\":\"right\",\"close_icon_background_color\":\"#02010100\",\"close_icon_background_color_hover\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_weight\":\"500\",\"__globals__\":{\"toggle_color\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_color_hover\":\"globals\\/colors?id=astglobalcolor3\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor5\",\"mobile_sub_link_color\":\"globals\\/colors?id=astglobalcolor5\",\"mobile_sub_link_bg_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor5\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_hover\":\"globals\\/colors?id=astglobalcolor5\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"close_icon_color_hover\":\"globals\\/colors?id=astglobalcolor5\",\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item\":\"globals\\/colors?id=astglobalcolor5\",\"background_color_dropdown_item\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor5\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor5\",\"background_color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"dropdown_divider_color\":\"\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"menu_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"color_menu_item\":\"#1e293b\",\"color_menu_item_hover\":\"#00bfff\",\"color_menu_item_active\":\"#00bfff\",\"color_dropdown_item\":\"#FFFFFF\",\"background_color_dropdown_item\":\"#48aaad\",\"color_dropdown_item_hover\":\"#1e293b\",\"background_color_dropdown_item_hover\":\"#00bfff\",\"color_dropdown_item_active\":\"#1e293b\",\"background_color_dropdown_item_active\":\"#00bfff\",\"dropdown_divider_border\":\"solid\",\"dropdown_divider_color\":\"#F0F5FA36\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"toggle_color\":\"#48aaad\",\"toggle_color_hover\":\"#334155\",\"overlay_bg_color\":\"#1e293b\",\"mobile_link_color\":\"#FFFFFF\",\"mobile_sub_link_bg_color\":\"#1e293b\",\"mobile_sub_link_color\":\"#334155\",\"mobile_link_hover\":\"#FFFFFF\",\"mobile_link_bg_hover\":\"#48aaad\",\"mobile_sub_link_bg_hover\":\"#48aaad\",\"mobile_sub_link_hover\":\"#1e293b\",\"close_icon_color\":\"#FFFFFF\",\"close_icon_color_hover\":\"#FFFFFF\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"toggle_size_mobile\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"4027936a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"730407e\",\"pp_condition_date_time_before_value\":\"2024-10-27 14:19\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"348be72f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":201,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":164,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f25b0fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8462f23\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f25e330\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"pp_condition_key\":\"page\",\"pp_condition_operator\":\"not\",\"_id\":\"eda4653\",\"pp_condition_page_value\":[\"10\"],\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"\"},\"background_overlay_color\":\"#48aaad\",\"background_overlay_color_b\":\"#1E293B52\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"css_classes\":\"header-breadcrumbs-section\",\"pp_display_conditions_enable\":\"yes\"},\"elements\":[{\"id\":\"13f6f159\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"page-title\\\" settings=\\\"%7B%22include_context%22%3A%22%22%2C%22show_home_title%22%3A%22%22%2C%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3b30e8f\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"}],\"isInner\":false}]'),
(226, 37, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(250, 39, '_elementor_source', 'post'),
(234, 38, '_elementor_source', 'post'),
(235, 38, '_elementor_edit_mode', 'builder'),
(236, 38, '_elementor_template_type', 'header'),
(237, 38, '_elementor_version', '3.34.0'),
(238, 38, '_elementor_pro_version', '3.17.1'),
(239, 38, '_wp_page_template', 'default'),
(240, 38, '_elementor_data', '[{\"id\":\"1429e242\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29f1307\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fa260ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cedb743\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"007c566\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5ffd1cde\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_justify_content_tablet_extra\":\"center\",\"flex_align_items\":\"center\",\"flex_wrap_tablet_extra\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f9f92a0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d292bd0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad6ad10\"}],\"pp_display_conditions\":[{\"_id\":\"a7020fb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_widescreen\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6e69ad7a\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"XXX-XXX-XXX\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"f9bb7da\",\"link\":{\"url\":\"tel:XXX-XXX-XXX\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"1ee7ee1\",\"link\":{\"url\":\"mailto:info@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align_tablet_extra\":\"center\",\"icon_color\":\"#fafafa\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#ffffff\",\"pp_display_conditions\":[{\"_id\":\"687bdf5\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"\"},\"icon_color_hover\":\"#E4E4E4\",\"text_color_hover\":\"#E4E4E4\",\"divider\":\"yes\",\"divider_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"3027eeaf\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-end\",\"flex_justify_content_tablet_extra\":\"center\",\"flex_align_items\":\"center\",\"flex_wrap_tablet_extra\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f9f92a0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d292bd0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad6ad10\"}],\"pp_display_conditions\":[{\"_id\":\"a7020fb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_widescreen\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"557e3125\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"1a75682\",\"link\":{\"url\":\"https:\\/\\/www.facebook.com\\/modernhomecarehh\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"da32d70\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/modernhomecarellc?fbclid=IwZXh0bgNhZW0CMTAAAR2vcF8ghFhyPcka4WAqv2s18S8Bmgs7v24ryKWPZSfs1S7ukdm-Tlgyn2Y_aem_wYugYGBVO_28k3uF4EikcA\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"12fb34f\",\"link\":{\"url\":\"https:\\/\\/www.youtube.com\\/@modernhomecare\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"589cdcb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor5\"},\"icon_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"67407e3b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2e8ba73\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f52efb8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"717f375\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"394af17\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"flex_wrap_mobile\":\"nowrap\"},\"elements\":[{\"id\":\"341f8b74\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"33df9dc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7bdec\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"90e6e83\"}],\"pp_display_conditions\":[{\"_id\":\"3e37d22\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"4cc70c2e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"link_to\":\"custom\",\"space\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"ef1f052\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"7043833\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"space_mobile_extra\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"space_tablet_extra\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"29f8b7e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":80},\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"13efff7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4ba59b9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9a413e\"}],\"pp_display_conditions\":[{\"_id\":\"6633050\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"flex_align_items\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"flex_direction_mobile\":\"row-reverse\",\"flex_justify_content_mobile\":\"flex-start\",\"flex_wrap_mobile\":\"nowrap\"},\"elements\":[{\"id\":\"55ad1095\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"pointer\":\"none\",\"toggle_label\":\"Menu\",\"pp_display_conditions\":[{\"_id\":\"6d90ae3\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"menu_type\":\"off-canvas\",\"toggle_align\":\"right\",\"toggle_background_color\":\"#02010100\",\"toggle_background_color_hover\":\"#02010100\",\"offcanvas_position\":\"right\",\"close_icon_background_color\":\"#02010100\",\"close_icon_background_color_hover\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_weight\":\"500\",\"__globals__\":{\"toggle_color\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_color_hover\":\"globals\\/colors?id=astglobalcolor3\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor5\",\"mobile_sub_link_color\":\"globals\\/colors?id=astglobalcolor5\",\"mobile_sub_link_bg_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor5\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_hover\":\"globals\\/colors?id=astglobalcolor5\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"close_icon_color_hover\":\"globals\\/colors?id=astglobalcolor5\",\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item\":\"globals\\/colors?id=astglobalcolor5\",\"background_color_dropdown_item\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor5\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor5\",\"background_color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"dropdown_divider_color\":\"\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"menu_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"color_menu_item\":\"#1e293b\",\"color_menu_item_hover\":\"#00bfff\",\"color_menu_item_active\":\"#00bfff\",\"color_dropdown_item\":\"#FFFFFF\",\"background_color_dropdown_item\":\"#48aaad\",\"color_dropdown_item_hover\":\"#1e293b\",\"background_color_dropdown_item_hover\":\"#00bfff\",\"color_dropdown_item_active\":\"#1e293b\",\"background_color_dropdown_item_active\":\"#00bfff\",\"dropdown_divider_border\":\"solid\",\"dropdown_divider_color\":\"#F0F5FA36\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"toggle_color\":\"#48aaad\",\"toggle_color_hover\":\"#334155\",\"overlay_bg_color\":\"#1e293b\",\"mobile_link_color\":\"#FFFFFF\",\"mobile_sub_link_bg_color\":\"#1e293b\",\"mobile_sub_link_color\":\"#334155\",\"mobile_link_hover\":\"#FFFFFF\",\"mobile_link_bg_hover\":\"#48aaad\",\"mobile_sub_link_bg_hover\":\"#48aaad\",\"mobile_sub_link_hover\":\"#1e293b\",\"close_icon_color\":\"#FFFFFF\",\"close_icon_color_hover\":\"#FFFFFF\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"toggle_size_mobile\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"4027936a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"730407e\",\"pp_condition_date_time_before_value\":\"2024-10-27 14:19\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"348be72f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":201,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":164,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f25b0fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8462f23\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f25e330\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"pp_condition_key\":\"static_page\",\"pp_condition_operator\":\"not\",\"_id\":\"eda4653\",\"pp_condition_page_value\":[\"10\"],\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\",\"pp_condition_static_page_value\":\"static\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"\"},\"background_overlay_color\":\"#48aaad\",\"background_overlay_color_b\":\"#1E293B52\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"css_classes\":\"header-breadcrumbs-section\",\"pp_display_conditions_enable\":\"yes\"},\"elements\":[{\"id\":\"13f6f159\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"page-title\\\" settings=\\\"%7B%22include_context%22%3A%22%22%2C%22show_home_title%22%3A%22%22%2C%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3b30e8f\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"}],\"isInner\":false}]'),
(251, 39, '_elementor_edit_mode', 'builder'),
(252, 39, '_elementor_template_type', 'header'),
(253, 39, '_elementor_version', '3.34.0'),
(254, 39, '_elementor_pro_version', '3.17.1'),
(255, 39, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(256, 39, '_elementor_data', '[{\"id\":\"1429e242\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29f1307\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fa260ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cedb743\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"007c566\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5ffd1cde\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_justify_content_tablet_extra\":\"center\",\"flex_align_items\":\"center\",\"flex_wrap_tablet_extra\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f9f92a0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d292bd0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad6ad10\"}],\"pp_display_conditions\":[{\"_id\":\"a7020fb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_widescreen\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6e69ad7a\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"XXX-XXX-XXX\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"f9bb7da\",\"link\":{\"url\":\"tel:XXX-XXX-XXX\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"1ee7ee1\",\"link\":{\"url\":\"mailto:info@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align_tablet_extra\":\"center\",\"icon_color\":\"#fafafa\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#ffffff\",\"pp_display_conditions\":[{\"_id\":\"687bdf5\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"\"},\"icon_color_hover\":\"#E4E4E4\",\"text_color_hover\":\"#E4E4E4\",\"divider\":\"yes\",\"divider_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"3027eeaf\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-end\",\"flex_justify_content_tablet_extra\":\"center\",\"flex_align_items\":\"center\",\"flex_wrap_tablet_extra\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f9f92a0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d292bd0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad6ad10\"}],\"pp_display_conditions\":[{\"_id\":\"a7020fb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_widescreen\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"557e3125\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"1a75682\",\"link\":{\"url\":\"https:\\/\\/www.facebook.com\\/modernhomecarehh\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"da32d70\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/modernhomecarellc?fbclid=IwZXh0bgNhZW0CMTAAAR2vcF8ghFhyPcka4WAqv2s18S8Bmgs7v24ryKWPZSfs1S7ukdm-Tlgyn2Y_aem_wYugYGBVO_28k3uF4EikcA\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"12fb34f\",\"link\":{\"url\":\"https:\\/\\/www.youtube.com\\/@modernhomecare\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"589cdcb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor5\"},\"icon_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"67407e3b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2e8ba73\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f52efb8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"717f375\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"394af17\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"flex_wrap_mobile\":\"nowrap\"},\"elements\":[{\"id\":\"341f8b74\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"33df9dc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7bdec\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"90e6e83\"}],\"pp_display_conditions\":[{\"_id\":\"3e37d22\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"4cc70c2e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"link_to\":\"custom\",\"space\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"ef1f052\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"7043833\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"space_mobile_extra\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"space_tablet_extra\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"29f8b7e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":80},\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"13efff7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4ba59b9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9a413e\"}],\"pp_display_conditions\":[{\"_id\":\"6633050\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"flex_align_items\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"flex_direction_mobile\":\"row-reverse\",\"flex_justify_content_mobile\":\"flex-start\",\"flex_wrap_mobile\":\"nowrap\"},\"elements\":[{\"id\":\"55ad1095\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"pointer\":\"none\",\"toggle_label\":\"Menu\",\"pp_display_conditions\":[{\"_id\":\"6d90ae3\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"menu_type\":\"off-canvas\",\"toggle_align\":\"right\",\"toggle_background_color\":\"#02010100\",\"toggle_background_color_hover\":\"#02010100\",\"offcanvas_position\":\"right\",\"close_icon_background_color\":\"#02010100\",\"close_icon_background_color_hover\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_weight\":\"500\",\"__globals__\":{\"toggle_color\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_color_hover\":\"globals\\/colors?id=astglobalcolor3\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor5\",\"mobile_sub_link_color\":\"globals\\/colors?id=astglobalcolor5\",\"mobile_sub_link_bg_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor5\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_hover\":\"globals\\/colors?id=astglobalcolor5\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"close_icon_color_hover\":\"globals\\/colors?id=astglobalcolor5\",\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item\":\"globals\\/colors?id=astglobalcolor5\",\"background_color_dropdown_item\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor5\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor5\",\"background_color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"dropdown_divider_color\":\"\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"menu_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"color_menu_item\":\"#1e293b\",\"color_menu_item_hover\":\"#00bfff\",\"color_menu_item_active\":\"#00bfff\",\"color_dropdown_item\":\"#FFFFFF\",\"background_color_dropdown_item\":\"#48aaad\",\"color_dropdown_item_hover\":\"#1e293b\",\"background_color_dropdown_item_hover\":\"#00bfff\",\"color_dropdown_item_active\":\"#1e293b\",\"background_color_dropdown_item_active\":\"#00bfff\",\"dropdown_divider_border\":\"solid\",\"dropdown_divider_color\":\"#F0F5FA36\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"toggle_color\":\"#48aaad\",\"toggle_color_hover\":\"#334155\",\"overlay_bg_color\":\"#1e293b\",\"mobile_link_color\":\"#FFFFFF\",\"mobile_sub_link_bg_color\":\"#1e293b\",\"mobile_sub_link_color\":\"#334155\",\"mobile_link_hover\":\"#FFFFFF\",\"mobile_link_bg_hover\":\"#48aaad\",\"mobile_sub_link_bg_hover\":\"#48aaad\",\"mobile_sub_link_hover\":\"#1e293b\",\"close_icon_color\":\"#FFFFFF\",\"close_icon_color_hover\":\"#FFFFFF\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"toggle_size_mobile\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"4027936a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"730407e\",\"pp_condition_date_time_before_value\":\"2024-10-27 14:19\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"348be72f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":201,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":164,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f25b0fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8462f23\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f25e330\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"pp_condition_key\":\"static_page\",\"pp_condition_operator\":\"not\",\"_id\":\"eda4653\",\"pp_condition_page_value\":[\"10\"],\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"\"},\"background_overlay_color\":\"#48aaad\",\"background_overlay_color_b\":\"#1E293B52\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"css_classes\":\"header-breadcrumbs-section\",\"pp_display_conditions_enable\":\"yes\"},\"elements\":[{\"id\":\"13f6f159\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"page-title\\\" settings=\\\"%7B%22include_context%22%3A%22%22%2C%22show_home_title%22%3A%22%22%2C%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3b30e8f\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"}],\"isInner\":false}]'),
(350, 48, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(1392, 170, '_elementor_edit_mode', 'builder'),
(1393, 170, '_elementor_template_type', 'wp-page'),
(1394, 170, '_elementor_version', '3.34.0'),
(1395, 170, '_elementor_pro_version', '3.17.1'),
(1396, 170, '_wp_page_template', 'default'),
(1397, 170, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"},{\"id\":56,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-2-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"3274ff7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"ae4f379\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(1375, 164, '_wp_attached_file', '2026/01/616053345_122151193490928164_8199765515366368063_n.jpg'),
(1376, 164, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1536;s:6:\"height\";i:2048;s:4:\"file\";s:62:\"2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\";s:8:\"filesize\";i:1023313;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:62:\"616053345_122151193490928164_8199765515366368063_n-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19371;}s:5:\"large\";a:5:{s:4:\"file\";s:63:\"616053345_122151193490928164_8199765515366368063_n-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:171677;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:62:\"616053345_122151193490928164_8199765515366368063_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7806;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:63:\"616053345_122151193490928164_8199765515366368063_n-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:171677;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:64:\"616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:370165;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(190, 30, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(375, 52, '_elementor_source', 'post'),
(376, 52, '_elementor_edit_mode', 'builder'),
(377, 52, '_elementor_template_type', 'header'),
(378, 52, '_elementor_version', '3.34.0'),
(379, 52, '_elementor_pro_version', '3.17.1'),
(380, 52, '_wp_page_template', 'default'),
(381, 52, '_elementor_data', '[{\"id\":\"1429e242\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29f1307\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fa260ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cedb743\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"007c566\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5ffd1cde\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_justify_content_tablet_extra\":\"center\",\"flex_align_items\":\"center\",\"flex_wrap_tablet_extra\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f9f92a0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d292bd0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad6ad10\"}],\"pp_display_conditions\":[{\"_id\":\"a7020fb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_widescreen\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6e69ad7a\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"XXX-XXX-XXX\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"f9bb7da\",\"link\":{\"url\":\"tel:XXX-XXX-XXX\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"1ee7ee1\",\"link\":{\"url\":\"mailto:info@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align_tablet_extra\":\"center\",\"icon_color\":\"#fafafa\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#ffffff\",\"pp_display_conditions\":[{\"_id\":\"687bdf5\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"\"},\"icon_color_hover\":\"#E4E4E4\",\"text_color_hover\":\"#E4E4E4\",\"divider\":\"yes\",\"divider_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"3027eeaf\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-end\",\"flex_justify_content_tablet_extra\":\"center\",\"flex_align_items\":\"center\",\"flex_wrap_tablet_extra\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f9f92a0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d292bd0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad6ad10\"}],\"pp_display_conditions\":[{\"_id\":\"a7020fb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_widescreen\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"557e3125\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"1a75682\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"da32d70\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"12fb34f\"}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"589cdcb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor5\"},\"icon_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"67407e3b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2e8ba73\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f52efb8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"717f375\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"394af17\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"flex_wrap_mobile\":\"nowrap\"},\"elements\":[{\"id\":\"341f8b74\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"33df9dc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7bdec\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"90e6e83\"}],\"pp_display_conditions\":[{\"_id\":\"3e37d22\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"4cc70c2e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":49,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/Transparent-File-02-scaled.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"link_to\":\"custom\",\"space\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"ef1f052\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"7043833\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"space_mobile_extra\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"space_tablet_extra\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"29f8b7e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":80},\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"13efff7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4ba59b9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9a413e\"}],\"pp_display_conditions\":[{\"_id\":\"6633050\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"flex_align_items\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"flex_direction_mobile\":\"row-reverse\",\"flex_justify_content_mobile\":\"flex-start\",\"flex_wrap_mobile\":\"nowrap\"},\"elements\":[{\"id\":\"55ad1095\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"pointer\":\"none\",\"toggle_label\":\"Menu\",\"pp_display_conditions\":[{\"_id\":\"6d90ae3\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"menu_type\":\"off-canvas\",\"toggle_align\":\"right\",\"toggle_background_color\":\"#02010100\",\"toggle_background_color_hover\":\"#02010100\",\"offcanvas_position\":\"right\",\"close_icon_background_color\":\"#02010100\",\"close_icon_background_color_hover\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_weight\":\"500\",\"__globals__\":{\"toggle_color\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_color_hover\":\"globals\\/colors?id=astglobalcolor3\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor5\",\"mobile_sub_link_color\":\"globals\\/colors?id=astglobalcolor5\",\"mobile_sub_link_bg_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor5\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_hover\":\"globals\\/colors?id=astglobalcolor5\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"close_icon_color_hover\":\"globals\\/colors?id=astglobalcolor5\",\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item\":\"globals\\/colors?id=astglobalcolor5\",\"background_color_dropdown_item\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor5\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor5\",\"background_color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"dropdown_divider_color\":\"\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"menu_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"color_menu_item\":\"#1e293b\",\"color_menu_item_hover\":\"#00bfff\",\"color_menu_item_active\":\"#00bfff\",\"color_dropdown_item\":\"#FFFFFF\",\"background_color_dropdown_item\":\"#48aaad\",\"color_dropdown_item_hover\":\"#1e293b\",\"background_color_dropdown_item_hover\":\"#00bfff\",\"color_dropdown_item_active\":\"#1e293b\",\"background_color_dropdown_item_active\":\"#00bfff\",\"dropdown_divider_border\":\"solid\",\"dropdown_divider_color\":\"#F0F5FA36\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"toggle_color\":\"#48aaad\",\"toggle_color_hover\":\"#334155\",\"overlay_bg_color\":\"#1e293b\",\"mobile_link_color\":\"#FFFFFF\",\"mobile_sub_link_bg_color\":\"#1e293b\",\"mobile_sub_link_color\":\"#334155\",\"mobile_link_hover\":\"#FFFFFF\",\"mobile_link_bg_hover\":\"#48aaad\",\"mobile_sub_link_bg_hover\":\"#48aaad\",\"mobile_sub_link_hover\":\"#1e293b\",\"close_icon_color\":\"#FFFFFF\",\"close_icon_color_hover\":\"#FFFFFF\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"toggle_size_mobile\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"4027936a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"730407e\",\"pp_condition_date_time_before_value\":\"2024-10-27 14:19\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"348be72f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":201,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":164,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f25b0fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8462f23\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f25e330\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"pp_condition_key\":\"page\",\"pp_condition_operator\":\"not\",\"_id\":\"eda4653\",\"pp_condition_page_value\":[\"10\"],\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"\"},\"background_overlay_color\":\"#48aaad\",\"background_overlay_color_b\":\"#1E293B52\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"css_classes\":\"header-breadcrumbs-section\",\"pp_display_conditions_enable\":\"yes\"},\"elements\":[{\"id\":\"13f6f159\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"page-title\\\" settings=\\\"%7B%22include_context%22%3A%22%22%2C%22show_home_title%22%3A%22%22%2C%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3b30e8f\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"}],\"isInner\":false}]'),
(358, 49, '_wp_attached_file', '2026/01/Transparent-File-02-scaled.png'),
(359, 49, '_wp_attachment_metadata', 'a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1157;s:4:\"file\";s:38:\"2026/01/Transparent-File-02-scaled.png\";s:8:\"filesize\";i:109834;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"Transparent-File-02-300x136.png\";s:5:\"width\";i:300;s:6:\"height\";i:136;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10153;}s:5:\"large\";a:5:{s:4:\"file\";s:32:\"Transparent-File-02-1024x463.png\";s:5:\"width\";i:1024;s:6:\"height\";i:463;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:38370;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"Transparent-File-02-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7673;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:31:\"Transparent-File-02-768x347.png\";s:5:\"width\";i:768;s:6:\"height\";i:347;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28300;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:32:\"Transparent-File-02-1536x694.png\";s:5:\"width\";i:1536;s:6:\"height\";i:694;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:61602;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:32:\"Transparent-File-02-2048x925.png\";s:5:\"width\";i:2048;s:6:\"height\";i:925;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:85598;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:23:\"Transparent-File-02.png\";}'),
(360, 50, '_wp_attached_file', '2026/01/Transparent-File-01-scaled.png'),
(361, 50, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1157;s:4:\"file\";s:38:\"2026/01/Transparent-File-01-scaled.png\";s:8:\"filesize\";i:115528;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:38:\"Transparent-File-01-scaled-300x136.png\";s:5:\"width\";i:300;s:6:\"height\";i:136;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10712;}s:5:\"large\";a:5:{s:4:\"file\";s:39:\"Transparent-File-01-scaled-1024x463.png\";s:5:\"width\";i:1024;s:6:\"height\";i:463;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:42158;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:38:\"Transparent-File-01-scaled-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8103;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:38:\"Transparent-File-01-scaled-768x347.png\";s:5:\"width\";i:768;s:6:\"height\";i:347;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:30174;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:39:\"Transparent-File-01-scaled-1536x694.png\";s:5:\"width\";i:1536;s:6:\"height\";i:694;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:70100;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:39:\"Transparent-File-01-scaled-2048x926.png\";s:5:\"width\";i:2048;s:6:\"height\";i:926;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:101678;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(265, 40, '_elementor_source', 'post'),
(266, 40, '_elementor_edit_mode', 'builder'),
(267, 40, '_elementor_template_type', 'header'),
(268, 40, '_elementor_version', '3.34.0'),
(269, 40, '_elementor_pro_version', '3.17.1'),
(270, 40, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(271, 40, '_elementor_data', '[{\"id\":\"1429e242\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29f1307\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fa260ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cedb743\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"007c566\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5ffd1cde\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_justify_content_tablet_extra\":\"center\",\"flex_align_items\":\"center\",\"flex_wrap_tablet_extra\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f9f92a0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d292bd0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad6ad10\"}],\"pp_display_conditions\":[{\"_id\":\"a7020fb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_widescreen\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6e69ad7a\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"XXX-XXX-XXX\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"f9bb7da\",\"link\":{\"url\":\"tel:XXX-XXX-XXX\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"1ee7ee1\",\"link\":{\"url\":\"mailto:info@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align_tablet_extra\":\"center\",\"icon_color\":\"#fafafa\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#ffffff\",\"pp_display_conditions\":[{\"_id\":\"687bdf5\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"\"},\"icon_color_hover\":\"#E4E4E4\",\"text_color_hover\":\"#E4E4E4\",\"divider\":\"yes\",\"divider_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"3027eeaf\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-end\",\"flex_justify_content_tablet_extra\":\"center\",\"flex_align_items\":\"center\",\"flex_wrap_tablet_extra\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f9f92a0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d292bd0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad6ad10\"}],\"pp_display_conditions\":[{\"_id\":\"a7020fb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_widescreen\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"557e3125\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"1a75682\",\"link\":{\"url\":\"https:\\/\\/www.facebook.com\\/modernhomecarehh\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"da32d70\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/modernhomecarellc?fbclid=IwZXh0bgNhZW0CMTAAAR2vcF8ghFhyPcka4WAqv2s18S8Bmgs7v24ryKWPZSfs1S7ukdm-Tlgyn2Y_aem_wYugYGBVO_28k3uF4EikcA\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"12fb34f\",\"link\":{\"url\":\"https:\\/\\/www.youtube.com\\/@modernhomecare\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"589cdcb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor5\"},\"icon_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"67407e3b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2e8ba73\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f52efb8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"717f375\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"394af17\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"flex_wrap_mobile\":\"nowrap\"},\"elements\":[{\"id\":\"341f8b74\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"33df9dc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7bdec\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"90e6e83\"}],\"pp_display_conditions\":[{\"_id\":\"3e37d22\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"4cc70c2e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"link_to\":\"custom\",\"space\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"ef1f052\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"7043833\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"space_mobile_extra\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"space_tablet_extra\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"29f8b7e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":80},\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"13efff7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4ba59b9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9a413e\"}],\"pp_display_conditions\":[{\"_id\":\"6633050\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"flex_align_items\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"flex_direction_mobile\":\"row-reverse\",\"flex_justify_content_mobile\":\"flex-start\",\"flex_wrap_mobile\":\"nowrap\"},\"elements\":[{\"id\":\"55ad1095\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"pointer\":\"none\",\"toggle_label\":\"Menu\",\"pp_display_conditions\":[{\"_id\":\"6d90ae3\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"menu_type\":\"off-canvas\",\"toggle_align\":\"right\",\"toggle_background_color\":\"#02010100\",\"toggle_background_color_hover\":\"#02010100\",\"offcanvas_position\":\"right\",\"close_icon_background_color\":\"#02010100\",\"close_icon_background_color_hover\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_weight\":\"500\",\"__globals__\":{\"toggle_color\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_color_hover\":\"globals\\/colors?id=astglobalcolor3\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor5\",\"mobile_sub_link_color\":\"globals\\/colors?id=astglobalcolor5\",\"mobile_sub_link_bg_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor5\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_hover\":\"globals\\/colors?id=astglobalcolor5\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"close_icon_color_hover\":\"globals\\/colors?id=astglobalcolor5\",\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item\":\"globals\\/colors?id=astglobalcolor5\",\"background_color_dropdown_item\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor5\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor5\",\"background_color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"dropdown_divider_color\":\"\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"menu_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"color_menu_item\":\"#1e293b\",\"color_menu_item_hover\":\"#00bfff\",\"color_menu_item_active\":\"#00bfff\",\"color_dropdown_item\":\"#FFFFFF\",\"background_color_dropdown_item\":\"#48aaad\",\"color_dropdown_item_hover\":\"#1e293b\",\"background_color_dropdown_item_hover\":\"#00bfff\",\"color_dropdown_item_active\":\"#1e293b\",\"background_color_dropdown_item_active\":\"#00bfff\",\"dropdown_divider_border\":\"solid\",\"dropdown_divider_color\":\"#F0F5FA36\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"toggle_color\":\"#48aaad\",\"toggle_color_hover\":\"#334155\",\"overlay_bg_color\":\"#1e293b\",\"mobile_link_color\":\"#FFFFFF\",\"mobile_sub_link_bg_color\":\"#1e293b\",\"mobile_sub_link_color\":\"#334155\",\"mobile_link_hover\":\"#FFFFFF\",\"mobile_link_bg_hover\":\"#48aaad\",\"mobile_sub_link_bg_hover\":\"#48aaad\",\"mobile_sub_link_hover\":\"#1e293b\",\"close_icon_color\":\"#FFFFFF\",\"close_icon_color_hover\":\"#FFFFFF\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"toggle_size_mobile\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"4027936a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"730407e\",\"pp_condition_date_time_before_value\":\"2024-10-27 14:19\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"348be72f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":201,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":164,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f25b0fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8462f23\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f25e330\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"pp_condition_key\":\"page\",\"pp_condition_operator\":\"not\",\"_id\":\"eda4653\",\"pp_condition_page_value\":[\"10\"],\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"\"},\"background_overlay_color\":\"#48aaad\",\"background_overlay_color_b\":\"#1E293B52\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"css_classes\":\"header-breadcrumbs-section\",\"pp_display_conditions_enable\":\"yes\"},\"elements\":[{\"id\":\"13f6f159\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"page-title\\\" settings=\\\"%7B%22include_context%22%3A%22%22%2C%22show_home_title%22%3A%22%22%2C%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3b30e8f\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"}],\"isInner\":false}]'),
(203, 36, '_elementor_screenshot', 'a:2:{s:2:\"id\";i:35;s:3:\"url\";s:129:\"https://mrarif.me/cpnordic/wp-content/uploads/elementor/screenshots/Elementor-post-screenshot_30_2026-01-25-12-05-14_44262b6a.png\";}'),
(204, 36, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(272, 40, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(462, 62, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"px\",\"size\":680,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"},{\"id\":56,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-2-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false}]'),
(314, 44, '_elementor_edit_mode', 'builder'),
(315, 44, '_elementor_template_type', 'wp-page'),
(316, 44, '_elementor_version', '3.34.0'),
(317, 44, '_elementor_pro_version', '3.17.1'),
(318, 44, '_elementor_page_settings', 'a:0:{}'),
(319, 45, '_elementor_edit_mode', 'builder'),
(320, 45, '_elementor_template_type', 'wp-page'),
(321, 45, '_elementor_version', '3.34.0'),
(322, 45, '_elementor_pro_version', '3.17.1'),
(323, 45, '_elementor_page_settings', 'a:0:{}'),
(326, 46, '_elementor_edit_mode', 'builder'),
(327, 46, '_elementor_template_type', 'wp-page'),
(328, 46, '_elementor_version', '3.34.0'),
(329, 46, '_elementor_pro_version', '3.17.1'),
(330, 46, '_wp_page_template', 'default'),
(331, 46, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"px\",\"size\":680,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false}]'),
(427, 59, '_elementor_edit_mode', 'builder'),
(428, 59, '_elementor_template_type', 'wp-page'),
(429, 59, '_elementor_version', '3.34.0'),
(430, 59, '_elementor_pro_version', '3.17.1'),
(431, 59, '_wp_page_template', 'default'),
(432, 59, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"px\",\"size\":680,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false}]'),
(434, 59, '_elementor_page_settings', 'a:0:{}'),
(362, 51, '_elementor_source', 'post'),
(363, 51, '_elementor_edit_mode', 'builder'),
(364, 51, '_elementor_template_type', 'header'),
(365, 51, '_elementor_version', '3.34.0'),
(366, 51, '_elementor_pro_version', '3.17.1'),
(367, 51, '_wp_page_template', 'default'),
(368, 51, '_elementor_data', '[{\"id\":\"1429e242\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29f1307\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fa260ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cedb743\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"007c566\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5ffd1cde\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_justify_content_tablet_extra\":\"center\",\"flex_align_items\":\"center\",\"flex_wrap_tablet_extra\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f9f92a0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d292bd0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad6ad10\"}],\"pp_display_conditions\":[{\"_id\":\"a7020fb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_widescreen\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6e69ad7a\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"XXX-XXX-XXX\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"f9bb7da\",\"link\":{\"url\":\"tel:XXX-XXX-XXX\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"1ee7ee1\",\"link\":{\"url\":\"mailto:info@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align_tablet_extra\":\"center\",\"icon_color\":\"#fafafa\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#ffffff\",\"pp_display_conditions\":[{\"_id\":\"687bdf5\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"\"},\"icon_color_hover\":\"#E4E4E4\",\"text_color_hover\":\"#E4E4E4\",\"divider\":\"yes\",\"divider_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"3027eeaf\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-end\",\"flex_justify_content_tablet_extra\":\"center\",\"flex_align_items\":\"center\",\"flex_wrap_tablet_extra\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f9f92a0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d292bd0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad6ad10\"}],\"pp_display_conditions\":[{\"_id\":\"a7020fb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_widescreen\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"557e3125\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"1a75682\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"da32d70\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"12fb34f\"}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"589cdcb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor5\"},\"icon_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"67407e3b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2e8ba73\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f52efb8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"717f375\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"394af17\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"flex_wrap_mobile\":\"nowrap\"},\"elements\":[{\"id\":\"341f8b74\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"33df9dc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7bdec\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"90e6e83\"}],\"pp_display_conditions\":[{\"_id\":\"3e37d22\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"4cc70c2e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":49,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/Transparent-File-02-scaled.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"link_to\":\"custom\",\"space\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"ef1f052\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"7043833\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"space_mobile_extra\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"space_tablet_extra\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"29f8b7e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":80},\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"13efff7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4ba59b9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9a413e\"}],\"pp_display_conditions\":[{\"_id\":\"6633050\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"flex_align_items\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"flex_direction_mobile\":\"row-reverse\",\"flex_justify_content_mobile\":\"flex-start\",\"flex_wrap_mobile\":\"nowrap\"},\"elements\":[{\"id\":\"55ad1095\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"pointer\":\"none\",\"toggle_label\":\"Menu\",\"pp_display_conditions\":[{\"_id\":\"6d90ae3\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"menu_type\":\"off-canvas\",\"toggle_align\":\"right\",\"toggle_background_color\":\"#02010100\",\"toggle_background_color_hover\":\"#02010100\",\"offcanvas_position\":\"right\",\"close_icon_background_color\":\"#02010100\",\"close_icon_background_color_hover\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_weight\":\"500\",\"__globals__\":{\"toggle_color\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_color_hover\":\"globals\\/colors?id=astglobalcolor3\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor5\",\"mobile_sub_link_color\":\"globals\\/colors?id=astglobalcolor5\",\"mobile_sub_link_bg_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor5\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_hover\":\"globals\\/colors?id=astglobalcolor5\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"close_icon_color_hover\":\"globals\\/colors?id=astglobalcolor5\",\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item\":\"globals\\/colors?id=astglobalcolor5\",\"background_color_dropdown_item\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor5\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor5\",\"background_color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"dropdown_divider_color\":\"\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"menu_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"color_menu_item\":\"#1e293b\",\"color_menu_item_hover\":\"#00bfff\",\"color_menu_item_active\":\"#00bfff\",\"color_dropdown_item\":\"#FFFFFF\",\"background_color_dropdown_item\":\"#48aaad\",\"color_dropdown_item_hover\":\"#1e293b\",\"background_color_dropdown_item_hover\":\"#00bfff\",\"color_dropdown_item_active\":\"#1e293b\",\"background_color_dropdown_item_active\":\"#00bfff\",\"dropdown_divider_border\":\"solid\",\"dropdown_divider_color\":\"#F0F5FA36\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"toggle_color\":\"#48aaad\",\"toggle_color_hover\":\"#334155\",\"overlay_bg_color\":\"#1e293b\",\"mobile_link_color\":\"#FFFFFF\",\"mobile_sub_link_bg_color\":\"#1e293b\",\"mobile_sub_link_color\":\"#334155\",\"mobile_link_hover\":\"#FFFFFF\",\"mobile_link_bg_hover\":\"#48aaad\",\"mobile_sub_link_bg_hover\":\"#48aaad\",\"mobile_sub_link_hover\":\"#1e293b\",\"close_icon_color\":\"#FFFFFF\",\"close_icon_color_hover\":\"#FFFFFF\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"toggle_size_mobile\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"4027936a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"730407e\",\"pp_condition_date_time_before_value\":\"2024-10-27 14:19\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"348be72f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":201,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":164,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f25b0fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8462f23\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f25e330\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"pp_condition_key\":\"page\",\"pp_condition_operator\":\"not\",\"_id\":\"eda4653\",\"pp_condition_page_value\":[\"10\"],\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"\"},\"background_overlay_color\":\"#48aaad\",\"background_overlay_color_b\":\"#1E293B52\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"css_classes\":\"header-breadcrumbs-section\",\"pp_display_conditions_enable\":\"yes\"},\"elements\":[{\"id\":\"13f6f159\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"page-title\\\" settings=\\\"%7B%22include_context%22%3A%22%22%2C%22show_home_title%22%3A%22%22%2C%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3b30e8f\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"}],\"isInner\":false}]'),
(460, 62, '_elementor_pro_version', '3.17.1'),
(461, 62, '_wp_page_template', 'default'),
(280, 10, '_elementor_edit_mode', 'builder'),
(281, 10, '_astra_content_layout_flag', 'disabled'),
(282, 10, 'ast-title-bar-display', 'disabled'),
(283, 10, '_elementor_template_type', 'wp-page'),
(284, 10, '_elementor_version', '3.34.2'),
(285, 10, '_elementor_pro_version', '3.34.2'),
(324, 10, '_wp_page_template', 'default'),
(295, 26, '_edit_lock', '1769436685:1'),
(296, 42, '_elementor_edit_mode', 'builder'),
(297, 42, '_elementor_template_type', 'kit'),
(299, 26, '_wp_page_template', 'default'),
(300, 26, '_elementor_page_settings', 'a:51:{s:13:\"system_colors\";a:4:{i:0;a:2:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";}i:1;a:2:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";}i:2;a:2:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";}i:3;a:2:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";}}s:13:\"custom_colors\";a:0:{}s:17:\"system_typography\";a:4:{i:0;a:5:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Nekst Black\";s:22:\"typography_font_weight\";s:3:\"600\";}i:1;a:5:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Nekst Black\";s:22:\"typography_font_weight\";s:3:\"400\";}i:2;a:6:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"400\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}}i:3;a:5:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"500\";}}s:17:\"custom_typography\";a:0:{}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:9:\"site_name\";s:13:\"CP NORDIC ApS\";s:15:\"container_width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:1240;s:5:\"sizes\";a:0:{}}s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:18:\"active_breakpoints\";a:5:{i:0;s:15:\"viewport_mobile\";i:1;s:21:\"viewport_mobile_extra\";i:2;s:15:\"viewport_tablet\";i:3;s:21:\"viewport_tablet_extra\";i:4;s:19:\"viewport_widescreen\";}s:15:\"viewport_mobile\";i:480;s:21:\"viewport_mobile_extra\";i:767;s:15:\"viewport_tablet\";i:991;s:21:\"viewport_tablet_extra\";i:1199;s:19:\"viewport_widescreen\";i:1200;s:11:\"viewport_md\";i:481;s:11:\"viewport_lg\";i:992;s:32:\"colors_enable_styleguide_preview\";s:3:\"yes\";s:15:\"activeItemIndex\";i:1;s:36:\"typography_enable_styleguide_preview\";s:3:\"yes\";s:24:\"h1_typography_typography\";s:6:\"custom\";s:25:\"h1_typography_font_family\";s:11:\"Nekst Black\";s:23:\"h1_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:60;s:5:\"sizes\";a:0:{}}s:24:\"h2_typography_typography\";s:6:\"custom\";s:23:\"h2_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:42;s:5:\"sizes\";a:0:{}}s:24:\"h3_typography_typography\";s:6:\"custom\";s:23:\"h3_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:32;s:5:\"sizes\";a:0:{}}s:24:\"h4_typography_typography\";s:6:\"custom\";s:23:\"h4_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:26;s:5:\"sizes\";a:0:{}}s:24:\"h5_typography_typography\";s:6:\"custom\";s:23:\"h5_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:22;s:5:\"sizes\";a:0:{}}s:24:\"h6_typography_typography\";s:6:\"custom\";s:23:\"h6_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:28:\"button_typography_typography\";s:6:\"custom\";s:32:\"button_typography_text_transform\";s:9:\"uppercase\";s:32:\"button_typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:25:\"h4_typography_font_family\";s:6:\"Roboto\";s:25:\"h5_typography_font_family\";s:6:\"Roboto\";s:25:\"h6_typography_font_family\";s:6:\"Roboto\";s:36:\"h1_typography_font_size_tablet_extra\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:40;s:5:\"sizes\";a:0:{}}s:36:\"h1_typography_font_size_mobile_extra\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:30;s:5:\"sizes\";a:0:{}}s:36:\"h2_typography_font_size_tablet_extra\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:35;s:5:\"sizes\";a:0:{}}s:36:\"h2_typography_font_size_mobile_extra\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:30;s:5:\"sizes\";a:0:{}}s:36:\"h3_typography_font_size_tablet_extra\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:28;s:5:\"sizes\";a:0:{}}s:36:\"h3_typography_font_size_mobile_extra\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:26;s:5:\"sizes\";a:0:{}}s:36:\"h4_typography_font_size_tablet_extra\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:24;s:5:\"sizes\";a:0:{}}s:36:\"h4_typography_font_size_mobile_extra\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:22;s:5:\"sizes\";a:0:{}}s:36:\"h5_typography_font_size_tablet_extra\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}s:36:\"h5_typography_font_size_mobile_extra\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}s:30:\"h5_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:36:\"h6_typography_font_size_mobile_extra\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:16:\"site_description\";s:41:\"Byggeri – Tømrerarbejde og tagdækning\";}'),
(301, 26, '_elementor_data', '[]'),
(302, 43, '_elementor_edit_mode', 'builder'),
(303, 43, '_elementor_template_type', 'kit'),
(305, 43, '_wp_page_template', 'default'),
(306, 43, '_elementor_page_settings', 'a:16:{s:13:\"system_colors\";a:4:{i:0;a:3:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:5:\"color\";s:7:\"#6EC1E4\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:7:\"#54595F\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:7:\"#7A7A7A\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#61CE70\";}}s:13:\"custom_colors\";a:0:{}s:17:\"system_typography\";a:4:{i:0;a:5:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"600\";}i:1;a:5:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Roboto Slab\";s:22:\"typography_font_weight\";s:3:\"400\";}i:2;a:5:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"400\";}i:3;a:5:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"500\";}}s:17:\"custom_typography\";a:0:{}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:9:\"site_name\";s:9:\"CP-NORDIC\";s:15:\"container_width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:1240;s:5:\"sizes\";a:0:{}}s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:18:\"active_breakpoints\";a:5:{i:0;s:15:\"viewport_mobile\";i:1;s:21:\"viewport_mobile_extra\";i:2;s:15:\"viewport_tablet\";i:3;s:21:\"viewport_tablet_extra\";i:4;s:19:\"viewport_widescreen\";}s:15:\"viewport_mobile\";i:480;s:21:\"viewport_mobile_extra\";i:767;s:15:\"viewport_tablet\";i:991;s:21:\"viewport_tablet_extra\";i:1199;s:19:\"viewport_widescreen\";i:1200;s:11:\"viewport_md\";i:481;s:11:\"viewport_lg\";i:992;}'),
(307, 43, '_elementor_data', '[]'),
(309, 26, '_elementor_version', '3.34.2'),
(310, 26, '_elementor_pro_version', '3.34.2'),
(369, 51, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(1454, 177, '_elementor_edit_mode', 'builder'),
(1455, 177, '_elementor_template_type', 'wp-page'),
(1456, 177, '_elementor_version', '3.34.0'),
(1457, 177, '_elementor_pro_version', '3.17.1'),
(1458, 177, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1459, 177, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"},{\"id\":56,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-2-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"3274ff7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"ae4f379\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9a52583\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4916, 539, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\",\"id\":57,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle ANMELDELSER\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]}},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"HVORFOR V\\u00c6LGE CP NORDIC ApS?\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79206f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>N\\u00e5r du v\\u00e6lger CP NORDIC ApS, f\\u00e5r du:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"44023b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/teamwork_4546121.svg\",\"id\":472},\"library\":\"svg\"},\"title_text\":\"et ungt og engageret team\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/effective_1401921.svg\",\"id\":474},\"library\":\"svg\"},\"title_text\":\"fokus p\\u00e5 kvalitet og detaljer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/communication_18765280.svg\",\"id\":479},\"library\":\"svg\"},\"title_text\":\"\\u00e6rlig<br> r\\u00e5dgivning\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/brainstorming_11663441.svg\",\"id\":480},\"library\":\"svg\"},\"title_text\":\"gennemt\\u00e6nkte l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c0f2190\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"327bd23\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/like_3941426.svg\",\"id\":481},\"library\":\"svg\"},\"title_text\":\"arbejde udf\\u00f8rt med ansvar\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2bc9769\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi lover ikke mere, end vi kan holde \\u2013 men vi holder det, vi lover.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2a1d8fc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"986dd0f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9231a79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"31fa3c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f1b19ca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7391996\"}]},\"elements\":[{\"id\":\"547d40f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7d5adb7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1522ba7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e13c951\"}],\"pp_display_conditions\":[{\"_id\":\"1e39e5d\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"4bda72e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7d5adb7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1522ba7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e13c951\"}],\"pp_display_conditions\":[{\"_id\":\"1e39e5d\"}]},\"elements\":[{\"id\":\"07d0be8\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"8b3e3db\"},{\"custom_id\":\"field_2a35699\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"2a35699\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"f9dd88c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6323910b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor8\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/wood-background-1-e1738912619419.jpg\",\"id\":510,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]}},\"elements\":[{\"id\":\"640d38eb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"75253fe5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"641310a\",\"elType\":\"widget\",\"settings\":{\"title\":\"KONTAKT OS\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee94578\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fea00\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68d73b3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14202595\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Name\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"tel\",\"field_label\":\"Phone\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\"},{\"field_type\":\"select\",\"field_label\":\"Services Name\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Messages\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor4\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_background_color\":\"#494949CC\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"mark_required\":\"yes\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1461, 177, '_elementor_page_settings', 'a:0:{}'),
(382, 52, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(386, 53, '_elementor_source', 'post'),
(387, 53, '_elementor_edit_mode', 'builder'),
(388, 53, '_elementor_template_type', 'header'),
(389, 53, '_elementor_version', '3.34.0'),
(390, 53, '_elementor_pro_version', '3.17.1'),
(391, 53, '_wp_page_template', 'default'),
(392, 53, '_elementor_data', '[{\"id\":\"1429e242\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29f1307\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fa260ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cedb743\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"007c566\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5ffd1cde\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_justify_content_tablet_extra\":\"center\",\"flex_align_items\":\"center\",\"flex_wrap_tablet_extra\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f9f92a0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d292bd0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad6ad10\"}],\"pp_display_conditions\":[{\"_id\":\"a7020fb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_widescreen\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6e69ad7a\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"XXX-XXX-XXX\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"f9bb7da\",\"link\":{\"url\":\"tel:XXX-XXX-XXX\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"1ee7ee1\",\"link\":{\"url\":\"mailto:info@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align_tablet_extra\":\"center\",\"icon_color\":\"#fafafa\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#ffffff\",\"pp_display_conditions\":[{\"_id\":\"687bdf5\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"\"},\"icon_color_hover\":\"#E4E4E4\",\"text_color_hover\":\"#E4E4E4\",\"divider\":\"yes\",\"divider_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"3027eeaf\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-end\",\"flex_justify_content_tablet_extra\":\"center\",\"flex_align_items\":\"center\",\"flex_wrap_tablet_extra\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f9f92a0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d292bd0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad6ad10\"}],\"pp_display_conditions\":[{\"_id\":\"a7020fb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_widescreen\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"557e3125\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"1a75682\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"da32d70\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"12fb34f\"}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"589cdcb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor5\"},\"icon_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"67407e3b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2e8ba73\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f52efb8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"717f375\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"394af17\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"flex_wrap_mobile\":\"nowrap\"},\"elements\":[{\"id\":\"341f8b74\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"33df9dc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7bdec\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"90e6e83\"}],\"pp_display_conditions\":[{\"_id\":\"3e37d22\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"4cc70c2e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/Transparent-File-01-scaled.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"link_to\":\"custom\",\"space\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"ef1f052\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"7043833\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"space_mobile_extra\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"space_tablet_extra\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"29f8b7e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":80},\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"13efff7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4ba59b9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9a413e\"}],\"pp_display_conditions\":[{\"_id\":\"6633050\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"flex_align_items\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"flex_direction_mobile\":\"row-reverse\",\"flex_justify_content_mobile\":\"flex-start\",\"flex_wrap_mobile\":\"nowrap\"},\"elements\":[{\"id\":\"55ad1095\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"pointer\":\"none\",\"toggle_label\":\"Menu\",\"pp_display_conditions\":[{\"_id\":\"6d90ae3\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"menu_type\":\"off-canvas\",\"toggle_align\":\"right\",\"toggle_background_color\":\"#02010100\",\"toggle_background_color_hover\":\"#02010100\",\"offcanvas_position\":\"right\",\"close_icon_background_color\":\"#02010100\",\"close_icon_background_color_hover\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_weight\":\"500\",\"__globals__\":{\"toggle_color\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_color_hover\":\"globals\\/colors?id=astglobalcolor3\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor5\",\"mobile_sub_link_color\":\"globals\\/colors?id=astglobalcolor5\",\"mobile_sub_link_bg_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor5\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_hover\":\"globals\\/colors?id=astglobalcolor5\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"close_icon_color_hover\":\"globals\\/colors?id=astglobalcolor5\",\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item\":\"globals\\/colors?id=astglobalcolor5\",\"background_color_dropdown_item\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor5\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor5\",\"background_color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"dropdown_divider_color\":\"\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"menu_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"color_menu_item\":\"#1e293b\",\"color_menu_item_hover\":\"#00bfff\",\"color_menu_item_active\":\"#00bfff\",\"color_dropdown_item\":\"#FFFFFF\",\"background_color_dropdown_item\":\"#48aaad\",\"color_dropdown_item_hover\":\"#1e293b\",\"background_color_dropdown_item_hover\":\"#00bfff\",\"color_dropdown_item_active\":\"#1e293b\",\"background_color_dropdown_item_active\":\"#00bfff\",\"dropdown_divider_border\":\"solid\",\"dropdown_divider_color\":\"#F0F5FA36\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"toggle_color\":\"#48aaad\",\"toggle_color_hover\":\"#334155\",\"overlay_bg_color\":\"#1e293b\",\"mobile_link_color\":\"#FFFFFF\",\"mobile_sub_link_bg_color\":\"#1e293b\",\"mobile_sub_link_color\":\"#334155\",\"mobile_link_hover\":\"#FFFFFF\",\"mobile_link_bg_hover\":\"#48aaad\",\"mobile_sub_link_bg_hover\":\"#48aaad\",\"mobile_sub_link_hover\":\"#1e293b\",\"close_icon_color\":\"#FFFFFF\",\"close_icon_color_hover\":\"#FFFFFF\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"toggle_size_mobile\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"4027936a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"730407e\",\"pp_condition_date_time_before_value\":\"2024-10-27 14:19\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"348be72f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":201,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":164,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f25b0fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8462f23\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f25e330\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"pp_condition_key\":\"page\",\"pp_condition_operator\":\"not\",\"_id\":\"eda4653\",\"pp_condition_page_value\":[\"10\"],\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"\"},\"background_overlay_color\":\"#48aaad\",\"background_overlay_color_b\":\"#1E293B52\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"css_classes\":\"header-breadcrumbs-section\",\"pp_display_conditions_enable\":\"yes\"},\"elements\":[{\"id\":\"13f6f159\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"page-title\\\" settings=\\\"%7B%22include_context%22%3A%22%22%2C%22show_home_title%22%3A%22%22%2C%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3b30e8f\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"}],\"isInner\":false}]'),
(393, 53, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(397, 54, '_elementor_source', 'post'),
(398, 54, '_elementor_edit_mode', 'builder'),
(399, 54, '_elementor_template_type', 'header'),
(400, 54, '_elementor_version', '3.34.0'),
(401, 54, '_elementor_pro_version', '3.17.1'),
(402, 54, '_wp_page_template', 'default'),
(403, 54, '_elementor_data', '[{\"id\":\"1429e242\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29f1307\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fa260ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cedb743\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"007c566\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5ffd1cde\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_justify_content_tablet_extra\":\"center\",\"flex_align_items\":\"center\",\"flex_wrap_tablet_extra\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f9f92a0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d292bd0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad6ad10\"}],\"pp_display_conditions\":[{\"_id\":\"a7020fb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_widescreen\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6e69ad7a\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"XXX-XXX-XXX\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"f9bb7da\",\"link\":{\"url\":\"tel:XXX-XXX-XXX\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"1ee7ee1\",\"link\":{\"url\":\"mailto:info@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align_tablet_extra\":\"center\",\"icon_color\":\"#fafafa\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#ffffff\",\"pp_display_conditions\":[{\"_id\":\"687bdf5\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"\"},\"icon_color_hover\":\"#E4E4E4\",\"text_color_hover\":\"#E4E4E4\",\"divider\":\"yes\",\"divider_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"3027eeaf\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-end\",\"flex_justify_content_tablet_extra\":\"center\",\"flex_align_items\":\"center\",\"flex_wrap_tablet_extra\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f9f92a0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d292bd0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad6ad10\"}],\"pp_display_conditions\":[{\"_id\":\"a7020fb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_widescreen\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"557e3125\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"1a75682\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"da32d70\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"12fb34f\"}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"589cdcb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor5\"},\"icon_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"67407e3b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2e8ba73\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f52efb8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"717f375\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"394af17\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"flex_wrap_mobile\":\"nowrap\"},\"elements\":[{\"id\":\"341f8b74\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"33df9dc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7bdec\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"90e6e83\"}],\"pp_display_conditions\":[{\"_id\":\"3e37d22\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"4cc70c2e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/Transparent-File-01-scaled.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"link_to\":\"custom\",\"space\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"ef1f052\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"7043833\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"space_mobile_extra\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"space_tablet_extra\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"29f8b7e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":80},\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"13efff7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4ba59b9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9a413e\"}],\"pp_display_conditions\":[{\"_id\":\"6633050\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"flex_align_items\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"flex_direction_mobile\":\"row-reverse\",\"flex_justify_content_mobile\":\"flex-start\",\"flex_wrap_mobile\":\"nowrap\"},\"elements\":[{\"id\":\"55ad1095\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"pointer\":\"none\",\"toggle_label\":\"Menu\",\"pp_display_conditions\":[{\"_id\":\"6d90ae3\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"menu_type\":\"off-canvas\",\"toggle_align\":\"right\",\"toggle_background_color\":\"#02010100\",\"toggle_background_color_hover\":\"#02010100\",\"offcanvas_position\":\"right\",\"close_icon_background_color\":\"#02010100\",\"close_icon_background_color_hover\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_weight\":\"500\",\"__globals__\":{\"toggle_color\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_color_hover\":\"globals\\/colors?id=astglobalcolor3\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor5\",\"mobile_sub_link_color\":\"globals\\/colors?id=astglobalcolor5\",\"mobile_sub_link_bg_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor5\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_hover\":\"globals\\/colors?id=astglobalcolor5\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"close_icon_color_hover\":\"globals\\/colors?id=astglobalcolor5\",\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item\":\"globals\\/colors?id=astglobalcolor5\",\"background_color_dropdown_item\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor5\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor5\",\"background_color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"dropdown_divider_color\":\"\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"menu_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"color_menu_item\":\"#1e293b\",\"color_menu_item_hover\":\"#00bfff\",\"color_menu_item_active\":\"#00bfff\",\"color_dropdown_item\":\"#FFFFFF\",\"background_color_dropdown_item\":\"#48aaad\",\"color_dropdown_item_hover\":\"#1e293b\",\"background_color_dropdown_item_hover\":\"#00bfff\",\"color_dropdown_item_active\":\"#1e293b\",\"background_color_dropdown_item_active\":\"#00bfff\",\"dropdown_divider_border\":\"solid\",\"dropdown_divider_color\":\"#F0F5FA36\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"toggle_color\":\"#48aaad\",\"toggle_color_hover\":\"#334155\",\"overlay_bg_color\":\"#1e293b\",\"mobile_link_color\":\"#FFFFFF\",\"mobile_sub_link_bg_color\":\"#1e293b\",\"mobile_sub_link_color\":\"#334155\",\"mobile_link_hover\":\"#FFFFFF\",\"mobile_link_bg_hover\":\"#48aaad\",\"mobile_sub_link_bg_hover\":\"#48aaad\",\"mobile_sub_link_hover\":\"#1e293b\",\"close_icon_color\":\"#FFFFFF\",\"close_icon_color_hover\":\"#FFFFFF\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"toggle_size_mobile\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"4027936a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"730407e\",\"pp_condition_date_time_before_value\":\"2024-10-27 14:19\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"348be72f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":201,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":164,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f25b0fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8462f23\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f25e330\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"pp_condition_key\":\"page\",\"pp_condition_operator\":\"not\",\"_id\":\"eda4653\",\"pp_condition_page_value\":[\"10\"],\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"\"},\"background_overlay_color\":\"#48aaad\",\"background_overlay_color_b\":\"#1E293B52\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"css_classes\":\"header-breadcrumbs-section\",\"pp_display_conditions_enable\":\"yes\"},\"elements\":[{\"id\":\"13f6f159\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"page-title\\\" settings=\\\"%7B%22include_context%22%3A%22%22%2C%22show_home_title%22%3A%22%22%2C%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3b30e8f\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"}],\"isInner\":false}]'),
(404, 54, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(490, 65, '_elementor_source', 'post'),
(491, 65, '_elementor_edit_mode', 'builder'),
(492, 65, '_elementor_template_type', 'header'),
(493, 65, '_elementor_version', '3.34.0'),
(494, 65, '_elementor_pro_version', '3.17.1'),
(495, 65, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(496, 65, '_elementor_data', '[{\"id\":\"1429e242\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29f1307\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fa260ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cedb743\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"007c566\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5ffd1cde\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_justify_content_tablet_extra\":\"center\",\"flex_align_items\":\"center\",\"flex_wrap_tablet_extra\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f9f92a0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d292bd0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad6ad10\"}],\"pp_display_conditions\":[{\"_id\":\"a7020fb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_widescreen\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6e69ad7a\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"XXX-XXX-XXX\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"f9bb7da\",\"link\":{\"url\":\"tel:XXX-XXX-XXX\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"1ee7ee1\",\"link\":{\"url\":\"mailto:info@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align_tablet_extra\":\"center\",\"icon_color\":\"#fafafa\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#ffffff\",\"pp_display_conditions\":[{\"_id\":\"687bdf5\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"\"},\"icon_color_hover\":\"#E4E4E4\",\"text_color_hover\":\"#E4E4E4\",\"divider\":\"yes\",\"divider_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"3027eeaf\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-end\",\"flex_justify_content_tablet_extra\":\"center\",\"flex_align_items\":\"center\",\"flex_wrap_tablet_extra\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f9f92a0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d292bd0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad6ad10\"}],\"pp_display_conditions\":[{\"_id\":\"a7020fb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_widescreen\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"557e3125\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"1a75682\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"da32d70\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"12fb34f\"}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"589cdcb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor5\"},\"icon_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"67407e3b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2e8ba73\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f52efb8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"717f375\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"394af17\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"flex_wrap_mobile\":\"nowrap\"},\"elements\":[{\"id\":\"341f8b74\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"33df9dc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7bdec\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"90e6e83\"}],\"pp_display_conditions\":[{\"_id\":\"3e37d22\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"4cc70c2e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":49,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/Transparent-File-02-scaled.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"link_to\":\"custom\",\"space\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"ef1f052\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"7043833\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"space_mobile_extra\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"space_tablet_extra\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"29f8b7e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":80},\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"13efff7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4ba59b9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9a413e\"}],\"pp_display_conditions\":[{\"_id\":\"6633050\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"flex_align_items\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"flex_direction_mobile\":\"row-reverse\",\"flex_justify_content_mobile\":\"flex-start\",\"flex_wrap_mobile\":\"nowrap\"},\"elements\":[{\"id\":\"55ad1095\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"pointer\":\"none\",\"toggle_label\":\"Menu\",\"pp_display_conditions\":[{\"_id\":\"6d90ae3\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"menu_type\":\"off-canvas\",\"toggle_align\":\"right\",\"toggle_background_color\":\"#02010100\",\"toggle_background_color_hover\":\"#02010100\",\"offcanvas_position\":\"right\",\"close_icon_background_color\":\"#02010100\",\"close_icon_background_color_hover\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_weight\":\"500\",\"__globals__\":{\"toggle_color\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_color_hover\":\"globals\\/colors?id=astglobalcolor3\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor5\",\"mobile_sub_link_color\":\"globals\\/colors?id=astglobalcolor5\",\"mobile_sub_link_bg_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor5\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_hover\":\"globals\\/colors?id=astglobalcolor5\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"close_icon_color_hover\":\"globals\\/colors?id=astglobalcolor5\",\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item\":\"globals\\/colors?id=astglobalcolor5\",\"background_color_dropdown_item\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor5\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor5\",\"background_color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"dropdown_divider_color\":\"\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"menu_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"color_menu_item\":\"#1e293b\",\"color_menu_item_hover\":\"#00bfff\",\"color_menu_item_active\":\"#00bfff\",\"color_dropdown_item\":\"#FFFFFF\",\"background_color_dropdown_item\":\"#48aaad\",\"color_dropdown_item_hover\":\"#1e293b\",\"background_color_dropdown_item_hover\":\"#00bfff\",\"color_dropdown_item_active\":\"#1e293b\",\"background_color_dropdown_item_active\":\"#00bfff\",\"dropdown_divider_border\":\"solid\",\"dropdown_divider_color\":\"#F0F5FA36\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"toggle_color\":\"#48aaad\",\"toggle_color_hover\":\"#334155\",\"overlay_bg_color\":\"#1e293b\",\"mobile_link_color\":\"#FFFFFF\",\"mobile_sub_link_bg_color\":\"#1e293b\",\"mobile_sub_link_color\":\"#334155\",\"mobile_link_hover\":\"#FFFFFF\",\"mobile_link_bg_hover\":\"#48aaad\",\"mobile_sub_link_bg_hover\":\"#48aaad\",\"mobile_sub_link_hover\":\"#1e293b\",\"close_icon_color\":\"#FFFFFF\",\"close_icon_color_hover\":\"#FFFFFF\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"toggle_size_mobile\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"4027936a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"730407e\",\"pp_condition_date_time_before_value\":\"2024-10-27 14:19\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"348be72f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":201,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":164,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f25b0fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8462f23\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f25e330\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"pp_condition_key\":\"page\",\"pp_condition_operator\":\"not\",\"_id\":\"eda4653\",\"pp_condition_page_value\":[\"10\"],\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"\"},\"background_overlay_color\":\"#48aaad\",\"background_overlay_color_b\":\"#1E293B52\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"css_classes\":\"header-breadcrumbs-section\",\"pp_display_conditions_enable\":\"yes\"},\"elements\":[{\"id\":\"13f6f159\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"page-title\\\" settings=\\\"%7B%22include_context%22%3A%22%22%2C%22show_home_title%22%3A%22%22%2C%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3b30e8f\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"}],\"isInner\":false}]'),
(505, 66, '_elementor_source', 'post'),
(506, 66, '_elementor_edit_mode', 'builder'),
(507, 66, '_elementor_template_type', 'header'),
(508, 66, '_elementor_version', '3.34.0'),
(509, 66, '_elementor_pro_version', '3.17.1'),
(510, 66, '_wp_page_template', 'default'),
(511, 66, '_elementor_data', '[{\"id\":\"1429e242\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29f1307\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fa260ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cedb743\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"007c566\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5ffd1cde\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_justify_content_tablet_extra\":\"center\",\"flex_align_items\":\"center\",\"flex_wrap_tablet_extra\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f9f92a0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d292bd0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad6ad10\"}],\"pp_display_conditions\":[{\"_id\":\"a7020fb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_widescreen\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6e69ad7a\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"XXX-XXX-XXX\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"f9bb7da\",\"link\":{\"url\":\"tel:XXX-XXX-XXX\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"1ee7ee1\",\"link\":{\"url\":\"mailto:info@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align_tablet_extra\":\"center\",\"icon_color\":\"#fafafa\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#ffffff\",\"pp_display_conditions\":[{\"_id\":\"687bdf5\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"\"},\"icon_color_hover\":\"#E4E4E4\",\"text_color_hover\":\"#E4E4E4\",\"divider\":\"yes\",\"divider_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"3027eeaf\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-end\",\"flex_justify_content_tablet_extra\":\"center\",\"flex_align_items\":\"center\",\"flex_wrap_tablet_extra\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f9f92a0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d292bd0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad6ad10\"}],\"pp_display_conditions\":[{\"_id\":\"a7020fb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_widescreen\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"557e3125\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"1a75682\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"da32d70\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"12fb34f\"}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"589cdcb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor5\"},\"icon_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"67407e3b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2e8ba73\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f52efb8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"717f375\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"394af17\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"flex_wrap_mobile\":\"nowrap\",\"z_index\":1},\"elements\":[{\"id\":\"341f8b74\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"33df9dc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7bdec\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"90e6e83\"}],\"pp_display_conditions\":[{\"_id\":\"3e37d22\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"4cc70c2e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":49,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/Transparent-File-02-scaled.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"link_to\":\"custom\",\"space\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"ef1f052\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"7043833\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"space_mobile_extra\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"space_tablet_extra\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"29f8b7e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":80},\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"13efff7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4ba59b9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9a413e\"}],\"pp_display_conditions\":[{\"_id\":\"6633050\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"flex_align_items\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"flex_direction_mobile\":\"row-reverse\",\"flex_justify_content_mobile\":\"flex-start\",\"flex_wrap_mobile\":\"nowrap\"},\"elements\":[{\"id\":\"55ad1095\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"pointer\":\"none\",\"toggle_label\":\"Menu\",\"pp_display_conditions\":[{\"_id\":\"6d90ae3\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"menu_type\":\"off-canvas\",\"toggle_align\":\"right\",\"toggle_background_color\":\"#02010100\",\"toggle_background_color_hover\":\"#02010100\",\"offcanvas_position\":\"right\",\"close_icon_background_color\":\"#02010100\",\"close_icon_background_color_hover\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_weight\":\"500\",\"__globals__\":{\"toggle_color\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_color_hover\":\"globals\\/colors?id=astglobalcolor3\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor5\",\"mobile_sub_link_color\":\"globals\\/colors?id=astglobalcolor5\",\"mobile_sub_link_bg_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor5\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_hover\":\"globals\\/colors?id=astglobalcolor5\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"close_icon_color_hover\":\"globals\\/colors?id=astglobalcolor5\",\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item\":\"globals\\/colors?id=astglobalcolor5\",\"background_color_dropdown_item\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor5\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor5\",\"background_color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"dropdown_divider_color\":\"\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"menu_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"color_menu_item\":\"#1e293b\",\"color_menu_item_hover\":\"#00bfff\",\"color_menu_item_active\":\"#00bfff\",\"color_dropdown_item\":\"#FFFFFF\",\"background_color_dropdown_item\":\"#48aaad\",\"color_dropdown_item_hover\":\"#1e293b\",\"background_color_dropdown_item_hover\":\"#00bfff\",\"color_dropdown_item_active\":\"#1e293b\",\"background_color_dropdown_item_active\":\"#00bfff\",\"dropdown_divider_border\":\"solid\",\"dropdown_divider_color\":\"#F0F5FA36\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"toggle_color\":\"#48aaad\",\"toggle_color_hover\":\"#334155\",\"overlay_bg_color\":\"#1e293b\",\"mobile_link_color\":\"#FFFFFF\",\"mobile_sub_link_bg_color\":\"#1e293b\",\"mobile_sub_link_color\":\"#334155\",\"mobile_link_hover\":\"#FFFFFF\",\"mobile_link_bg_hover\":\"#48aaad\",\"mobile_sub_link_bg_hover\":\"#48aaad\",\"mobile_sub_link_hover\":\"#1e293b\",\"close_icon_color\":\"#FFFFFF\",\"close_icon_color_hover\":\"#FFFFFF\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"toggle_size_mobile\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"4027936a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"730407e\",\"pp_condition_date_time_before_value\":\"2024-10-27 14:19\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"348be72f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":201,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":164,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f25b0fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8462f23\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f25e330\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"pp_condition_key\":\"page\",\"pp_condition_operator\":\"not\",\"_id\":\"eda4653\",\"pp_condition_page_value\":[\"10\"],\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"\"},\"background_overlay_color\":\"#48aaad\",\"background_overlay_color_b\":\"#1E293B52\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"css_classes\":\"header-breadcrumbs-section\",\"pp_display_conditions_enable\":\"yes\"},\"elements\":[{\"id\":\"13f6f159\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"page-title\\\" settings=\\\"%7B%22include_context%22%3A%22%22%2C%22show_home_title%22%3A%22%22%2C%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3b30e8f\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"}],\"isInner\":false}]'),
(410, 55, '_wp_attached_file', '2026/01/182_2-3-copyright.jpg'),
(411, 55, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:980;s:4:\"file\";s:29:\"2026/01/182_2-3-copyright.jpg\";s:8:\"filesize\";i:69007;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"182_2-3-copyright-300x153.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:153;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7406;}s:5:\"large\";a:5:{s:4:\"file\";s:30:\"182_2-3-copyright-1024x523.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:523;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44144;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"182_2-3-copyright-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4131;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:29:\"182_2-3-copyright-768x392.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:392;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28648;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:30:\"182_2-3-copyright-1536x784.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:784;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:79883;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(412, 56, '_wp_attached_file', '2026/01/182_2-2-copyright.jpg'),
(413, 56, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:980;s:4:\"file\";s:29:\"2026/01/182_2-2-copyright.jpg\";s:8:\"filesize\";i:51262;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"182_2-2-copyright-300x153.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:153;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5621;}s:5:\"large\";a:5:{s:4:\"file\";s:30:\"182_2-2-copyright-1024x523.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:523;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33508;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"182_2-2-copyright-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3280;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:29:\"182_2-2-copyright-768x392.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:392;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21453;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:30:\"182_2-2-copyright-1536x784.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:784;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61412;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(414, 57, '_wp_attached_file', '2026/01/182_2-1-copyright.jpg'),
(415, 57, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:980;s:4:\"file\";s:29:\"2026/01/182_2-1-copyright.jpg\";s:8:\"filesize\";i:115782;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"182_2-1-copyright-300x153.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:153;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8494;}s:5:\"large\";a:5:{s:4:\"file\";s:30:\"182_2-1-copyright-1024x523.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:523;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58747;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"182_2-1-copyright-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4698;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:29:\"182_2-1-copyright-768x392.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:392;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36488;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:30:\"182_2-1-copyright-1536x784.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:784;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:112870;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(445, 61, '_elementor_edit_mode', 'builder'),
(446, 61, '_elementor_template_type', 'wp-page'),
(447, 61, '_elementor_version', '3.34.0'),
(448, 61, '_elementor_pro_version', '3.17.1'),
(449, 61, '_wp_page_template', 'default'),
(450, 61, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"px\",\"size\":680,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"},{\"id\":56,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-2-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false}]'),
(2052, 238, '_elementor_page_settings', 'a:0:{}'),
(436, 60, '_elementor_edit_mode', 'builder'),
(437, 60, '_elementor_template_type', 'wp-page'),
(438, 60, '_elementor_version', '3.34.0'),
(439, 60, '_elementor_pro_version', '3.17.1'),
(440, 60, '_wp_page_template', 'default'),
(441, 60, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"px\",\"size\":680,\"sizes\":[]},\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false}]'),
(443, 60, '_elementor_page_settings', 'a:0:{}'),
(457, 62, '_elementor_edit_mode', 'builder'),
(458, 62, '_elementor_template_type', 'wp-page'),
(459, 62, '_elementor_version', '3.34.0'),
(535, 68, '_elementor_edit_mode', 'builder'),
(536, 68, '_elementor_template_type', 'wp-page'),
(537, 68, '_elementor_version', '3.34.0'),
(538, 68, '_elementor_pro_version', '3.17.1'),
(539, 68, '_wp_page_template', 'default'),
(540, 68, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"px\",\"size\":680,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"},{\"id\":56,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-2-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false}]'),
(464, 62, '_elementor_page_settings', 'a:0:{}'),
(2045, 238, '_elementor_edit_mode', 'builder'),
(2046, 238, '_elementor_template_type', 'wp-page'),
(2047, 238, '_elementor_version', '3.34.0'),
(2048, 238, '_elementor_pro_version', '3.17.1'),
(2049, 238, '_wp_page_template', 'default'),
(467, 63, '_elementor_edit_mode', 'builder'),
(468, 63, '_elementor_template_type', 'wp-page'),
(469, 63, '_elementor_version', '3.34.0'),
(470, 63, '_elementor_pro_version', '3.17.1'),
(471, 63, '_wp_page_template', 'default'),
(472, 63, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"px\",\"size\":680,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"},{\"id\":56,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-2-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false}]'),
(474, 63, '_elementor_page_settings', 'a:0:{}');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2050, 238, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(477, 64, '_elementor_edit_mode', 'builder'),
(478, 64, '_elementor_template_type', 'wp-page'),
(479, 64, '_elementor_version', '3.34.0'),
(480, 64, '_elementor_pro_version', '3.17.1'),
(481, 64, '_wp_page_template', 'default'),
(482, 64, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"px\",\"size\":680,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"},{\"id\":56,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-2-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false}]'),
(603, 74, '_elementor_edit_mode', 'builder'),
(583, 72, '_elementor_edit_mode', 'builder'),
(584, 72, '_elementor_template_type', 'wp-page'),
(585, 72, '_elementor_version', '3.34.0'),
(586, 72, '_elementor_pro_version', '3.17.1'),
(587, 72, '_wp_page_template', 'default'),
(588, 72, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"},{\"id\":56,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-2-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false}]'),
(652, 80, '_elementor_edit_mode', 'builder'),
(497, 65, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(1324, 159, '_elementor_pro_version', '3.17.1'),
(1325, 159, '_wp_page_template', 'default'),
(1326, 159, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"},{\"id\":56,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-2-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}]},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(1328, 159, '_elementor_page_settings', 'a:0:{}'),
(4411, 486, '_elementor_page_settings', 'a:0:{}'),
(4413, 487, '_elementor_template_type', 'wp-page'),
(4414, 487, '_elementor_version', '3.34.2'),
(4415, 487, '_elementor_pro_version', '3.34.2'),
(4416, 487, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4417, 487, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\",\"id\":57,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle ANMELDELSER\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]}},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"HVORFOR V\\u00c6LGE CP NORDIC ApS?\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79206f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>N\\u00e5r du v\\u00e6lger CP NORDIC ApS, f\\u00e5r du:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"44023b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/teamwork_4546121.svg\",\"id\":472},\"library\":\"svg\"},\"title_text\":\"et ungt og engageret team\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/effective_1401921.svg\",\"id\":474},\"library\":\"svg\"},\"title_text\":\"fokus p\\u00e5 kvalitet og detaljer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/communication_18765280.svg\",\"id\":479},\"library\":\"svg\"},\"title_text\":\"\\u00e6rlig<br> r\\u00e5dgivning\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/brainstorming_11663441.svg\",\"id\":480},\"library\":\"svg\"},\"title_text\":\"gennemt\\u00e6nkte l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c0f2190\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"327bd23\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/like_3941426.svg\",\"id\":481},\"library\":\"svg\"},\"title_text\":\"arbejde udf\\u00f8rt med ansvar\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1331, 160, '_elementor_edit_mode', 'builder'),
(1332, 160, '_elementor_template_type', 'wp-page'),
(1333, 160, '_elementor_version', '3.34.0'),
(1334, 160, '_elementor_pro_version', '3.17.1'),
(1335, 160, '_wp_page_template', 'default'),
(1336, 160, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"},{\"id\":56,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-2-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"3274ff7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(733, 90, '_elementor_source', 'post'),
(720, 89, '_elementor_source', 'post'),
(520, 67, '_elementor_source', 'post'),
(521, 67, '_elementor_edit_mode', 'builder'),
(522, 67, '_elementor_template_type', 'header'),
(523, 67, '_elementor_version', '3.34.0'),
(524, 67, '_elementor_pro_version', '3.17.1'),
(525, 67, '_wp_page_template', 'default'),
(526, 67, '_elementor_data', '[{\"id\":\"1429e242\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29f1307\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fa260ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cedb743\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"007c566\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"z_index\":1},\"elements\":[{\"id\":\"5ffd1cde\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_justify_content_tablet_extra\":\"center\",\"flex_align_items\":\"center\",\"flex_wrap_tablet_extra\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f9f92a0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d292bd0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad6ad10\"}],\"pp_display_conditions\":[{\"_id\":\"a7020fb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_widescreen\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6e69ad7a\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"XXX-XXX-XXX\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"f9bb7da\",\"link\":{\"url\":\"tel:XXX-XXX-XXX\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"1ee7ee1\",\"link\":{\"url\":\"mailto:info@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align_tablet_extra\":\"center\",\"icon_color\":\"#fafafa\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#ffffff\",\"pp_display_conditions\":[{\"_id\":\"687bdf5\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"\"},\"icon_color_hover\":\"#E4E4E4\",\"text_color_hover\":\"#E4E4E4\",\"divider\":\"yes\",\"divider_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"3027eeaf\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-end\",\"flex_justify_content_tablet_extra\":\"center\",\"flex_align_items\":\"center\",\"flex_wrap_tablet_extra\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f9f92a0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d292bd0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad6ad10\"}],\"pp_display_conditions\":[{\"_id\":\"a7020fb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_widescreen\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"557e3125\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"1a75682\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"da32d70\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"12fb34f\"}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"589cdcb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor5\"},\"icon_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"67407e3b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2e8ba73\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f52efb8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"717f375\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"394af17\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"flex_wrap_mobile\":\"nowrap\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-123\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"341f8b74\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"33df9dc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7bdec\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"90e6e83\"}],\"pp_display_conditions\":[{\"_id\":\"3e37d22\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"4cc70c2e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":49,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/Transparent-File-02-scaled.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"link_to\":\"custom\",\"space\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"ef1f052\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"7043833\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"space_mobile_extra\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"space_tablet_extra\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"29f8b7e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":80},\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"13efff7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4ba59b9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9a413e\"}],\"pp_display_conditions\":[{\"_id\":\"6633050\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"flex_align_items\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"flex_direction_mobile\":\"row-reverse\",\"flex_justify_content_mobile\":\"flex-start\",\"flex_wrap_mobile\":\"nowrap\"},\"elements\":[{\"id\":\"55ad1095\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"pointer\":\"none\",\"toggle_label\":\"Menu\",\"pp_display_conditions\":[{\"_id\":\"6d90ae3\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"menu_type\":\"off-canvas\",\"toggle_align\":\"right\",\"toggle_background_color\":\"#02010100\",\"toggle_background_color_hover\":\"#02010100\",\"offcanvas_position\":\"right\",\"close_icon_background_color\":\"#02010100\",\"close_icon_background_color_hover\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_weight\":\"500\",\"__globals__\":{\"toggle_color\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_color_hover\":\"globals\\/colors?id=astglobalcolor3\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor5\",\"mobile_sub_link_color\":\"globals\\/colors?id=astglobalcolor5\",\"mobile_sub_link_bg_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor5\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_hover\":\"globals\\/colors?id=astglobalcolor5\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"close_icon_color_hover\":\"globals\\/colors?id=astglobalcolor5\",\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item\":\"globals\\/colors?id=astglobalcolor5\",\"background_color_dropdown_item\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor5\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor5\",\"background_color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"dropdown_divider_color\":\"\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"menu_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"color_menu_item\":\"#1e293b\",\"color_menu_item_hover\":\"#00bfff\",\"color_menu_item_active\":\"#00bfff\",\"color_dropdown_item\":\"#FFFFFF\",\"background_color_dropdown_item\":\"#48aaad\",\"color_dropdown_item_hover\":\"#1e293b\",\"background_color_dropdown_item_hover\":\"#00bfff\",\"color_dropdown_item_active\":\"#1e293b\",\"background_color_dropdown_item_active\":\"#00bfff\",\"dropdown_divider_border\":\"solid\",\"dropdown_divider_color\":\"#F0F5FA36\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"toggle_color\":\"#48aaad\",\"toggle_color_hover\":\"#334155\",\"overlay_bg_color\":\"#1e293b\",\"mobile_link_color\":\"#FFFFFF\",\"mobile_sub_link_bg_color\":\"#1e293b\",\"mobile_sub_link_color\":\"#334155\",\"mobile_link_hover\":\"#FFFFFF\",\"mobile_link_bg_hover\":\"#48aaad\",\"mobile_sub_link_bg_hover\":\"#48aaad\",\"mobile_sub_link_hover\":\"#1e293b\",\"close_icon_color\":\"#FFFFFF\",\"close_icon_color_hover\":\"#FFFFFF\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"toggle_size_mobile\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"4027936a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"730407e\",\"pp_condition_date_time_before_value\":\"2024-10-27 14:19\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"348be72f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":201,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":164,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f25b0fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8462f23\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f25e330\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"pp_condition_key\":\"page\",\"pp_condition_operator\":\"not\",\"_id\":\"eda4653\",\"pp_condition_page_value\":[\"10\"],\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"\"},\"background_overlay_color\":\"#48aaad\",\"background_overlay_color_b\":\"#1E293B52\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"css_classes\":\"header-breadcrumbs-section\",\"pp_display_conditions_enable\":\"yes\"},\"elements\":[{\"id\":\"13f6f159\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"page-title\\\" settings=\\\"%7B%22include_context%22%3A%22%22%2C%22show_home_title%22%3A%22%22%2C%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3b30e8f\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"}],\"isInner\":false}]'),
(512, 66, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(1299, 157, '_elementor_template_type', 'wp-page'),
(1300, 157, '_elementor_version', '3.34.0'),
(1301, 157, '_elementor_pro_version', '3.17.1'),
(1302, 157, '_wp_page_template', 'default'),
(1303, 157, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"},{\"id\":56,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-2-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}]},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(1318, 158, '_elementor_page_settings', 'a:0:{}'),
(1321, 159, '_elementor_edit_mode', 'builder'),
(1322, 159, '_elementor_template_type', 'wp-page'),
(1323, 159, '_elementor_version', '3.34.0'),
(568, 71, '_elementor_source', 'post'),
(569, 71, '_elementor_edit_mode', 'builder'),
(570, 71, '_elementor_template_type', 'header'),
(571, 71, '_elementor_version', '3.34.0'),
(572, 71, '_elementor_pro_version', '3.17.1'),
(573, 71, '_wp_page_template', 'default'),
(574, 71, '_elementor_data', '[{\"id\":\"1429e242\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29f1307\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fa260ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cedb743\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"007c566\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"z_index\":1},\"elements\":[{\"id\":\"5ffd1cde\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_justify_content_tablet_extra\":\"center\",\"flex_align_items\":\"center\",\"flex_wrap_tablet_extra\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f9f92a0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d292bd0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad6ad10\"}],\"pp_display_conditions\":[{\"_id\":\"a7020fb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_widescreen\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6e69ad7a\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"XXX-XXX-XXX\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"f9bb7da\",\"link\":{\"url\":\"tel:XXX-XXX-XXX\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"1ee7ee1\",\"link\":{\"url\":\"mailto:info@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align_tablet_extra\":\"center\",\"icon_color\":\"#fafafa\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#ffffff\",\"pp_display_conditions\":[{\"_id\":\"687bdf5\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"\"},\"icon_color_hover\":\"#E4E4E4\",\"text_color_hover\":\"#E4E4E4\",\"divider\":\"yes\",\"divider_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"3027eeaf\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-end\",\"flex_justify_content_tablet_extra\":\"center\",\"flex_align_items\":\"center\",\"flex_wrap_tablet_extra\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f9f92a0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d292bd0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad6ad10\"}],\"pp_display_conditions\":[{\"_id\":\"a7020fb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_widescreen\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"557e3125\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"1a75682\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"da32d70\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"12fb34f\"}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"589cdcb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor5\"},\"icon_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"67407e3b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2e8ba73\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f52efb8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"717f375\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"394af17\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"flex_wrap_mobile\":\"nowrap\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-123\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"341f8b74\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"33df9dc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7bdec\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"90e6e83\"}],\"pp_display_conditions\":[{\"_id\":\"3e37d22\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"4cc70c2e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":49,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/Transparent-File-02-scaled.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"link_to\":\"custom\",\"space\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"ef1f052\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"7043833\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"space_mobile_extra\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"space_tablet_extra\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"29f8b7e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":80},\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"13efff7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4ba59b9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9a413e\"}],\"pp_display_conditions\":[{\"_id\":\"6633050\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"flex_align_items\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"flex_direction_mobile\":\"row-reverse\",\"flex_justify_content_mobile\":\"flex-start\",\"flex_wrap_mobile\":\"nowrap\"},\"elements\":[{\"id\":\"55ad1095\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"pointer\":\"none\",\"toggle_label\":\"Menu\",\"pp_display_conditions\":[{\"_id\":\"6d90ae3\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"menu_type\":\"off-canvas\",\"toggle_align\":\"right\",\"toggle_background_color\":\"#02010100\",\"toggle_background_color_hover\":\"#02010100\",\"offcanvas_position\":\"right\",\"close_icon_background_color\":\"#02010100\",\"close_icon_background_color_hover\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_weight\":\"500\",\"__globals__\":{\"toggle_color\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_color_hover\":\"globals\\/colors?id=astglobalcolor3\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor5\",\"mobile_sub_link_color\":\"globals\\/colors?id=astglobalcolor5\",\"mobile_sub_link_bg_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor5\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_hover\":\"globals\\/colors?id=astglobalcolor5\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"close_icon_color_hover\":\"globals\\/colors?id=astglobalcolor5\",\"color_menu_item\":\"globals\\/colors?id=astglobalcolor4\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item\":\"globals\\/colors?id=astglobalcolor5\",\"background_color_dropdown_item\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor5\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor5\",\"background_color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"dropdown_divider_color\":\"\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"menu_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"color_menu_item\":\"#1e293b\",\"color_menu_item_hover\":\"#00bfff\",\"color_menu_item_active\":\"#00bfff\",\"color_dropdown_item\":\"#FFFFFF\",\"background_color_dropdown_item\":\"#48aaad\",\"color_dropdown_item_hover\":\"#1e293b\",\"background_color_dropdown_item_hover\":\"#00bfff\",\"color_dropdown_item_active\":\"#1e293b\",\"background_color_dropdown_item_active\":\"#00bfff\",\"dropdown_divider_border\":\"solid\",\"dropdown_divider_color\":\"#F0F5FA36\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"toggle_color\":\"#48aaad\",\"toggle_color_hover\":\"#334155\",\"overlay_bg_color\":\"#1e293b\",\"mobile_link_color\":\"#FFFFFF\",\"mobile_sub_link_bg_color\":\"#1e293b\",\"mobile_sub_link_color\":\"#334155\",\"mobile_link_hover\":\"#FFFFFF\",\"mobile_link_bg_hover\":\"#48aaad\",\"mobile_sub_link_bg_hover\":\"#48aaad\",\"mobile_sub_link_hover\":\"#1e293b\",\"close_icon_color\":\"#FFFFFF\",\"close_icon_color_hover\":\"#FFFFFF\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"toggle_size_mobile\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"4027936a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"730407e\",\"pp_condition_date_time_before_value\":\"2024-10-27 14:19\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"348be72f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":201,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":164,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f25b0fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8462f23\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f25e330\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"pp_condition_key\":\"page\",\"pp_condition_operator\":\"not\",\"_id\":\"eda4653\",\"pp_condition_page_value\":[\"10\"],\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"\"},\"background_overlay_color\":\"#48aaad\",\"background_overlay_color_b\":\"#1E293B52\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"css_classes\":\"header-breadcrumbs-section\",\"pp_display_conditions_enable\":\"yes\"},\"elements\":[{\"id\":\"13f6f159\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"page-title\\\" settings=\\\"%7B%22include_context%22%3A%22%22%2C%22show_home_title%22%3A%22%22%2C%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3b30e8f\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"}],\"isInner\":false}]'),
(527, 67, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(1285, 155, '_elementor_page_settings', 'a:0:{}'),
(1288, 156, '_elementor_edit_mode', 'builder'),
(1289, 156, '_elementor_template_type', 'wp-page'),
(1290, 156, '_elementor_version', '3.34.0'),
(1291, 156, '_elementor_pro_version', '3.17.1'),
(1292, 156, '_wp_page_template', 'default'),
(1293, 156, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"},{\"id\":56,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-2-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}]},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(1295, 156, '_elementor_page_settings', 'a:0:{}');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1298, 157, '_elementor_edit_mode', 'builder'),
(721, 89, '_elementor_edit_mode', 'builder'),
(722, 89, '_elementor_template_type', 'header'),
(723, 89, '_elementor_version', '3.34.0'),
(724, 89, '_elementor_pro_version', '3.17.1'),
(725, 89, '_wp_page_template', 'default'),
(726, 89, '_elementor_data', '[{\"id\":\"1429e242\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29f1307\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fa260ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cedb743\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"007c566\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"z_index\":1},\"elements\":[{\"id\":\"5ffd1cde\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_justify_content_tablet_extra\":\"center\",\"flex_align_items\":\"center\",\"flex_wrap_tablet_extra\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f9f92a0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d292bd0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad6ad10\"}],\"pp_display_conditions\":[{\"_id\":\"a7020fb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_widescreen\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6e69ad7a\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"XXX-XXX-XXX\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"f9bb7da\",\"link\":{\"url\":\"tel:XXX-XXX-XXX\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"1ee7ee1\",\"link\":{\"url\":\"mailto:info@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align_tablet_extra\":\"center\",\"icon_color\":\"#fafafa\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#ffffff\",\"pp_display_conditions\":[{\"_id\":\"687bdf5\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"\"},\"icon_color_hover\":\"#E4E4E4\",\"text_color_hover\":\"#E4E4E4\",\"divider\":\"yes\",\"divider_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"3027eeaf\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-end\",\"flex_justify_content_tablet_extra\":\"center\",\"flex_align_items\":\"center\",\"flex_wrap_tablet_extra\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f9f92a0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d292bd0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad6ad10\"}],\"pp_display_conditions\":[{\"_id\":\"a7020fb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_widescreen\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"557e3125\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"1a75682\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"da32d70\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"12fb34f\"}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"589cdcb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor5\"},\"icon_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"67407e3b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2e8ba73\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f52efb8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"717f375\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"394af17\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"flex_wrap_mobile\":\"nowrap\",\"z_index\":1},\"elements\":[{\"id\":\"341f8b74\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"33df9dc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7bdec\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"90e6e83\"}],\"pp_display_conditions\":[{\"_id\":\"3e37d22\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"4cc70c2e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/Transparent-File-01-scaled.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"link_to\":\"custom\",\"space\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"ef1f052\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"7043833\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"space_mobile_extra\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"space_tablet_extra\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"29f8b7e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":80},\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"13efff7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4ba59b9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9a413e\"}],\"pp_display_conditions\":[{\"_id\":\"6633050\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"flex_align_items\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"flex_direction_mobile\":\"row-reverse\",\"flex_justify_content_mobile\":\"flex-start\",\"flex_wrap_mobile\":\"nowrap\"},\"elements\":[{\"id\":\"55ad1095\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"pointer\":\"none\",\"toggle_label\":\"Menu\",\"pp_display_conditions\":[{\"_id\":\"6d90ae3\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"menu_type\":\"off-canvas\",\"toggle_align\":\"right\",\"toggle_background_color\":\"#02010100\",\"toggle_background_color_hover\":\"#02010100\",\"offcanvas_position\":\"right\",\"close_icon_background_color\":\"#02010100\",\"close_icon_background_color_hover\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_weight\":\"500\",\"__globals__\":{\"toggle_color\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_color_hover\":\"globals\\/colors?id=astglobalcolor3\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor5\",\"mobile_sub_link_color\":\"globals\\/colors?id=astglobalcolor5\",\"mobile_sub_link_bg_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor5\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_hover\":\"globals\\/colors?id=astglobalcolor5\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"close_icon_color_hover\":\"globals\\/colors?id=astglobalcolor5\",\"color_menu_item\":\"globals\\/colors?id=astglobalcolor4\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item\":\"globals\\/colors?id=astglobalcolor5\",\"background_color_dropdown_item\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor5\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor5\",\"background_color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"dropdown_divider_color\":\"\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"menu_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"color_menu_item\":\"#1e293b\",\"color_menu_item_hover\":\"#00bfff\",\"color_menu_item_active\":\"#00bfff\",\"color_dropdown_item\":\"#FFFFFF\",\"background_color_dropdown_item\":\"#48aaad\",\"color_dropdown_item_hover\":\"#1e293b\",\"background_color_dropdown_item_hover\":\"#00bfff\",\"color_dropdown_item_active\":\"#1e293b\",\"background_color_dropdown_item_active\":\"#00bfff\",\"dropdown_divider_border\":\"solid\",\"dropdown_divider_color\":\"#F0F5FA36\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"toggle_color\":\"#48aaad\",\"toggle_color_hover\":\"#334155\",\"overlay_bg_color\":\"#1e293b\",\"mobile_link_color\":\"#FFFFFF\",\"mobile_sub_link_bg_color\":\"#1e293b\",\"mobile_sub_link_color\":\"#334155\",\"mobile_link_hover\":\"#FFFFFF\",\"mobile_link_bg_hover\":\"#48aaad\",\"mobile_sub_link_bg_hover\":\"#48aaad\",\"mobile_sub_link_hover\":\"#1e293b\",\"close_icon_color\":\"#FFFFFF\",\"close_icon_color_hover\":\"#FFFFFF\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"toggle_size_mobile\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"4027936a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"730407e\",\"pp_condition_date_time_before_value\":\"2024-10-27 14:19\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"348be72f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":201,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":164,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f25b0fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8462f23\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f25e330\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"pp_condition_key\":\"page\",\"pp_condition_operator\":\"not\",\"_id\":\"eda4653\",\"pp_condition_page_value\":[\"10\"],\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"\"},\"background_overlay_color\":\"#48aaad\",\"background_overlay_color_b\":\"#1E293B52\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"css_classes\":\"header-breadcrumbs-section\",\"pp_display_conditions_enable\":\"yes\"},\"elements\":[{\"id\":\"13f6f159\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"page-title\\\" settings=\\\"%7B%22include_context%22%3A%22%22%2C%22show_home_title%22%3A%22%22%2C%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3b30e8f\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"}],\"isInner\":false}]'),
(542, 68, '_elementor_page_settings', 'a:0:{}'),
(545, 69, '_elementor_edit_mode', 'builder'),
(546, 69, '_elementor_template_type', 'wp-page'),
(547, 69, '_elementor_version', '3.34.0'),
(548, 69, '_elementor_pro_version', '3.17.1'),
(549, 69, '_wp_page_template', 'default'),
(550, 69, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"px\",\"size\":680,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"},{\"id\":56,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-2-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false}]'),
(552, 69, '_elementor_page_settings', 'a:0:{}'),
(555, 70, '_elementor_edit_mode', 'builder'),
(556, 70, '_elementor_template_type', 'wp-page'),
(557, 70, '_elementor_version', '3.34.0'),
(558, 70, '_elementor_pro_version', '3.17.1'),
(559, 70, '_wp_page_template', 'default'),
(560, 70, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"},{\"id\":56,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-2-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false}]'),
(1311, 158, '_elementor_edit_mode', 'builder'),
(1312, 158, '_elementor_template_type', 'wp-page'),
(1313, 158, '_elementor_version', '3.34.0'),
(1314, 158, '_elementor_pro_version', '3.17.1'),
(1315, 158, '_wp_page_template', 'default'),
(1316, 158, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"},{\"id\":56,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-2-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}]},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(641, 79, '_elementor_edit_mode', 'builder'),
(621, 77, '_elementor_edit_mode', 'builder'),
(622, 77, '_elementor_template_type', 'wp-page'),
(623, 77, '_elementor_version', '3.34.0'),
(624, 77, '_elementor_pro_version', '3.17.1'),
(625, 77, '_wp_page_template', 'default'),
(626, 77, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"},{\"id\":56,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-2-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP-NORDIC\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false}]'),
(575, 71, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(1258, 152, '_elementor_page_settings', 'a:0:{}'),
(1259, 153, '_elementor_edit_mode', 'builder'),
(1260, 153, '_elementor_template_type', 'wp-page'),
(1261, 153, '_elementor_version', '3.34.0'),
(1262, 153, '_elementor_pro_version', '3.17.1'),
(1263, 153, '_wp_page_template', 'default'),
(1264, 153, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"},{\"id\":56,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-2-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}]},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(1266, 153, '_elementor_page_settings', 'a:0:{}'),
(1268, 154, '_elementor_template_type', 'wp-page'),
(1269, 154, '_elementor_version', '3.34.0'),
(1270, 154, '_elementor_pro_version', '3.17.1'),
(1271, 154, '_wp_page_template', 'default'),
(1272, 154, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"},{\"id\":56,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-2-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}]},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(1278, 155, '_elementor_edit_mode', 'builder'),
(1279, 155, '_elementor_template_type', 'wp-page'),
(1280, 155, '_elementor_version', '3.34.0'),
(1281, 155, '_elementor_pro_version', '3.17.1'),
(1282, 155, '_wp_page_template', 'default'),
(1283, 155, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"},{\"id\":56,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-2-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}]},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(1344, 161, '_elementor_edit_mode', 'builder'),
(1345, 161, '_elementor_template_type', 'wp-page'),
(1346, 161, '_elementor_version', '3.34.0'),
(1347, 161, '_elementor_pro_version', '3.17.1'),
(1348, 161, '_wp_page_template', 'default'),
(1349, 161, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"},{\"id\":56,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-2-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"3274ff7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(1377, 165, '_wp_attached_file', '2026/01/restaurant_14493881.svg'),
(1378, 165, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:614;s:5:\"width\";i:48;s:6:\"height\";i:48;}'),
(734, 90, '_elementor_edit_mode', 'builder'),
(735, 90, '_elementor_template_type', 'header'),
(736, 90, '_elementor_version', '3.34.0'),
(737, 90, '_elementor_pro_version', '3.17.1'),
(738, 90, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(739, 90, '_elementor_data', '[{\"id\":\"1429e242\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29f1307\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fa260ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cedb743\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"007c566\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"z_index\":1},\"elements\":[{\"id\":\"5ffd1cde\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_justify_content_tablet_extra\":\"center\",\"flex_align_items\":\"center\",\"flex_wrap_tablet_extra\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f9f92a0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d292bd0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad6ad10\"}],\"pp_display_conditions\":[{\"_id\":\"a7020fb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_widescreen\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6e69ad7a\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"XXX-XXX-XXX\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"f9bb7da\",\"link\":{\"url\":\"tel:XXX-XXX-XXX\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"1ee7ee1\",\"link\":{\"url\":\"mailto:info@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align_tablet_extra\":\"center\",\"icon_color\":\"#fafafa\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#ffffff\",\"pp_display_conditions\":[{\"_id\":\"687bdf5\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"\"},\"icon_color_hover\":\"#E4E4E4\",\"text_color_hover\":\"#E4E4E4\",\"divider\":\"yes\",\"divider_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"3027eeaf\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-end\",\"flex_justify_content_tablet_extra\":\"center\",\"flex_align_items\":\"center\",\"flex_wrap_tablet_extra\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f9f92a0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d292bd0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad6ad10\"}],\"pp_display_conditions\":[{\"_id\":\"a7020fb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_widescreen\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"557e3125\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"1a75682\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"da32d70\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"12fb34f\"}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"589cdcb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor5\"},\"icon_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"67407e3b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2e8ba73\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f52efb8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"717f375\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"394af17\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"flex_wrap_mobile\":\"nowrap\",\"z_index\":1},\"elements\":[{\"id\":\"341f8b74\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"33df9dc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7bdec\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"90e6e83\"}],\"pp_display_conditions\":[{\"_id\":\"3e37d22\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"4cc70c2e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/Transparent-File-01-scaled.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"link_to\":\"custom\",\"space\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"ef1f052\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"7043833\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"space_mobile_extra\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"space_tablet_extra\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"29f8b7e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":80},\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"13efff7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4ba59b9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9a413e\"}],\"pp_display_conditions\":[{\"_id\":\"6633050\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"flex_align_items\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"flex_direction_mobile\":\"row-reverse\",\"flex_justify_content_mobile\":\"flex-start\",\"flex_wrap_mobile\":\"nowrap\"},\"elements\":[{\"id\":\"55ad1095\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"pointer\":\"none\",\"toggle_label\":\"Menu\",\"pp_display_conditions\":[{\"_id\":\"6d90ae3\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"menu_type\":\"off-canvas\",\"toggle_align\":\"right\",\"toggle_background_color\":\"#02010100\",\"toggle_background_color_hover\":\"#02010100\",\"offcanvas_position\":\"right\",\"close_icon_background_color\":\"#02010100\",\"close_icon_background_color_hover\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_weight\":\"500\",\"__globals__\":{\"toggle_color\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_color_hover\":\"globals\\/colors?id=astglobalcolor3\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor5\",\"mobile_sub_link_color\":\"globals\\/colors?id=astglobalcolor5\",\"mobile_sub_link_bg_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor5\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_hover\":\"globals\\/colors?id=astglobalcolor5\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"close_icon_color_hover\":\"globals\\/colors?id=astglobalcolor5\",\"color_menu_item\":\"globals\\/colors?id=astglobalcolor6\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item\":\"globals\\/colors?id=astglobalcolor5\",\"background_color_dropdown_item\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor5\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor5\",\"background_color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"dropdown_divider_color\":\"\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"menu_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"color_menu_item_hover\":\"#045cb4\",\"color_menu_item_active\":\"#045cb4\",\"color_dropdown_item\":\"#F0F5FA\",\"background_color_dropdown_item\":\"#046bd2\",\"color_dropdown_item_hover\":\"#F0F5FA\",\"background_color_dropdown_item_hover\":\"#045cb4\",\"color_dropdown_item_active\":\"#F0F5FA\",\"background_color_dropdown_item_active\":\"#045cb4\",\"dropdown_divider_border\":\"solid\",\"dropdown_divider_color\":\"#F0F5FA36\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"toggle_color\":\"#046bd2\",\"toggle_color_hover\":\"#334155\",\"overlay_bg_color\":\"#1e293b\",\"mobile_link_color\":\"#F0F5FA\",\"mobile_sub_link_bg_color\":\"#1e293b\",\"mobile_sub_link_color\":\"#F0F5FA\",\"mobile_link_hover\":\"#F0F5FA\",\"mobile_link_bg_hover\":\"#046bd2\",\"mobile_sub_link_bg_hover\":\"#046bd2\",\"mobile_sub_link_hover\":\"#F0F5FA\",\"close_icon_color\":\"#F0F5FA\",\"close_icon_color_hover\":\"#F0F5FA\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"toggle_size_mobile\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"4027936a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"730407e\",\"pp_condition_date_time_before_value\":\"2024-10-27 14:19\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"348be72f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":201,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":164,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f25b0fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8462f23\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f25e330\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"pp_condition_key\":\"page\",\"pp_condition_operator\":\"not\",\"_id\":\"eda4653\",\"pp_condition_page_value\":[\"10\"],\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"\"},\"background_overlay_color\":\"#48aaad\",\"background_overlay_color_b\":\"#1E293B52\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"css_classes\":\"header-breadcrumbs-section\",\"pp_display_conditions_enable\":\"yes\"},\"elements\":[{\"id\":\"13f6f159\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"page-title\\\" settings=\\\"%7B%22include_context%22%3A%22%22%2C%22show_home_title%22%3A%22%22%2C%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3b30e8f\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"}],\"isInner\":false}]'),
(590, 72, '_elementor_page_settings', 'a:0:{}'),
(593, 73, '_elementor_edit_mode', 'builder'),
(594, 73, '_elementor_template_type', 'wp-page'),
(595, 73, '_elementor_version', '3.34.0'),
(596, 73, '_elementor_pro_version', '3.17.1'),
(597, 73, '_wp_page_template', 'default'),
(598, 73, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"},{\"id\":56,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-2-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false}]'),
(600, 73, '_elementor_page_settings', 'a:0:{}'),
(4913, 539, '_elementor_version', '3.34.2'),
(4914, 539, '_elementor_pro_version', '3.34.2'),
(4915, 539, '_wp_page_template', 'default'),
(1451, 176, '_elementor_page_settings', 'a:0:{}'),
(604, 74, '_elementor_template_type', 'wp-page'),
(605, 74, '_elementor_version', '3.34.0'),
(606, 74, '_elementor_pro_version', '3.17.1'),
(607, 74, '_wp_page_template', 'default'),
(608, 74, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"},{\"id\":56,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-2-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP-NORDIC\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false}]'),
(653, 80, '_elementor_template_type', 'wp-page'),
(654, 80, '_elementor_version', '3.34.0'),
(655, 80, '_elementor_pro_version', '3.17.1'),
(656, 80, '_wp_page_template', 'default'),
(657, 80, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"},{\"id\":56,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-2-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false}]'),
(628, 77, '_elementor_page_settings', 'a:0:{}'),
(631, 78, '_elementor_edit_mode', 'builder'),
(632, 78, '_elementor_template_type', 'wp-page'),
(633, 78, '_elementor_version', '3.34.0'),
(634, 78, '_elementor_pro_version', '3.17.1'),
(635, 78, '_wp_page_template', 'default'),
(636, 78, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"},{\"id\":56,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-2-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP-NORDIC\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false}]'),
(638, 78, '_elementor_page_settings', 'a:0:{}'),
(642, 79, '_elementor_template_type', 'wp-page'),
(643, 79, '_elementor_version', '3.34.0'),
(644, 79, '_elementor_pro_version', '3.17.1'),
(645, 79, '_wp_page_template', 'default'),
(646, 79, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"},{\"id\":56,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-2-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false}]'),
(659, 80, '_elementor_page_settings', 'a:0:{}'),
(660, 81, '_elementor_edit_mode', 'builder'),
(661, 81, '_elementor_template_type', 'wp-page'),
(662, 81, '_elementor_version', '3.34.0'),
(663, 81, '_elementor_pro_version', '3.17.1'),
(664, 81, '_wp_page_template', 'default'),
(665, 81, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"},{\"id\":56,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-2-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false}]'),
(667, 81, '_elementor_page_settings', 'a:0:{}'),
(668, 82, '_elementor_edit_mode', 'builder'),
(669, 82, '_elementor_template_type', 'wp-page'),
(670, 82, '_elementor_version', '3.34.0'),
(671, 82, '_elementor_pro_version', '3.17.1'),
(672, 82, '_wp_page_template', 'default'),
(673, 82, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"},{\"id\":56,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-2-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}]},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(679, 83, '_elementor_edit_mode', 'builder'),
(680, 83, '_elementor_template_type', 'wp-page'),
(681, 83, '_elementor_version', '3.34.0'),
(682, 83, '_elementor_pro_version', '3.17.1'),
(683, 83, '_wp_page_template', 'default'),
(684, 83, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"},{\"id\":56,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-2-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}]},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(1132, 141, '_elementor_edit_mode', 'builder'),
(1133, 141, '_elementor_template_type', 'wp-page'),
(1134, 141, '_elementor_version', '3.34.0'),
(1135, 141, '_elementor_pro_version', '3.17.1'),
(1136, 141, '_wp_page_template', 'default'),
(1137, 141, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"},{\"id\":56,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-2-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}]},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(686, 83, '_elementor_page_settings', 'a:0:{}'),
(1507, 185, '_wp_page_template', 'default'),
(1508, 185, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"3274ff7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"ae4f379\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9a52583\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(689, 84, '_elementor_edit_mode', 'builder'),
(690, 84, '_elementor_template_type', 'wp-page'),
(691, 84, '_elementor_version', '3.34.0'),
(692, 84, '_elementor_pro_version', '3.17.1'),
(693, 84, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(694, 84, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"},{\"id\":56,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-2-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}]},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(696, 84, '_elementor_page_settings', 'a:0:{}'),
(1503, 185, '_elementor_edit_mode', 'builder'),
(1504, 185, '_elementor_template_type', 'wp-page'),
(1505, 185, '_elementor_version', '3.34.0'),
(1506, 185, '_elementor_pro_version', '3.17.1'),
(699, 85, '_elementor_edit_mode', 'builder'),
(700, 85, '_elementor_template_type', 'wp-page'),
(701, 85, '_elementor_version', '3.34.0'),
(702, 85, '_elementor_pro_version', '3.17.1'),
(703, 85, '_wp_page_template', 'default'),
(704, 85, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"},{\"id\":56,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-2-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}]},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(727, 89, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(4910, 538, '_elementor_page_settings', 'a:0:{}'),
(4911, 539, '_elementor_edit_mode', 'builder'),
(4912, 539, '_elementor_template_type', 'wp-page'),
(1444, 176, '_elementor_edit_mode', 'builder'),
(1445, 176, '_elementor_template_type', 'wp-page'),
(1446, 176, '_elementor_version', '3.34.0'),
(1447, 176, '_elementor_pro_version', '3.17.1'),
(1448, 176, '_wp_page_template', 'default'),
(1449, 176, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"},{\"id\":56,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-2-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"3274ff7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"ae4f379\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9a52583\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(1533, 188, '_elementor_edit_mode', 'builder'),
(1534, 188, '_elementor_template_type', 'wp-page'),
(1535, 188, '_elementor_version', '3.34.0'),
(1536, 188, '_elementor_pro_version', '3.17.1'),
(1537, 188, '_wp_page_template', 'default'),
(1538, 188, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"3274ff7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"ae4f379\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9a52583\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(1579, 192, '_elementor_page_settings', 'a:0:{}'),
(1580, 193, '_elementor_edit_mode', 'builder'),
(1581, 193, '_elementor_template_type', 'wp-page'),
(1582, 193, '_elementor_version', '3.34.0'),
(1583, 193, '_elementor_pro_version', '3.17.1'),
(1584, 193, '_wp_page_template', 'default'),
(1585, 193, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"3274ff7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"ae4f379\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9a52583\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(740, 90, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(5045, 550, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5046, 550, '_elementor_data', '[{\"id\":\"67407e3b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2e8ba73\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f52efb8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"717f375\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"394af17\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"flex_wrap_mobile\":\"nowrap\",\"z_index\":1,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FCFCFC17\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-124\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"\"}},\"elements\":[{\"id\":\"341f8b74\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"33df9dc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7bdec\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"90e6e83\"}],\"pp_display_conditions\":[{\"_id\":\"3e37d22\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"4cc70c2e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":49,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/Transparent-File-02-scaled.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"link_to\":\"custom\",\"space\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"ef1f052\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"7043833\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"space_mobile_extra\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"space_tablet_extra\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"29f8b7e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":80},\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"13efff7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4ba59b9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9a413e\"}],\"pp_display_conditions\":[{\"_id\":\"6633050\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"flex_align_items\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"flex_direction_mobile\":\"row-reverse\",\"flex_justify_content_mobile\":\"flex-start\",\"flex_wrap_mobile\":\"nowrap\"},\"elements\":[{\"id\":\"55ad1095\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"pointer\":\"none\",\"toggle_label\":\"Menu\",\"pp_display_conditions\":[{\"_id\":\"6d90ae3\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"menu_type\":\"off-canvas\",\"toggle_align\":\"right\",\"toggle_background_color\":\"#02010100\",\"toggle_background_color_hover\":\"#02010100\",\"offcanvas_position\":\"right\",\"close_icon_background_color\":\"#02010100\",\"close_icon_background_color_hover\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_weight\":\"500\",\"__globals__\":{\"toggle_color\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_color_hover\":\"globals\\/colors?id=astglobalcolor3\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor5\",\"mobile_sub_link_color\":\"globals\\/colors?id=astglobalcolor5\",\"mobile_sub_link_bg_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor5\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_hover\":\"globals\\/colors?id=astglobalcolor5\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"close_icon_color_hover\":\"globals\\/colors?id=astglobalcolor5\",\"color_menu_item\":\"globals\\/colors?id=astglobalcolor4\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor4\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor4\",\"color_dropdown_item\":\"globals\\/colors?id=astglobalcolor5\",\"background_color_dropdown_item\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor5\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor5\",\"background_color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"dropdown_divider_color\":\"\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"menu_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"color_menu_item_hover\":\"#045cb4\",\"color_menu_item_active\":\"#045cb4\",\"color_dropdown_item\":\"#F0F5FA\",\"background_color_dropdown_item\":\"#046bd2\",\"color_dropdown_item_hover\":\"#F0F5FA\",\"background_color_dropdown_item_hover\":\"#045cb4\",\"color_dropdown_item_active\":\"#F0F5FA\",\"background_color_dropdown_item_active\":\"#045cb4\",\"dropdown_divider_border\":\"solid\",\"dropdown_divider_color\":\"#F0F5FA36\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"toggle_color\":\"#046bd2\",\"toggle_color_hover\":\"#334155\",\"overlay_bg_color\":\"#1e293b\",\"mobile_link_color\":\"#F0F5FA\",\"mobile_sub_link_bg_color\":\"#1e293b\",\"mobile_sub_link_color\":\"#F0F5FA\",\"mobile_link_hover\":\"#F0F5FA\",\"mobile_link_bg_hover\":\"#046bd2\",\"mobile_sub_link_bg_hover\":\"#046bd2\",\"mobile_sub_link_hover\":\"#F0F5FA\",\"close_icon_color\":\"#F0F5FA\",\"close_icon_color_hover\":\"#F0F5FA\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"toggle_size_mobile\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"4027936a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"730407e\",\"pp_condition_date_time_before_value\":\"2024-10-27 14:19\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"348be72f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":201,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":164,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f25b0fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8462f23\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f25e330\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"pp_condition_key\":\"page\",\"pp_condition_operator\":\"not\",\"_id\":\"eda4653\",\"pp_condition_page_value\":[\"10\"],\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"\"},\"background_overlay_color\":\"#48aaad\",\"background_overlay_color_b\":\"#1E293B52\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"css_classes\":\"header-breadcrumbs-section\",\"pp_display_conditions_enable\":\"yes\"},\"elements\":[{\"id\":\"13f6f159\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"page-title\\\" settings=\\\"%7B%22include_context%22%3A%22%22%2C%22show_home_title%22%3A%22%22%2C%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3b30e8f\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"}],\"isInner\":false}]'),
(759, 92, '_elementor_source', 'post'),
(760, 92, '_elementor_edit_mode', 'builder'),
(761, 92, '_elementor_template_type', 'header'),
(762, 92, '_elementor_version', '3.34.0'),
(763, 92, '_elementor_pro_version', '3.17.1'),
(764, 92, '_wp_page_template', 'default'),
(765, 92, '_elementor_data', '[{\"id\":\"1429e242\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29f1307\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fa260ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cedb743\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"007c566\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"z_index\":1},\"elements\":[{\"id\":\"5ffd1cde\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_justify_content_tablet_extra\":\"center\",\"flex_align_items\":\"center\",\"flex_wrap_tablet_extra\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f9f92a0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d292bd0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad6ad10\"}],\"pp_display_conditions\":[{\"_id\":\"a7020fb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_widescreen\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6e69ad7a\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"41 60 00 40\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"f9bb7da\",\"link\":{\"url\":\"tel:41600040\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"kontakt@cp-nordic.dk\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"1ee7ee1\",\"link\":{\"url\":\"mailto:kontakt@cp-nordic.dk\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align_tablet_extra\":\"center\",\"icon_color\":\"#fafafa\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#ffffff\",\"pp_display_conditions\":[{\"_id\":\"687bdf5\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"\"},\"icon_color_hover\":\"#E4E4E4\",\"text_color_hover\":\"#E4E4E4\",\"divider\":\"yes\",\"divider_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"3027eeaf\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-end\",\"flex_justify_content_tablet_extra\":\"center\",\"flex_align_items\":\"center\",\"flex_wrap_tablet_extra\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f9f92a0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d292bd0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad6ad10\"}],\"pp_display_conditions\":[{\"_id\":\"a7020fb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_widescreen\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"557e3125\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"1a75682\",\"link\":{\"url\":\"https:\\/\\/www.facebook.com\\/cpnordic\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"da32d70\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/cpnordic\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"589cdcb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor5\"},\"icon_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"67407e3b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2e8ba73\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f52efb8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"717f375\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"394af17\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"flex_wrap_mobile\":\"nowrap\",\"z_index\":1},\"elements\":[{\"id\":\"341f8b74\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"33df9dc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7bdec\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"90e6e83\"}],\"pp_display_conditions\":[{\"_id\":\"3e37d22\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"4cc70c2e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":50,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/Transparent-File-01-scaled.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"link_to\":\"custom\",\"space\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"ef1f052\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"7043833\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"space_mobile_extra\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"space_tablet_extra\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"29f8b7e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":80},\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"13efff7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4ba59b9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9a413e\"}],\"pp_display_conditions\":[{\"_id\":\"6633050\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"flex_align_items\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"flex_direction_mobile\":\"row-reverse\",\"flex_justify_content_mobile\":\"flex-start\",\"flex_wrap_mobile\":\"nowrap\"},\"elements\":[{\"id\":\"55ad1095\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"pointer\":\"none\",\"toggle_label\":\"Menu\",\"pp_display_conditions\":[{\"_id\":\"6d90ae3\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"menu_type\":\"off-canvas\",\"toggle_align\":\"right\",\"toggle_background_color\":\"#02010100\",\"toggle_background_color_hover\":\"#02010100\",\"offcanvas_position\":\"right\",\"close_icon_background_color\":\"#02010100\",\"close_icon_background_color_hover\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_weight\":\"500\",\"__globals__\":{\"toggle_color\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_color_hover\":\"globals\\/colors?id=astglobalcolor3\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor5\",\"mobile_sub_link_color\":\"globals\\/colors?id=astglobalcolor5\",\"mobile_sub_link_bg_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor5\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_hover\":\"globals\\/colors?id=astglobalcolor5\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"close_icon_color_hover\":\"globals\\/colors?id=astglobalcolor5\",\"color_menu_item\":\"globals\\/colors?id=astglobalcolor6\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item\":\"globals\\/colors?id=astglobalcolor5\",\"background_color_dropdown_item\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor5\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor5\",\"background_color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"dropdown_divider_color\":\"\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"menu_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"color_menu_item_hover\":\"#045cb4\",\"color_menu_item_active\":\"#045cb4\",\"color_dropdown_item\":\"#F0F5FA\",\"background_color_dropdown_item\":\"#046bd2\",\"color_dropdown_item_hover\":\"#F0F5FA\",\"background_color_dropdown_item_hover\":\"#045cb4\",\"color_dropdown_item_active\":\"#F0F5FA\",\"background_color_dropdown_item_active\":\"#045cb4\",\"dropdown_divider_border\":\"solid\",\"dropdown_divider_color\":\"#F0F5FA36\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"toggle_color\":\"#046bd2\",\"toggle_color_hover\":\"#334155\",\"overlay_bg_color\":\"#1e293b\",\"mobile_link_color\":\"#F0F5FA\",\"mobile_sub_link_bg_color\":\"#1e293b\",\"mobile_sub_link_color\":\"#F0F5FA\",\"mobile_link_hover\":\"#F0F5FA\",\"mobile_link_bg_hover\":\"#046bd2\",\"mobile_sub_link_bg_hover\":\"#046bd2\",\"mobile_sub_link_hover\":\"#F0F5FA\",\"close_icon_color\":\"#F0F5FA\",\"close_icon_color_hover\":\"#F0F5FA\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"toggle_size_mobile\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"4027936a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"730407e\",\"pp_condition_date_time_before_value\":\"2024-10-27 14:19\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"348be72f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":201,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":164,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f25b0fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8462f23\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f25e330\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"pp_condition_key\":\"page\",\"pp_condition_operator\":\"not\",\"_id\":\"eda4653\",\"pp_condition_page_value\":[\"10\"],\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"\"},\"background_overlay_color\":\"#48aaad\",\"background_overlay_color_b\":\"#1E293B52\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"css_classes\":\"header-breadcrumbs-section\",\"pp_display_conditions_enable\":\"yes\"},\"elements\":[{\"id\":\"13f6f159\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"page-title\\\" settings=\\\"%7B%22include_context%22%3A%22%22%2C%22show_home_title%22%3A%22%22%2C%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3b30e8f\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"}],\"isInner\":false}]'),
(5044, 550, '_elementor_pro_version', '3.17.1'),
(773, 93, '_elementor_source', 'post'),
(774, 93, '_elementor_edit_mode', 'builder'),
(775, 93, '_elementor_template_type', 'header'),
(776, 93, '_elementor_version', '3.34.0'),
(777, 93, '_elementor_pro_version', '3.17.1'),
(778, 93, '_wp_page_template', 'default'),
(779, 93, '_elementor_data', '[{\"id\":\"1429e242\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29f1307\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fa260ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cedb743\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"007c566\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"z_index\":1},\"elements\":[{\"id\":\"5ffd1cde\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_justify_content_tablet_extra\":\"center\",\"flex_align_items\":\"center\",\"flex_wrap_tablet_extra\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f9f92a0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d292bd0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad6ad10\"}],\"pp_display_conditions\":[{\"_id\":\"a7020fb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_widescreen\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6e69ad7a\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"41 60 00 40\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"f9bb7da\",\"link\":{\"url\":\"tel:41600040\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"kontakt@cp-nordic.dk\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"1ee7ee1\",\"link\":{\"url\":\"mailto:kontakt@cp-nordic.dk\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align_tablet_extra\":\"center\",\"icon_color\":\"#fafafa\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#ffffff\",\"pp_display_conditions\":[{\"_id\":\"687bdf5\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"\"},\"icon_color_hover\":\"#E4E4E4\",\"text_color_hover\":\"#E4E4E4\",\"divider\":\"yes\",\"divider_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"3027eeaf\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-end\",\"flex_justify_content_tablet_extra\":\"center\",\"flex_align_items\":\"center\",\"flex_wrap_tablet_extra\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f9f92a0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d292bd0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad6ad10\"}],\"pp_display_conditions\":[{\"_id\":\"a7020fb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_widescreen\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"557e3125\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"1a75682\",\"link\":{\"url\":\"https:\\/\\/www.facebook.com\\/cpnordic\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"da32d70\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/cpnordic\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"589cdcb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor5\"},\"icon_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"67407e3b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2e8ba73\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f52efb8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"717f375\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"394af17\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"flex_wrap_mobile\":\"nowrap\",\"z_index\":1,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-123\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"341f8b74\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"33df9dc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7bdec\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"90e6e83\"}],\"pp_display_conditions\":[{\"_id\":\"3e37d22\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"4cc70c2e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":49,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/Transparent-File-02-scaled.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"link_to\":\"custom\",\"space\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"ef1f052\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"7043833\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"space_mobile_extra\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"space_tablet_extra\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"29f8b7e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":80},\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"13efff7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4ba59b9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9a413e\"}],\"pp_display_conditions\":[{\"_id\":\"6633050\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"flex_align_items\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"flex_direction_mobile\":\"row-reverse\",\"flex_justify_content_mobile\":\"flex-start\",\"flex_wrap_mobile\":\"nowrap\"},\"elements\":[{\"id\":\"55ad1095\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"pointer\":\"none\",\"toggle_label\":\"Menu\",\"pp_display_conditions\":[{\"_id\":\"6d90ae3\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"menu_type\":\"off-canvas\",\"toggle_align\":\"right\",\"toggle_background_color\":\"#02010100\",\"toggle_background_color_hover\":\"#02010100\",\"offcanvas_position\":\"right\",\"close_icon_background_color\":\"#02010100\",\"close_icon_background_color_hover\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_weight\":\"500\",\"__globals__\":{\"toggle_color\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_color_hover\":\"globals\\/colors?id=astglobalcolor3\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor5\",\"mobile_sub_link_color\":\"globals\\/colors?id=astglobalcolor5\",\"mobile_sub_link_bg_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor5\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_hover\":\"globals\\/colors?id=astglobalcolor5\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"close_icon_color_hover\":\"globals\\/colors?id=astglobalcolor5\",\"color_menu_item\":\"globals\\/colors?id=astglobalcolor6\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item\":\"globals\\/colors?id=astglobalcolor5\",\"background_color_dropdown_item\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor5\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor5\",\"background_color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"dropdown_divider_color\":\"\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"menu_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"color_menu_item_hover\":\"#045cb4\",\"color_menu_item_active\":\"#045cb4\",\"color_dropdown_item\":\"#F0F5FA\",\"background_color_dropdown_item\":\"#046bd2\",\"color_dropdown_item_hover\":\"#F0F5FA\",\"background_color_dropdown_item_hover\":\"#045cb4\",\"color_dropdown_item_active\":\"#F0F5FA\",\"background_color_dropdown_item_active\":\"#045cb4\",\"dropdown_divider_border\":\"solid\",\"dropdown_divider_color\":\"#F0F5FA36\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"toggle_color\":\"#046bd2\",\"toggle_color_hover\":\"#334155\",\"overlay_bg_color\":\"#1e293b\",\"mobile_link_color\":\"#F0F5FA\",\"mobile_sub_link_bg_color\":\"#1e293b\",\"mobile_sub_link_color\":\"#F0F5FA\",\"mobile_link_hover\":\"#F0F5FA\",\"mobile_link_bg_hover\":\"#046bd2\",\"mobile_sub_link_bg_hover\":\"#046bd2\",\"mobile_sub_link_hover\":\"#F0F5FA\",\"close_icon_color\":\"#F0F5FA\",\"close_icon_color_hover\":\"#F0F5FA\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"toggle_size_mobile\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"4027936a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"730407e\",\"pp_condition_date_time_before_value\":\"2024-10-27 14:19\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"348be72f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":201,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":164,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f25b0fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8462f23\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f25e330\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"pp_condition_key\":\"page\",\"pp_condition_operator\":\"not\",\"_id\":\"eda4653\",\"pp_condition_page_value\":[\"10\"],\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"\"},\"background_overlay_color\":\"#48aaad\",\"background_overlay_color_b\":\"#1E293B52\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"css_classes\":\"header-breadcrumbs-section\",\"pp_display_conditions_enable\":\"yes\"},\"elements\":[{\"id\":\"13f6f159\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"page-title\\\" settings=\\\"%7B%22include_context%22%3A%22%22%2C%22show_home_title%22%3A%22%22%2C%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3b30e8f\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"}],\"isInner\":false}]'),
(786, 94, '_elementor_source', 'post'),
(787, 94, '_elementor_edit_mode', 'builder'),
(788, 94, '_elementor_template_type', 'header'),
(789, 94, '_elementor_version', '3.34.0'),
(790, 94, '_elementor_pro_version', '3.17.1'),
(791, 94, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(792, 94, '_elementor_data', '[{\"id\":\"1429e242\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29f1307\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fa260ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cedb743\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"007c566\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"z_index\":1},\"elements\":[{\"id\":\"5ffd1cde\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_justify_content_tablet_extra\":\"center\",\"flex_align_items\":\"center\",\"flex_wrap_tablet_extra\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f9f92a0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d292bd0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad6ad10\"}],\"pp_display_conditions\":[{\"_id\":\"a7020fb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_widescreen\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6e69ad7a\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"41 60 00 40\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"f9bb7da\",\"link\":{\"url\":\"tel:41600040\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"kontakt@cp-nordic.dk\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"1ee7ee1\",\"link\":{\"url\":\"mailto:kontakt@cp-nordic.dk\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align_tablet_extra\":\"center\",\"icon_color\":\"#fafafa\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#ffffff\",\"pp_display_conditions\":[{\"_id\":\"687bdf5\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"\"},\"icon_color_hover\":\"#E4E4E4\",\"text_color_hover\":\"#E4E4E4\",\"divider\":\"yes\",\"divider_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"3027eeaf\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-end\",\"flex_justify_content_tablet_extra\":\"center\",\"flex_align_items\":\"center\",\"flex_wrap_tablet_extra\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f9f92a0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d292bd0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad6ad10\"}],\"pp_display_conditions\":[{\"_id\":\"a7020fb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_widescreen\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"557e3125\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"1a75682\",\"link\":{\"url\":\"https:\\/\\/www.facebook.com\\/cpnordic\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"da32d70\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/cpnordic\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"589cdcb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor5\"},\"icon_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"67407e3b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2e8ba73\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f52efb8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"717f375\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"394af17\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"flex_wrap_mobile\":\"nowrap\",\"z_index\":1,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-123\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"341f8b74\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"33df9dc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7bdec\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"90e6e83\"}],\"pp_display_conditions\":[{\"_id\":\"3e37d22\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"4cc70c2e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":49,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/Transparent-File-02-scaled.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"link_to\":\"custom\",\"space\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"ef1f052\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"7043833\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"space_mobile_extra\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"space_tablet_extra\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"29f8b7e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":80},\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"13efff7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4ba59b9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9a413e\"}],\"pp_display_conditions\":[{\"_id\":\"6633050\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"flex_align_items\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"flex_direction_mobile\":\"row-reverse\",\"flex_justify_content_mobile\":\"flex-start\",\"flex_wrap_mobile\":\"nowrap\"},\"elements\":[{\"id\":\"55ad1095\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"pointer\":\"none\",\"toggle_label\":\"Menu\",\"pp_display_conditions\":[{\"_id\":\"6d90ae3\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"menu_type\":\"off-canvas\",\"toggle_align\":\"right\",\"toggle_background_color\":\"#02010100\",\"toggle_background_color_hover\":\"#02010100\",\"offcanvas_position\":\"right\",\"close_icon_background_color\":\"#02010100\",\"close_icon_background_color_hover\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_weight\":\"500\",\"__globals__\":{\"toggle_color\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_color_hover\":\"globals\\/colors?id=astglobalcolor3\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor5\",\"mobile_sub_link_color\":\"globals\\/colors?id=astglobalcolor5\",\"mobile_sub_link_bg_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor5\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_hover\":\"globals\\/colors?id=astglobalcolor5\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"close_icon_color_hover\":\"globals\\/colors?id=astglobalcolor5\",\"color_menu_item\":\"globals\\/colors?id=astglobalcolor4\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item\":\"globals\\/colors?id=astglobalcolor5\",\"background_color_dropdown_item\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor5\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor5\",\"background_color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"dropdown_divider_color\":\"\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"menu_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"color_menu_item_hover\":\"#045cb4\",\"color_menu_item_active\":\"#045cb4\",\"color_dropdown_item\":\"#F0F5FA\",\"background_color_dropdown_item\":\"#046bd2\",\"color_dropdown_item_hover\":\"#F0F5FA\",\"background_color_dropdown_item_hover\":\"#045cb4\",\"color_dropdown_item_active\":\"#F0F5FA\",\"background_color_dropdown_item_active\":\"#045cb4\",\"dropdown_divider_border\":\"solid\",\"dropdown_divider_color\":\"#F0F5FA36\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"toggle_color\":\"#046bd2\",\"toggle_color_hover\":\"#334155\",\"overlay_bg_color\":\"#1e293b\",\"mobile_link_color\":\"#F0F5FA\",\"mobile_sub_link_bg_color\":\"#1e293b\",\"mobile_sub_link_color\":\"#F0F5FA\",\"mobile_link_hover\":\"#F0F5FA\",\"mobile_link_bg_hover\":\"#046bd2\",\"mobile_sub_link_bg_hover\":\"#046bd2\",\"mobile_sub_link_hover\":\"#F0F5FA\",\"close_icon_color\":\"#F0F5FA\",\"close_icon_color_hover\":\"#F0F5FA\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"toggle_size_mobile\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"4027936a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"730407e\",\"pp_condition_date_time_before_value\":\"2024-10-27 14:19\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"348be72f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":201,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":164,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f25b0fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8462f23\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f25e330\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"pp_condition_key\":\"page\",\"pp_condition_operator\":\"not\",\"_id\":\"eda4653\",\"pp_condition_page_value\":[\"10\"],\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"\"},\"background_overlay_color\":\"#48aaad\",\"background_overlay_color_b\":\"#1E293B52\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"css_classes\":\"header-breadcrumbs-section\",\"pp_display_conditions_enable\":\"yes\"},\"elements\":[{\"id\":\"13f6f159\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"page-title\\\" settings=\\\"%7B%22include_context%22%3A%22%22%2C%22show_home_title%22%3A%22%22%2C%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3b30e8f\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"}],\"isInner\":false}]'),
(1432, 174, '_elementor_page_settings', 'a:0:{}'),
(1434, 175, '_elementor_template_type', 'wp-page'),
(1435, 175, '_elementor_version', '3.34.0'),
(1436, 175, '_elementor_pro_version', '3.17.1'),
(1437, 175, '_wp_page_template', 'default'),
(1438, 175, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"},{\"id\":56,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-2-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"3274ff7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"ae4f379\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9a52583\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(766, 92, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(1107, 138, '_elementor_data', '[]'),
(1108, 138, '_elementor_version', '3.34.0'),
(1109, 138, '_elementor_pro_version', '3.17.1'),
(1244, 151, '_wp_page_template', 'default'),
(1245, 151, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"},{\"id\":56,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-2-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}]},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(1112, 139, '_elementor_edit_mode', 'builder'),
(1113, 139, '_elementor_template_type', 'kit'),
(1114, 139, '_wp_page_template', 'default'),
(1115, 139, '_elementor_page_settings', 'a:19:{s:13:\"system_colors\";a:4:{i:0;a:2:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";}i:1;a:2:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";}i:2;a:2:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";}i:3;a:2:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";}}s:13:\"custom_colors\";a:0:{}s:17:\"system_typography\";a:4:{i:0;a:5:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Nekst Black\";s:22:\"typography_font_weight\";s:3:\"600\";}i:1;a:5:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Nekst Black\";s:22:\"typography_font_weight\";s:3:\"400\";}i:2;a:5:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"400\";}i:3;a:5:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"500\";}}s:17:\"custom_typography\";a:0:{}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:9:\"site_name\";s:9:\"CP-NORDIC\";s:15:\"container_width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:1240;s:5:\"sizes\";a:0:{}}s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:18:\"active_breakpoints\";a:5:{i:0;s:15:\"viewport_mobile\";i:1;s:21:\"viewport_mobile_extra\";i:2;s:15:\"viewport_tablet\";i:3;s:21:\"viewport_tablet_extra\";i:4;s:19:\"viewport_widescreen\";}s:15:\"viewport_mobile\";i:480;s:21:\"viewport_mobile_extra\";i:767;s:15:\"viewport_tablet\";i:991;s:21:\"viewport_tablet_extra\";i:1199;s:19:\"viewport_widescreen\";i:1200;s:11:\"viewport_md\";i:481;s:11:\"viewport_lg\";i:992;s:32:\"colors_enable_styleguide_preview\";s:3:\"yes\";s:15:\"activeItemIndex\";i:1;s:36:\"typography_enable_styleguide_preview\";s:3:\"yes\";}'),
(780, 93, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(1254, 152, '_elementor_pro_version', '3.17.1'),
(1255, 152, '_wp_page_template', 'default'),
(1256, 152, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"},{\"id\":56,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-2-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}]},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(1059, 118, '_wp_attached_file', '2026/01/AnyConv.com__Fontspring-DEMO-nekst-thin.woff'),
(1060, 118, '_wp_attachment_metadata', 'a:1:{s:8:\"filesize\";i:9420;}'),
(1061, 119, '_wp_attached_file', '2026/01/AnyConv.com__Fontspring-DEMO-nekst-semibold.woff2'),
(1062, 119, '_wp_attachment_metadata', 'a:1:{s:8:\"filesize\";i:24771;}'),
(1063, 120, '_wp_attached_file', '2026/01/AnyConv.com__Fontspring-DEMO-nekst-semibold.ttf'),
(1064, 120, '_wp_attachment_metadata', 'a:1:{s:8:\"filesize\";i:27628;}'),
(1065, 121, '_wp_attached_file', '2026/01/AnyConv.com__Fontspring-DEMO-nekst-semibold.eot'),
(1066, 121, '_wp_attachment_metadata', 'a:1:{s:8:\"filesize\";i:24771;}'),
(1067, 117, '_edit_last', '1'),
(1068, 117, 'elementor_font_files', 'a:5:{i:0;a:7:{s:11:\"font_weight\";s:3:\"300\";s:10:\"font_style\";s:6:\"normal\";s:4:\"woff\";a:2:{s:2:\"id\";s:3:\"118\";s:3:\"url\";s:98:\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/AnyConv.com__Fontspring-DEMO-nekst-thin.woff\";}s:5:\"woff2\";a:2:{s:2:\"id\";s:3:\"119\";s:3:\"url\";s:103:\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/AnyConv.com__Fontspring-DEMO-nekst-semibold.woff2\";}s:3:\"ttf\";a:2:{s:2:\"id\";s:3:\"120\";s:3:\"url\";s:101:\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/AnyConv.com__Fontspring-DEMO-nekst-semibold.ttf\";}s:3:\"svg\";a:2:{s:2:\"id\";s:0:\"\";s:3:\"url\";s:0:\"\";}s:3:\"eot\";a:2:{s:2:\"id\";s:3:\"121\";s:3:\"url\";s:101:\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/AnyConv.com__Fontspring-DEMO-nekst-semibold.eot\";}}i:1;a:7:{s:11:\"font_weight\";s:3:\"400\";s:10:\"font_style\";s:6:\"normal\";s:4:\"woff\";a:2:{s:2:\"id\";s:3:\"122\";s:3:\"url\";s:101:\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/AnyConv.com__Fontspring-DEMO-nekst-regular.woff\";}s:5:\"woff2\";a:2:{s:2:\"id\";s:3:\"123\";s:3:\"url\";s:102:\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/AnyConv.com__Fontspring-DEMO-nekst-regular.woff2\";}s:3:\"ttf\";a:2:{s:2:\"id\";s:3:\"120\";s:3:\"url\";s:101:\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/AnyConv.com__Fontspring-DEMO-nekst-semibold.ttf\";}s:3:\"svg\";a:2:{s:2:\"id\";s:0:\"\";s:3:\"url\";s:0:\"\";}s:3:\"eot\";a:2:{s:2:\"id\";s:3:\"125\";s:3:\"url\";s:100:\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/AnyConv.com__Fontspring-DEMO-nekst-regular.eot\";}}i:2;a:7:{s:11:\"font_weight\";s:3:\"500\";s:10:\"font_style\";s:6:\"normal\";s:4:\"woff\";a:2:{s:2:\"id\";s:3:\"126\";s:3:\"url\";s:100:\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/AnyConv.com__Fontspring-DEMO-nekst-medium.woff\";}s:5:\"woff2\";a:2:{s:2:\"id\";s:3:\"127\";s:3:\"url\";s:101:\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/AnyConv.com__Fontspring-DEMO-nekst-medium.woff2\";}s:3:\"ttf\";a:2:{s:2:\"id\";s:3:\"128\";s:3:\"url\";s:99:\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/AnyConv.com__Fontspring-DEMO-nekst-medium.ttf\";}s:3:\"svg\";a:2:{s:2:\"id\";s:0:\"\";s:3:\"url\";s:0:\"\";}s:3:\"eot\";a:2:{s:2:\"id\";s:3:\"129\";s:3:\"url\";s:99:\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/AnyConv.com__Fontspring-DEMO-nekst-medium.eot\";}}i:3;a:7:{s:11:\"font_weight\";s:3:\"600\";s:10:\"font_style\";s:6:\"normal\";s:4:\"woff\";a:2:{s:2:\"id\";s:3:\"130\";s:3:\"url\";s:98:\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/AnyConv.com__Fontspring-DEMO-nekst-bold.woff\";}s:5:\"woff2\";a:2:{s:2:\"id\";s:3:\"131\";s:3:\"url\";s:99:\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/AnyConv.com__Fontspring-DEMO-nekst-bold.woff2\";}s:3:\"ttf\";a:2:{s:2:\"id\";s:3:\"133\";s:3:\"url\";s:97:\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/AnyConv.com__Fontspring-DEMO-nekst-bold.ttf\";}s:3:\"svg\";a:2:{s:2:\"id\";s:0:\"\";s:3:\"url\";s:0:\"\";}s:3:\"eot\";a:2:{s:2:\"id\";s:3:\"132\";s:3:\"url\";s:97:\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/AnyConv.com__Fontspring-DEMO-nekst-bold.eot\";}}i:4;a:7:{s:11:\"font_weight\";s:3:\"900\";s:10:\"font_style\";s:6:\"normal\";s:4:\"woff\";a:2:{s:2:\"id\";s:3:\"134\";s:3:\"url\";s:99:\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/AnyConv.com__Fontspring-DEMO-nekst-black.woff\";}s:5:\"woff2\";a:2:{s:2:\"id\";s:3:\"135\";s:3:\"url\";s:100:\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/AnyConv.com__Fontspring-DEMO-nekst-black.woff2\";}s:3:\"ttf\";a:2:{s:2:\"id\";s:3:\"136\";s:3:\"url\";s:98:\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/AnyConv.com__Fontspring-DEMO-nekst-black.ttf\";}s:3:\"svg\";a:2:{s:2:\"id\";s:0:\"\";s:3:\"url\";s:0:\"\";}s:3:\"eot\";a:2:{s:2:\"id\";s:3:\"137\";s:3:\"url\";s:98:\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/AnyConv.com__Fontspring-DEMO-nekst-black.eot\";}}}'),
(1069, 117, 'elementor_font_face', '@font-face {\n	font-family: \'Nekst Black\';\n	font-style: normal;\n	font-weight: 300;\n	font-display: auto;\n	src: url(\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/AnyConv.com__Fontspring-DEMO-nekst-semibold.eot\');\n	src: url(\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/AnyConv.com__Fontspring-DEMO-nekst-semibold.eot?#iefix\') format(\'embedded-opentype\'),\n		url(\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/AnyConv.com__Fontspring-DEMO-nekst-semibold.woff2\') format(\'woff2\'),\n		url(\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/AnyConv.com__Fontspring-DEMO-nekst-thin.woff\') format(\'woff\'),\n		url(\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/AnyConv.com__Fontspring-DEMO-nekst-semibold.ttf\') format(\'truetype\');\n}\n@font-face {\n	font-family: \'Nekst Black\';\n	font-style: normal;\n	font-weight: 400;\n	font-display: auto;\n	src: url(\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/AnyConv.com__Fontspring-DEMO-nekst-regular.eot\');\n	src: url(\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/AnyConv.com__Fontspring-DEMO-nekst-regular.eot?#iefix\') format(\'embedded-opentype\'),\n		url(\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/AnyConv.com__Fontspring-DEMO-nekst-regular.woff2\') format(\'woff2\'),\n		url(\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/AnyConv.com__Fontspring-DEMO-nekst-regular.woff\') format(\'woff\'),\n		url(\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/AnyConv.com__Fontspring-DEMO-nekst-semibold.ttf\') format(\'truetype\');\n}\n@font-face {\n	font-family: \'Nekst Black\';\n	font-style: normal;\n	font-weight: 500;\n	font-display: auto;\n	src: url(\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/AnyConv.com__Fontspring-DEMO-nekst-medium.eot\');\n	src: url(\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/AnyConv.com__Fontspring-DEMO-nekst-medium.eot?#iefix\') format(\'embedded-opentype\'),\n		url(\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/AnyConv.com__Fontspring-DEMO-nekst-medium.woff2\') format(\'woff2\'),\n		url(\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/AnyConv.com__Fontspring-DEMO-nekst-medium.woff\') format(\'woff\'),\n		url(\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/AnyConv.com__Fontspring-DEMO-nekst-medium.ttf\') format(\'truetype\');\n}\n@font-face {\n	font-family: \'Nekst Black\';\n	font-style: normal;\n	font-weight: 600;\n	font-display: auto;\n	src: url(\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/AnyConv.com__Fontspring-DEMO-nekst-bold.eot\');\n	src: url(\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/AnyConv.com__Fontspring-DEMO-nekst-bold.eot?#iefix\') format(\'embedded-opentype\'),\n		url(\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/AnyConv.com__Fontspring-DEMO-nekst-bold.woff2\') format(\'woff2\'),\n		url(\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/AnyConv.com__Fontspring-DEMO-nekst-bold.woff\') format(\'woff\'),\n		url(\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/AnyConv.com__Fontspring-DEMO-nekst-bold.ttf\') format(\'truetype\');\n}\n@font-face {\n	font-family: \'Nekst Black\';\n	font-style: normal;\n	font-weight: 900;\n	font-display: auto;\n	src: url(\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/AnyConv.com__Fontspring-DEMO-nekst-black.eot\');\n	src: url(\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/AnyConv.com__Fontspring-DEMO-nekst-black.eot?#iefix\') format(\'embedded-opentype\'),\n		url(\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/AnyConv.com__Fontspring-DEMO-nekst-black.woff2\') format(\'woff2\'),\n		url(\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/AnyConv.com__Fontspring-DEMO-nekst-black.woff\') format(\'woff\'),\n		url(\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/AnyConv.com__Fontspring-DEMO-nekst-black.ttf\') format(\'truetype\');\n}\n'),
(1070, 117, '_edit_lock', '1769408370:1'),
(1071, 122, '_wp_attached_file', '2026/01/AnyConv.com__Fontspring-DEMO-nekst-regular.woff'),
(1072, 122, '_wp_attachment_metadata', 'a:1:{s:8:\"filesize\";i:10284;}'),
(1073, 123, '_wp_attached_file', '2026/01/AnyConv.com__Fontspring-DEMO-nekst-regular.woff2'),
(1074, 123, '_wp_attachment_metadata', 'a:1:{s:8:\"filesize\";i:24040;}'),
(1075, 124, '_wp_attached_file', '2026/01/AnyConv.com__Fontspring-DEMO-nekst-regular.ttf'),
(1076, 124, '_wp_attachment_metadata', 'a:1:{s:8:\"filesize\";i:27080;}'),
(1077, 125, '_wp_attached_file', '2026/01/AnyConv.com__Fontspring-DEMO-nekst-regular.eot'),
(1078, 125, '_wp_attachment_metadata', 'a:1:{s:8:\"filesize\";i:24040;}'),
(1079, 126, '_wp_attached_file', '2026/01/AnyConv.com__Fontspring-DEMO-nekst-medium.woff'),
(1080, 126, '_wp_attachment_metadata', 'a:1:{s:8:\"filesize\";i:9472;}'),
(1081, 127, '_wp_attached_file', '2026/01/AnyConv.com__Fontspring-DEMO-nekst-medium.woff2'),
(1082, 127, '_wp_attachment_metadata', 'a:1:{s:8:\"filesize\";i:24247;}'),
(1083, 128, '_wp_attached_file', '2026/01/AnyConv.com__Fontspring-DEMO-nekst-medium.ttf'),
(1084, 128, '_wp_attachment_metadata', 'a:1:{s:8:\"filesize\";i:26680;}'),
(1085, 129, '_wp_attached_file', '2026/01/AnyConv.com__Fontspring-DEMO-nekst-medium.eot'),
(1086, 129, '_wp_attachment_metadata', 'a:1:{s:8:\"filesize\";i:24247;}'),
(1087, 130, '_wp_attached_file', '2026/01/AnyConv.com__Fontspring-DEMO-nekst-bold.woff'),
(1088, 130, '_wp_attachment_metadata', 'a:1:{s:8:\"filesize\";i:10480;}'),
(1089, 131, '_wp_attached_file', '2026/01/AnyConv.com__Fontspring-DEMO-nekst-bold.woff2'),
(1090, 131, '_wp_attachment_metadata', 'a:1:{s:8:\"filesize\";i:24131;}'),
(1091, 132, '_wp_attached_file', '2026/01/AnyConv.com__Fontspring-DEMO-nekst-bold.eot'),
(1092, 132, '_wp_attachment_metadata', 'a:1:{s:8:\"filesize\";i:24131;}'),
(1093, 133, '_wp_attached_file', '2026/01/AnyConv.com__Fontspring-DEMO-nekst-bold.ttf'),
(1094, 133, '_wp_attachment_metadata', 'a:1:{s:8:\"filesize\";i:27536;}'),
(1095, 134, '_wp_attached_file', '2026/01/AnyConv.com__Fontspring-DEMO-nekst-black.woff'),
(1096, 134, '_wp_attachment_metadata', 'a:1:{s:8:\"filesize\";i:9288;}'),
(1097, 135, '_wp_attached_file', '2026/01/AnyConv.com__Fontspring-DEMO-nekst-black.woff2'),
(1098, 135, '_wp_attachment_metadata', 'a:1:{s:8:\"filesize\";i:24324;}'),
(1099, 136, '_wp_attached_file', '2026/01/AnyConv.com__Fontspring-DEMO-nekst-black.ttf'),
(1100, 136, '_wp_attachment_metadata', 'a:1:{s:8:\"filesize\";i:26096;}'),
(1101, 137, '_wp_attached_file', '2026/01/AnyConv.com__Fontspring-DEMO-nekst-black.eot'),
(1102, 137, '_wp_attachment_metadata', 'a:1:{s:8:\"filesize\";i:24324;}'),
(1103, 138, '_elementor_edit_mode', 'builder'),
(1104, 138, '_elementor_template_type', 'kit'),
(1105, 138, '_wp_page_template', 'default'),
(1106, 138, '_elementor_page_settings', 'a:18:{s:13:\"system_colors\";a:4:{i:0;a:2:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";}i:1;a:2:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";}i:2;a:2:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";}i:3;a:2:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";}}s:13:\"custom_colors\";a:0:{}s:17:\"system_typography\";a:4:{i:0;a:5:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"600\";}i:1;a:5:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Roboto Slab\";s:22:\"typography_font_weight\";s:3:\"400\";}i:2;a:5:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"400\";}i:3;a:5:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"500\";}}s:17:\"custom_typography\";a:0:{}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:9:\"site_name\";s:9:\"CP-NORDIC\";s:15:\"container_width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:1240;s:5:\"sizes\";a:0:{}}s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:18:\"active_breakpoints\";a:5:{i:0;s:15:\"viewport_mobile\";i:1;s:21:\"viewport_mobile_extra\";i:2;s:15:\"viewport_tablet\";i:3;s:21:\"viewport_tablet_extra\";i:4;s:19:\"viewport_widescreen\";}s:15:\"viewport_mobile\";i:480;s:21:\"viewport_mobile_extra\";i:767;s:15:\"viewport_tablet\";i:991;s:21:\"viewport_tablet_extra\";i:1199;s:19:\"viewport_widescreen\";i:1200;s:11:\"viewport_md\";i:481;s:11:\"viewport_lg\";i:992;s:32:\"colors_enable_styleguide_preview\";s:3:\"yes\";s:15:\"activeItemIndex\";i:1;}'),
(793, 94, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(5041, 550, '_elementor_edit_mode', 'builder'),
(5042, 550, '_elementor_template_type', 'header'),
(5043, 550, '_elementor_version', '3.34.0');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(799, 95, '_elementor_source', 'post'),
(800, 95, '_elementor_edit_mode', 'builder'),
(801, 95, '_elementor_template_type', 'header'),
(802, 95, '_elementor_version', '3.34.0'),
(803, 95, '_elementor_pro_version', '3.17.1'),
(804, 95, '_wp_page_template', 'default'),
(805, 95, '_elementor_data', '[{\"id\":\"1429e242\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29f1307\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fa260ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cedb743\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"007c566\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"z_index\":1},\"elements\":[{\"id\":\"5ffd1cde\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_justify_content_tablet_extra\":\"center\",\"flex_align_items\":\"center\",\"flex_wrap_tablet_extra\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f9f92a0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d292bd0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad6ad10\"}],\"pp_display_conditions\":[{\"_id\":\"a7020fb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_widescreen\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6e69ad7a\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"41 60 00 40\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"f9bb7da\",\"link\":{\"url\":\"tel:41600040\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"kontakt@cp-nordic.dk\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"1ee7ee1\",\"link\":{\"url\":\"mailto:kontakt@cp-nordic.dk\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align_tablet_extra\":\"center\",\"icon_color\":\"#fafafa\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#ffffff\",\"pp_display_conditions\":[{\"_id\":\"687bdf5\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"\"},\"icon_color_hover\":\"#E4E4E4\",\"text_color_hover\":\"#E4E4E4\",\"divider\":\"yes\",\"divider_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"3027eeaf\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-end\",\"flex_justify_content_tablet_extra\":\"center\",\"flex_align_items\":\"center\",\"flex_wrap_tablet_extra\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f9f92a0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d292bd0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad6ad10\"}],\"pp_display_conditions\":[{\"_id\":\"a7020fb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_widescreen\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"557e3125\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"1a75682\",\"link\":{\"url\":\"https:\\/\\/www.facebook.com\\/cpnordic\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"da32d70\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/cpnordic\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"589cdcb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor5\"},\"icon_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"67407e3b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2e8ba73\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f52efb8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"717f375\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"394af17\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"flex_wrap_mobile\":\"nowrap\",\"z_index\":1,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FCFCFC17\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-123\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"\"}},\"elements\":[{\"id\":\"341f8b74\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"33df9dc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7bdec\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"90e6e83\"}],\"pp_display_conditions\":[{\"_id\":\"3e37d22\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"4cc70c2e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":49,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/Transparent-File-02-scaled.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"link_to\":\"custom\",\"space\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"ef1f052\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"7043833\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"space_mobile_extra\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"space_tablet_extra\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"29f8b7e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":80},\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"13efff7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4ba59b9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9a413e\"}],\"pp_display_conditions\":[{\"_id\":\"6633050\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"flex_align_items\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"flex_direction_mobile\":\"row-reverse\",\"flex_justify_content_mobile\":\"flex-start\",\"flex_wrap_mobile\":\"nowrap\"},\"elements\":[{\"id\":\"55ad1095\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"pointer\":\"none\",\"toggle_label\":\"Menu\",\"pp_display_conditions\":[{\"_id\":\"6d90ae3\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"menu_type\":\"off-canvas\",\"toggle_align\":\"right\",\"toggle_background_color\":\"#02010100\",\"toggle_background_color_hover\":\"#02010100\",\"offcanvas_position\":\"right\",\"close_icon_background_color\":\"#02010100\",\"close_icon_background_color_hover\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_weight\":\"500\",\"__globals__\":{\"toggle_color\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_color_hover\":\"globals\\/colors?id=astglobalcolor3\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor5\",\"mobile_sub_link_color\":\"globals\\/colors?id=astglobalcolor5\",\"mobile_sub_link_bg_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor5\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_hover\":\"globals\\/colors?id=astglobalcolor5\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"close_icon_color_hover\":\"globals\\/colors?id=astglobalcolor5\",\"color_menu_item\":\"globals\\/colors?id=astglobalcolor4\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item\":\"globals\\/colors?id=astglobalcolor5\",\"background_color_dropdown_item\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor5\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor5\",\"background_color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"dropdown_divider_color\":\"\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"menu_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"color_menu_item_hover\":\"#045cb4\",\"color_menu_item_active\":\"#045cb4\",\"color_dropdown_item\":\"#F0F5FA\",\"background_color_dropdown_item\":\"#046bd2\",\"color_dropdown_item_hover\":\"#F0F5FA\",\"background_color_dropdown_item_hover\":\"#045cb4\",\"color_dropdown_item_active\":\"#F0F5FA\",\"background_color_dropdown_item_active\":\"#045cb4\",\"dropdown_divider_border\":\"solid\",\"dropdown_divider_color\":\"#F0F5FA36\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"toggle_color\":\"#046bd2\",\"toggle_color_hover\":\"#334155\",\"overlay_bg_color\":\"#1e293b\",\"mobile_link_color\":\"#F0F5FA\",\"mobile_sub_link_bg_color\":\"#1e293b\",\"mobile_sub_link_color\":\"#F0F5FA\",\"mobile_link_hover\":\"#F0F5FA\",\"mobile_link_bg_hover\":\"#046bd2\",\"mobile_sub_link_bg_hover\":\"#046bd2\",\"mobile_sub_link_hover\":\"#F0F5FA\",\"close_icon_color\":\"#F0F5FA\",\"close_icon_color_hover\":\"#F0F5FA\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"toggle_size_mobile\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"4027936a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"730407e\",\"pp_condition_date_time_before_value\":\"2024-10-27 14:19\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"348be72f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":201,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":164,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f25b0fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8462f23\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f25e330\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"pp_condition_key\":\"page\",\"pp_condition_operator\":\"not\",\"_id\":\"eda4653\",\"pp_condition_page_value\":[\"10\"],\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"\"},\"background_overlay_color\":\"#48aaad\",\"background_overlay_color_b\":\"#1E293B52\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"css_classes\":\"header-breadcrumbs-section\",\"pp_display_conditions_enable\":\"yes\"},\"elements\":[{\"id\":\"13f6f159\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"page-title\\\" settings=\\\"%7B%22include_context%22%3A%22%22%2C%22show_home_title%22%3A%22%22%2C%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3b30e8f\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"}],\"isInner\":false}]'),
(814, 96, '_elementor_source', 'post'),
(815, 96, '_elementor_edit_mode', 'builder'),
(816, 96, '_elementor_template_type', 'header'),
(817, 96, '_elementor_version', '3.34.0'),
(818, 96, '_elementor_pro_version', '3.17.1'),
(819, 96, '_wp_page_template', 'default'),
(820, 96, '_elementor_data', '[{\"id\":\"1429e242\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29f1307\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fa260ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cedb743\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"007c566\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"z_index\":1},\"elements\":[{\"id\":\"5ffd1cde\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_justify_content_tablet_extra\":\"center\",\"flex_align_items\":\"center\",\"flex_wrap_tablet_extra\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f9f92a0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d292bd0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad6ad10\"}],\"pp_display_conditions\":[{\"_id\":\"a7020fb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_widescreen\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6e69ad7a\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"41 60 00 40\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"f9bb7da\",\"link\":{\"url\":\"tel:41600040\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"kontakt@cp-nordic.dk\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"1ee7ee1\",\"link\":{\"url\":\"mailto:kontakt@cp-nordic.dk\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align_tablet_extra\":\"center\",\"icon_color\":\"#fafafa\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#ffffff\",\"pp_display_conditions\":[{\"_id\":\"687bdf5\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"\"},\"icon_color_hover\":\"#E4E4E4\",\"text_color_hover\":\"#E4E4E4\",\"divider\":\"yes\",\"divider_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"3027eeaf\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-end\",\"flex_justify_content_tablet_extra\":\"center\",\"flex_align_items\":\"center\",\"flex_wrap_tablet_extra\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f9f92a0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d292bd0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad6ad10\"}],\"pp_display_conditions\":[{\"_id\":\"a7020fb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_widescreen\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"557e3125\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"1a75682\",\"link\":{\"url\":\"https:\\/\\/www.facebook.com\\/cpnordic\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"da32d70\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/cpnordic\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"589cdcb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor5\"},\"icon_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"67407e3b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2e8ba73\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f52efb8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"717f375\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"394af17\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"flex_wrap_mobile\":\"nowrap\",\"z_index\":1,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FCFCFC17\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-124\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"\"}},\"elements\":[{\"id\":\"341f8b74\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"33df9dc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7bdec\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"90e6e83\"}],\"pp_display_conditions\":[{\"_id\":\"3e37d22\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"4cc70c2e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":49,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/Transparent-File-02-scaled.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"link_to\":\"custom\",\"space\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"ef1f052\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"7043833\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"space_mobile_extra\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"space_tablet_extra\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"29f8b7e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":80},\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"13efff7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4ba59b9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9a413e\"}],\"pp_display_conditions\":[{\"_id\":\"6633050\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"flex_align_items\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"flex_direction_mobile\":\"row-reverse\",\"flex_justify_content_mobile\":\"flex-start\",\"flex_wrap_mobile\":\"nowrap\"},\"elements\":[{\"id\":\"55ad1095\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"pointer\":\"none\",\"toggle_label\":\"Menu\",\"pp_display_conditions\":[{\"_id\":\"6d90ae3\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"menu_type\":\"off-canvas\",\"toggle_align\":\"right\",\"toggle_background_color\":\"#02010100\",\"toggle_background_color_hover\":\"#02010100\",\"offcanvas_position\":\"right\",\"close_icon_background_color\":\"#02010100\",\"close_icon_background_color_hover\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_weight\":\"500\",\"__globals__\":{\"toggle_color\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_color_hover\":\"globals\\/colors?id=astglobalcolor3\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor5\",\"mobile_sub_link_color\":\"globals\\/colors?id=astglobalcolor5\",\"mobile_sub_link_bg_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor5\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_hover\":\"globals\\/colors?id=astglobalcolor5\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"close_icon_color_hover\":\"globals\\/colors?id=astglobalcolor5\",\"color_menu_item\":\"globals\\/colors?id=astglobalcolor4\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item\":\"globals\\/colors?id=astglobalcolor5\",\"background_color_dropdown_item\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor5\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor5\",\"background_color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"dropdown_divider_color\":\"\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"menu_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"color_menu_item_hover\":\"#045cb4\",\"color_menu_item_active\":\"#045cb4\",\"color_dropdown_item\":\"#F0F5FA\",\"background_color_dropdown_item\":\"#046bd2\",\"color_dropdown_item_hover\":\"#F0F5FA\",\"background_color_dropdown_item_hover\":\"#045cb4\",\"color_dropdown_item_active\":\"#F0F5FA\",\"background_color_dropdown_item_active\":\"#045cb4\",\"dropdown_divider_border\":\"solid\",\"dropdown_divider_color\":\"#F0F5FA36\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"toggle_color\":\"#046bd2\",\"toggle_color_hover\":\"#334155\",\"overlay_bg_color\":\"#1e293b\",\"mobile_link_color\":\"#F0F5FA\",\"mobile_sub_link_bg_color\":\"#1e293b\",\"mobile_sub_link_color\":\"#F0F5FA\",\"mobile_link_hover\":\"#F0F5FA\",\"mobile_link_bg_hover\":\"#046bd2\",\"mobile_sub_link_bg_hover\":\"#046bd2\",\"mobile_sub_link_hover\":\"#F0F5FA\",\"close_icon_color\":\"#F0F5FA\",\"close_icon_color_hover\":\"#F0F5FA\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"toggle_size_mobile\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"4027936a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"730407e\",\"pp_condition_date_time_before_value\":\"2024-10-27 14:19\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"348be72f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":201,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":164,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f25b0fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8462f23\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f25e330\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"pp_condition_key\":\"page\",\"pp_condition_operator\":\"not\",\"_id\":\"eda4653\",\"pp_condition_page_value\":[\"10\"],\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"\"},\"background_overlay_color\":\"#48aaad\",\"background_overlay_color_b\":\"#1E293B52\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"css_classes\":\"header-breadcrumbs-section\",\"pp_display_conditions_enable\":\"yes\"},\"elements\":[{\"id\":\"13f6f159\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"page-title\\\" settings=\\\"%7B%22include_context%22%3A%22%22%2C%22show_home_title%22%3A%22%22%2C%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3b30e8f\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"}],\"isInner\":false}]'),
(806, 95, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(1207, 148, '_elementor_edit_mode', 'builder'),
(1187, 146, '_elementor_edit_mode', 'builder'),
(1188, 146, '_elementor_template_type', 'wp-page'),
(1189, 146, '_elementor_version', '3.34.0'),
(1190, 146, '_elementor_pro_version', '3.17.1'),
(1191, 146, '_wp_page_template', 'default'),
(1192, 146, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"},{\"id\":56,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-2-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}]},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(1193, 146, '_elementor_page_settings', 'a:0:{}'),
(1220, 149, '_elementor_edit_mode', 'builder'),
(1221, 149, '_elementor_template_type', 'wp-page'),
(1222, 149, '_elementor_version', '3.34.0'),
(1223, 149, '_elementor_pro_version', '3.17.1'),
(1224, 149, '_wp_page_template', 'default'),
(1225, 149, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"},{\"id\":56,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-2-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}]},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(5040, 550, '_elementor_source', 'post'),
(829, 97, '_elementor_source', 'post'),
(830, 97, '_elementor_edit_mode', 'builder'),
(831, 97, '_elementor_template_type', 'header'),
(832, 97, '_elementor_version', '3.34.0'),
(833, 97, '_elementor_pro_version', '3.17.1'),
(834, 97, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(835, 97, '_elementor_data', '[{\"id\":\"1429e242\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29f1307\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fa260ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cedb743\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"007c566\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"z_index\":1,\"hide_widescreen\":\"hidden-widescreen\"},\"elements\":[{\"id\":\"5ffd1cde\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_justify_content_tablet_extra\":\"center\",\"flex_align_items\":\"center\",\"flex_wrap_tablet_extra\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f9f92a0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d292bd0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad6ad10\"}],\"pp_display_conditions\":[{\"_id\":\"a7020fb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_widescreen\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6e69ad7a\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"41 60 00 40\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"f9bb7da\",\"link\":{\"url\":\"tel:41600040\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"kontakt@cp-nordic.dk\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"1ee7ee1\",\"link\":{\"url\":\"mailto:kontakt@cp-nordic.dk\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align_tablet_extra\":\"center\",\"icon_color\":\"#fafafa\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#ffffff\",\"pp_display_conditions\":[{\"_id\":\"687bdf5\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"\"},\"icon_color_hover\":\"#E4E4E4\",\"text_color_hover\":\"#E4E4E4\",\"divider\":\"yes\",\"divider_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"3027eeaf\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-end\",\"flex_justify_content_tablet_extra\":\"center\",\"flex_align_items\":\"center\",\"flex_wrap_tablet_extra\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f9f92a0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d292bd0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad6ad10\"}],\"pp_display_conditions\":[{\"_id\":\"a7020fb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_widescreen\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"557e3125\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"1a75682\",\"link\":{\"url\":\"https:\\/\\/www.facebook.com\\/cpnordic\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"da32d70\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/cpnordic\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"589cdcb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor5\"},\"icon_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"67407e3b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2e8ba73\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f52efb8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"717f375\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"394af17\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"flex_wrap_mobile\":\"nowrap\",\"z_index\":1,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FCFCFC17\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-124\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"\"}},\"elements\":[{\"id\":\"341f8b74\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"33df9dc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7bdec\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"90e6e83\"}],\"pp_display_conditions\":[{\"_id\":\"3e37d22\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"4cc70c2e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":49,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/Transparent-File-02-scaled.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"link_to\":\"custom\",\"space\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"ef1f052\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"7043833\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"space_mobile_extra\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"space_tablet_extra\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"29f8b7e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":80},\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"13efff7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4ba59b9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9a413e\"}],\"pp_display_conditions\":[{\"_id\":\"6633050\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"flex_align_items\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"flex_direction_mobile\":\"row-reverse\",\"flex_justify_content_mobile\":\"flex-start\",\"flex_wrap_mobile\":\"nowrap\"},\"elements\":[{\"id\":\"55ad1095\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"pointer\":\"none\",\"toggle_label\":\"Menu\",\"pp_display_conditions\":[{\"_id\":\"6d90ae3\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"menu_type\":\"off-canvas\",\"toggle_align\":\"right\",\"toggle_background_color\":\"#02010100\",\"toggle_background_color_hover\":\"#02010100\",\"offcanvas_position\":\"right\",\"close_icon_background_color\":\"#02010100\",\"close_icon_background_color_hover\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_weight\":\"500\",\"__globals__\":{\"toggle_color\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_color_hover\":\"globals\\/colors?id=astglobalcolor3\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor5\",\"mobile_sub_link_color\":\"globals\\/colors?id=astglobalcolor5\",\"mobile_sub_link_bg_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor5\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_hover\":\"globals\\/colors?id=astglobalcolor5\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"close_icon_color_hover\":\"globals\\/colors?id=astglobalcolor5\",\"color_menu_item\":\"globals\\/colors?id=astglobalcolor4\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item\":\"globals\\/colors?id=astglobalcolor5\",\"background_color_dropdown_item\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor5\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor5\",\"background_color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"dropdown_divider_color\":\"\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"menu_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"color_menu_item_hover\":\"#045cb4\",\"color_menu_item_active\":\"#045cb4\",\"color_dropdown_item\":\"#F0F5FA\",\"background_color_dropdown_item\":\"#046bd2\",\"color_dropdown_item_hover\":\"#F0F5FA\",\"background_color_dropdown_item_hover\":\"#045cb4\",\"color_dropdown_item_active\":\"#F0F5FA\",\"background_color_dropdown_item_active\":\"#045cb4\",\"dropdown_divider_border\":\"solid\",\"dropdown_divider_color\":\"#F0F5FA36\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"toggle_color\":\"#046bd2\",\"toggle_color_hover\":\"#334155\",\"overlay_bg_color\":\"#1e293b\",\"mobile_link_color\":\"#F0F5FA\",\"mobile_sub_link_bg_color\":\"#1e293b\",\"mobile_sub_link_color\":\"#F0F5FA\",\"mobile_link_hover\":\"#F0F5FA\",\"mobile_link_bg_hover\":\"#046bd2\",\"mobile_sub_link_bg_hover\":\"#046bd2\",\"mobile_sub_link_hover\":\"#F0F5FA\",\"close_icon_color\":\"#F0F5FA\",\"close_icon_color_hover\":\"#F0F5FA\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"toggle_size_mobile\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"4027936a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"730407e\",\"pp_condition_date_time_before_value\":\"2024-10-27 14:19\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"348be72f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":201,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":164,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f25b0fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8462f23\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f25e330\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"pp_condition_key\":\"page\",\"pp_condition_operator\":\"not\",\"_id\":\"eda4653\",\"pp_condition_page_value\":[\"10\"],\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"\"},\"background_overlay_color\":\"#48aaad\",\"background_overlay_color_b\":\"#1E293B52\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"css_classes\":\"header-breadcrumbs-section\",\"pp_display_conditions_enable\":\"yes\"},\"elements\":[{\"id\":\"13f6f159\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"page-title\\\" settings=\\\"%7B%22include_context%22%3A%22%22%2C%22show_home_title%22%3A%22%22%2C%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3b30e8f\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"}],\"isInner\":false}]'),
(821, 96, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(1208, 148, '_elementor_template_type', 'wp-page'),
(1209, 148, '_elementor_version', '3.34.0'),
(1210, 148, '_elementor_pro_version', '3.17.1'),
(1211, 148, '_wp_page_template', 'default'),
(1212, 148, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"},{\"id\":56,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-2-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}]},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(1138, 141, '_elementor_page_settings', 'a:0:{}'),
(1203, 147, '_elementor_page_settings', 'a:0:{}'),
(1142, 142, '_elementor_edit_mode', 'builder'),
(1143, 142, '_elementor_template_type', 'wp-page'),
(1144, 142, '_elementor_version', '3.34.0'),
(1145, 142, '_elementor_pro_version', '3.17.1'),
(1146, 142, '_wp_page_template', 'default'),
(1147, 142, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"},{\"id\":56,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-2-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}]},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(1148, 142, '_elementor_page_settings', 'a:0:{}'),
(845, 98, '_elementor_source', 'post'),
(846, 98, '_elementor_edit_mode', 'builder'),
(847, 98, '_elementor_template_type', 'header'),
(848, 98, '_elementor_version', '3.34.0'),
(849, 98, '_elementor_pro_version', '3.17.1'),
(850, 98, '_wp_page_template', 'default'),
(851, 98, '_elementor_data', '[{\"id\":\"1429e242\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29f1307\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fa260ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cedb743\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"007c566\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"z_index\":1,\"hide_widescreen\":\"hidden-widescreen\"},\"elements\":[{\"id\":\"5ffd1cde\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_justify_content_tablet_extra\":\"center\",\"flex_align_items\":\"center\",\"flex_wrap_tablet_extra\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f9f92a0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d292bd0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad6ad10\"}],\"pp_display_conditions\":[{\"_id\":\"a7020fb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_widescreen\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6e69ad7a\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"41 60 00 40\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"f9bb7da\",\"link\":{\"url\":\"tel:41600040\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"kontakt@cp-nordic.dk\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"1ee7ee1\",\"link\":{\"url\":\"mailto:kontakt@cp-nordic.dk\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align_tablet_extra\":\"center\",\"icon_color\":\"#fafafa\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#ffffff\",\"pp_display_conditions\":[{\"_id\":\"687bdf5\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"\"},\"icon_color_hover\":\"#E4E4E4\",\"text_color_hover\":\"#E4E4E4\",\"divider\":\"yes\",\"divider_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"3027eeaf\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-end\",\"flex_justify_content_tablet_extra\":\"center\",\"flex_align_items\":\"center\",\"flex_wrap_tablet_extra\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f9f92a0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d292bd0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad6ad10\"}],\"pp_display_conditions\":[{\"_id\":\"a7020fb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_widescreen\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"557e3125\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"1a75682\",\"link\":{\"url\":\"https:\\/\\/www.facebook.com\\/cpnordic\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"da32d70\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/cpnordic\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"589cdcb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor5\"},\"icon_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"67407e3b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2e8ba73\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f52efb8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"717f375\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"394af17\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"flex_wrap_mobile\":\"nowrap\",\"z_index\":1,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FCFCFC17\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-124\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"\"}},\"elements\":[{\"id\":\"341f8b74\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"33df9dc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7bdec\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"90e6e83\"}],\"pp_display_conditions\":[{\"_id\":\"3e37d22\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"4cc70c2e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":49,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/Transparent-File-02-scaled.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"link_to\":\"custom\",\"space\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"ef1f052\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"7043833\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"space_mobile_extra\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"space_tablet_extra\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"29f8b7e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":80},\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"13efff7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4ba59b9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9a413e\"}],\"pp_display_conditions\":[{\"_id\":\"6633050\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"flex_align_items\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"flex_direction_mobile\":\"row-reverse\",\"flex_justify_content_mobile\":\"flex-start\",\"flex_wrap_mobile\":\"nowrap\"},\"elements\":[{\"id\":\"55ad1095\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"pointer\":\"none\",\"toggle_label\":\"Menu\",\"pp_display_conditions\":[{\"_id\":\"6d90ae3\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"menu_type\":\"off-canvas\",\"toggle_align\":\"right\",\"toggle_background_color\":\"#02010100\",\"toggle_background_color_hover\":\"#02010100\",\"offcanvas_position\":\"right\",\"close_icon_background_color\":\"#02010100\",\"close_icon_background_color_hover\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_weight\":\"500\",\"__globals__\":{\"toggle_color\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_color_hover\":\"globals\\/colors?id=astglobalcolor3\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor5\",\"mobile_sub_link_color\":\"globals\\/colors?id=astglobalcolor5\",\"mobile_sub_link_bg_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor5\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_hover\":\"globals\\/colors?id=astglobalcolor5\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"close_icon_color_hover\":\"globals\\/colors?id=astglobalcolor5\",\"color_menu_item\":\"globals\\/colors?id=astglobalcolor4\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor4\",\"color_dropdown_item\":\"globals\\/colors?id=astglobalcolor5\",\"background_color_dropdown_item\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor5\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor5\",\"background_color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"dropdown_divider_color\":\"\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"menu_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"color_menu_item_hover\":\"#045cb4\",\"color_menu_item_active\":\"#045cb4\",\"color_dropdown_item\":\"#F0F5FA\",\"background_color_dropdown_item\":\"#046bd2\",\"color_dropdown_item_hover\":\"#F0F5FA\",\"background_color_dropdown_item_hover\":\"#045cb4\",\"color_dropdown_item_active\":\"#F0F5FA\",\"background_color_dropdown_item_active\":\"#045cb4\",\"dropdown_divider_border\":\"solid\",\"dropdown_divider_color\":\"#F0F5FA36\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"toggle_color\":\"#046bd2\",\"toggle_color_hover\":\"#334155\",\"overlay_bg_color\":\"#1e293b\",\"mobile_link_color\":\"#F0F5FA\",\"mobile_sub_link_bg_color\":\"#1e293b\",\"mobile_sub_link_color\":\"#F0F5FA\",\"mobile_link_hover\":\"#F0F5FA\",\"mobile_link_bg_hover\":\"#046bd2\",\"mobile_sub_link_bg_hover\":\"#046bd2\",\"mobile_sub_link_hover\":\"#F0F5FA\",\"close_icon_color\":\"#F0F5FA\",\"close_icon_color_hover\":\"#F0F5FA\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"toggle_size_mobile\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"4027936a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"730407e\",\"pp_condition_date_time_before_value\":\"2024-10-27 14:19\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"348be72f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":201,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":164,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f25b0fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8462f23\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f25e330\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"pp_condition_key\":\"page\",\"pp_condition_operator\":\"not\",\"_id\":\"eda4653\",\"pp_condition_page_value\":[\"10\"],\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"\"},\"background_overlay_color\":\"#48aaad\",\"background_overlay_color_b\":\"#1E293B52\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"css_classes\":\"header-breadcrumbs-section\",\"pp_display_conditions_enable\":\"yes\"},\"elements\":[{\"id\":\"13f6f159\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"page-title\\\" settings=\\\"%7B%22include_context%22%3A%22%22%2C%22show_home_title%22%3A%22%22%2C%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3b30e8f\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"}],\"isInner\":false}]'),
(836, 97, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(1267, 154, '_elementor_edit_mode', 'builder'),
(1197, 147, '_elementor_edit_mode', 'builder'),
(1198, 147, '_elementor_template_type', 'wp-page'),
(1199, 147, '_elementor_version', '3.34.0'),
(1200, 147, '_elementor_pro_version', '3.17.1'),
(1201, 147, '_wp_page_template', 'default'),
(1202, 147, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"},{\"id\":56,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-2-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}]},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(1152, 143, '_elementor_edit_mode', 'builder'),
(1153, 143, '_elementor_template_type', 'wp-page'),
(1154, 143, '_elementor_version', '3.34.0'),
(1155, 143, '_elementor_pro_version', '3.17.1'),
(1156, 143, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1157, 143, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"},{\"id\":56,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-2-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}]},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(1168, 145, '_elementor_edit_mode', 'builder'),
(1169, 145, '_elementor_template_type', 'kit'),
(1170, 145, '_wp_page_template', 'default'),
(1171, 145, '_elementor_page_settings', 'a:32:{s:13:\"system_colors\";a:4:{i:0;a:2:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";}i:1;a:2:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";}i:2;a:2:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";}i:3;a:2:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";}}s:13:\"custom_colors\";a:0:{}s:17:\"system_typography\";a:4:{i:0;a:5:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Nekst Black\";s:22:\"typography_font_weight\";s:3:\"600\";}i:1;a:5:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Nekst Black\";s:22:\"typography_font_weight\";s:3:\"400\";}i:2;a:5:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"400\";}i:3;a:5:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"500\";}}s:17:\"custom_typography\";a:0:{}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:9:\"site_name\";s:9:\"CP-NORDIC\";s:15:\"container_width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:1240;s:5:\"sizes\";a:0:{}}s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:18:\"active_breakpoints\";a:5:{i:0;s:15:\"viewport_mobile\";i:1;s:21:\"viewport_mobile_extra\";i:2;s:15:\"viewport_tablet\";i:3;s:21:\"viewport_tablet_extra\";i:4;s:19:\"viewport_widescreen\";}s:15:\"viewport_mobile\";i:480;s:21:\"viewport_mobile_extra\";i:767;s:15:\"viewport_tablet\";i:991;s:21:\"viewport_tablet_extra\";i:1199;s:19:\"viewport_widescreen\";i:1200;s:11:\"viewport_md\";i:481;s:11:\"viewport_lg\";i:992;s:32:\"colors_enable_styleguide_preview\";s:3:\"yes\";s:15:\"activeItemIndex\";i:1;s:36:\"typography_enable_styleguide_preview\";s:3:\"yes\";s:24:\"h1_typography_typography\";s:6:\"custom\";s:25:\"h1_typography_font_family\";s:11:\"Nekst Black\";s:23:\"h1_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:60;s:5:\"sizes\";a:0:{}}s:24:\"h2_typography_typography\";s:6:\"custom\";s:23:\"h2_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:42;s:5:\"sizes\";a:0:{}}s:24:\"h3_typography_typography\";s:6:\"custom\";s:23:\"h3_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:32;s:5:\"sizes\";a:0:{}}s:24:\"h4_typography_typography\";s:6:\"custom\";s:23:\"h4_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:26;s:5:\"sizes\";a:0:{}}s:24:\"h5_typography_typography\";s:6:\"custom\";s:23:\"h5_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:22;s:5:\"sizes\";a:0:{}}s:24:\"h6_typography_typography\";s:6:\"custom\";s:23:\"h6_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}}'),
(858, 99, '_elementor_source', 'post'),
(859, 99, '_elementor_edit_mode', 'builder'),
(860, 99, '_elementor_template_type', 'header'),
(861, 99, '_elementor_version', '3.34.0'),
(862, 99, '_elementor_pro_version', '3.17.1'),
(863, 99, '_wp_page_template', 'default'),
(864, 99, '_elementor_data', '[{\"id\":\"1429e242\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29f1307\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fa260ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cedb743\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"007c566\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"z_index\":1,\"hide_widescreen\":\"hidden-widescreen\"},\"elements\":[{\"id\":\"5ffd1cde\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_justify_content_tablet_extra\":\"center\",\"flex_align_items\":\"center\",\"flex_wrap_tablet_extra\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f9f92a0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d292bd0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad6ad10\"}],\"pp_display_conditions\":[{\"_id\":\"a7020fb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_widescreen\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6e69ad7a\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"41 60 00 40\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"f9bb7da\",\"link\":{\"url\":\"tel:41600040\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"kontakt@cp-nordic.dk\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"1ee7ee1\",\"link\":{\"url\":\"mailto:kontakt@cp-nordic.dk\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align_tablet_extra\":\"center\",\"icon_color\":\"#fafafa\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#ffffff\",\"pp_display_conditions\":[{\"_id\":\"687bdf5\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"\"},\"icon_color_hover\":\"#E4E4E4\",\"text_color_hover\":\"#E4E4E4\",\"divider\":\"yes\",\"divider_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"3027eeaf\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-end\",\"flex_justify_content_tablet_extra\":\"center\",\"flex_align_items\":\"center\",\"flex_wrap_tablet_extra\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f9f92a0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d292bd0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad6ad10\"}],\"pp_display_conditions\":[{\"_id\":\"a7020fb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_widescreen\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"557e3125\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"1a75682\",\"link\":{\"url\":\"https:\\/\\/www.facebook.com\\/cpnordic\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"da32d70\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/cpnordic\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"589cdcb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor5\"},\"icon_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"67407e3b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2e8ba73\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f52efb8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"717f375\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"394af17\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"flex_wrap_mobile\":\"nowrap\",\"z_index\":1,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FCFCFC17\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-124\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"\"}},\"elements\":[{\"id\":\"341f8b74\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"33df9dc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7bdec\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"90e6e83\"}],\"pp_display_conditions\":[{\"_id\":\"3e37d22\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"4cc70c2e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":49,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/Transparent-File-02-scaled.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"link_to\":\"custom\",\"space\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"ef1f052\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"7043833\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"space_mobile_extra\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"space_tablet_extra\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"29f8b7e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":80},\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"13efff7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4ba59b9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9a413e\"}],\"pp_display_conditions\":[{\"_id\":\"6633050\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"flex_align_items\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"flex_direction_mobile\":\"row-reverse\",\"flex_justify_content_mobile\":\"flex-start\",\"flex_wrap_mobile\":\"nowrap\"},\"elements\":[{\"id\":\"55ad1095\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"pointer\":\"none\",\"toggle_label\":\"Menu\",\"pp_display_conditions\":[{\"_id\":\"6d90ae3\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"menu_type\":\"off-canvas\",\"toggle_align\":\"right\",\"toggle_background_color\":\"#02010100\",\"toggle_background_color_hover\":\"#02010100\",\"offcanvas_position\":\"right\",\"close_icon_background_color\":\"#02010100\",\"close_icon_background_color_hover\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_weight\":\"500\",\"__globals__\":{\"toggle_color\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_color_hover\":\"globals\\/colors?id=astglobalcolor3\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor5\",\"mobile_sub_link_color\":\"globals\\/colors?id=astglobalcolor5\",\"mobile_sub_link_bg_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor5\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_hover\":\"globals\\/colors?id=astglobalcolor5\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"close_icon_color_hover\":\"globals\\/colors?id=astglobalcolor5\",\"color_menu_item\":\"globals\\/colors?id=astglobalcolor4\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor4\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor4\",\"color_dropdown_item\":\"globals\\/colors?id=astglobalcolor5\",\"background_color_dropdown_item\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor5\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor5\",\"background_color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"dropdown_divider_color\":\"\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"menu_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"color_menu_item_hover\":\"#045cb4\",\"color_menu_item_active\":\"#045cb4\",\"color_dropdown_item\":\"#F0F5FA\",\"background_color_dropdown_item\":\"#046bd2\",\"color_dropdown_item_hover\":\"#F0F5FA\",\"background_color_dropdown_item_hover\":\"#045cb4\",\"color_dropdown_item_active\":\"#F0F5FA\",\"background_color_dropdown_item_active\":\"#045cb4\",\"dropdown_divider_border\":\"solid\",\"dropdown_divider_color\":\"#F0F5FA36\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"toggle_color\":\"#046bd2\",\"toggle_color_hover\":\"#334155\",\"overlay_bg_color\":\"#1e293b\",\"mobile_link_color\":\"#F0F5FA\",\"mobile_sub_link_bg_color\":\"#1e293b\",\"mobile_sub_link_color\":\"#F0F5FA\",\"mobile_link_hover\":\"#F0F5FA\",\"mobile_link_bg_hover\":\"#046bd2\",\"mobile_sub_link_bg_hover\":\"#046bd2\",\"mobile_sub_link_hover\":\"#F0F5FA\",\"close_icon_color\":\"#F0F5FA\",\"close_icon_color_hover\":\"#F0F5FA\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"toggle_size_mobile\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"4027936a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"730407e\",\"pp_condition_date_time_before_value\":\"2024-10-27 14:19\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"348be72f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":201,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":164,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f25b0fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8462f23\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f25e330\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"pp_condition_key\":\"page\",\"pp_condition_operator\":\"not\",\"_id\":\"eda4653\",\"pp_condition_page_value\":[\"10\"],\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"\"},\"background_overlay_color\":\"#48aaad\",\"background_overlay_color_b\":\"#1E293B52\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"css_classes\":\"header-breadcrumbs-section\",\"pp_display_conditions_enable\":\"yes\"},\"elements\":[{\"id\":\"13f6f159\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"page-title\\\" settings=\\\"%7B%22include_context%22%3A%22%22%2C%22show_home_title%22%3A%22%22%2C%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3b30e8f\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"}],\"isInner\":false}]'),
(852, 98, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(1172, 145, '_elementor_data', '[]'),
(1173, 145, '_elementor_version', '3.34.0'),
(1174, 145, '_elementor_pro_version', '3.17.1'),
(1251, 152, '_elementor_edit_mode', 'builder'),
(1252, 152, '_elementor_template_type', 'wp-page'),
(1253, 152, '_elementor_version', '3.34.0'),
(5047, 550, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(865, 99, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(1227, 149, '_elementor_page_settings', 'a:0:{}'),
(1230, 150, '_elementor_edit_mode', 'builder'),
(1231, 150, '_elementor_template_type', 'wp-page'),
(1232, 150, '_elementor_version', '3.34.0'),
(1233, 150, '_elementor_pro_version', '3.17.1'),
(1234, 150, '_wp_page_template', 'default'),
(1235, 150, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"},{\"id\":56,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-2-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}]},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(1591, 194, '_elementor_source', 'post'),
(1592, 194, '_elementor_edit_mode', 'builder'),
(1593, 194, '_elementor_template_type', 'header'),
(1594, 194, '_elementor_version', '3.34.0'),
(1595, 194, '_elementor_pro_version', '3.17.1'),
(1596, 194, '_wp_page_template', 'default'),
(1597, 194, '_elementor_data', '[{\"id\":\"1429e242\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_align_items\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"29f1307\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fa260ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cedb743\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"007c566\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"flex_gap\":{\"column\":\"10\",\"row\":\"10\",\"isLinked\":true,\"unit\":\"px\",\"size\":10},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"z_index\":1,\"hide_widescreen\":\"hidden-widescreen\"},\"elements\":[{\"id\":\"5ffd1cde\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"space-between\",\"flex_justify_content_tablet_extra\":\"center\",\"flex_align_items\":\"center\",\"flex_wrap_tablet_extra\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f9f92a0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d292bd0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad6ad10\"}],\"pp_display_conditions\":[{\"_id\":\"a7020fb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_widescreen\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6e69ad7a\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"41 60 00 40\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"f9bb7da\",\"link\":{\"url\":\"tel:41600040\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"kontakt@cp-nordic.dk\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"1ee7ee1\",\"link\":{\"url\":\"mailto:kontakt@cp-nordic.dk\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align_tablet_extra\":\"center\",\"icon_color\":\"#fafafa\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"text_color\":\"#ffffff\",\"pp_display_conditions\":[{\"_id\":\"687bdf5\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"\"},\"icon_color_hover\":\"#E4E4E4\",\"text_color_hover\":\"#E4E4E4\",\"divider\":\"yes\",\"divider_height\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"3027eeaf\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-end\",\"flex_justify_content_tablet_extra\":\"center\",\"flex_align_items\":\"center\",\"flex_wrap_tablet_extra\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f9f92a0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d292bd0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad6ad10\"}],\"pp_display_conditions\":[{\"_id\":\"a7020fb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"padding_widescreen\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile_extra\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"557e3125\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"1a75682\",\"link\":{\"url\":\"https:\\/\\/www.facebook.com\\/cpnordic\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"da32d70\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/cpnordic\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.4,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"589cdcb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor5\"},\"icon_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"67407e3b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2e8ba73\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f52efb8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"717f375\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"394af17\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"flex_wrap_mobile\":\"nowrap\",\"z_index\":1,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FCFCFC17\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-124\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"\"}},\"elements\":[{\"id\":\"341f8b74\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"33df9dc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7bdec\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"90e6e83\"}],\"pp_display_conditions\":[{\"_id\":\"3e37d22\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"4cc70c2e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":49,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/Transparent-File-02-scaled.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"link_to\":\"custom\",\"space\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"ef1f052\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"7043833\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"space_mobile_extra\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"space_tablet_extra\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"29f8b7e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":80},\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"13efff7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4ba59b9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9a413e\"}],\"pp_display_conditions\":[{\"_id\":\"6633050\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"flex_align_items\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"flex_direction_mobile\":\"row-reverse\",\"flex_justify_content_mobile\":\"flex-start\",\"flex_wrap_mobile\":\"nowrap\"},\"elements\":[{\"id\":\"55ad1095\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"pointer\":\"none\",\"toggle_label\":\"Menu\",\"pp_display_conditions\":[{\"_id\":\"6d90ae3\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"menu_type\":\"off-canvas\",\"toggle_align\":\"right\",\"toggle_background_color\":\"#02010100\",\"toggle_background_color_hover\":\"#02010100\",\"offcanvas_position\":\"right\",\"close_icon_background_color\":\"#02010100\",\"close_icon_background_color_hover\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_weight\":\"500\",\"__globals__\":{\"toggle_color\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_color_hover\":\"globals\\/colors?id=astglobalcolor3\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor5\",\"mobile_sub_link_color\":\"globals\\/colors?id=astglobalcolor5\",\"mobile_sub_link_bg_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor5\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_hover\":\"globals\\/colors?id=astglobalcolor5\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"close_icon_color_hover\":\"globals\\/colors?id=astglobalcolor5\",\"color_menu_item\":\"globals\\/colors?id=astglobalcolor4\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor4\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor4\",\"color_dropdown_item\":\"globals\\/colors?id=astglobalcolor5\",\"background_color_dropdown_item\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor5\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor5\",\"background_color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"dropdown_divider_color\":\"\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"menu_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"color_menu_item_hover\":\"#045cb4\",\"color_menu_item_active\":\"#045cb4\",\"color_dropdown_item\":\"#F0F5FA\",\"background_color_dropdown_item\":\"#046bd2\",\"color_dropdown_item_hover\":\"#F0F5FA\",\"background_color_dropdown_item_hover\":\"#045cb4\",\"color_dropdown_item_active\":\"#F0F5FA\",\"background_color_dropdown_item_active\":\"#045cb4\",\"dropdown_divider_border\":\"solid\",\"dropdown_divider_color\":\"#F0F5FA36\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"toggle_color\":\"#046bd2\",\"toggle_color_hover\":\"#334155\",\"overlay_bg_color\":\"#1e293b\",\"mobile_link_color\":\"#F0F5FA\",\"mobile_sub_link_bg_color\":\"#1e293b\",\"mobile_sub_link_color\":\"#F0F5FA\",\"mobile_link_hover\":\"#F0F5FA\",\"mobile_link_bg_hover\":\"#046bd2\",\"mobile_sub_link_bg_hover\":\"#046bd2\",\"mobile_sub_link_hover\":\"#F0F5FA\",\"close_icon_color\":\"#F0F5FA\",\"close_icon_color_hover\":\"#F0F5FA\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"toggle_size_mobile\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"4027936a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"730407e\",\"pp_condition_date_time_before_value\":\"2024-10-27 14:19\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"348be72f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":201,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":164,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"px\",\"size\":134,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f25b0fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8462f23\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f25e330\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"pp_condition_key\":\"page\",\"pp_condition_operator\":\"not\",\"_id\":\"eda4653\",\"pp_condition_page_value\":[\"10\"],\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"\"},\"background_overlay_color\":\"#48aaad\",\"background_overlay_color_b\":\"#1E293B52\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"css_classes\":\"header-breadcrumbs-section\",\"pp_display_conditions_enable\":\"yes\"},\"elements\":[{\"id\":\"13f6f159\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"page-title\\\" settings=\\\"%7B%22include_context%22%3A%22%22%2C%22show_home_title%22%3A%22%22%2C%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3b30e8f\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"}],\"isInner\":false}]'),
(1351, 161, '_elementor_page_settings', 'a:0:{}'),
(1354, 162, '_elementor_edit_mode', 'builder'),
(1355, 162, '_elementor_template_type', 'wp-page'),
(1356, 162, '_elementor_version', '3.34.0'),
(1357, 162, '_elementor_pro_version', '3.17.1'),
(1358, 162, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1359, 162, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"},{\"id\":56,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-2-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"3274ff7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(874, 101, '_wp_attached_file', '2026/01/web-app-manifest-512x512-1.png'),
(875, 101, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:38:\"2026/01/web-app-manifest-512x512-1.png\";s:8:\"filesize\";i:38592;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:38:\"web-app-manifest-512x512-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:18570;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:38:\"web-app-manifest-512x512-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7924;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(876, 102, '_wp_attached_file', '2026/01/cropped-web-app-manifest-512x512-1.png'),
(877, 102, '_wp_attachment_context', 'site-icon'),
(878, 102, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:46:\"2026/01/cropped-web-app-manifest-512x512-1.png\";s:8:\"filesize\";i:32066;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"cropped-web-app-manifest-512x512-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:18570;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"cropped-web-app-manifest-512x512-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7924;}s:13:\"site_icon-270\";a:5:{s:4:\"file\";s:46:\"cropped-web-app-manifest-512x512-1-270x270.png\";s:5:\"width\";i:270;s:6:\"height\";i:270;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16144;}s:13:\"site_icon-192\";a:5:{s:4:\"file\";s:46:\"cropped-web-app-manifest-512x512-1-192x192.png\";s:5:\"width\";i:192;s:6:\"height\";i:192;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10660;}s:13:\"site_icon-180\";a:5:{s:4:\"file\";s:46:\"cropped-web-app-manifest-512x512-1-180x180.png\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9960;}s:12:\"site_icon-32\";a:5:{s:4:\"file\";s:44:\"cropped-web-app-manifest-512x512-1-32x32.png\";s:5:\"width\";i:32;s:6:\"height\";i:32;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1125;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(881, 104, '_elementor_source', 'post'),
(882, 104, '_elementor_edit_mode', 'builder'),
(883, 104, '_elementor_template_type', 'footer'),
(884, 104, '_elementor_version', '3.34.2'),
(885, 104, '_elementor_pro_version', '3.34.2'),
(886, 104, '_astra_content_layout_flag', 'disabled'),
(888, 104, 'ast-title-bar-display', 'disabled'),
(889, 104, 'ast-featured-img', 'disabled'),
(890, 104, 'ast-site-content-layout', 'full-width-container'),
(891, 104, 'site-sidebar-layout', 'no-sidebar'),
(901, 104, '_elementor_data', '[{\"id\":\"3cf69bc7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"background_color\":\"#121212\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"flex_direction_tablet\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"56542ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ba59e70\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"65fd471\"}],\"pp_display_conditions\":[{\"_id\":\"890752a\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\"}]},\"elements\":[{\"id\":\"7d433401\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"boxed_width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e0467be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fba2414\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"86eef93\"}],\"pp_display_conditions\":[{\"_id\":\"892bbfe\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\"}],\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"100\",\"bottom\":\"10\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"flex_align_items_tablet\":\"center\"},\"elements\":[{\"id\":\"4b245e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/Transparent-File-02-scaled.png\",\"id\":49,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"3584c9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":240,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7a77842\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We cover all of Funen and also operate throughout Denmark by agreement.<br>\\n\\nCVR: 45458830\",\"align_tablet\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"text_color\":\"#F3F3F3\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":295,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"40edc0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3f1c0dda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":17,\"sizes\":[]},\"boxed_width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"boxed_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"wrap\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content_tablet\":\"center\",\"flex_align_items_tablet\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9cef852\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3267f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"568580d\"}],\"pp_display_conditions\":[{\"_id\":\"3b43c19\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\"}]},\"elements\":[{\"id\":\"25ffa917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick Links\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"97f1c92\",\"pp_condition_date_time_before_value\":\"2023-11-08 15:26\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\"}],\"align_tablet\":\"center\",\"align_mobile_extra\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"_element_width\":\"inherit\",\"typography_typography\":\"custom\",\"title_color\":\"#FFFFFF\",\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6373b647\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Hjem\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5dee041\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Tjenester\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"fdf1982\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/tjenester\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Referencer\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/referencer\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5076fdb\"},{\"text\":\"Om os\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/om-os\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1cdf804\"},{\"text\":\"Kontakt\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/kontakt\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"085decf\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"db62914\",\"pp_condition_date_time_before_value\":\"2023-11-08 15:26\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\"}],\"icon_align_tablet\":\"center\",\"icon_align_mobile_extra\":\"center\",\"__globals__\":{\"text_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=accent\"},\"text_color\":\"#E2E2E2\",\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_elements_tooltip_content\":\"Tooltip Content\",\"icon_typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7b991634\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ac9468\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f73d65c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e9fdb2\"}],\"pp_display_conditions\":[{\"_id\":\"6b3e2fa\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\"}]},\"elements\":[{\"id\":\"1dc7df4b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"97f1c92\",\"pp_condition_date_time_before_value\":\"2023-11-08 15:26\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\"}],\"align_tablet\":\"center\",\"align_mobile_extra\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"_element_width\":\"inherit\",\"title_color\":\"#FFFFFF\",\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45a55ad8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"CP NORDIC ApS : B\\u00f8jdenvejen 7, 5772 Kv\\u00e6rndrup\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"857a7bd\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=55.178036,10.52236&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=B%C3%B8jdenvejen%207%205772%20Kv%C3%A6rndrup%20Denmark\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"41 60 00 40\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:41600040\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f722a06\"},{\"text\":\"kontakt@cp-nordic.dk\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:kontakt@cp-nordic.dk\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f7076d3\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"db62914\",\"pp_condition_date_time_before_value\":\"2023-11-08 15:26\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\"}],\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align_tablet\":\"center\",\"icon_align_mobile_extra\":\"center\",\"icon_vertical_offset_mobile_extra\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_self_align_mobile_extra\":\"left\",\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=accent\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_vertical_offset_tablet\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"text_color\":\"#E2E2E2\",\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_elements_tooltip_content\":\"Tooltip Content\",\"icon_typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"d5ed30d\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"1a75682\",\"link\":{\"url\":\"https:\\/\\/www.facebook.com\\/cpnordic\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"da32d70\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/cpnordic\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.6,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"589cdcb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor6\"},\"icon_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"left\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"23c37f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ac9468\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f73d65c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e9fdb2\"}],\"pp_display_conditions\":[{\"_id\":\"6b3e2fa\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\"}]},\"elements\":[{\"id\":\"4bb313b\",\"elType\":\"widget\",\"settings\":{\"address\":\"B\\u00f8jdenvejen 7, 5772 Kv\\u00e6rndrup\",\"height\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"c3942e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5e55ea6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"flex_direction_tablet\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"56542ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ba59e70\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"65fd471\"}],\"pp_display_conditions\":[{\"_id\":\"890752a\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#222121\"},\"elements\":[{\"id\":\"543e7817\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"boxed_width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"boxed_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"wrap\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content_tablet\":\"center\",\"flex_align_items_tablet\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9cef852\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3267f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"568580d\"}],\"pp_display_conditions\":[{\"_id\":\"3b43c19\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"29e327ba\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u00a9 Copyright 2026 all rights reserved\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5dee041\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"db62914\",\"pp_condition_date_time_before_value\":\"2023-11-08 15:26\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"icon_align_tablet\":\"center\",\"icon_align_mobile_extra\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color_hover\":\"\"},\"text_color\":\"#FFFFFF\",\"pp_elements_tooltip_content\":\"Tooltip Content\",\"icon_typography_font_weight\":\"500\",\"view\":\"inline\",\"icon_align\":\"center\",\"icon_align_mobile\":\"center\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(893, 104, '_edit_lock', '1771069565:1'),
(894, 105, '_elementor_source', 'post'),
(895, 105, '_elementor_edit_mode', 'builder'),
(896, 105, '_elementor_template_type', 'footer'),
(897, 105, '_elementor_version', '3.34.0'),
(898, 105, '_elementor_pro_version', '3.17.1'),
(899, 105, '_elementor_page_settings', 'a:0:{}'),
(900, 104, '_wp_page_template', 'default'),
(933, 109, '_elementor_source', 'post'),
(934, 109, '_elementor_edit_mode', 'builder'),
(935, 109, '_elementor_template_type', 'footer'),
(936, 109, '_elementor_version', '3.34.0'),
(937, 109, '_elementor_pro_version', '3.17.1'),
(938, 109, '_wp_page_template', 'default'),
(939, 109, '_elementor_data', '[{\"id\":\"3cf69bc7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"background_color\":\"#121212\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"flex_direction_tablet\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"56542ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ba59e70\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"65fd471\"}],\"pp_display_conditions\":[{\"_id\":\"890752a\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\"}]},\"elements\":[{\"id\":\"7d433401\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"boxed_width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e0467be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fba2414\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"86eef93\"}],\"pp_display_conditions\":[{\"_id\":\"892bbfe\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\"}],\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"100\",\"bottom\":\"10\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b245e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/Transparent-File-02-scaled.png\",\"id\":49,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"3584c9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":240,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f1c0dda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"boxed_width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"boxed_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"wrap\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content_tablet\":\"center\",\"flex_align_items_tablet\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9cef852\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3267f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"568580d\"}],\"pp_display_conditions\":[{\"_id\":\"3b43c19\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\"}]},\"elements\":[{\"id\":\"25ffa917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick Links\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"97f1c92\",\"pp_condition_date_time_before_value\":\"2023-11-08 15:26\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\"}],\"align_tablet\":\"center\",\"align_mobile_extra\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"_element_width\":\"inherit\",\"typography_typography\":\"custom\",\"title_color\":\"#FFFFFF\",\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6373b647\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5dee041\"},{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"fdf1982\"},{\"text\":\"Our Approach\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"459235d\"},{\"text\":\"Industries\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"428ddef\"},{\"text\":\"Practice Areas\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0786040\"},{\"text\":\"Resources\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"45484e0\"},{\"text\":\"Free Checklists\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"616a050\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b46ba8d\"},{\"text\":\"Press\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ef98a52\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"db62914\",\"pp_condition_date_time_before_value\":\"2023-11-08 15:26\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\"}],\"icon_align_tablet\":\"center\",\"icon_align_mobile_extra\":\"center\",\"__globals__\":{\"text_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=accent\"},\"text_color\":\"#E2E2E2\",\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_elements_tooltip_content\":\"Tooltip Content\",\"icon_typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7b991634\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ac9468\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f73d65c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e9fdb2\"}],\"pp_display_conditions\":[{\"_id\":\"6b3e2fa\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\"}]},\"elements\":[{\"id\":\"1dc7df4b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"97f1c92\",\"pp_condition_date_time_before_value\":\"2023-11-08 15:26\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\"}],\"align_tablet\":\"center\",\"align_mobile_extra\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"_element_width\":\"inherit\",\"title_color\":\"#FFFFFF\",\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45a55ad8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location Here\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"857a7bd\",\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"}},{\"text\":\"Direct:  XXX-XXX-XXX\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:XXX-XXX-XXX\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f722a06\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"db62914\",\"pp_condition_date_time_before_value\":\"2023-11-08 15:26\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\"}],\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align_tablet\":\"center\",\"icon_align_mobile_extra\":\"center\",\"icon_vertical_offset_mobile_extra\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_self_align_mobile_extra\":\"left\",\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"globals\\/colors?id=accent\",\"text_color_hover\":\"globals\\/colors?id=accent\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_vertical_offset_tablet\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"text_color\":\"#E2E2E2\",\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_elements_tooltip_content\":\"Tooltip Content\",\"icon_typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6490b0e0\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"1a3c446\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"60a91b8\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"5e2324d\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"c2b233f\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.6,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fe20157\",\"pp_condition_date_time_before_value\":\"2023-11-15 04:40\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\"}],\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor5\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor5\"},\"align_tablet\":\"center\",\"hover_secondary_color\":\"#b20602\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5e55ea6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"flex_direction_tablet\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"56542ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ba59e70\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"65fd471\"}],\"pp_display_conditions\":[{\"_id\":\"890752a\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor2\"},\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"543e7817\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"boxed_width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"boxed_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"wrap\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content_tablet\":\"center\",\"flex_align_items_tablet\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9cef852\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3267f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"568580d\"}],\"pp_display_conditions\":[{\"_id\":\"3b43c19\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"29e327ba\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u00a9 Copyright 2026 all rights reserved\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5dee041\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"db62914\",\"pp_condition_date_time_before_value\":\"2023-11-08 15:26\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"icon_align_tablet\":\"center\",\"icon_align_mobile_extra\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color_hover\":\"\"},\"text_color\":\"#FFFFFF\",\"pp_elements_tooltip_content\":\"Tooltip Content\",\"icon_typography_font_weight\":\"500\",\"view\":\"inline\",\"icon_align\":\"center\",\"icon_align_mobile\":\"center\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(902, 106, '_elementor_source', 'post'),
(903, 106, '_elementor_edit_mode', 'builder'),
(904, 106, '_elementor_template_type', 'footer'),
(905, 106, '_elementor_version', '3.34.0'),
(906, 106, '_elementor_pro_version', '3.17.1'),
(907, 106, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(908, 106, '_elementor_data', '[{\"id\":\"3cf69bc7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"background_color\":\"#121212\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"flex_direction_tablet\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"56542ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ba59e70\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"65fd471\"}],\"pp_display_conditions\":[{\"_id\":\"890752a\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\"}]},\"elements\":[{\"id\":\"7d433401\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"boxed_width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e0467be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fba2414\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"86eef93\"}],\"pp_display_conditions\":[{\"_id\":\"892bbfe\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\"}],\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"100\",\"bottom\":\"10\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b245e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/Transparent-File-02-scaled.png\",\"id\":49,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"3584c9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"23a3d337\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Pharmaceutical, Medical Device, and Biotech life sciences consulting firm.<\\/p>\",\"text_color\":\"#E2E2E2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"37d413f\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3f1c0dda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"boxed_width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"boxed_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"wrap\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content_tablet\":\"center\",\"flex_align_items_tablet\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9cef852\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3267f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"568580d\"}],\"pp_display_conditions\":[{\"_id\":\"3b43c19\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\"}]},\"elements\":[{\"id\":\"25ffa917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick Links\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"97f1c92\",\"pp_condition_date_time_before_value\":\"2023-11-08 15:26\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\"}],\"align_tablet\":\"center\",\"align_mobile_extra\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"_element_width\":\"inherit\",\"typography_typography\":\"custom\",\"title_color\":\"#FFFFFF\",\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6373b647\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5dee041\"},{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"fdf1982\"},{\"text\":\"Our Approach\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"459235d\"},{\"text\":\"Industries\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"428ddef\"},{\"text\":\"Practice Areas\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0786040\"},{\"text\":\"Resources\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"45484e0\"},{\"text\":\"Free Checklists\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"616a050\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"b46ba8d\"},{\"text\":\"Press\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ef98a52\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"db62914\",\"pp_condition_date_time_before_value\":\"2023-11-08 15:26\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\"}],\"icon_align_tablet\":\"center\",\"icon_align_mobile_extra\":\"center\",\"__globals__\":{\"text_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=accent\"},\"text_color\":\"#E2E2E2\",\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_elements_tooltip_content\":\"Tooltip Content\",\"icon_typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7b991634\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ac9468\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f73d65c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e9fdb2\"}],\"pp_display_conditions\":[{\"_id\":\"6b3e2fa\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\"}]},\"elements\":[{\"id\":\"1dc7df4b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"97f1c92\",\"pp_condition_date_time_before_value\":\"2023-11-08 15:26\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\"}],\"align_tablet\":\"center\",\"align_mobile_extra\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"_element_width\":\"inherit\",\"title_color\":\"#FFFFFF\",\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45a55ad8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location Here\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"857a7bd\",\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"}},{\"text\":\"Direct:  XXX-XXX-XXX\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:XXX-XXX-XXX\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f722a06\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"db62914\",\"pp_condition_date_time_before_value\":\"2023-11-08 15:26\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\"}],\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align_tablet\":\"center\",\"icon_align_mobile_extra\":\"center\",\"icon_vertical_offset_mobile_extra\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_self_align_mobile_extra\":\"left\",\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"globals\\/colors?id=accent\",\"text_color_hover\":\"globals\\/colors?id=accent\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_vertical_offset_tablet\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"text_color\":\"#E2E2E2\",\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_elements_tooltip_content\":\"Tooltip Content\",\"icon_typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6490b0e0\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"1a3c446\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"60a91b8\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"5e2324d\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"c2b233f\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.6,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fe20157\",\"pp_condition_date_time_before_value\":\"2023-11-15 04:40\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\"}],\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor5\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor5\"},\"align_tablet\":\"center\",\"hover_secondary_color\":\"#b20602\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5e55ea6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"flex_direction_tablet\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"56542ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ba59e70\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"65fd471\"}],\"pp_display_conditions\":[{\"_id\":\"890752a\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor2\"},\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"543e7817\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"boxed_width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"boxed_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"wrap\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content_tablet\":\"center\",\"flex_align_items_tablet\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9cef852\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3267f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"568580d\"}],\"pp_display_conditions\":[{\"_id\":\"3b43c19\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"29e327ba\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u00a9 Copyright 2024 all rights reserved\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5dee041\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"db62914\",\"pp_condition_date_time_before_value\":\"2023-11-08 15:26\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"icon_align_tablet\":\"center\",\"icon_align_mobile_extra\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color_hover\":\"\"},\"text_color\":\"#FFFFFF\",\"pp_elements_tooltip_content\":\"Tooltip Content\",\"icon_typography_font_weight\":\"500\",\"view\":\"inline\",\"icon_align\":\"left\",\"icon_align_mobile\":\"center\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"48ec0b04\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"boxed_width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"boxed_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"wrap\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content_tablet\":\"center\",\"flex_align_items_tablet\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9cef852\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3267f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"568580d\"}],\"pp_display_conditions\":[{\"_id\":\"3b43c19\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20294cd\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Statement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5dee041\"},{\"text\":\"Accessibility Statement\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"bc3708c\"}],\"space_between\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"db62914\",\"pp_condition_date_time_before_value\":\"2023-11-08 15:26\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"icon_align_tablet\":\"center\",\"icon_align_mobile_extra\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\"},\"text_color\":\"#FFFFFF\",\"pp_elements_tooltip_content\":\"Tooltip Content\",\"icon_typography_font_weight\":\"400\",\"view\":\"inline\",\"icon_align\":\"right\",\"divider\":\"yes\",\"divider_height\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(947, 110, '_elementor_source', 'post'),
(948, 110, '_elementor_edit_mode', 'builder'),
(949, 110, '_elementor_template_type', 'footer'),
(950, 110, '_elementor_version', '3.34.0'),
(951, 110, '_elementor_pro_version', '3.17.1'),
(952, 110, '_wp_page_template', 'default'),
(953, 110, '_elementor_data', '[{\"id\":\"3cf69bc7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"background_color\":\"#121212\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"flex_direction_tablet\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"56542ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ba59e70\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"65fd471\"}],\"pp_display_conditions\":[{\"_id\":\"890752a\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\"}]},\"elements\":[{\"id\":\"7d433401\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"boxed_width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e0467be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fba2414\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"86eef93\"}],\"pp_display_conditions\":[{\"_id\":\"892bbfe\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\"}],\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"100\",\"bottom\":\"10\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b245e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/Transparent-File-02-scaled.png\",\"id\":49,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"3584c9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":240,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f1c0dda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"boxed_width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"boxed_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"wrap\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content_tablet\":\"center\",\"flex_align_items_tablet\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9cef852\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3267f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"568580d\"}],\"pp_display_conditions\":[{\"_id\":\"3b43c19\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\"}]},\"elements\":[{\"id\":\"25ffa917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick Links\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"97f1c92\",\"pp_condition_date_time_before_value\":\"2023-11-08 15:26\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\"}],\"align_tablet\":\"center\",\"align_mobile_extra\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"_element_width\":\"inherit\",\"typography_typography\":\"custom\",\"title_color\":\"#FFFFFF\",\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6373b647\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Hjem\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5dee041\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Tjenester\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"fdf1982\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/tjenester\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Referencer\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/referencer\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5076fdb\"},{\"text\":\"Om os\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/om-os\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1cdf804\"},{\"text\":\"Kontakt\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/kontakt\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"085decf\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"db62914\",\"pp_condition_date_time_before_value\":\"2023-11-08 15:26\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\"}],\"icon_align_tablet\":\"center\",\"icon_align_mobile_extra\":\"center\",\"__globals__\":{\"text_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=accent\"},\"text_color\":\"#E2E2E2\",\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_elements_tooltip_content\":\"Tooltip Content\",\"icon_typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7b991634\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ac9468\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f73d65c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e9fdb2\"}],\"pp_display_conditions\":[{\"_id\":\"6b3e2fa\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\"}]},\"elements\":[{\"id\":\"1dc7df4b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"97f1c92\",\"pp_condition_date_time_before_value\":\"2023-11-08 15:26\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\"}],\"align_tablet\":\"center\",\"align_mobile_extra\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"_element_width\":\"inherit\",\"title_color\":\"#FFFFFF\",\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45a55ad8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location Here\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"857a7bd\",\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"}},{\"text\":\"Direct:  XXX-XXX-XXX\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:XXX-XXX-XXX\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f722a06\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"db62914\",\"pp_condition_date_time_before_value\":\"2023-11-08 15:26\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\"}],\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align_tablet\":\"center\",\"icon_align_mobile_extra\":\"center\",\"icon_vertical_offset_mobile_extra\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_self_align_mobile_extra\":\"left\",\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"globals\\/colors?id=accent\",\"text_color_hover\":\"globals\\/colors?id=accent\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_vertical_offset_tablet\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"text_color\":\"#E2E2E2\",\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_elements_tooltip_content\":\"Tooltip Content\",\"icon_typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6490b0e0\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"1a3c446\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"60a91b8\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"5e2324d\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"c2b233f\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.6,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fe20157\",\"pp_condition_date_time_before_value\":\"2023-11-15 04:40\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\"}],\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor5\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor5\"},\"align_tablet\":\"center\",\"hover_secondary_color\":\"#b20602\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5e55ea6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"flex_direction_tablet\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"56542ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ba59e70\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"65fd471\"}],\"pp_display_conditions\":[{\"_id\":\"890752a\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor2\"},\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"543e7817\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"boxed_width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"boxed_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"wrap\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content_tablet\":\"center\",\"flex_align_items_tablet\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9cef852\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3267f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"568580d\"}],\"pp_display_conditions\":[{\"_id\":\"3b43c19\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"29e327ba\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u00a9 Copyright 2026 all rights reserved\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5dee041\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"db62914\",\"pp_condition_date_time_before_value\":\"2023-11-08 15:26\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"icon_align_tablet\":\"center\",\"icon_align_mobile_extra\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color_hover\":\"\"},\"text_color\":\"#FFFFFF\",\"pp_elements_tooltip_content\":\"Tooltip Content\",\"icon_typography_font_weight\":\"500\",\"view\":\"inline\",\"icon_align\":\"center\",\"icon_align_mobile\":\"center\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(981, 112, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(1407, 171, '_elementor_page_settings', 'a:0:{}'),
(1464, 178, '_elementor_edit_mode', 'builder'),
(1465, 178, '_elementor_template_type', 'wp-page'),
(1408, 172, '_elementor_edit_mode', 'builder'),
(1409, 172, '_elementor_template_type', 'wp-page'),
(919, 104, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(942, 109, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(973, 112, '_elementor_source', 'post'),
(974, 112, '_elementor_edit_mode', 'builder'),
(975, 112, '_elementor_template_type', 'footer'),
(976, 112, '_elementor_version', '3.34.0'),
(977, 112, '_elementor_pro_version', '3.17.1'),
(978, 112, '_wp_page_template', 'default'),
(979, 112, '_elementor_data', '[{\"id\":\"3cf69bc7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"background_color\":\"#121212\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"flex_direction_tablet\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"56542ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ba59e70\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"65fd471\"}],\"pp_display_conditions\":[{\"_id\":\"890752a\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\"}]},\"elements\":[{\"id\":\"7d433401\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"boxed_width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e0467be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fba2414\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"86eef93\"}],\"pp_display_conditions\":[{\"_id\":\"892bbfe\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\"}],\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"100\",\"bottom\":\"10\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b245e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/Transparent-File-02-scaled.png\",\"id\":49,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"3584c9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":240,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f1c0dda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"boxed_width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"boxed_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"wrap\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content_tablet\":\"center\",\"flex_align_items_tablet\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9cef852\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3267f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"568580d\"}],\"pp_display_conditions\":[{\"_id\":\"3b43c19\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\"}]},\"elements\":[{\"id\":\"25ffa917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick Links\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"97f1c92\",\"pp_condition_date_time_before_value\":\"2023-11-08 15:26\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\"}],\"align_tablet\":\"center\",\"align_mobile_extra\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"_element_width\":\"inherit\",\"typography_typography\":\"custom\",\"title_color\":\"#FFFFFF\",\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6373b647\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Hjem\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5dee041\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Tjenester\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"fdf1982\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/tjenester\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Referencer\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/referencer\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5076fdb\"},{\"text\":\"Om os\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/om-os\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1cdf804\"},{\"text\":\"Kontakt\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/kontakt\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"085decf\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"db62914\",\"pp_condition_date_time_before_value\":\"2023-11-08 15:26\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\"}],\"icon_align_tablet\":\"center\",\"icon_align_mobile_extra\":\"center\",\"__globals__\":{\"text_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=accent\"},\"text_color\":\"#E2E2E2\",\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_elements_tooltip_content\":\"Tooltip Content\",\"icon_typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7b991634\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ac9468\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f73d65c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e9fdb2\"}],\"pp_display_conditions\":[{\"_id\":\"6b3e2fa\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\"}]},\"elements\":[{\"id\":\"1dc7df4b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"97f1c92\",\"pp_condition_date_time_before_value\":\"2023-11-08 15:26\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\"}],\"align_tablet\":\"center\",\"align_mobile_extra\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"_element_width\":\"inherit\",\"title_color\":\"#FFFFFF\",\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45a55ad8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location Here\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"857a7bd\",\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"}},{\"text\":\"41 60 00 40\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:41600040\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f722a06\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"db62914\",\"pp_condition_date_time_before_value\":\"2023-11-08 15:26\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\"}],\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align_tablet\":\"center\",\"icon_align_mobile_extra\":\"center\",\"icon_vertical_offset_mobile_extra\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_self_align_mobile_extra\":\"left\",\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"globals\\/colors?id=accent\",\"text_color_hover\":\"globals\\/colors?id=accent\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_vertical_offset_tablet\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"text_color\":\"#E2E2E2\",\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_elements_tooltip_content\":\"Tooltip Content\",\"icon_typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6490b0e0\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"1a3c446\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"60a91b8\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"5e2324d\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"c2b233f\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.6,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fe20157\",\"pp_condition_date_time_before_value\":\"2023-11-15 04:40\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\"}],\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor5\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor5\"},\"align_tablet\":\"center\",\"hover_secondary_color\":\"#b20602\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5e55ea6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"flex_direction_tablet\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"56542ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ba59e70\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"65fd471\"}],\"pp_display_conditions\":[{\"_id\":\"890752a\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor2\"},\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"543e7817\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"boxed_width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"boxed_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"wrap\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content_tablet\":\"center\",\"flex_align_items_tablet\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9cef852\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3267f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"568580d\"}],\"pp_display_conditions\":[{\"_id\":\"3b43c19\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"29e327ba\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u00a9 Copyright 2026 all rights reserved\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5dee041\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"db62914\",\"pp_condition_date_time_before_value\":\"2023-11-08 15:26\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"icon_align_tablet\":\"center\",\"icon_align_mobile_extra\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color_hover\":\"\"},\"text_color\":\"#FFFFFF\",\"pp_elements_tooltip_content\":\"Tooltip Content\",\"icon_typography_font_weight\":\"500\",\"view\":\"inline\",\"icon_align\":\"center\",\"icon_align_mobile\":\"center\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(1424, 173, '_elementor_page_settings', 'a:0:{}'),
(1425, 174, '_elementor_edit_mode', 'builder'),
(1426, 174, '_elementor_template_type', 'wp-page'),
(1427, 174, '_elementor_version', '3.34.0'),
(1428, 174, '_elementor_pro_version', '3.17.1'),
(1429, 174, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1430, 174, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"},{\"id\":56,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-2-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"3274ff7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"ae4f379\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9a52583\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(1237, 150, '_elementor_page_settings', 'a:0:{}'),
(1116, 139, '_elementor_data', '[]'),
(1117, 139, '_elementor_version', '3.34.0'),
(1118, 139, '_elementor_pro_version', '3.17.1'),
(955, 110, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(1410, 172, '_elementor_version', '3.34.0'),
(1411, 172, '_elementor_pro_version', '3.17.1'),
(1412, 172, '_wp_page_template', 'default'),
(1413, 172, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"},{\"id\":56,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-2-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"3274ff7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"ae4f379\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9a52583\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(1433, 175, '_elementor_edit_mode', 'builder'),
(1417, 173, '_elementor_edit_mode', 'builder'),
(1418, 173, '_elementor_template_type', 'wp-page'),
(1419, 173, '_elementor_version', '3.34.0'),
(1420, 173, '_elementor_pro_version', '3.17.1'),
(1421, 173, '_wp_page_template', 'default'),
(1422, 173, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"},{\"id\":56,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-2-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"3274ff7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"ae4f379\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9a52583\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(988, 113, '_elementor_source', 'post'),
(989, 113, '_elementor_edit_mode', 'builder'),
(990, 113, '_elementor_template_type', 'footer'),
(991, 113, '_elementor_version', '3.34.0'),
(992, 113, '_elementor_pro_version', '3.17.1'),
(993, 113, '_wp_page_template', 'default'),
(994, 113, '_elementor_data', '[{\"id\":\"3cf69bc7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"background_color\":\"#121212\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"flex_direction_tablet\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"56542ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ba59e70\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"65fd471\"}],\"pp_display_conditions\":[{\"_id\":\"890752a\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\"}]},\"elements\":[{\"id\":\"7d433401\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"boxed_width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e0467be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fba2414\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"86eef93\"}],\"pp_display_conditions\":[{\"_id\":\"892bbfe\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\"}],\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"100\",\"bottom\":\"10\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b245e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/Transparent-File-02-scaled.png\",\"id\":49,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"3584c9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":240,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f1c0dda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"boxed_width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"boxed_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"wrap\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content_tablet\":\"center\",\"flex_align_items_tablet\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9cef852\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3267f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"568580d\"}],\"pp_display_conditions\":[{\"_id\":\"3b43c19\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\"}]},\"elements\":[{\"id\":\"25ffa917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick Links\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"97f1c92\",\"pp_condition_date_time_before_value\":\"2023-11-08 15:26\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\"}],\"align_tablet\":\"center\",\"align_mobile_extra\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"_element_width\":\"inherit\",\"typography_typography\":\"custom\",\"title_color\":\"#FFFFFF\",\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6373b647\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Hjem\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5dee041\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Tjenester\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"fdf1982\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/tjenester\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Referencer\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/referencer\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5076fdb\"},{\"text\":\"Om os\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/om-os\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1cdf804\"},{\"text\":\"Kontakt\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/kontakt\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"085decf\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"db62914\",\"pp_condition_date_time_before_value\":\"2023-11-08 15:26\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\"}],\"icon_align_tablet\":\"center\",\"icon_align_mobile_extra\":\"center\",\"__globals__\":{\"text_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=accent\"},\"text_color\":\"#E2E2E2\",\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_elements_tooltip_content\":\"Tooltip Content\",\"icon_typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7b991634\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ac9468\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f73d65c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e9fdb2\"}],\"pp_display_conditions\":[{\"_id\":\"6b3e2fa\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\"}]},\"elements\":[{\"id\":\"1dc7df4b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"97f1c92\",\"pp_condition_date_time_before_value\":\"2023-11-08 15:26\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\"}],\"align_tablet\":\"center\",\"align_mobile_extra\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"_element_width\":\"inherit\",\"title_color\":\"#FFFFFF\",\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45a55ad8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location Here\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"857a7bd\",\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"}},{\"text\":\"41 60 00 40\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:41600040\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f722a06\"},{\"text\":\"kontakt@cp-nordic.dk\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:kontakt@cp-nordic.dk\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f7076d3\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"db62914\",\"pp_condition_date_time_before_value\":\"2023-11-08 15:26\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\"}],\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align_tablet\":\"center\",\"icon_align_mobile_extra\":\"center\",\"icon_vertical_offset_mobile_extra\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_self_align_mobile_extra\":\"left\",\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=accent\",\"text_color_hover\":\"globals\\/colors?id=accent\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_vertical_offset_tablet\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"text_color\":\"#E2E2E2\",\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_elements_tooltip_content\":\"Tooltip Content\",\"icon_typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6490b0e0\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"1a3c446\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"60a91b8\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"5e2324d\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"c2b233f\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.6,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fe20157\",\"pp_condition_date_time_before_value\":\"2023-11-15 04:40\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\"}],\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor5\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor5\"},\"align_tablet\":\"center\",\"hover_secondary_color\":\"#b20602\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5e55ea6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"flex_direction_tablet\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"56542ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ba59e70\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"65fd471\"}],\"pp_display_conditions\":[{\"_id\":\"890752a\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor2\"},\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"543e7817\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"boxed_width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"boxed_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"wrap\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content_tablet\":\"center\",\"flex_align_items_tablet\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9cef852\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3267f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"568580d\"}],\"pp_display_conditions\":[{\"_id\":\"3b43c19\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"29e327ba\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u00a9 Copyright 2026 all rights reserved\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5dee041\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"db62914\",\"pp_condition_date_time_before_value\":\"2023-11-08 15:26\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"icon_align_tablet\":\"center\",\"icon_align_mobile_extra\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color_hover\":\"\"},\"text_color\":\"#FFFFFF\",\"pp_elements_tooltip_content\":\"Tooltip Content\",\"icon_typography_font_weight\":\"500\",\"view\":\"inline\",\"icon_align\":\"center\",\"icon_align_mobile\":\"center\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(1399, 170, '_elementor_page_settings', 'a:0:{}'),
(1400, 171, '_elementor_edit_mode', 'builder'),
(1401, 171, '_elementor_template_type', 'wp-page'),
(1402, 171, '_elementor_version', '3.34.0'),
(1403, 171, '_elementor_pro_version', '3.17.1'),
(1404, 171, '_wp_page_template', 'default'),
(1405, 171, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"},{\"id\":56,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-2-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"3274ff7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"ae4f379\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(1001, 114, '_elementor_source', 'post'),
(1002, 114, '_elementor_edit_mode', 'builder'),
(1003, 114, '_elementor_template_type', 'footer'),
(1004, 114, '_elementor_version', '3.34.0'),
(1005, 114, '_elementor_pro_version', '3.17.1'),
(1006, 114, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1007, 114, '_elementor_data', '[{\"id\":\"3cf69bc7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"background_color\":\"#121212\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"flex_direction_tablet\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"56542ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ba59e70\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"65fd471\"}],\"pp_display_conditions\":[{\"_id\":\"890752a\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\"}]},\"elements\":[{\"id\":\"7d433401\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"boxed_width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e0467be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fba2414\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"86eef93\"}],\"pp_display_conditions\":[{\"_id\":\"892bbfe\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\"}],\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"100\",\"bottom\":\"10\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b245e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/Transparent-File-02-scaled.png\",\"id\":49,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"3584c9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":240,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f1c0dda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"boxed_width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"boxed_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"wrap\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content_tablet\":\"center\",\"flex_align_items_tablet\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9cef852\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3267f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"568580d\"}],\"pp_display_conditions\":[{\"_id\":\"3b43c19\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\"}]},\"elements\":[{\"id\":\"25ffa917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick Links\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"97f1c92\",\"pp_condition_date_time_before_value\":\"2023-11-08 15:26\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\"}],\"align_tablet\":\"center\",\"align_mobile_extra\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"_element_width\":\"inherit\",\"typography_typography\":\"custom\",\"title_color\":\"#FFFFFF\",\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6373b647\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Hjem\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5dee041\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Tjenester\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"fdf1982\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/tjenester\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Referencer\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/referencer\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5076fdb\"},{\"text\":\"Om os\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/om-os\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1cdf804\"},{\"text\":\"Kontakt\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/kontakt\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"085decf\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"db62914\",\"pp_condition_date_time_before_value\":\"2023-11-08 15:26\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\"}],\"icon_align_tablet\":\"center\",\"icon_align_mobile_extra\":\"center\",\"__globals__\":{\"text_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=accent\"},\"text_color\":\"#E2E2E2\",\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_elements_tooltip_content\":\"Tooltip Content\",\"icon_typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7b991634\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ac9468\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f73d65c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e9fdb2\"}],\"pp_display_conditions\":[{\"_id\":\"6b3e2fa\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\"}]},\"elements\":[{\"id\":\"1dc7df4b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"97f1c92\",\"pp_condition_date_time_before_value\":\"2023-11-08 15:26\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\"}],\"align_tablet\":\"center\",\"align_mobile_extra\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"_element_width\":\"inherit\",\"title_color\":\"#FFFFFF\",\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45a55ad8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location Here\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"857a7bd\",\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"}},{\"text\":\"41 60 00 40\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:41600040\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f722a06\"},{\"text\":\"kontakt@cp-nordic.dk\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:kontakt@cp-nordic.dk\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f7076d3\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"db62914\",\"pp_condition_date_time_before_value\":\"2023-11-08 15:26\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\"}],\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align_tablet\":\"center\",\"icon_align_mobile_extra\":\"center\",\"icon_vertical_offset_mobile_extra\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_self_align_mobile_extra\":\"left\",\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=accent\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_vertical_offset_tablet\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"text_color\":\"#E2E2E2\",\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_elements_tooltip_content\":\"Tooltip Content\",\"icon_typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6490b0e0\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"1a3c446\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"60a91b8\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"5e2324d\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"c2b233f\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.6,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fe20157\",\"pp_condition_date_time_before_value\":\"2023-11-15 04:40\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\"}],\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor5\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor0\",\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor5\"},\"align_tablet\":\"center\",\"hover_secondary_color\":\"#b20602\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5e55ea6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"flex_direction_tablet\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"56542ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ba59e70\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"65fd471\"}],\"pp_display_conditions\":[{\"_id\":\"890752a\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor2\"},\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"543e7817\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"boxed_width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"boxed_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"wrap\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content_tablet\":\"center\",\"flex_align_items_tablet\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9cef852\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3267f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"568580d\"}],\"pp_display_conditions\":[{\"_id\":\"3b43c19\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"29e327ba\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u00a9 Copyright 2026 all rights reserved\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5dee041\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"db62914\",\"pp_condition_date_time_before_value\":\"2023-11-08 15:26\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"icon_align_tablet\":\"center\",\"icon_align_mobile_extra\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color_hover\":\"\"},\"text_color\":\"#FFFFFF\",\"pp_elements_tooltip_content\":\"Tooltip Content\",\"icon_typography_font_weight\":\"500\",\"view\":\"inline\",\"icon_align\":\"center\",\"icon_align_mobile\":\"center\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(1240, 151, '_elementor_edit_mode', 'builder'),
(996, 113, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(1380, 166, '_wp_attached_file', '2026/01/eco-home_4317441.svg'),
(1381, 166, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:2283;s:5:\"width\";i:512;s:6:\"height\";i:512;}'),
(1383, 167, '_wp_attached_file', '2026/01/jigsaw_3318186.svg'),
(1384, 167, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:3298;s:5:\"width\";i:512;s:6:\"height\";i:512;}'),
(1386, 168, '_wp_attached_file', '2026/01/garage-house_17118001.svg'),
(1387, 168, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:3172;s:5:\"width\";i:64;s:6:\"height\";i:64;}'),
(1389, 169, '_wp_attached_file', '2026/01/exit_14156757.svg'),
(1390, 169, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:361;s:5:\"width\";i:100;s:6:\"height\";i:100;}'),
(1241, 151, '_elementor_template_type', 'wp-page'),
(1242, 151, '_elementor_version', '3.34.0'),
(1243, 151, '_elementor_pro_version', '3.17.1'),
(1009, 114, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(1034, 116, '_elementor_source', 'post'),
(1035, 116, '_elementor_edit_mode', 'builder'),
(1036, 116, '_elementor_template_type', 'footer'),
(1037, 116, '_elementor_version', '3.34.0'),
(1038, 116, '_elementor_pro_version', '3.17.1'),
(1039, 116, '_wp_page_template', 'default'),
(1040, 116, '_elementor_data', '[{\"id\":\"3cf69bc7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"background_color\":\"#121212\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"flex_direction_tablet\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"56542ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ba59e70\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"65fd471\"}],\"pp_display_conditions\":[{\"_id\":\"890752a\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\"}]},\"elements\":[{\"id\":\"7d433401\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"boxed_width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e0467be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fba2414\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"86eef93\"}],\"pp_display_conditions\":[{\"_id\":\"892bbfe\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\"}],\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"100\",\"bottom\":\"10\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b245e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/Transparent-File-02-scaled.png\",\"id\":49,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"3584c9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":240,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3f1c0dda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"boxed_width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"boxed_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"wrap\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content_tablet\":\"center\",\"flex_align_items_tablet\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9cef852\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3267f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"568580d\"}],\"pp_display_conditions\":[{\"_id\":\"3b43c19\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\"}]},\"elements\":[{\"id\":\"25ffa917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick Links\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"97f1c92\",\"pp_condition_date_time_before_value\":\"2023-11-08 15:26\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\"}],\"align_tablet\":\"center\",\"align_mobile_extra\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"_element_width\":\"inherit\",\"typography_typography\":\"custom\",\"title_color\":\"#FFFFFF\",\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6373b647\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Hjem\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5dee041\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Tjenester\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"fdf1982\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/tjenester\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Referencer\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/referencer\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5076fdb\"},{\"text\":\"Om os\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/om-os\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1cdf804\"},{\"text\":\"Kontakt\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/kontakt\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"085decf\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"db62914\",\"pp_condition_date_time_before_value\":\"2023-11-08 15:26\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\"}],\"icon_align_tablet\":\"center\",\"icon_align_mobile_extra\":\"center\",\"__globals__\":{\"text_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=accent\"},\"text_color\":\"#E2E2E2\",\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_elements_tooltip_content\":\"Tooltip Content\",\"icon_typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7b991634\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ac9468\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f73d65c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e9fdb2\"}],\"pp_display_conditions\":[{\"_id\":\"6b3e2fa\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\"}]},\"elements\":[{\"id\":\"1dc7df4b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"97f1c92\",\"pp_condition_date_time_before_value\":\"2023-11-08 15:26\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\"}],\"align_tablet\":\"center\",\"align_mobile_extra\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"_element_width\":\"inherit\",\"title_color\":\"#FFFFFF\",\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45a55ad8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location Here\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"857a7bd\",\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"}},{\"text\":\"41 60 00 40\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:41600040\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f722a06\"},{\"text\":\"kontakt@cp-nordic.dk\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:kontakt@cp-nordic.dk\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f7076d3\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"db62914\",\"pp_condition_date_time_before_value\":\"2023-11-08 15:26\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\"}],\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align_tablet\":\"center\",\"icon_align_mobile_extra\":\"center\",\"icon_vertical_offset_mobile_extra\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_self_align_mobile_extra\":\"left\",\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=accent\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_vertical_offset_tablet\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"text_color\":\"#E2E2E2\",\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_elements_tooltip_content\":\"Tooltip Content\",\"icon_typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"d5ed30d\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"1a75682\",\"link\":{\"url\":\"https:\\/\\/www.facebook.com\\/cpnordic\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"da32d70\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/cpnordic\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.6,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"589cdcb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor6\"},\"icon_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5e55ea6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"flex_direction_tablet\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"56542ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ba59e70\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"65fd471\"}],\"pp_display_conditions\":[{\"_id\":\"890752a\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor2\"},\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"543e7817\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"boxed_width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"boxed_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"wrap\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content_tablet\":\"center\",\"flex_align_items_tablet\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9cef852\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3267f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"568580d\"}],\"pp_display_conditions\":[{\"_id\":\"3b43c19\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"29e327ba\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u00a9 Copyright 2026 all rights reserved\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5dee041\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"db62914\",\"pp_condition_date_time_before_value\":\"2023-11-08 15:26\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"icon_align_tablet\":\"center\",\"icon_align_mobile_extra\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color_hover\":\"\"},\"text_color\":\"#FFFFFF\",\"pp_elements_tooltip_content\":\"Tooltip Content\",\"icon_typography_font_weight\":\"500\",\"view\":\"inline\",\"icon_align\":\"center\",\"icon_align_mobile\":\"center\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(4733, 523, '_elementor_source', 'post'),
(4734, 523, '_elementor_edit_mode', 'builder'),
(4735, 523, '_elementor_template_type', 'footer'),
(4736, 523, '_elementor_version', '3.34.0'),
(4737, 523, '_elementor_pro_version', '3.17.1'),
(4738, 523, '_wp_page_template', 'default'),
(4739, 523, '_elementor_data', '[{\"id\":\"3cf69bc7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"background_color\":\"#121212\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"flex_direction_tablet\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"56542ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ba59e70\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"65fd471\"}],\"pp_display_conditions\":[{\"_id\":\"890752a\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\"}]},\"elements\":[{\"id\":\"7d433401\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"boxed_width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e0467be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fba2414\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"86eef93\"}],\"pp_display_conditions\":[{\"_id\":\"892bbfe\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\"}],\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"100\",\"bottom\":\"10\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b245e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/Transparent-File-02-scaled.png\",\"id\":49,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"3584c9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":240,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7a77842\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"text_color\":\"#F3F3F3\",\"pp_display_conditions\":[{\"_id\":\"40edc0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3f1c0dda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"boxed_width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"boxed_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"wrap\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content_tablet\":\"center\",\"flex_align_items_tablet\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9cef852\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3267f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"568580d\"}],\"pp_display_conditions\":[{\"_id\":\"3b43c19\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\"}]},\"elements\":[{\"id\":\"25ffa917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick Links\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"97f1c92\",\"pp_condition_date_time_before_value\":\"2023-11-08 15:26\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\"}],\"align_tablet\":\"center\",\"align_mobile_extra\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"_element_width\":\"inherit\",\"typography_typography\":\"custom\",\"title_color\":\"#FFFFFF\",\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6373b647\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Hjem\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5dee041\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Tjenester\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"fdf1982\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/tjenester\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Referencer\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/referencer\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5076fdb\"},{\"text\":\"Om os\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/om-os\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1cdf804\"},{\"text\":\"Kontakt\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/kontakt\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"085decf\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"db62914\",\"pp_condition_date_time_before_value\":\"2023-11-08 15:26\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\"}],\"icon_align_tablet\":\"center\",\"icon_align_mobile_extra\":\"center\",\"__globals__\":{\"text_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=accent\"},\"text_color\":\"#E2E2E2\",\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_elements_tooltip_content\":\"Tooltip Content\",\"icon_typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7b991634\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ac9468\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f73d65c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e9fdb2\"}],\"pp_display_conditions\":[{\"_id\":\"6b3e2fa\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\"}]},\"elements\":[{\"id\":\"1dc7df4b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"97f1c92\",\"pp_condition_date_time_before_value\":\"2023-11-08 15:26\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\"}],\"align_tablet\":\"center\",\"align_mobile_extra\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"_element_width\":\"inherit\",\"title_color\":\"#FFFFFF\",\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45a55ad8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location Here\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"857a7bd\",\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"}},{\"text\":\"41 60 00 40\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:41600040\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f722a06\"},{\"text\":\"kontakt@cp-nordic.dk\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:kontakt@cp-nordic.dk\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f7076d3\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"db62914\",\"pp_condition_date_time_before_value\":\"2023-11-08 15:26\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\"}],\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align_tablet\":\"center\",\"icon_align_mobile_extra\":\"center\",\"icon_vertical_offset_mobile_extra\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_self_align_mobile_extra\":\"left\",\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=accent\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_vertical_offset_tablet\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"text_color\":\"#E2E2E2\",\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_elements_tooltip_content\":\"Tooltip Content\",\"icon_typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"d5ed30d\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"1a75682\",\"link\":{\"url\":\"https:\\/\\/www.facebook.com\\/cpnordic\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"da32d70\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/cpnordic\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.6,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"589cdcb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor6\"},\"icon_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5e55ea6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"flex_direction_tablet\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"56542ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ba59e70\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"65fd471\"}],\"pp_display_conditions\":[{\"_id\":\"890752a\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor2\"},\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"543e7817\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"boxed_width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"boxed_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"wrap\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content_tablet\":\"center\",\"flex_align_items_tablet\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9cef852\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3267f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"568580d\"}],\"pp_display_conditions\":[{\"_id\":\"3b43c19\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"29e327ba\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u00a9 Copyright 2026 all rights reserved\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5dee041\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"db62914\",\"pp_condition_date_time_before_value\":\"2023-11-08 15:26\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"icon_align_tablet\":\"center\",\"icon_align_mobile_extra\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color_hover\":\"\"},\"text_color\":\"#FFFFFF\",\"pp_elements_tooltip_content\":\"Tooltip Content\",\"icon_typography_font_weight\":\"500\",\"view\":\"inline\",\"icon_align\":\"center\",\"icon_align_mobile\":\"center\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(1361, 162, '_elementor_page_settings', 'a:0:{}'),
(1364, 163, '_elementor_edit_mode', 'builder'),
(1365, 163, '_elementor_template_type', 'wp-page'),
(1366, 163, '_elementor_version', '3.34.0'),
(1367, 163, '_elementor_pro_version', '3.17.1'),
(1368, 163, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1369, 163, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"},{\"id\":56,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-2-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"3274ff7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"ae4f379\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(1042, 116, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(2155, 248, '_elementor_template_type', 'wp-page'),
(2156, 248, '_elementor_version', '3.34.0'),
(2157, 248, '_elementor_pro_version', '3.17.1'),
(2158, 248, '_wp_page_template', 'default'),
(2159, 248, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3bd89cb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"isInner\":true},{\"id\":\"3c9bbed\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f55af74\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"22bd8bd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d34c55\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e323db7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5e34458\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1b54610\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c39ae60\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"9feeb06\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"84033d6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(2055, 239, '_elementor_edit_mode', 'builder'),
(2056, 239, '_elementor_template_type', 'wp-page'),
(2057, 239, '_elementor_version', '3.34.0'),
(2058, 239, '_elementor_pro_version', '3.17.1'),
(2059, 239, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2060, 239, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"3bd89cb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6f2d7d9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Terrasser\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c9bbed\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"f55af74\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"22bd8bd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"7d34c55\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e323db7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"5e34458\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1b54610\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"c39ae60\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"9feeb06\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"84033d6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(1466, 178, '_elementor_version', '3.34.0'),
(1467, 178, '_elementor_pro_version', '3.17.1'),
(1468, 178, '_wp_page_template', 'default'),
(1469, 178, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"3274ff7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"ae4f379\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9a52583\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(1521, 187, '_elementor_edit_mode', 'builder'),
(1522, 187, '_elementor_template_type', 'wp-page'),
(1523, 187, '_elementor_version', '3.34.0'),
(1524, 187, '_elementor_pro_version', '3.17.1'),
(1525, 187, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1526, 187, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"3274ff7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"ae4f379\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9a52583\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(1488, 180, '_wp_attached_file', '2026/01/roof_18138482.svg'),
(1489, 180, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:1438;s:5:\"width\";i:64;s:6:\"height\";i:64;}'),
(1491, 181, '_wp_attached_file', '2026/01/money_16154843.svg'),
(1492, 181, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:2990;s:5:\"width\";i:128;s:6:\"height\";i:128;}'),
(1494, 182, '_wp_attached_file', '2026/01/roof-tiles_17257710.svg'),
(1495, 182, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:2896;s:5:\"width\";i:1000;s:6:\"height\";i:1000;}'),
(1497, 183, '_wp_attached_file', '2026/01/plant_13485754.svg'),
(1498, 183, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:4376;s:5:\"width\";i:512;s:6:\"height\";i:512;}'),
(1500, 184, '_wp_attached_file', '2026/01/solar-panel_3058086.svg'),
(1501, 184, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:2029;s:5:\"width\";i:512;s:6:\"height\";i:512;}'),
(1510, 185, '_elementor_page_settings', 'a:0:{}'),
(1512, 186, '_elementor_edit_mode', 'builder'),
(1513, 186, '_elementor_template_type', 'wp-page'),
(1514, 186, '_elementor_version', '3.34.0'),
(1515, 186, '_elementor_pro_version', '3.17.1'),
(1516, 186, '_wp_page_template', 'default'),
(1517, 186, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"3274ff7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"ae4f379\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9a52583\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(1519, 186, '_elementor_page_settings', 'a:0:{}'),
(2042, 237, '_elementor_page_settings', 'a:0:{}'),
(1963, 229, '_elementor_template_type', 'wp-page'),
(1942, 227, '_elementor_edit_mode', 'builder'),
(1943, 227, '_elementor_template_type', 'wp-page'),
(1944, 227, '_elementor_version', '3.34.0'),
(1945, 227, '_elementor_pro_version', '3.17.1'),
(1946, 227, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1947, 227, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(1988, 231, '_elementor_page_settings', 'a:0:{}'),
(1989, 232, '_elementor_edit_mode', 'builder'),
(1990, 232, '_elementor_template_type', 'wp-page'),
(1991, 232, '_elementor_version', '3.34.0'),
(1992, 232, '_elementor_pro_version', '3.17.1'),
(1993, 232, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1994, 232, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(4086, 447, '_elementor_page_settings', 'a:0:{}'),
(4087, 448, '_elementor_edit_mode', 'builder'),
(4088, 448, '_elementor_template_type', 'wp-page'),
(4089, 448, '_elementor_version', '3.34.2'),
(4090, 448, '_elementor_pro_version', '3.34.2'),
(4091, 448, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4092, 448, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"2-lags tagpapl\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tagpap klar til sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Foliearbejde\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1564, 191, '_elementor_edit_mode', 'builder'),
(1565, 191, '_elementor_template_type', 'wp-page'),
(1566, 191, '_elementor_version', '3.34.0'),
(1567, 191, '_elementor_pro_version', '3.17.1'),
(1568, 191, '_wp_page_template', 'default'),
(1569, 191, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"3274ff7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"ae4f379\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9a52583\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(1571, 191, '_elementor_page_settings', 'a:0:{}'),
(1572, 192, '_elementor_edit_mode', 'builder'),
(1573, 192, '_elementor_template_type', 'wp-page'),
(1574, 192, '_elementor_version', '3.34.0'),
(1575, 192, '_elementor_pro_version', '3.17.1'),
(1576, 192, '_wp_page_template', 'default'),
(1577, 192, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"3274ff7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"ae4f379\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9a52583\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(1540, 188, '_elementor_page_settings', 'a:0:{}'),
(4437, 490, '_elementor_edit_mode', 'builder'),
(4421, 488, '_elementor_edit_mode', 'builder'),
(4422, 488, '_elementor_template_type', 'wp-page'),
(4423, 488, '_elementor_version', '3.34.2'),
(4424, 488, '_elementor_pro_version', '3.34.2'),
(4425, 488, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4426, 488, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\",\"id\":57,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle ANMELDELSER\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]}},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"HVORFOR V\\u00c6LGE CP NORDIC ApS?\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79206f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>N\\u00e5r du v\\u00e6lger CP NORDIC ApS, f\\u00e5r du:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"44023b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/teamwork_4546121.svg\",\"id\":472},\"library\":\"svg\"},\"title_text\":\"et ungt og engageret team\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/effective_1401921.svg\",\"id\":474},\"library\":\"svg\"},\"title_text\":\"fokus p\\u00e5 kvalitet og detaljer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/communication_18765280.svg\",\"id\":479},\"library\":\"svg\"},\"title_text\":\"\\u00e6rlig<br> r\\u00e5dgivning\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/brainstorming_11663441.svg\",\"id\":480},\"library\":\"svg\"},\"title_text\":\"gennemt\\u00e6nkte l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c0f2190\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"327bd23\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/like_3941426.svg\",\"id\":481},\"library\":\"svg\"},\"title_text\":\"arbejde udf\\u00f8rt med ansvar\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2154, 248, '_elementor_edit_mode', 'builder'),
(2070, 240, '_elementor_version', '3.34.0'),
(2071, 240, '_elementor_pro_version', '3.17.1'),
(2072, 240, '_wp_page_template', 'default'),
(2073, 240, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"3bd89cb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6f2d7d9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Terrasser\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c9bbed\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"f55af74\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"22bd8bd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"7d34c55\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e323db7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"5e34458\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1b54610\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"c39ae60\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"9feeb06\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"84033d6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(1543, 189, '_elementor_edit_mode', 'builder'),
(1544, 189, '_elementor_template_type', 'wp-page'),
(1545, 189, '_elementor_version', '3.34.0'),
(1546, 189, '_elementor_pro_version', '3.17.1'),
(1547, 189, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1548, 189, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"3274ff7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"ae4f379\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9a52583\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(1550, 189, '_elementor_page_settings', 'a:0:{}'),
(1553, 190, '_elementor_edit_mode', 'builder'),
(1554, 190, '_elementor_template_type', 'wp-page'),
(1555, 190, '_elementor_version', '3.34.0'),
(1556, 190, '_elementor_pro_version', '3.17.1'),
(1557, 190, '_wp_page_template', 'default'),
(1558, 190, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"3274ff7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"ae4f379\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9a52583\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(1980, 230, '_elementor_page_settings', 'a:0:{}'),
(1981, 231, '_elementor_edit_mode', 'builder'),
(1982, 231, '_elementor_template_type', 'wp-page'),
(1983, 231, '_elementor_version', '3.34.0'),
(1984, 231, '_elementor_pro_version', '3.17.1'),
(1985, 231, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1986, 231, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(1606, 195, '_elementor_edit_mode', 'builder'),
(1607, 195, '_elementor_template_type', 'wp-page'),
(1608, 195, '_elementor_version', '3.34.0'),
(1609, 195, '_elementor_pro_version', '3.17.1'),
(1610, 195, '_wp_page_template', 'default'),
(1611, 195, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"3274ff7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"ae4f379\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9a52583\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(1639, 198, '_elementor_edit_mode', 'builder'),
(1640, 198, '_elementor_template_type', 'wp-page'),
(1641, 198, '_elementor_version', '3.34.0'),
(1642, 198, '_elementor_pro_version', '3.17.1'),
(1643, 198, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1644, 198, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"3274ff7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"ae4f379\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9a52583\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(1705, 204, '_elementor_edit_mode', 'builder'),
(1706, 204, '_elementor_template_type', 'wp-page'),
(1707, 204, '_elementor_version', '3.34.0'),
(1708, 204, '_elementor_pro_version', '3.17.1'),
(1743, 207, '_elementor_page_settings', 'a:0:{}'),
(1744, 208, '_elementor_edit_mode', 'builder'),
(1745, 208, '_elementor_template_type', 'wp-page'),
(1746, 208, '_elementor_version', '3.34.0'),
(1747, 208, '_elementor_pro_version', '3.17.1'),
(1748, 208, '_wp_page_template', 'default'),
(1749, 208, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(1598, 194, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(1973, 230, '_elementor_edit_mode', 'builder'),
(1974, 230, '_elementor_template_type', 'wp-page'),
(1975, 230, '_elementor_version', '3.34.0'),
(1976, 230, '_elementor_pro_version', '3.17.1'),
(1977, 230, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1978, 230, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(1939, 226, '_wp_attached_file', '2026/01/check-mark_5290989-7.svg'),
(1940, 226, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:712;s:5:\"width\";i:512;s:6:\"height\";i:512;}'),
(1613, 195, '_elementor_page_settings', 'a:0:{}'),
(2023, 236, '_elementor_template_type', 'wp-page'),
(2024, 236, '_elementor_version', '3.34.0'),
(2025, 236, '_elementor_pro_version', '3.17.1'),
(2026, 236, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2027, 236, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(1616, 196, '_elementor_edit_mode', 'builder'),
(1617, 196, '_elementor_template_type', 'wp-page'),
(1618, 196, '_elementor_version', '3.34.0'),
(1619, 196, '_elementor_pro_version', '3.17.1'),
(1620, 196, '_wp_page_template', 'default'),
(1621, 196, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"3274ff7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"ae4f379\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9a52583\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(1623, 196, '_elementor_page_settings', 'a:0:{}'),
(2019, 235, '_elementor_page_settings', 'a:0:{}'),
(1626, 197, '_elementor_edit_mode', 'builder'),
(1627, 197, '_elementor_template_type', 'wp-page'),
(1628, 197, '_elementor_version', '3.34.0'),
(1629, 197, '_elementor_pro_version', '3.17.1'),
(1630, 197, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1631, 197, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"3274ff7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"ae4f379\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9a52583\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(1949, 227, '_elementor_page_settings', 'a:0:{}'),
(1672, 201, '_elementor_edit_mode', 'builder'),
(1673, 201, '_elementor_template_type', 'wp-page'),
(1674, 201, '_elementor_version', '3.34.0'),
(1675, 201, '_elementor_pro_version', '3.17.1'),
(1676, 201, '_wp_page_template', 'default'),
(1677, 201, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"3274ff7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"ae4f379\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9a52583\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(1646, 198, '_elementor_page_settings', 'a:0:{}'),
(4428, 488, '_elementor_page_settings', 'a:0:{}'),
(4429, 489, '_elementor_edit_mode', 'builder'),
(4430, 489, '_elementor_template_type', 'wp-page'),
(4431, 489, '_elementor_version', '3.34.2'),
(4432, 489, '_elementor_pro_version', '3.34.2'),
(4433, 489, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4434, 489, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\",\"id\":57,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle ANMELDELSER\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]}},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"HVORFOR V\\u00c6LGE CP NORDIC ApS?\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79206f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>N\\u00e5r du v\\u00e6lger CP NORDIC ApS, f\\u00e5r du:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"44023b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/teamwork_4546121.svg\",\"id\":472},\"library\":\"svg\"},\"title_text\":\"et ungt og engageret team\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/effective_1401921.svg\",\"id\":474},\"library\":\"svg\"},\"title_text\":\"fokus p\\u00e5 kvalitet og detaljer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/communication_18765280.svg\",\"id\":479},\"library\":\"svg\"},\"title_text\":\"\\u00e6rlig<br> r\\u00e5dgivning\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/brainstorming_11663441.svg\",\"id\":480},\"library\":\"svg\"},\"title_text\":\"gennemt\\u00e6nkte l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c0f2190\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"327bd23\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/like_3941426.svg\",\"id\":481},\"library\":\"svg\"},\"title_text\":\"arbejde udf\\u00f8rt med ansvar\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2012, 235, '_elementor_edit_mode', 'builder'),
(2013, 235, '_elementor_template_type', 'wp-page'),
(2014, 235, '_elementor_version', '3.34.0'),
(2015, 235, '_elementor_pro_version', '3.17.1'),
(2016, 235, '_wp_page_template', 'default'),
(2017, 235, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(1649, 199, '_elementor_edit_mode', 'builder'),
(1650, 199, '_elementor_template_type', 'wp-page'),
(1651, 199, '_elementor_version', '3.34.0'),
(1652, 199, '_elementor_pro_version', '3.17.1'),
(1653, 199, '_wp_page_template', 'default'),
(1654, 199, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"3274ff7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"ae4f379\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9a52583\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(1656, 199, '_elementor_page_settings', 'a:0:{}'),
(2009, 234, '_elementor_page_settings', 'a:0:{}'),
(1659, 200, '_elementor_edit_mode', 'builder'),
(1660, 200, '_elementor_template_type', 'wp-page'),
(1661, 200, '_elementor_version', '3.34.0'),
(1662, 200, '_elementor_pro_version', '3.17.1'),
(1663, 200, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1664, 200, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"3274ff7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"ae4f379\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9a52583\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(4468, 493, '_elementor_edit_mode', 'builder'),
(4448, 491, '_elementor_edit_mode', 'builder'),
(4449, 491, '_elementor_template_type', 'wp-page'),
(4450, 491, '_elementor_version', '3.34.2'),
(4451, 491, '_elementor_pro_version', '3.34.2'),
(4452, 491, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4453, 491, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\",\"id\":57,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle ANMELDELSER\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]}},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"HVORFOR V\\u00c6LGE CP NORDIC ApS?\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79206f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>N\\u00e5r du v\\u00e6lger CP NORDIC ApS, f\\u00e5r du:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"44023b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/teamwork_4546121.svg\",\"id\":472},\"library\":\"svg\"},\"title_text\":\"et ungt og engageret team\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/effective_1401921.svg\",\"id\":474},\"library\":\"svg\"},\"title_text\":\"fokus p\\u00e5 kvalitet og detaljer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/communication_18765280.svg\",\"id\":479},\"library\":\"svg\"},\"title_text\":\"\\u00e6rlig<br> r\\u00e5dgivning\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/brainstorming_11663441.svg\",\"id\":480},\"library\":\"svg\"},\"title_text\":\"gennemt\\u00e6nkte l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c0f2190\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"327bd23\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/like_3941426.svg\",\"id\":481},\"library\":\"svg\"},\"title_text\":\"arbejde udf\\u00f8rt med ansvar\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4634, 514, '_elementor_edit_mode', 'builder'),
(4635, 514, '_elementor_template_type', 'wp-page'),
(4636, 514, '_elementor_version', '3.34.2'),
(4637, 514, '_elementor_pro_version', '3.34.2'),
(4638, 514, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4639, 514, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\",\"id\":57,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle ANMELDELSER\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]}},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"HVORFOR V\\u00c6LGE CP NORDIC ApS?\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79206f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>N\\u00e5r du v\\u00e6lger CP NORDIC ApS, f\\u00e5r du:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"44023b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/teamwork_4546121.svg\",\"id\":472},\"library\":\"svg\"},\"title_text\":\"et ungt og engageret team\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/effective_1401921.svg\",\"id\":474},\"library\":\"svg\"},\"title_text\":\"fokus p\\u00e5 kvalitet og detaljer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/communication_18765280.svg\",\"id\":479},\"library\":\"svg\"},\"title_text\":\"\\u00e6rlig<br> r\\u00e5dgivning\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/brainstorming_11663441.svg\",\"id\":480},\"library\":\"svg\"},\"title_text\":\"gennemt\\u00e6nkte l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c0f2190\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"327bd23\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/like_3941426.svg\",\"id\":481},\"library\":\"svg\"},\"title_text\":\"arbejde udf\\u00f8rt med ansvar\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2bc9769\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi lover ikke mere, end vi kan holde \\u2013 men vi holder det, vi lover.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2a1d8fc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"986dd0f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9231a79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"31fa3c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f1b19ca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7391996\"}]},\"elements\":[{\"id\":\"547d40f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7d5adb7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1522ba7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e13c951\"}],\"pp_display_conditions\":[{\"_id\":\"1e39e5d\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"4bda72e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7d5adb7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1522ba7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e13c951\"}],\"pp_display_conditions\":[{\"_id\":\"1e39e5d\"}]},\"elements\":[{\"id\":\"07d0be8\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"8b3e3db\"},{\"custom_id\":\"field_2a35699\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"2a35699\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"f9dd88c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6323910b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor8\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/wood-background-1-e1738912619419.jpg\",\"id\":510,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"640d38eb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"75253fe5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"14202595\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Name\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"tel\",\"field_label\":\"Phone\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\"},{\"field_type\":\"select\",\"field_label\":\"Services Name\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Messages\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor4\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_background_color\":\"#494949CC\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"mark_required\":\"yes\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1952, 228, '_elementor_edit_mode', 'builder'),
(1953, 228, '_elementor_template_type', 'wp-page'),
(1954, 228, '_elementor_version', '3.34.0'),
(1955, 228, '_elementor_pro_version', '3.17.1'),
(1956, 228, '_wp_page_template', 'default'),
(1957, 228, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(1709, 204, '_wp_page_template', 'default'),
(1710, 204, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(1679, 201, '_elementor_page_settings', 'a:0:{}'),
(2035, 237, '_elementor_edit_mode', 'builder'),
(2036, 237, '_elementor_template_type', 'wp-page'),
(2037, 237, '_elementor_version', '3.34.0'),
(2038, 237, '_elementor_pro_version', '3.17.1'),
(2039, 237, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2040, 237, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(2172, 249, '_elementor_page_settings', 'a:0:{}'),
(2173, 250, '_elementor_edit_mode', 'builder'),
(2174, 250, '_elementor_template_type', 'wp-page'),
(2175, 250, '_elementor_version', '3.34.0'),
(2176, 250, '_elementor_pro_version', '3.17.1'),
(2177, 250, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2178, 250, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3bd89cb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"isInner\":true},{\"id\":\"3c9bbed\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f55af74\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"22bd8bd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d34c55\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e323db7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5e34458\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1b54610\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c39ae60\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"9feeb06\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"84033d6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(2000, 233, '_wp_attached_file', '2026/01/CP-NORDIC-ApS-img-1.jpg'),
(2001, 233, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1536;s:6:\"height\";i:2048;s:4:\"file\";s:31:\"2026/01/CP-NORDIC-ApS-img-1.jpg\";s:8:\"filesize\";i:544470;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"CP-NORDIC-ApS-img-1-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21208;}s:5:\"large\";a:5:{s:4:\"file\";s:32:\"CP-NORDIC-ApS-img-1-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:205271;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"CP-NORDIC-ApS-img-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7895;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:32:\"CP-NORDIC-ApS-img-1-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:205271;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:33:\"CP-NORDIC-ApS-img-1-1152x1536.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:439736;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1682, 202, '_elementor_edit_mode', 'builder'),
(1683, 202, '_elementor_template_type', 'wp-page'),
(1684, 202, '_elementor_version', '3.34.0'),
(1685, 202, '_elementor_pro_version', '3.17.1'),
(1686, 202, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1687, 202, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"3274ff7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"ae4f379\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9a52583\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(1689, 202, '_elementor_page_settings', 'a:0:{}'),
(2022, 236, '_elementor_edit_mode', 'builder'),
(2002, 234, '_elementor_edit_mode', 'builder'),
(2003, 234, '_elementor_template_type', 'wp-page'),
(2004, 234, '_elementor_version', '3.34.0'),
(2005, 234, '_elementor_pro_version', '3.17.1'),
(2006, 234, '_wp_page_template', 'default'),
(2007, 234, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(2068, 240, '_elementor_edit_mode', 'builder'),
(2069, 240, '_elementor_template_type', 'wp-page'),
(1692, 203, '_elementor_edit_mode', 'builder'),
(1693, 203, '_elementor_template_type', 'wp-page'),
(1694, 203, '_elementor_version', '3.34.0'),
(1695, 203, '_elementor_pro_version', '3.17.1'),
(1696, 203, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1697, 203, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(1959, 228, '_elementor_page_settings', 'a:0:{}'),
(1736, 207, '_elementor_edit_mode', 'builder'),
(1737, 207, '_elementor_template_type', 'wp-page'),
(1738, 207, '_elementor_version', '3.34.0'),
(1739, 207, '_elementor_pro_version', '3.17.1'),
(1740, 207, '_wp_page_template', 'default'),
(1741, 207, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(1712, 204, '_elementor_page_settings', 'a:0:{}'),
(1715, 205, '_elementor_edit_mode', 'builder'),
(1716, 205, '_elementor_template_type', 'wp-page'),
(1717, 205, '_elementor_version', '3.34.0'),
(1718, 205, '_elementor_pro_version', '3.17.1'),
(1719, 205, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1720, 205, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(1722, 205, '_elementor_page_settings', 'a:0:{}'),
(3870, 428, '_elementor_edit_mode', 'builder'),
(3850, 426, '_elementor_edit_mode', 'builder'),
(3851, 426, '_elementor_template_type', 'wp-page'),
(3852, 426, '_elementor_version', '3.34.2'),
(3853, 426, '_elementor_pro_version', '3.34.2'),
(3854, 426, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3855, 426, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"2-lags tagpapl\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tagpap klar til sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Foliearbejde\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":405,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-3.jpg\"},{\"id\":295,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":270,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3982, 438, '_elementor_edit_mode', 'builder'),
(3983, 438, '_elementor_template_type', 'wp-page'),
(3984, 438, '_elementor_version', '3.34.2'),
(1725, 206, '_elementor_edit_mode', 'builder'),
(1726, 206, '_elementor_template_type', 'wp-page'),
(1727, 206, '_elementor_version', '3.34.0'),
(1728, 206, '_elementor_pro_version', '3.17.1'),
(1729, 206, '_wp_page_template', 'default'),
(1730, 206, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(1964, 229, '_elementor_version', '3.34.0'),
(1965, 229, '_elementor_pro_version', '3.17.1'),
(1966, 229, '_wp_page_template', 'default'),
(1967, 229, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(1751, 208, '_elementor_page_settings', 'a:0:{}'),
(1752, 209, '_elementor_edit_mode', 'builder'),
(1753, 209, '_elementor_template_type', 'wp-page'),
(1754, 209, '_elementor_version', '3.34.0'),
(1755, 209, '_elementor_pro_version', '3.17.1'),
(1756, 209, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1757, 209, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(1761, 210, '_elementor_edit_mode', 'builder'),
(1762, 210, '_elementor_template_type', 'wp-page'),
(1763, 210, '_elementor_version', '3.34.0'),
(1764, 210, '_elementor_pro_version', '3.17.1'),
(1765, 210, '_wp_page_template', 'default'),
(1766, 210, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(1768, 210, '_elementor_page_settings', 'a:0:{}'),
(1769, 211, '_elementor_edit_mode', 'builder'),
(1770, 211, '_elementor_template_type', 'wp-page'),
(1771, 211, '_elementor_version', '3.34.0'),
(1772, 211, '_elementor_pro_version', '3.17.1'),
(1773, 211, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1774, 211, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(1776, 211, '_elementor_page_settings', 'a:0:{}'),
(1777, 212, '_elementor_edit_mode', 'builder'),
(1778, 212, '_elementor_template_type', 'wp-page'),
(1779, 212, '_elementor_version', '3.34.0'),
(1780, 212, '_elementor_pro_version', '3.17.1'),
(1781, 212, '_wp_page_template', 'default'),
(1782, 212, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(1802, 215, '_elementor_edit_mode', 'builder'),
(1786, 213, '_elementor_edit_mode', 'builder'),
(1787, 213, '_elementor_template_type', 'wp-page'),
(1788, 213, '_elementor_version', '3.34.0'),
(1789, 213, '_elementor_pro_version', '3.17.1'),
(1790, 213, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1791, 213, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(1793, 213, '_elementor_page_settings', 'a:0:{}'),
(1794, 214, '_elementor_edit_mode', 'builder'),
(1795, 214, '_elementor_template_type', 'wp-page'),
(1796, 214, '_elementor_version', '3.34.0'),
(1797, 214, '_elementor_pro_version', '3.17.1'),
(1798, 214, '_wp_page_template', 'default'),
(1799, 214, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(1801, 214, '_elementor_page_settings', 'a:0:{}'),
(1803, 215, '_elementor_template_type', 'wp-page'),
(1804, 215, '_elementor_version', '3.34.0'),
(1805, 215, '_elementor_pro_version', '3.17.1'),
(1806, 215, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1807, 215, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(1813, 216, '_elementor_edit_mode', 'builder'),
(1814, 216, '_elementor_template_type', 'wp-page'),
(1815, 216, '_elementor_version', '3.34.0'),
(1816, 216, '_elementor_pro_version', '3.17.1'),
(1817, 216, '_wp_page_template', 'default'),
(1818, 216, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(1878, 222, '_elementor_template_type', 'kit'),
(1879, 222, '_wp_page_template', 'default'),
(1880, 222, '_elementor_page_settings', 'a:35:{s:13:\"system_colors\";a:4:{i:0;a:2:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";}i:1;a:2:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";}i:2;a:2:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";}i:3;a:2:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";}}s:13:\"custom_colors\";a:0:{}s:17:\"system_typography\";a:4:{i:0;a:5:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Nekst Black\";s:22:\"typography_font_weight\";s:3:\"600\";}i:1;a:5:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Nekst Black\";s:22:\"typography_font_weight\";s:3:\"400\";}i:2;a:5:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"400\";}i:3;a:5:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"500\";}}s:17:\"custom_typography\";a:0:{}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:9:\"site_name\";s:9:\"CP-NORDIC\";s:15:\"container_width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:1240;s:5:\"sizes\";a:0:{}}s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:18:\"active_breakpoints\";a:5:{i:0;s:15:\"viewport_mobile\";i:1;s:21:\"viewport_mobile_extra\";i:2;s:15:\"viewport_tablet\";i:3;s:21:\"viewport_tablet_extra\";i:4;s:19:\"viewport_widescreen\";}s:15:\"viewport_mobile\";i:480;s:21:\"viewport_mobile_extra\";i:767;s:15:\"viewport_tablet\";i:991;s:21:\"viewport_tablet_extra\";i:1199;s:19:\"viewport_widescreen\";i:1200;s:11:\"viewport_md\";i:481;s:11:\"viewport_lg\";i:992;s:32:\"colors_enable_styleguide_preview\";s:3:\"yes\";s:15:\"activeItemIndex\";i:1;s:36:\"typography_enable_styleguide_preview\";s:3:\"yes\";s:24:\"h1_typography_typography\";s:6:\"custom\";s:25:\"h1_typography_font_family\";s:11:\"Nekst Black\";s:23:\"h1_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:60;s:5:\"sizes\";a:0:{}}s:24:\"h2_typography_typography\";s:6:\"custom\";s:23:\"h2_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:42;s:5:\"sizes\";a:0:{}}s:24:\"h3_typography_typography\";s:6:\"custom\";s:23:\"h3_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:32;s:5:\"sizes\";a:0:{}}s:24:\"h4_typography_typography\";s:6:\"custom\";s:23:\"h4_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:26;s:5:\"sizes\";a:0:{}}s:24:\"h5_typography_typography\";s:6:\"custom\";s:23:\"h5_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:22;s:5:\"sizes\";a:0:{}}s:24:\"h6_typography_typography\";s:6:\"custom\";s:23:\"h6_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:28:\"button_typography_typography\";s:6:\"custom\";s:32:\"button_typography_text_transform\";s:9:\"uppercase\";s:32:\"button_typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}}'),
(1846, 219, '_elementor_edit_mode', 'builder'),
(1847, 219, '_elementor_template_type', 'wp-page'),
(1848, 219, '_elementor_version', '3.34.0'),
(1849, 219, '_elementor_pro_version', '3.17.1'),
(1850, 219, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1851, 219, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(1881, 222, '_elementor_data', '[]'),
(1882, 222, '_elementor_version', '3.34.0'),
(1883, 222, '_elementor_pro_version', '3.17.1'),
(5222, 569, '_elementor_source', 'post'),
(5223, 569, '_elementor_edit_mode', 'builder'),
(5224, 569, '_elementor_template_type', 'header'),
(5225, 569, '_elementor_version', '3.34.2'),
(5226, 569, '_elementor_pro_version', '3.34.2'),
(5227, 569, '_wp_page_template', 'default'),
(5228, 569, '_elementor_data', '[{\"id\":\"67407e3b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2e8ba73\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f52efb8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"717f375\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"394af17\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"flex_wrap_mobile\":\"nowrap\",\"z_index\":1,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FCFCFC17\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-124\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"\"}},\"elements\":[{\"id\":\"341f8b74\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"33df9dc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7bdec\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"90e6e83\"}],\"pp_display_conditions\":[{\"_id\":\"3e37d22\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"4cc70c2e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":49,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/Transparent-File-02-scaled.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"link_to\":\"custom\",\"space\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"ef1f052\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"7043833\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"space_mobile_extra\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"space_tablet_extra\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"29f8b7e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":80},\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"13efff7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4ba59b9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9a413e\"}],\"pp_display_conditions\":[{\"_id\":\"6633050\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"flex_align_items\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"flex_direction_mobile\":\"row-reverse\",\"flex_justify_content_mobile\":\"flex-start\",\"flex_wrap_mobile\":\"nowrap\"},\"elements\":[{\"id\":\"55ad1095\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"pointer\":\"none\",\"toggle_label\":\"Menu\",\"pp_display_conditions\":[{\"_id\":\"6d90ae3\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"menu_type\":\"off-canvas\",\"toggle_align\":\"right\",\"toggle_background_color\":\"#02010100\",\"toggle_background_color_hover\":\"#02010100\",\"offcanvas_position\":\"right\",\"close_icon_background_color\":\"#02010100\",\"close_icon_background_color_hover\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_weight\":\"500\",\"__globals__\":{\"toggle_color\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_color_hover\":\"globals\\/colors?id=astglobalcolor3\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor5\",\"mobile_sub_link_color\":\"globals\\/colors?id=astglobalcolor5\",\"mobile_sub_link_bg_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor5\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_hover\":\"globals\\/colors?id=astglobalcolor5\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"close_icon_color_hover\":\"globals\\/colors?id=astglobalcolor5\",\"color_menu_item\":\"globals\\/colors?id=astglobalcolor4\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor4\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor4\",\"color_dropdown_item\":\"globals\\/colors?id=astglobalcolor5\",\"background_color_dropdown_item\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor5\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor5\",\"background_color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"dropdown_divider_color\":\"\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"menu_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"color_menu_item_hover\":\"#045cb4\",\"color_menu_item_active\":\"#045cb4\",\"color_dropdown_item\":\"#F0F5FA\",\"background_color_dropdown_item\":\"#046bd2\",\"color_dropdown_item_hover\":\"#F0F5FA\",\"background_color_dropdown_item_hover\":\"#045cb4\",\"color_dropdown_item_active\":\"#F0F5FA\",\"background_color_dropdown_item_active\":\"#045cb4\",\"dropdown_divider_border\":\"solid\",\"dropdown_divider_color\":\"#F0F5FA36\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"toggle_color\":\"#046bd2\",\"toggle_color_hover\":\"#334155\",\"overlay_bg_color\":\"#1e293b\",\"mobile_link_color\":\"#F0F5FA\",\"mobile_sub_link_bg_color\":\"#1e293b\",\"mobile_sub_link_color\":\"#F0F5FA\",\"mobile_link_hover\":\"#F0F5FA\",\"mobile_link_bg_hover\":\"#046bd2\",\"mobile_sub_link_bg_hover\":\"#046bd2\",\"mobile_sub_link_hover\":\"#F0F5FA\",\"close_icon_color\":\"#F0F5FA\",\"close_icon_color_hover\":\"#F0F5FA\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"toggle_size_mobile\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"4027936a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"730407e\",\"pp_condition_date_time_before_value\":\"2024-10-27 14:19\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"348be72f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f25b0fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8462f23\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f25e330\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"pp_condition_key\":\"page\",\"pp_condition_operator\":\"not\",\"_id\":\"eda4653\",\"pp_condition_page_value\":[\"10\"],\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"\"},\"background_overlay_color\":\"#48aaad\",\"background_overlay_color_b\":\"#1E293B0A\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":179,\"sizes\":[]},\"css_classes\":\"header-breadcrumbs-section\",\"pp_display_conditions_enable\":\"yes\"},\"elements\":[{\"id\":\"13f6f159\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"page-title\\\" settings=\\\"%7B%22include_context%22%3A%22%22%2C%22show_home_title%22%3A%22%22%2C%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3b30e8f\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"}],\"isInner\":false}]'),
(6506, 693, '_elementor_edit_mode', 'builder'),
(6507, 693, '_elementor_template_type', 'wp-page'),
(6508, 693, '_elementor_version', '3.34.2'),
(6509, 693, '_elementor_pro_version', '3.34.2'),
(6544, 696, '_elementor_page_settings', 'a:0:{}'),
(6545, 697, '_elementor_edit_mode', 'builder'),
(6546, 697, '_elementor_template_type', 'wp-page'),
(6537, 696, '_elementor_edit_mode', 'builder'),
(6538, 696, '_elementor_template_type', 'wp-page'),
(6539, 696, '_elementor_version', '3.34.2'),
(6540, 696, '_elementor_pro_version', '3.34.2'),
(6541, 696, '_wp_page_template', 'default'),
(6542, 696, '_elementor_data', '[{\"id\":\"bc434c0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"85ae5f7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"329d021\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores tjenester\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"15f3e6c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1490168\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"968d8b2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"title_text\":\"T\\u00d8MRERARBEJDE\",\"description_text\":\"Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:\\n\\n\",\"title_size\":\"h4\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"afb00f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"ef0f12b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"title_text\":\"TAGD\\u00c6KNING\",\"description_text\":\"Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.\",\"title_size\":\"h4\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1820, 216, '_elementor_page_settings', 'a:0:{}'),
(1823, 217, '_elementor_edit_mode', 'builder'),
(1824, 217, '_elementor_template_type', 'wp-page'),
(1825, 217, '_elementor_version', '3.34.0'),
(1826, 217, '_elementor_pro_version', '3.17.1'),
(1827, 217, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1828, 217, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(1830, 217, '_elementor_page_settings', 'a:0:{}'),
(1833, 218, '_elementor_edit_mode', 'builder'),
(1834, 218, '_elementor_template_type', 'wp-page'),
(1835, 218, '_elementor_version', '3.34.0'),
(1836, 218, '_elementor_pro_version', '3.17.1'),
(1837, 218, '_wp_page_template', 'default'),
(1838, 218, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(4436, 489, '_elementor_page_settings', 'a:0:{}'),
(4438, 490, '_elementor_template_type', 'wp-page'),
(4439, 490, '_elementor_version', '3.34.2'),
(4440, 490, '_elementor_pro_version', '3.34.2'),
(4441, 490, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4442, 490, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\",\"id\":57,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle ANMELDELSER\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]}},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"HVORFOR V\\u00c6LGE CP NORDIC ApS?\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79206f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>N\\u00e5r du v\\u00e6lger CP NORDIC ApS, f\\u00e5r du:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"44023b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/teamwork_4546121.svg\",\"id\":472},\"library\":\"svg\"},\"title_text\":\"et ungt og engageret team\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/effective_1401921.svg\",\"id\":474},\"library\":\"svg\"},\"title_text\":\"fokus p\\u00e5 kvalitet og detaljer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/communication_18765280.svg\",\"id\":479},\"library\":\"svg\"},\"title_text\":\"\\u00e6rlig<br> r\\u00e5dgivning\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/brainstorming_11663441.svg\",\"id\":480},\"library\":\"svg\"},\"title_text\":\"gennemt\\u00e6nkte l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c0f2190\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"327bd23\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/like_3941426.svg\",\"id\":481},\"library\":\"svg\"},\"title_text\":\"arbejde udf\\u00f8rt med ansvar\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1926, 225, '_elementor_template_type', 'wp-page'),
(1927, 225, '_elementor_version', '3.34.0'),
(1928, 225, '_elementor_pro_version', '3.17.1'),
(1929, 225, '_wp_page_template', 'default'),
(1930, 225, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(1925, 225, '_elementor_edit_mode', 'builder'),
(1905, 223, '_elementor_edit_mode', 'builder'),
(1906, 223, '_elementor_template_type', 'wp-page'),
(1907, 223, '_elementor_version', '3.34.0'),
(1908, 223, '_elementor_pro_version', '3.17.1'),
(1909, 223, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1910, 223, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(1877, 222, '_elementor_edit_mode', 'builder'),
(1853, 219, '_elementor_page_settings', 'a:0:{}'),
(1921, 224, '_elementor_page_settings', 'a:0:{}'),
(1856, 220, '_elementor_edit_mode', 'builder'),
(1857, 220, '_elementor_template_type', 'wp-page'),
(1858, 220, '_elementor_version', '3.34.0'),
(1859, 220, '_elementor_pro_version', '3.17.1'),
(1860, 220, '_wp_page_template', 'default'),
(1861, 220, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(1863, 220, '_elementor_page_settings', 'a:0:{}'),
(1915, 224, '_elementor_edit_mode', 'builder'),
(1916, 224, '_elementor_template_type', 'wp-page'),
(1917, 224, '_elementor_version', '3.34.0'),
(1918, 224, '_elementor_pro_version', '3.17.1'),
(1919, 224, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1920, 224, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(1962, 229, '_elementor_edit_mode', 'builder'),
(1866, 221, '_elementor_edit_mode', 'builder'),
(1867, 221, '_elementor_template_type', 'wp-page'),
(1868, 221, '_elementor_version', '3.34.0'),
(1869, 221, '_elementor_pro_version', '3.17.1'),
(1870, 221, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1871, 221, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(1911, 223, '_elementor_page_settings', 'a:0:{}'),
(5604, 18, '_elementor_version', '3.34.2'),
(5605, 18, '_elementor_pro_version', '3.34.2');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5620, 18, '_elementor_data', '[{\"id\":\"1e332a51\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1600399\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3f02c7e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"69bbd48\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9bbb579\",\"pp_condition_date_time_before_value\":\"2024-06-13 12:14\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"id\":\"\",\"url\":\"\"},\"background_position\":\"bottom right\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"\"},\"background_overlay_position\":\"top left\",\"background_overlay_attachment\":\"scroll\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#F8F8F8\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"a4da8ee\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8791aed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe09348\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"935d9bd\"}],\"pp_display_conditions\":[{\"_id\":\"faf5fd2\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}]},\"elements\":[{\"id\":\"49d71336\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kontaktoplysninger\",\"align\":\"left\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"802d5d7\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"750c99c1\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"editor\":\"Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid\\nvelkommen til at kontakte os for en uforpligtende snak.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c93489c\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"33ff5776\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"def43cb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c8cfb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e7a215\"}],\"pp_display_conditions\":[{\"_id\":\"daade15\",\"pp_condition_date_time_before_value\":\"2024-06-13 12:14\"}],\"flex_direction\":\"row\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_direction_tablet\":\"row\",\"flex_justify_content\":\"center\",\"flex_justify_content_tablet\":\"space-around\",\"flex_wrap\":\"wrap\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"5414ae23\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ca201cd\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"7db42375\",\"elType\":\"widget\",\"settings\":{\"title\":\"Placering\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"470d48aa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Fyn, Denmark\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a2184f8\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5511ffdf\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"6b6d887e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":504,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/smartphone_230142.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"3676670c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ring til os\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d86beaa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"41 60 00 40\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:41600040\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ce5f04f\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"64f3768f\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"55c9290\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":505,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/email_542689.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"397a533e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Send os en email\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a6b4fdc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"kontakt@cp-nordic.dk\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a2184f8\",\"link\":{\"url\":\"mailto:kontakt@cp-nordic.dk\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\",\"content_width\":\"full\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1629e761\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"3f0b36ba\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column-reverse\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"304a3dc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d9ec4b\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Navn\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"tel\",\"field_label\":\"Telefon\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\"},{\"field_type\":\"select\",\"field_label\":\"Tjenesters navn\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Beskeder\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Roboto\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"field_typography_font_weight\":\"400\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true},{\"id\":\"636e2bca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5f31bac\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"32a9521\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dea9376\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7ff945\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"54da3f3a\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title\":\"KONTAKT OS\",\"pp_display_conditions\":[{\"_id\":\"156b1a5\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align_mobile_extra\":\"center\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79c5eed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Vi d\\u00e6kker hele Fyn \\u2013 og tager ogs\\u00e5 gerne opgaver uden for omr\\u00e5det, n\\u00e5r der er tale om sp\\u00e6ndende eller teknisk kr\\u00e6vende l\\u00f8sninger.\",\"pp_display_conditions\":[{\"_id\":\"e03db8a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align_mobile_extra\":\"center\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c76d79\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"1a75682\",\"link\":{\"url\":\"https:\\/\\/www.facebook.com\\/cpnordic\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"da32d70\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/cpnordic\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.6,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"589cdcb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor6\"},\"icon_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"left\",\"align_tablet\":\"left\",\"align_mobile_extra\":\"center\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6795, 717, '_wp_page_template', 'default'),
(5608, 601, '_elementor_edit_mode', 'builder'),
(5609, 601, '_elementor_template_type', 'wp-page'),
(3824, 423, '_elementor_page_settings', 'a:0:{}'),
(2121, 245, '_elementor_edit_mode', 'builder'),
(2101, 243, '_elementor_edit_mode', 'builder'),
(2102, 243, '_elementor_template_type', 'wp-page'),
(2103, 243, '_elementor_version', '3.34.0'),
(2104, 243, '_elementor_pro_version', '3.17.1'),
(2105, 243, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2106, 243, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3bd89cb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6f2d7d9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Terrasser\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c9bbed\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f55af74\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"22bd8bd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d34c55\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e323db7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5e34458\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1b54610\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c39ae60\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"9feeb06\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"84033d6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(2075, 240, '_elementor_page_settings', 'a:0:{}'),
(2078, 241, '_elementor_edit_mode', 'builder'),
(2079, 241, '_elementor_template_type', 'wp-page'),
(2080, 241, '_elementor_version', '3.34.0'),
(2081, 241, '_elementor_pro_version', '3.17.1'),
(2082, 241, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2083, 241, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"3bd89cb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6f2d7d9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Terrasser\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c9bbed\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"f55af74\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"22bd8bd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"7d34c55\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e323db7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"5e34458\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1b54610\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"c39ae60\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"9feeb06\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"84033d6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(2085, 241, '_elementor_page_settings', 'a:0:{}'),
(2088, 242, '_elementor_edit_mode', 'builder'),
(2089, 242, '_elementor_template_type', 'wp-page'),
(2090, 242, '_elementor_version', '3.34.0'),
(2091, 242, '_elementor_pro_version', '3.17.1'),
(2092, 242, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2093, 242, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3bd89cb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6f2d7d9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Terrasser\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c9bbed\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f55af74\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"22bd8bd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d34c55\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e323db7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5e34458\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1b54610\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c39ae60\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"9feeb06\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"84033d6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(2134, 246, '_elementor_edit_mode', 'builder'),
(2135, 246, '_elementor_template_type', 'wp-page'),
(2136, 246, '_elementor_version', '3.34.0'),
(2137, 246, '_elementor_pro_version', '3.17.1'),
(2138, 246, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2139, 246, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3bd89cb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6f2d7d9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Terrasser\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c9bbed\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f55af74\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"22bd8bd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d34c55\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e323db7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5e34458\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1b54610\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c39ae60\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"9feeb06\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"84033d6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(2108, 243, '_elementor_page_settings', 'a:0:{}'),
(2111, 244, '_elementor_edit_mode', 'builder'),
(2112, 244, '_elementor_template_type', 'wp-page'),
(2113, 244, '_elementor_version', '3.34.0'),
(2114, 244, '_elementor_pro_version', '3.17.1'),
(2115, 244, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2116, 244, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3bd89cb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6f2d7d9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Terrasser\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c9bbed\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f55af74\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"22bd8bd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d34c55\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e323db7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5e34458\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1b54610\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c39ae60\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"9feeb06\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"84033d6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(2118, 244, '_elementor_page_settings', 'a:0:{}'),
(5486, 590, '_elementor_edit_mode', 'builder'),
(5487, 590, '_elementor_template_type', 'wp-page'),
(4384, 483, '_elementor_page_settings', 'a:0:{}'),
(2122, 245, '_elementor_template_type', 'wp-page'),
(2123, 245, '_elementor_version', '3.34.0'),
(2124, 245, '_elementor_pro_version', '3.17.1'),
(2125, 245, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2126, 245, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3bd89cb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6f2d7d9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Terrasser\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c9bbed\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f55af74\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"22bd8bd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d34c55\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e323db7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5e34458\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1b54610\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c39ae60\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"9feeb06\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"84033d6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(3827, 424, '_elementor_edit_mode', 'builder'),
(3828, 424, '_elementor_template_type', 'wp-page'),
(3829, 424, '_elementor_version', '3.34.2'),
(3830, 424, '_elementor_pro_version', '3.34.2'),
(3831, 424, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3832, 424, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"2-lags tagpapl\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tagpap klar til sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Foliearbejde\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":405,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-3.jpg\"},{\"id\":295,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":270,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2165, 249, '_elementor_edit_mode', 'builder'),
(2166, 249, '_elementor_template_type', 'wp-page'),
(2167, 249, '_elementor_version', '3.34.0'),
(2168, 249, '_elementor_pro_version', '3.17.1'),
(2169, 249, '_wp_page_template', 'default'),
(2170, 249, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3bd89cb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"isInner\":true},{\"id\":\"3c9bbed\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f55af74\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"22bd8bd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d34c55\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e323db7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5e34458\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1b54610\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c39ae60\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"9feeb06\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"84033d6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(2141, 246, '_elementor_page_settings', 'a:0:{}'),
(4377, 483, '_elementor_edit_mode', 'builder'),
(4378, 483, '_elementor_template_type', 'wp-page'),
(4379, 483, '_elementor_version', '3.34.2'),
(4380, 483, '_elementor_pro_version', '3.34.2'),
(4381, 483, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4382, 483, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\",\"id\":57,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle ANMELDELSER\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]}},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"HVORFOR V\\u00c6LGE CP NORDIC ApS?\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79206f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>N\\u00e5r du v\\u00e6lger CP NORDIC ApS, f\\u00e5r du:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"44023b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"et ungt og engageret team\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"fokus p\\u00e5 kvalitet og detaljer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"\\u00e6rlig<br> r\\u00e5dgivning\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"gennemt\\u00e6nkte l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c0f2190\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"327bd23\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"arbejde udf\\u00f8rt med ansvar\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2144, 247, '_elementor_edit_mode', 'builder'),
(2145, 247, '_elementor_template_type', 'wp-page'),
(2146, 247, '_elementor_version', '3.34.0'),
(2147, 247, '_elementor_pro_version', '3.17.1'),
(2148, 247, '_wp_page_template', 'default'),
(2149, 247, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3bd89cb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"6f2d7d9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Terrasser\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c9bbed\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f55af74\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"22bd8bd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d34c55\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e323db7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5e34458\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1b54610\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c39ae60\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"9feeb06\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"84033d6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(2151, 247, '_elementor_page_settings', 'a:0:{}'),
(5600, 18, '_elementor_edit_mode', 'builder'),
(5601, 18, '_astra_content_layout_flag', 'disabled'),
(5602, 18, 'ast-title-bar-display', 'disabled'),
(5603, 18, '_elementor_template_type', 'wp-page'),
(3834, 424, '_elementor_page_settings', 'a:0:{}'),
(2180, 250, '_elementor_page_settings', 'a:0:{}'),
(2181, 251, '_elementor_edit_mode', 'builder'),
(2182, 251, '_elementor_template_type', 'wp-page'),
(2183, 251, '_elementor_version', '3.34.0'),
(2184, 251, '_elementor_pro_version', '3.17.1'),
(2185, 251, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2186, 251, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3bd89cb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"vertical_position\":\"bottom\",\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"3c9bbed\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f55af74\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"22bd8bd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d34c55\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e323db7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5e34458\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1b54610\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c39ae60\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"9feeb06\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"84033d6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(2192, 252, '_elementor_edit_mode', 'builder'),
(2193, 252, '_elementor_template_type', 'wp-page'),
(2194, 252, '_elementor_version', '3.34.0'),
(2195, 252, '_elementor_pro_version', '3.17.1'),
(2196, 252, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2197, 252, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3bd89cb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"vertical_position\":\"bottom\",\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"3c9bbed\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f55af74\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"22bd8bd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d34c55\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e323db7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5e34458\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1b54610\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c39ae60\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"9feeb06\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"84033d6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(2225, 255, '_elementor_edit_mode', 'builder'),
(2226, 255, '_elementor_template_type', 'wp-page'),
(2227, 255, '_elementor_version', '3.34.0'),
(2228, 255, '_elementor_pro_version', '3.17.1'),
(2229, 255, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2230, 255, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3bd89cb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"3c9bbed\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f55af74\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"22bd8bd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d34c55\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e323db7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5e34458\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1b54610\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c39ae60\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"9feeb06\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"84033d6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(2263, 258, '_elementor_page_settings', 'a:0:{}'),
(2264, 259, '_elementor_edit_mode', 'builder'),
(2265, 259, '_elementor_template_type', 'wp-page'),
(2266, 259, '_elementor_version', '3.34.0'),
(2267, 259, '_elementor_pro_version', '3.17.1'),
(2268, 259, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2269, 259, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3bd89cb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"3c9bbed\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f55af74\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"22bd8bd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d34c55\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e323db7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5e34458\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1b54610\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c39ae60\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"9feeb06\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"84033d6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(2199, 252, '_elementor_page_settings', 'a:0:{}'),
(4344, 474, '_wp_attached_file', '2026/01/effective_1401921.svg'),
(4345, 474, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:6427;s:5:\"width\";i:496;s:6:\"height\";i:496;}'),
(5343, 580, '_elementor_data', '[]'),
(5344, 580, '_elementor_version', '3.34.2'),
(5345, 580, '_elementor_pro_version', '3.34.2'),
(5359, 581, '_elementor_edit_mode', 'builder'),
(5360, 581, '_elementor_template_type', 'kit'),
(5361, 581, '_wp_page_template', 'default'),
(5362, 581, '_elementor_page_settings', 'a:38:{s:13:\"system_colors\";a:4:{i:0;a:2:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";}i:1;a:2:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";}i:2;a:2:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";}i:3;a:2:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";}}s:13:\"custom_colors\";a:0:{}s:17:\"system_typography\";a:4:{i:0;a:5:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Nekst Black\";s:22:\"typography_font_weight\";s:3:\"600\";}i:1;a:5:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Nekst Black\";s:22:\"typography_font_weight\";s:3:\"400\";}i:2;a:6:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"400\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}}i:3;a:5:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"500\";}}s:17:\"custom_typography\";a:0:{}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:9:\"site_name\";s:9:\"CP-NORDIC\";s:15:\"container_width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:1240;s:5:\"sizes\";a:0:{}}s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:18:\"active_breakpoints\";a:5:{i:0;s:15:\"viewport_mobile\";i:1;s:21:\"viewport_mobile_extra\";i:2;s:15:\"viewport_tablet\";i:3;s:21:\"viewport_tablet_extra\";i:4;s:19:\"viewport_widescreen\";}s:15:\"viewport_mobile\";i:480;s:21:\"viewport_mobile_extra\";i:767;s:15:\"viewport_tablet\";i:991;s:21:\"viewport_tablet_extra\";i:1199;s:19:\"viewport_widescreen\";i:1200;s:11:\"viewport_md\";i:481;s:11:\"viewport_lg\";i:992;s:32:\"colors_enable_styleguide_preview\";s:3:\"yes\";s:15:\"activeItemIndex\";i:1;s:36:\"typography_enable_styleguide_preview\";s:3:\"yes\";s:24:\"h1_typography_typography\";s:6:\"custom\";s:25:\"h1_typography_font_family\";s:11:\"Nekst Black\";s:23:\"h1_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:60;s:5:\"sizes\";a:0:{}}s:24:\"h2_typography_typography\";s:6:\"custom\";s:23:\"h2_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:42;s:5:\"sizes\";a:0:{}}s:24:\"h3_typography_typography\";s:6:\"custom\";s:23:\"h3_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:32;s:5:\"sizes\";a:0:{}}s:24:\"h4_typography_typography\";s:6:\"custom\";s:23:\"h4_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:26;s:5:\"sizes\";a:0:{}}s:24:\"h5_typography_typography\";s:6:\"custom\";s:23:\"h5_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:22;s:5:\"sizes\";a:0:{}}s:24:\"h6_typography_typography\";s:6:\"custom\";s:23:\"h6_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:28:\"button_typography_typography\";s:6:\"custom\";s:32:\"button_typography_text_transform\";s:9:\"uppercase\";s:32:\"button_typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:25:\"h4_typography_font_family\";s:6:\"Roboto\";s:25:\"h5_typography_font_family\";s:6:\"Roboto\";s:25:\"h6_typography_font_family\";s:6:\"Roboto\";}'),
(5363, 581, '_elementor_data', '[]'),
(5364, 581, '_elementor_version', '3.34.2'),
(5365, 581, '_elementor_pro_version', '3.34.2'),
(4347, 475, '_wp_attached_file', '2026/01/discussion_8429360.svg'),
(4348, 475, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:3276;s:5:\"width\";i:512;s:6:\"height\";i:512;}'),
(5339, 580, '_elementor_edit_mode', 'builder'),
(5340, 580, '_elementor_template_type', 'kit'),
(5341, 580, '_wp_page_template', 'default'),
(5342, 580, '_elementor_page_settings', 'a:38:{s:13:\"system_colors\";a:4:{i:0;a:2:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";}i:1;a:2:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";}i:2;a:2:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";}i:3;a:2:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";}}s:13:\"custom_colors\";a:0:{}s:17:\"system_typography\";a:4:{i:0;a:5:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Nekst Black\";s:22:\"typography_font_weight\";s:3:\"600\";}i:1;a:5:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Nekst Black\";s:22:\"typography_font_weight\";s:3:\"400\";}i:2;a:6:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"400\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:17;s:5:\"sizes\";a:0:{}}}i:3;a:5:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"500\";}}s:17:\"custom_typography\";a:0:{}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:9:\"site_name\";s:9:\"CP-NORDIC\";s:15:\"container_width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:1240;s:5:\"sizes\";a:0:{}}s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:18:\"active_breakpoints\";a:5:{i:0;s:15:\"viewport_mobile\";i:1;s:21:\"viewport_mobile_extra\";i:2;s:15:\"viewport_tablet\";i:3;s:21:\"viewport_tablet_extra\";i:4;s:19:\"viewport_widescreen\";}s:15:\"viewport_mobile\";i:480;s:21:\"viewport_mobile_extra\";i:767;s:15:\"viewport_tablet\";i:991;s:21:\"viewport_tablet_extra\";i:1199;s:19:\"viewport_widescreen\";i:1200;s:11:\"viewport_md\";i:481;s:11:\"viewport_lg\";i:992;s:32:\"colors_enable_styleguide_preview\";s:3:\"yes\";s:15:\"activeItemIndex\";i:1;s:36:\"typography_enable_styleguide_preview\";s:3:\"yes\";s:24:\"h1_typography_typography\";s:6:\"custom\";s:25:\"h1_typography_font_family\";s:11:\"Nekst Black\";s:23:\"h1_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:60;s:5:\"sizes\";a:0:{}}s:24:\"h2_typography_typography\";s:6:\"custom\";s:23:\"h2_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:42;s:5:\"sizes\";a:0:{}}s:24:\"h3_typography_typography\";s:6:\"custom\";s:23:\"h3_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:32;s:5:\"sizes\";a:0:{}}s:24:\"h4_typography_typography\";s:6:\"custom\";s:23:\"h4_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:26;s:5:\"sizes\";a:0:{}}s:24:\"h5_typography_typography\";s:6:\"custom\";s:23:\"h5_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:22;s:5:\"sizes\";a:0:{}}s:24:\"h6_typography_typography\";s:6:\"custom\";s:23:\"h6_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:28:\"button_typography_typography\";s:6:\"custom\";s:32:\"button_typography_text_transform\";s:9:\"uppercase\";s:32:\"button_typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:25:\"h4_typography_font_family\";s:6:\"Roboto\";s:25:\"h5_typography_font_family\";s:6:\"Roboto\";s:25:\"h6_typography_font_family\";s:6:\"Roboto\";}'),
(4350, 476, '_wp_attached_file', '2026/01/application_11959109.svg'),
(4351, 476, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:1291;s:5:\"width\";i:64;s:6:\"height\";i:64;}'),
(4353, 477, '_wp_attached_file', '2026/01/mark_16520519.svg'),
(4354, 477, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:1449;s:5:\"width\";i:64;s:6:\"height\";i:64;}'),
(4356, 478, '_wp_attached_file', '2026/01/self-affirmation_18139297.svg'),
(4357, 478, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:10590;s:5:\"width\";i:512;s:6:\"height\";i:513;}'),
(5368, 582, '_elementor_edit_mode', 'builder'),
(5369, 582, '_elementor_template_type', 'kit'),
(5370, 582, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5371, 582, '_elementor_page_settings', 'a:49:{s:13:\"system_colors\";a:4:{i:0;a:2:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";}i:1;a:2:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";}i:2;a:2:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";}i:3;a:2:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";}}s:13:\"custom_colors\";a:0:{}s:17:\"system_typography\";a:4:{i:0;a:5:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Nekst Black\";s:22:\"typography_font_weight\";s:3:\"600\";}i:1;a:5:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Nekst Black\";s:22:\"typography_font_weight\";s:3:\"400\";}i:2;a:6:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"400\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}}i:3;a:5:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"500\";}}s:17:\"custom_typography\";a:0:{}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:9:\"site_name\";s:9:\"CP-NORDIC\";s:15:\"container_width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:1240;s:5:\"sizes\";a:0:{}}s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:18:\"active_breakpoints\";a:5:{i:0;s:15:\"viewport_mobile\";i:1;s:21:\"viewport_mobile_extra\";i:2;s:15:\"viewport_tablet\";i:3;s:21:\"viewport_tablet_extra\";i:4;s:19:\"viewport_widescreen\";}s:15:\"viewport_mobile\";i:480;s:21:\"viewport_mobile_extra\";i:767;s:15:\"viewport_tablet\";i:991;s:21:\"viewport_tablet_extra\";i:1199;s:19:\"viewport_widescreen\";i:1200;s:11:\"viewport_md\";i:481;s:11:\"viewport_lg\";i:992;s:32:\"colors_enable_styleguide_preview\";s:3:\"yes\";s:15:\"activeItemIndex\";i:1;s:36:\"typography_enable_styleguide_preview\";s:3:\"yes\";s:24:\"h1_typography_typography\";s:6:\"custom\";s:25:\"h1_typography_font_family\";s:11:\"Nekst Black\";s:23:\"h1_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:60;s:5:\"sizes\";a:0:{}}s:24:\"h2_typography_typography\";s:6:\"custom\";s:23:\"h2_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:42;s:5:\"sizes\";a:0:{}}s:24:\"h3_typography_typography\";s:6:\"custom\";s:23:\"h3_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:32;s:5:\"sizes\";a:0:{}}s:24:\"h4_typography_typography\";s:6:\"custom\";s:23:\"h4_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:26;s:5:\"sizes\";a:0:{}}s:24:\"h5_typography_typography\";s:6:\"custom\";s:23:\"h5_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:22;s:5:\"sizes\";a:0:{}}s:24:\"h6_typography_typography\";s:6:\"custom\";s:23:\"h6_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:28:\"button_typography_typography\";s:6:\"custom\";s:32:\"button_typography_text_transform\";s:9:\"uppercase\";s:32:\"button_typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:25:\"h4_typography_font_family\";s:6:\"Roboto\";s:25:\"h5_typography_font_family\";s:6:\"Roboto\";s:25:\"h6_typography_font_family\";s:6:\"Roboto\";s:36:\"h1_typography_font_size_tablet_extra\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:40;s:5:\"sizes\";a:0:{}}s:36:\"h2_typography_font_size_tablet_extra\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:35;s:5:\"sizes\";a:0:{}}s:36:\"h2_typography_font_size_mobile_extra\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:30;s:5:\"sizes\";a:0:{}}s:36:\"h3_typography_font_size_tablet_extra\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:28;s:5:\"sizes\";a:0:{}}s:36:\"h3_typography_font_size_mobile_extra\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:26;s:5:\"sizes\";a:0:{}}s:36:\"h4_typography_font_size_tablet_extra\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:24;s:5:\"sizes\";a:0:{}}s:36:\"h4_typography_font_size_mobile_extra\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:22;s:5:\"sizes\";a:0:{}}s:36:\"h5_typography_font_size_tablet_extra\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}s:36:\"h5_typography_font_size_mobile_extra\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}s:30:\"h5_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:36:\"h6_typography_font_size_mobile_extra\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}}'),
(5372, 582, '_elementor_data', '[]'),
(5373, 582, '_elementor_version', '3.34.2'),
(5374, 582, '_elementor_pro_version', '3.34.2'),
(5581, 600, '_elementor_source', 'post'),
(5582, 600, '_elementor_edit_mode', 'builder'),
(5583, 600, '_elementor_template_type', 'header'),
(5584, 600, '_elementor_version', '3.34.2'),
(5585, 600, '_elementor_pro_version', '3.34.2'),
(5586, 600, '_wp_page_template', 'default'),
(5587, 600, '_elementor_data', '[{\"id\":\"67407e3b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2e8ba73\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f52efb8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"717f375\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"394af17\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"flex_wrap_mobile\":\"nowrap\",\"z_index\":1,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FCFCFC17\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-124\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"\"}},\"elements\":[{\"id\":\"341f8b74\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"33df9dc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7bdec\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"90e6e83\"}],\"pp_display_conditions\":[{\"_id\":\"3e37d22\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"4cc70c2e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":49,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/Transparent-File-02-scaled.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"link_to\":\"custom\",\"space\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"ef1f052\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"7043833\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"space_mobile_extra\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"space_tablet_extra\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"29f8b7e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":80},\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"13efff7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4ba59b9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9a413e\"}],\"pp_display_conditions\":[{\"_id\":\"6633050\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"flex_align_items\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"flex_direction_mobile\":\"row-reverse\",\"flex_justify_content_mobile\":\"flex-start\",\"flex_wrap_mobile\":\"nowrap\"},\"elements\":[{\"id\":\"55ad1095\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"pointer\":\"none\",\"toggle_label\":\"Menu\",\"pp_display_conditions\":[{\"_id\":\"6d90ae3\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"menu_type\":\"off-canvas\",\"toggle_align\":\"right\",\"toggle_background_color\":\"#02010100\",\"toggle_background_color_hover\":\"#02010100\",\"offcanvas_position\":\"right\",\"close_icon_background_color\":\"#02010100\",\"close_icon_background_color_hover\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_weight\":\"500\",\"__globals__\":{\"toggle_color\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_color_hover\":\"globals\\/colors?id=astglobalcolor3\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor5\",\"mobile_sub_link_color\":\"globals\\/colors?id=astglobalcolor5\",\"mobile_sub_link_bg_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor5\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_hover\":\"globals\\/colors?id=astglobalcolor5\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"close_icon_color_hover\":\"globals\\/colors?id=astglobalcolor5\",\"color_menu_item\":\"globals\\/colors?id=astglobalcolor4\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor4\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor4\",\"color_dropdown_item\":\"globals\\/colors?id=astglobalcolor5\",\"background_color_dropdown_item\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor5\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor5\",\"background_color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"dropdown_divider_color\":\"\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"menu_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"color_menu_item_hover\":\"#045cb4\",\"color_menu_item_active\":\"#045cb4\",\"color_dropdown_item\":\"#F0F5FA\",\"background_color_dropdown_item\":\"#046bd2\",\"color_dropdown_item_hover\":\"#F0F5FA\",\"background_color_dropdown_item_hover\":\"#045cb4\",\"color_dropdown_item_active\":\"#F0F5FA\",\"background_color_dropdown_item_active\":\"#045cb4\",\"dropdown_divider_border\":\"solid\",\"dropdown_divider_color\":\"#F0F5FA36\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"toggle_color\":\"#046bd2\",\"toggle_color_hover\":\"#334155\",\"overlay_bg_color\":\"#1e293b\",\"mobile_link_color\":\"#F0F5FA\",\"mobile_sub_link_bg_color\":\"#1e293b\",\"mobile_sub_link_color\":\"#F0F5FA\",\"mobile_link_hover\":\"#F0F5FA\",\"mobile_link_bg_hover\":\"#046bd2\",\"mobile_sub_link_bg_hover\":\"#046bd2\",\"mobile_sub_link_hover\":\"#F0F5FA\",\"close_icon_color\":\"#F0F5FA\",\"close_icon_color_hover\":\"#F0F5FA\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"toggle_size_mobile\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"4027936a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"730407e\",\"pp_condition_date_time_before_value\":\"2024-10-27 14:19\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/kontakt\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"348be72f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f25b0fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8462f23\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f25e330\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"pp_condition_key\":\"page\",\"pp_condition_operator\":\"not\",\"_id\":\"eda4653\",\"pp_condition_page_value\":[\"10\"],\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"\"},\"background_overlay_color\":\"#48aaad\",\"background_overlay_color_b\":\"#1E293B0A\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":179,\"sizes\":[]},\"css_classes\":\"header-breadcrumbs-section\",\"pp_display_conditions_enable\":\"yes\"},\"elements\":[{\"id\":\"13f6f159\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"page-title\\\" settings=\\\"%7B%22include_context%22%3A%22%22%2C%22show_home_title%22%3A%22%22%2C%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3b30e8f\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"}],\"isInner\":false}]'),
(4359, 479, '_wp_attached_file', '2026/01/communication_18765280.svg'),
(4360, 479, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:4140;s:5:\"width\";i:512;s:6:\"height\";i:512;}'),
(4362, 480, '_wp_attached_file', '2026/01/brainstorming_11663441.svg'),
(4363, 480, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:6094;s:5:\"width\";i:510;s:6:\"height\";i:510;}'),
(6553, 698, '_elementor_edit_mode', 'builder'),
(4365, 481, '_wp_attached_file', '2026/01/like_3941426.svg'),
(4366, 481, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:3087;s:5:\"width\";i:512;s:6:\"height\";i:512;}'),
(2202, 253, '_elementor_edit_mode', 'builder'),
(2203, 253, '_elementor_template_type', 'wp-page'),
(2204, 253, '_elementor_version', '3.34.0'),
(2205, 253, '_elementor_pro_version', '3.17.1'),
(2206, 253, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2207, 253, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3bd89cb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"vertical_position\":\"bottom\",\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"3c9bbed\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f55af74\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"22bd8bd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d34c55\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e323db7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5e34458\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1b54610\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c39ae60\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"9feeb06\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"84033d6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(2209, 253, '_elementor_page_settings', 'a:0:{}'),
(5488, 590, '_elementor_version', '3.34.2'),
(5489, 590, '_elementor_pro_version', '3.34.2'),
(5490, 590, '_wp_page_template', 'default'),
(5491, 590, '_elementor_data', '[{\"id\":\"7714a98\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"background_color\":\"#F2EEEC\",\"flex_direction_tablet\":\"column-reverse\",\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"cbae772\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b5d09ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPECIALL\\u00d8SNINGER\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2142cf3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi har en s\\u00e6rlig interesse for opgaver, der kr\\u00e6ver noget ekstra. N\\u00e5r standardl\\u00f8sninger ikke passer, finder vi l\\u00f8sninger, der g\\u00f8r.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b58c237\",\"elType\":\"widget\",\"settings\":{\"title\":\"Det kan v\\u00e6re:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91b5903\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"teknisk kr\\u00e6vende detaljer\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"specialtilpassede konstruktioner\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"samspil mellem flere materialer\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"l\\u00f8sninger, der kr\\u00e6ver ekstra omtanke\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c23ec26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Her kommer vores faglighed og erfaring virkelig i spil.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(4375, 482, '_elementor_page_settings', 'a:0:{}'),
(2212, 254, '_elementor_edit_mode', 'builder'),
(2213, 254, '_elementor_template_type', 'wp-page'),
(2214, 254, '_elementor_version', '3.34.0'),
(2215, 254, '_elementor_pro_version', '3.17.1'),
(2216, 254, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2217, 254, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3bd89cb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"3c9bbed\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f55af74\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"22bd8bd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d34c55\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e323db7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5e34458\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1b54610\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c39ae60\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"9feeb06\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"84033d6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(2272, 260, '_elementor_edit_mode', 'builder'),
(2256, 258, '_elementor_edit_mode', 'builder'),
(2257, 258, '_elementor_template_type', 'wp-page'),
(2258, 258, '_elementor_version', '3.34.0'),
(2259, 258, '_elementor_pro_version', '3.17.1'),
(2260, 258, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2261, 258, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3bd89cb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"3c9bbed\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f55af74\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"22bd8bd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d34c55\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e323db7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5e34458\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1b54610\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c39ae60\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"9feeb06\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"84033d6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(2232, 255, '_elementor_page_settings', 'a:0:{}'),
(4387, 484, '_elementor_template_type', 'wp-page'),
(4388, 484, '_elementor_version', '3.34.2'),
(4389, 484, '_elementor_pro_version', '3.34.2'),
(4390, 484, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4391, 484, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\",\"id\":57,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle ANMELDELSER\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]}},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"HVORFOR V\\u00c6LGE CP NORDIC ApS?\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79206f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>N\\u00e5r du v\\u00e6lger CP NORDIC ApS, f\\u00e5r du:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"44023b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/teamwork_4546121.svg\",\"id\":472},\"library\":\"svg\"},\"title_text\":\"et ungt og engageret team\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/effective_1401921.svg\",\"id\":474},\"library\":\"svg\"},\"title_text\":\"fokus p\\u00e5 kvalitet og detaljer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/communication_18765280.svg\",\"id\":479},\"library\":\"svg\"},\"title_text\":\"\\u00e6rlig<br> r\\u00e5dgivning\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/brainstorming_11663441.svg\",\"id\":480},\"library\":\"svg\"},\"title_text\":\"gennemt\\u00e6nkte l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c0f2190\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"327bd23\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/like_3941426.svg\",\"id\":481},\"library\":\"svg\"},\"title_text\":\"arbejde udf\\u00f8rt med ansvar\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2235, 256, '_elementor_edit_mode', 'builder'),
(2236, 256, '_elementor_template_type', 'wp-page'),
(2237, 256, '_elementor_version', '3.34.0'),
(2238, 256, '_elementor_pro_version', '3.17.1'),
(2239, 256, '_wp_page_template', 'default'),
(2240, 256, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3bd89cb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"3c9bbed\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f55af74\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"22bd8bd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d34c55\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e323db7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5e34458\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1b54610\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c39ae60\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"9feeb06\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"84033d6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(2242, 256, '_elementor_page_settings', 'a:0:{}'),
(4412, 487, '_elementor_edit_mode', 'builder'),
(4396, 485, '_elementor_edit_mode', 'builder'),
(4397, 485, '_elementor_template_type', 'wp-page'),
(4398, 485, '_elementor_version', '3.34.2'),
(4399, 485, '_elementor_pro_version', '3.34.2'),
(4400, 485, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4401, 485, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\",\"id\":57,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle ANMELDELSER\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]}},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"HVORFOR V\\u00c6LGE CP NORDIC ApS?\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79206f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>N\\u00e5r du v\\u00e6lger CP NORDIC ApS, f\\u00e5r du:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"44023b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/teamwork_4546121.svg\",\"id\":472},\"library\":\"svg\"},\"title_text\":\"et ungt og engageret team\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/effective_1401921.svg\",\"id\":474},\"library\":\"svg\"},\"title_text\":\"fokus p\\u00e5 kvalitet og detaljer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/communication_18765280.svg\",\"id\":479},\"library\":\"svg\"},\"title_text\":\"\\u00e6rlig<br> r\\u00e5dgivning\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/brainstorming_11663441.svg\",\"id\":480},\"library\":\"svg\"},\"title_text\":\"gennemt\\u00e6nkte l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c0f2190\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"327bd23\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/like_3941426.svg\",\"id\":481},\"library\":\"svg\"},\"title_text\":\"arbejde udf\\u00f8rt med ansvar\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4330, 472, '_wp_attached_file', '2026/01/teamwork_4546121.svg'),
(4331, 472, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:6659;s:5:\"width\";i:512;s:6:\"height\";i:512;}'),
(7633, 474, '_elementor_inline_svg', '<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"496pt\" viewBox=\"0 0 496 496\" width=\"496pt\"><path d=\"m440 328h-28.207031c5.078125-6.703125 8.207031-14.960938 8.207031-24 0-8.824219-7.175781-16-16-16h-12v-19.960938c59.574219-14.445312 104-68.085937 104-132.039062 0-74.992188-61.007812-136-136-136s-136 61.007812-136 136c0 63.953125 44.425781 117.59375 104 132.039062v19.960938h-8.449219c-6.167969 0-12.359375 1.464844-17.886719 4.214844l-50.480468 25.25c-3.320313 1.664062-7.03125 2.535156-10.734375 2.535156h-40.449219v-16h-104v16h56v56h16v-56h16v128h-16v-56h-16v56h-56v16h104v-16h40.449219c3.703125 0 7.414062.871094 10.734375 2.527344l34.488281 17.25c5.519531 2.757812 11.710937 4.222656 17.878906 4.222656h24.449219v24h64v-24h48c13.230469 0 24-10.769531 24-24 0-6.167969-2.40625-11.742188-6.238281-16 3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16 0-13.230469-10.769531-24-24-24zm8 24c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm-208-280c0-66.167969 53.832031-120 120-120s120 53.832031 120 120-53.832031 120-120 120-120-53.832031-120-120zm104 134.976562c5.257812.617188 10.574219 1.023438 16 1.023438s10.742188-.40625 16-1.023438v17.023438h-32zm-40.449219 185.023438c-3.703125 0-7.414062-.871094-10.734375-2.527344l-34.488281-17.25c-5.519531-2.757812-11.710937-4.222656-17.878906-4.222656h-40.449219v-96h40.449219c6.167969 0 12.359375-1.464844 17.886719-4.214844l50.480468-25.25c3.320313-1.664062 7.03125-2.535156 10.734375-2.535156h84.449219c0 13.230469-10.769531 24-24 24h-48.28125l-23.863281 35.808594c-6.101563 9.160156-14.527344 16.589844-24.367188 21.503906-8.753906 4.375-18.542969 6.6875-28.320312 6.6875h-15.167969v16h15.167969c12.246093 0 24.519531-2.894531 35.472656-8.375 12.328125-6.160156 22.878906-15.480469 30.527344-26.945312l6.832031-10.253907v93.574219zm40.449219 24v-136h17.472656c-.898437 2.511719-1.472656 5.183594-1.472656 8 0 6.167969 2.40625 11.742188 6.238281 16-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16 0 10.414062 6.710938 19.214844 16 22.527344v9.472656zm96-24h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8s-3.59375 8-8 8zm0 0\"></path><path d=\"m394.878906 73.007812-7.757812 13.984376c17.816406 9.878906 28.878906 28.664062 28.878906 49.007812h16c0-26.160156-14.222656-50.296875-37.121094-62.992188zm0 0\"></path><path d=\"m360 80c4.734375 0 9.449219.59375 14.007812 1.769531l3.976563-15.503906c-5.855469-1.496094-11.90625-2.265625-17.984375-2.265625zm0 0\"></path><path d=\"m360 48c48.519531 0 88 39.480469 88 88 0 20.753906-7.398438 40.910156-20.832031 56.785156l12.207031 10.34375c15.882812-18.761718 24.625-42.601562 24.625-67.128906 0-57.34375-46.65625-104-104-104-24.527344 0-48.367188 8.753906-67.128906 24.632812l10.335937 12.199219c15.871094-13.433593 36.039063-20.832031 56.792969-20.832031zm0 0\"></path><path d=\"m427.128906 215.367188-10.335937-12.199219c-15.871094 13.433593-36.039063 20.832031-56.792969 20.832031-48.519531 0-88-39.480469-88-88 0-20.753906 7.398438-40.910156 20.832031-56.785156l-12.207031-10.34375c-15.882812 18.761718-24.625 42.601562-24.625 67.128906 0 57.34375 46.65625 104 104 104 24.527344 0 48.367188-8.753906 67.128906-24.632812zm0 0\"></path><path d=\"m121.214844 165.640625c4.953125-1.375 9.695312-3.34375 14.183594-5.878906l9.769531 4.886719 19.472656-19.480469-4.886719-9.769531c2.535156-4.496094 4.503906-9.230469 5.886719-14.183594l10.359375-3.445313v-27.53125l-10.351562-3.453125c-1.375-4.953125-3.34375-9.707031-5.886719-14.183594l4.886719-9.777343-19.472657-19.472657-9.769531 4.886719c-4.484375-2.535156-9.230469-4.503906-14.183594-5.878906l-3.453125-10.359375h-27.539062l-3.445313 10.359375c-4.953125 1.375-9.695312 3.34375-14.183594 5.878906l-9.777343-4.886719-19.472657 19.472657 4.886719 9.777343c-2.535156 4.488282-4.503906 9.230469-5.886719 14.183594l-10.351562 3.445313v27.53125l10.351562 3.453125c1.375 4.953125 3.34375 9.695312 5.886719 14.183594l-4.886719 9.769531 19.472657 19.480469 9.769531-4.886719c4.484375 2.535156 9.230469 4.503906 14.183594 5.878906l3.453125 10.359375h27.539062zm-12.304688-13.679687-2.679687 8.039062h-4.460938l-2.679687-8.039062-4.554688-.90625c-6.128906-1.222657-11.878906-3.605469-17.109375-7.09375l-3.867187-2.578126-7.574219 3.800782-3.160156-3.167969 3.792969-7.582031-2.578126-3.859375c-3.488281-5.222657-5.871093-10.980469-7.09375-17.109375l-.914062-4.554688-8.03125-2.679687v-4.46875l8.03125-2.671875.914062-4.554688c1.222657-6.136718 3.613282-11.886718 7.09375-17.109375l2.578126-3.859375-3.792969-7.589844 3.160156-3.160156 7.574219 3.800782 3.867187-2.578126c5.222657-3.488281 10.980469-5.863281 17.109375-7.09375l4.554688-.90625 2.679687-8.039062h4.460938l2.679687 8.039062 4.554688.90625c6.128906 1.222657 11.878906 3.605469 17.109375 7.09375l3.867187 2.578126 7.574219-3.800782 3.160156 3.160156-3.792969 7.589844 2.578126 3.859375c3.488281 5.214844 5.871093 10.972657 7.09375 17.109375l.914062 4.554688 8.03125 2.679687v4.46875l-8.03125 2.671875-.914062 4.554688c-1.222657 6.128906-3.613282 11.878906-7.09375 17.109375l-2.578126 3.859375 3.792969 7.582031-3.160156 3.167969-7.574219-3.800782-3.867187 2.578126c-5.222657 3.488281-10.980469 5.863281-17.109375 7.09375zm0 0\"></path><path d=\"m104 72c-17.648438 0-32 14.351562-32 32s14.351562 32 32 32 32-14.351562 32-32-14.351562-32-32-32zm0 48c-8.824219 0-16-7.175781-16-16s7.175781-16 16-16 16 7.175781 16 16-7.175781 16-16 16zm0 0\"></path><path d=\"m160 248v-40h48v-208h-208v208h106.664062zm-144-232h176v176h-48v24l-32-24h-96zm0 0\"></path><path d=\"m0 272h16v16h-16zm0 0\"></path><path d=\"m32 272h16v16h-16zm0 0\"></path><path d=\"m64 272h16v16h-16zm0 0\"></path><path d=\"m32 304h16v16h-16zm0 0\"></path><path d=\"m64 304h16v16h-16zm0 0\"></path><path d=\"m0 480h16v16h-16zm0 0\"></path><path d=\"m32 480h16v16h-16zm0 0\"></path><path d=\"m64 480h16v16h-16zm0 0\"></path><path d=\"m32 448h16v16h-16zm0 0\"></path><path d=\"m64 448h16v16h-16zm0 0\"></path></svg>'),
(2245, 257, '_elementor_edit_mode', 'builder'),
(2246, 257, '_elementor_template_type', 'wp-page'),
(2247, 257, '_elementor_version', '3.34.0'),
(2248, 257, '_elementor_pro_version', '3.17.1'),
(2249, 257, '_wp_page_template', 'default'),
(2250, 257, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3bd89cb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"3c9bbed\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f55af74\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"22bd8bd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d34c55\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e323db7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5e34458\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1b54610\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c39ae60\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"9feeb06\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"84033d6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(3838, 425, '_elementor_template_type', 'wp-page'),
(3839, 425, '_elementor_version', '3.34.2'),
(3840, 425, '_elementor_pro_version', '3.34.2'),
(3841, 425, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3842, 425, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"2-lags tagpapl\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tagpap klar til sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Foliearbejde\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":405,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-3.jpg\"},{\"id\":295,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":270,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2271, 259, '_elementor_page_settings', 'a:0:{}'),
(2273, 260, '_elementor_template_type', 'wp-page'),
(2274, 260, '_elementor_version', '3.34.0'),
(2275, 260, '_elementor_pro_version', '3.17.1'),
(2276, 260, '_wp_page_template', 'default'),
(2277, 260, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3bd89cb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"3c9bbed\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f55af74\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"22bd8bd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d34c55\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e323db7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5e34458\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1b54610\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c39ae60\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"9feeb06\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"84033d6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(2297, 263, '_elementor_edit_mode', 'builder'),
(2281, 261, '_elementor_edit_mode', 'builder'),
(2282, 261, '_elementor_template_type', 'wp-page'),
(2283, 261, '_elementor_version', '3.34.0'),
(2284, 261, '_elementor_pro_version', '3.17.1'),
(2285, 261, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2286, 261, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3bd89cb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"3c9bbed\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f55af74\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"22bd8bd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d34c55\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e323db7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5e34458\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1b54610\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c39ae60\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"9feeb06\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"84033d6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(2288, 261, '_elementor_page_settings', 'a:0:{}'),
(2289, 262, '_elementor_edit_mode', 'builder'),
(2290, 262, '_elementor_template_type', 'wp-page'),
(2291, 262, '_elementor_version', '3.34.0'),
(2292, 262, '_elementor_pro_version', '3.17.1'),
(2293, 262, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2294, 262, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3bd89cb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"3c9bbed\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f55af74\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"22bd8bd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d34c55\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e323db7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5e34458\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1b54610\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c39ae60\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"9feeb06\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"84033d6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(2296, 262, '_elementor_page_settings', 'a:0:{}'),
(2298, 263, '_elementor_template_type', 'wp-page'),
(2299, 263, '_elementor_version', '3.34.0'),
(2300, 263, '_elementor_pro_version', '3.17.1'),
(2301, 263, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2302, 263, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3bd89cb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"3c9bbed\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f55af74\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"22bd8bd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d34c55\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e323db7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5e34458\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1b54610\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c39ae60\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"9feeb06\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"84033d6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(2308, 264, '_elementor_edit_mode', 'builder'),
(2309, 264, '_elementor_template_type', 'wp-page'),
(2310, 264, '_elementor_version', '3.34.0'),
(2311, 264, '_elementor_pro_version', '3.17.1'),
(2312, 264, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2313, 264, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3bd89cb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"3c9bbed\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f55af74\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"22bd8bd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d34c55\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e323db7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5e34458\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1b54610\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c39ae60\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"9feeb06\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"84033d6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(2341, 267, '_elementor_edit_mode', 'builder'),
(2342, 267, '_elementor_template_type', 'wp-page'),
(2343, 267, '_elementor_version', '3.34.0'),
(2344, 267, '_elementor_pro_version', '3.17.1'),
(2345, 267, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2346, 267, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3bd89cb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"379e1c7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d4e1653\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"b27a152\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"edba59c\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(2381, 271, '_elementor_page_settings', 'a:0:{}'),
(2382, 272, '_elementor_edit_mode', 'builder'),
(2383, 272, '_elementor_template_type', 'wp-page'),
(2384, 272, '_elementor_version', '3.34.0'),
(2385, 272, '_elementor_pro_version', '3.17.1'),
(2386, 272, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2387, 272, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(2315, 264, '_elementor_page_settings', 'a:0:{}'),
(2318, 265, '_elementor_edit_mode', 'builder'),
(2319, 265, '_elementor_template_type', 'wp-page'),
(2320, 265, '_elementor_version', '3.34.0'),
(2321, 265, '_elementor_pro_version', '3.17.1'),
(2322, 265, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2323, 265, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3bd89cb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"3c9bbed\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f55af74\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"22bd8bd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d34c55\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e323db7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5e34458\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1b54610\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c39ae60\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"9feeb06\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"84033d6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(2325, 265, '_elementor_page_settings', 'a:0:{}'),
(2361, 269, '_elementor_edit_mode', 'builder'),
(2362, 269, '_elementor_template_type', 'wp-page'),
(2363, 269, '_elementor_version', '3.34.0'),
(2364, 269, '_elementor_pro_version', '3.17.1'),
(2365, 269, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2366, 269, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(2328, 266, '_elementor_edit_mode', 'builder'),
(2329, 266, '_elementor_template_type', 'wp-page'),
(2330, 266, '_elementor_version', '3.34.0'),
(2331, 266, '_elementor_pro_version', '3.17.1'),
(2332, 266, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2333, 266, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3bd89cb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"379e1c7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d4e1653\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"b27a152\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"edba59c\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(5571, 599, '_elementor_edit_mode', 'builder'),
(5572, 599, '_elementor_template_type', 'wp-page'),
(5546, 596, '_elementor_edit_mode', 'builder'),
(5547, 596, '_elementor_template_type', 'wp-page'),
(5548, 596, '_elementor_version', '3.34.2'),
(5549, 596, '_elementor_pro_version', '3.34.2'),
(5550, 596, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5551, 596, '_elementor_data', '[{\"id\":\"580962f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC5C\",\"flex_direction_tablet\":\"column-reverse\",\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"0a64fdb\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"90a885a\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"007564a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p><p>\\u00a0<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"617780c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b57ce82\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}]},\"elements\":[{\"id\":\"e3724c6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b79d6d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8a1d74a\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"944b744\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f99f95c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e408251\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"b3e8d95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(5555, 597, '_elementor_edit_mode', 'builder'),
(5556, 597, '_elementor_template_type', 'wp-page'),
(5557, 597, '_elementor_version', '3.34.2'),
(5558, 597, '_elementor_pro_version', '3.34.2'),
(5559, 597, '_wp_page_template', 'default'),
(5560, 597, '_elementor_data', '[{\"id\":\"580962f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC5C\",\"flex_direction_tablet\":\"column-reverse\",\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"0a64fdb\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"90a885a\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"007564a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p><p>\\u00a0<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"617780c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b57ce82\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}]},\"elements\":[{\"id\":\"e3724c6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b79d6d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8a1d74a\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"944b744\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f99f95c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e408251\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"b3e8d95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(5561, 597, '_elementor_page_settings', 'a:0:{}'),
(5563, 598, '_elementor_edit_mode', 'builder'),
(5564, 598, '_elementor_template_type', 'wp-page'),
(5565, 598, '_elementor_version', '3.34.2'),
(5566, 598, '_elementor_pro_version', '3.34.2'),
(5567, 598, '_wp_page_template', 'default'),
(5568, 598, '_elementor_data', '[{\"id\":\"580962f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC5C\",\"flex_direction_tablet\":\"column-reverse\",\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"0a64fdb\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"90a885a\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"007564a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p><p>\\u00a0<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"617780c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b57ce82\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}]},\"elements\":[{\"id\":\"e3724c6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b79d6d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8a1d74a\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"944b744\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f99f95c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e408251\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"b3e8d95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(5569, 598, '_elementor_page_settings', 'a:0:{}'),
(6332, 675, '_elementor_edit_mode', 'builder'),
(6333, 675, '_elementor_template_type', 'wp-page'),
(6334, 675, '_elementor_version', '3.34.2'),
(6335, 675, '_elementor_pro_version', '3.34.2'),
(6336, 675, '_wp_page_template', 'default'),
(6337, 675, '_elementor_data', '[{\"id\":\"3116faf\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d749f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e24a3a2\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h5\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"9d704bc\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h5\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"8fe03fe\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h5\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"ab28497\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h5\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"8e879e0\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"title_tag\":\"h5\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"765b7c7\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\",\"id\":411,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Specialtilpassede l\\u00f8sninger\",\"title_tag\":\"h5\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"9b641f7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"947c814\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a129ac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5fff8c9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"47616c5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}]},\"elements\":[{\"id\":\"d7c6a99\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f5cb5ac\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"732bc0a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Terrasser\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5be015b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Terrasser er et af vores kerneomr\\u00e5der. Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5 korrekt opbygning, stabilitet og finish, da det er afg\\u00f8rende for b\\u00e5de holdbarhed og udseende.<\\/p><p>Vi arbejder gerne med h\\u00e5rdttr\\u00e6sterrasser og foretr\\u00e6kker tr\\u00e6sorter som cumaru, ip\\u00e9 og thermobehandlet tr\\u00e6, da disse materialer har:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d75ad83\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"h\\u00f8j naturlig holdbarhed\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"god modstandsdygtighed over for fugt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"et flot og tidl\\u00f8st udtryk\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5089be2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Med korrekt montage giver disse tr\\u00e6sorter terrasser, der \\u00e6ldes p\\u00e6nt og kr\\u00e6ver minimal vedligeholdelse.<\\/p><p>Vi r\\u00e5dgiver altid om materialevalg, opbygning og vedligeholdelse, s\\u00e5 l\\u00f8sningen passer til b\\u00e5de huset, omgivelserne og kundens behov.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(2390, 273, '_elementor_edit_mode', 'builder'),
(2374, 271, '_elementor_edit_mode', 'builder'),
(2375, 271, '_elementor_template_type', 'wp-page'),
(2376, 271, '_elementor_version', '3.34.0'),
(2377, 271, '_elementor_pro_version', '3.17.1'),
(2378, 271, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2379, 271, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(2372, 270, '_wp_attached_file', '2026/01/CP-NORDIC-ApS-img-2.jpg'),
(2373, 270, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1536;s:6:\"height\";i:2048;s:4:\"file\";s:31:\"2026/01/CP-NORDIC-ApS-img-2.jpg\";s:8:\"filesize\";i:417008;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"CP-NORDIC-ApS-img-2-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18496;}s:5:\"large\";a:5:{s:4:\"file\";s:32:\"CP-NORDIC-ApS-img-2-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:172119;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"CP-NORDIC-ApS-img-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6409;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:32:\"CP-NORDIC-ApS-img-2-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:172119;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:33:\"CP-NORDIC-ApS-img-2-1152x1536.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:361580;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2348, 267, '_elementor_page_settings', 'a:0:{}'),
(4318, 471, '_elementor_template_type', 'wp-page'),
(4319, 471, '_elementor_version', '3.34.2'),
(4320, 471, '_elementor_pro_version', '3.34.2'),
(4321, 471, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4322, 471, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\",\"id\":57,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle ANMELDELSER\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]}},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"HVORFOR V\\u00c6LGE CP NORDIC ApS?\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79206f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>N\\u00e5r du v\\u00e6lger CP NORDIC ApS, f\\u00e5r du:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"44023b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"et ungt og engageret team\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"fokus p\\u00e5 kvalitet og detaljer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"\\u00e6rlig<br> r\\u00e5dgivning\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"gennemt\\u00e6nkte l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c0f2190\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"327bd23\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"arbejde udf\\u00f8rt med ansvar\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2351, 268, '_elementor_edit_mode', 'builder'),
(2352, 268, '_elementor_template_type', 'wp-page'),
(2353, 268, '_elementor_version', '3.34.0'),
(2354, 268, '_elementor_pro_version', '3.17.1'),
(2355, 268, '_wp_page_template', 'default'),
(2356, 268, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"3bd89cb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"379e1c7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d4e1653\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"b27a152\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"edba59c\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(2358, 268, '_elementor_page_settings', 'a:0:{}'),
(2389, 272, '_elementor_page_settings', 'a:0:{}'),
(2391, 273, '_elementor_template_type', 'wp-page'),
(2392, 273, '_elementor_version', '3.34.0'),
(2393, 273, '_elementor_pro_version', '3.17.1'),
(2394, 273, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2395, 273, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(2415, 276, '_elementor_edit_mode', 'builder'),
(2399, 274, '_elementor_edit_mode', 'builder'),
(2400, 274, '_elementor_template_type', 'wp-page'),
(2401, 274, '_elementor_version', '3.34.0'),
(2402, 274, '_elementor_pro_version', '3.17.1'),
(2403, 274, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2404, 274, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(2406, 274, '_elementor_page_settings', 'a:0:{}'),
(2407, 275, '_elementor_edit_mode', 'builder'),
(2408, 275, '_elementor_template_type', 'wp-page'),
(2409, 275, '_elementor_version', '3.34.0'),
(2410, 275, '_elementor_pro_version', '3.17.1'),
(2411, 275, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2412, 275, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(2414, 275, '_elementor_page_settings', 'a:0:{}'),
(2416, 276, '_elementor_template_type', 'wp-page'),
(2417, 276, '_elementor_version', '3.34.0'),
(2418, 276, '_elementor_pro_version', '3.17.1'),
(2419, 276, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2420, 276, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(2451, 281, '_elementor_edit_mode', 'builder'),
(2435, 279, '_elementor_edit_mode', 'builder'),
(2436, 279, '_elementor_template_type', 'wp-page'),
(2437, 279, '_elementor_version', '3.34.0'),
(2438, 279, '_elementor_pro_version', '3.17.1'),
(2439, 279, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2440, 279, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(2464, 282, '_elementor_version', '3.34.0'),
(2465, 282, '_elementor_pro_version', '3.17.1'),
(2466, 282, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2467, 282, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(2452, 281, '_elementor_template_type', 'wp-page'),
(2453, 281, '_elementor_version', '3.34.0'),
(2454, 281, '_elementor_pro_version', '3.17.1'),
(2455, 281, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2456, 281, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(2433, 278, '_wp_attached_file', '2026/01/CP-NORDIC-ApS-img-3.jpg'),
(2434, 278, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1536;s:6:\"height\";i:2048;s:4:\"file\";s:31:\"2026/01/CP-NORDIC-ApS-img-3.jpg\";s:8:\"filesize\";i:384696;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"CP-NORDIC-ApS-img-3-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13392;}s:5:\"large\";a:5:{s:4:\"file\";s:32:\"CP-NORDIC-ApS-img-3-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:131460;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"CP-NORDIC-ApS-img-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5171;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:32:\"CP-NORDIC-ApS-img-3-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:131460;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:33:\"CP-NORDIC-ApS-img-3-1152x1536.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:287194;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2442, 279, '_elementor_page_settings', 'a:0:{}'),
(2443, 280, '_elementor_edit_mode', 'builder'),
(2444, 280, '_elementor_template_type', 'wp-page'),
(2445, 280, '_elementor_version', '3.34.0'),
(2446, 280, '_elementor_pro_version', '3.17.1'),
(2447, 280, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2448, 280, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(2450, 280, '_elementor_page_settings', 'a:0:{}'),
(2462, 282, '_elementor_edit_mode', 'builder'),
(2463, 282, '_elementor_template_type', 'wp-page'),
(2509, 287, '_elementor_edit_mode', 'builder'),
(2493, 285, '_elementor_edit_mode', 'builder'),
(2494, 285, '_elementor_template_type', 'wp-page'),
(2495, 285, '_elementor_version', '3.34.0'),
(2496, 285, '_elementor_pro_version', '3.17.1'),
(2497, 285, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2498, 285, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(2500, 285, '_elementor_page_settings', 'a:0:{}'),
(2501, 286, '_elementor_edit_mode', 'builder'),
(2502, 286, '_elementor_template_type', 'wp-page'),
(2503, 286, '_elementor_version', '3.34.0'),
(2504, 286, '_elementor_pro_version', '3.17.1'),
(2505, 286, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2506, 286, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(2469, 282, '_elementor_page_settings', 'a:0:{}'),
(4314, 470, '_elementor_page_settings', 'a:0:{}'),
(2472, 283, '_elementor_edit_mode', 'builder'),
(2473, 283, '_elementor_template_type', 'wp-page'),
(2474, 283, '_elementor_version', '3.34.0'),
(2475, 283, '_elementor_pro_version', '3.17.1'),
(2476, 283, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2477, 283, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(2479, 283, '_elementor_page_settings', 'a:0:{}'),
(4307, 470, '_elementor_edit_mode', 'builder'),
(4308, 470, '_elementor_template_type', 'wp-page'),
(4309, 470, '_elementor_version', '3.34.2'),
(4310, 470, '_elementor_pro_version', '3.34.2'),
(4311, 470, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4312, 470, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\",\"id\":57,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle ANMELDELSER\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]}},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"HVORFOR V\\u00c6LGE CP NORDIC ApS?\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79206f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>N\\u00e5r du v\\u00e6lger CP NORDIC ApS, f\\u00e5r du:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"44023b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"et ungt og engageret team\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"fokus p\\u00e5 kvalitet og detaljer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"\\u00e6rlig r\\u00e5dgivning\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"gennemt\\u00e6nkte l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c0f2190\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"327bd23\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"arbejde udf\\u00f8rt med ansvar\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2482, 284, '_elementor_edit_mode', 'builder'),
(2483, 284, '_elementor_template_type', 'wp-page'),
(2484, 284, '_elementor_version', '3.34.0'),
(2485, 284, '_elementor_pro_version', '3.17.1'),
(2486, 284, '_wp_page_template', 'default'),
(2487, 284, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3908, 431, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"2-lags tagpapl\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tagpap klar til sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Foliearbejde\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3883, 429, '_elementor_edit_mode', 'builder'),
(3884, 429, '_elementor_template_type', 'wp-page'),
(3885, 429, '_elementor_version', '3.34.2'),
(3886, 429, '_elementor_pro_version', '3.34.2'),
(3887, 429, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3888, 429, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"2-lags tagpapl\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tagpap klar til sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Foliearbejde\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":405,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-3.jpg\"},{\"id\":295,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":270,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2508, 286, '_elementor_page_settings', 'a:0:{}'),
(2510, 287, '_elementor_template_type', 'wp-page'),
(2511, 287, '_elementor_version', '3.34.0'),
(2512, 287, '_elementor_pro_version', '3.17.1'),
(2513, 287, '_wp_page_template', 'default'),
(2514, 287, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(2518, 288, '_elementor_edit_mode', 'builder'),
(2519, 288, '_elementor_template_type', 'wp-page'),
(2520, 288, '_elementor_version', '3.34.0'),
(2521, 288, '_elementor_pro_version', '3.17.1'),
(2522, 288, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2523, 288, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(2525, 288, '_elementor_page_settings', 'a:0:{}'),
(2526, 289, '_elementor_edit_mode', 'builder'),
(2527, 289, '_elementor_template_type', 'wp-page'),
(2528, 289, '_elementor_version', '3.34.0'),
(2529, 289, '_elementor_pro_version', '3.17.1'),
(2530, 289, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2531, 289, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(2533, 289, '_elementor_page_settings', 'a:0:{}'),
(2534, 290, '_elementor_edit_mode', 'builder'),
(2535, 290, '_elementor_template_type', 'wp-page'),
(2536, 290, '_elementor_version', '3.34.0'),
(2537, 290, '_elementor_pro_version', '3.17.1'),
(2538, 290, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2539, 290, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(2559, 293, '_elementor_edit_mode', 'builder'),
(2543, 291, '_elementor_edit_mode', 'builder'),
(2544, 291, '_elementor_template_type', 'wp-page'),
(2545, 291, '_elementor_version', '3.34.0'),
(2546, 291, '_elementor_pro_version', '3.17.1'),
(2547, 291, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2548, 291, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(2550, 291, '_elementor_page_settings', 'a:0:{}'),
(2551, 292, '_elementor_edit_mode', 'builder'),
(2552, 292, '_elementor_template_type', 'wp-page'),
(2553, 292, '_elementor_version', '3.34.0'),
(2554, 292, '_elementor_pro_version', '3.17.1'),
(2555, 292, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2556, 292, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(2558, 292, '_elementor_page_settings', 'a:0:{}'),
(2560, 293, '_elementor_template_type', 'wp-page'),
(2561, 293, '_elementor_version', '3.34.0'),
(2562, 293, '_elementor_pro_version', '3.17.1'),
(2563, 293, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2564, 293, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(2601, 298, '_elementor_edit_mode', 'builder'),
(2583, 296, '_elementor_edit_mode', 'builder'),
(2584, 296, '_elementor_template_type', 'wp-page'),
(2585, 296, '_elementor_version', '3.34.0'),
(2586, 296, '_elementor_pro_version', '3.17.1'),
(2587, 296, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2588, 296, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(2613, 299, '_elementor_edit_mode', 'builder'),
(2614, 299, '_elementor_template_type', 'wp-page'),
(2615, 299, '_elementor_version', '3.34.0'),
(2616, 299, '_elementor_pro_version', '3.17.1'),
(2617, 299, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2618, 299, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(2816, 317, '_elementor_page_settings', 'a:0:{}'),
(2817, 318, '_elementor_edit_mode', 'builder'),
(2818, 318, '_elementor_template_type', 'wp-page'),
(2819, 318, '_elementor_version', '3.34.0'),
(2820, 318, '_elementor_pro_version', '3.17.1'),
(2821, 318, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2822, 318, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2606, 298, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(2602, 298, '_elementor_template_type', 'wp-page'),
(2603, 298, '_elementor_version', '3.34.0'),
(2604, 298, '_elementor_pro_version', '3.17.1'),
(2605, 298, '_wp_page_template', 'default'),
(2581, 295, '_wp_attached_file', '2026/01/CP-NORDIC-ApS-img-4.jpg'),
(2582, 295, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1536;s:6:\"height\";i:2048;s:4:\"file\";s:31:\"2026/01/CP-NORDIC-ApS-img-4.jpg\";s:8:\"filesize\";i:423173;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"CP-NORDIC-ApS-img-4-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18895;}s:5:\"large\";a:5:{s:4:\"file\";s:32:\"CP-NORDIC-ApS-img-4-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:170213;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"CP-NORDIC-ApS-img-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7274;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:32:\"CP-NORDIC-ApS-img-4-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:170213;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:33:\"CP-NORDIC-ApS-img-4-1152x1536.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:359745;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2590, 296, '_elementor_page_settings', 'a:0:{}'),
(2592, 297, '_elementor_edit_mode', 'builder'),
(2593, 297, '_elementor_template_type', 'wp-page'),
(2594, 297, '_elementor_version', '3.34.0'),
(2595, 297, '_elementor_pro_version', '3.17.1'),
(2596, 297, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2597, 297, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(2599, 297, '_elementor_page_settings', 'a:0:{}'),
(4304, 469, '_elementor_page_settings', 'a:0:{}'),
(4386, 484, '_elementor_edit_mode', 'builder'),
(4368, 482, '_elementor_edit_mode', 'builder'),
(4369, 482, '_elementor_template_type', 'wp-page'),
(4370, 482, '_elementor_version', '3.34.2'),
(4371, 482, '_elementor_pro_version', '3.34.2'),
(4372, 482, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4373, 482, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\",\"id\":57,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle ANMELDELSER\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]}},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"HVORFOR V\\u00c6LGE CP NORDIC ApS?\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79206f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>N\\u00e5r du v\\u00e6lger CP NORDIC ApS, f\\u00e5r du:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"44023b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"et ungt og engageret team\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"fokus p\\u00e5 kvalitet og detaljer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"\\u00e6rlig<br> r\\u00e5dgivning\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"gennemt\\u00e6nkte l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c0f2190\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"327bd23\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"arbejde udf\\u00f8rt med ansvar\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2699, 307, '_elementor_edit_mode', 'builder'),
(2646, 302, '_elementor_edit_mode', 'builder'),
(2647, 302, '_elementor_template_type', 'wp-page'),
(2648, 302, '_elementor_version', '3.34.0'),
(2649, 302, '_elementor_pro_version', '3.17.1'),
(2650, 302, '_wp_page_template', 'default'),
(2651, 302, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(2620, 299, '_elementor_page_settings', 'a:0:{}'),
(4403, 485, '_elementor_page_settings', 'a:0:{}'),
(4404, 486, '_elementor_edit_mode', 'builder'),
(4405, 486, '_elementor_template_type', 'wp-page'),
(4406, 486, '_elementor_version', '3.34.2'),
(4407, 486, '_elementor_pro_version', '3.34.2'),
(4408, 486, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4409, 486, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\",\"id\":57,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle ANMELDELSER\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]}},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"HVORFOR V\\u00c6LGE CP NORDIC ApS?\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79206f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>N\\u00e5r du v\\u00e6lger CP NORDIC ApS, f\\u00e5r du:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"44023b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/teamwork_4546121.svg\",\"id\":472},\"library\":\"svg\"},\"title_text\":\"et ungt og engageret team\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/effective_1401921.svg\",\"id\":474},\"library\":\"svg\"},\"title_text\":\"fokus p\\u00e5 kvalitet og detaljer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/communication_18765280.svg\",\"id\":479},\"library\":\"svg\"},\"title_text\":\"\\u00e6rlig<br> r\\u00e5dgivning\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/brainstorming_11663441.svg\",\"id\":480},\"library\":\"svg\"},\"title_text\":\"gennemt\\u00e6nkte l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c0f2190\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"327bd23\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/like_3941426.svg\",\"id\":481},\"library\":\"svg\"},\"title_text\":\"arbejde udf\\u00f8rt med ansvar\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2623, 300, '_elementor_edit_mode', 'builder'),
(2624, 300, '_elementor_template_type', 'wp-page'),
(2625, 300, '_elementor_version', '3.34.0'),
(2626, 300, '_elementor_pro_version', '3.17.1'),
(2627, 300, '_wp_page_template', 'default'),
(2628, 300, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(2630, 300, '_elementor_page_settings', 'a:0:{}'),
(4317, 471, '_elementor_edit_mode', 'builder'),
(4297, 469, '_elementor_edit_mode', 'builder'),
(4298, 469, '_elementor_template_type', 'wp-page'),
(4299, 469, '_elementor_version', '3.34.2'),
(4300, 469, '_elementor_pro_version', '3.34.2'),
(4301, 469, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4302, 469, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\",\"id\":57,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle ANMELDELSER\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]}},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"HVORFOR V\\u00c6LGE CP NORDIC ApS?\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79206f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>N\\u00e5r du v\\u00e6lger CP NORDIC ApS, f\\u00e5r du:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"44023b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"et ungt og engageret team\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"fokus p\\u00e5 kvalitet og detaljer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"\\u00e6rlig r\\u00e5dgivning\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"gennemt\\u00e6nkte l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c0f2190\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"327bd23\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"arbejde udf\\u00f8rt med ansvar\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2633, 301, '_elementor_edit_mode', 'builder'),
(2634, 301, '_elementor_template_type', 'wp-page'),
(2635, 301, '_elementor_version', '3.34.0'),
(2636, 301, '_elementor_pro_version', '3.17.1'),
(2637, 301, '_wp_page_template', 'default'),
(2638, 301, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(5573, 599, '_elementor_version', '3.34.2'),
(5574, 599, '_elementor_pro_version', '3.34.2'),
(5575, 599, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5576, 599, '_elementor_data', '[{\"id\":\"580962f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC5C\",\"flex_direction_tablet\":\"column-reverse\",\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F5F3F2\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"\"}},\"elements\":[{\"id\":\"0a64fdb\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"90a885a\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"007564a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p><p>\\u00a0<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"617780c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b57ce82\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}]},\"elements\":[{\"id\":\"e3724c6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b79d6d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8a1d74a\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"944b744\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f99f95c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e408251\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"b3e8d95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(3857, 426, '_elementor_page_settings', 'a:0:{}'),
(2700, 307, '_elementor_template_type', 'wp-page'),
(2679, 305, '_elementor_edit_mode', 'builder'),
(2680, 305, '_elementor_template_type', 'wp-page'),
(2681, 305, '_elementor_version', '3.34.0'),
(2682, 305, '_elementor_pro_version', '3.17.1'),
(2683, 305, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2684, 305, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(2745, 311, '_elementor_edit_mode', 'builder'),
(2653, 302, '_elementor_page_settings', 'a:0:{}'),
(4285, 467, '_elementor_page_settings', 'a:0:{}'),
(4286, 468, '_elementor_edit_mode', 'builder'),
(4287, 468, '_elementor_template_type', 'wp-page'),
(4288, 468, '_elementor_version', '3.34.2'),
(4289, 468, '_elementor_pro_version', '3.34.2'),
(4290, 468, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4291, 468, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\",\"id\":57,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle ANMELDELSER\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]}},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"HVORFOR V\\u00c6LGE CP NORDIC ApS?\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79206f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>N\\u00e5r du v\\u00e6lger CP NORDIC ApS, f\\u00e5r du:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"44023b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"et ungt og engageret team\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"fokus p\\u00e5 kvalitet og detaljer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"\\u00e6rlig r\\u00e5dgivning\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"gennemt\\u00e6nkte l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c0f2190\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"327bd23\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"arbejde udf\\u00f8rt med ansvar\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2656, 303, '_elementor_edit_mode', 'builder'),
(2657, 303, '_elementor_template_type', 'wp-page'),
(2658, 303, '_elementor_version', '3.34.0'),
(2659, 303, '_elementor_pro_version', '3.17.1'),
(2660, 303, '_wp_page_template', 'default'),
(2661, 303, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(2663, 303, '_elementor_page_settings', 'a:0:{}'),
(2666, 304, '_elementor_edit_mode', 'builder'),
(2667, 304, '_elementor_template_type', 'wp-page'),
(2668, 304, '_elementor_version', '3.34.0'),
(2669, 304, '_elementor_pro_version', '3.17.1'),
(2670, 304, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2671, 304, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(3860, 427, '_elementor_edit_mode', 'builder'),
(3861, 427, '_elementor_template_type', 'wp-page'),
(3862, 427, '_elementor_version', '3.34.2'),
(3863, 427, '_elementor_pro_version', '3.34.2'),
(3864, 427, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3865, 427, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"2-lags tagpapl\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tagpap klar til sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Foliearbejde\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":405,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-3.jpg\"},{\"id\":295,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":270,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2712, 308, '_elementor_edit_mode', 'builder'),
(2713, 308, '_elementor_template_type', 'wp-page'),
(2714, 308, '_elementor_version', '3.34.0'),
(2715, 308, '_elementor_pro_version', '3.17.1'),
(2716, 308, '_wp_page_template', 'default'),
(2717, 308, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(2686, 305, '_elementor_page_settings', 'a:0:{}'),
(2689, 306, '_elementor_edit_mode', 'builder'),
(2690, 306, '_elementor_template_type', 'wp-page'),
(2691, 306, '_elementor_version', '3.34.0'),
(2692, 306, '_elementor_pro_version', '3.17.1'),
(2693, 306, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2694, 306, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(2696, 306, '_elementor_page_settings', 'a:0:{}'),
(4260, 465, '_elementor_template_type', 'wp-page'),
(4261, 465, '_elementor_version', '3.34.2'),
(4262, 465, '_elementor_pro_version', '3.34.2'),
(4263, 465, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4264, 465, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\",\"id\":57,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle ANMELDELSER\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"HVORFOR V\\u00c6LGE CP NORDIC ApS?\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79206f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>N\\u00e5r du v\\u00e6lger CP NORDIC ApS, f\\u00e5r du:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"44023b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"et ungt og engageret team\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"fokus p\\u00e5 kvalitet og detaljer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"\\u00e6rlig r\\u00e5dgivning\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"gennemt\\u00e6nkte l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c0f2190\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"327bd23\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"arbejde udf\\u00f8rt med ansvar\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2701, 307, '_elementor_version', '3.34.0'),
(2702, 307, '_elementor_pro_version', '3.17.1'),
(2703, 307, '_wp_page_template', 'default'),
(2704, 307, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(3867, 427, '_elementor_page_settings', 'a:0:{}'),
(2765, 313, '_elementor_edit_mode', 'builder'),
(2746, 311, '_elementor_template_type', 'wp-page'),
(2747, 311, '_elementor_version', '3.34.0'),
(2748, 311, '_elementor_pro_version', '3.17.1'),
(2749, 311, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2750, 311, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(2719, 308, '_elementor_page_settings', 'a:0:{}'),
(4256, 464, '_elementor_page_settings', 'a:0:{}'),
(2722, 309, '_elementor_edit_mode', 'builder'),
(2723, 309, '_elementor_template_type', 'wp-page'),
(2724, 309, '_elementor_version', '3.34.0'),
(2725, 309, '_elementor_pro_version', '3.17.1'),
(2726, 309, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2727, 309, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(2729, 309, '_elementor_page_settings', 'a:0:{}'),
(4249, 464, '_elementor_edit_mode', 'builder'),
(4250, 464, '_elementor_template_type', 'wp-page'),
(4251, 464, '_elementor_version', '3.34.2'),
(4252, 464, '_elementor_pro_version', '3.34.2'),
(4253, 464, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4254, 464, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\",\"id\":57,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle ANMELDELSER\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"HVORFOR V\\u00c6LGE CP NORDIC ApS?\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79206f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>N\\u00e5r du v\\u00e6lger CP NORDIC ApS, f\\u00e5r du:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"44023b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"et ungt og engageret team\",\"description_text\":\"\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"fokus p\\u00e5 kvalitet og detaljer\",\"description_text\":\"\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"\\u00e6rlig r\\u00e5dgivning\",\"description_text\":\"\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"gennemt\\u00e6nkte l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c0f2190\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"327bd23\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"arbejde udf\\u00f8rt med ansvar\",\"description_text\":\"\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2732, 310, '_elementor_edit_mode', 'builder'),
(2733, 310, '_elementor_template_type', 'wp-page'),
(2734, 310, '_elementor_version', '3.34.0'),
(2735, 310, '_elementor_pro_version', '3.17.1'),
(2736, 310, '_wp_page_template', 'default'),
(2737, 310, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(2798, 316, '_elementor_edit_mode', 'builder'),
(2778, 314, '_elementor_edit_mode', 'builder'),
(2779, 314, '_elementor_template_type', 'wp-page'),
(2780, 314, '_elementor_version', '3.34.0'),
(2781, 314, '_elementor_pro_version', '3.17.1'),
(2782, 314, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2783, 314, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(2752, 311, '_elementor_page_settings', 'a:0:{}'),
(2755, 312, '_elementor_edit_mode', 'builder'),
(2756, 312, '_elementor_template_type', 'wp-page'),
(2757, 312, '_elementor_version', '3.34.0'),
(2758, 312, '_elementor_pro_version', '3.17.1'),
(2759, 312, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2760, 312, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(2762, 312, '_elementor_page_settings', 'a:0:{}'),
(4246, 463, '_elementor_page_settings', 'a:0:{}'),
(2766, 313, '_elementor_template_type', 'wp-page'),
(2767, 313, '_elementor_version', '3.34.0'),
(2768, 313, '_elementor_pro_version', '3.17.1'),
(2769, 313, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2770, 313, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(3871, 428, '_elementor_template_type', 'wp-page'),
(3872, 428, '_elementor_version', '3.34.2'),
(3873, 428, '_elementor_pro_version', '3.34.2'),
(3874, 428, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3875, 428, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"2-lags tagpapl\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tagpap klar til sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Foliearbejde\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":405,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-3.jpg\"},{\"id\":295,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":270,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2809, 317, '_elementor_edit_mode', 'builder'),
(2810, 317, '_elementor_template_type', 'wp-page'),
(2811, 317, '_elementor_version', '3.34.0'),
(2812, 317, '_elementor_pro_version', '3.17.1'),
(2813, 317, '_wp_page_template', 'default'),
(2814, 317, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(2785, 314, '_elementor_page_settings', 'a:0:{}'),
(4270, 466, '_elementor_edit_mode', 'builder'),
(4271, 466, '_elementor_template_type', 'wp-page'),
(4272, 466, '_elementor_version', '3.34.2'),
(4273, 466, '_elementor_pro_version', '3.34.2'),
(4274, 466, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4275, 466, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\",\"id\":57,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle ANMELDELSER\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"HVORFOR V\\u00c6LGE CP NORDIC ApS?\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79206f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>N\\u00e5r du v\\u00e6lger CP NORDIC ApS, f\\u00e5r du:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"44023b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"et ungt og engageret team\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"fokus p\\u00e5 kvalitet og detaljer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"\\u00e6rlig r\\u00e5dgivning\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"gennemt\\u00e6nkte l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c0f2190\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"327bd23\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"arbejde udf\\u00f8rt med ansvar\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2788, 315, '_elementor_edit_mode', 'builder'),
(2789, 315, '_elementor_template_type', 'wp-page'),
(2790, 315, '_elementor_version', '3.34.0'),
(2791, 315, '_elementor_pro_version', '3.17.1'),
(2792, 315, '_wp_page_template', 'default'),
(2793, 315, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(2795, 315, '_elementor_page_settings', 'a:0:{}'),
(2799, 316, '_elementor_template_type', 'wp-page'),
(2800, 316, '_elementor_version', '3.34.0'),
(2801, 316, '_elementor_pro_version', '3.17.1'),
(2802, 316, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2803, 316, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(7204, 754, '_elementor_edit_mode', 'builder'),
(7205, 754, '_elementor_template_type', 'wp-page'),
(7206, 754, '_elementor_version', '3.34.2'),
(7207, 754, '_elementor_pro_version', '3.34.2'),
(7208, 754, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7209, 754, '_elementor_data', '[{\"id\":\"580962f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC5C\",\"flex_direction_tablet\":\"column-reverse\",\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F5F3F2\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"\"}},\"elements\":[{\"id\":\"0a64fdb\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"90a885a\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"007564a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p><p>\\u00a0<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"617780c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b57ce82\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}]},\"elements\":[{\"id\":\"e3724c6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b79d6d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8a1d74a\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"944b744\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f99f95c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e408251\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"b3e8d95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(7037, 740, '_elementor_edit_mode', 'builder'),
(7038, 740, '_elementor_template_type', 'wp-page'),
(7039, 740, '_elementor_version', '3.34.2'),
(7040, 740, '_elementor_pro_version', '3.34.2'),
(7041, 740, '_elementor_data', '[{\"id\":\"da47fa9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"73e548d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}]},\"elements\":[{\"id\":\"0630135\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"0b858af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"9cd53aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba1f56d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e0acf42\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1ebba86\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9f06d27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"af8a159\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"background_color\":\"#F2EEEC6E\",\"flex_direction_tablet\":\"column-reverse\",\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"ae9dcfe\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f8070ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPECIALL\\u00d8SNINGER\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fa656d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi har en s\\u00e6rlig interesse for opgaver, der kr\\u00e6ver noget ekstra. N\\u00e5r standardl\\u00f8sninger ikke passer, finder vi l\\u00f8sninger, der g\\u00f8r.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7fce677\",\"elType\":\"widget\",\"settings\":{\"title\":\"Det kan v\\u00e6re:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c0ffdf0\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"teknisk kr\\u00e6vende detaljer\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"specialtilpassede konstruktioner\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"samspil mellem flere materialer\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"l\\u00f8sninger, der kr\\u00e6ver ekstra omtanke\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"07daf97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Her kommer vores faglighed og erfaring virkelig i spil.\",\"pp_display_conditions\":[{\"_id\":\"525a929\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"34e27a1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"background_color\":\"#F2EEEC6E\",\"flex_direction_tablet\":\"column-reverse\",\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"fb7865a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0076979\",\"elType\":\"widget\",\"settings\":{\"title\":\"KVALITET FREM FOR KVANTITET\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9f9cbcc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tager bevidst et begr\\u00e6nset antal opgaver ad gangen. Det giver os mulighed for at:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b0e7d9d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"bevare overblik\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"sikre h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"v\\u00e6re tilg\\u00e6ngelige for kunden\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"f\\u00f8lge op p\\u00e5 detaljerne\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f53b930\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Vi tror p\\u00e5, at godt h\\u00e5ndv\\u00e6rk kr\\u00e6ver tid og fokus.\",\"pp_display_conditions\":[{\"_id\":\"525a929\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(5588, 600, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(6033, 30, '_elementor_page_settings', 'a:0:{}'),
(6034, 30, '_elementor_controls_usage', 'a:5:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:4:{s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}s:7:\"content\";a:1:{s:13:\"section_image\";a:4:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:5:\"align\";i:1;s:5:\"space\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:7:{s:14:\"flex_direction\";i:4;s:13:\"content_width\";i:2;s:5:\"width\";i:2;s:20:\"flex_justify_content\";i:2;s:16:\"flex_align_items\";i:1;s:8:\"flex_gap\";i:1;s:10:\"min_height\";i:1;}}s:5:\"style\";a:4:{s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:4;}s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}s:18:\"section_background\";a:5:{s:21:\"background_background\";i:1;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:5:{s:29:\"background_overlay_background\";i:1;s:26:\"background_overlay_opacity\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_color_b\";i:1;s:33:\"background_overlay_gradient_angle\";i:1;}}s:8:\"advanced\";a:2:{s:35:\"section_powerpack_elements_advanced\";a:2:{s:21:\"pp_display_conditions\";i:4;s:28:\"pp_display_conditions_enable\";i:1;}s:14:\"section_layout\";a:5:{s:7:\"padding\";i:3;s:7:\"z_index\";i:1;s:6:\"margin\";i:1;s:11:\"css_classes\";i:1;s:20:\"e_display_conditions\";i:1;}}}}s:16:\"pp-advanced-menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_layout\";a:4:{s:11:\"align_items\";i:1;s:7:\"pointer\";i:1;s:9:\"menu_type\";i:1;s:12:\"toggle_align\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}s:5:\"style\";a:5:{s:12:\"style_toggle\";a:4:{s:23:\"toggle_background_color\";i:1;s:29:\"toggle_background_color_hover\";i:1;s:12:\"toggle_color\";i:1;s:18:\"toggle_color_hover\";i:1;}s:16:\"style_responsive\";a:13:{s:18:\"offcanvas_position\";i:1;s:27:\"close_icon_background_color\";i:1;s:33:\"close_icon_background_color_hover\";i:1;s:16:\"overlay_bg_color\";i:1;s:17:\"mobile_link_color\";i:1;s:24:\"mobile_sub_link_bg_color\";i:1;s:21:\"mobile_sub_link_color\";i:1;s:17:\"mobile_link_hover\";i:1;s:20:\"mobile_link_bg_hover\";i:1;s:24:\"mobile_sub_link_bg_hover\";i:1;s:21:\"mobile_sub_link_hover\";i:1;s:16:\"close_icon_color\";i:1;s:22:\"close_icon_color_hover\";i:1;}s:16:\"style_typography\";a:8:{s:26:\"menu_typography_typography\";i:1;s:25:\"menu_typography_font_size\";i:1;s:27:\"menu_typography_font_weight\";i:1;s:30:\"dropdown_typography_typography\";i:1;s:31:\"dropdown_typography_font_weight\";i:1;s:30:\"menu_typography_text_transform\";i:1;s:30:\"menu_typography_letter_spacing\";i:1;s:29:\"dropdown_typography_font_size\";i:1;}s:23:\"section_style_main_menu\";a:3:{s:28:\"padding_horizontal_menu_item\";i:1;s:21:\"color_menu_item_hover\";i:1;s:22:\"color_menu_item_active\";i:1;}s:22:\"section_style_dropdown\";a:9:{s:19:\"color_dropdown_item\";i:1;s:30:\"background_color_dropdown_item\";i:1;s:25:\"color_dropdown_item_hover\";i:1;s:36:\"background_color_dropdown_item_hover\";i:1;s:26:\"color_dropdown_item_active\";i:1;s:37:\"background_color_dropdown_item_active\";i:1;s:23:\"dropdown_divider_border\";i:1;s:22:\"dropdown_divider_color\";i:1;s:22:\"dropdown_divider_width\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:2:{s:4:\"text\";i:1;s:4:\"link\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:12:\"text_padding\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:16:\"theme-page-title\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:4:{s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}}'),
(2824, 318, '_elementor_page_settings', 'a:0:{}'),
(2825, 319, '_elementor_edit_mode', 'builder'),
(2826, 319, '_elementor_template_type', 'wp-page'),
(2827, 319, '_elementor_version', '3.34.0'),
(2828, 319, '_elementor_pro_version', '3.17.1'),
(2829, 319, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2830, 319, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"600\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(2834, 320, '_elementor_edit_mode', 'builder'),
(2835, 320, '_elementor_template_type', 'wp-page'),
(2836, 320, '_elementor_version', '3.34.0'),
(2837, 320, '_elementor_pro_version', '3.17.1'),
(2838, 320, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2839, 320, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"600\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(2841, 320, '_elementor_page_settings', 'a:0:{}'),
(2842, 321, '_elementor_edit_mode', 'builder'),
(2843, 321, '_elementor_template_type', 'wp-page'),
(2844, 321, '_elementor_version', '3.34.0'),
(2845, 321, '_elementor_pro_version', '3.17.1'),
(2846, 321, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2847, 321, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"600\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(2849, 321, '_elementor_page_settings', 'a:0:{}'),
(2969, 334, '_elementor_pro_version', '3.17.1'),
(2850, 322, '_elementor_edit_mode', 'builder'),
(2851, 322, '_elementor_template_type', 'wp-page'),
(2852, 322, '_elementor_version', '3.34.0'),
(2853, 322, '_elementor_pro_version', '3.17.1'),
(2854, 322, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2855, 322, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(2968, 334, '_elementor_version', '3.34.0'),
(2861, 323, '_elementor_edit_mode', 'builder'),
(2862, 323, '_elementor_template_type', 'wp-page'),
(2863, 323, '_elementor_version', '3.34.0'),
(2864, 323, '_elementor_pro_version', '3.17.1'),
(2865, 323, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2866, 323, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(2908, 328, '_elementor_edit_mode', 'builder'),
(2892, 326, '_elementor_edit_mode', 'builder'),
(2893, 326, '_elementor_template_type', 'wp-page'),
(2894, 326, '_elementor_version', '3.34.0'),
(2895, 326, '_elementor_pro_version', '3.17.1'),
(2896, 326, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2897, 326, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(2899, 326, '_elementor_page_settings', 'a:0:{}'),
(2900, 327, '_elementor_edit_mode', 'builder'),
(2901, 327, '_elementor_template_type', 'wp-page'),
(2902, 327, '_elementor_version', '3.34.0'),
(2903, 327, '_elementor_pro_version', '3.17.1'),
(2904, 327, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2905, 327, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(2868, 323, '_elementor_page_settings', 'a:0:{}'),
(2871, 324, '_elementor_edit_mode', 'builder'),
(2872, 324, '_elementor_template_type', 'wp-page'),
(2873, 324, '_elementor_version', '3.34.0'),
(2874, 324, '_elementor_pro_version', '3.17.1'),
(2875, 324, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2876, 324, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(2878, 324, '_elementor_page_settings', 'a:0:{}'),
(2966, 334, '_elementor_edit_mode', 'builder'),
(2967, 334, '_elementor_template_type', 'wp-page'),
(2881, 325, '_elementor_edit_mode', 'builder'),
(2882, 325, '_elementor_template_type', 'wp-page'),
(2883, 325, '_elementor_version', '3.34.0'),
(2884, 325, '_elementor_pro_version', '3.17.1'),
(2885, 325, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2886, 325, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(2907, 327, '_elementor_page_settings', 'a:0:{}'),
(2909, 328, '_elementor_template_type', 'wp-page'),
(2910, 328, '_elementor_version', '3.34.0'),
(2911, 328, '_elementor_pro_version', '3.17.1'),
(2912, 328, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2913, 328, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(2939, 331, '_elementor_edit_mode', 'builder'),
(2919, 329, '_elementor_edit_mode', 'builder'),
(2920, 329, '_elementor_template_type', 'wp-page'),
(2921, 329, '_elementor_version', '3.34.0'),
(2922, 329, '_elementor_pro_version', '3.17.1'),
(2923, 329, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2924, 329, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(2970, 334, '_wp_page_template', 'default'),
(2950, 332, '_elementor_edit_mode', 'builder'),
(2951, 332, '_elementor_template_type', 'wp-page'),
(2952, 332, '_elementor_version', '3.34.0'),
(2953, 332, '_elementor_pro_version', '3.17.1'),
(2954, 332, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2955, 332, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(3890, 429, '_elementor_page_settings', 'a:0:{}'),
(2957, 332, '_elementor_page_settings', 'a:0:{}'),
(2958, 333, '_elementor_edit_mode', 'builder'),
(2959, 333, '_elementor_template_type', 'wp-page'),
(2960, 333, '_elementor_version', '3.34.0'),
(2961, 333, '_elementor_pro_version', '3.17.1'),
(2962, 333, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2963, 333, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(2926, 329, '_elementor_page_settings', 'a:0:{}'),
(4225, 461, '_elementor_page_settings', 'a:0:{}'),
(2929, 330, '_elementor_edit_mode', 'builder'),
(2930, 330, '_elementor_template_type', 'wp-page'),
(2931, 330, '_elementor_version', '3.34.0'),
(2932, 330, '_elementor_pro_version', '3.17.1'),
(2933, 330, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2934, 330, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(2936, 330, '_elementor_page_settings', 'a:0:{}'),
(4218, 461, '_elementor_edit_mode', 'builder'),
(4219, 461, '_elementor_template_type', 'wp-page'),
(4220, 461, '_elementor_version', '3.34.2'),
(4221, 461, '_elementor_pro_version', '3.34.2'),
(4222, 461, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4223, 461, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\",\"id\":57,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"2-lags tagpapl\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tagpap klar til sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Foliearbejde\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle ANMELDELSER\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2940, 331, '_elementor_template_type', 'wp-page'),
(2941, 331, '_elementor_version', '3.34.0'),
(2942, 331, '_elementor_pro_version', '3.17.1'),
(2943, 331, '_wp_page_template', 'default'),
(2944, 331, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(3916, 432, '_elementor_edit_mode', 'builder'),
(3917, 432, '_elementor_template_type', 'wp-page'),
(3918, 432, '_elementor_version', '3.34.2'),
(3919, 432, '_elementor_pro_version', '3.34.2'),
(3920, 432, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3921, 432, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"2-lags tagpapl\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tagpap klar til sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Foliearbejde\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2965, 333, '_elementor_page_settings', 'a:0:{}'),
(2971, 334, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(2977, 335, '_elementor_edit_mode', 'builder'),
(2978, 335, '_elementor_template_type', 'wp-page'),
(2979, 335, '_elementor_version', '3.34.0'),
(2980, 335, '_elementor_pro_version', '3.17.1'),
(2981, 335, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2982, 335, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(3025, 340, '_elementor_template_type', 'wp-page'),
(3008, 338, '_elementor_edit_mode', 'builder'),
(3009, 338, '_elementor_template_type', 'wp-page'),
(3010, 338, '_elementor_version', '3.34.0'),
(3011, 338, '_elementor_pro_version', '3.17.1'),
(3012, 338, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3013, 338, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"9615e16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3015, 338, '_elementor_page_settings', 'a:0:{}'),
(3016, 339, '_elementor_edit_mode', 'builder'),
(3017, 339, '_elementor_template_type', 'wp-page'),
(3018, 339, '_elementor_version', '3.34.0'),
(3019, 339, '_elementor_pro_version', '3.17.1'),
(3020, 339, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3021, 339, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"9615e16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2984, 335, '_elementor_page_settings', 'a:0:{}'),
(4216, 460, '_elementor_page_settings', 'a:0:{}'),
(2987, 336, '_elementor_edit_mode', 'builder'),
(2988, 336, '_elementor_template_type', 'wp-page'),
(2989, 336, '_elementor_version', '3.34.0'),
(2990, 336, '_elementor_pro_version', '3.17.1'),
(2991, 336, '_wp_page_template', 'default'),
(2992, 336, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(2994, 336, '_elementor_page_settings', 'a:0:{}'),
(4227, 462, '_elementor_edit_mode', 'builder'),
(4228, 462, '_elementor_template_type', 'wp-page'),
(4229, 462, '_elementor_version', '3.34.2'),
(4230, 462, '_elementor_pro_version', '3.34.2'),
(4231, 462, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4232, 462, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\",\"id\":57,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle ANMELDELSER\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"HVORFOR V\\u00c6LGE CP NORDIC ApS?\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79206f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>N\\u00e5r du v\\u00e6lger CP NORDIC ApS, f\\u00e5r du:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"44023b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"et ungt og engageret team\",\"description_text\":\"\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"fokus p\\u00e5 kvalitet og detaljer\",\"description_text\":\"\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"\\u00e6rlig r\\u00e5dgivning\",\"description_text\":\"\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"gennemt\\u00e6nkte l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c0f2190\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"327bd23\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"arbejde udf\\u00f8rt med ansvar\",\"description_text\":\"\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3024, 340, '_elementor_edit_mode', 'builder'),
(2997, 337, '_elementor_edit_mode', 'builder'),
(2998, 337, '_elementor_template_type', 'wp-page'),
(2999, 337, '_elementor_version', '3.34.0'),
(3000, 337, '_elementor_pro_version', '3.17.1'),
(3001, 337, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3002, 337, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"9615e16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3023, 339, '_elementor_page_settings', 'a:0:{}'),
(3026, 340, '_elementor_version', '3.34.0'),
(3027, 340, '_elementor_pro_version', '3.17.1'),
(3028, 340, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3029, 340, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"9615e16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3035, 341, '_elementor_edit_mode', 'builder'),
(3036, 341, '_elementor_template_type', 'wp-page'),
(3037, 341, '_elementor_version', '3.34.0'),
(3038, 341, '_elementor_pro_version', '3.17.1'),
(3039, 341, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3040, 341, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"9615e16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3066, 344, '_elementor_edit_mode', 'builder'),
(3067, 344, '_elementor_template_type', 'wp-page'),
(3068, 344, '_elementor_version', '3.34.0'),
(3069, 344, '_elementor_pro_version', '3.17.1'),
(3070, 344, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3071, 344, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"9615e16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3073, 344, '_elementor_page_settings', 'a:0:{}'),
(3074, 345, '_elementor_edit_mode', 'builder'),
(3075, 345, '_elementor_template_type', 'wp-page'),
(3076, 345, '_elementor_version', '3.34.0'),
(3077, 345, '_elementor_pro_version', '3.17.1'),
(3078, 345, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3079, 345, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"9615e16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3042, 341, '_elementor_page_settings', 'a:0:{}'),
(4259, 465, '_elementor_edit_mode', 'builder'),
(4241, 463, '_elementor_version', '3.34.2'),
(4242, 463, '_elementor_pro_version', '3.34.2'),
(4243, 463, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4244, 463, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\",\"id\":57,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle ANMELDELSER\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"HVORFOR V\\u00c6LGE CP NORDIC ApS?\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79206f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>N\\u00e5r du v\\u00e6lger CP NORDIC ApS, f\\u00e5r du:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"44023b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"et ungt og engageret team\",\"description_text\":\"\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"fokus p\\u00e5 kvalitet og detaljer\",\"description_text\":\"\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"\\u00e6rlig r\\u00e5dgivning\",\"description_text\":\"\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"gennemt\\u00e6nkte l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c0f2190\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"327bd23\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"arbejde udf\\u00f8rt med ansvar\",\"description_text\":\"\",\"title_size\":\"h6\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3045, 342, '_elementor_edit_mode', 'builder'),
(3046, 342, '_elementor_template_type', 'wp-page'),
(3047, 342, '_elementor_version', '3.34.0'),
(3048, 342, '_elementor_pro_version', '3.17.1'),
(3049, 342, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3050, 342, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"9615e16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3052, 342, '_elementor_page_settings', 'a:0:{}'),
(3055, 343, '_elementor_edit_mode', 'builder'),
(3056, 343, '_elementor_template_type', 'wp-page'),
(3057, 343, '_elementor_version', '3.34.0'),
(3058, 343, '_elementor_pro_version', '3.17.1'),
(3059, 343, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3060, 343, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"9615e16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3893, 430, '_elementor_edit_mode', 'builder'),
(3894, 430, '_elementor_template_type', 'wp-page'),
(3895, 430, '_elementor_version', '3.34.2'),
(3896, 430, '_elementor_pro_version', '3.34.2'),
(3897, 430, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3898, 430, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"2-lags tagpapl\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tagpap klar til sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Foliearbejde\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":405,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-3.jpg\"},{\"id\":295,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":270,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3081, 345, '_elementor_page_settings', 'a:0:{}'),
(3107, 349, '_elementor_edit_mode', 'builder'),
(3108, 349, '_elementor_template_type', 'wp-page'),
(3082, 346, '_elementor_edit_mode', 'builder'),
(3083, 346, '_elementor_template_type', 'wp-page'),
(3084, 346, '_elementor_version', '3.34.0'),
(3085, 346, '_elementor_pro_version', '3.17.1'),
(3086, 346, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3087, 346, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"9615e16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4d26513\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3091, 347, '_elementor_edit_mode', 'builder'),
(3092, 347, '_elementor_template_type', 'wp-page'),
(3093, 347, '_elementor_version', '3.34.0'),
(3094, 347, '_elementor_pro_version', '3.17.1'),
(3095, 347, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3096, 347, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"9615e16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4d26513\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3098, 347, '_elementor_page_settings', 'a:0:{}'),
(3099, 348, '_elementor_edit_mode', 'builder'),
(3100, 348, '_elementor_template_type', 'wp-page'),
(3101, 348, '_elementor_version', '3.34.0'),
(3102, 348, '_elementor_pro_version', '3.17.1'),
(3103, 348, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3104, 348, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"9615e16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4d26513\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3106, 348, '_elementor_page_settings', 'a:0:{}'),
(3109, 349, '_elementor_version', '3.34.0'),
(3110, 349, '_elementor_pro_version', '3.17.1'),
(3111, 349, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3112, 349, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"9615e16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4d26513\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3116, 350, '_elementor_edit_mode', 'builder'),
(3117, 350, '_elementor_template_type', 'wp-page'),
(3118, 350, '_elementor_version', '3.34.0'),
(3119, 350, '_elementor_pro_version', '3.17.1'),
(3120, 350, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3121, 350, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"9615e16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4d26513\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3123, 350, '_elementor_page_settings', 'a:0:{}'),
(3124, 351, '_elementor_edit_mode', 'builder'),
(3125, 351, '_elementor_template_type', 'wp-page'),
(3126, 351, '_elementor_version', '3.34.0'),
(3127, 351, '_elementor_pro_version', '3.17.1'),
(3128, 351, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3129, 351, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"9615e16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4d26513\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3131, 351, '_elementor_page_settings', 'a:0:{}'),
(3132, 352, '_elementor_edit_mode', 'builder'),
(3133, 352, '_elementor_template_type', 'wp-page'),
(3134, 352, '_elementor_version', '3.34.0'),
(3135, 352, '_elementor_pro_version', '3.17.1'),
(3136, 352, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3137, 352, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"9615e16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4d26513\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3143, 353, '_elementor_edit_mode', 'builder'),
(3144, 353, '_elementor_template_type', 'wp-page'),
(3145, 353, '_elementor_version', '3.34.0'),
(3146, 353, '_elementor_pro_version', '3.17.1'),
(3147, 353, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3148, 353, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"9615e16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4d26513\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3176, 356, '_elementor_edit_mode', 'builder'),
(3177, 356, '_elementor_template_type', 'wp-page'),
(3178, 356, '_elementor_version', '3.34.0'),
(3179, 356, '_elementor_pro_version', '3.17.1'),
(3180, 356, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3181, 356, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"9615e16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"2-lags tagpapl\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tagpap klar til sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Foliearbejde\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3214, 359, '_elementor_page_settings', 'a:0:{}'),
(3215, 360, '_elementor_edit_mode', 'builder'),
(3216, 360, '_elementor_template_type', 'wp-page'),
(3217, 360, '_elementor_version', '3.34.0'),
(3218, 360, '_elementor_pro_version', '3.17.1'),
(3219, 360, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3220, 360, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"9615e16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"2-lags tagpapl\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tagpap klar til sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Foliearbejde\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3150, 353, '_elementor_page_settings', 'a:0:{}'),
(4186, 458, '_elementor_template_type', 'wp-page'),
(4187, 458, '_elementor_version', '3.34.2'),
(4188, 458, '_elementor_pro_version', '3.34.2'),
(4189, 458, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4190, 458, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\",\"id\":57,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"2-lags tagpapl\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tagpap klar til sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Foliearbejde\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle ANMELDELSER\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7088, 744, '_elementor_page_settings', 'a:0:{}'),
(7092, 745, '_elementor_edit_mode', 'builder'),
(7093, 745, '_elementor_template_type', 'wp-page'),
(7094, 745, '_elementor_version', '3.34.2'),
(7095, 745, '_elementor_pro_version', '3.34.2'),
(7096, 745, '_wp_page_template', 'default'),
(7097, 745, '_elementor_data', '[{\"id\":\"1e332a51\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1600399\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3f02c7e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"69bbd48\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9bbb579\",\"pp_condition_date_time_before_value\":\"2024-06-13 12:14\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"id\":\"\",\"url\":\"\"},\"background_position\":\"bottom right\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"\"},\"background_overlay_position\":\"top left\",\"background_overlay_attachment\":\"scroll\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"a4da8ee\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8791aed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe09348\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"935d9bd\"}],\"pp_display_conditions\":[{\"_id\":\"faf5fd2\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}]},\"elements\":[{\"id\":\"49d71336\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kontaktoplysninger\",\"align\":\"left\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"802d5d7\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"750c99c1\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"editor\":\"<p>Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid<br \\/>velkommen til at kontakte os for en uforpligtende snak.<\\/p>\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c93489c\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"33ff5776\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"def43cb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c8cfb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e7a215\"}],\"pp_display_conditions\":[{\"_id\":\"daade15\",\"pp_condition_date_time_before_value\":\"2024-06-13 12:14\"}],\"flex_direction\":\"row\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_direction_tablet\":\"row\",\"flex_justify_content\":\"center\",\"flex_justify_content_tablet\":\"space-around\",\"flex_wrap\":\"wrap\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"5414ae23\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ca201cd\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"7db42375\",\"elType\":\"widget\",\"settings\":{\"title\":\"Placering\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"470d48aa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Fyn, Denmark\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a2184f8\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5511ffdf\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"6b6d887e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":504,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/smartphone_230142.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"3676670c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ring til os\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d86beaa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"41 60 00 40\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:41600040\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ce5f04f\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"64f3768f\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"55c9290\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":505,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/email_542689.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"397a533e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Send os en email\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a6b4fdc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"kontakt@cp-nordic.dk\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a2184f8\",\"link\":{\"url\":\"mailto:kontakt@cp-nordic.dk\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\",\"content_width\":\"full\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1629e761\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"3f0b36ba\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"304a3dc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d9ec4b\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Navn\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"tel\",\"field_label\":\"Telefon\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\"},{\"field_type\":\"select\",\"field_label\":\"Tjenesters navn\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Beskeder\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Roboto\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"field_typography_font_weight\":\"400\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true},{\"id\":\"636e2bca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5f31bac\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"32a9521\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dea9376\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7ff945\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"54da3f3a\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title\":\"KONTAKT OS\",\"pp_display_conditions\":[{\"_id\":\"156b1a5\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align_mobile_extra\":\"center\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79c5eed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi d\\u00e6kker hele Fyn \\u2013 og tager ogs\\u00e5 gerne opgaver uden for omr\\u00e5det, n\\u00e5r der er tale om sp\\u00e6ndende eller teknisk kr\\u00e6vende l\\u00f8sninger.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e03db8a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c76d79\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"1a75682\",\"link\":{\"url\":\"https:\\/\\/www.facebook.com\\/cpnordic\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"da32d70\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/cpnordic\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.6,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"589cdcb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor6\"},\"icon_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"left\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3153, 354, '_elementor_edit_mode', 'builder'),
(3154, 354, '_elementor_template_type', 'wp-page'),
(3155, 354, '_elementor_version', '3.34.0'),
(3156, 354, '_elementor_pro_version', '3.17.1'),
(3157, 354, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3158, 354, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"9615e16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4d26513\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3160, 354, '_elementor_page_settings', 'a:0:{}'),
(3163, 355, '_elementor_edit_mode', 'builder'),
(3164, 355, '_elementor_template_type', 'wp-page'),
(3165, 355, '_elementor_version', '3.34.0'),
(3166, 355, '_elementor_pro_version', '3.17.1'),
(3167, 355, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3168, 355, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"9615e16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"2-lags tagpapl\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tagpap klar til sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Foliearbejde\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3900, 430, '_elementor_page_settings', 'a:0:{}'),
(3223, 361, '_elementor_edit_mode', 'builder'),
(3207, 359, '_elementor_edit_mode', 'builder'),
(3208, 359, '_elementor_template_type', 'wp-page'),
(3209, 359, '_elementor_version', '3.34.0'),
(3210, 359, '_elementor_pro_version', '3.17.1'),
(3211, 359, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3212, 359, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"9615e16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"2-lags tagpapl\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tagpap klar til sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Foliearbejde\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3183, 356, '_elementor_page_settings', 'a:0:{}'),
(4175, 457, '_elementor_edit_mode', 'builder'),
(4176, 457, '_elementor_template_type', 'wp-page'),
(4177, 457, '_elementor_version', '3.34.2'),
(4178, 457, '_elementor_pro_version', '3.34.2'),
(4179, 457, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4180, 457, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"2-lags tagpapl\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tagpap klar til sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Foliearbejde\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle ANMELDELSER\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4182, 457, '_elementor_page_settings', 'a:0:{}'),
(3186, 357, '_elementor_edit_mode', 'builder'),
(3187, 357, '_elementor_template_type', 'wp-page'),
(3188, 357, '_elementor_version', '3.34.0'),
(3189, 357, '_elementor_pro_version', '3.17.1'),
(3190, 357, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3191, 357, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"9615e16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"2-lags tagpapl\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tagpap klar til sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Foliearbejde\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3193, 357, '_elementor_page_settings', 'a:0:{}'),
(4172, 456, '_elementor_page_settings', 'a:0:{}'),
(3196, 358, '_elementor_edit_mode', 'builder'),
(3197, 358, '_elementor_template_type', 'wp-page'),
(3198, 358, '_elementor_version', '3.34.0'),
(3199, 358, '_elementor_pro_version', '3.17.1'),
(3200, 358, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3201, 358, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"9615e16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"2-lags tagpapl\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tagpap klar til sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Foliearbejde\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3222, 360, '_elementor_page_settings', 'a:0:{}'),
(3224, 361, '_elementor_template_type', 'wp-page'),
(3225, 361, '_elementor_version', '3.34.0'),
(3226, 361, '_elementor_pro_version', '3.17.1'),
(3227, 361, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3228, 361, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"9615e16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"2-lags tagpapl\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tagpap klar til sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Foliearbejde\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3234, 362, '_elementor_edit_mode', 'builder'),
(3235, 362, '_elementor_template_type', 'wp-page'),
(3236, 362, '_elementor_version', '3.34.0'),
(3237, 362, '_elementor_pro_version', '3.17.1'),
(3238, 362, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3239, 362, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"9615e16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"2-lags tagpapl\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tagpap klar til sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Foliearbejde\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3304, 368, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3305, 368, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"2-lags tagpapl\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tagpap klar til sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Foliearbejde\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3267, 365, '_elementor_edit_mode', 'builder'),
(3268, 365, '_elementor_template_type', 'wp-page'),
(3269, 365, '_elementor_version', '3.34.0'),
(3270, 365, '_elementor_pro_version', '3.17.1'),
(3271, 365, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3272, 365, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"2-lags tagpapl\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tagpap klar til sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Foliearbejde\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3300, 368, '_elementor_edit_mode', 'builder'),
(3301, 368, '_elementor_template_type', 'wp-page'),
(3302, 368, '_elementor_version', '3.34.0'),
(3303, 368, '_elementor_pro_version', '3.17.1'),
(3371, 374, '_elementor_page_settings', 'a:0:{}'),
(3372, 375, '_elementor_edit_mode', 'builder'),
(3373, 375, '_elementor_template_type', 'wp-page'),
(3374, 375, '_elementor_version', '3.34.0'),
(3375, 375, '_elementor_pro_version', '3.17.1'),
(3376, 375, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3377, 375, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E14F\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"2-lags tagpapl\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tagpap klar til sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Foliearbejde\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3241, 362, '_elementor_page_settings', 'a:0:{}'),
(4209, 460, '_elementor_edit_mode', 'builder'),
(4210, 460, '_elementor_template_type', 'wp-page'),
(4211, 460, '_elementor_version', '3.34.2'),
(4212, 460, '_elementor_pro_version', '3.34.2'),
(4213, 460, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4214, 460, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\",\"id\":57,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"2-lags tagpapl\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tagpap klar til sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Foliearbejde\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle ANMELDELSER\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3244, 363, '_elementor_edit_mode', 'builder'),
(3245, 363, '_elementor_template_type', 'wp-page'),
(3246, 363, '_elementor_version', '3.34.0'),
(3247, 363, '_elementor_pro_version', '3.17.1'),
(3248, 363, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3249, 363, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"9615e16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"2-lags tagpapl\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tagpap klar til sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Foliearbejde\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3251, 363, '_elementor_page_settings', 'a:0:{}'),
(7055, 741, '_elementor_page_settings', 'a:0:{}'),
(7059, 742, '_wp_page_template', 'default'),
(7060, 742, '_elementor_edit_mode', 'builder'),
(7061, 742, '_elementor_template_type', 'wp-page'),
(7062, 742, '_elementor_version', '3.34.2'),
(7063, 742, '_elementor_pro_version', '3.34.2'),
(7064, 742, '_elementor_data', '[{\"id\":\"db67a1d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"8002bef\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f0466b5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"22cf5aa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b4c972c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle ANMELDELSER\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5a69c19\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(7065, 742, '_elementor_page_settings', 'a:0:{}'),
(7069, 743, '_wp_page_template', 'default'),
(7070, 743, '_elementor_edit_mode', 'builder'),
(7071, 743, '_elementor_template_type', 'wp-page'),
(7072, 743, '_elementor_version', '3.34.2'),
(7073, 743, '_elementor_pro_version', '3.34.2'),
(7074, 743, '_elementor_data', '[{\"id\":\"db67a1d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"8002bef\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f0466b5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"22cf5aa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b4c972c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle ANMELDELSER\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5a69c19\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(3254, 364, '_elementor_edit_mode', 'builder'),
(3255, 364, '_elementor_template_type', 'wp-page'),
(3256, 364, '_elementor_version', '3.34.0'),
(3257, 364, '_elementor_pro_version', '3.17.1'),
(3258, 364, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3259, 364, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"2-lags tagpapl\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tagpap klar til sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Foliearbejde\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3274, 365, '_elementor_page_settings', 'a:0:{}'),
(4151, 455, '_elementor_edit_mode', 'builder'),
(4152, 455, '_elementor_template_type', 'wp-page'),
(4153, 455, '_elementor_version', '3.34.2'),
(4154, 455, '_elementor_pro_version', '3.34.2'),
(4155, 455, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4156, 455, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"2-lags tagpapl\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tagpap klar til sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Foliearbejde\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle ANMELDELSER\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3277, 366, '_elementor_edit_mode', 'builder'),
(3278, 366, '_elementor_template_type', 'wp-page'),
(3279, 366, '_elementor_version', '3.34.0'),
(3280, 366, '_elementor_pro_version', '3.17.1'),
(3281, 366, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3282, 366, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"2-lags tagpapl\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tagpap klar til sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Foliearbejde\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3284, 366, '_elementor_page_settings', 'a:0:{}'),
(4141, 454, '_elementor_edit_mode', 'builder'),
(4142, 454, '_elementor_template_type', 'wp-page'),
(4143, 454, '_elementor_version', '3.34.2'),
(4144, 454, '_elementor_pro_version', '3.34.2'),
(4145, 454, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4146, 454, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"2-lags tagpapl\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tagpap klar til sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Foliearbejde\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle ANMELDELSER\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4148, 454, '_elementor_page_settings', 'a:0:{}'),
(3287, 367, '_elementor_edit_mode', 'builder'),
(3288, 367, '_elementor_template_type', 'wp-page'),
(3289, 367, '_elementor_version', '3.34.0'),
(3290, 367, '_elementor_pro_version', '3.17.1'),
(3291, 367, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3292, 367, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"2-lags tagpapl\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tagpap klar til sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Foliearbejde\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3923, 432, '_elementor_page_settings', 'a:0:{}'),
(3353, 373, '_elementor_edit_mode', 'builder'),
(3333, 371, '_elementor_edit_mode', 'builder'),
(3334, 371, '_elementor_template_type', 'wp-page'),
(3335, 371, '_elementor_version', '3.34.0'),
(3336, 371, '_elementor_pro_version', '3.17.1'),
(3337, 371, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3338, 371, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"2-lags tagpapl\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tagpap klar til sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Foliearbejde\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3307, 368, '_elementor_page_settings', 'a:0:{}'),
(4138, 453, '_elementor_page_settings', 'a:0:{}'),
(3310, 369, '_elementor_edit_mode', 'builder'),
(3311, 369, '_elementor_template_type', 'wp-page'),
(3312, 369, '_elementor_version', '3.34.0'),
(3313, 369, '_elementor_pro_version', '3.17.1'),
(3314, 369, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3315, 369, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"2-lags tagpapl\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tagpap klar til sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Foliearbejde\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3317, 369, '_elementor_page_settings', 'a:0:{}'),
(4185, 458, '_elementor_edit_mode', 'builder'),
(4165, 456, '_elementor_edit_mode', 'builder'),
(4166, 456, '_elementor_template_type', 'wp-page'),
(4167, 456, '_elementor_version', '3.34.2'),
(4168, 456, '_elementor_pro_version', '3.34.2'),
(4169, 456, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4170, 456, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"2-lags tagpapl\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tagpap klar til sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Foliearbejde\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle ANMELDELSER\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4239, 463, '_elementor_edit_mode', 'builder'),
(4240, 463, '_elementor_template_type', 'wp-page'),
(3320, 370, '_elementor_edit_mode', 'builder'),
(3321, 370, '_elementor_template_type', 'wp-page'),
(3322, 370, '_elementor_version', '3.34.0'),
(3323, 370, '_elementor_pro_version', '3.17.1'),
(3324, 370, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3325, 370, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"2-lags tagpapl\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tagpap klar til sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Foliearbejde\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3926, 433, '_elementor_edit_mode', 'builder'),
(3927, 433, '_elementor_template_type', 'wp-page'),
(3928, 433, '_elementor_version', '3.34.2'),
(3929, 433, '_elementor_pro_version', '3.34.2'),
(3930, 433, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3931, 433, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"2-lags tagpapl\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tagpap klar til sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Foliearbejde\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3380, 376, '_elementor_edit_mode', 'builder'),
(3364, 374, '_elementor_edit_mode', 'builder'),
(3365, 374, '_elementor_template_type', 'wp-page'),
(3366, 374, '_elementor_version', '3.34.0'),
(3367, 374, '_elementor_pro_version', '3.17.1'),
(3368, 374, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3369, 374, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E14F\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"2-lags tagpapl\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tagpap klar til sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Foliearbejde\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3340, 371, '_elementor_page_settings', 'a:0:{}'),
(4131, 453, '_elementor_edit_mode', 'builder'),
(4132, 453, '_elementor_template_type', 'wp-page'),
(4133, 453, '_elementor_version', '3.34.2'),
(4134, 453, '_elementor_pro_version', '3.34.2'),
(4135, 453, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4136, 453, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"2-lags tagpapl\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tagpap klar til sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Foliearbejde\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle ANMELDELSER\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4277, 466, '_elementor_page_settings', 'a:0:{}'),
(4278, 467, '_elementor_edit_mode', 'builder'),
(4279, 467, '_elementor_template_type', 'wp-page'),
(4280, 467, '_elementor_version', '3.34.2'),
(4281, 467, '_elementor_pro_version', '3.34.2'),
(4282, 467, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4283, 467, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\",\"id\":57,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle ANMELDELSER\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"HVORFOR V\\u00c6LGE CP NORDIC ApS?\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79206f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>N\\u00e5r du v\\u00e6lger CP NORDIC ApS, f\\u00e5r du:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"44023b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"et ungt og engageret team\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"fokus p\\u00e5 kvalitet og detaljer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"\\u00e6rlig r\\u00e5dgivning\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"gennemt\\u00e6nkte l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c0f2190\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"327bd23\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"arbejde udf\\u00f8rt med ansvar\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3343, 372, '_elementor_edit_mode', 'builder'),
(3344, 372, '_elementor_template_type', 'wp-page'),
(3345, 372, '_elementor_version', '3.34.0'),
(3346, 372, '_elementor_pro_version', '3.17.1'),
(3347, 372, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3348, 372, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"2-lags tagpapl\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tagpap klar til sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Foliearbejde\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3350, 372, '_elementor_page_settings', 'a:0:{}'),
(4111, 450, '_elementor_page_settings', 'a:0:{}'),
(4112, 451, '_elementor_edit_mode', 'builder'),
(4113, 451, '_elementor_template_type', 'wp-page'),
(4114, 451, '_elementor_version', '3.34.2'),
(4115, 451, '_elementor_pro_version', '3.34.2'),
(4116, 451, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4117, 451, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"2-lags tagpapl\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tagpap klar til sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Foliearbejde\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4119, 451, '_elementor_page_settings', 'a:0:{}'),
(4121, 452, '_elementor_template_type', 'wp-page'),
(4122, 452, '_elementor_version', '3.34.2'),
(4123, 452, '_elementor_pro_version', '3.34.2'),
(4124, 452, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4125, 452, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"2-lags tagpapl\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tagpap klar til sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Foliearbejde\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle ANMELDELSER\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3354, 373, '_elementor_template_type', 'wp-page'),
(3355, 373, '_elementor_version', '3.34.0'),
(3356, 373, '_elementor_pro_version', '3.17.1'),
(3357, 373, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3358, 373, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E14F\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"2-lags tagpapl\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tagpap klar til sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Foliearbejde\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3933, 433, '_elementor_page_settings', 'a:0:{}'),
(3379, 375, '_elementor_page_settings', 'a:0:{}'),
(3381, 376, '_elementor_template_type', 'wp-page'),
(3382, 376, '_elementor_version', '3.34.0'),
(3383, 376, '_elementor_pro_version', '3.17.1'),
(3384, 376, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3385, 376, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E14F\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"2-lags tagpapl\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tagpap klar til sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Foliearbejde\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3391, 377, '_elementor_edit_mode', 'builder'),
(3392, 377, '_elementor_template_type', 'wp-page'),
(3393, 377, '_elementor_version', '3.34.0'),
(3394, 377, '_elementor_pro_version', '3.17.1'),
(3395, 377, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3396, 377, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E14F\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"2-lags tagpapl\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tagpap klar til sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Foliearbejde\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3595, 396, '_elementor_edit_mode', 'builder'),
(3596, 396, '_elementor_template_type', 'wp-page'),
(3597, 396, '_elementor_version', '3.34.0'),
(3598, 396, '_elementor_pro_version', '3.17.1'),
(3444, 382, '_elementor_edit_mode', 'builder'),
(3424, 380, '_elementor_edit_mode', 'builder'),
(3425, 380, '_elementor_template_type', 'wp-page'),
(3426, 380, '_elementor_version', '3.34.0'),
(3427, 380, '_elementor_pro_version', '3.17.1'),
(3428, 380, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3429, 380, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E14F\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"2-lags tagpapl\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tagpap klar til sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Foliearbejde\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3602, 396, '_elementor_page_settings', 'a:0:{}'),
(3603, 397, '_elementor_edit_mode', 'builder'),
(3604, 397, '_elementor_template_type', 'wp-page'),
(3605, 397, '_elementor_version', '3.34.0'),
(3606, 397, '_elementor_pro_version', '3.17.1'),
(3607, 397, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3608, 397, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"2-lags tagpapl\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tagpap klar til sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Foliearbejde\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"868adb3\",\"elType\":\"widget\",\"settings\":{\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"e9bae23\"}],\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"59c15a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3398, 377, '_elementor_page_settings', 'a:0:{}'),
(4094, 448, '_elementor_page_settings', 'a:0:{}'),
(4096, 449, '_elementor_template_type', 'wp-page'),
(4097, 449, '_elementor_version', '3.34.2'),
(4098, 449, '_elementor_pro_version', '3.34.2'),
(4099, 449, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4100, 449, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"2-lags tagpapl\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tagpap klar til sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Foliearbejde\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4120, 452, '_elementor_edit_mode', 'builder'),
(4104, 450, '_elementor_edit_mode', 'builder'),
(4105, 450, '_elementor_template_type', 'wp-page'),
(4106, 450, '_elementor_version', '3.34.2'),
(4107, 450, '_elementor_pro_version', '3.34.2'),
(4108, 450, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4109, 450, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"2-lags tagpapl\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tagpap klar til sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Foliearbejde\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3401, 378, '_elementor_edit_mode', 'builder'),
(3402, 378, '_elementor_template_type', 'wp-page'),
(3403, 378, '_elementor_version', '3.34.0'),
(3404, 378, '_elementor_pro_version', '3.17.1'),
(3405, 378, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3406, 378, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E14F\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"2-lags tagpapl\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tagpap klar til sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Foliearbejde\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3408, 378, '_elementor_page_settings', 'a:0:{}'),
(3543, 391, '_elementor_edit_mode', 'builder'),
(3544, 391, '_elementor_template_type', 'wp-page'),
(3545, 391, '_elementor_version', '3.34.0'),
(3546, 391, '_elementor_pro_version', '3.17.1'),
(3547, 391, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3548, 391, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"2-lags tagpapl\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tagpap klar til sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Foliearbejde\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3411, 379, '_elementor_edit_mode', 'builder'),
(3412, 379, '_elementor_template_type', 'wp-page'),
(3413, 379, '_elementor_version', '3.34.0'),
(3414, 379, '_elementor_pro_version', '3.17.1'),
(3415, 379, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3416, 379, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E14F\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"2-lags tagpapl\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tagpap klar til sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Foliearbejde\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3936, 434, '_elementor_edit_mode', 'builder'),
(3937, 434, '_elementor_template_type', 'wp-page'),
(3938, 434, '_elementor_version', '3.34.2'),
(3939, 434, '_elementor_pro_version', '3.34.2'),
(3940, 434, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3941, 434, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"2-lags tagpapl\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tagpap klar til sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Foliearbejde\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7224, 756, '_elementor_edit_mode', 'builder'),
(7225, 756, '_elementor_template_type', 'wp-page'),
(3477, 385, '_elementor_edit_mode', 'builder'),
(3457, 383, '_elementor_edit_mode', 'builder'),
(3458, 383, '_elementor_template_type', 'wp-page'),
(3459, 383, '_elementor_version', '3.34.0'),
(3460, 383, '_elementor_pro_version', '3.17.1'),
(3461, 383, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3462, 383, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"2-lags tagpapl\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tagpap klar til sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Foliearbejde\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3599, 396, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3600, 396, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"2-lags tagpapl\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tagpap klar til sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Foliearbejde\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"868adb3\",\"elType\":\"widget\",\"settings\":{\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"e9bae23\"}],\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"59c15a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3431, 380, '_elementor_page_settings', 'a:0:{}'),
(4068, 446, '_elementor_edit_mode', 'builder'),
(4069, 446, '_elementor_template_type', 'wp-page'),
(4070, 446, '_elementor_version', '3.34.2'),
(4071, 446, '_elementor_pro_version', '3.34.2'),
(4072, 446, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4073, 446, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"2-lags tagpapl\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tagpap klar til sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Foliearbejde\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5499, 16, '_elementor_edit_mode', 'builder'),
(5500, 16, '_astra_content_layout_flag', 'disabled'),
(5501, 16, 'ast-title-bar-display', 'disabled'),
(5502, 16, '_elementor_template_type', 'wp-page'),
(5503, 16, '_elementor_version', '3.34.2'),
(5504, 16, '_elementor_pro_version', '3.34.2'),
(5519, 16, '_elementor_data', '[{\"id\":\"580962f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC5C\",\"flex_direction_tablet\":\"column-reverse\",\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F5F3F2\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"\"}},\"elements\":[{\"id\":\"0a64fdb\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"90a885a\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"007564a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS is run by two skilled craftsmen who completed their apprenticeships together in 2022. We are both 25 years old and share a strong passion for quality craftsmanship and long-lasting solutions.<\\/p><p>We originally come from East Funen but are now based in Central Funen, from where we carry out work for both private and commercial clients. Our work ranges from carpentry and roofing to installation and specialized tasks, and we approach every project with professionalism, honesty, and attention to detail.<\\/p><p>With us, there are no long decision-making processes or changing contact persons. You are in direct dialogue with the people carrying out the work, and we place great importance on clear agreements, good communication, and a finished result we can stand behind.<\\/p><p>We cover all of Funen and also take on projects in the rest of Denmark by agreement.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"617780c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b57ce82\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}]},\"elements\":[{\"id\":\"e3724c6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b79d6d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8a1d74a\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"944b744\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f99f95c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e408251\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"b3e8d95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(5507, 591, '_elementor_edit_mode', 'builder'),
(5508, 591, '_elementor_template_type', 'wp-page'),
(5509, 591, '_elementor_version', '3.34.2'),
(5510, 591, '_elementor_pro_version', '3.34.2'),
(5511, 591, '_elementor_page_settings', 'a:0:{}'),
(5513, 592, '_elementor_edit_mode', 'builder'),
(5514, 592, '_elementor_template_type', 'wp-page'),
(5515, 592, '_elementor_version', '3.34.2'),
(5516, 592, '_elementor_pro_version', '3.34.2'),
(5517, 592, '_elementor_page_settings', 'a:0:{}'),
(5518, 16, '_wp_page_template', 'default'),
(5521, 593, '_elementor_edit_mode', 'builder'),
(5522, 593, '_elementor_template_type', 'wp-page'),
(5523, 593, '_elementor_version', '3.34.2'),
(5524, 593, '_elementor_pro_version', '3.34.2'),
(5525, 593, '_wp_page_template', 'default'),
(5526, 593, '_elementor_data', '[{\"id\":\"580962f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC5C\",\"flex_direction_tablet\":\"column-reverse\",\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"0a64fdb\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"90a885a\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"007564a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p><p>\\u00a0<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(3434, 381, '_elementor_edit_mode', 'builder'),
(3435, 381, '_elementor_template_type', 'wp-page'),
(3436, 381, '_elementor_version', '3.34.0'),
(3437, 381, '_elementor_pro_version', '3.17.1'),
(3438, 381, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3439, 381, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E14F\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"2-lags tagpapl\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tagpap klar til sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Foliearbejde\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3441, 381, '_elementor_page_settings', 'a:0:{}'),
(4065, 445, '_elementor_page_settings', 'a:0:{}'),
(3445, 382, '_elementor_template_type', 'wp-page'),
(3446, 382, '_elementor_version', '3.34.0'),
(3447, 382, '_elementor_pro_version', '3.17.1'),
(3448, 382, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3449, 382, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"2-lags tagpapl\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tagpap klar til sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Foliearbejde\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3985, 438, '_elementor_pro_version', '3.34.2'),
(3986, 438, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3987, 438, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"2-lags tagpapl\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tagpap klar til sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Foliearbejde\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3510, 388, '_elementor_edit_mode', 'builder'),
(3490, 386, '_elementor_edit_mode', 'builder'),
(3491, 386, '_elementor_template_type', 'wp-page'),
(3492, 386, '_elementor_version', '3.34.0'),
(3493, 386, '_elementor_pro_version', '3.17.1'),
(3494, 386, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3495, 386, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"2-lags tagpapl\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tagpap klar til sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Foliearbejde\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3464, 383, '_elementor_page_settings', 'a:0:{}'),
(4058, 445, '_elementor_edit_mode', 'builder'),
(4059, 445, '_elementor_template_type', 'wp-page'),
(4060, 445, '_elementor_version', '3.34.2'),
(4061, 445, '_elementor_pro_version', '3.34.2'),
(4062, 445, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4063, 445, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"2-lags tagpapl\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tagpap klar til sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Foliearbejde\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3467, 384, '_elementor_edit_mode', 'builder'),
(3468, 384, '_elementor_template_type', 'wp-page'),
(3469, 384, '_elementor_version', '3.34.0'),
(3470, 384, '_elementor_pro_version', '3.17.1'),
(3471, 384, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3472, 384, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"2-lags tagpapl\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tagpap klar til sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Foliearbejde\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3474, 384, '_elementor_page_settings', 'a:0:{}'),
(4095, 449, '_elementor_edit_mode', 'builder'),
(4079, 447, '_elementor_edit_mode', 'builder'),
(4080, 447, '_elementor_template_type', 'wp-page'),
(4081, 447, '_elementor_version', '3.34.2'),
(4082, 447, '_elementor_pro_version', '3.34.2'),
(4083, 447, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4084, 447, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"2-lags tagpapl\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tagpap klar til sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Foliearbejde\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4055, 444, '_elementor_page_settings', 'a:0:{}'),
(3478, 385, '_elementor_template_type', 'wp-page'),
(3479, 385, '_elementor_version', '3.34.0'),
(3480, 385, '_elementor_pro_version', '3.17.1'),
(3481, 385, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3482, 385, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"2-lags tagpapl\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tagpap klar til sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Foliearbejde\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5544, 595, '_elementor_page_settings', 'a:0:{}'),
(3956, 435, '_elementor_page_settings', 'a:0:{}'),
(3523, 389, '_elementor_edit_mode', 'builder'),
(3524, 389, '_elementor_template_type', 'wp-page'),
(3525, 389, '_elementor_version', '3.34.0'),
(3526, 389, '_elementor_pro_version', '3.17.1'),
(3527, 389, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3528, 389, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"2-lags tagpapl\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tagpap klar til sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Foliearbejde\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3497, 386, '_elementor_page_settings', 'a:0:{}'),
(3500, 387, '_elementor_edit_mode', 'builder'),
(3501, 387, '_elementor_template_type', 'wp-page'),
(3502, 387, '_elementor_version', '3.34.0'),
(3503, 387, '_elementor_pro_version', '3.17.1'),
(3504, 387, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3505, 387, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"2-lags tagpapl\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tagpap klar til sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Foliearbejde\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3507, 387, '_elementor_page_settings', 'a:0:{}'),
(4036, 443, '_elementor_template_type', 'wp-page'),
(4037, 443, '_elementor_version', '3.34.2'),
(4038, 443, '_elementor_pro_version', '3.34.2'),
(4039, 443, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4040, 443, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"2-lags tagpapl\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tagpap klar til sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Foliearbejde\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3511, 388, '_elementor_template_type', 'wp-page'),
(3512, 388, '_elementor_version', '3.34.0'),
(3513, 388, '_elementor_pro_version', '3.17.1'),
(3514, 388, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3515, 388, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"2-lags tagpapl\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tagpap klar til sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Foliearbejde\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3959, 436, '_elementor_edit_mode', 'builder'),
(3960, 436, '_elementor_template_type', 'wp-page'),
(3961, 436, '_elementor_version', '3.34.2'),
(3962, 436, '_elementor_pro_version', '3.34.2'),
(3963, 436, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3964, 436, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"2-lags tagpapl\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tagpap klar til sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Foliearbejde\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3567, 393, '_elementor_edit_mode', 'builder'),
(3568, 393, '_elementor_template_type', 'wp-page'),
(3569, 393, '_elementor_version', '3.34.0'),
(3570, 393, '_elementor_pro_version', '3.17.1'),
(3571, 393, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3572, 393, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"2-lags tagpapl\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tagpap klar til sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Foliearbejde\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3530, 389, '_elementor_page_settings', 'a:0:{}'),
(4032, 442, '_elementor_page_settings', 'a:0:{}'),
(3533, 390, '_elementor_edit_mode', 'builder'),
(3534, 390, '_elementor_template_type', 'wp-page'),
(3535, 390, '_elementor_version', '3.34.0'),
(3536, 390, '_elementor_pro_version', '3.17.1'),
(3537, 390, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3538, 390, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"2-lags tagpapl\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tagpap klar til sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Foliearbejde\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3540, 390, '_elementor_page_settings', 'a:0:{}'),
(4025, 442, '_elementor_edit_mode', 'builder'),
(4026, 442, '_elementor_template_type', 'wp-page'),
(4027, 442, '_elementor_version', '3.34.2'),
(4028, 442, '_elementor_pro_version', '3.34.2'),
(4029, 442, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4030, 442, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"2-lags tagpapl\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tagpap klar til sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Foliearbejde\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3966, 436, '_elementor_page_settings', 'a:0:{}'),
(3585, 395, '_elementor_edit_mode', 'builder'),
(3586, 395, '_elementor_template_type', 'wp-page'),
(3587, 395, '_elementor_version', '3.34.0'),
(3588, 395, '_elementor_pro_version', '3.17.1'),
(3589, 395, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3590, 395, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"2-lags tagpapl\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tagpap klar til sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Foliearbejde\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"868adb3\",\"elType\":\"widget\",\"settings\":{\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"e9bae23\"}],\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"59c15a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3574, 393, '_elementor_page_settings', 'a:0:{}'),
(4022, 441, '_elementor_page_settings', 'a:0:{}'),
(4048, 444, '_elementor_edit_mode', 'builder'),
(4049, 444, '_elementor_template_type', 'wp-page'),
(4050, 444, '_elementor_version', '3.34.2'),
(4051, 444, '_elementor_pro_version', '3.34.2'),
(4052, 444, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4053, 444, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"2-lags tagpapl\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tagpap klar til sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Foliearbejde\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3576, 394, '_elementor_edit_mode', 'builder'),
(3577, 394, '_elementor_template_type', 'wp-page'),
(3578, 394, '_elementor_version', '3.34.0'),
(3579, 394, '_elementor_pro_version', '3.17.1'),
(3580, 394, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3581, 394, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"2-lags tagpapl\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tagpap klar til sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Foliearbejde\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3583, 394, '_elementor_page_settings', 'a:0:{}'),
(4002, 440, '_elementor_edit_mode', 'builder'),
(4003, 440, '_elementor_template_type', 'wp-page'),
(4004, 440, '_elementor_version', '3.34.2'),
(4005, 440, '_elementor_pro_version', '3.34.2'),
(4006, 440, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4007, 440, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"2-lags tagpapl\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tagpap klar til sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Foliearbejde\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5534, 594, '_wp_page_template', 'default'),
(5535, 594, '_elementor_data', '[{\"id\":\"580962f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC5C\",\"flex_direction_tablet\":\"column-reverse\",\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"0a64fdb\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"90a885a\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"007564a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p><p>\\u00a0<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(5536, 594, '_elementor_page_settings', 'a:0:{}'),
(5538, 595, '_elementor_edit_mode', 'builder'),
(5539, 595, '_elementor_template_type', 'wp-page'),
(5540, 595, '_elementor_version', '3.34.2'),
(5541, 595, '_elementor_pro_version', '3.34.2'),
(5542, 595, '_wp_page_template', 'default'),
(5543, 595, '_elementor_data', '[{\"id\":\"580962f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC5C\",\"flex_direction_tablet\":\"column-reverse\",\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"0a64fdb\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"90a885a\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"007564a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p><p>\\u00a0<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(3610, 397, '_elementor_page_settings', 'a:0:{}'),
(3611, 398, '_elementor_edit_mode', 'builder'),
(3612, 398, '_elementor_template_type', 'wp-page'),
(3613, 398, '_elementor_version', '3.34.0'),
(3614, 398, '_elementor_pro_version', '3.17.1'),
(3615, 398, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3616, 398, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"2-lags tagpapl\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tagpap klar til sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Foliearbejde\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"868adb3\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":295,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":270,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"e9bae23\"}],\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"59c15a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3622, 399, '_elementor_edit_mode', 'builder'),
(3623, 399, '_elementor_template_type', 'wp-page'),
(3624, 399, '_elementor_version', '3.34.0'),
(3625, 399, '_elementor_pro_version', '3.17.1'),
(3626, 399, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3627, 399, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"2-lags tagpapl\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tagpap klar til sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Foliearbejde\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"868adb3\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":295,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":270,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"e9bae23\"}],\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"59c15a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3653, 402, '_elementor_edit_mode', 'builder'),
(3654, 402, '_elementor_template_type', 'wp-page'),
(3655, 402, '_elementor_version', '3.34.0'),
(3656, 402, '_elementor_pro_version', '3.17.1'),
(3657, 402, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3658, 402, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"2-lags tagpapl\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tagpap klar til sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Foliearbejde\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a5166a1\",\"elType\":\"widget\",\"settings\":{\"wp_gallery\":[{\"id\":295,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":270,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"thumbnail_size\":\"full\",\"open_lightbox\":\"yes\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"179e09b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3660, 402, '_elementor_page_settings', 'a:0:{}'),
(3661, 403, '_elementor_edit_mode', 'builder'),
(3662, 403, '_elementor_template_type', 'wp-page'),
(3663, 403, '_elementor_version', '3.34.0'),
(3664, 403, '_elementor_pro_version', '3.17.1'),
(3665, 403, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3666, 403, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"2-lags tagpapl\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tagpap klar til sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Foliearbejde\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a5166a1\",\"elType\":\"widget\",\"settings\":{\"wp_gallery\":[{\"id\":295,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":270,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"thumbnail_size\":\"full\",\"open_lightbox\":\"yes\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"179e09b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3629, 399, '_elementor_page_settings', 'a:0:{}'),
(5530, 594, '_elementor_edit_mode', 'builder'),
(5531, 594, '_elementor_template_type', 'wp-page'),
(5532, 594, '_elementor_version', '3.34.2'),
(5533, 594, '_elementor_pro_version', '3.34.2'),
(3999, 439, '_elementor_page_settings', 'a:0:{}'),
(3632, 400, '_elementor_edit_mode', 'builder'),
(3633, 400, '_elementor_template_type', 'wp-page'),
(3634, 400, '_elementor_version', '3.34.0'),
(3635, 400, '_elementor_pro_version', '3.17.1'),
(3636, 400, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3637, 400, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"2-lags tagpapl\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tagpap klar til sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Foliearbejde\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"868adb3\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":295,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":270,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"e9bae23\"}],\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"59c15a6\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3639, 400, '_elementor_page_settings', 'a:0:{}'),
(3992, 439, '_elementor_edit_mode', 'builder'),
(3993, 439, '_elementor_template_type', 'wp-page'),
(3994, 439, '_elementor_version', '3.34.2'),
(3995, 439, '_elementor_pro_version', '3.34.2'),
(3996, 439, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3997, 439, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"2-lags tagpapl\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tagpap klar til sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Foliearbejde\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3642, 401, '_elementor_edit_mode', 'builder'),
(3643, 401, '_elementor_template_type', 'wp-page'),
(3644, 401, '_elementor_version', '3.34.0'),
(3645, 401, '_elementor_pro_version', '3.17.1'),
(3646, 401, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3647, 401, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"2-lags tagpapl\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tagpap klar til sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Foliearbejde\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a5166a1\",\"elType\":\"widget\",\"settings\":{\"wp_gallery\":[{\"id\":295,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":270,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"thumbnail_size\":\"full\",\"open_lightbox\":\"yes\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"179e09b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3969, 437, '_elementor_edit_mode', 'builder'),
(3970, 437, '_elementor_template_type', 'wp-page'),
(3971, 437, '_elementor_version', '3.34.2'),
(3972, 437, '_elementor_pro_version', '3.34.2'),
(3973, 437, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3974, 437, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"2-lags tagpapl\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tagpap klar til sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Foliearbejde\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3668, 403, '_elementor_page_settings', 'a:0:{}'),
(3669, 404, '_elementor_edit_mode', 'builder'),
(3670, 404, '_elementor_template_type', 'wp-page'),
(3671, 404, '_elementor_version', '3.34.0'),
(3672, 404, '_elementor_pro_version', '3.17.1'),
(3673, 404, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3674, 404, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"2-lags tagpapl\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tagpap klar til sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Foliearbejde\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a5166a1\",\"elType\":\"widget\",\"settings\":{\"wp_gallery\":[{\"id\":295,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":270,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"thumbnail_size\":\"full\",\"open_lightbox\":\"yes\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"179e09b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3698, 414, '_elementor_edit_mode', 'builder'),
(3699, 414, '_elementor_template_type', 'wp-page'),
(3700, 414, '_elementor_version', '3.34.0'),
(3701, 414, '_elementor_pro_version', '3.17.1'),
(3702, 414, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3703, 414, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"2-lags tagpapl\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tagpap klar til sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Foliearbejde\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a5166a1\",\"elType\":\"widget\",\"settings\":{\"wp_gallery\":[{\"id\":295,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":270,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"thumbnail_size\":\"full\",\"open_lightbox\":\"yes\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"179e09b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3904, 431, '_elementor_template_type', 'wp-page'),
(3731, 417, '_elementor_edit_mode', 'builder'),
(3732, 417, '_elementor_template_type', 'wp-page'),
(3733, 417, '_elementor_version', '3.34.0'),
(3734, 417, '_elementor_pro_version', '3.17.1'),
(3735, 417, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3736, 417, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"2-lags tagpapl\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tagpap klar til sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Foliearbejde\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a5166a1\",\"elType\":\"widget\",\"settings\":{\"wp_gallery\":[{\"id\":405,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-3.jpg\"},{\"id\":406,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-4.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"}],\"thumbnail_size\":\"full\",\"open_lightbox\":\"yes\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"179e09b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3837, 425, '_elementor_edit_mode', 'builder'),
(3817, 423, '_elementor_edit_mode', 'builder'),
(3818, 423, '_elementor_template_type', 'wp-page'),
(3819, 423, '_elementor_version', '3.34.2'),
(3820, 423, '_elementor_pro_version', '3.34.2'),
(3821, 423, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3822, 423, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"2-lags tagpapl\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tagpap klar til sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Foliearbejde\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":405,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-3.jpg\"},{\"id\":295,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":270,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3949, 435, '_elementor_edit_mode', 'builder'),
(3950, 435, '_elementor_template_type', 'wp-page'),
(3951, 435, '_elementor_version', '3.34.2'),
(3952, 435, '_elementor_pro_version', '3.34.2'),
(3953, 435, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3954, 435, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"2-lags tagpapl\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tagpap klar til sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Foliearbejde\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5026, 549, '_elementor_source', 'post'),
(4749, 524, '_elementor_source', 'post'),
(4750, 524, '_elementor_edit_mode', 'builder'),
(4751, 524, '_elementor_template_type', 'footer'),
(4752, 524, '_elementor_version', '3.34.2'),
(4753, 524, '_elementor_pro_version', '3.34.2'),
(4754, 524, '_wp_page_template', 'default'),
(4755, 524, '_elementor_data', '[{\"id\":\"3cf69bc7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"background_color\":\"#121212\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"flex_direction_tablet\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"56542ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ba59e70\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"65fd471\"}],\"pp_display_conditions\":[{\"_id\":\"890752a\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\"}]},\"elements\":[{\"id\":\"7d433401\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"boxed_width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e0467be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fba2414\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"86eef93\"}],\"pp_display_conditions\":[{\"_id\":\"892bbfe\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\"}],\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"100\",\"bottom\":\"10\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b245e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/Transparent-File-02-scaled.png\",\"id\":49,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"3584c9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":240,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7a77842\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"text_color\":\"#F3F3F3\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":295,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"40edc0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3f1c0dda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"boxed_width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"boxed_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"wrap\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content_tablet\":\"center\",\"flex_align_items_tablet\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9cef852\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3267f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"568580d\"}],\"pp_display_conditions\":[{\"_id\":\"3b43c19\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\"}]},\"elements\":[{\"id\":\"25ffa917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick Links\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"97f1c92\",\"pp_condition_date_time_before_value\":\"2023-11-08 15:26\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\"}],\"align_tablet\":\"center\",\"align_mobile_extra\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"_element_width\":\"inherit\",\"typography_typography\":\"custom\",\"title_color\":\"#FFFFFF\",\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6373b647\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Hjem\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5dee041\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Tjenester\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"fdf1982\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/tjenester\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Referencer\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/referencer\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5076fdb\"},{\"text\":\"Om os\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/om-os\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1cdf804\"},{\"text\":\"Kontakt\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/kontakt\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"085decf\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"db62914\",\"pp_condition_date_time_before_value\":\"2023-11-08 15:26\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\"}],\"icon_align_tablet\":\"center\",\"icon_align_mobile_extra\":\"center\",\"__globals__\":{\"text_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=accent\"},\"text_color\":\"#E2E2E2\",\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_elements_tooltip_content\":\"Tooltip Content\",\"icon_typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7b991634\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ac9468\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f73d65c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e9fdb2\"}],\"pp_display_conditions\":[{\"_id\":\"6b3e2fa\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\"}]},\"elements\":[{\"id\":\"1dc7df4b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"97f1c92\",\"pp_condition_date_time_before_value\":\"2023-11-08 15:26\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\"}],\"align_tablet\":\"center\",\"align_mobile_extra\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"_element_width\":\"inherit\",\"title_color\":\"#FFFFFF\",\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45a55ad8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Location Here\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"857a7bd\",\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"}},{\"text\":\"41 60 00 40\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:41600040\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f722a06\"},{\"text\":\"kontakt@cp-nordic.dk\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:kontakt@cp-nordic.dk\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f7076d3\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"db62914\",\"pp_condition_date_time_before_value\":\"2023-11-08 15:26\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\"}],\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align_tablet\":\"center\",\"icon_align_mobile_extra\":\"center\",\"icon_vertical_offset_mobile_extra\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_self_align_mobile_extra\":\"left\",\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=accent\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_vertical_offset_tablet\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"text_color\":\"#E2E2E2\",\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_elements_tooltip_content\":\"Tooltip Content\",\"icon_typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"d5ed30d\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"1a75682\",\"link\":{\"url\":\"https:\\/\\/www.facebook.com\\/cpnordic\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"da32d70\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/cpnordic\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.6,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"589cdcb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor6\"},\"icon_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5e55ea6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"flex_direction_tablet\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"56542ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ba59e70\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"65fd471\"}],\"pp_display_conditions\":[{\"_id\":\"890752a\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor2\"},\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"543e7817\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"boxed_width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"boxed_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"wrap\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content_tablet\":\"center\",\"flex_align_items_tablet\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9cef852\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3267f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"568580d\"}],\"pp_display_conditions\":[{\"_id\":\"3b43c19\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"29e327ba\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u00a9 Copyright 2026 all rights reserved\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5dee041\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"db62914\",\"pp_condition_date_time_before_value\":\"2023-11-08 15:26\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"icon_align_tablet\":\"center\",\"icon_align_mobile_extra\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color_hover\":\"\"},\"text_color\":\"#FFFFFF\",\"pp_elements_tooltip_content\":\"Tooltip Content\",\"icon_typography_font_weight\":\"500\",\"view\":\"inline\",\"icon_align\":\"center\",\"icon_align_mobile\":\"center\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(4826, 530, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(7218, 755, '_wp_page_template', 'default'),
(7219, 755, '_elementor_data', '[{\"id\":\"580962f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC5C\",\"flex_direction_tablet\":\"column-reverse\",\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F5F3F2\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"\"}},\"elements\":[{\"id\":\"0a64fdb\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"90a885a\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"007564a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p><p>At v\\u00e6re en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og g\\u00e5r til hver opgave med ansvar og stolthed. Vores m\\u00e5l er ikke at v\\u00e6re st\\u00f8rst eller hurtigst, men at v\\u00e6re kendt for at levere arbejde, der er udf\\u00f8rt ordentligt og holder i mange \\u00e5r.<\\/p><p>\\u00a0<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"617780c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b57ce82\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}]},\"elements\":[{\"id\":\"e3724c6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b79d6d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8a1d74a\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"944b744\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f99f95c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e408251\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"b3e8d95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(6461, 687, '_elementor_page_settings', 'a:0:{}'),
(6462, 688, '_elementor_edit_mode', 'builder'),
(6463, 688, '_elementor_template_type', 'wp-page'),
(6464, 688, '_elementor_version', '3.34.2'),
(6465, 688, '_elementor_pro_version', '3.34.2'),
(6466, 688, '_wp_page_template', 'default'),
(6467, 688, '_elementor_data', '[{\"id\":\"bc434c0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"85ae5f7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"329d021\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores tjenester\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"15f3e6c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1490168\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"968d8b2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"title_text\":\"T\\u00d8MRERARBEJDE\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"afb00f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"ef0f12b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"title_text\":\"TAGD\\u00c6KNING\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3790, 420, '_elementor_page_settings', 'a:0:{}'),
(3680, 405, '_wp_attached_file', '2026/01/CP-NORDIC-ApS-item-3.jpg'),
(3681, 405, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1080;s:6:\"height\";i:1351;s:4:\"file\";s:32:\"2026/01/CP-NORDIC-ApS-item-3.jpg\";s:8:\"filesize\";i:121156;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"CP-NORDIC-ApS-item-3-240x300.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11052;}s:5:\"large\";a:5:{s:4:\"file\";s:33:\"CP-NORDIC-ApS-item-3-819x1024.jpg\";s:5:\"width\";i:819;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:100508;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"CP-NORDIC-ApS-item-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4613;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:32:\"CP-NORDIC-ApS-item-3-768x961.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:961;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:89159;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3682, 406, '_wp_attached_file', '2026/01/CP-NORDIC-ApS-item-4.jpg'),
(3683, 406, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1080;s:6:\"height\";i:1351;s:4:\"file\";s:32:\"2026/01/CP-NORDIC-ApS-item-4.jpg\";s:8:\"filesize\";i:144044;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"CP-NORDIC-ApS-item-4-240x300.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11828;}s:5:\"large\";a:5:{s:4:\"file\";s:33:\"CP-NORDIC-ApS-item-4-819x1024.jpg\";s:5:\"width\";i:819;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:118704;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"CP-NORDIC-ApS-item-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4573;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:32:\"CP-NORDIC-ApS-item-4-768x961.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:961;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:104919;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3684, 407, '_wp_attached_file', '2026/01/CP-NORDIC-ApS-item-5.jpg'),
(3685, 407, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1080;s:6:\"height\";i:1351;s:4:\"file\";s:32:\"2026/01/CP-NORDIC-ApS-item-5.jpg\";s:8:\"filesize\";i:141126;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"CP-NORDIC-ApS-item-5-240x300.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11869;}s:5:\"large\";a:5:{s:4:\"file\";s:33:\"CP-NORDIC-ApS-item-5-819x1024.jpg\";s:5:\"width\";i:819;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:113642;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"CP-NORDIC-ApS-item-5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4951;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:32:\"CP-NORDIC-ApS-item-5-768x961.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:961;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:100465;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3686, 408, '_wp_attached_file', '2026/01/CP-NORDIC-ApS-item-6.jpg'),
(3687, 408, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1080;s:6:\"height\";i:1351;s:4:\"file\";s:32:\"2026/01/CP-NORDIC-ApS-item-6.jpg\";s:8:\"filesize\";i:86176;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"CP-NORDIC-ApS-item-6-240x300.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11618;}s:5:\"large\";a:5:{s:4:\"file\";s:33:\"CP-NORDIC-ApS-item-6-819x1024.jpg\";s:5:\"width\";i:819;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:82310;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"CP-NORDIC-ApS-item-6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4776;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:32:\"CP-NORDIC-ApS-item-6-768x961.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:961;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:74237;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3688, 409, '_wp_attached_file', '2026/01/CP-NORDIC-ApS-item-7.jpg'),
(3689, 409, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1080;s:6:\"height\";i:1351;s:4:\"file\";s:32:\"2026/01/CP-NORDIC-ApS-item-7.jpg\";s:8:\"filesize\";i:84748;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"CP-NORDIC-ApS-item-7-240x300.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10417;}s:5:\"large\";a:5:{s:4:\"file\";s:33:\"CP-NORDIC-ApS-item-7-819x1024.jpg\";s:5:\"width\";i:819;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:70742;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"CP-NORDIC-ApS-item-7-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4814;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:32:\"CP-NORDIC-ApS-item-7-768x961.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:961;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:63736;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3690, 410, '_wp_attached_file', '2026/01/CP-NORDIC-ApS-item-8.jpg'),
(3691, 410, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1536;s:6:\"height\";i:1920;s:4:\"file\";s:32:\"2026/01/CP-NORDIC-ApS-item-8.jpg\";s:8:\"filesize\";i:367810;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"CP-NORDIC-ApS-item-8-240x300.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15845;}s:5:\"large\";a:5:{s:4:\"file\";s:33:\"CP-NORDIC-ApS-item-8-819x1024.jpg\";s:5:\"width\";i:819;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:166974;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"CP-NORDIC-ApS-item-8-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5528;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:32:\"CP-NORDIC-ApS-item-8-768x960.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:144003;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:34:\"CP-NORDIC-ApS-item-8-1229x1536.jpg\";s:5:\"width\";i:1229;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:351644;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3692, 411, '_wp_attached_file', '2026/01/CP-NORDIC-ApS-item-9.jpg'),
(3693, 411, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1536;s:6:\"height\";i:1536;s:4:\"file\";s:32:\"2026/01/CP-NORDIC-ApS-item-9.jpg\";s:8:\"filesize\";i:226752;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"CP-NORDIC-ApS-item-9-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17015;}s:5:\"large\";a:5:{s:4:\"file\";s:34:\"CP-NORDIC-ApS-item-9-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:151158;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"CP-NORDIC-ApS-item-9-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5390;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:32:\"CP-NORDIC-ApS-item-9-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:87504;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3694, 412, '_wp_attached_file', '2026/01/CP-NORDIC-ApS-item-1.jpg'),
(3695, 412, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1536;s:6:\"height\";i:1536;s:4:\"file\";s:32:\"2026/01/CP-NORDIC-ApS-item-1.jpg\";s:8:\"filesize\";i:234153;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"CP-NORDIC-ApS-item-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16737;}s:5:\"large\";a:5:{s:4:\"file\";s:34:\"CP-NORDIC-ApS-item-1-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:149727;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"CP-NORDIC-ApS-item-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5236;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:32:\"CP-NORDIC-ApS-item-1-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:86994;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3696, 413, '_wp_attached_file', '2026/01/CP-NORDIC-ApS-item-2.jpg'),
(3697, 413, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1080;s:6:\"height\";i:1351;s:4:\"file\";s:32:\"2026/01/CP-NORDIC-ApS-item-2.jpg\";s:8:\"filesize\";i:121616;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"CP-NORDIC-ApS-item-2-240x300.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11047;}s:5:\"large\";a:5:{s:4:\"file\";s:33:\"CP-NORDIC-ApS-item-2-819x1024.jpg\";s:5:\"width\";i:819;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:100198;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"CP-NORDIC-ApS-item-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4660;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:32:\"CP-NORDIC-ApS-item-2-768x961.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:961;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:88928;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3705, 414, '_elementor_page_settings', 'a:0:{}'),
(4035, 443, '_elementor_edit_mode', 'builder'),
(4015, 441, '_elementor_edit_mode', 'builder'),
(4016, 441, '_elementor_template_type', 'wp-page'),
(4017, 441, '_elementor_version', '3.34.2'),
(4018, 441, '_elementor_pro_version', '3.34.2'),
(4019, 441, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4020, 441, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"2-lags tagpapl\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tagpap klar til sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Foliearbejde\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3989, 438, '_elementor_page_settings', 'a:0:{}'),
(3708, 415, '_elementor_edit_mode', 'builder'),
(3709, 415, '_elementor_template_type', 'wp-page'),
(3710, 415, '_elementor_version', '3.34.0'),
(3711, 415, '_elementor_pro_version', '3.17.1'),
(3712, 415, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3713, 415, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"2-lags tagpapl\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tagpap klar til sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Foliearbejde\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a5166a1\",\"elType\":\"widget\",\"settings\":{\"wp_gallery\":[{\"id\":295,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":270,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"thumbnail_size\":\"full\",\"open_lightbox\":\"yes\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"179e09b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3715, 415, '_elementor_page_settings', 'a:0:{}'),
(3905, 431, '_elementor_version', '3.34.2'),
(3906, 431, '_elementor_pro_version', '3.34.2'),
(3907, 431, '_wp_page_template', 'default'),
(3718, 416, '_elementor_edit_mode', 'builder'),
(3719, 416, '_elementor_template_type', 'wp-page'),
(3720, 416, '_elementor_version', '3.34.0'),
(3721, 416, '_elementor_pro_version', '3.17.1'),
(3722, 416, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3723, 416, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"2-lags tagpapl\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tagpap klar til sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Foliearbejde\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a5166a1\",\"elType\":\"widget\",\"settings\":{\"wp_gallery\":[{\"id\":405,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-3.jpg\"},{\"id\":406,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-4.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"}],\"thumbnail_size\":\"full\",\"open_lightbox\":\"yes\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"179e09b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5610, 601, '_elementor_version', '3.34.2'),
(5611, 601, '_elementor_pro_version', '3.34.2'),
(5612, 601, '_elementor_page_settings', 'a:0:{}'),
(6794, 717, '_elementor_pro_version', '3.34.2'),
(5614, 602, '_elementor_edit_mode', 'builder'),
(5615, 602, '_elementor_template_type', 'wp-page'),
(5616, 602, '_elementor_version', '3.34.2'),
(5617, 602, '_elementor_pro_version', '3.34.2'),
(5618, 602, '_elementor_page_settings', 'a:0:{}'),
(5619, 18, '_wp_page_template', 'default'),
(5680, 609, '_elementor_edit_mode', 'builder'),
(5681, 609, '_elementor_template_type', 'wp-page'),
(5682, 609, '_elementor_version', '3.34.2'),
(5683, 609, '_elementor_pro_version', '3.34.2'),
(5684, 609, '_wp_page_template', 'default'),
(5685, 609, '_elementor_data', '[{\"id\":\"1e332a51\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1600399\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3f02c7e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"69bbd48\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9bbb579\",\"pp_condition_date_time_before_value\":\"2024-06-13 12:14\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"id\":506,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/features-shape-1.png\"},\"background_position\":\"bottom right\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":507,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/slider-shape-2.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_attachment\":\"scroll\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"a4da8ee\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8791aed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe09348\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"935d9bd\"}],\"pp_display_conditions\":[{\"_id\":\"faf5fd2\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}]},\"elements\":[{\"id\":\"49d71336\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kontaktoplysninger\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"802d5d7\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"750c99c1\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"editor\":\"<p>Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid<br \\/>velkommen til at kontakte os for en uforpligtende snak.<\\/p>\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c93489c\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"33ff5776\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"def43cb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c8cfb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e7a215\"}],\"pp_display_conditions\":[{\"_id\":\"daade15\",\"pp_condition_date_time_before_value\":\"2024-06-13 12:14\"}],\"flex_direction\":\"row\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_direction_tablet\":\"row\",\"flex_justify_content\":\"center\",\"flex_justify_content_tablet\":\"space-around\",\"flex_wrap\":\"wrap\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"5414ae23\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ca201cd\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"7db42375\",\"elType\":\"widget\",\"settings\":{\"title\":\"Placering\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"470d48aa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Fyn, Denmark\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a2184f8\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5511ffdf\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"6b6d887e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":504,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/smartphone_230142.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"3676670c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ring til os\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d86beaa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"41 60 00 40\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:41600040\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ce5f04f\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"64f3768f\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"55c9290\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":505,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/email_542689.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"397a533e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Send os en email\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a6b4fdc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"kontakt@cp-nordic.dk\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a2184f8\",\"link\":{\"url\":\"mailto:kontakt@cp-nordic.dk\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\",\"content_width\":\"full\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1629e761\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"3f0b36ba\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"304a3dc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d9ec4b\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Name\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"tel\",\"field_label\":\"Phone\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\"},{\"field_type\":\"select\",\"field_label\":\"Services Name\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Messages\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Roboto\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"field_typography_font_weight\":\"400\",\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true},{\"id\":\"636e2bca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5f31bac\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"32a9521\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dea9376\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7ff945\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"54da3f3a\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title\":\"Kontakt\",\"pp_display_conditions\":[{\"_id\":\"156b1a5\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align_mobile_extra\":\"center\",\"align\":\"left\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79c5eed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi d\\u00e6kker hele Fyn \\u2013 og tager ogs\\u00e5 gerne opgaver uden for omr\\u00e5det, n\\u00e5r der er tale om sp\\u00e6ndende eller teknisk kr\\u00e6vende l\\u00f8sninger.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e03db8a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5622, 603, '_elementor_edit_mode', 'builder'),
(5623, 603, '_elementor_template_type', 'wp-page'),
(5624, 603, '_elementor_version', '3.34.2'),
(5625, 603, '_elementor_pro_version', '3.34.2'),
(5626, 603, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5627, 603, '_elementor_data', '[{\"id\":\"1e332a51\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1600399\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3f02c7e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"69bbd48\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9bbb579\",\"pp_condition_date_time_before_value\":\"2024-06-13 12:14\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"id\":506,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/features-shape-1.png\"},\"background_position\":\"bottom right\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":507,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/slider-shape-2.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_attachment\":\"scroll\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"a4da8ee\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8791aed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe09348\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"935d9bd\"}],\"pp_display_conditions\":[{\"_id\":\"faf5fd2\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}]},\"elements\":[{\"id\":\"49d71336\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kontaktoplysninger\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"802d5d7\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"750c99c1\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"editor\":\"<p>Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid<br \\/>velkommen til at kontakte os for en uforpligtende snak.<\\/p>\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c93489c\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"33ff5776\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"def43cb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c8cfb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e7a215\"}],\"pp_display_conditions\":[{\"_id\":\"daade15\",\"pp_condition_date_time_before_value\":\"2024-06-13 12:14\"}],\"flex_direction\":\"row\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_direction_tablet\":\"row\",\"flex_justify_content\":\"center\",\"flex_justify_content_tablet\":\"space-around\",\"flex_wrap\":\"wrap\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"5414ae23\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ca201cd\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"7db42375\",\"elType\":\"widget\",\"settings\":{\"title\":\"LOCATION\\n\",\"header_size\":\"h4\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"470d48aa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"10777 Westheimer Rd Suite 1100 Houston, Tx 77042\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a2184f8\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5511ffdf\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"6b6d887e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":504,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/smartphone_230142.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"3676670c\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL US\\n\",\"header_size\":\"h4\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d86beaa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"(281) 501-0350\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:(281)5010350\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ce5f04f\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"64f3768f\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"55c9290\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":505,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/email_542689.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"397a533e\",\"elType\":\"widget\",\"settings\":{\"title\":\"EMAIL US\\n\",\"header_size\":\"h4\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a6b4fdc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"intake@modernhh.com\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a2184f8\",\"link\":{\"url\":\"mailto:intake@modernhh.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\",\"content_width\":\"full\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1629e761\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"3f0b36ba\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"304a3dc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d1b58ac\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Name\",\"placeholder\":\"Name\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Messages\",\"placeholder\":\"Messages\",\"custom_id\":\"field_d10992d\",\"rows\":6,\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"show_labels\":\"\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_background_color\":\"#F0F5FA96\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true},{\"id\":\"636e2bca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5f31bac\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"32a9521\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dea9376\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7ff945\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"54da3f3a\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title\":\"Hours of Operation\",\"pp_display_conditions\":[{\"_id\":\"156b1a5\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align_mobile_extra\":\"center\",\"align\":\"left\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"678eb405\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"business_hours\":[{\"_id\":\"f12e234\",\"opening_hours\":\"10:00\",\"closed_text\":\"Closed\",\"closing_hours\":\"15:00\"},{\"day\":\"Tuesday\",\"_id\":\"b236ffe\",\"opening_hours\":\"10:00\",\"closed_text\":\"Closed\",\"closing_hours\":\"15:00\"},{\"day\":\"Wednesday\",\"_id\":\"b71ee4f\",\"opening_hours\":\"10:00\",\"closed_text\":\"Closed\",\"closing_hours\":\"15:00\"},{\"day\":\"Thursday\",\"_id\":\"a00f58d\",\"opening_hours\":\"10:00\",\"closed_text\":\"Closed\",\"closing_hours\":\"15:00\"},{\"day\":\"Friday\",\"_id\":\"53681c8\",\"opening_hours\":\"10:00\",\"closed_text\":\"Closed\",\"closing_hours\":\"15:00\"},{\"day\":\"Saturday\",\"closed\":\"\",\"highlight\":\"yes\",\"_id\":\"7577a50\",\"closed_text\":\"Closed\",\"__globals__\":{\"highlight_color\":\"globals\\/colors?id=astglobalcolor5\"}},{\"day\":\"Sunday\",\"closed\":\"yes\",\"highlight\":\"yes\",\"_id\":\"09fa485\",\"closed_text\":\"Closed\",\"__globals__\":{\"highlight_color\":\"globals\\/colors?id=astglobalcolor5\"}}],\"business_hours_custom\":[{\"day\":\"Monday\",\"_id\":\"812a65f\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Tuesday\",\"_id\":\"ac90ca4\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Wednesday\",\"_id\":\"391a242\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Thursday\",\"_id\":\"bca6f45\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Friday\",\"_id\":\"00b4230\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Saturday\",\"closed\":\"yes\",\"highlight\":\"yes\",\"highlight_color\":\"#bc1705\",\"_id\":\"bc5df80\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Sunday\",\"closed\":\"yes\",\"highlight\":\"yes\",\"highlight_color\":\"#bc1705\",\"_id\":\"d7eceed\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"}],\"rows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false},\"rows_divider_style\":\"solid\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"hours_typography_typography\":\"custom\",\"hours_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0f8baac\",\"pp_condition_date_time_before_value\":\"2024-08-01 07:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"rows_divider_color\":\"\",\"day_color\":\"globals\\/colors?id=astglobalcolor5\",\"hours_color\":\"globals\\/colors?id=astglobalcolor5\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"hours_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"rows_divider_color\":\"#8E8F8F3D\",\"day_color\":\"#FFFFFF\",\"hours_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"pp-business-hours\"},{\"id\":\"43e82eab\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title\":\"To reach the office after hours\",\"header_size\":\"h4\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"500\",\"pp_display_conditions\":[{\"_id\":\"15b2e0d\",\"pp_condition_date_time_before_value\":\"2024-08-11 07:15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56118585\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"text\":\"Call Us 888-510-1879\",\"link\":{\"url\":\"tel:8885101879\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"42b3e40\",\"pp_condition_date_time_before_value\":\"2024-08-11 07:15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"hover_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1751d596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a5ac8b4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f58036e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5227ac0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b0f7742\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\"}]},\"elements\":[{\"id\":\"93d7aaa\",\"elType\":\"widget\",\"settings\":{\"address\":\"10777 Westheimer Rd, Houston, TX 77042, USA\",\"height\":{\"unit\":\"px\",\"size\":412,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"c7478ab\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}]'),
(5633, 604, '_elementor_edit_mode', 'builder'),
(5634, 604, '_elementor_template_type', 'wp-page'),
(5635, 604, '_elementor_version', '3.34.2'),
(5636, 604, '_elementor_pro_version', '3.34.2'),
(5637, 604, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5638, 604, '_elementor_data', '[{\"id\":\"1e332a51\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1600399\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3f02c7e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"69bbd48\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9bbb579\",\"pp_condition_date_time_before_value\":\"2024-06-13 12:14\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"id\":506,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/features-shape-1.png\"},\"background_position\":\"bottom right\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":507,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/slider-shape-2.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_attachment\":\"scroll\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"a4da8ee\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8791aed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe09348\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"935d9bd\"}],\"pp_display_conditions\":[{\"_id\":\"faf5fd2\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}]},\"elements\":[{\"id\":\"49d71336\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kontaktoplysninger\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"802d5d7\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"750c99c1\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"editor\":\"<p>Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid<br \\/>velkommen til at kontakte os for en uforpligtende snak.<\\/p>\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c93489c\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"33ff5776\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"def43cb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c8cfb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e7a215\"}],\"pp_display_conditions\":[{\"_id\":\"daade15\",\"pp_condition_date_time_before_value\":\"2024-06-13 12:14\"}],\"flex_direction\":\"row\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_direction_tablet\":\"row\",\"flex_justify_content\":\"center\",\"flex_justify_content_tablet\":\"space-around\",\"flex_wrap\":\"wrap\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"5414ae23\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ca201cd\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"7db42375\",\"elType\":\"widget\",\"settings\":{\"title\":\"LOCATION\\n\",\"header_size\":\"h4\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"470d48aa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"10777 Westheimer Rd Suite 1100 Houston, Tx 77042\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a2184f8\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5511ffdf\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"6b6d887e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":504,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/smartphone_230142.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"3676670c\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL US\\n\",\"header_size\":\"h4\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d86beaa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"(281) 501-0350\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:(281)5010350\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ce5f04f\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"64f3768f\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"55c9290\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":505,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/email_542689.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"397a533e\",\"elType\":\"widget\",\"settings\":{\"title\":\"EMAIL US\\n\",\"header_size\":\"h4\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a6b4fdc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"intake@modernhh.com\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a2184f8\",\"link\":{\"url\":\"mailto:intake@modernhh.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\",\"content_width\":\"full\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1629e761\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"3f0b36ba\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"304a3dc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d1b58ac\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Name\",\"placeholder\":\"Name\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Messages\",\"placeholder\":\"Messages\",\"custom_id\":\"field_d10992d\",\"rows\":6,\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"show_labels\":\"\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_background_color\":\"#F0F5FA96\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true},{\"id\":\"636e2bca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5f31bac\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"32a9521\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dea9376\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7ff945\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"54da3f3a\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title\":\"Hours of Operation\",\"pp_display_conditions\":[{\"_id\":\"156b1a5\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align_mobile_extra\":\"center\",\"align\":\"left\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"678eb405\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"business_hours\":[{\"_id\":\"f12e234\",\"opening_hours\":\"10:00\",\"closed_text\":\"Closed\",\"closing_hours\":\"15:00\"},{\"day\":\"Tuesday\",\"_id\":\"b236ffe\",\"opening_hours\":\"10:00\",\"closed_text\":\"Closed\",\"closing_hours\":\"15:00\"},{\"day\":\"Wednesday\",\"_id\":\"b71ee4f\",\"opening_hours\":\"10:00\",\"closed_text\":\"Closed\",\"closing_hours\":\"15:00\"},{\"day\":\"Thursday\",\"_id\":\"a00f58d\",\"opening_hours\":\"10:00\",\"closed_text\":\"Closed\",\"closing_hours\":\"15:00\"},{\"day\":\"Friday\",\"_id\":\"53681c8\",\"opening_hours\":\"10:00\",\"closed_text\":\"Closed\",\"closing_hours\":\"15:00\"},{\"day\":\"Saturday\",\"closed\":\"\",\"highlight\":\"yes\",\"_id\":\"7577a50\",\"closed_text\":\"Closed\",\"__globals__\":{\"highlight_color\":\"globals\\/colors?id=astglobalcolor5\"}},{\"day\":\"Sunday\",\"closed\":\"yes\",\"highlight\":\"yes\",\"_id\":\"09fa485\",\"closed_text\":\"Closed\",\"__globals__\":{\"highlight_color\":\"globals\\/colors?id=astglobalcolor5\"}}],\"business_hours_custom\":[{\"day\":\"Monday\",\"_id\":\"812a65f\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Tuesday\",\"_id\":\"ac90ca4\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Wednesday\",\"_id\":\"391a242\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Thursday\",\"_id\":\"bca6f45\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Friday\",\"_id\":\"00b4230\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Saturday\",\"closed\":\"yes\",\"highlight\":\"yes\",\"highlight_color\":\"#bc1705\",\"_id\":\"bc5df80\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Sunday\",\"closed\":\"yes\",\"highlight\":\"yes\",\"highlight_color\":\"#bc1705\",\"_id\":\"d7eceed\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"}],\"rows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false},\"rows_divider_style\":\"solid\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"hours_typography_typography\":\"custom\",\"hours_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0f8baac\",\"pp_condition_date_time_before_value\":\"2024-08-01 07:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"rows_divider_color\":\"\",\"day_color\":\"globals\\/colors?id=astglobalcolor5\",\"hours_color\":\"globals\\/colors?id=astglobalcolor5\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"hours_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"rows_divider_color\":\"#8E8F8F3D\",\"day_color\":\"#FFFFFF\",\"hours_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"pp-business-hours\"},{\"id\":\"43e82eab\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title\":\"To reach the office after hours\",\"header_size\":\"h4\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"500\",\"pp_display_conditions\":[{\"_id\":\"15b2e0d\",\"pp_condition_date_time_before_value\":\"2024-08-11 07:15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56118585\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"text\":\"Call Us 888-510-1879\",\"link\":{\"url\":\"tel:8885101879\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"42b3e40\",\"pp_condition_date_time_before_value\":\"2024-08-11 07:15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"hover_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1751d596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a5ac8b4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f58036e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5227ac0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b0f7742\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\"}]},\"elements\":[{\"id\":\"93d7aaa\",\"elType\":\"widget\",\"settings\":{\"address\":\"10777 Westheimer Rd, Houston, TX 77042, USA\",\"height\":{\"unit\":\"px\",\"size\":412,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"c7478ab\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}]'),
(5664, 607, '_elementor_edit_mode', 'builder'),
(5665, 607, '_elementor_template_type', 'wp-page'),
(5666, 607, '_elementor_version', '3.34.2'),
(5667, 607, '_elementor_pro_version', '3.34.2'),
(5668, 607, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5669, 607, '_elementor_data', '[{\"id\":\"1e332a51\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1600399\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3f02c7e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"69bbd48\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9bbb579\",\"pp_condition_date_time_before_value\":\"2024-06-13 12:14\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"id\":506,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/features-shape-1.png\"},\"background_position\":\"bottom right\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":507,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/slider-shape-2.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_attachment\":\"scroll\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"a4da8ee\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8791aed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe09348\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"935d9bd\"}],\"pp_display_conditions\":[{\"_id\":\"faf5fd2\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}]},\"elements\":[{\"id\":\"49d71336\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kontaktoplysninger\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"802d5d7\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"750c99c1\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"editor\":\"<p>Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid<br \\/>velkommen til at kontakte os for en uforpligtende snak.<\\/p>\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c93489c\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"33ff5776\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"def43cb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c8cfb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e7a215\"}],\"pp_display_conditions\":[{\"_id\":\"daade15\",\"pp_condition_date_time_before_value\":\"2024-06-13 12:14\"}],\"flex_direction\":\"row\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_direction_tablet\":\"row\",\"flex_justify_content\":\"center\",\"flex_justify_content_tablet\":\"space-around\",\"flex_wrap\":\"wrap\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"5414ae23\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ca201cd\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"7db42375\",\"elType\":\"widget\",\"settings\":{\"title\":\"Placering\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"470d48aa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Fyn, Denmark\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a2184f8\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5511ffdf\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"6b6d887e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":504,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/smartphone_230142.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"3676670c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ring til os\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d86beaa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"41 60 00 40\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:41600040\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ce5f04f\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"64f3768f\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"55c9290\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":505,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/email_542689.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"397a533e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Send os en email\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a6b4fdc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"kontakt@cp-nordic.dk\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a2184f8\",\"link\":{\"url\":\"mailto:kontakt@cp-nordic.dk\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\",\"content_width\":\"full\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1629e761\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"3f0b36ba\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"304a3dc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d1b58ac\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Name\",\"placeholder\":\"Name\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Messages\",\"placeholder\":\"Messages\",\"custom_id\":\"field_d10992d\",\"rows\":6,\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"show_labels\":\"\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_background_color\":\"#F0F5FA96\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true},{\"id\":\"636e2bca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5f31bac\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"32a9521\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dea9376\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7ff945\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"54da3f3a\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title\":\"Hours of Operation\",\"pp_display_conditions\":[{\"_id\":\"156b1a5\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align_mobile_extra\":\"center\",\"align\":\"left\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"678eb405\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"business_hours\":[{\"_id\":\"f12e234\",\"opening_hours\":\"10:00\",\"closed_text\":\"Closed\",\"closing_hours\":\"15:00\"},{\"day\":\"Tuesday\",\"_id\":\"b236ffe\",\"opening_hours\":\"10:00\",\"closed_text\":\"Closed\",\"closing_hours\":\"15:00\"},{\"day\":\"Wednesday\",\"_id\":\"b71ee4f\",\"opening_hours\":\"10:00\",\"closed_text\":\"Closed\",\"closing_hours\":\"15:00\"},{\"day\":\"Thursday\",\"_id\":\"a00f58d\",\"opening_hours\":\"10:00\",\"closed_text\":\"Closed\",\"closing_hours\":\"15:00\"},{\"day\":\"Friday\",\"_id\":\"53681c8\",\"opening_hours\":\"10:00\",\"closed_text\":\"Closed\",\"closing_hours\":\"15:00\"},{\"day\":\"Saturday\",\"closed\":\"\",\"highlight\":\"yes\",\"_id\":\"7577a50\",\"closed_text\":\"Closed\",\"__globals__\":{\"highlight_color\":\"globals\\/colors?id=astglobalcolor5\"}},{\"day\":\"Sunday\",\"closed\":\"yes\",\"highlight\":\"yes\",\"_id\":\"09fa485\",\"closed_text\":\"Closed\",\"__globals__\":{\"highlight_color\":\"globals\\/colors?id=astglobalcolor5\"}}],\"business_hours_custom\":[{\"day\":\"Monday\",\"_id\":\"812a65f\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Tuesday\",\"_id\":\"ac90ca4\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Wednesday\",\"_id\":\"391a242\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Thursday\",\"_id\":\"bca6f45\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Friday\",\"_id\":\"00b4230\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Saturday\",\"closed\":\"yes\",\"highlight\":\"yes\",\"highlight_color\":\"#bc1705\",\"_id\":\"bc5df80\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Sunday\",\"closed\":\"yes\",\"highlight\":\"yes\",\"highlight_color\":\"#bc1705\",\"_id\":\"d7eceed\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"}],\"rows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false},\"rows_divider_style\":\"solid\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"hours_typography_typography\":\"custom\",\"hours_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0f8baac\",\"pp_condition_date_time_before_value\":\"2024-08-01 07:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"rows_divider_color\":\"\",\"day_color\":\"globals\\/colors?id=astglobalcolor5\",\"hours_color\":\"globals\\/colors?id=astglobalcolor5\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"hours_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"rows_divider_color\":\"#8E8F8F3D\",\"day_color\":\"#FFFFFF\",\"hours_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"pp-business-hours\"},{\"id\":\"43e82eab\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title\":\"To reach the office after hours\",\"header_size\":\"h4\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"500\",\"pp_display_conditions\":[{\"_id\":\"15b2e0d\",\"pp_condition_date_time_before_value\":\"2024-08-11 07:15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56118585\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"text\":\"Call Us 888-510-1879\",\"link\":{\"url\":\"tel:8885101879\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"42b3e40\",\"pp_condition_date_time_before_value\":\"2024-08-11 07:15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"hover_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1751d596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a5ac8b4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f58036e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5227ac0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b0f7742\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\"}]},\"elements\":[{\"id\":\"93d7aaa\",\"elType\":\"widget\",\"settings\":{\"address\":\"10777 Westheimer Rd, Houston, TX 77042, USA\",\"height\":{\"unit\":\"px\",\"size\":412,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"c7478ab\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}]'),
(3784, 420, '_elementor_edit_mode', 'builder'),
(3785, 420, '_elementor_template_type', 'wp-page'),
(3786, 420, '_elementor_version', '3.34.0'),
(3787, 420, '_elementor_pro_version', '3.17.1'),
(3788, 420, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3789, 420, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"2-lags tagpapl\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tagpap klar til sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Foliearbejde\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a5166a1\",\"elType\":\"widget\",\"settings\":{\"wp_gallery\":[{\"id\":405,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-3.jpg\"},{\"id\":406,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-4.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"}],\"thumbnail_size\":\"full\",\"open_lightbox\":\"yes\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"179e09b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":405,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-3.jpg\"},{\"id\":295,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":270,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3738, 417, '_elementor_page_settings', 'a:0:{}'),
(3741, 418, '_elementor_edit_mode', 'builder'),
(3742, 418, '_elementor_template_type', 'wp-page'),
(3743, 418, '_elementor_version', '3.34.0'),
(3744, 418, '_elementor_pro_version', '3.17.1'),
(3745, 418, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3746, 418, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"2-lags tagpapl\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tagpap klar til sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Foliearbejde\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a5166a1\",\"elType\":\"widget\",\"settings\":{\"wp_gallery\":[{\"id\":405,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-3.jpg\"},{\"id\":406,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-4.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"}],\"thumbnail_size\":\"full\",\"open_lightbox\":\"yes\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"179e09b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3748, 418, '_elementor_page_settings', 'a:0:{}'),
(3794, 421, '_elementor_edit_mode', 'builder'),
(3795, 421, '_elementor_template_type', 'wp-page'),
(3796, 421, '_elementor_version', '3.34.0'),
(3797, 421, '_elementor_pro_version', '3.17.1'),
(3798, 421, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3799, 421, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"2-lags tagpapl\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tagpap klar til sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Foliearbejde\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a5166a1\",\"elType\":\"widget\",\"settings\":{\"wp_gallery\":[{\"id\":405,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-3.jpg\"},{\"id\":406,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-4.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"}],\"thumbnail_size\":\"full\",\"open_lightbox\":\"yes\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"179e09b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":405,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-3.jpg\"},{\"id\":295,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":270,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3800, 421, '_elementor_page_settings', 'a:0:{}'),
(3903, 431, '_elementor_edit_mode', 'builder'),
(3804, 422, '_elementor_edit_mode', 'builder'),
(3805, 422, '_elementor_template_type', 'wp-page'),
(3806, 422, '_elementor_version', '3.34.0'),
(3807, 422, '_elementor_pro_version', '3.17.1'),
(3808, 422, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3809, 422, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"2-lags tagpapl\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tagpap klar til sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Foliearbejde\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":405,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-3.jpg\"},{\"id\":295,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":270,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"aspect_ratio\":\"4:3\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3751, 419, '_elementor_edit_mode', 'builder'),
(3752, 419, '_elementor_template_type', 'wp-page'),
(3753, 419, '_elementor_version', '3.34.0'),
(3754, 419, '_elementor_pro_version', '3.17.1'),
(3755, 419, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3756, 419, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}]},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"2-lags tagpapl\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tagpap klar til sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Foliearbejde\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a5166a1\",\"elType\":\"widget\",\"settings\":{\"wp_gallery\":[{\"id\":405,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-3.jpg\"},{\"id\":406,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-4.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"}],\"thumbnail_size\":\"full\",\"open_lightbox\":\"yes\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"179e09b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":405,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-3.jpg\"},{\"id\":295,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":270,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4504, 497, '_elementor_edit_mode', 'builder'),
(4484, 495, '_elementor_edit_mode', 'builder'),
(4485, 495, '_elementor_template_type', 'wp-page'),
(4486, 495, '_elementor_version', '3.34.2'),
(4487, 495, '_elementor_pro_version', '3.34.2'),
(4488, 495, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4489, 495, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\",\"id\":57,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle ANMELDELSER\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]}},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"HVORFOR V\\u00c6LGE CP NORDIC ApS?\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79206f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>N\\u00e5r du v\\u00e6lger CP NORDIC ApS, f\\u00e5r du:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"44023b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/teamwork_4546121.svg\",\"id\":472},\"library\":\"svg\"},\"title_text\":\"et ungt og engageret team\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/effective_1401921.svg\",\"id\":474},\"library\":\"svg\"},\"title_text\":\"fokus p\\u00e5 kvalitet og detaljer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/communication_18765280.svg\",\"id\":479},\"library\":\"svg\"},\"title_text\":\"\\u00e6rlig<br> r\\u00e5dgivning\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/brainstorming_11663441.svg\",\"id\":480},\"library\":\"svg\"},\"title_text\":\"gennemt\\u00e6nkte l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c0f2190\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"327bd23\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/like_3941426.svg\",\"id\":481},\"library\":\"svg\"},\"title_text\":\"arbejde udf\\u00f8rt med ansvar\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4601, 511, '_elementor_edit_mode', 'builder'),
(4602, 511, '_elementor_template_type', 'wp-page'),
(4455, 491, '_elementor_page_settings', 'a:0:{}'),
(4458, 492, '_elementor_edit_mode', 'builder'),
(4459, 492, '_elementor_template_type', 'wp-page'),
(4460, 492, '_elementor_version', '3.34.2'),
(4461, 492, '_elementor_pro_version', '3.34.2'),
(4462, 492, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4463, 492, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\",\"id\":57,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle ANMELDELSER\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]}},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"HVORFOR V\\u00c6LGE CP NORDIC ApS?\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79206f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>N\\u00e5r du v\\u00e6lger CP NORDIC ApS, f\\u00e5r du:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"44023b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/teamwork_4546121.svg\",\"id\":472},\"library\":\"svg\"},\"title_text\":\"et ungt og engageret team\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/effective_1401921.svg\",\"id\":474},\"library\":\"svg\"},\"title_text\":\"fokus p\\u00e5 kvalitet og detaljer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/communication_18765280.svg\",\"id\":479},\"library\":\"svg\"},\"title_text\":\"\\u00e6rlig<br> r\\u00e5dgivning\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/brainstorming_11663441.svg\",\"id\":480},\"library\":\"svg\"},\"title_text\":\"gennemt\\u00e6nkte l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c0f2190\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"327bd23\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/like_3941426.svg\",\"id\":481},\"library\":\"svg\"},\"title_text\":\"arbejde udf\\u00f8rt med ansvar\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4465, 492, '_elementor_page_settings', 'a:0:{}'),
(4469, 493, '_elementor_template_type', 'wp-page'),
(4470, 493, '_elementor_version', '3.34.2'),
(4471, 493, '_elementor_pro_version', '3.34.2'),
(4472, 493, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4473, 493, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\",\"id\":57,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle ANMELDELSER\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]}},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"HVORFOR V\\u00c6LGE CP NORDIC ApS?\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79206f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>N\\u00e5r du v\\u00e6lger CP NORDIC ApS, f\\u00e5r du:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"44023b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/teamwork_4546121.svg\",\"id\":472},\"library\":\"svg\"},\"title_text\":\"et ungt og engageret team\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/effective_1401921.svg\",\"id\":474},\"library\":\"svg\"},\"title_text\":\"fokus p\\u00e5 kvalitet og detaljer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/communication_18765280.svg\",\"id\":479},\"library\":\"svg\"},\"title_text\":\"\\u00e6rlig<br> r\\u00e5dgivning\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/brainstorming_11663441.svg\",\"id\":480},\"library\":\"svg\"},\"title_text\":\"gennemt\\u00e6nkte l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c0f2190\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"327bd23\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/like_3941426.svg\",\"id\":481},\"library\":\"svg\"},\"title_text\":\"arbejde udf\\u00f8rt med ansvar\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7098, 745, '_elementor_page_settings', 'a:0:{}'),
(7630, 168, '_elementor_inline_svg', '<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>'),
(7629, 167, '_elementor_inline_svg', '<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>'),
(7626, 226, '_elementor_inline_svg', '<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>'),
(7627, 165, '_elementor_inline_svg', '<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>'),
(7628, 166, '_elementor_inline_svg', '<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>'),
(7618, 30, '_elementor_page_assets', 'a:2:{s:6:\"styles\";a:3:{i:0;s:12:\"widget-image\";i:1;s:18:\"e-animation-zoomIn\";i:2;s:14:\"widget-heading\";}s:7:\"scripts\";a:3:{i:0;s:18:\"elementor-frontend\";i:1;s:16:\"jquery-smartmenu\";i:2;s:16:\"pp-advanced-menu\";}}'),
(7619, 104, '_elementor_page_assets', 'a:2:{s:6:\"styles\";a:6:{i:0;s:12:\"widget-image\";i:1;s:14:\"widget-heading\";i:2;s:16:\"widget-icon-list\";i:3;s:19:\"widget-social-icons\";i:4;s:14:\"e-apple-webkit\";i:5;s:18:\"widget-google_maps\";}s:7:\"scripts\";a:1:{i:0;s:18:\"elementor-frontend\";}}'),
(7620, 26, '_elementor_css', 'a:6:{s:4:\"time\";i:1781156130;s:5:\"fonts\";a:2:{i:0;s:11:\"Nekst Black\";i:1;s:6:\"Roboto\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),
(7621, 10, '_elementor_page_assets', 'a:2:{s:6:\"styles\";a:12:{i:0;s:14:\"widget-heading\";i:1;s:18:\"e-animation-fadeIn\";i:2;s:8:\"e-swiper\";i:3;s:18:\"widget-text-editor\";i:4;s:12:\"widget-image\";i:5;s:16:\"widget-icon-list\";i:6;s:21:\"widget-call-to-action\";i:7;s:13:\"e-transitions\";i:8;s:14:\"widget-gallery\";i:9;s:17:\"elementor-gallery\";i:10;s:15:\"widget-icon-box\";i:11;s:11:\"widget-form\";}s:7:\"scripts\";a:3:{i:0;s:18:\"elementor-frontend\";i:1;s:6:\"swiper\";i:2;s:17:\"elementor-gallery\";}}'),
(7622, 10, '_elementor_css', 'a:6:{s:4:\"time\";i:1781156131;s:5:\"fonts\";a:2:{i:0;s:11:\"Nekst Black\";i:1;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:0:\"\";i:2;s:3:\"svg\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),
(7623, 30, '_elementor_css', 'a:6:{s:4:\"time\";i:1781156131;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:1;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:3:{i:0;s:8:\"4cc70c2e\";i:1;s:8:\"13f6f159\";i:2;s:8:\"13f6f159\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),
(7624, 104, '_elementor_css', 'a:6:{s:4:\"time\";i:1781156131;s:5:\"fonts\";a:1:{i:0;s:6:\"Roboto\";}s:5:\"icons\";a:4:{i:0;s:0:\"\";i:5;s:8:\"fa-solid\";i:7;s:10:\"fa-regular\";i:8;s:9:\"fa-brands\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),
(7625, 30, '_elementor_element_cache', '{\"timeout\":1782294593,\"value\":{\"content\":\"<div class=\\\"elementor-element elementor-element-67407e3b e-flex e-con-boxed e-con e-parent\\\" data-id=\\\"67407e3b\\\" data-element_type=\\\"container\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"e-con-inner\\\">\\n\\t\\t<div class=\\\"elementor-element elementor-element-341f8b74 e-con-full e-flex e-con e-child\\\" data-id=\\\"341f8b74\\\" data-element_type=\\\"container\\\">\\n\\t\\t[elementor-element k=\\\"7e3dc5e517862d53cc17d5f276a76400\\\" data=\\\"eyJpZCI6IjRjYzcwYzJlIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsiaW1hZ2UiOnsiaWQiOjQ5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL1RyYW5zcGFyZW50LUZpbGUtMDItc2NhbGVkLnBuZyIsImFsdCI6IiIsInNvdXJjZSI6ImxpYnJhcnkiLCJzaXplIjoiIn0sImltYWdlX3NpemUiOiJmdWxsIiwiYWxpZ24iOiJsZWZ0IiwibGlua190byI6ImN1c3RvbSIsInNwYWNlIjp7InVuaXQiOiJweCIsInNpemUiOjE4MCwic2l6ZXMiOltdfSwic3BhY2VfdGFibGV0Ijp7InVuaXQiOiJweCIsInNpemUiOjEwMCwic2l6ZXMiOltdfSwic3BhY2VfbW9iaWxlIjp7InVuaXQiOiJweCIsInNpemUiOjkwLCJzaXplcyI6W119LCJwcF9kaXNwbGF5X2NvbmRpdGlvbnMiOlt7Il9pZCI6ImVmMWYwNTIiLCJwcF9jb25kaXRpb25fZGF0ZV90aW1lX2JlZm9yZV92YWx1ZSI6IjIwMjQtMDItMDEgMDk6NTMiLCJwcF9jb25kaXRpb25fZGF0ZV92YWx1ZSI6IjIwMjUtMDgtMjkgdG8gMjAyNS0wOS0wNCJ9XSwicHBfZWxlbWVudHNfdG9vbHRpcF9jb250ZW50IjoiVG9vbHRpcCBDb250ZW50IiwiX19keW5hbWljX18iOnsibGluayI6IltlbGVtZW50b3ItdGFnIGlkPVwiNzA0MzgzM1wiIG5hbWU9XCJzaXRlLXVybFwiIHNldHRpbmdzPVwiJTdCJTdEXCJdIn0sInNwYWNlX21vYmlsZV9leHRyYSI6eyJ1bml0IjoicHgiLCJzaXplIjoxMDAsInNpemVzIjpbXX0sInNwYWNlX3RhYmxldF9leHRyYSI6eyJ1bml0IjoicHgiLCJzaXplIjoxMDAsInNpemVzIjpbXX19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJpbWFnZSJ9\\\"]\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-29f8b7e1 e-con-full e-flex e-con e-child\\\" data-id=\\\"29f8b7e1\\\" data-element_type=\\\"container\\\">\\n\\t\\t[elementor-element k=\\\"7e3dc5e517862d53cc17d5f276a76400\\\" data=\\\"eyJpZCI6IjU1YWQxMDk1IiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsiYWxpZ25faXRlbXMiOiJyaWdodCIsInBvaW50ZXIiOiJub25lIiwidG9nZ2xlX2xhYmVsIjoiTWVudSIsInBwX2Rpc3BsYXlfY29uZGl0aW9ucyI6W3siX2lkIjoiNmQ5MGFlMyIsInBwX2NvbmRpdGlvbl9kYXRlX3RpbWVfYmVmb3JlX3ZhbHVlIjoiMjAyNC0wMi0wMSAwOTo1MyIsInBwX2NvbmRpdGlvbl9kYXRlX3ZhbHVlIjoiMjAyNS0wOC0yOSB0byAyMDI1LTA5LTA0In1dLCJwcF9lbGVtZW50c190b29sdGlwX2NvbnRlbnQiOiJUb29sdGlwIENvbnRlbnQiLCJtZW51X3R5cGUiOiJvZmYtY2FudmFzIiwidG9nZ2xlX2FsaWduIjoicmlnaHQiLCJ0b2dnbGVfYmFja2dyb3VuZF9jb2xvciI6IiMwMjAxMDEwMCIsInRvZ2dsZV9iYWNrZ3JvdW5kX2NvbG9yX2hvdmVyIjoiIzAyMDEwMTAwIiwib2ZmY2FudmFzX3Bvc2l0aW9uIjoicmlnaHQiLCJjbG9zZV9pY29uX2JhY2tncm91bmRfY29sb3IiOiIjMDIwMTAxMDAiLCJjbG9zZV9pY29uX2JhY2tncm91bmRfY29sb3JfaG92ZXIiOiIjMDIwMTAxMDAiLCJtZW51X3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsIm1lbnVfdHlwb2dyYXBoeV9mb250X3NpemUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MTUsInNpemVzIjpbXX0sIm1lbnVfdHlwb2dyYXBoeV9mb250X3dlaWdodCI6IjUwMCIsImRyb3Bkb3duX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsImRyb3Bkb3duX3R5cG9ncmFwaHlfZm9udF93ZWlnaHQiOiI1MDAiLCJfX2dsb2JhbHNfXyI6eyJ0b2dnbGVfY29sb3IiOiJnbG9iYWxzXC9jb2xvcnM\\/aWQ9YXN0Z2xvYmFsY29sb3IwIiwidG9nZ2xlX2NvbG9yX2hvdmVyIjoiZ2xvYmFsc1wvY29sb3JzP2lkPWFzdGdsb2JhbGNvbG9yMyIsIm92ZXJsYXlfYmdfY29sb3IiOiJnbG9iYWxzXC9jb2xvcnM\\/aWQ9YXN0Z2xvYmFsY29sb3IyIiwibW9iaWxlX2xpbmtfY29sb3IiOiJnbG9iYWxzXC9jb2xvcnM\\/aWQ9YXN0Z2xvYmFsY29sb3I1IiwibW9iaWxlX3N1Yl9saW5rX2NvbG9yIjoiZ2xvYmFsc1wvY29sb3JzP2lkPWFzdGdsb2JhbGNvbG9yNSIsIm1vYmlsZV9zdWJfbGlua19iZ19jb2xvciI6Imdsb2JhbHNcL2NvbG9ycz9pZD1hc3RnbG9iYWxjb2xvcjIiLCJtb2JpbGVfbGlua19iZ19ob3ZlciI6Imdsb2JhbHNcL2NvbG9ycz9pZD1hc3RnbG9iYWxjb2xvcjAiLCJtb2JpbGVfbGlua19ob3ZlciI6Imdsb2JhbHNcL2NvbG9ycz9pZD1hc3RnbG9iYWxjb2xvcjUiLCJtb2JpbGVfc3ViX2xpbmtfYmdfaG92ZXIiOiJnbG9iYWxzXC9jb2xvcnM\\/aWQ9YXN0Z2xvYmFsY29sb3IwIiwibW9iaWxlX3N1Yl9saW5rX2hvdmVyIjoiZ2xvYmFsc1wvY29sb3JzP2lkPWFzdGdsb2JhbGNvbG9yNSIsImNsb3NlX2ljb25fY29sb3IiOiJnbG9iYWxzXC9jb2xvcnM\\/aWQ9YXN0Z2xvYmFsY29sb3I1IiwiY2xvc2VfaWNvbl9jb2xvcl9ob3ZlciI6Imdsb2JhbHNcL2NvbG9ycz9pZD1hc3RnbG9iYWxjb2xvcjUiLCJjb2xvcl9tZW51X2l0ZW0iOiJnbG9iYWxzXC9jb2xvcnM\\/aWQ9YXN0Z2xvYmFsY29sb3I0IiwiY29sb3JfbWVudV9pdGVtX2hvdmVyIjoiZ2xvYmFsc1wvY29sb3JzP2lkPWFzdGdsb2JhbGNvbG9yNCIsImNvbG9yX21lbnVfaXRlbV9hY3RpdmUiOiJnbG9iYWxzXC9jb2xvcnM\\/aWQ9YXN0Z2xvYmFsY29sb3I0IiwiY29sb3JfZHJvcGRvd25faXRlbSI6Imdsb2JhbHNcL2NvbG9ycz9pZD1hc3RnbG9iYWxjb2xvcjUiLCJiYWNrZ3JvdW5kX2NvbG9yX2Ryb3Bkb3duX2l0ZW0iOiJnbG9iYWxzXC9jb2xvcnM\\/aWQ9YXN0Z2xvYmFsY29sb3IwIiwiY29sb3JfZHJvcGRvd25faXRlbV9ob3ZlciI6Imdsb2JhbHNcL2NvbG9ycz9pZD1hc3RnbG9iYWxjb2xvcjUiLCJiYWNrZ3JvdW5kX2NvbG9yX2Ryb3Bkb3duX2l0ZW1faG92ZXIiOiJnbG9iYWxzXC9jb2xvcnM\\/aWQ9YXN0Z2xvYmFsY29sb3IxIiwiY29sb3JfZHJvcGRvd25faXRlbV9hY3RpdmUiOiJnbG9iYWxzXC9jb2xvcnM\\/aWQ9YXN0Z2xvYmFsY29sb3I1IiwiYmFja2dyb3VuZF9jb2xvcl9kcm9wZG93bl9pdGVtX2FjdGl2ZSI6Imdsb2JhbHNcL2NvbG9ycz9pZD1hc3RnbG9iYWxjb2xvcjEiLCJkcm9wZG93bl9kaXZpZGVyX2NvbG9yIjoiIn0sInBhZGRpbmdfaG9yaXpvbnRhbF9tZW51X2l0ZW0iOnsidW5pdCI6InB4Iiwic2l6ZSI6MTUsInNpemVzIjpbXX0sIm1lbnVfdHlwb2dyYXBoeV90ZXh0X3RyYW5zZm9ybSI6InVwcGVyY2FzZSIsIm1lbnVfdHlwb2dyYXBoeV9sZXR0ZXJfc3BhY2luZyI6eyJ1bml0IjoicHgiLCJzaXplIjoxLCJzaXplcyI6W119LCJjb2xvcl9tZW51X2l0ZW1faG92ZXIiOiIjMDQ1Y2I0IiwiY29sb3JfbWVudV9pdGVtX2FjdGl2ZSI6IiMwNDVjYjQiLCJjb2xvcl9kcm9wZG93bl9pdGVtIjoiI0YwRjVGQSIsImJhY2tncm91bmRfY29sb3JfZHJvcGRvd25faXRlbSI6IiMwNDZiZDIiLCJjb2xvcl9kcm9wZG93bl9pdGVtX2hvdmVyIjoiI0YwRjVGQSIsImJhY2tncm91bmRfY29sb3JfZHJvcGRvd25faXRlbV9ob3ZlciI6IiMwNDVjYjQiLCJjb2xvcl9kcm9wZG93bl9pdGVtX2FjdGl2ZSI6IiNGMEY1RkEiLCJiYWNrZ3JvdW5kX2NvbG9yX2Ryb3Bkb3duX2l0ZW1fYWN0aXZlIjoiIzA0NWNiNCIsImRyb3Bkb3duX2RpdmlkZXJfYm9yZGVyIjoic29saWQiLCJkcm9wZG93bl9kaXZpZGVyX2NvbG9yIjoiI0YwRjVGQTM2IiwiZHJvcGRvd25fZGl2aWRlcl93aWR0aCI6eyJ1bml0IjoicHgiLCJzaXplIjoxLCJzaXplcyI6W119LCJ0b2dnbGVfY29sb3IiOiIjMDQ2YmQyIiwidG9nZ2xlX2NvbG9yX2hvdmVyIjoiIzMzNDE1NSIsIm92ZXJsYXlfYmdfY29sb3IiOiIjMWUyOTNiIiwibW9iaWxlX2xpbmtfY29sb3IiOiIjRjBGNUZBIiwibW9iaWxlX3N1Yl9saW5rX2JnX2NvbG9yIjoiIzFlMjkzYiIsIm1vYmlsZV9zdWJfbGlua19jb2xvciI6IiNGMEY1RkEiLCJtb2JpbGVfbGlua19ob3ZlciI6IiNGMEY1RkEiLCJtb2JpbGVfbGlua19iZ19ob3ZlciI6IiMwNDZiZDIiLCJtb2JpbGVfc3ViX2xpbmtfYmdfaG92ZXIiOiIjMDQ2YmQyIiwibW9iaWxlX3N1Yl9saW5rX2hvdmVyIjoiI0YwRjVGQSIsImNsb3NlX2ljb25fY29sb3IiOiIjRjBGNUZBIiwiY2xvc2VfaWNvbl9jb2xvcl9ob3ZlciI6IiNGMEY1RkEiLCJkcm9wZG93bl90eXBvZ3JhcGh5X2ZvbnRfc2l6ZSI6eyJ1bml0IjoicHgiLCJzaXplIjoxNiwic2l6ZXMiOltdfSwidG9nZ2xlX3NpemVfbW9iaWxlIjp7InVuaXQiOiJweCIsInNpemUiOjE3LCJzaXplcyI6W119fSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoicHAtYWR2YW5jZWQtbWVudSJ9\\\"]\\t\\t<div class=\\\"elementor-element elementor-element-4027936a elementor-widget elementor-widget-button\\\" data-id=\\\"4027936a\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"button.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a class=\\\"elementor-button elementor-button-link elementor-size-sm\\\" href=\\\"https:\\/\\/mrarif.me\\/cpnordic\\/kontakt\\/\\\">\\n\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-content-wrapper\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-text\\\">Kontakt<\\/span>\\n\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t[elementor-element k=\\\"7e3dc5e517862d53cc17d5f276a76400\\\" data=\\\"eyJpZCI6IjM0OGJlNzJmIiwiZWxUeXBlIjoiY29udGFpbmVyIiwic2V0dGluZ3MiOnsiZmxleF9kaXJlY3Rpb24iOiJjb2x1bW4iLCJtaW5faGVpZ2h0Ijp7InVuaXQiOiJweCIsInNpemUiOjUwMCwic2l6ZXMiOltdfSwibWluX2hlaWdodF90YWJsZXRfZXh0cmEiOnsidW5pdCI6InB4Iiwic2l6ZSI6NDUwLCJzaXplcyI6W119LCJtaW5faGVpZ2h0X21vYmlsZV9leHRyYSI6eyJ1bml0IjoicHgiLCJzaXplIjozNTAsInNpemVzIjpbXX0sIm1pbl9oZWlnaHRfbW9iaWxlIjp7InVuaXQiOiJweCIsInNpemUiOjM1MCwic2l6ZXMiOltdfSwiZmxleF9qdXN0aWZ5X2NvbnRlbnQiOiJjZW50ZXIiLCJiYWNrZ3JvdW5kX2JhY2tncm91bmQiOiJjbGFzc2ljIiwiYmFja2dyb3VuZF9pbWFnZSI6eyJpZCI6NTcsInVybCI6Imh0dHBzOlwvXC9tcmFyaWYubWVcL2Nwbm9yZGljXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI2XC8wMVwvMTgyXzItMS1jb3B5cmlnaHQuanBnIiwiYWx0IjoiIiwic291cmNlIjoibGlicmFyeSIsInNpemUiOiIifSwiYmFja2dyb3VuZF9wb3NpdGlvbiI6ImNlbnRlciBjZW50ZXIiLCJiYWNrZ3JvdW5kX3JlcGVhdCI6Im5vLXJlcGVhdCIsImJhY2tncm91bmRfc2l6ZSI6ImNvdmVyIiwicHBfYW5pbWF0ZWRfZ3JhZGllbnRfYmdfY29sb3JfbGlzdCI6W3sicHBfYW5pbWF0ZWRfZ3JhZGllbnRfYmdfY29sb3IiOiIjRjZBRDFGIiwiX2lkIjoiZjI1YjBmYSJ9LHsicHBfYW5pbWF0ZWRfZ3JhZGllbnRfYmdfY29sb3IiOiIjRjc0OTZBIiwiX2lkIjoiODQ2MmYyMyJ9LHsicHBfYW5pbWF0ZWRfZ3JhZGllbnRfYmdfY29sb3IiOiIjNTY1QUQ4IiwiX2lkIjoiZjI1ZTMzMCJ9XSwiYmFja2dyb3VuZF9vdmVybGF5X2JhY2tncm91bmQiOiJncmFkaWVudCIsImJhY2tncm91bmRfb3ZlcmxheV9vcGFjaXR5Ijp7InVuaXQiOiJweCIsInNpemUiOjEsInNpemVzIjpbXX0sInBhZGRpbmciOnsidW5pdCI6InB4IiwidG9wIjoiMTIwIiwicmlnaHQiOiIxMCIsImJvdHRvbSI6IjEwIiwibGVmdCI6IjEwIiwiaXNMaW5rZWQiOmZhbHNlfSwicHBfZGlzcGxheV9jb25kaXRpb25zIjpbeyJwcF9jb25kaXRpb25fa2V5IjoicGFnZSIsInBwX2NvbmRpdGlvbl9vcGVyYXRvciI6Im5vdCIsIl9pZCI6ImVkYTQ2NTMiLCJwcF9jb25kaXRpb25fcGFnZV92YWx1ZSI6WyIxMCJdLCJwcF9jb25kaXRpb25fZGF0ZV90aW1lX2JlZm9yZV92YWx1ZSI6IjIwMjQtMDItMDEgMDk6NTMiLCJwcF9jb25kaXRpb25fZGF0ZV92YWx1ZSI6IjIwMjUtMDgtMjkgdG8gMjAyNS0wOS0wNCJ9XSwiX19nbG9iYWxzX18iOnsiYmFja2dyb3VuZF9vdmVybGF5X2NvbG9yIjoiZ2xvYmFsc1wvY29sb3JzP2lkPWFzdGdsb2JhbGNvbG9yNiIsImJhY2tncm91bmRfb3ZlcmxheV9jb2xvcl9iIjoiIn0sImJhY2tncm91bmRfb3ZlcmxheV9jb2xvciI6IiM0OGFhYWQiLCJiYWNrZ3JvdW5kX292ZXJsYXlfY29sb3JfYiI6IiMxRTI5M0IwQSIsImJhY2tncm91bmRfb3ZlcmxheV9ncmFkaWVudF9hbmdsZSI6eyJ1bml0IjoiZGVnIiwic2l6ZSI6MTc5LCJzaXplcyI6W119LCJjc3NfY2xhc3NlcyI6ImhlYWRlci1icmVhZGNydW1icy1zZWN0aW9uIiwicHBfZGlzcGxheV9jb25kaXRpb25zX2VuYWJsZSI6InllcyIsImVfZGlzcGxheV9jb25kaXRpb25zIjpbIltbe1wiY29uZGl0aW9uXCI6XCJwYWdlX3RpdGxlXCIsXCJjb21wYXJhdG9yXCI6XCJpc19ub3RcIixcInRpdGxlc1wiOlt7XCJpZFwiOjEwLFwidGV4dFwiOlwiSGplbVwifV19XV0iXX0sImVsZW1lbnRzIjpbeyJpZCI6IjEzZjZmMTU5IiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsiX19keW5hbWljX18iOnsidGl0bGUiOiJbZWxlbWVudG9yLXRhZyBpZD1cIlwiIG5hbWU9XCJwYWdlLXRpdGxlXCIgc2V0dGluZ3M9XCIlN0IlMjJpbmNsdWRlX2NvbnRleHQlMjIlM0ElMjIlMjIlMkMlMjJzaG93X2hvbWVfdGl0bGUlMjIlM0ElMjIlMjIlMkMlMjJiZWZvcmUlMjIlM0ElMjIlMjIlMkMlMjJhZnRlciUyMiUzQSUyMiUyMiUyQyUyMmZhbGxiYWNrJTIyJTNBJTIyJTIyJTdEXCJdIn0sInRpdGxlIjoiQWRkIFlvdXIgSGVhZGluZyBUZXh0IEhlcmUiLCJhbGlnbiI6ImNlbnRlciIsInBwX2Rpc3BsYXlfY29uZGl0aW9ucyI6W3siX2lkIjoiM2IzMGU4ZiIsInBwX2NvbmRpdGlvbl9kYXRlX3RpbWVfYmVmb3JlX3ZhbHVlIjoiMjAyNC0wMi0wMSAwOTo1MyIsInBwX2NvbmRpdGlvbl9kYXRlX3ZhbHVlIjoiMjAyNS0wOC0yOSB0byAyMDI1LTA5LTA0In1dLCJwcF9lbGVtZW50c190b29sdGlwX2NvbnRlbnQiOiJUb29sdGlwIENvbnRlbnQiLCJfYW5pbWF0aW9uIjoiem9vbUluIiwiX19nbG9iYWxzX18iOnsidGl0bGVfY29sb3IiOiJnbG9iYWxzXC9jb2xvcnM\\/aWQ9YXN0Z2xvYmFsY29sb3I1In19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJ0aGVtZS1wYWdlLXRpdGxlIn1dLCJpc0lubmVyIjpmYWxzZX0=\\\"]\",\"scripts\":[],\"styles\":[]}}'),
(7102, 746, '_elementor_edit_mode', 'builder'),
(7103, 746, '_elementor_template_type', 'wp-page'),
(7104, 746, '_elementor_version', '3.34.2'),
(7105, 746, '_elementor_pro_version', '3.34.2'),
(7106, 746, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7107, 746, '_elementor_data', '[{\"id\":\"1e332a51\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1600399\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3f02c7e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"69bbd48\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9bbb579\",\"pp_condition_date_time_before_value\":\"2024-06-13 12:14\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"id\":\"\",\"url\":\"\"},\"background_position\":\"bottom right\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"\"},\"background_overlay_position\":\"top left\",\"background_overlay_attachment\":\"scroll\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#F8F8F8\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"a4da8ee\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8791aed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe09348\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"935d9bd\"}],\"pp_display_conditions\":[{\"_id\":\"faf5fd2\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}]},\"elements\":[{\"id\":\"49d71336\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kontaktoplysninger\",\"align\":\"left\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"802d5d7\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"750c99c1\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"editor\":\"Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid\\nvelkommen til at kontakte os for en uforpligtende snak.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c93489c\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"33ff5776\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"def43cb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c8cfb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e7a215\"}],\"pp_display_conditions\":[{\"_id\":\"daade15\",\"pp_condition_date_time_before_value\":\"2024-06-13 12:14\"}],\"flex_direction\":\"row\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_direction_tablet\":\"row\",\"flex_justify_content\":\"center\",\"flex_justify_content_tablet\":\"space-around\",\"flex_wrap\":\"wrap\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"5414ae23\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ca201cd\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"7db42375\",\"elType\":\"widget\",\"settings\":{\"title\":\"Placering\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"470d48aa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Fyn, Denmark\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a2184f8\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5511ffdf\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"6b6d887e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":504,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/smartphone_230142.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"3676670c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ring til os\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d86beaa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"41 60 00 40\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:41600040\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ce5f04f\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"64f3768f\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"55c9290\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":505,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/email_542689.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"397a533e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Send os en email\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a6b4fdc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"kontakt@cp-nordic.dk\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a2184f8\",\"link\":{\"url\":\"mailto:kontakt@cp-nordic.dk\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\",\"content_width\":\"full\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1629e761\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"3f0b36ba\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"304a3dc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d9ec4b\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Navn\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"tel\",\"field_label\":\"Telefon\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\"},{\"field_type\":\"select\",\"field_label\":\"Tjenesters navn\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Beskeder\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Roboto\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"field_typography_font_weight\":\"400\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true},{\"id\":\"636e2bca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5f31bac\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"32a9521\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dea9376\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7ff945\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"54da3f3a\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title\":\"KONTAKT OS\",\"pp_display_conditions\":[{\"_id\":\"156b1a5\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align_mobile_extra\":\"center\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79c5eed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi d\\u00e6kker hele Fyn \\u2013 og tager ogs\\u00e5 gerne opgaver uden for omr\\u00e5det, n\\u00e5r der er tale om sp\\u00e6ndende eller teknisk kr\\u00e6vende l\\u00f8sninger.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e03db8a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c76d79\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"1a75682\",\"link\":{\"url\":\"https:\\/\\/www.facebook.com\\/cpnordic\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"da32d70\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/cpnordic\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.6,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"589cdcb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor6\"},\"icon_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"left\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(7638, 104, '_elementor_element_cache', '{\"timeout\":1782294593,\"value\":{\"content\":\"<div class=\\\"elementor-element elementor-element-3cf69bc7 e-flex e-con-boxed e-con e-parent\\\" data-id=\\\"3cf69bc7\\\" data-element_type=\\\"container\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"e-con-inner\\\">\\n\\t\\t<div class=\\\"elementor-element elementor-element-7d433401 e-con-full e-flex e-con e-child\\\" data-id=\\\"7d433401\\\" data-element_type=\\\"container\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-4b245e0 elementor-widget__width-initial elementor-widget elementor-widget-image\\\" data-id=\\\"4b245e0\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"image.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"2560\\\" height=\\\"1157\\\" src=\\\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/Transparent-File-02-scaled.png\\\" class=\\\"attachment-full size-full wp-image-49\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/Transparent-File-02-scaled.png 2560w, https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/Transparent-File-02-300x136.png 300w, https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/Transparent-File-02-1024x463.png 1024w, https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/Transparent-File-02-768x347.png 768w, https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/Transparent-File-02-1536x694.png 1536w, https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/Transparent-File-02-2048x925.png 2048w\\\" sizes=\\\"(max-width: 2560px) 100vw, 2560px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t[elementor-element k=\\\"7e3dc5e517862d53cc17d5f276a76400\\\" data=\\\"eyJpZCI6IjdhNzc4NDIiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlZGl0b3IiOiJXZSBjb3ZlciBhbGwgb2YgRnVuZW4gYW5kIGFsc28gb3BlcmF0ZSB0aHJvdWdob3V0IERlbm1hcmsgYnkgYWdyZWVtZW50Ljxicj5cblxuQ1ZSOiA0NTQ1ODgzMCIsImFsaWduX3RhYmxldCI6ImNlbnRlciIsInR5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsInR5cG9ncmFwaHlfZm9udF9mYW1pbHkiOiJSb2JvdG8iLCJ0eXBvZ3JhcGh5X2ZvbnRfc2l6ZSI6eyJ1bml0IjoicHgiLCJzaXplIjoxNiwic2l6ZXMiOltdfSwidHlwb2dyYXBoeV9mb250X3dlaWdodCI6IjQwMCIsInRleHRfY29sb3IiOiIjRjNGM0YzIiwiX3BhZGRpbmciOnsidW5pdCI6InB4IiwidG9wIjoiMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sIl9lbGVtZW50X3dpZHRoIjoiaW5pdGlhbCIsIl9lbGVtZW50X2N1c3RvbV93aWR0aCI6eyJ1bml0IjoicHgiLCJzaXplIjoyOTUsInNpemVzIjpbXX0sInBwX2Rpc3BsYXlfY29uZGl0aW9ucyI6W3siX2lkIjoiNDBlZGMwYiJ9XSwicHBfZWxlbWVudHNfdG9vbHRpcF9jb250ZW50IjoiVG9vbHRpcCBDb250ZW50IiwiX19nbG9iYWxzX18iOnsidGV4dF9jb2xvciI6IiJ9fSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoidGV4dC1lZGl0b3IifQ==\\\"]\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-3f1c0dda e-con-full e-flex e-con e-child\\\" data-id=\\\"3f1c0dda\\\" data-element_type=\\\"container\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-25ffa917 elementor-widget__width-inherit elementor-widget elementor-widget-heading\\\" data-id=\\\"25ffa917\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t\\t<h5 class=\\\"elementor-heading-title elementor-size-default\\\">Quick Links<\\/h5>\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-6373b647 elementor-tablet-align-center elementor-mobile_extra-align-center elementor-icon-list--layout-traditional elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list\\\" data-id=\\\"6373b647\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"icon-list.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t<ul class=\\\"elementor-icon-list-items\\\">\\n\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a href=\\\"https:\\/\\/mrarif.me\\/cpnordic\\/\\\">\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">Hjem<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a href=\\\"https:\\/\\/mrarif.me\\/cpnordic\\/tjenester\\/\\\">\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">Tjenester<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a href=\\\"https:\\/\\/mrarif.me\\/cpnordic\\/referencer\\/\\\">\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">Referencer<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a href=\\\"https:\\/\\/mrarif.me\\/cpnordic\\/om-os\\/\\\">\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">Om os<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a href=\\\"https:\\/\\/mrarif.me\\/cpnordic\\/kontakt\\/\\\">\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">Kontakt<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-7b991634 e-con-full e-flex e-con e-child\\\" data-id=\\\"7b991634\\\" data-element_type=\\\"container\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-1dc7df4b elementor-widget__width-inherit elementor-widget elementor-widget-heading\\\" data-id=\\\"1dc7df4b\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t\\t<h5 class=\\\"elementor-heading-title elementor-size-default\\\">Contact Info<\\/h5>\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-45a55ad8 elementor-tablet-align-center elementor-mobile_extra-align-center elementor-icon-list--layout-traditional elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list\\\" data-id=\\\"45a55ad8\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"icon-list.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t<ul class=\\\"elementor-icon-list-items\\\">\\n\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a href=\\\"https:\\/\\/maps.google.com\\/maps?ll=55.178036,10.52236&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=B%C3%B8jdenvejen%207%205772%20Kv%C3%A6rndrup%20Denmark\\\" target=\\\"_blank\\\">\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" class=\\\"e-font-icon-svg e-fas-map-marker-alt\\\" viewBox=\\\"0 0 384 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">CP NORDIC ApS : B\\u00f8jdenvejen 7, 5772 Kv\\u00e6rndrup<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a href=\\\"tel:41600040\\\">\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" class=\\\"e-font-icon-svg e-fas-phone-alt\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">41 60 00 40<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a href=\\\"mailto:kontakt@cp-nordic.dk\\\">\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" class=\\\"e-font-icon-svg e-far-envelope\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">kontakt@cp-nordic.dk<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-d5ed30d elementor-shape-circle e-grid-align-left e-grid-align-tablet-center elementor-grid-0 elementor-widget elementor-widget-social-icons\\\" data-id=\\\"d5ed30d\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"social-icons.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-social-icons-wrapper elementor-grid\\\" role=\\\"list\\\">\\n\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-grid-item\\\" role=\\\"listitem\\\">\\n\\t\\t\\t\\t\\t<a class=\\\"elementor-icon elementor-social-icon elementor-social-icon-facebook-f elementor-repeater-item-1a75682\\\" href=\\\"https:\\/\\/www.facebook.com\\/cpnordic\\/\\\" target=\\\"_blank\\\">\\n\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-screen-only\\\">Facebook-f<\\/span>\\n\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" class=\\\"e-font-icon-svg e-fab-facebook-f\\\" viewBox=\\\"0 0 320 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-grid-item\\\" role=\\\"listitem\\\">\\n\\t\\t\\t\\t\\t<a class=\\\"elementor-icon elementor-social-icon elementor-social-icon-instagram elementor-repeater-item-da32d70\\\" href=\\\"https:\\/\\/www.instagram.com\\/cpnordic\\/\\\" target=\\\"_blank\\\">\\n\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-screen-only\\\">Instagram<\\/span>\\n\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" class=\\\"e-font-icon-svg e-fab-instagram\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-23c37f3 e-con-full e-flex e-con e-child\\\" data-id=\\\"23c37f3\\\" data-element_type=\\\"container\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-4bb313b elementor-widget elementor-widget-google_maps\\\" data-id=\\\"4bb313b\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"google_maps.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-custom-embed\\\">\\n\\t\\t\\t<iframe loading=\\\"lazy\\\"\\n\\t\\t\\t\\t\\tsrc=\\\"https:\\/\\/maps.google.com\\/maps?q=B%C3%B8jdenvejen%207%2C%205772%20Kv%C3%A6rndrup&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\\\"\\n\\t\\t\\t\\t\\ttitle=\\\"B\\u00f8jdenvejen 7, 5772 Kv\\u00e6rndrup\\\"\\n\\t\\t\\t\\t\\taria-label=\\\"B\\u00f8jdenvejen 7, 5772 Kv\\u00e6rndrup\\\"\\n\\t\\t\\t><\\/iframe>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-5e55ea6 e-flex e-con-boxed e-con e-parent\\\" data-id=\\\"5e55ea6\\\" data-element_type=\\\"container\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"e-con-inner\\\">\\n\\t\\t<div class=\\\"elementor-element elementor-element-543e7817 e-con-full e-flex e-con e-child\\\" data-id=\\\"543e7817\\\" data-element_type=\\\"container\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-29e327ba elementor-tablet-align-center elementor-mobile_extra-align-center elementor-icon-list--layout-inline elementor-align-center elementor-mobile-align-center elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list\\\" data-id=\\\"29e327ba\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"icon-list.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t<ul class=\\\"elementor-icon-list-items elementor-inline-items\\\">\\n\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item elementor-inline-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">\\u00a9 Copyright 2026 all rights reserved<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\",\"scripts\":[],\"styles\":[]}}'),
(7120, 747, '_elementor_page_settings', 'a:0:{}'),
(7121, 748, '_elementor_edit_mode', 'builder'),
(7122, 748, '_elementor_template_type', 'wp-page'),
(7123, 748, '_elementor_version', '3.34.2'),
(7124, 748, '_elementor_pro_version', '3.34.2'),
(7125, 748, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7126, 748, '_elementor_data', '[{\"id\":\"1e332a51\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1600399\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3f02c7e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"69bbd48\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9bbb579\",\"pp_condition_date_time_before_value\":\"2024-06-13 12:14\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"id\":\"\",\"url\":\"\"},\"background_position\":\"bottom right\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"\"},\"background_overlay_position\":\"top left\",\"background_overlay_attachment\":\"scroll\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#F8F8F8\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"a4da8ee\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8791aed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe09348\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"935d9bd\"}],\"pp_display_conditions\":[{\"_id\":\"faf5fd2\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}]},\"elements\":[{\"id\":\"49d71336\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kontaktoplysninger\",\"align\":\"left\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"802d5d7\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"750c99c1\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"editor\":\"Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid\\nvelkommen til at kontakte os for en uforpligtende snak.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c93489c\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"33ff5776\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"def43cb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c8cfb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e7a215\"}],\"pp_display_conditions\":[{\"_id\":\"daade15\",\"pp_condition_date_time_before_value\":\"2024-06-13 12:14\"}],\"flex_direction\":\"row\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_direction_tablet\":\"row\",\"flex_justify_content\":\"center\",\"flex_justify_content_tablet\":\"space-around\",\"flex_wrap\":\"wrap\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"5414ae23\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ca201cd\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"7db42375\",\"elType\":\"widget\",\"settings\":{\"title\":\"Placering\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"470d48aa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Fyn, Denmark\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a2184f8\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5511ffdf\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"6b6d887e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":504,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/smartphone_230142.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"3676670c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ring til os\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d86beaa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"41 60 00 40\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:41600040\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ce5f04f\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"64f3768f\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"55c9290\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":505,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/email_542689.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"397a533e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Send os en email\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a6b4fdc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"kontakt@cp-nordic.dk\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a2184f8\",\"link\":{\"url\":\"mailto:kontakt@cp-nordic.dk\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\",\"content_width\":\"full\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1629e761\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"3f0b36ba\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"304a3dc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d9ec4b\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Navn\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"tel\",\"field_label\":\"Telefon\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\"},{\"field_type\":\"select\",\"field_label\":\"Tjenesters navn\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Beskeder\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Roboto\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"field_typography_font_weight\":\"400\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true},{\"id\":\"636e2bca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5f31bac\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"32a9521\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dea9376\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7ff945\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"54da3f3a\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title\":\"KONTAKT OS\",\"pp_display_conditions\":[{\"_id\":\"156b1a5\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align_mobile_extra\":\"center\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79c5eed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi d\\u00e6kker hele Fyn \\u2013 og tager ogs\\u00e5 gerne opgaver uden for omr\\u00e5det, n\\u00e5r der er tale om sp\\u00e6ndende eller teknisk kr\\u00e6vende l\\u00f8sninger.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e03db8a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c76d79\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"1a75682\",\"link\":{\"url\":\"https:\\/\\/www.facebook.com\\/cpnordic\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"da32d70\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/cpnordic\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.6,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"589cdcb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor6\"},\"icon_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"left\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(7128, 748, '_elementor_page_settings', 'a:0:{}'),
(7129, 749, '_elementor_edit_mode', 'builder'),
(7130, 749, '_elementor_template_type', 'wp-page'),
(7131, 749, '_elementor_version', '3.34.2'),
(7132, 749, '_elementor_pro_version', '3.34.2'),
(7133, 749, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7134, 749, '_elementor_data', '[{\"id\":\"1e332a51\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1600399\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3f02c7e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"69bbd48\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9bbb579\",\"pp_condition_date_time_before_value\":\"2024-06-13 12:14\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"id\":\"\",\"url\":\"\"},\"background_position\":\"bottom right\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"\"},\"background_overlay_position\":\"top left\",\"background_overlay_attachment\":\"scroll\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#F8F8F8\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"a4da8ee\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8791aed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe09348\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"935d9bd\"}],\"pp_display_conditions\":[{\"_id\":\"faf5fd2\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}]},\"elements\":[{\"id\":\"49d71336\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kontaktoplysninger\",\"align\":\"left\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"802d5d7\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"750c99c1\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"editor\":\"Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid\\nvelkommen til at kontakte os for en uforpligtende snak.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c93489c\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"33ff5776\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"def43cb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c8cfb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e7a215\"}],\"pp_display_conditions\":[{\"_id\":\"daade15\",\"pp_condition_date_time_before_value\":\"2024-06-13 12:14\"}],\"flex_direction\":\"row\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_direction_tablet\":\"row\",\"flex_justify_content\":\"center\",\"flex_justify_content_tablet\":\"space-around\",\"flex_wrap\":\"wrap\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"5414ae23\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ca201cd\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"7db42375\",\"elType\":\"widget\",\"settings\":{\"title\":\"Placering\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"470d48aa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Fyn, Denmark\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a2184f8\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5511ffdf\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"6b6d887e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":504,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/smartphone_230142.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"3676670c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ring til os\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d86beaa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"41 60 00 40\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:41600040\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ce5f04f\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"64f3768f\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"55c9290\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":505,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/email_542689.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"397a533e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Send os en email\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a6b4fdc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"kontakt@cp-nordic.dk\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a2184f8\",\"link\":{\"url\":\"mailto:kontakt@cp-nordic.dk\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\",\"content_width\":\"full\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1629e761\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"3f0b36ba\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column-reverse\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"304a3dc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d9ec4b\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Navn\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"tel\",\"field_label\":\"Telefon\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\"},{\"field_type\":\"select\",\"field_label\":\"Tjenesters navn\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Beskeder\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Roboto\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"field_typography_font_weight\":\"400\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true},{\"id\":\"636e2bca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5f31bac\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"32a9521\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dea9376\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7ff945\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"54da3f3a\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title\":\"KONTAKT OS\",\"pp_display_conditions\":[{\"_id\":\"156b1a5\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align_mobile_extra\":\"center\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79c5eed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Vi d\\u00e6kker hele Fyn \\u2013 og tager ogs\\u00e5 gerne opgaver uden for omr\\u00e5det, n\\u00e5r der er tale om sp\\u00e6ndende eller teknisk kr\\u00e6vende l\\u00f8sninger.\",\"pp_display_conditions\":[{\"_id\":\"e03db8a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align_mobile_extra\":\"center\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c76d79\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"1a75682\",\"link\":{\"url\":\"https:\\/\\/www.facebook.com\\/cpnordic\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"da32d70\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/cpnordic\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.6,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"589cdcb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor6\"},\"icon_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"left\",\"align_tablet\":\"left\",\"align_mobile_extra\":\"center\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(7136, 18, '_elementor_page_settings', 'a:0:{}'),
(7137, 18, '_elementor_controls_usage', 'a:7:{s:7:\"heading\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:5;s:11:\"header_size\";i:3;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:5:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:4;s:22:\"typography_line_height\";i:4;s:23:\"typography_word_spacing\";i:4;s:22:\"typography_font_weight\";i:3;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;s:16:\"_flex_align_self\";i:1;}s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:5;}s:15:\"_section_border\";a:2:{s:14:\"_border_border\";i:1;s:13:\"_border_width\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;s:16:\"_flex_align_self\";i:1;}s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:2;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:5:\"style\";a:4:{s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:10;}s:18:\"section_background\";a:7:{s:21:\"background_background\";i:6;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:16:\"background_color\";i:1;}s:14:\"section_border\";a:7:{s:13:\"border_border\";i:3;s:12:\"border_width\";i:3;s:12:\"border_color\";i:3;s:26:\"box_shadow_box_shadow_type\";i:3;s:21:\"box_shadow_box_shadow\";i:3;s:32:\"box_shadow_hover_box_shadow_type\";i:3;s:27:\"box_shadow_hover_box_shadow\";i:3;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:29:\"background_overlay_attachment\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}s:8:\"advanced\";a:3:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:10;}s:14:\"section_layout\";a:2:{s:7:\"padding\";i:6;s:6:\"margin\";i:1;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:5;s:18:\"animation_duration\";i:4;}}s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:6:{s:16:\"flex_align_items\";i:3;s:13:\"content_width\";i:6;s:5:\"width\";i:5;s:14:\"flex_direction\";i:4;s:20:\"flex_justify_content\";i:3;s:9:\"flex_wrap\";i:1;}}}}s:4:\"icon\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:13:\"selected_icon\";i:3;}}s:5:\"style\";a:1:{s:18:\"section_style_icon\";a:2:{s:5:\"align\";i:3;s:4:\"size\";i:3;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:3;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:3;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:3;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}s:18:\"section_text_style\";a:1:{s:16:\"text_color_hover\";i:3;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:3;}}}}s:4:\"form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:4:{s:19:\"section_form_fields\";a:2:{s:11:\"form_fields\";i:1;s:10:\"input_size\";i:1;}s:15:\"section_buttons\";a:1:{s:11:\"button_size\";i:1;}s:13:\"section_email\";a:3:{s:13:\"form_metadata\";i:1;s:13:\"email_subject\";i:1;s:15:\"email_from_name\";i:1;}s:15:\"section_email_2\";a:2:{s:15:\"email_subject_2\";i:1;s:17:\"email_from_name_2\";i:1;}}s:8:\"advanced\";a:4:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:1;}s:15:\"_section_border\";a:3:{s:14:\"_border_border\";i:1;s:13:\"_border_width\";i:1;s:13:\"_border_color\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_form_style\";a:7:{s:10:\"column_gap\";i:1;s:7:\"row_gap\";i:1;s:13:\"label_spacing\";i:1;s:27:\"label_typography_typography\";i:1;s:28:\"label_typography_font_family\";i:1;s:26:\"label_typography_font_size\";i:1;s:28:\"label_typography_font_weight\";i:1;}s:19:\"section_field_style\";a:6:{s:18:\"field_border_color\";i:1;s:19:\"field_border_radius\";i:1;s:27:\"field_typography_typography\";i:1;s:28:\"field_typography_font_family\";i:1;s:26:\"field_typography_font_size\";i:1;s:28:\"field_typography_font_weight\";i:1;}s:20:\"section_button_style\";a:4:{s:20:\"button_border_radius\";i:1;s:23:\"button_background_color\";i:1;s:29:\"button_background_hover_color\";i:1;s:19:\"button_text_padding\";i:1;}}}}s:12:\"social-icons\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:5:{s:16:\"social_icon_list\";i:1;s:5:\"shape\";i:1;s:5:\"align\";i:1;s:12:\"align_tablet\";i:1;s:18:\"align_mobile_extra\";i:1;}}s:5:\"style\";a:1:{s:20:\"section_social_style\";a:5:{s:10:\"icon_color\";i:1;s:9:\"icon_size\";i:1;s:12:\"icon_padding\";i:1;s:12:\"icon_spacing\";i:1;s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}}'),
(4517, 498, '_elementor_edit_mode', 'builder'),
(4518, 498, '_elementor_template_type', 'wp-page'),
(4519, 498, '_elementor_version', '3.34.2'),
(4520, 498, '_elementor_pro_version', '3.34.2'),
(4521, 498, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4522, 498, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\",\"id\":57,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle ANMELDELSER\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]}},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"HVORFOR V\\u00c6LGE CP NORDIC ApS?\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79206f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>N\\u00e5r du v\\u00e6lger CP NORDIC ApS, f\\u00e5r du:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"44023b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/teamwork_4546121.svg\",\"id\":472},\"library\":\"svg\"},\"title_text\":\"et ungt og engageret team\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/effective_1401921.svg\",\"id\":474},\"library\":\"svg\"},\"title_text\":\"fokus p\\u00e5 kvalitet og detaljer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/communication_18765280.svg\",\"id\":479},\"library\":\"svg\"},\"title_text\":\"\\u00e6rlig<br> r\\u00e5dgivning\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/brainstorming_11663441.svg\",\"id\":480},\"library\":\"svg\"},\"title_text\":\"gennemt\\u00e6nkte l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c0f2190\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"327bd23\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/like_3941426.svg\",\"id\":481},\"library\":\"svg\"},\"title_text\":\"arbejde udf\\u00f8rt med ansvar\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4481, 494, '_wp_attached_file', '2026/01/social_14518127.svg'),
(4482, 494, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:5212;s:5:\"width\";i:96;s:6:\"height\";i:96;}'),
(4491, 495, '_elementor_page_settings', 'a:0:{}'),
(4494, 496, '_elementor_edit_mode', 'builder'),
(4495, 496, '_elementor_template_type', 'wp-page'),
(4496, 496, '_elementor_version', '3.34.2'),
(4497, 496, '_elementor_pro_version', '3.34.2'),
(4498, 496, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4499, 496, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\",\"id\":57,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle ANMELDELSER\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]}},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"HVORFOR V\\u00c6LGE CP NORDIC ApS?\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79206f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>N\\u00e5r du v\\u00e6lger CP NORDIC ApS, f\\u00e5r du:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"44023b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/teamwork_4546121.svg\",\"id\":472},\"library\":\"svg\"},\"title_text\":\"et ungt og engageret team\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/effective_1401921.svg\",\"id\":474},\"library\":\"svg\"},\"title_text\":\"fokus p\\u00e5 kvalitet og detaljer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/communication_18765280.svg\",\"id\":479},\"library\":\"svg\"},\"title_text\":\"\\u00e6rlig<br> r\\u00e5dgivning\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/brainstorming_11663441.svg\",\"id\":480},\"library\":\"svg\"},\"title_text\":\"gennemt\\u00e6nkte l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c0f2190\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"327bd23\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/like_3941426.svg\",\"id\":481},\"library\":\"svg\"},\"title_text\":\"arbejde udf\\u00f8rt med ansvar\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4501, 496, '_elementor_page_settings', 'a:0:{}'),
(4505, 497, '_elementor_template_type', 'wp-page'),
(4506, 497, '_elementor_version', '3.34.2'),
(4507, 497, '_elementor_pro_version', '3.34.2'),
(4508, 497, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4509, 497, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\",\"id\":57,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle ANMELDELSER\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]}},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"HVORFOR V\\u00c6LGE CP NORDIC ApS?\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79206f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>N\\u00e5r du v\\u00e6lger CP NORDIC ApS, f\\u00e5r du:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"44023b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/teamwork_4546121.svg\",\"id\":472},\"library\":\"svg\"},\"title_text\":\"et ungt og engageret team\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/effective_1401921.svg\",\"id\":474},\"library\":\"svg\"},\"title_text\":\"fokus p\\u00e5 kvalitet og detaljer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/communication_18765280.svg\",\"id\":479},\"library\":\"svg\"},\"title_text\":\"\\u00e6rlig<br> r\\u00e5dgivning\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/brainstorming_11663441.svg\",\"id\":480},\"library\":\"svg\"},\"title_text\":\"gennemt\\u00e6nkte l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c0f2190\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"327bd23\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/like_3941426.svg\",\"id\":481},\"library\":\"svg\"},\"title_text\":\"arbejde udf\\u00f8rt med ansvar\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7147, 750, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(7148, 750, '_elementor_screenshot_failed', '2026-01-26 15:09:14'),
(7174, 752, '_elementor_source', 'post'),
(7175, 752, '_elementor_edit_mode', 'builder'),
(7176, 752, '_elementor_template_type', 'footer'),
(7177, 752, '_elementor_version', '3.34.2'),
(7178, 752, '_elementor_pro_version', '3.34.2'),
(7179, 752, '_wp_page_template', 'default'),
(7180, 752, '_elementor_data', '[{\"id\":\"3cf69bc7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"background_color\":\"#121212\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"flex_direction_tablet\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"56542ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ba59e70\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"65fd471\"}],\"pp_display_conditions\":[{\"_id\":\"890752a\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\"}]},\"elements\":[{\"id\":\"7d433401\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"boxed_width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e0467be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fba2414\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"86eef93\"}],\"pp_display_conditions\":[{\"_id\":\"892bbfe\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\"}],\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"100\",\"bottom\":\"10\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"flex_align_items_tablet\":\"center\"},\"elements\":[{\"id\":\"4b245e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/Transparent-File-02-scaled.png\",\"id\":49,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"3584c9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":240,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7a77842\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We cover all of Funen and also operate throughout Denmark by agreement.<br>\\n\\nCVR: 45458830\",\"align_tablet\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"text_color\":\"#F3F3F3\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":295,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"40edc0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3f1c0dda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":17,\"sizes\":[]},\"boxed_width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"boxed_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"wrap\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content_tablet\":\"center\",\"flex_align_items_tablet\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9cef852\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3267f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"568580d\"}],\"pp_display_conditions\":[{\"_id\":\"3b43c19\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\"}]},\"elements\":[{\"id\":\"25ffa917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick Links\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"97f1c92\",\"pp_condition_date_time_before_value\":\"2023-11-08 15:26\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\"}],\"align_tablet\":\"center\",\"align_mobile_extra\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"_element_width\":\"inherit\",\"typography_typography\":\"custom\",\"title_color\":\"#FFFFFF\",\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6373b647\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Hjem\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5dee041\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Tjenester\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"fdf1982\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/tjenester\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Referencer\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/referencer\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5076fdb\"},{\"text\":\"Om os\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/om-os\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1cdf804\"},{\"text\":\"Kontakt\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/kontakt\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"085decf\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"db62914\",\"pp_condition_date_time_before_value\":\"2023-11-08 15:26\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\"}],\"icon_align_tablet\":\"center\",\"icon_align_mobile_extra\":\"center\",\"__globals__\":{\"text_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=accent\"},\"text_color\":\"#E2E2E2\",\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_elements_tooltip_content\":\"Tooltip Content\",\"icon_typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7b991634\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ac9468\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f73d65c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e9fdb2\"}],\"pp_display_conditions\":[{\"_id\":\"6b3e2fa\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\"}]},\"elements\":[{\"id\":\"1dc7df4b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"97f1c92\",\"pp_condition_date_time_before_value\":\"2023-11-08 15:26\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\"}],\"align_tablet\":\"center\",\"align_mobile_extra\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"_element_width\":\"inherit\",\"title_color\":\"#FFFFFF\",\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45a55ad8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"CP NORDIC ApS : B\\u00f8jdenvejen 7, 5772 Kv\\u00e6rndrup\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"857a7bd\",\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"}},{\"text\":\"41 60 00 40\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:41600040\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f722a06\"},{\"text\":\"kontakt@cp-nordic.dk\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:kontakt@cp-nordic.dk\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f7076d3\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"db62914\",\"pp_condition_date_time_before_value\":\"2023-11-08 15:26\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\"}],\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align_tablet\":\"center\",\"icon_align_mobile_extra\":\"center\",\"icon_vertical_offset_mobile_extra\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_self_align_mobile_extra\":\"left\",\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=accent\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_vertical_offset_tablet\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"text_color\":\"#E2E2E2\",\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_elements_tooltip_content\":\"Tooltip Content\",\"icon_typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"d5ed30d\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"1a75682\",\"link\":{\"url\":\"https:\\/\\/www.facebook.com\\/cpnordic\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"da32d70\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/cpnordic\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.6,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"589cdcb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor6\"},\"icon_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"left\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"23c37f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ac9468\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f73d65c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e9fdb2\"}],\"pp_display_conditions\":[{\"_id\":\"6b3e2fa\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\"}]},\"elements\":[{\"id\":\"4bb313b\",\"elType\":\"widget\",\"settings\":{\"address\":\"B\\u00f8jdenvejen 7, 5772 Kv\\u00e6rndrup\",\"height\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"c3942e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5e55ea6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"flex_direction_tablet\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"56542ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ba59e70\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"65fd471\"}],\"pp_display_conditions\":[{\"_id\":\"890752a\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#222121\"},\"elements\":[{\"id\":\"543e7817\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"boxed_width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"boxed_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"wrap\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content_tablet\":\"center\",\"flex_align_items_tablet\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9cef852\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3267f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"568580d\"}],\"pp_display_conditions\":[{\"_id\":\"3b43c19\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"29e327ba\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u00a9 Copyright 2026 all rights reserved\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5dee041\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"db62914\",\"pp_condition_date_time_before_value\":\"2023-11-08 15:26\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"icon_align_tablet\":\"center\",\"icon_align_mobile_extra\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color_hover\":\"\"},\"text_color\":\"#FFFFFF\",\"pp_elements_tooltip_content\":\"Tooltip Content\",\"icon_typography_font_weight\":\"500\",\"view\":\"inline\",\"icon_align\":\"center\",\"icon_align_mobile\":\"center\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(7166, 751, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(7189, 753, '_elementor_source', 'post'),
(7190, 753, '_elementor_edit_mode', 'builder'),
(7191, 753, '_elementor_template_type', 'footer'),
(7192, 753, '_elementor_version', '3.34.2'),
(7193, 753, '_elementor_pro_version', '3.34.2'),
(7194, 753, '_wp_page_template', 'default'),
(7195, 753, '_elementor_data', '[{\"id\":\"3cf69bc7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"background_color\":\"#121212\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"flex_direction_tablet\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"56542ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ba59e70\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"65fd471\"}],\"pp_display_conditions\":[{\"_id\":\"890752a\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\"}]},\"elements\":[{\"id\":\"7d433401\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"boxed_width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e0467be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fba2414\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"86eef93\"}],\"pp_display_conditions\":[{\"_id\":\"892bbfe\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\"}],\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"100\",\"bottom\":\"10\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"flex_align_items_tablet\":\"center\"},\"elements\":[{\"id\":\"4b245e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/Transparent-File-02-scaled.png\",\"id\":49,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"3584c9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":240,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7a77842\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We cover all of Funen and also operate throughout Denmark by agreement.<br>\\n\\nCVR: 45458830\",\"align_tablet\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"text_color\":\"#F3F3F3\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":295,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"40edc0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3f1c0dda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":17,\"sizes\":[]},\"boxed_width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"boxed_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"wrap\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content_tablet\":\"center\",\"flex_align_items_tablet\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9cef852\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3267f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"568580d\"}],\"pp_display_conditions\":[{\"_id\":\"3b43c19\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\"}]},\"elements\":[{\"id\":\"25ffa917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick Links\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"97f1c92\",\"pp_condition_date_time_before_value\":\"2023-11-08 15:26\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\"}],\"align_tablet\":\"center\",\"align_mobile_extra\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"_element_width\":\"inherit\",\"typography_typography\":\"custom\",\"title_color\":\"#FFFFFF\",\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6373b647\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Hjem\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5dee041\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Tjenester\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"fdf1982\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/tjenester\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Referencer\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/referencer\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5076fdb\"},{\"text\":\"Om os\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/om-os\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1cdf804\"},{\"text\":\"Kontakt\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/kontakt\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"085decf\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"db62914\",\"pp_condition_date_time_before_value\":\"2023-11-08 15:26\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\"}],\"icon_align_tablet\":\"center\",\"icon_align_mobile_extra\":\"center\",\"__globals__\":{\"text_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=accent\"},\"text_color\":\"#E2E2E2\",\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_elements_tooltip_content\":\"Tooltip Content\",\"icon_typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7b991634\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ac9468\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f73d65c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e9fdb2\"}],\"pp_display_conditions\":[{\"_id\":\"6b3e2fa\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\"}]},\"elements\":[{\"id\":\"1dc7df4b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"97f1c92\",\"pp_condition_date_time_before_value\":\"2023-11-08 15:26\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\"}],\"align_tablet\":\"center\",\"align_mobile_extra\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"_element_width\":\"inherit\",\"title_color\":\"#FFFFFF\",\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45a55ad8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"CP NORDIC ApS : B\\u00f8jdenvejen 7, 5772 Kv\\u00e6rndrup\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"857a7bd\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=55.178036,10.52236&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=B%C3%B8jdenvejen%207%205772%20Kv%C3%A6rndrup%20Denmark\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"41 60 00 40\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:41600040\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f722a06\"},{\"text\":\"kontakt@cp-nordic.dk\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:kontakt@cp-nordic.dk\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f7076d3\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"db62914\",\"pp_condition_date_time_before_value\":\"2023-11-08 15:26\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\"}],\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align_tablet\":\"center\",\"icon_align_mobile_extra\":\"center\",\"icon_vertical_offset_mobile_extra\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_self_align_mobile_extra\":\"left\",\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=accent\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_vertical_offset_tablet\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"text_color\":\"#E2E2E2\",\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_elements_tooltip_content\":\"Tooltip Content\",\"icon_typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"d5ed30d\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"1a75682\",\"link\":{\"url\":\"https:\\/\\/www.facebook.com\\/cpnordic\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"da32d70\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/cpnordic\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.6,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"589cdcb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor6\"},\"icon_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"left\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"23c37f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ac9468\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f73d65c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e9fdb2\"}],\"pp_display_conditions\":[{\"_id\":\"6b3e2fa\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\"}]},\"elements\":[{\"id\":\"4bb313b\",\"elType\":\"widget\",\"settings\":{\"address\":\"B\\u00f8jdenvejen 7, 5772 Kv\\u00e6rndrup\",\"height\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"c3942e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5e55ea6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"flex_direction_tablet\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"56542ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ba59e70\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"65fd471\"}],\"pp_display_conditions\":[{\"_id\":\"890752a\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#222121\"},\"elements\":[{\"id\":\"543e7817\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"boxed_width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"boxed_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"wrap\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content_tablet\":\"center\",\"flex_align_items_tablet\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9cef852\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3267f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"568580d\"}],\"pp_display_conditions\":[{\"_id\":\"3b43c19\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"29e327ba\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u00a9 Copyright 2026 all rights reserved\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5dee041\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"db62914\",\"pp_condition_date_time_before_value\":\"2023-11-08 15:26\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"icon_align_tablet\":\"center\",\"icon_align_mobile_extra\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color_hover\":\"\"},\"text_color\":\"#FFFFFF\",\"pp_elements_tooltip_content\":\"Tooltip Content\",\"icon_typography_font_weight\":\"500\",\"view\":\"inline\",\"icon_align\":\"center\",\"icon_align_mobile\":\"center\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(7181, 752, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(7200, 104, '_elementor_page_settings', 'a:0:{}'),
(7201, 104, '_elementor_controls_usage', 'a:7:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;}}s:8:\"advanced\";a:2:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}s:14:\"_section_style\";a:3:{s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;s:7:\"_margin\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;}s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:5:{s:13:\"content_width\";i:5;s:5:\"width\";i:4;s:11:\"boxed_width\";i:3;s:9:\"flex_wrap\";i:2;s:14:\"flex_direction\";i:2;}}s:5:\"style\";a:2:{s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:7;}s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;}}s:8:\"advanced\";a:2:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:7;}s:14:\"section_layout\";a:1:{s:7:\"padding\";i:2;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:2;s:11:\"header_size\";i:2;}}s:8:\"advanced\";a:2:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:2;}s:14:\"_section_style\";a:1:{s:14:\"_element_width\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:2:{s:21:\"typography_typography\";i:1;s:11:\"title_color\";i:2;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:9:\"icon_list\";i:3;s:4:\"view\";i:1;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:5:{s:13:\"space_between\";i:3;s:17:\"icon_align_tablet\";i:3;s:23:\"icon_align_mobile_extra\";i:3;s:10:\"icon_align\";i:1;s:17:\"icon_align_mobile\";i:1;}s:18:\"section_text_style\";a:4:{s:26:\"icon_typography_typography\";i:3;s:25:\"icon_typography_font_size\";i:3;s:10:\"text_color\";i:3;s:27:\"icon_typography_font_weight\";i:3;}s:18:\"section_icon_style\";a:2:{s:24:\"icon_self_vertical_align\";i:1;s:20:\"icon_vertical_offset\";i:1;}}s:8:\"advanced\";a:2:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:12:\"social-icons\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:4:{s:16:\"social_icon_list\";i:1;s:5:\"shape\";i:1;s:5:\"align\";i:1;s:12:\"align_tablet\";i:1;}}s:5:\"style\";a:1:{s:20:\"section_social_style\";a:5:{s:10:\"icon_color\";i:1;s:9:\"icon_size\";i:1;s:12:\"icon_padding\";i:1;s:12:\"icon_spacing\";i:1;s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:1;s:6:\"height\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}}'),
(7196, 753, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(4603, 511, '_elementor_version', '3.34.2'),
(4604, 511, '_elementor_pro_version', '3.34.2'),
(4605, 511, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4606, 511, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\",\"id\":57,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle ANMELDELSER\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]}},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"HVORFOR V\\u00c6LGE CP NORDIC ApS?\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79206f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>N\\u00e5r du v\\u00e6lger CP NORDIC ApS, f\\u00e5r du:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"44023b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/teamwork_4546121.svg\",\"id\":472},\"library\":\"svg\"},\"title_text\":\"et ungt og engageret team\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/effective_1401921.svg\",\"id\":474},\"library\":\"svg\"},\"title_text\":\"fokus p\\u00e5 kvalitet og detaljer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/communication_18765280.svg\",\"id\":479},\"library\":\"svg\"},\"title_text\":\"\\u00e6rlig<br> r\\u00e5dgivning\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/brainstorming_11663441.svg\",\"id\":480},\"library\":\"svg\"},\"title_text\":\"gennemt\\u00e6nkte l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c0f2190\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"327bd23\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/like_3941426.svg\",\"id\":481},\"library\":\"svg\"},\"title_text\":\"arbejde udf\\u00f8rt med ansvar\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2bc9769\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi lover ikke mere, end vi kan holde \\u2013 men vi holder det, vi lover.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2a1d8fc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4524, 498, '_elementor_page_settings', 'a:0:{}'),
(7359, 768, '_elementor_page_settings', 'a:0:{}'),
(4527, 499, '_elementor_edit_mode', 'builder'),
(4528, 499, '_elementor_template_type', 'wp-page'),
(4529, 499, '_elementor_version', '3.34.2'),
(4530, 499, '_elementor_pro_version', '3.34.2'),
(4531, 499, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4532, 499, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\",\"id\":57,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle ANMELDELSER\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]}},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"HVORFOR V\\u00c6LGE CP NORDIC ApS?\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79206f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>N\\u00e5r du v\\u00e6lger CP NORDIC ApS, f\\u00e5r du:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"44023b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/teamwork_4546121.svg\",\"id\":472},\"library\":\"svg\"},\"title_text\":\"et ungt og engageret team\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/effective_1401921.svg\",\"id\":474},\"library\":\"svg\"},\"title_text\":\"fokus p\\u00e5 kvalitet og detaljer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/communication_18765280.svg\",\"id\":479},\"library\":\"svg\"},\"title_text\":\"\\u00e6rlig<br> r\\u00e5dgivning\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/brainstorming_11663441.svg\",\"id\":480},\"library\":\"svg\"},\"title_text\":\"gennemt\\u00e6nkte l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c0f2190\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"327bd23\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/like_3941426.svg\",\"id\":481},\"library\":\"svg\"},\"title_text\":\"arbejde udf\\u00f8rt med ansvar\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5482, 589, '_elementor_page_settings', 'a:0:{}'),
(4534, 499, '_elementor_page_settings', 'a:0:{}'),
(4537, 500, '_elementor_edit_mode', 'builder'),
(4538, 500, '_elementor_template_type', 'wp-page'),
(4539, 500, '_elementor_version', '3.34.2'),
(4540, 500, '_elementor_pro_version', '3.34.2'),
(4541, 500, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4542, 500, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\",\"id\":57,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle ANMELDELSER\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]}},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"HVORFOR V\\u00c6LGE CP NORDIC ApS?\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79206f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>N\\u00e5r du v\\u00e6lger CP NORDIC ApS, f\\u00e5r du:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"44023b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/teamwork_4546121.svg\",\"id\":472},\"library\":\"svg\"},\"title_text\":\"et ungt og engageret team\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/effective_1401921.svg\",\"id\":474},\"library\":\"svg\"},\"title_text\":\"fokus p\\u00e5 kvalitet og detaljer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/communication_18765280.svg\",\"id\":479},\"library\":\"svg\"},\"title_text\":\"\\u00e6rlig<br> r\\u00e5dgivning\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/brainstorming_11663441.svg\",\"id\":480},\"library\":\"svg\"},\"title_text\":\"gennemt\\u00e6nkte l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c0f2190\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"327bd23\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/like_3941426.svg\",\"id\":481},\"library\":\"svg\"},\"title_text\":\"arbejde udf\\u00f8rt med ansvar\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2bc9769\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi lover ikke mere, end vi kan holde \\u2013 men vi holder det, vi lover.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2a1d8fc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4654, 516, '_elementor_edit_mode', 'builder'),
(4621, 513, '_elementor_edit_mode', 'builder'),
(4622, 513, '_elementor_template_type', 'wp-page'),
(4623, 513, '_elementor_version', '3.34.2'),
(4624, 513, '_elementor_pro_version', '3.34.2'),
(4625, 513, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4626, 513, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\",\"id\":57,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle ANMELDELSER\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]}},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"HVORFOR V\\u00c6LGE CP NORDIC ApS?\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79206f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>N\\u00e5r du v\\u00e6lger CP NORDIC ApS, f\\u00e5r du:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"44023b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/teamwork_4546121.svg\",\"id\":472},\"library\":\"svg\"},\"title_text\":\"et ungt og engageret team\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/effective_1401921.svg\",\"id\":474},\"library\":\"svg\"},\"title_text\":\"fokus p\\u00e5 kvalitet og detaljer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/communication_18765280.svg\",\"id\":479},\"library\":\"svg\"},\"title_text\":\"\\u00e6rlig<br> r\\u00e5dgivning\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/brainstorming_11663441.svg\",\"id\":480},\"library\":\"svg\"},\"title_text\":\"gennemt\\u00e6nkte l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c0f2190\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"327bd23\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/like_3941426.svg\",\"id\":481},\"library\":\"svg\"},\"title_text\":\"arbejde udf\\u00f8rt med ansvar\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2bc9769\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi lover ikke mere, end vi kan holde \\u2013 men vi holder det, vi lover.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2a1d8fc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"986dd0f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9231a79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"31fa3c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f1b19ca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7391996\"}]},\"elements\":[{\"id\":\"547d40f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7d5adb7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1522ba7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e13c951\"}],\"pp_display_conditions\":[{\"_id\":\"1e39e5d\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"4bda72e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7d5adb7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1522ba7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e13c951\"}],\"pp_display_conditions\":[{\"_id\":\"1e39e5d\"}]},\"elements\":[{\"id\":\"07d0be8\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"8b3e3db\"},{\"custom_id\":\"field_2a35699\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"2a35699\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"f9dd88c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6323910b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor8\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/wood-background-1-e1738912619419.jpg\",\"id\":510,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"640d38eb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"75253fe5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"14202595\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Name\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"tel\",\"field_label\":\"Phone\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\"},{\"field_type\":\"select\",\"field_label\":\"Services Name\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Messages\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor4\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_background_color\":\"#494949CC\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"mark_required\":\"yes\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4564, 502, '_wp_attached_file', '2026/01/banner.jpg'),
(4565, 502, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:600;s:4:\"file\";s:18:\"2026/01/banner.jpg\";s:8:\"filesize\";i:148500;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"banner-300x94.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:94;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8790;}s:5:\"large\";a:5:{s:4:\"file\";s:19:\"banner-1024x320.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51917;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"banner-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5806;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:18:\"banner-768x240.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33277;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:19:\"banner-1536x480.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:97768;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(4566, 502, '_elementor_source_image_hash', 'c6de1653fe59c5a1517ac8cba60fa63d4efe5b59'),
(4567, 503, '_wp_attached_file', '2026/01/slider1.jpeg'),
(4568, 503, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1440;s:6:\"height\";i:500;s:4:\"file\";s:20:\"2026/01/slider1.jpeg\";s:8:\"filesize\";i:80082;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"slider1-300x104.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:104;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6160;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"slider1-1024x356.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:356;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41363;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"slider1-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3942;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"slider1-768x267.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26461;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(4569, 503, '_elementor_source_image_hash', '77b659b5d1f174a5bca36defa7289420e5fb69c6'),
(4570, 504, '_wp_attached_file', '2026/01/smartphone_230142.svg'),
(4571, 504, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:4168;s:5:\"width\";i:512;s:6:\"height\";i:512;}'),
(4572, 504, '_elementor_source_image_hash', '8451f1eb8a65e8631362112342dbd028f786c4b1'),
(4573, 505, '_wp_attached_file', '2026/01/email_542689.svg'),
(4574, 505, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:1177;s:5:\"width\";i:512;s:6:\"height\";i:512;}'),
(4575, 505, '_elementor_source_image_hash', '234c0a78d140c0677623f97256c65f899b9548fc'),
(4576, 506, '_wp_attached_file', '2026/01/features-shape-1.png'),
(4577, 506, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:607;s:6:\"height\";i:391;s:4:\"file\";s:28:\"2026/01/features-shape-1.png\";s:8:\"filesize\";i:10736;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"features-shape-1-300x193.png\";s:5:\"width\";i:300;s:6:\"height\";i:193;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4232;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"features-shape-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1817;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(4578, 506, '_elementor_source_image_hash', '9fdd6477f8640505a79c099885f9fd77c97a97d2'),
(4579, 507, '_wp_attached_file', '2026/01/slider-shape-2.png'),
(4580, 507, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:443;s:6:\"height\";i:302;s:4:\"file\";s:26:\"2026/01/slider-shape-2.png\";s:8:\"filesize\";i:8962;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"slider-shape-2-300x205.png\";s:5:\"width\";i:300;s:6:\"height\";i:205;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4159;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"slider-shape-2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1676;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(4581, 507, '_elementor_source_image_hash', '52644977315323b889d75432e4e584a3a3fbbe0f'),
(4582, 508, '_elementor_edit_mode', 'builder'),
(4583, 508, '_elementor_template_type', 'page'),
(4584, 508, '_elementor_version', '3.34.2'),
(4585, 508, '_elementor_pro_version', '3.34.2'),
(4586, 508, '_elementor_page_settings', 'a:0:{}');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4587, 508, '_elementor_data', '[{\"id\":\"4e6a3f82\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0e5f35a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7627338\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8673b4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ad6d440\",\"pp_condition_date_time_before_value\":\"2024-08-01 10:37\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-01-23 to 2026-01-29\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_slideshow_gallery\":[{\"id\":503,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/slider1.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"flex_align_items\":\"center\",\"background_overlay_background\":\"gradient\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":225,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor0\"},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"background_image\":{\"id\":502,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/banner.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"43f63741\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e348cc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5bf3f2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4fd8e25\"}],\"pp_display_conditions\":[{\"_id\":\"d3ae558\",\"pp_condition_date_time_before_value\":\"2024-08-01 10:37\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-01-23 to 2026-01-29\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"43078581\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title\":\"\",\"pp_display_conditions\":[{\"_id\":\"07d9d3a\",\"pp_condition_date_time_before_value\":\"2024-08-01 10:37\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-01-23 to 2026-01-29\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"},\"align\":\"center\",\"typography_typography\":\"custom\",\"header_size\":\"h1\",\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"48e4f0c\\\" name=\\\"page-title\\\" settings=\\\"%7B%7D\\\"]\"},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"16916fb0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1600399\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3f02c7e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"69bbd48\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9bbb579\",\"pp_condition_date_time_before_value\":\"2024-06-13 12:14\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-01-23 to 2026-01-29\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"id\":506,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/features-shape-1.png\"},\"background_position\":\"bottom right\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":507,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/slider-shape-2.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_attachment\":\"scroll\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"27300780\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8791aed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe09348\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"935d9bd\"}],\"pp_display_conditions\":[{\"_id\":\"faf5fd2\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-01-23 to 2026-01-29\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5dd722f0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact   Us\\n \\n\\n\\n\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"802d5d7\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-01-23 to 2026-01-29\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6672ed00\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"editor\":\"<p>For questions or concerns, please contact us, we are more than happy to address any questions or concerns you may have.<\\/p>\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c93489c\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-01-23 to 2026-01-29\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"49947c37\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"def43cb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c8cfb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e7a215\"}],\"pp_display_conditions\":[{\"_id\":\"daade15\",\"pp_condition_date_time_before_value\":\"2024-06-13 12:14\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-01-23 to 2026-01-29\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"flex_direction\":\"row\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_direction_tablet\":\"row\",\"flex_justify_content\":\"center\",\"flex_justify_content_tablet\":\"space-around\",\"flex_wrap\":\"wrap\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6a9e5bd8\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-01-23 to 2026-01-29\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7cdf3f2c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-01-23 to 2026-01-29\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"24b12490\",\"elType\":\"widget\",\"settings\":{\"title\":\"LOCATION\\n\",\"header_size\":\"h4\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-01-23 to 2026-01-29\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f9afc26\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"10777 Westheimer Rd Suite 1100 Houston, Tx 77042\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a2184f8\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-01-23 to 2026-01-29\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\",\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"73d8a7a7\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-01-23 to 2026-01-29\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"413f12f1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":504,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/smartphone_230142.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-01-23 to 2026-01-29\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"d829b03\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL US\\n\",\"header_size\":\"h4\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-01-23 to 2026-01-29\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6896ebd8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"(281) 501-0350\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:(281)5010350\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ce5f04f\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-01-23 to 2026-01-29\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\",\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2ab78fa9\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-01-23 to 2026-01-29\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"334ede3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":505,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/email_542689.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-01-23 to 2026-01-29\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ebdb8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"EMAIL US\\n\",\"header_size\":\"h4\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-01-23 to 2026-01-29\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2f49841a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"intake@modernhh.com\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a2184f8\",\"link\":{\"url\":\"mailto:intake@modernhh.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-01-23 to 2026-01-29\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\",\"content_width\":\"full\",\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1b4d6235\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-01-23 to 2026-01-29\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"114d0eb1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-01-23 to 2026-01-29\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"c38e2a5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-01-23 to 2026-01-29\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5ce46767\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Name\",\"placeholder\":\"Name\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_type\":\"text\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"attachment_type\":\"link\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"attachment_type\":\"link\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Messages\",\"placeholder\":\"Messages\",\"custom_id\":\"field_d10992d\",\"rows\":6,\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"required\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"attachment_type\":\"link\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"}],\"show_labels\":\"\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-01-23 to 2026-01-29\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_background_color\":\"#F0F5FA96\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"selected_button_icon\":{\"value\":\"\",\"library\":\"\"},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true},{\"id\":\"65f2c843\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5f31bac\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"32a9521\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dea9376\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7ff945\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-01-23 to 2026-01-29\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7ada54ce\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title\":\"Hours of Operation\",\"pp_display_conditions\":[{\"_id\":\"156b1a5\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-01-23 to 2026-01-29\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align_mobile_extra\":\"center\",\"align\":\"left\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f377595\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"business_hours\":[{\"_id\":\"f12e234\",\"opening_hours\":\"10:00\",\"closed_text\":\"Closed\",\"closing_hours\":\"15:00\",\"day\":\"Monday\",\"closed\":\"no\",\"highlight\":\"no\",\"highlight_bg\":\"\",\"highlight_color\":\"\"},{\"day\":\"Tuesday\",\"_id\":\"b236ffe\",\"opening_hours\":\"10:00\",\"closed_text\":\"Closed\",\"closing_hours\":\"15:00\",\"closed\":\"no\",\"highlight\":\"no\",\"highlight_bg\":\"\",\"highlight_color\":\"\"},{\"day\":\"Wednesday\",\"_id\":\"b71ee4f\",\"opening_hours\":\"10:00\",\"closed_text\":\"Closed\",\"closing_hours\":\"15:00\",\"closed\":\"no\",\"highlight\":\"no\",\"highlight_bg\":\"\",\"highlight_color\":\"\"},{\"day\":\"Thursday\",\"_id\":\"a00f58d\",\"opening_hours\":\"10:00\",\"closed_text\":\"Closed\",\"closing_hours\":\"15:00\",\"closed\":\"no\",\"highlight\":\"no\",\"highlight_bg\":\"\",\"highlight_color\":\"\"},{\"day\":\"Friday\",\"_id\":\"53681c8\",\"opening_hours\":\"10:00\",\"closed_text\":\"Closed\",\"closing_hours\":\"15:00\",\"closed\":\"no\",\"highlight\":\"no\",\"highlight_bg\":\"\",\"highlight_color\":\"\"},{\"day\":\"Saturday\",\"closed\":\"\",\"highlight\":\"yes\",\"_id\":\"7577a50\",\"closed_text\":\"Closed\",\"__globals__\":{\"highlight_color\":\"globals\\/colors?id=astglobalcolor5\"},\"opening_hours\":\"09:00\",\"closing_hours\":\"17:00\",\"highlight_bg\":\"\",\"highlight_color\":\"\"},{\"day\":\"Sunday\",\"closed\":\"yes\",\"highlight\":\"yes\",\"_id\":\"09fa485\",\"closed_text\":\"Closed\",\"__globals__\":{\"highlight_color\":\"globals\\/colors?id=astglobalcolor5\"},\"opening_hours\":\"09:00\",\"closing_hours\":\"17:00\",\"highlight_bg\":\"\",\"highlight_color\":\"\"}],\"business_hours_custom\":[{\"day\":\"Monday\",\"_id\":\"812a65f\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\",\"closed\":\"no\",\"highlight\":\"no\",\"highlight_bg\":\"\",\"highlight_color\":\"\"},{\"day\":\"Tuesday\",\"_id\":\"ac90ca4\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\",\"closed\":\"no\",\"highlight\":\"no\",\"highlight_bg\":\"\",\"highlight_color\":\"\"},{\"day\":\"Wednesday\",\"_id\":\"391a242\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\",\"closed\":\"no\",\"highlight\":\"no\",\"highlight_bg\":\"\",\"highlight_color\":\"\"},{\"day\":\"Thursday\",\"_id\":\"bca6f45\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\",\"closed\":\"no\",\"highlight\":\"no\",\"highlight_bg\":\"\",\"highlight_color\":\"\"},{\"day\":\"Friday\",\"_id\":\"00b4230\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\",\"closed\":\"no\",\"highlight\":\"no\",\"highlight_bg\":\"\",\"highlight_color\":\"\"},{\"day\":\"Saturday\",\"closed\":\"yes\",\"highlight\":\"yes\",\"highlight_color\":\"#bc1705\",\"_id\":\"bc5df80\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\",\"highlight_bg\":\"\"},{\"day\":\"Sunday\",\"closed\":\"yes\",\"highlight\":\"yes\",\"highlight_color\":\"#bc1705\",\"_id\":\"d7eceed\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\",\"highlight_bg\":\"\"}],\"rows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false},\"rows_divider_style\":\"solid\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"hours_typography_typography\":\"custom\",\"hours_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0f8baac\",\"pp_condition_date_time_before_value\":\"2024-08-01 07:08\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-01-23 to 2026-01-29\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"rows_divider_color\":\"\",\"day_color\":\"globals\\/colors?id=astglobalcolor5\",\"hours_color\":\"globals\\/colors?id=astglobalcolor5\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"hours_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"rows_divider_color\":\"#8E8F8F3D\",\"day_color\":\"#FFFFFF\",\"hours_color\":\"#FFFFFF\",\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"pp-business-hours\"},{\"id\":\"32ee5976\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title\":\"To reach the office after hours\",\"header_size\":\"h4\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"500\",\"pp_display_conditions\":[{\"_id\":\"15b2e0d\",\"pp_condition_date_time_before_value\":\"2024-08-11 07:15\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-01-23 to 2026-01-29\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"260f3498\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"text\":\"Call Us 888-510-1879\",\"link\":{\"url\":\"tel:8885101879\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"42b3e40\",\"pp_condition_date_time_before_value\":\"2024-08-11 07:15\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-01-23 to 2026-01-29\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"hover_color\":\"globals\\/colors?id=astglobalcolor5\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"49e0c52b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a5ac8b4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f58036e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5227ac0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b0f7742\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-01-23 to 2026-01-29\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"280160b3\",\"elType\":\"widget\",\"settings\":{\"address\":\"10777 Westheimer Rd, Houston, TX 77042, USA\",\"height\":{\"unit\":\"px\",\"size\":412,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"c7478ab\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-01-23 to 2026-01-29\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4590, 509, '_elementor_edit_mode', 'builder'),
(4591, 509, '_elementor_template_type', 'page'),
(4592, 509, '_elementor_version', '3.34.2'),
(4593, 509, '_elementor_pro_version', '3.34.2'),
(4594, 509, '_elementor_page_settings', 'a:0:{}');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4595, 509, '_elementor_data', '[{\"id\":\"4e6a3f82\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0e5f35a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7627338\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8673b4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ad6d440\",\"pp_condition_date_time_before_value\":\"2024-08-01 10:37\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-01-23 to 2026-01-29\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"min_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_slideshow_gallery\":[{\"id\":503,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/slider1.jpeg\"}],\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"flex_align_items\":\"center\",\"background_overlay_background\":\"gradient\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":225,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor0\"},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"px\",\"size\":150,\"sizes\":[]},\"background_image\":{\"id\":502,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/banner.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"43f63741\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3e348cc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5bf3f2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4fd8e25\"}],\"pp_display_conditions\":[{\"_id\":\"d3ae558\",\"pp_condition_date_time_before_value\":\"2024-08-01 10:37\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-01-23 to 2026-01-29\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"43078581\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title\":\"\",\"pp_display_conditions\":[{\"_id\":\"07d9d3a\",\"pp_condition_date_time_before_value\":\"2024-08-01 10:37\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-01-23 to 2026-01-29\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"},\"align\":\"center\",\"typography_typography\":\"custom\",\"header_size\":\"h1\",\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"48e4f0c\\\" name=\\\"page-title\\\" settings=\\\"%7B%7D\\\"]\"},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"16916fb0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1600399\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3f02c7e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"69bbd48\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9bbb579\",\"pp_condition_date_time_before_value\":\"2024-06-13 12:14\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-01-23 to 2026-01-29\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"id\":506,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/features-shape-1.png\"},\"background_position\":\"bottom right\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":507,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/slider-shape-2.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_attachment\":\"scroll\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"27300780\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8791aed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe09348\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"935d9bd\"}],\"pp_display_conditions\":[{\"_id\":\"faf5fd2\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-01-23 to 2026-01-29\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5dd722f0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact   Us\\n \\n\\n\\n\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"802d5d7\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-01-23 to 2026-01-29\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6672ed00\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"editor\":\"<p>For questions or concerns, please contact us, we are more than happy to address any questions or concerns you may have.<\\/p>\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c93489c\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-01-23 to 2026-01-29\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"49947c37\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"def43cb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c8cfb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e7a215\"}],\"pp_display_conditions\":[{\"_id\":\"daade15\",\"pp_condition_date_time_before_value\":\"2024-06-13 12:14\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-01-23 to 2026-01-29\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"flex_direction\":\"row\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_direction_tablet\":\"row\",\"flex_justify_content\":\"center\",\"flex_justify_content_tablet\":\"space-around\",\"flex_wrap\":\"wrap\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6a9e5bd8\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-01-23 to 2026-01-29\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7cdf3f2c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-01-23 to 2026-01-29\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"24b12490\",\"elType\":\"widget\",\"settings\":{\"title\":\"LOCATION\\n\",\"header_size\":\"h4\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-01-23 to 2026-01-29\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f9afc26\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"10777 Westheimer Rd Suite 1100 Houston, Tx 77042\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a2184f8\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-01-23 to 2026-01-29\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\",\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"73d8a7a7\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-01-23 to 2026-01-29\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"413f12f1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":504,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/smartphone_230142.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-01-23 to 2026-01-29\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"d829b03\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL US\\n\",\"header_size\":\"h4\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-01-23 to 2026-01-29\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6896ebd8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"(281) 501-0350\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:(281)5010350\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ce5f04f\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-01-23 to 2026-01-29\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\",\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2ab78fa9\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-01-23 to 2026-01-29\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"334ede3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":505,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/email_542689.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-01-23 to 2026-01-29\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2ebdb8c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"EMAIL US\\n\",\"header_size\":\"h4\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-01-23 to 2026-01-29\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2f49841a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"intake@modernhh.com\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a2184f8\",\"link\":{\"url\":\"mailto:intake@modernhh.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-01-23 to 2026-01-29\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\",\"content_width\":\"full\",\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1b4d6235\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-01-23 to 2026-01-29\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"114d0eb1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-01-23 to 2026-01-29\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"c38e2a5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-01-23 to 2026-01-29\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5ce46767\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Name\",\"placeholder\":\"Name\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_type\":\"text\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"attachment_type\":\"link\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"attachment_type\":\"link\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Messages\",\"placeholder\":\"Messages\",\"custom_id\":\"field_d10992d\",\"rows\":6,\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"required\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"attachment_type\":\"link\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"}],\"show_labels\":\"\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-01-23 to 2026-01-29\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_background_color\":\"#F0F5FA96\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"selected_button_icon\":{\"value\":\"\",\"library\":\"\"},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true},{\"id\":\"65f2c843\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5f31bac\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"32a9521\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dea9376\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7ff945\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-01-23 to 2026-01-29\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7ada54ce\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title\":\"Hours of Operation\",\"pp_display_conditions\":[{\"_id\":\"156b1a5\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-01-23 to 2026-01-29\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align_mobile_extra\":\"center\",\"align\":\"left\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f377595\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"business_hours\":[{\"_id\":\"f12e234\",\"opening_hours\":\"10:00\",\"closed_text\":\"Closed\",\"closing_hours\":\"15:00\",\"day\":\"Monday\",\"closed\":\"no\",\"highlight\":\"no\",\"highlight_bg\":\"\",\"highlight_color\":\"\"},{\"day\":\"Tuesday\",\"_id\":\"b236ffe\",\"opening_hours\":\"10:00\",\"closed_text\":\"Closed\",\"closing_hours\":\"15:00\",\"closed\":\"no\",\"highlight\":\"no\",\"highlight_bg\":\"\",\"highlight_color\":\"\"},{\"day\":\"Wednesday\",\"_id\":\"b71ee4f\",\"opening_hours\":\"10:00\",\"closed_text\":\"Closed\",\"closing_hours\":\"15:00\",\"closed\":\"no\",\"highlight\":\"no\",\"highlight_bg\":\"\",\"highlight_color\":\"\"},{\"day\":\"Thursday\",\"_id\":\"a00f58d\",\"opening_hours\":\"10:00\",\"closed_text\":\"Closed\",\"closing_hours\":\"15:00\",\"closed\":\"no\",\"highlight\":\"no\",\"highlight_bg\":\"\",\"highlight_color\":\"\"},{\"day\":\"Friday\",\"_id\":\"53681c8\",\"opening_hours\":\"10:00\",\"closed_text\":\"Closed\",\"closing_hours\":\"15:00\",\"closed\":\"no\",\"highlight\":\"no\",\"highlight_bg\":\"\",\"highlight_color\":\"\"},{\"day\":\"Saturday\",\"closed\":\"\",\"highlight\":\"yes\",\"_id\":\"7577a50\",\"closed_text\":\"Closed\",\"__globals__\":{\"highlight_color\":\"globals\\/colors?id=astglobalcolor5\"},\"opening_hours\":\"09:00\",\"closing_hours\":\"17:00\",\"highlight_bg\":\"\",\"highlight_color\":\"\"},{\"day\":\"Sunday\",\"closed\":\"yes\",\"highlight\":\"yes\",\"_id\":\"09fa485\",\"closed_text\":\"Closed\",\"__globals__\":{\"highlight_color\":\"globals\\/colors?id=astglobalcolor5\"},\"opening_hours\":\"09:00\",\"closing_hours\":\"17:00\",\"highlight_bg\":\"\",\"highlight_color\":\"\"}],\"business_hours_custom\":[{\"day\":\"Monday\",\"_id\":\"812a65f\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\",\"closed\":\"no\",\"highlight\":\"no\",\"highlight_bg\":\"\",\"highlight_color\":\"\"},{\"day\":\"Tuesday\",\"_id\":\"ac90ca4\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\",\"closed\":\"no\",\"highlight\":\"no\",\"highlight_bg\":\"\",\"highlight_color\":\"\"},{\"day\":\"Wednesday\",\"_id\":\"391a242\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\",\"closed\":\"no\",\"highlight\":\"no\",\"highlight_bg\":\"\",\"highlight_color\":\"\"},{\"day\":\"Thursday\",\"_id\":\"bca6f45\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\",\"closed\":\"no\",\"highlight\":\"no\",\"highlight_bg\":\"\",\"highlight_color\":\"\"},{\"day\":\"Friday\",\"_id\":\"00b4230\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\",\"closed\":\"no\",\"highlight\":\"no\",\"highlight_bg\":\"\",\"highlight_color\":\"\"},{\"day\":\"Saturday\",\"closed\":\"yes\",\"highlight\":\"yes\",\"highlight_color\":\"#bc1705\",\"_id\":\"bc5df80\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\",\"highlight_bg\":\"\"},{\"day\":\"Sunday\",\"closed\":\"yes\",\"highlight\":\"yes\",\"highlight_color\":\"#bc1705\",\"_id\":\"d7eceed\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\",\"highlight_bg\":\"\"}],\"rows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false},\"rows_divider_style\":\"solid\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"hours_typography_typography\":\"custom\",\"hours_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0f8baac\",\"pp_condition_date_time_before_value\":\"2024-08-01 07:08\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-01-23 to 2026-01-29\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"rows_divider_color\":\"\",\"day_color\":\"globals\\/colors?id=astglobalcolor5\",\"hours_color\":\"globals\\/colors?id=astglobalcolor5\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"hours_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"rows_divider_color\":\"#8E8F8F3D\",\"day_color\":\"#FFFFFF\",\"hours_color\":\"#FFFFFF\",\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"pp-business-hours\"},{\"id\":\"32ee5976\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title\":\"To reach the office after hours\",\"header_size\":\"h4\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"500\",\"pp_display_conditions\":[{\"_id\":\"15b2e0d\",\"pp_condition_date_time_before_value\":\"2024-08-11 07:15\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-01-23 to 2026-01-29\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"260f3498\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"text\":\"Call Us 888-510-1879\",\"link\":{\"url\":\"tel:8885101879\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"42b3e40\",\"pp_condition_date_time_before_value\":\"2024-08-11 07:15\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-01-23 to 2026-01-29\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"hover_color\":\"globals\\/colors?id=astglobalcolor5\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"49e0c52b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a5ac8b4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f58036e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5227ac0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b0f7742\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-01-23 to 2026-01-29\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"280160b3\",\"elType\":\"widget\",\"settings\":{\"address\":\"10777 Westheimer Rd, Houston, TX 77042, USA\",\"height\":{\"unit\":\"px\",\"size\":412,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"c7478ab\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-01-23 to 2026-01-29\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4597, 508, '_elementor_controls_usage', 'a:9:{s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:1;s:8:\"controls\";a:4:{s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:7;s:11:\"header_size\";i:6;}}s:8:\"advanced\";a:3:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:7;}s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;s:16:\"_flex_align_self\";i:1;}s:15:\"_section_border\";a:2:{s:14:\"_border_border\";i:1;s:13:\"_border_width\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:5:{s:5:\"align\";i:3;s:21:\"typography_typography\";i:6;s:22:\"typography_font_weight\";i:5;s:22:\"typography_line_height\";i:4;s:23:\"typography_word_spacing\";i:4;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:7:{s:13:\"content_width\";i:8;s:5:\"width\";i:6;s:14:\"flex_direction\";i:6;s:10:\"min_height\";i:1;s:20:\"flex_justify_content\";i:4;s:16:\"flex_align_items\";i:4;s:9:\"flex_wrap\";i:1;}}s:5:\"style\";a:4:{s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:13;}s:18:\"section_background\";a:9:{s:21:\"background_background\";i:9;s:28:\"background_slideshow_gallery\";i:1;s:36:\"background_slideshow_background_size\";i:1;s:40:\"background_slideshow_background_position\";i:1;s:16:\"background_image\";i:2;s:19:\"background_position\";i:2;s:21:\"background_attachment\";i:2;s:17:\"background_repeat\";i:2;s:15:\"background_size\";i:2;}s:26:\"section_background_overlay\";a:8:{s:29:\"background_overlay_background\";i:2;s:33:\"background_overlay_gradient_angle\";i:1;s:26:\"background_overlay_opacity\";i:2;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:29:\"background_overlay_attachment\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;}s:14:\"section_border\";a:7:{s:13:\"border_border\";i:3;s:12:\"border_width\";i:3;s:12:\"border_color\";i:3;s:26:\"box_shadow_box_shadow_type\";i:3;s:21:\"box_shadow_box_shadow\";i:3;s:32:\"box_shadow_hover_box_shadow_type\";i:3;s:27:\"box_shadow_hover_box_shadow\";i:3;}}s:8:\"advanced\";a:3:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:13;}s:14:\"section_layout\";a:2:{s:7:\"padding\";i:8;s:6:\"margin\";i:1;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:5;s:18:\"animation_duration\";i:4;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;s:16:\"_flex_align_self\";i:1;}s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:4:\"icon\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:13:\"selected_icon\";i:3;}}s:5:\"style\";a:1:{s:18:\"section_style_icon\";a:2:{s:5:\"align\";i:3;s:4:\"size\";i:3;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:3;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:3;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:3;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}s:18:\"section_text_style\";a:1:{s:16:\"text_color_hover\";i:3;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:3;}}}}s:4:\"form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:19:\"section_form_fields\";a:3:{s:11:\"form_fields\";i:1;s:11:\"show_labels\";i:1;s:10:\"input_size\";i:1;}s:15:\"section_buttons\";a:1:{s:11:\"button_size\";i:1;}s:13:\"section_email\";a:1:{s:13:\"form_metadata\";i:1;}}s:8:\"advanced\";a:4:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:15:\"_section_border\";a:3:{s:14:\"_border_border\";i:1;s:13:\"_border_width\";i:1;s:13:\"_border_color\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_form_style\";a:2:{s:10:\"column_gap\";i:1;s:7:\"row_gap\";i:1;}s:19:\"section_field_style\";a:2:{s:18:\"field_border_color\";i:1;s:19:\"field_border_radius\";i:1;}s:20:\"section_button_style\";a:3:{s:20:\"button_border_radius\";i:1;s:23:\"button_background_color\";i:1;s:29:\"button_background_hover_color\";i:1;}}}}s:17:\"pp-business-hours\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:18:\"section_price_menu\";a:2:{s:14:\"business_hours\";i:1;s:21:\"business_hours_custom\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_rows_style\";a:3:{s:12:\"rows_padding\";i:1;s:18:\"rows_divider_style\";i:1;s:18:\"rows_divider_color\";i:1;}s:28:\"section_business_hours_style\";a:6:{s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:27:\"hours_typography_typography\";i:1;s:26:\"hours_typography_font_size\";i:1;s:9:\"day_color\";i:1;s:11:\"hours_color\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:2:{s:4:\"text\";i:1;s:4:\"link\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:21:\"typography_typography\";i:1;s:25:\"typography_letter_spacing\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:1;s:6:\"height\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}}'),
(4599, 510, '_wp_attached_file', '2026/01/wood-background-1-e1738912619419.jpg'),
(4600, 510, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:920;s:4:\"file\";s:44:\"2026/01/wood-background-1-e1738912619419.jpg\";s:8:\"filesize\";i:234034;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:44:\"wood-background-1-e1738912619419-300x138.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8278;}s:5:\"large\";a:5:{s:4:\"file\";s:45:\"wood-background-1-e1738912619419-1024x471.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:471;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:94961;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:44:\"wood-background-1-e1738912619419-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4962;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:44:\"wood-background-1-e1738912619419-768x353.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:353;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52158;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:45:\"wood-background-1-e1738912619419-1536x707.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:707;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:214175;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:11:\"Gargantiopa\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(4608, 511, '_elementor_page_settings', 'a:0:{}'),
(7350, 767, '_elementor_page_settings', 'a:0:{}'),
(4611, 512, '_elementor_edit_mode', 'builder'),
(4612, 512, '_elementor_template_type', 'wp-page'),
(4613, 512, '_elementor_version', '3.34.2'),
(4614, 512, '_elementor_pro_version', '3.34.2'),
(4615, 512, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4616, 512, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\",\"id\":57,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle ANMELDELSER\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]}},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"HVORFOR V\\u00c6LGE CP NORDIC ApS?\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79206f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>N\\u00e5r du v\\u00e6lger CP NORDIC ApS, f\\u00e5r du:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"44023b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/teamwork_4546121.svg\",\"id\":472},\"library\":\"svg\"},\"title_text\":\"et ungt og engageret team\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/effective_1401921.svg\",\"id\":474},\"library\":\"svg\"},\"title_text\":\"fokus p\\u00e5 kvalitet og detaljer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/communication_18765280.svg\",\"id\":479},\"library\":\"svg\"},\"title_text\":\"\\u00e6rlig<br> r\\u00e5dgivning\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/brainstorming_11663441.svg\",\"id\":480},\"library\":\"svg\"},\"title_text\":\"gennemt\\u00e6nkte l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c0f2190\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"327bd23\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/like_3941426.svg\",\"id\":481},\"library\":\"svg\"},\"title_text\":\"arbejde udf\\u00f8rt med ansvar\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2bc9769\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi lover ikke mere, end vi kan holde \\u2013 men vi holder det, vi lover.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2a1d8fc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4618, 512, '_elementor_page_settings', 'a:0:{}'),
(7373, 770, '_wp_page_template', 'elementor_header_footer'),
(7375, 770, '_elementor_edit_mode', 'builder'),
(7376, 770, '_elementor_template_type', 'wp-page'),
(7377, 770, '_elementor_version', '3.34.2'),
(7378, 770, '_elementor_pro_version', '3.34.2'),
(7379, 770, '_elementor_data', '[{\"id\":\"013c01d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"fe90551\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column-reverse\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"84d3850\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#F0F5FA\"},\"elements\":[{\"id\":\"4707f87\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Navn\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"select\",\"field_label\":\"Arbejdstype\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nUdskiftning og montering af d\\u00f8re og vinduer\\nSpecialtilpassede l\\u00f8sninger\\nTAGD\\u00c6KNING\"},{\"field_type\":\"select\",\"field_label\":\"Tjenesters navn\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Beskeder\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"},\"button_background_color\":\"#507eff\",\"button_background_hover_color\":\"#000a66\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Roboto\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"field_typography_font_weight\":\"400\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"label_color\":\"#1e293b\",\"_background_color\":\"#F0F5FA\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(7404, 773, '_wp_page_template', 'elementor_header_footer'),
(7406, 773, '_elementor_edit_mode', 'builder'),
(7407, 773, '_elementor_template_type', 'wp-page'),
(7408, 773, '_elementor_version', '3.34.2'),
(7409, 773, '_elementor_pro_version', '3.34.2'),
(7410, 773, '_elementor_data', '[{\"id\":\"013c01d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"fe90551\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column-reverse\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"84d3850\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#F0F5FA\"},\"elements\":[{\"id\":\"4707f87\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Navn\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"select\",\"field_label\":\"Arbejdstype\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nUdskiftning og montering af d\\u00f8re og vinduer\\nSpecialtilpassede l\\u00f8sninger\\nTAGD\\u00c6KNING\"},{\"field_type\":\"select\",\"field_label\":\"St\\u00f8rrelse \\/ m\\u00e6ngde\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Lille\\nMellem \\nStor\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Beskeder\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"},\"button_background_color\":\"#507eff\",\"button_background_hover_color\":\"#000a66\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Roboto\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"field_typography_font_weight\":\"400\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"label_color\":\"#1e293b\",\"_background_color\":\"#F0F5FA\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(7380, 770, '_elementor_page_settings', 'a:0:{}'),
(7383, 771, '_wp_page_template', 'elementor_header_footer'),
(7385, 771, '_elementor_edit_mode', 'builder'),
(7386, 771, '_elementor_template_type', 'wp-page'),
(7387, 771, '_elementor_version', '3.34.2'),
(7388, 771, '_elementor_pro_version', '3.34.2'),
(7389, 771, '_elementor_data', '[{\"id\":\"013c01d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"fe90551\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column-reverse\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"84d3850\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#F0F5FA\"},\"elements\":[{\"id\":\"4707f87\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Navn\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"select\",\"field_label\":\"Arbejdstype\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nUdskiftning og montering af d\\u00f8re og vinduer\\nSpecialtilpassede l\\u00f8sninger\\nTAGD\\u00c6KNING\"},{\"field_type\":\"select\",\"field_label\":\"Tjenesters navn\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Beskeder\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"},\"button_background_color\":\"#507eff\",\"button_background_hover_color\":\"#000a66\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Roboto\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"field_typography_font_weight\":\"400\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"label_color\":\"#1e293b\",\"_background_color\":\"#F0F5FA\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(7390, 771, '_elementor_page_settings', 'a:0:{}'),
(7473, 780, '_elementor_page_settings', 'a:0:{}'),
(7476, 781, '_wp_page_template', 'elementor_header_footer'),
(7478, 781, '_elementor_edit_mode', 'builder'),
(7479, 781, '_elementor_template_type', 'wp-page'),
(7480, 781, '_elementor_version', '3.34.2'),
(7481, 781, '_elementor_pro_version', '3.34.2'),
(7482, 781, '_elementor_data', '[{\"id\":\"013c01d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"fe90551\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column-reverse\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"84d3850\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#F0F5FA\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"ec74b0c\",\"elType\":\"widget\",\"settings\":{\"title\":\"F\\u00e5 et vejledende prisoverslag\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"aaa964c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4707f87\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"Prisberegner\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Navn\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"select\",\"field_label\":\"Arbejdstype\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nUdskiftning og montering af d\\u00f8re og vinduer\\nSpecialtilpassede l\\u00f8sninger\\nTAGD\\u00c6KNING\"},{\"field_type\":\"select\",\"field_label\":\"St\\u00f8rrelse \\/ m\\u00e6ngde\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Lille\\nMellem \\nStor\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"field_type\":\"select\",\"field_label\":\"Valgfrit kompleksitetsniveau\",\"required\":\"true\",\"custom_id\":\"field_cacceaa\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Lav \\nMellem \\nH\\u00f8j\",\"_id\":\"cacceaa\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Beskeder\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"},\"button_background_color\":\"#507eff\",\"button_background_hover_color\":\"#000a66\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Roboto\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"field_typography_font_weight\":\"400\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"label_color\":\"#1e293b\",\"_background_color\":\"#F0F5FA\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(7545, 787, '_elementor_template_type', 'wp-page'),
(7546, 787, '_elementor_version', '3.34.2'),
(7547, 787, '_elementor_pro_version', '3.34.2'),
(7548, 787, '_elementor_data', '[{\"id\":\"013c01d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"fe90551\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column-reverse\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"84d3850\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#F0F5FA\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"ec74b0c\",\"elType\":\"widget\",\"settings\":{\"title\":\"F\\u00e5 et vejledende prisoverslag\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"aaa964c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4707f87\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"Prisberegner\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Navn\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"select\",\"field_label\":\"Arbejdstype\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nUdskiftning og montering af d\\u00f8re og vinduer\\nSpecialtilpassede l\\u00f8sninger\\nTAGD\\u00c6KNING\"},{\"field_type\":\"select\",\"field_label\":\"St\\u00f8rrelse \\/ m\\u00e6ngde\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Lille\\nMellem \\nStor\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"field_type\":\"select\",\"field_label\":\"Valgfrit kompleksitetsniveau\",\"required\":\"true\",\"custom_id\":\"field_cacceaa\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Lav \\nMellem \\nH\\u00f8j\",\"_id\":\"cacceaa\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Beskeder\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"},\"button_background_color\":\"#507eff\",\"button_background_hover_color\":\"#000a66\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"F\\u00e5 et vejledende prisoverslag \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Roboto\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"field_typography_font_weight\":\"400\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"email_reply_to\":\"field_6986e48\",\"label_color\":\"#1e293b\",\"_background_color\":\"#F0F5FA\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(7352, 768, '_wp_page_template', 'elementor_header_footer'),
(7354, 768, '_elementor_edit_mode', 'builder'),
(7355, 768, '_elementor_template_type', 'wp-page'),
(7356, 768, '_elementor_version', '3.34.2'),
(7357, 768, '_elementor_pro_version', '3.34.2');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7358, 768, '_elementor_data', '[{\"id\":\"013c01d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"fe90551\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column-reverse\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"84d3850\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4707f87\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Navn\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"field_type\":\"text\",\"placeholder\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"attachment_type\":\"link\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_widescreen\":\"\",\"width_tablet_extra\":\"\",\"width_tablet\":\"\",\"width_mobile_extra\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"attachment_type\":\"link\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_widescreen\":\"\",\"width_tablet_extra\":\"\",\"width_tablet\":\"\",\"width_mobile_extra\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"},{\"field_type\":\"tel\",\"field_label\":\"Telefon\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\",\"placeholder\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"attachment_type\":\"link\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_widescreen\":\"\",\"width_tablet_extra\":\"\",\"width_tablet\":\"\",\"width_mobile_extra\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"},{\"field_type\":\"select\",\"field_label\":\"Tjenesters navn\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\",\"placeholder\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"attachment_type\":\"link\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_widescreen\":\"\",\"width_tablet_extra\":\"\",\"width_tablet\":\"\",\"width_mobile_extra\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Beskeder\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"\",\"required\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"attachment_type\":\"link\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_widescreen\":\"\",\"width_tablet_extra\":\"\",\"width_tablet\":\"\",\"width_mobile_extra\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-02-11 to 2026-02-17\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Roboto\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"field_typography_font_weight\":\"400\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"show_labels\":\"true\",\"mark_required\":\"\",\"label_position\":\"above\",\"button_width\":\"100\",\"button_width_widescreen\":\"\",\"button_width_tablet_extra\":\"\",\"button_width_tablet\":\"\",\"button_width_mobile_extra\":\"\",\"button_width_mobile\":\"\",\"selected_button_icon\":{\"value\":\"\",\"library\":\"\"},\"button_icon_align\":\"row\",\"button_icon_indent\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_css_id\":\"\",\"submit_actions\":[\"email\",\"save-to-database\"],\"submissions_metadata\":[\"remote_ip\",\"user_agent\"],\"email_reply_to\":\"\",\"email_to_cc\":\"\",\"email_to_bcc\":\"\",\"email_content_type\":\"html\",\"email_to_cc_2\":\"\",\"email_to_bcc_2\":\"\",\"form_metadata_2\":[],\"email_content_type_2\":\"html\",\"redirect_to\":\"\",\"activecampaign_api_credentials_source\":\"default\",\"activecampaign_api_key\":\"\",\"activecampaign_api_url\":\"\",\"activecampaign_list\":\"\",\"activecampaign_tags\":\"\",\"convertkit_api_key_source\":\"default\",\"convertkit_custom_api_key\":\"\",\"convertkit_form\":\"\",\"convertkit_tags\":\"\",\"discord_webhook\":\"\",\"discord_username\":\"\",\"discord_avatar_url\":\"\",\"discord_title\":\"\",\"discord_content\":\"\",\"discord_form_data\":\"yes\",\"discord_ts\":\"yes\",\"discord_webhook_color\":\"#D30C5C\",\"drip_api_token_source\":\"default\",\"drip_custom_api_token\":\"\",\"drip_account\":\"\",\"drip_custom_fields\":\"no\",\"tags\":\"\",\"getresponse_api_key_source\":\"default\",\"getresponse_custom_api_key\":\"\",\"getresponse_list\":\"\",\"getresponse_dayofcycle\":\"\",\"mailchimp_api_key_source\":\"default\",\"mailchimp_api_key\":\"\",\"mailchimp_list\":\"\",\"mailchimp_groups\":\"\",\"mailchimp_tags\":\"\",\"mailchimp_double_opt_in\":\"\",\"mailerlite_api_key_source\":\"default\",\"mailerlite_custom_api_key\":\"\",\"mailerlite_group\":\"\",\"allow_resubscribe\":\"\",\"slack_webhook\":\"\",\"slack_channel\":\"\",\"slack_username\":\"\",\"slack_pretext\":\"\",\"slack_title\":\"\",\"slack_text\":\"\",\"slack_add_fields\":\"yes\",\"slack_add_ts\":\"yes\",\"slack_webhook_color\":\"#D30C5C\",\"webhooks\":\"\",\"webhooks_advanced_data\":\"no\",\"popup_action\":\"\",\"popup_action_popup_id\":\"\",\"popup_action_do_not_show_again\":\"\",\"step_type\":\"number_text\",\"step_icon_shape\":\"circle\",\"form_id\":\"\",\"form_validation\":\"\",\"custom_messages\":\"\",\"label_color\":\"\",\"mark_required_color\":\"\",\"label_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_text_transform\":\"\",\"label_typography_font_style\":\"\",\"label_typography_text_decoration\":\"\",\"label_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"label_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"label_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"html_color\":\"\",\"html_typography_typography\":\"\",\"html_typography_font_family\":\"\",\"html_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"html_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"html_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"html_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"html_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"html_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"html_typography_font_weight\":\"\",\"html_typography_text_transform\":\"\",\"html_typography_font_style\":\"\",\"html_typography_text_decoration\":\"\",\"html_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"html_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"html_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"html_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"html_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"html_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"html_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"html_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"html_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"html_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"html_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"html_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"html_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"html_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"html_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"html_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"html_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"html_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"field_text_color\":\"\",\"field_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"field_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"field_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"field_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"field_typography_text_transform\":\"\",\"field_typography_font_style\":\"\",\"field_typography_text_decoration\":\"\",\"field_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"field_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"field_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"field_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"field_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"field_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"field_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"field_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"field_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"field_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"field_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"field_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"field_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"field_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"field_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"field_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"field_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"field_background_color\":\"#ffffff\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_align\":\"stretch\",\"button_align_widescreen\":\"\",\"button_align_tablet_extra\":\"\",\"button_align_tablet\":\"\",\"button_align_mobile_extra\":\"\",\"button_align_mobile\":\"\",\"button_content_align\":\"\",\"button_content_align_widescreen\":\"\",\"button_content_align_tablet_extra\":\"\",\"button_content_align_tablet\":\"\",\"button_content_align_mobile_extra\":\"\",\"button_content_align_mobile\":\"\",\"button_typography_typography\":\"\",\"button_typography_font_family\":\"\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_font_weight\":\"\",\"button_typography_text_transform\":\"\",\"button_typography_font_style\":\"\",\"button_typography_text_decoration\":\"\",\"button_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"button_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"button_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"button_border_border\":\"\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_text_color\":\"#ffffff\",\"button_border_color\":\"\",\"previous_button_background_color\":\"\",\"previous_button_text_color\":\"#ffffff\",\"previous_button_border_color\":\"\",\"button_hover_color\":\"#ffffff\",\"button_hover_border_color\":\"\",\"previous_button_background_color_hover\":\"\",\"previous_button_text_color_hover\":\"#ffffff\",\"previous_button_border_color_hover\":\"\",\"hover_transition_duration\":{\"unit\":\"ms\",\"size\":\"\",\"sizes\":[]},\"button_hover_animation\":\"\",\"message_typography_typography\":\"\",\"message_typography_font_family\":\"\",\"message_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"message_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"message_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"message_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"message_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"message_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"message_typography_font_weight\":\"\",\"message_typography_text_transform\":\"\",\"message_typography_font_style\":\"\",\"message_typography_text_decoration\":\"\",\"message_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"message_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"message_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"message_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"message_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"message_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"message_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"message_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"message_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"message_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"message_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"message_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"message_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"message_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"message_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"message_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"message_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"message_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"success_message_color\":\"\",\"error_message_color\":\"\",\"inline_message_color\":\"\",\"steps_typography_typography\":\"\",\"steps_typography_font_family\":\"\",\"steps_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"steps_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"steps_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"steps_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"steps_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"steps_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"steps_typography_font_weight\":\"\",\"steps_typography_text_transform\":\"\",\"steps_typography_font_style\":\"\",\"steps_typography_text_decoration\":\"\",\"steps_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"steps_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"steps_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"steps_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"steps_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"steps_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"steps_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"steps_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"steps_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"steps_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"steps_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"steps_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"steps_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"steps_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"steps_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"steps_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"steps_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"steps_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"steps_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"steps_gap_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"steps_gap_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"steps_gap_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"steps_gap_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"steps_gap_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"steps_icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"steps_icon_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"steps_icon_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"steps_icon_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"steps_icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"steps_icon_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"steps_padding\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"steps_padding_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"steps_padding_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"steps_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"steps_padding_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"steps_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"step_inactive_primary_color\":\"\",\"step_inactive_secondary_color\":\"#ffffff\",\"step_active_primary_color\":\"\",\"step_active_secondary_color\":\"#ffffff\",\"step_completed_primary_color\":\"\",\"step_completed_secondary_color\":\"#ffffff\",\"step_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"step_divider_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"step_divider_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"step_divider_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"step_divider_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"step_divider_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"step_divider_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"step_divider_gap_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"step_divider_gap_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"step_divider_gap_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"step_divider_gap_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"step_divider_gap_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"step_progress_bar_color\":\"\",\"step_progress_bar_background_color\":\"\",\"step_progress_bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"step_progress_bar_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"step_progress_bar_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"step_progress_bar_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"step_progress_bar_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"step_progress_bar_height_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"step_progress_bar_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"step_progress_bar_percentage__typography_typography\":\"\",\"step_progress_bar_percentage__typography_font_family\":\"\",\"step_progress_bar_percentage__typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"step_progress_bar_percentage__typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"step_progress_bar_percentage__typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"step_progress_bar_percentage__typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"step_progress_bar_percentage__typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"step_progress_bar_percentage__typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"step_progress_bar_percentage__typography_font_weight\":\"\",\"step_progress_bar_percentage__typography_text_transform\":\"\",\"step_progress_bar_percentage__typography_font_style\":\"\",\"step_progress_bar_percentage__typography_text_decoration\":\"\",\"step_progress_bar_percentage__typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"step_progress_bar_percentage__typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"step_progress_bar_percentage__typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"step_progress_bar_percentage__typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"step_progress_bar_percentage__typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"step_progress_bar_percentage__typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"step_progress_bar_percentage__typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"step_progress_bar_percentage__typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"step_progress_bar_percentage__typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"step_progress_bar_percentage__typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"step_progress_bar_percentage__typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"step_progress_bar_percentage__typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"step_progress_bar_percentage__typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"step_progress_bar_percentage__typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"step_progress_bar_percentage__typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"step_progress_bar_percentage__typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"step_progress_bar_percentage__typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"step_progress_bar_percentage__typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"step_progress_bar_percentage_color\":\"\",\"_title\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"\",\"_element_width_widescreen\":\"\",\"_element_width_tablet_extra\":\"\",\"_element_width_tablet\":\"\",\"_element_width_mobile_extra\":\"\",\"_element_width_mobile\":\"\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_grid_column\":\"\",\"_grid_column_widescreen\":\"\",\"_grid_column_tablet_extra\":\"\",\"_grid_column_tablet\":\"\",\"_grid_column_mobile_extra\":\"\",\"_grid_column_mobile\":\"\",\"_grid_column_custom\":\"\",\"_grid_column_custom_widescreen\":\"\",\"_grid_column_custom_tablet_extra\":\"\",\"_grid_column_custom_tablet\":\"\",\"_grid_column_custom_mobile_extra\":\"\",\"_grid_column_custom_mobile\":\"\",\"_grid_row\":\"\",\"_grid_row_widescreen\":\"\",\"_grid_row_tablet_extra\":\"\",\"_grid_row_tablet\":\"\",\"_grid_row_mobile_extra\":\"\",\"_grid_row_mobile\":\"\",\"_grid_row_custom\":\"\",\"_grid_row_custom_widescreen\":\"\",\"_grid_row_custom_tablet_extra\":\"\",\"_grid_row_custom_tablet\":\"\",\"_grid_row_custom_mobile_extra\":\"\",\"_grid_row_custom_mobile\":\"\",\"_flex_align_self\":\"\",\"_flex_align_self_widescreen\":\"\",\"_flex_align_self_tablet_extra\":\"\",\"_flex_align_self_tablet\":\"\",\"_flex_align_self_mobile_extra\":\"\",\"_flex_align_self_mobile\":\"\",\"_flex_order\":\"\",\"_flex_order_widescreen\":\"\",\"_flex_order_tablet_extra\":\"\",\"_flex_order_tablet\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_mobile\":\"\",\"_flex_order_custom\":\"\",\"_flex_order_custom_widescreen\":\"\",\"_flex_order_custom_tablet_extra\":\"\",\"_flex_order_custom_tablet\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_order_custom_mobile\":\"\",\"_flex_size\":\"\",\"_flex_size_widescreen\":\"\",\"_flex_size_tablet_extra\":\"\",\"_flex_size_tablet\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_size_mobile\":\"\",\"_flex_grow\":1,\"_flex_grow_widescreen\":\"\",\"_flex_grow_tablet_extra\":\"\",\"_flex_grow_tablet\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_grow_mobile\":\"\",\"_flex_shrink\":1,\"_flex_shrink_widescreen\":\"\",\"_flex_shrink_tablet_extra\":\"\",\"_flex_shrink_tablet\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_flex_shrink_mobile\":\"\",\"_element_vertical_align\":\"\",\"_element_vertical_align_widescreen\":\"\",\"_element_vertical_align_tablet_extra\":\"\",\"_element_vertical_align_tablet\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_element_vertical_align_mobile\":\"\",\"_position\":\"\",\"_offset_orientation_h\":\"start\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_orientation_v\":\"start\",\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index\":\"\",\"_z_index_widescreen\":\"\",\"_z_index_tablet_extra\":\"\",\"_z_index_tablet\":\"\",\"_z_index_mobile_extra\":\"\",\"_z_index_mobile\":\"\",\"_element_id\":\"\",\"_css_classes\":\"\",\"e_display_conditions\":\"\",\"_element_cache\":\"\",\"pp_display_conditions_enable\":\"\",\"pp_display_conditions_output\":\"\",\"pp_display_conditions_relation\":\"all\",\"pp_wrapper_link_enable\":\"\",\"pp_wrapper_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_custom_cursor_enable\":\"\",\"pp_custom_cursor_target\":\"container\",\"pp_custom_cursor_css_selector\":\"\",\"pp_custom_cursor_type\":\"image\",\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text\":\"\",\"pp_custom_cursor_left_offset\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_top_offset\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_typography_typography\":\"\",\"pp_custom_cursor_text_typography_font_family\":\"\",\"pp_custom_cursor_text_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_weight\":\"\",\"pp_custom_cursor_text_typography_text_transform\":\"\",\"pp_custom_cursor_text_typography_font_style\":\"\",\"pp_custom_cursor_text_typography_text_decoration\":\"\",\"pp_custom_cursor_text_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_color\":\"\",\"pp_custom_cursor_text_bg_background\":\"\",\"pp_custom_cursor_text_bg_color\":\"\",\"pp_custom_cursor_text_bg_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_color_stop_widescreen\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_tablet_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_tablet\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_mobile_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_mobile\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b\":\"#f2295b\",\"pp_custom_cursor_text_bg_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pp_custom_cursor_text_bg_color_b_stop_widescreen\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_tablet\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_mobile\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_gradient_type\":\"linear\",\"pp_custom_cursor_text_bg_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"pp_custom_cursor_text_bg_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_tablet\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_mobile\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_position\":\"center center\",\"pp_custom_cursor_text_bg_gradient_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_gradient_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_gradient_position_tablet\":\"\",\"pp_custom_cursor_text_bg_gradient_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_gradient_position_mobile\":\"\",\"pp_custom_cursor_text_bg_position\":\"\",\"pp_custom_cursor_text_bg_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_position_tablet\":\"\",\"pp_custom_cursor_text_bg_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_position_mobile\":\"\",\"pp_custom_cursor_text_bg_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_attachment\":\"\",\"pp_custom_cursor_text_bg_repeat\":\"\",\"pp_custom_cursor_text_bg_repeat_widescreen\":\"\",\"pp_custom_cursor_text_bg_repeat_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_repeat_tablet\":\"\",\"pp_custom_cursor_text_bg_repeat_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_repeat_mobile\":\"\",\"pp_custom_cursor_text_bg_size\":\"\",\"pp_custom_cursor_text_bg_size_widescreen\":\"\",\"pp_custom_cursor_text_bg_size_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_size_tablet\":\"\",\"pp_custom_cursor_text_bg_size_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_size_mobile\":\"\",\"pp_custom_cursor_text_bg_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_video_link\":\"\",\"pp_custom_cursor_text_bg_video_start\":\"\",\"pp_custom_cursor_text_bg_video_end\":\"\",\"pp_custom_cursor_text_bg_play_once\":\"\",\"pp_custom_cursor_text_bg_play_on_mobile\":\"\",\"pp_custom_cursor_text_bg_privacy_mode\":\"\",\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"pp_custom_cursor_text_bg_slideshow_loop\":\"yes\",\"pp_custom_cursor_text_bg_slideshow_slide_duration\":5000,\"pp_custom_cursor_text_bg_slideshow_slide_transition\":\"fade\",\"pp_custom_cursor_text_bg_slideshow_transition_duration\":500,\"pp_custom_cursor_text_bg_slideshow_background_size\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_widescreen\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_tablet\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_mobile\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_tablet\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_mobile\":\"\",\"pp_custom_cursor_text_bg_slideshow_lazyload\":\"\",\"pp_custom_cursor_text_bg_slideshow_ken_burns\":\"\",\"pp_custom_cursor_text_bg_slideshow_ken_burns_zoom_direction\":\"in\",\"pp_custom_cursor_text_border_border\":\"\",\"pp_custom_cursor_text_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_color\":\"\",\"pp_custom_cursor_text_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_enable\":\"\",\"pp_elements_tooltip_target\":\"current\",\"pp_elements_tooltip_selector\":\"\",\"pp_elements_tooltip_trigger\":\"hover\",\"pp_elements_tooltip_position\":\"top\",\"pp_elements_tooltip_arrow\":\"yes\",\"pp_elements_tooltip_animation\":\"fade\",\"pp_elements_tooltip_distance\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_zindex\":99,\"pp_elements_tooltip_bg_color\":\"\",\"pp_elements_tooltip_color\":\"\",\"pp_elements_tooltip_typography_typography\":\"\",\"pp_elements_tooltip_typography_font_family\":\"\",\"pp_elements_tooltip_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_weight\":\"\",\"pp_elements_tooltip_typography_text_transform\":\"\",\"pp_elements_tooltip_typography_font_style\":\"\",\"pp_elements_tooltip_typography_text_decoration\":\"\",\"pp_elements_tooltip_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_box_shadow_box_shadow_type\":\"\",\"pp_elements_tooltip_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"pp_elements_tooltip_box_shadow_box_shadow_position\":\" \",\"pp_elements_tooltip_border_border\":\"\",\"pp_elements_tooltip_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_color\":\"\",\"pp_elements_tooltip_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"\",\"motion_fx_translateY_effect\":\"\",\"motion_fx_translateY_direction\":\"\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_translateX_effect\":\"\",\"motion_fx_translateX_direction\":\"\",\"motion_fx_translateX_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_translateX_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_opacity_effect\":\"\",\"motion_fx_opacity_direction\":\"out-in\",\"motion_fx_opacity_level\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_opacity_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_blur_effect\":\"\",\"motion_fx_blur_direction\":\"out-in\",\"motion_fx_blur_level\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"motion_fx_blur_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_rotateZ_effect\":\"\",\"motion_fx_rotateZ_direction\":\"\",\"motion_fx_rotateZ_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_rotateZ_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_scale_effect\":\"\",\"motion_fx_scale_direction\":\"out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_scale_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_transform_origin_x\":\"center\",\"motion_fx_transform_origin_y\":\"center\",\"motion_fx_devices\":[\"widescreen\",\"desktop\",\"tablet_extra\",\"tablet\",\"mobile_extra\",\"mobile\"],\"motion_fx_range\":\"\",\"motion_fx_motion_fx_mouse\":\"\",\"motion_fx_mouseTrack_effect\":\"\",\"motion_fx_mouseTrack_direction\":\"\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_tilt_effect\":\"\",\"motion_fx_tilt_direction\":\"\",\"motion_fx_tilt_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"handle_motion_fx_asset_loading\":\"\",\"sticky\":\"\",\"sticky_on\":[\"widescreen\",\"desktop\",\"tablet_extra\",\"tablet\",\"mobile_extra\",\"mobile\"],\"sticky_offset\":0,\"sticky_offset_widescreen\":\"\",\"sticky_offset_tablet_extra\":\"\",\"sticky_offset_tablet\":\"\",\"sticky_offset_mobile_extra\":\"\",\"sticky_offset_mobile\":\"\",\"sticky_effects_offset\":0,\"sticky_effects_offset_widescreen\":\"\",\"sticky_effects_offset_tablet_extra\":\"\",\"sticky_effects_offset_tablet\":\"\",\"sticky_effects_offset_mobile_extra\":\"\",\"sticky_effects_offset_mobile\":\"\",\"sticky_anchor_link_offset\":0,\"sticky_anchor_link_offset_widescreen\":\"\",\"sticky_anchor_link_offset_tablet_extra\":\"\",\"sticky_anchor_link_offset_tablet\":\"\",\"sticky_anchor_link_offset_mobile_extra\":\"\",\"sticky_anchor_link_offset_mobile\":\"\",\"sticky_parent\":\"\",\"_animation\":\"\",\"_animation_widescreen\":\"\",\"_animation_tablet_extra\":\"\",\"_animation_tablet\":\"\",\"_animation_mobile_extra\":\"\",\"_animation_mobile\":\"\",\"animation_duration\":\"\",\"_animation_delay\":\"\",\"_transform_rotate_popover\":\"\",\"_transform_rotateZ_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotate_3d\":\"\",\"_transform_rotateX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"\",\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_popover\":\"\",\"_transform_keep_proportions\":\"yes\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skew_popover\":\"\",\"_transform_skewX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_flipX_effect\":\"\",\"_transform_flipY_effect\":\"\",\"_transform_rotate_popover_hover\":\"\",\"_transform_rotateZ_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotate_3d_hover\":\"\",\"_transform_rotateX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover_hover\":\"\",\"_transform_translateX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_popover_hover\":\"\",\"_transform_keep_proportions_hover\":\"yes\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skew_popover_hover\":\"\",\"_transform_skewX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_flipX_effect_hover\":\"\",\"_transform_flipY_effect_hover\":\"\",\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point\":\"\",\"motion_fx_transform_x_anchor_point_widescreen\":\"\",\"motion_fx_transform_x_anchor_point_tablet_extra\":\"\",\"motion_fx_transform_x_anchor_point_tablet\":\"\",\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_x_anchor_point_mobile\":\"\",\"motion_fx_transform_y_anchor_point\":\"\",\"motion_fx_transform_y_anchor_point_widescreen\":\"\",\"motion_fx_transform_y_anchor_point_tablet_extra\":\"\",\"motion_fx_transform_y_anchor_point_tablet\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile\":\"\",\"_background_color\":\"\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_stop_widescreen\":{\"unit\":\"%\"},\"_background_color_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_color_stop_tablet\":{\"unit\":\"%\"},\"_background_color_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_color_stop_mobile\":{\"unit\":\"%\"},\"_background_color_b\":\"#f2295b\",\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_color_b_stop_widescreen\":{\"unit\":\"%\"},\"_background_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_color_b_stop_tablet\":{\"unit\":\"%\"},\"_background_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_color_b_stop_mobile\":{\"unit\":\"%\"},\"_background_gradient_type\":\"linear\",\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"_background_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\"},\"_background_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\"},\"_background_gradient_position\":\"center center\",\"_background_gradient_position_widescreen\":\"\",\"_background_gradient_position_tablet_extra\":\"\",\"_background_gradient_position_tablet\":\"\",\"_background_gradient_position_mobile_extra\":\"\",\"_background_gradient_position_mobile\":\"\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position\":\"\",\"_background_position_widescreen\":\"\",\"_background_position_tablet_extra\":\"\",\"_background_position_tablet\":\"\",\"_background_position_mobile_extra\":\"\",\"_background_position_mobile\":\"\",\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_attachment\":\"\",\"_background_repeat\":\"\",\"_background_repeat_widescreen\":\"\",\"_background_repeat_tablet_extra\":\"\",\"_background_repeat_tablet\":\"\",\"_background_repeat_mobile_extra\":\"\",\"_background_repeat_mobile\":\"\",\"_background_size\":\"\",\"_background_size_widescreen\":\"\",\"_background_size_tablet_extra\":\"\",\"_background_size_tablet\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_size_mobile\":\"\",\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_video_link\":\"\",\"_background_video_start\":\"\",\"_background_video_end\":\"\",\"_background_play_once\":\"\",\"_background_play_on_mobile\":\"\",\"_background_privacy_mode\":\"\",\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_slideshow_loop\":\"yes\",\"_background_slideshow_slide_duration\":5000,\"_background_slideshow_slide_transition\":\"fade\",\"_background_slideshow_transition_duration\":500,\"_background_slideshow_background_size\":\"\",\"_background_slideshow_background_size_widescreen\":\"\",\"_background_slideshow_background_size_tablet_extra\":\"\",\"_background_slideshow_background_size_tablet\":\"\",\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_size_mobile\":\"\",\"_background_slideshow_background_position\":\"\",\"_background_slideshow_background_position_widescreen\":\"\",\"_background_slideshow_background_position_tablet_extra\":\"\",\"_background_slideshow_background_position_tablet\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile\":\"\",\"_background_slideshow_lazyload\":\"\",\"_background_slideshow_ken_burns\":\"\",\"_background_slideshow_ken_burns_zoom_direction\":\"in\",\"_background_hover_background\":\"\",\"_background_hover_color\":\"\",\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_stop_widescreen\":{\"unit\":\"%\"},\"_background_hover_color_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\"},\"_background_hover_color_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\"},\"_background_hover_color_b\":\"#f2295b\",\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_color_b_stop_widescreen\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\"},\"_background_hover_gradient_type\":\"linear\",\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\"},\"_background_hover_gradient_position\":\"center center\",\"_background_hover_gradient_position_widescreen\":\"\",\"_background_hover_gradient_position_tablet_extra\":\"\",\"_background_hover_gradient_position_tablet\":\"\",\"_background_hover_gradient_position_mobile_extra\":\"\",\"_background_hover_gradient_position_mobile\":\"\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position\":\"\",\"_background_hover_position_widescreen\":\"\",\"_background_hover_position_tablet_extra\":\"\",\"_background_hover_position_tablet\":\"\",\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_position_mobile\":\"\",\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_attachment\":\"\",\"_background_hover_repeat\":\"\",\"_background_hover_repeat_widescreen\":\"\",\"_background_hover_repeat_tablet_extra\":\"\",\"_background_hover_repeat_tablet\":\"\",\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_repeat_mobile\":\"\",\"_background_hover_size\":\"\",\"_background_hover_size_widescreen\":\"\",\"_background_hover_size_tablet_extra\":\"\",\"_background_hover_size_tablet\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_size_mobile\":\"\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_video_link\":\"\",\"_background_hover_video_start\":\"\",\"_background_hover_video_end\":\"\",\"_background_hover_play_once\":\"\",\"_background_hover_play_on_mobile\":\"\",\"_background_hover_privacy_mode\":\"\",\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_background_hover_slideshow_loop\":\"yes\",\"_background_hover_slideshow_slide_duration\":5000,\"_background_hover_slideshow_slide_transition\":\"fade\",\"_background_hover_slideshow_transition_duration\":500,\"_background_hover_slideshow_background_size\":\"\",\"_background_hover_slideshow_background_size_widescreen\":\"\",\"_background_hover_slideshow_background_size_tablet_extra\":\"\",\"_background_hover_slideshow_background_size_tablet\":\"\",\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_size_mobile\":\"\",\"_background_hover_slideshow_background_position\":\"\",\"_background_hover_slideshow_background_position_widescreen\":\"\",\"_background_hover_slideshow_background_position_tablet_extra\":\"\",\"_background_hover_slideshow_background_position_tablet\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile\":\"\",\"_background_hover_slideshow_lazyload\":\"\",\"_background_hover_slideshow_ken_burns\":\"\",\"_background_hover_slideshow_ken_burns_zoom_direction\":\"in\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_box_shadow_position\":\" \",\"_border_hover_border\":\"\",\"_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_color\":\"\",\"_border_radius_hover\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_box_shadow_hover_box_shadow_type\":\"\",\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_hover_box_shadow_position\":\" \",\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_switch\":\"\",\"_mask_shape\":\"circle\",\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_size\":\"contain\",\"_mask_size_widescreen\":\"\",\"_mask_size_tablet_extra\":\"\",\"_mask_size_tablet\":\"\",\"_mask_size_mobile_extra\":\"\",\"_mask_size_mobile\":\"\",\"_mask_size_scale\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_mask_size_scale_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position\":\"center center\",\"_mask_position_widescreen\":\"\",\"_mask_position_tablet_extra\":\"\",\"_mask_position_tablet\":\"\",\"_mask_position_mobile_extra\":\"\",\"_mask_position_mobile\":\"\",\"_mask_position_x\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_mask_position_x_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_mask_position_y_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat\":\"no-repeat\",\"_mask_repeat_widescreen\":\"\",\"_mask_repeat_tablet_extra\":\"\",\"_mask_repeat_tablet\":\"\",\"_mask_repeat_mobile_extra\":\"\",\"_mask_repeat_mobile\":\"\",\"hide_widescreen\":\"\",\"hide_desktop\":\"\",\"hide_tablet_extra\":\"\",\"hide_tablet\":\"\",\"hide_mobile_extra\":\"\",\"hide_mobile\":\"\",\"_attributes\":\"\",\"custom_css\":\"\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true},{\"id\":\"acbaf90\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5f31bac\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"32a9521\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dea9376\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7ff945\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"256b247\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title\":\"KONTAKT OS\",\"pp_display_conditions\":[{\"_id\":\"156b1a5\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-02-11 to 2026-02-17\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align_mobile_extra\":\"center\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"size\":\"default\",\"header_size\":\"h2\",\"align_widescreen\":\"\",\"align_tablet_extra\":\"\",\"align_tablet\":\"\",\"align_mobile\":\"\",\"typography_typography\":\"\",\"typography_font_family\":\"\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_weight\":\"\",\"typography_text_transform\":\"\",\"typography_font_style\":\"\",\"typography_text_decoration\":\"\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_type\":\"\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_stroke_color\":\"#000\",\"text_shadow_text_shadow_type\":\"\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"blend_mode\":\"\",\"title_color\":\"\",\"title_hover_color\":\"\",\"title_hover_color_transition_duration\":{\"unit\":\"s\",\"size\":\"\",\"sizes\":[]},\"_title\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"\",\"_element_width_widescreen\":\"\",\"_element_width_tablet_extra\":\"\",\"_element_width_tablet\":\"\",\"_element_width_mobile_extra\":\"\",\"_element_width_mobile\":\"\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_grid_column\":\"\",\"_grid_column_widescreen\":\"\",\"_grid_column_tablet_extra\":\"\",\"_grid_column_tablet\":\"\",\"_grid_column_mobile_extra\":\"\",\"_grid_column_mobile\":\"\",\"_grid_column_custom\":\"\",\"_grid_column_custom_widescreen\":\"\",\"_grid_column_custom_tablet_extra\":\"\",\"_grid_column_custom_tablet\":\"\",\"_grid_column_custom_mobile_extra\":\"\",\"_grid_column_custom_mobile\":\"\",\"_grid_row\":\"\",\"_grid_row_widescreen\":\"\",\"_grid_row_tablet_extra\":\"\",\"_grid_row_tablet\":\"\",\"_grid_row_mobile_extra\":\"\",\"_grid_row_mobile\":\"\",\"_grid_row_custom\":\"\",\"_grid_row_custom_widescreen\":\"\",\"_grid_row_custom_tablet_extra\":\"\",\"_grid_row_custom_tablet\":\"\",\"_grid_row_custom_mobile_extra\":\"\",\"_grid_row_custom_mobile\":\"\",\"_flex_align_self\":\"\",\"_flex_align_self_widescreen\":\"\",\"_flex_align_self_tablet_extra\":\"\",\"_flex_align_self_tablet\":\"\",\"_flex_align_self_mobile_extra\":\"\",\"_flex_align_self_mobile\":\"\",\"_flex_order\":\"\",\"_flex_order_widescreen\":\"\",\"_flex_order_tablet_extra\":\"\",\"_flex_order_tablet\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_mobile\":\"\",\"_flex_order_custom\":\"\",\"_flex_order_custom_widescreen\":\"\",\"_flex_order_custom_tablet_extra\":\"\",\"_flex_order_custom_tablet\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_order_custom_mobile\":\"\",\"_flex_size\":\"\",\"_flex_size_widescreen\":\"\",\"_flex_size_tablet_extra\":\"\",\"_flex_size_tablet\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_size_mobile\":\"\",\"_flex_grow\":1,\"_flex_grow_widescreen\":\"\",\"_flex_grow_tablet_extra\":\"\",\"_flex_grow_tablet\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_grow_mobile\":\"\",\"_flex_shrink\":1,\"_flex_shrink_widescreen\":\"\",\"_flex_shrink_tablet_extra\":\"\",\"_flex_shrink_tablet\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_flex_shrink_mobile\":\"\",\"_element_vertical_align\":\"\",\"_element_vertical_align_widescreen\":\"\",\"_element_vertical_align_tablet_extra\":\"\",\"_element_vertical_align_tablet\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_element_vertical_align_mobile\":\"\",\"_position\":\"\",\"_offset_orientation_h\":\"start\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_orientation_v\":\"start\",\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index\":\"\",\"_z_index_widescreen\":\"\",\"_z_index_tablet_extra\":\"\",\"_z_index_tablet\":\"\",\"_z_index_mobile_extra\":\"\",\"_z_index_mobile\":\"\",\"_element_id\":\"\",\"_css_classes\":\"\",\"e_display_conditions\":\"\",\"_element_cache\":\"\",\"pp_display_conditions_enable\":\"\",\"pp_display_conditions_output\":\"\",\"pp_display_conditions_relation\":\"all\",\"pp_wrapper_link_enable\":\"\",\"pp_wrapper_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_custom_cursor_enable\":\"\",\"pp_custom_cursor_target\":\"container\",\"pp_custom_cursor_css_selector\":\"\",\"pp_custom_cursor_type\":\"image\",\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text\":\"\",\"pp_custom_cursor_left_offset\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_top_offset\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_typography_typography\":\"\",\"pp_custom_cursor_text_typography_font_family\":\"\",\"pp_custom_cursor_text_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_weight\":\"\",\"pp_custom_cursor_text_typography_text_transform\":\"\",\"pp_custom_cursor_text_typography_font_style\":\"\",\"pp_custom_cursor_text_typography_text_decoration\":\"\",\"pp_custom_cursor_text_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_color\":\"\",\"pp_custom_cursor_text_bg_background\":\"\",\"pp_custom_cursor_text_bg_color\":\"\",\"pp_custom_cursor_text_bg_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_color_stop_widescreen\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_tablet_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_tablet\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_mobile_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_mobile\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b\":\"#f2295b\",\"pp_custom_cursor_text_bg_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pp_custom_cursor_text_bg_color_b_stop_widescreen\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_tablet\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_mobile\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_gradient_type\":\"linear\",\"pp_custom_cursor_text_bg_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"pp_custom_cursor_text_bg_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_tablet\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_mobile\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_position\":\"center center\",\"pp_custom_cursor_text_bg_gradient_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_gradient_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_gradient_position_tablet\":\"\",\"pp_custom_cursor_text_bg_gradient_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_gradient_position_mobile\":\"\",\"pp_custom_cursor_text_bg_position\":\"\",\"pp_custom_cursor_text_bg_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_position_tablet\":\"\",\"pp_custom_cursor_text_bg_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_position_mobile\":\"\",\"pp_custom_cursor_text_bg_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_attachment\":\"\",\"pp_custom_cursor_text_bg_repeat\":\"\",\"pp_custom_cursor_text_bg_repeat_widescreen\":\"\",\"pp_custom_cursor_text_bg_repeat_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_repeat_tablet\":\"\",\"pp_custom_cursor_text_bg_repeat_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_repeat_mobile\":\"\",\"pp_custom_cursor_text_bg_size\":\"\",\"pp_custom_cursor_text_bg_size_widescreen\":\"\",\"pp_custom_cursor_text_bg_size_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_size_tablet\":\"\",\"pp_custom_cursor_text_bg_size_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_size_mobile\":\"\",\"pp_custom_cursor_text_bg_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_video_link\":\"\",\"pp_custom_cursor_text_bg_video_start\":\"\",\"pp_custom_cursor_text_bg_video_end\":\"\",\"pp_custom_cursor_text_bg_play_once\":\"\",\"pp_custom_cursor_text_bg_play_on_mobile\":\"\",\"pp_custom_cursor_text_bg_privacy_mode\":\"\",\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"pp_custom_cursor_text_bg_slideshow_loop\":\"yes\",\"pp_custom_cursor_text_bg_slideshow_slide_duration\":5000,\"pp_custom_cursor_text_bg_slideshow_slide_transition\":\"fade\",\"pp_custom_cursor_text_bg_slideshow_transition_duration\":500,\"pp_custom_cursor_text_bg_slideshow_background_size\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_widescreen\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_tablet\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_mobile\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_tablet\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_mobile\":\"\",\"pp_custom_cursor_text_bg_slideshow_lazyload\":\"\",\"pp_custom_cursor_text_bg_slideshow_ken_burns\":\"\",\"pp_custom_cursor_text_bg_slideshow_ken_burns_zoom_direction\":\"in\",\"pp_custom_cursor_text_border_border\":\"\",\"pp_custom_cursor_text_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_color\":\"\",\"pp_custom_cursor_text_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_enable\":\"\",\"pp_elements_tooltip_target\":\"current\",\"pp_elements_tooltip_selector\":\"\",\"pp_elements_tooltip_trigger\":\"hover\",\"pp_elements_tooltip_position\":\"top\",\"pp_elements_tooltip_arrow\":\"yes\",\"pp_elements_tooltip_animation\":\"fade\",\"pp_elements_tooltip_distance\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_zindex\":99,\"pp_elements_tooltip_bg_color\":\"\",\"pp_elements_tooltip_color\":\"\",\"pp_elements_tooltip_typography_typography\":\"\",\"pp_elements_tooltip_typography_font_family\":\"\",\"pp_elements_tooltip_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_weight\":\"\",\"pp_elements_tooltip_typography_text_transform\":\"\",\"pp_elements_tooltip_typography_font_style\":\"\",\"pp_elements_tooltip_typography_text_decoration\":\"\",\"pp_elements_tooltip_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_box_shadow_box_shadow_type\":\"\",\"pp_elements_tooltip_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"pp_elements_tooltip_box_shadow_box_shadow_position\":\" \",\"pp_elements_tooltip_border_border\":\"\",\"pp_elements_tooltip_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_color\":\"\",\"pp_elements_tooltip_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"\",\"motion_fx_translateY_effect\":\"\",\"motion_fx_translateY_direction\":\"\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_translateX_effect\":\"\",\"motion_fx_translateX_direction\":\"\",\"motion_fx_translateX_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_translateX_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_opacity_effect\":\"\",\"motion_fx_opacity_direction\":\"out-in\",\"motion_fx_opacity_level\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_opacity_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_blur_effect\":\"\",\"motion_fx_blur_direction\":\"out-in\",\"motion_fx_blur_level\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"motion_fx_blur_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_rotateZ_effect\":\"\",\"motion_fx_rotateZ_direction\":\"\",\"motion_fx_rotateZ_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_rotateZ_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_scale_effect\":\"\",\"motion_fx_scale_direction\":\"out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_scale_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_transform_origin_x\":\"center\",\"motion_fx_transform_origin_y\":\"center\",\"motion_fx_devices\":[\"widescreen\",\"desktop\",\"tablet_extra\",\"tablet\",\"mobile_extra\",\"mobile\"],\"motion_fx_range\":\"\",\"motion_fx_motion_fx_mouse\":\"\",\"motion_fx_mouseTrack_effect\":\"\",\"motion_fx_mouseTrack_direction\":\"\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_tilt_effect\":\"\",\"motion_fx_tilt_direction\":\"\",\"motion_fx_tilt_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"handle_motion_fx_asset_loading\":\"\",\"sticky\":\"\",\"sticky_on\":[\"widescreen\",\"desktop\",\"tablet_extra\",\"tablet\",\"mobile_extra\",\"mobile\"],\"sticky_offset\":0,\"sticky_offset_widescreen\":\"\",\"sticky_offset_tablet_extra\":\"\",\"sticky_offset_tablet\":\"\",\"sticky_offset_mobile_extra\":\"\",\"sticky_offset_mobile\":\"\",\"sticky_effects_offset\":0,\"sticky_effects_offset_widescreen\":\"\",\"sticky_effects_offset_tablet_extra\":\"\",\"sticky_effects_offset_tablet\":\"\",\"sticky_effects_offset_mobile_extra\":\"\",\"sticky_effects_offset_mobile\":\"\",\"sticky_anchor_link_offset\":0,\"sticky_anchor_link_offset_widescreen\":\"\",\"sticky_anchor_link_offset_tablet_extra\":\"\",\"sticky_anchor_link_offset_tablet\":\"\",\"sticky_anchor_link_offset_mobile_extra\":\"\",\"sticky_anchor_link_offset_mobile\":\"\",\"sticky_parent\":\"\",\"_animation\":\"\",\"_animation_widescreen\":\"\",\"_animation_tablet_extra\":\"\",\"_animation_tablet\":\"\",\"_animation_mobile_extra\":\"\",\"_animation_mobile\":\"\",\"animation_duration\":\"\",\"_animation_delay\":\"\",\"_transform_rotate_popover\":\"\",\"_transform_rotateZ_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotate_3d\":\"\",\"_transform_rotateX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"\",\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_popover\":\"\",\"_transform_keep_proportions\":\"yes\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skew_popover\":\"\",\"_transform_skewX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_flipX_effect\":\"\",\"_transform_flipY_effect\":\"\",\"_transform_rotate_popover_hover\":\"\",\"_transform_rotateZ_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotate_3d_hover\":\"\",\"_transform_rotateX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover_hover\":\"\",\"_transform_translateX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_popover_hover\":\"\",\"_transform_keep_proportions_hover\":\"yes\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skew_popover_hover\":\"\",\"_transform_skewX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_flipX_effect_hover\":\"\",\"_transform_flipY_effect_hover\":\"\",\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point\":\"\",\"motion_fx_transform_x_anchor_point_widescreen\":\"\",\"motion_fx_transform_x_anchor_point_tablet_extra\":\"\",\"motion_fx_transform_x_anchor_point_tablet\":\"\",\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_x_anchor_point_mobile\":\"\",\"motion_fx_transform_y_anchor_point\":\"\",\"motion_fx_transform_y_anchor_point_widescreen\":\"\",\"motion_fx_transform_y_anchor_point_tablet_extra\":\"\",\"motion_fx_transform_y_anchor_point_tablet\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile\":\"\",\"_background_background\":\"\",\"_background_color\":\"\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_stop_widescreen\":{\"unit\":\"%\"},\"_background_color_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_color_stop_tablet\":{\"unit\":\"%\"},\"_background_color_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_color_stop_mobile\":{\"unit\":\"%\"},\"_background_color_b\":\"#f2295b\",\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_color_b_stop_widescreen\":{\"unit\":\"%\"},\"_background_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_color_b_stop_tablet\":{\"unit\":\"%\"},\"_background_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_color_b_stop_mobile\":{\"unit\":\"%\"},\"_background_gradient_type\":\"linear\",\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"_background_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\"},\"_background_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\"},\"_background_gradient_position\":\"center center\",\"_background_gradient_position_widescreen\":\"\",\"_background_gradient_position_tablet_extra\":\"\",\"_background_gradient_position_tablet\":\"\",\"_background_gradient_position_mobile_extra\":\"\",\"_background_gradient_position_mobile\":\"\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position\":\"\",\"_background_position_widescreen\":\"\",\"_background_position_tablet_extra\":\"\",\"_background_position_tablet\":\"\",\"_background_position_mobile_extra\":\"\",\"_background_position_mobile\":\"\",\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_attachment\":\"\",\"_background_repeat\":\"\",\"_background_repeat_widescreen\":\"\",\"_background_repeat_tablet_extra\":\"\",\"_background_repeat_tablet\":\"\",\"_background_repeat_mobile_extra\":\"\",\"_background_repeat_mobile\":\"\",\"_background_size\":\"\",\"_background_size_widescreen\":\"\",\"_background_size_tablet_extra\":\"\",\"_background_size_tablet\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_size_mobile\":\"\",\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_video_link\":\"\",\"_background_video_start\":\"\",\"_background_video_end\":\"\",\"_background_play_once\":\"\",\"_background_play_on_mobile\":\"\",\"_background_privacy_mode\":\"\",\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_slideshow_loop\":\"yes\",\"_background_slideshow_slide_duration\":5000,\"_background_slideshow_slide_transition\":\"fade\",\"_background_slideshow_transition_duration\":500,\"_background_slideshow_background_size\":\"\",\"_background_slideshow_background_size_widescreen\":\"\",\"_background_slideshow_background_size_tablet_extra\":\"\",\"_background_slideshow_background_size_tablet\":\"\",\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_size_mobile\":\"\",\"_background_slideshow_background_position\":\"\",\"_background_slideshow_background_position_widescreen\":\"\",\"_background_slideshow_background_position_tablet_extra\":\"\",\"_background_slideshow_background_position_tablet\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile\":\"\",\"_background_slideshow_lazyload\":\"\",\"_background_slideshow_ken_burns\":\"\",\"_background_slideshow_ken_burns_zoom_direction\":\"in\",\"_background_hover_background\":\"\",\"_background_hover_color\":\"\",\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_stop_widescreen\":{\"unit\":\"%\"},\"_background_hover_color_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\"},\"_background_hover_color_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\"},\"_background_hover_color_b\":\"#f2295b\",\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_color_b_stop_widescreen\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\"},\"_background_hover_gradient_type\":\"linear\",\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\"},\"_background_hover_gradient_position\":\"center center\",\"_background_hover_gradient_position_widescreen\":\"\",\"_background_hover_gradient_position_tablet_extra\":\"\",\"_background_hover_gradient_position_tablet\":\"\",\"_background_hover_gradient_position_mobile_extra\":\"\",\"_background_hover_gradient_position_mobile\":\"\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position\":\"\",\"_background_hover_position_widescreen\":\"\",\"_background_hover_position_tablet_extra\":\"\",\"_background_hover_position_tablet\":\"\",\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_position_mobile\":\"\",\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_attachment\":\"\",\"_background_hover_repeat\":\"\",\"_background_hover_repeat_widescreen\":\"\",\"_background_hover_repeat_tablet_extra\":\"\",\"_background_hover_repeat_tablet\":\"\",\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_repeat_mobile\":\"\",\"_background_hover_size\":\"\",\"_background_hover_size_widescreen\":\"\",\"_background_hover_size_tablet_extra\":\"\",\"_background_hover_size_tablet\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_size_mobile\":\"\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_video_link\":\"\",\"_background_hover_video_start\":\"\",\"_background_hover_video_end\":\"\",\"_background_hover_play_once\":\"\",\"_background_hover_play_on_mobile\":\"\",\"_background_hover_privacy_mode\":\"\",\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_background_hover_slideshow_loop\":\"yes\",\"_background_hover_slideshow_slide_duration\":5000,\"_background_hover_slideshow_slide_transition\":\"fade\",\"_background_hover_slideshow_transition_duration\":500,\"_background_hover_slideshow_background_size\":\"\",\"_background_hover_slideshow_background_size_widescreen\":\"\",\"_background_hover_slideshow_background_size_tablet_extra\":\"\",\"_background_hover_slideshow_background_size_tablet\":\"\",\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_size_mobile\":\"\",\"_background_hover_slideshow_background_position\":\"\",\"_background_hover_slideshow_background_position_widescreen\":\"\",\"_background_hover_slideshow_background_position_tablet_extra\":\"\",\"_background_hover_slideshow_background_position_tablet\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile\":\"\",\"_background_hover_slideshow_lazyload\":\"\",\"_background_hover_slideshow_ken_burns\":\"\",\"_background_hover_slideshow_ken_burns_zoom_direction\":\"in\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"\",\"_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_color\":\"\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_box_shadow_position\":\" \",\"_border_hover_border\":\"\",\"_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_color\":\"\",\"_border_radius_hover\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_box_shadow_hover_box_shadow_type\":\"\",\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_hover_box_shadow_position\":\" \",\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_switch\":\"\",\"_mask_shape\":\"circle\",\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_size\":\"contain\",\"_mask_size_widescreen\":\"\",\"_mask_size_tablet_extra\":\"\",\"_mask_size_tablet\":\"\",\"_mask_size_mobile_extra\":\"\",\"_mask_size_mobile\":\"\",\"_mask_size_scale\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_mask_size_scale_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position\":\"center center\",\"_mask_position_widescreen\":\"\",\"_mask_position_tablet_extra\":\"\",\"_mask_position_tablet\":\"\",\"_mask_position_mobile_extra\":\"\",\"_mask_position_mobile\":\"\",\"_mask_position_x\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_mask_position_x_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_mask_position_y_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat\":\"no-repeat\",\"_mask_repeat_widescreen\":\"\",\"_mask_repeat_tablet_extra\":\"\",\"_mask_repeat_tablet\":\"\",\"_mask_repeat_mobile_extra\":\"\",\"_mask_repeat_mobile\":\"\",\"hide_widescreen\":\"\",\"hide_desktop\":\"\",\"hide_tablet_extra\":\"\",\"hide_tablet\":\"\",\"hide_mobile_extra\":\"\",\"hide_mobile\":\"\",\"_attributes\":\"\",\"custom_css\":\"\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"309c417\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Vi d\\u00e6kker hele Fyn \\u2013 og tager ogs\\u00e5 gerne opgaver uden for omr\\u00e5det, n\\u00e5r der er tale om sp\\u00e6ndende eller teknisk kr\\u00e6vende l\\u00f8sninger.\",\"pp_display_conditions\":[{\"_id\":\"e03db8a\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-02-11 to 2026-02-17\",\"pp_condition_date_time_before_value\":\"2026-02-17 12:18\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align_mobile_extra\":\"center\",\"align_mobile\":\"center\",\"drop_cap\":\"\",\"text_columns\":\"\",\"text_columns_widescreen\":\"\",\"text_columns_tablet_extra\":\"\",\"text_columns_tablet\":\"\",\"text_columns_mobile_extra\":\"\",\"text_columns_mobile\":\"\",\"column_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"\",\"align_widescreen\":\"\",\"align_tablet_extra\":\"\",\"align_tablet\":\"\",\"typography_typography\":\"\",\"typography_font_family\":\"\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_weight\":\"\",\"typography_text_transform\":\"\",\"typography_font_style\":\"\",\"typography_text_decoration\":\"\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_shadow_text_shadow_type\":\"\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"paragraph_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"paragraph_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"paragraph_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"paragraph_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"paragraph_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"paragraph_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_color\":\"\",\"link_color\":\"\",\"link_hover_color\":\"\",\"link_hover_color_transition_duration\":{\"unit\":\"s\",\"size\":\"\",\"sizes\":[]},\"drop_cap_view\":\"default\",\"drop_cap_primary_color\":\"\",\"drop_cap_secondary_color\":\"\",\"drop_cap_shadow_text_shadow_type\":\"\",\"drop_cap_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"drop_cap_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"drop_cap_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"drop_cap_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"drop_cap_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"drop_cap_typography_typography\":\"\",\"drop_cap_typography_font_family\":\"\",\"drop_cap_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_weight\":\"\",\"drop_cap_typography_text_transform\":\"\",\"drop_cap_typography_font_style\":\"\",\"drop_cap_typography_text_decoration\":\"\",\"drop_cap_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_title\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"\",\"_element_width_widescreen\":\"\",\"_element_width_tablet_extra\":\"\",\"_element_width_tablet\":\"\",\"_element_width_mobile_extra\":\"\",\"_element_width_mobile\":\"\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_grid_column\":\"\",\"_grid_column_widescreen\":\"\",\"_grid_column_tablet_extra\":\"\",\"_grid_column_tablet\":\"\",\"_grid_column_mobile_extra\":\"\",\"_grid_column_mobile\":\"\",\"_grid_column_custom\":\"\",\"_grid_column_custom_widescreen\":\"\",\"_grid_column_custom_tablet_extra\":\"\",\"_grid_column_custom_tablet\":\"\",\"_grid_column_custom_mobile_extra\":\"\",\"_grid_column_custom_mobile\":\"\",\"_grid_row\":\"\",\"_grid_row_widescreen\":\"\",\"_grid_row_tablet_extra\":\"\",\"_grid_row_tablet\":\"\",\"_grid_row_mobile_extra\":\"\",\"_grid_row_mobile\":\"\",\"_grid_row_custom\":\"\",\"_grid_row_custom_widescreen\":\"\",\"_grid_row_custom_tablet_extra\":\"\",\"_grid_row_custom_tablet\":\"\",\"_grid_row_custom_mobile_extra\":\"\",\"_grid_row_custom_mobile\":\"\",\"_flex_align_self\":\"\",\"_flex_align_self_widescreen\":\"\",\"_flex_align_self_tablet_extra\":\"\",\"_flex_align_self_tablet\":\"\",\"_flex_align_self_mobile_extra\":\"\",\"_flex_align_self_mobile\":\"\",\"_flex_order\":\"\",\"_flex_order_widescreen\":\"\",\"_flex_order_tablet_extra\":\"\",\"_flex_order_tablet\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_mobile\":\"\",\"_flex_order_custom\":\"\",\"_flex_order_custom_widescreen\":\"\",\"_flex_order_custom_tablet_extra\":\"\",\"_flex_order_custom_tablet\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_order_custom_mobile\":\"\",\"_flex_size\":\"\",\"_flex_size_widescreen\":\"\",\"_flex_size_tablet_extra\":\"\",\"_flex_size_tablet\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_size_mobile\":\"\",\"_flex_grow\":1,\"_flex_grow_widescreen\":\"\",\"_flex_grow_tablet_extra\":\"\",\"_flex_grow_tablet\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_grow_mobile\":\"\",\"_flex_shrink\":1,\"_flex_shrink_widescreen\":\"\",\"_flex_shrink_tablet_extra\":\"\",\"_flex_shrink_tablet\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_flex_shrink_mobile\":\"\",\"_element_vertical_align\":\"\",\"_element_vertical_align_widescreen\":\"\",\"_element_vertical_align_tablet_extra\":\"\",\"_element_vertical_align_tablet\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_element_vertical_align_mobile\":\"\",\"_position\":\"\",\"_offset_orientation_h\":\"start\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_orientation_v\":\"start\",\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index\":\"\",\"_z_index_widescreen\":\"\",\"_z_index_tablet_extra\":\"\",\"_z_index_tablet\":\"\",\"_z_index_mobile_extra\":\"\",\"_z_index_mobile\":\"\",\"_element_id\":\"\",\"_css_classes\":\"\",\"e_display_conditions\":\"\",\"_element_cache\":\"\",\"pp_display_conditions_enable\":\"\",\"pp_display_conditions_output\":\"\",\"pp_display_conditions_relation\":\"all\",\"pp_wrapper_link_enable\":\"\",\"pp_wrapper_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_custom_cursor_enable\":\"\",\"pp_custom_cursor_target\":\"container\",\"pp_custom_cursor_css_selector\":\"\",\"pp_custom_cursor_type\":\"image\",\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text\":\"\",\"pp_custom_cursor_left_offset\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_top_offset\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_typography_typography\":\"\",\"pp_custom_cursor_text_typography_font_family\":\"\",\"pp_custom_cursor_text_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_weight\":\"\",\"pp_custom_cursor_text_typography_text_transform\":\"\",\"pp_custom_cursor_text_typography_font_style\":\"\",\"pp_custom_cursor_text_typography_text_decoration\":\"\",\"pp_custom_cursor_text_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_color\":\"\",\"pp_custom_cursor_text_bg_background\":\"\",\"pp_custom_cursor_text_bg_color\":\"\",\"pp_custom_cursor_text_bg_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_color_stop_widescreen\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_tablet_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_tablet\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_mobile_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_mobile\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b\":\"#f2295b\",\"pp_custom_cursor_text_bg_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pp_custom_cursor_text_bg_color_b_stop_widescreen\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_tablet\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_mobile\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_gradient_type\":\"linear\",\"pp_custom_cursor_text_bg_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"pp_custom_cursor_text_bg_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_tablet\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_mobile\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_position\":\"center center\",\"pp_custom_cursor_text_bg_gradient_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_gradient_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_gradient_position_tablet\":\"\",\"pp_custom_cursor_text_bg_gradient_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_gradient_position_mobile\":\"\",\"pp_custom_cursor_text_bg_position\":\"\",\"pp_custom_cursor_text_bg_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_position_tablet\":\"\",\"pp_custom_cursor_text_bg_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_position_mobile\":\"\",\"pp_custom_cursor_text_bg_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_attachment\":\"\",\"pp_custom_cursor_text_bg_repeat\":\"\",\"pp_custom_cursor_text_bg_repeat_widescreen\":\"\",\"pp_custom_cursor_text_bg_repeat_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_repeat_tablet\":\"\",\"pp_custom_cursor_text_bg_repeat_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_repeat_mobile\":\"\",\"pp_custom_cursor_text_bg_size\":\"\",\"pp_custom_cursor_text_bg_size_widescreen\":\"\",\"pp_custom_cursor_text_bg_size_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_size_tablet\":\"\",\"pp_custom_cursor_text_bg_size_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_size_mobile\":\"\",\"pp_custom_cursor_text_bg_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_video_link\":\"\",\"pp_custom_cursor_text_bg_video_start\":\"\",\"pp_custom_cursor_text_bg_video_end\":\"\",\"pp_custom_cursor_text_bg_play_once\":\"\",\"pp_custom_cursor_text_bg_play_on_mobile\":\"\",\"pp_custom_cursor_text_bg_privacy_mode\":\"\",\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"pp_custom_cursor_text_bg_slideshow_loop\":\"yes\",\"pp_custom_cursor_text_bg_slideshow_slide_duration\":5000,\"pp_custom_cursor_text_bg_slideshow_slide_transition\":\"fade\",\"pp_custom_cursor_text_bg_slideshow_transition_duration\":500,\"pp_custom_cursor_text_bg_slideshow_background_size\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_widescreen\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_tablet\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_mobile\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_tablet\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_mobile\":\"\",\"pp_custom_cursor_text_bg_slideshow_lazyload\":\"\",\"pp_custom_cursor_text_bg_slideshow_ken_burns\":\"\",\"pp_custom_cursor_text_bg_slideshow_ken_burns_zoom_direction\":\"in\",\"pp_custom_cursor_text_border_border\":\"\",\"pp_custom_cursor_text_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_color\":\"\",\"pp_custom_cursor_text_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_enable\":\"\",\"pp_elements_tooltip_target\":\"current\",\"pp_elements_tooltip_selector\":\"\",\"pp_elements_tooltip_trigger\":\"hover\",\"pp_elements_tooltip_position\":\"top\",\"pp_elements_tooltip_arrow\":\"yes\",\"pp_elements_tooltip_animation\":\"fade\",\"pp_elements_tooltip_distance\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_zindex\":99,\"pp_elements_tooltip_bg_color\":\"\",\"pp_elements_tooltip_color\":\"\",\"pp_elements_tooltip_typography_typography\":\"\",\"pp_elements_tooltip_typography_font_family\":\"\",\"pp_elements_tooltip_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_weight\":\"\",\"pp_elements_tooltip_typography_text_transform\":\"\",\"pp_elements_tooltip_typography_font_style\":\"\",\"pp_elements_tooltip_typography_text_decoration\":\"\",\"pp_elements_tooltip_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_box_shadow_box_shadow_type\":\"\",\"pp_elements_tooltip_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"pp_elements_tooltip_box_shadow_box_shadow_position\":\" \",\"pp_elements_tooltip_border_border\":\"\",\"pp_elements_tooltip_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_color\":\"\",\"pp_elements_tooltip_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"\",\"motion_fx_translateY_effect\":\"\",\"motion_fx_translateY_direction\":\"\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_translateX_effect\":\"\",\"motion_fx_translateX_direction\":\"\",\"motion_fx_translateX_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_translateX_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_opacity_effect\":\"\",\"motion_fx_opacity_direction\":\"out-in\",\"motion_fx_opacity_level\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_opacity_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_blur_effect\":\"\",\"motion_fx_blur_direction\":\"out-in\",\"motion_fx_blur_level\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"motion_fx_blur_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_rotateZ_effect\":\"\",\"motion_fx_rotateZ_direction\":\"\",\"motion_fx_rotateZ_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_rotateZ_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_scale_effect\":\"\",\"motion_fx_scale_direction\":\"out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_scale_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_transform_origin_x\":\"center\",\"motion_fx_transform_origin_y\":\"center\",\"motion_fx_devices\":[\"widescreen\",\"desktop\",\"tablet_extra\",\"tablet\",\"mobile_extra\",\"mobile\"],\"motion_fx_range\":\"\",\"motion_fx_motion_fx_mouse\":\"\",\"motion_fx_mouseTrack_effect\":\"\",\"motion_fx_mouseTrack_direction\":\"\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_tilt_effect\":\"\",\"motion_fx_tilt_direction\":\"\",\"motion_fx_tilt_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"handle_motion_fx_asset_loading\":\"\",\"sticky\":\"\",\"sticky_on\":[\"widescreen\",\"desktop\",\"tablet_extra\",\"tablet\",\"mobile_extra\",\"mobile\"],\"sticky_offset\":0,\"sticky_offset_widescreen\":\"\",\"sticky_offset_tablet_extra\":\"\",\"sticky_offset_tablet\":\"\",\"sticky_offset_mobile_extra\":\"\",\"sticky_offset_mobile\":\"\",\"sticky_effects_offset\":0,\"sticky_effects_offset_widescreen\":\"\",\"sticky_effects_offset_tablet_extra\":\"\",\"sticky_effects_offset_tablet\":\"\",\"sticky_effects_offset_mobile_extra\":\"\",\"sticky_effects_offset_mobile\":\"\",\"sticky_anchor_link_offset\":0,\"sticky_anchor_link_offset_widescreen\":\"\",\"sticky_anchor_link_offset_tablet_extra\":\"\",\"sticky_anchor_link_offset_tablet\":\"\",\"sticky_anchor_link_offset_mobile_extra\":\"\",\"sticky_anchor_link_offset_mobile\":\"\",\"sticky_parent\":\"\",\"_animation\":\"\",\"_animation_widescreen\":\"\",\"_animation_tablet_extra\":\"\",\"_animation_tablet\":\"\",\"_animation_mobile_extra\":\"\",\"_animation_mobile\":\"\",\"animation_duration\":\"\",\"_animation_delay\":\"\",\"_transform_rotate_popover\":\"\",\"_transform_rotateZ_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotate_3d\":\"\",\"_transform_rotateX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"\",\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_popover\":\"\",\"_transform_keep_proportions\":\"yes\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skew_popover\":\"\",\"_transform_skewX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_flipX_effect\":\"\",\"_transform_flipY_effect\":\"\",\"_transform_rotate_popover_hover\":\"\",\"_transform_rotateZ_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotate_3d_hover\":\"\",\"_transform_rotateX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover_hover\":\"\",\"_transform_translateX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_popover_hover\":\"\",\"_transform_keep_proportions_hover\":\"yes\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skew_popover_hover\":\"\",\"_transform_skewX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_flipX_effect_hover\":\"\",\"_transform_flipY_effect_hover\":\"\",\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point\":\"\",\"motion_fx_transform_x_anchor_point_widescreen\":\"\",\"motion_fx_transform_x_anchor_point_tablet_extra\":\"\",\"motion_fx_transform_x_anchor_point_tablet\":\"\",\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_x_anchor_point_mobile\":\"\",\"motion_fx_transform_y_anchor_point\":\"\",\"motion_fx_transform_y_anchor_point_widescreen\":\"\",\"motion_fx_transform_y_anchor_point_tablet_extra\":\"\",\"motion_fx_transform_y_anchor_point_tablet\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile\":\"\",\"_background_background\":\"\",\"_background_color\":\"\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_stop_widescreen\":{\"unit\":\"%\"},\"_background_color_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_color_stop_tablet\":{\"unit\":\"%\"},\"_background_color_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_color_stop_mobile\":{\"unit\":\"%\"},\"_background_color_b\":\"#f2295b\",\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_color_b_stop_widescreen\":{\"unit\":\"%\"},\"_background_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_color_b_stop_tablet\":{\"unit\":\"%\"},\"_background_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_color_b_stop_mobile\":{\"unit\":\"%\"},\"_background_gradient_type\":\"linear\",\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"_background_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\"},\"_background_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\"},\"_background_gradient_position\":\"center center\",\"_background_gradient_position_widescreen\":\"\",\"_background_gradient_position_tablet_extra\":\"\",\"_background_gradient_position_tablet\":\"\",\"_background_gradient_position_mobile_extra\":\"\",\"_background_gradient_position_mobile\":\"\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position\":\"\",\"_background_position_widescreen\":\"\",\"_background_position_tablet_extra\":\"\",\"_background_position_tablet\":\"\",\"_background_position_mobile_extra\":\"\",\"_background_position_mobile\":\"\",\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_attachment\":\"\",\"_background_repeat\":\"\",\"_background_repeat_widescreen\":\"\",\"_background_repeat_tablet_extra\":\"\",\"_background_repeat_tablet\":\"\",\"_background_repeat_mobile_extra\":\"\",\"_background_repeat_mobile\":\"\",\"_background_size\":\"\",\"_background_size_widescreen\":\"\",\"_background_size_tablet_extra\":\"\",\"_background_size_tablet\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_size_mobile\":\"\",\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_video_link\":\"\",\"_background_video_start\":\"\",\"_background_video_end\":\"\",\"_background_play_once\":\"\",\"_background_play_on_mobile\":\"\",\"_background_privacy_mode\":\"\",\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_slideshow_loop\":\"yes\",\"_background_slideshow_slide_duration\":5000,\"_background_slideshow_slide_transition\":\"fade\",\"_background_slideshow_transition_duration\":500,\"_background_slideshow_background_size\":\"\",\"_background_slideshow_background_size_widescreen\":\"\",\"_background_slideshow_background_size_tablet_extra\":\"\",\"_background_slideshow_background_size_tablet\":\"\",\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_size_mobile\":\"\",\"_background_slideshow_background_position\":\"\",\"_background_slideshow_background_position_widescreen\":\"\",\"_background_slideshow_background_position_tablet_extra\":\"\",\"_background_slideshow_background_position_tablet\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile\":\"\",\"_background_slideshow_lazyload\":\"\",\"_background_slideshow_ken_burns\":\"\",\"_background_slideshow_ken_burns_zoom_direction\":\"in\",\"_background_hover_background\":\"\",\"_background_hover_color\":\"\",\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_stop_widescreen\":{\"unit\":\"%\"},\"_background_hover_color_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\"},\"_background_hover_color_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\"},\"_background_hover_color_b\":\"#f2295b\",\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_color_b_stop_widescreen\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\"},\"_background_hover_gradient_type\":\"linear\",\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\"},\"_background_hover_gradient_position\":\"center center\",\"_background_hover_gradient_position_widescreen\":\"\",\"_background_hover_gradient_position_tablet_extra\":\"\",\"_background_hover_gradient_position_tablet\":\"\",\"_background_hover_gradient_position_mobile_extra\":\"\",\"_background_hover_gradient_position_mobile\":\"\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position\":\"\",\"_background_hover_position_widescreen\":\"\",\"_background_hover_position_tablet_extra\":\"\",\"_background_hover_position_tablet\":\"\",\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_position_mobile\":\"\",\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_attachment\":\"\",\"_background_hover_repeat\":\"\",\"_background_hover_repeat_widescreen\":\"\",\"_background_hover_repeat_tablet_extra\":\"\",\"_background_hover_repeat_tablet\":\"\",\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_repeat_mobile\":\"\",\"_background_hover_size\":\"\",\"_background_hover_size_widescreen\":\"\",\"_background_hover_size_tablet_extra\":\"\",\"_background_hover_size_tablet\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_size_mobile\":\"\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_video_link\":\"\",\"_background_hover_video_start\":\"\",\"_background_hover_video_end\":\"\",\"_background_hover_play_once\":\"\",\"_background_hover_play_on_mobile\":\"\",\"_background_hover_privacy_mode\":\"\",\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_background_hover_slideshow_loop\":\"yes\",\"_background_hover_slideshow_slide_duration\":5000,\"_background_hover_slideshow_slide_transition\":\"fade\",\"_background_hover_slideshow_transition_duration\":500,\"_background_hover_slideshow_background_size\":\"\",\"_background_hover_slideshow_background_size_widescreen\":\"\",\"_background_hover_slideshow_background_size_tablet_extra\":\"\",\"_background_hover_slideshow_background_size_tablet\":\"\",\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_size_mobile\":\"\",\"_background_hover_slideshow_background_position\":\"\",\"_background_hover_slideshow_background_position_widescreen\":\"\",\"_background_hover_slideshow_background_position_tablet_extra\":\"\",\"_background_hover_slideshow_background_position_tablet\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile\":\"\",\"_background_hover_slideshow_lazyload\":\"\",\"_background_hover_slideshow_ken_burns\":\"\",\"_background_hover_slideshow_ken_burns_zoom_direction\":\"in\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"\",\"_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_color\":\"\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_box_shadow_position\":\" \",\"_border_hover_border\":\"\",\"_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_color\":\"\",\"_border_radius_hover\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_box_shadow_hover_box_shadow_type\":\"\",\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_hover_box_shadow_position\":\" \",\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_switch\":\"\",\"_mask_shape\":\"circle\",\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_size\":\"contain\",\"_mask_size_widescreen\":\"\",\"_mask_size_tablet_extra\":\"\",\"_mask_size_tablet\":\"\",\"_mask_size_mobile_extra\":\"\",\"_mask_size_mobile\":\"\",\"_mask_size_scale\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_mask_size_scale_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position\":\"center center\",\"_mask_position_widescreen\":\"\",\"_mask_position_tablet_extra\":\"\",\"_mask_position_tablet\":\"\",\"_mask_position_mobile_extra\":\"\",\"_mask_position_mobile\":\"\",\"_mask_position_x\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_mask_position_x_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_mask_position_y_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat\":\"no-repeat\",\"_mask_repeat_widescreen\":\"\",\"_mask_repeat_tablet_extra\":\"\",\"_mask_repeat_tablet\":\"\",\"_mask_repeat_mobile_extra\":\"\",\"_mask_repeat_mobile\":\"\",\"hide_widescreen\":\"\",\"hide_desktop\":\"\",\"hide_tablet_extra\":\"\",\"hide_tablet\":\"\",\"hide_mobile_extra\":\"\",\"hide_mobile\":\"\",\"_attributes\":\"\",\"custom_css\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7061e9f\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"1a75682\",\"link\":{\"url\":\"https:\\/\\/www.facebook.com\\/cpnordic\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"da32d70\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/cpnordic\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.6,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"589cdcb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor6\"},\"icon_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"left\",\"align_tablet\":\"left\",\"align_mobile_extra\":\"center\",\"columns\":\"0\",\"columns_widescreen\":\"\",\"columns_tablet_extra\":\"\",\"columns_tablet\":\"\",\"columns_mobile_extra\":\"\",\"columns_mobile\":\"\",\"align_widescreen\":\"\",\"align_tablet_extra\":\"\",\"align_mobile\":\"\",\"icon_primary_color\":\"\",\"icon_secondary_color\":\"\",\"icon_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"icon_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"row_gap_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"row_gap_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"row_gap_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"row_gap_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"row_gap_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_border\":\"\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_color\":\"\",\"border_radius_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"hover_primary_color\":\"\",\"hover_secondary_color\":\"\",\"hover_border_color\":\"\",\"hover_animation\":\"\",\"_title\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"\",\"_element_width_widescreen\":\"\",\"_element_width_tablet_extra\":\"\",\"_element_width_tablet\":\"\",\"_element_width_mobile_extra\":\"\",\"_element_width_mobile\":\"\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_grid_column\":\"\",\"_grid_column_widescreen\":\"\",\"_grid_column_tablet_extra\":\"\",\"_grid_column_tablet\":\"\",\"_grid_column_mobile_extra\":\"\",\"_grid_column_mobile\":\"\",\"_grid_column_custom\":\"\",\"_grid_column_custom_widescreen\":\"\",\"_grid_column_custom_tablet_extra\":\"\",\"_grid_column_custom_tablet\":\"\",\"_grid_column_custom_mobile_extra\":\"\",\"_grid_column_custom_mobile\":\"\",\"_grid_row\":\"\",\"_grid_row_widescreen\":\"\",\"_grid_row_tablet_extra\":\"\",\"_grid_row_tablet\":\"\",\"_grid_row_mobile_extra\":\"\",\"_grid_row_mobile\":\"\",\"_grid_row_custom\":\"\",\"_grid_row_custom_widescreen\":\"\",\"_grid_row_custom_tablet_extra\":\"\",\"_grid_row_custom_tablet\":\"\",\"_grid_row_custom_mobile_extra\":\"\",\"_grid_row_custom_mobile\":\"\",\"_flex_align_self\":\"\",\"_flex_align_self_widescreen\":\"\",\"_flex_align_self_tablet_extra\":\"\",\"_flex_align_self_tablet\":\"\",\"_flex_align_self_mobile_extra\":\"\",\"_flex_align_self_mobile\":\"\",\"_flex_order\":\"\",\"_flex_order_widescreen\":\"\",\"_flex_order_tablet_extra\":\"\",\"_flex_order_tablet\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_mobile\":\"\",\"_flex_order_custom\":\"\",\"_flex_order_custom_widescreen\":\"\",\"_flex_order_custom_tablet_extra\":\"\",\"_flex_order_custom_tablet\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_order_custom_mobile\":\"\",\"_flex_size\":\"\",\"_flex_size_widescreen\":\"\",\"_flex_size_tablet_extra\":\"\",\"_flex_size_tablet\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_size_mobile\":\"\",\"_flex_grow\":1,\"_flex_grow_widescreen\":\"\",\"_flex_grow_tablet_extra\":\"\",\"_flex_grow_tablet\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_grow_mobile\":\"\",\"_flex_shrink\":1,\"_flex_shrink_widescreen\":\"\",\"_flex_shrink_tablet_extra\":\"\",\"_flex_shrink_tablet\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_flex_shrink_mobile\":\"\",\"_element_vertical_align\":\"\",\"_element_vertical_align_widescreen\":\"\",\"_element_vertical_align_tablet_extra\":\"\",\"_element_vertical_align_tablet\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_element_vertical_align_mobile\":\"\",\"_position\":\"\",\"_offset_orientation_h\":\"start\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_orientation_v\":\"start\",\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index\":\"\",\"_z_index_widescreen\":\"\",\"_z_index_tablet_extra\":\"\",\"_z_index_tablet\":\"\",\"_z_index_mobile_extra\":\"\",\"_z_index_mobile\":\"\",\"_element_id\":\"\",\"_css_classes\":\"\",\"e_display_conditions\":\"\",\"_element_cache\":\"\",\"pp_display_conditions_enable\":\"\",\"pp_display_conditions_output\":\"\",\"pp_display_conditions_relation\":\"all\",\"pp_wrapper_link_enable\":\"\",\"pp_wrapper_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_custom_cursor_enable\":\"\",\"pp_custom_cursor_target\":\"container\",\"pp_custom_cursor_css_selector\":\"\",\"pp_custom_cursor_type\":\"image\",\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text\":\"\",\"pp_custom_cursor_left_offset\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_top_offset\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_typography_typography\":\"\",\"pp_custom_cursor_text_typography_font_family\":\"\",\"pp_custom_cursor_text_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_weight\":\"\",\"pp_custom_cursor_text_typography_text_transform\":\"\",\"pp_custom_cursor_text_typography_font_style\":\"\",\"pp_custom_cursor_text_typography_text_decoration\":\"\",\"pp_custom_cursor_text_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_color\":\"\",\"pp_custom_cursor_text_bg_background\":\"\",\"pp_custom_cursor_text_bg_color\":\"\",\"pp_custom_cursor_text_bg_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_color_stop_widescreen\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_tablet_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_tablet\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_mobile_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_mobile\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b\":\"#f2295b\",\"pp_custom_cursor_text_bg_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pp_custom_cursor_text_bg_color_b_stop_widescreen\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_tablet\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_mobile\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_gradient_type\":\"linear\",\"pp_custom_cursor_text_bg_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"pp_custom_cursor_text_bg_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_tablet\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_mobile\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_position\":\"center center\",\"pp_custom_cursor_text_bg_gradient_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_gradient_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_gradient_position_tablet\":\"\",\"pp_custom_cursor_text_bg_gradient_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_gradient_position_mobile\":\"\",\"pp_custom_cursor_text_bg_position\":\"\",\"pp_custom_cursor_text_bg_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_position_tablet\":\"\",\"pp_custom_cursor_text_bg_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_position_mobile\":\"\",\"pp_custom_cursor_text_bg_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_attachment\":\"\",\"pp_custom_cursor_text_bg_repeat\":\"\",\"pp_custom_cursor_text_bg_repeat_widescreen\":\"\",\"pp_custom_cursor_text_bg_repeat_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_repeat_tablet\":\"\",\"pp_custom_cursor_text_bg_repeat_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_repeat_mobile\":\"\",\"pp_custom_cursor_text_bg_size\":\"\",\"pp_custom_cursor_text_bg_size_widescreen\":\"\",\"pp_custom_cursor_text_bg_size_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_size_tablet\":\"\",\"pp_custom_cursor_text_bg_size_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_size_mobile\":\"\",\"pp_custom_cursor_text_bg_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_video_link\":\"\",\"pp_custom_cursor_text_bg_video_start\":\"\",\"pp_custom_cursor_text_bg_video_end\":\"\",\"pp_custom_cursor_text_bg_play_once\":\"\",\"pp_custom_cursor_text_bg_play_on_mobile\":\"\",\"pp_custom_cursor_text_bg_privacy_mode\":\"\",\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"pp_custom_cursor_text_bg_slideshow_loop\":\"yes\",\"pp_custom_cursor_text_bg_slideshow_slide_duration\":5000,\"pp_custom_cursor_text_bg_slideshow_slide_transition\":\"fade\",\"pp_custom_cursor_text_bg_slideshow_transition_duration\":500,\"pp_custom_cursor_text_bg_slideshow_background_size\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_widescreen\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_tablet\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_mobile\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_tablet\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_mobile\":\"\",\"pp_custom_cursor_text_bg_slideshow_lazyload\":\"\",\"pp_custom_cursor_text_bg_slideshow_ken_burns\":\"\",\"pp_custom_cursor_text_bg_slideshow_ken_burns_zoom_direction\":\"in\",\"pp_custom_cursor_text_border_border\":\"\",\"pp_custom_cursor_text_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_color\":\"\",\"pp_custom_cursor_text_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_enable\":\"\",\"pp_elements_tooltip_target\":\"current\",\"pp_elements_tooltip_selector\":\"\",\"pp_elements_tooltip_trigger\":\"hover\",\"pp_elements_tooltip_position\":\"top\",\"pp_elements_tooltip_arrow\":\"yes\",\"pp_elements_tooltip_animation\":\"fade\",\"pp_elements_tooltip_distance\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_zindex\":99,\"pp_elements_tooltip_bg_color\":\"\",\"pp_elements_tooltip_color\":\"\",\"pp_elements_tooltip_typography_typography\":\"\",\"pp_elements_tooltip_typography_font_family\":\"\",\"pp_elements_tooltip_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_weight\":\"\",\"pp_elements_tooltip_typography_text_transform\":\"\",\"pp_elements_tooltip_typography_font_style\":\"\",\"pp_elements_tooltip_typography_text_decoration\":\"\",\"pp_elements_tooltip_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_box_shadow_box_shadow_type\":\"\",\"pp_elements_tooltip_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"pp_elements_tooltip_box_shadow_box_shadow_position\":\" \",\"pp_elements_tooltip_border_border\":\"\",\"pp_elements_tooltip_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_color\":\"\",\"pp_elements_tooltip_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"\",\"motion_fx_translateY_effect\":\"\",\"motion_fx_translateY_direction\":\"\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_translateX_effect\":\"\",\"motion_fx_translateX_direction\":\"\",\"motion_fx_translateX_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_translateX_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_opacity_effect\":\"\",\"motion_fx_opacity_direction\":\"out-in\",\"motion_fx_opacity_level\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_opacity_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_blur_effect\":\"\",\"motion_fx_blur_direction\":\"out-in\",\"motion_fx_blur_level\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"motion_fx_blur_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_rotateZ_effect\":\"\",\"motion_fx_rotateZ_direction\":\"\",\"motion_fx_rotateZ_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_rotateZ_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_scale_effect\":\"\",\"motion_fx_scale_direction\":\"out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_scale_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_transform_origin_x\":\"center\",\"motion_fx_transform_origin_y\":\"center\",\"motion_fx_devices\":[\"widescreen\",\"desktop\",\"tablet_extra\",\"tablet\",\"mobile_extra\",\"mobile\"],\"motion_fx_range\":\"\",\"motion_fx_motion_fx_mouse\":\"\",\"motion_fx_mouseTrack_effect\":\"\",\"motion_fx_mouseTrack_direction\":\"\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_tilt_effect\":\"\",\"motion_fx_tilt_direction\":\"\",\"motion_fx_tilt_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"handle_motion_fx_asset_loading\":\"\",\"sticky\":\"\",\"sticky_on\":[\"widescreen\",\"desktop\",\"tablet_extra\",\"tablet\",\"mobile_extra\",\"mobile\"],\"sticky_offset\":0,\"sticky_offset_widescreen\":\"\",\"sticky_offset_tablet_extra\":\"\",\"sticky_offset_tablet\":\"\",\"sticky_offset_mobile_extra\":\"\",\"sticky_offset_mobile\":\"\",\"sticky_effects_offset\":0,\"sticky_effects_offset_widescreen\":\"\",\"sticky_effects_offset_tablet_extra\":\"\",\"sticky_effects_offset_tablet\":\"\",\"sticky_effects_offset_mobile_extra\":\"\",\"sticky_effects_offset_mobile\":\"\",\"sticky_anchor_link_offset\":0,\"sticky_anchor_link_offset_widescreen\":\"\",\"sticky_anchor_link_offset_tablet_extra\":\"\",\"sticky_anchor_link_offset_tablet\":\"\",\"sticky_anchor_link_offset_mobile_extra\":\"\",\"sticky_anchor_link_offset_mobile\":\"\",\"sticky_parent\":\"\",\"_animation\":\"\",\"_animation_widescreen\":\"\",\"_animation_tablet_extra\":\"\",\"_animation_tablet\":\"\",\"_animation_mobile_extra\":\"\",\"_animation_mobile\":\"\",\"animation_duration\":\"\",\"_animation_delay\":\"\",\"_transform_rotate_popover\":\"\",\"_transform_rotateZ_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotate_3d\":\"\",\"_transform_rotateX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"\",\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_popover\":\"\",\"_transform_keep_proportions\":\"yes\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skew_popover\":\"\",\"_transform_skewX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_flipX_effect\":\"\",\"_transform_flipY_effect\":\"\",\"_transform_rotate_popover_hover\":\"\",\"_transform_rotateZ_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotate_3d_hover\":\"\",\"_transform_rotateX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover_hover\":\"\",\"_transform_translateX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_popover_hover\":\"\",\"_transform_keep_proportions_hover\":\"yes\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skew_popover_hover\":\"\",\"_transform_skewX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_flipX_effect_hover\":\"\",\"_transform_flipY_effect_hover\":\"\",\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point\":\"\",\"motion_fx_transform_x_anchor_point_widescreen\":\"\",\"motion_fx_transform_x_anchor_point_tablet_extra\":\"\",\"motion_fx_transform_x_anchor_point_tablet\":\"\",\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_x_anchor_point_mobile\":\"\",\"motion_fx_transform_y_anchor_point\":\"\",\"motion_fx_transform_y_anchor_point_widescreen\":\"\",\"motion_fx_transform_y_anchor_point_tablet_extra\":\"\",\"motion_fx_transform_y_anchor_point_tablet\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile\":\"\",\"_background_background\":\"\",\"_background_color\":\"\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_stop_widescreen\":{\"unit\":\"%\"},\"_background_color_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_color_stop_tablet\":{\"unit\":\"%\"},\"_background_color_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_color_stop_mobile\":{\"unit\":\"%\"},\"_background_color_b\":\"#f2295b\",\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_color_b_stop_widescreen\":{\"unit\":\"%\"},\"_background_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_color_b_stop_tablet\":{\"unit\":\"%\"},\"_background_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_color_b_stop_mobile\":{\"unit\":\"%\"},\"_background_gradient_type\":\"linear\",\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"_background_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\"},\"_background_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\"},\"_background_gradient_position\":\"center center\",\"_background_gradient_position_widescreen\":\"\",\"_background_gradient_position_tablet_extra\":\"\",\"_background_gradient_position_tablet\":\"\",\"_background_gradient_position_mobile_extra\":\"\",\"_background_gradient_position_mobile\":\"\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position\":\"\",\"_background_position_widescreen\":\"\",\"_background_position_tablet_extra\":\"\",\"_background_position_tablet\":\"\",\"_background_position_mobile_extra\":\"\",\"_background_position_mobile\":\"\",\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_attachment\":\"\",\"_background_repeat\":\"\",\"_background_repeat_widescreen\":\"\",\"_background_repeat_tablet_extra\":\"\",\"_background_repeat_tablet\":\"\",\"_background_repeat_mobile_extra\":\"\",\"_background_repeat_mobile\":\"\",\"_background_size\":\"\",\"_background_size_widescreen\":\"\",\"_background_size_tablet_extra\":\"\",\"_background_size_tablet\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_size_mobile\":\"\",\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_video_link\":\"\",\"_background_video_start\":\"\",\"_background_video_end\":\"\",\"_background_play_once\":\"\",\"_background_play_on_mobile\":\"\",\"_background_privacy_mode\":\"\",\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_slideshow_loop\":\"yes\",\"_background_slideshow_slide_duration\":5000,\"_background_slideshow_slide_transition\":\"fade\",\"_background_slideshow_transition_duration\":500,\"_background_slideshow_background_size\":\"\",\"_background_slideshow_background_size_widescreen\":\"\",\"_background_slideshow_background_size_tablet_extra\":\"\",\"_background_slideshow_background_size_tablet\":\"\",\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_size_mobile\":\"\",\"_background_slideshow_background_position\":\"\",\"_background_slideshow_background_position_widescreen\":\"\",\"_background_slideshow_background_position_tablet_extra\":\"\",\"_background_slideshow_background_position_tablet\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile\":\"\",\"_background_slideshow_lazyload\":\"\",\"_background_slideshow_ken_burns\":\"\",\"_background_slideshow_ken_burns_zoom_direction\":\"in\",\"_background_hover_background\":\"\",\"_background_hover_color\":\"\",\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_stop_widescreen\":{\"unit\":\"%\"},\"_background_hover_color_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\"},\"_background_hover_color_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\"},\"_background_hover_color_b\":\"#f2295b\",\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_color_b_stop_widescreen\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\"},\"_background_hover_gradient_type\":\"linear\",\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\"},\"_background_hover_gradient_position\":\"center center\",\"_background_hover_gradient_position_widescreen\":\"\",\"_background_hover_gradient_position_tablet_extra\":\"\",\"_background_hover_gradient_position_tablet\":\"\",\"_background_hover_gradient_position_mobile_extra\":\"\",\"_background_hover_gradient_position_mobile\":\"\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position\":\"\",\"_background_hover_position_widescreen\":\"\",\"_background_hover_position_tablet_extra\":\"\",\"_background_hover_position_tablet\":\"\",\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_position_mobile\":\"\",\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_attachment\":\"\",\"_background_hover_repeat\":\"\",\"_background_hover_repeat_widescreen\":\"\",\"_background_hover_repeat_tablet_extra\":\"\",\"_background_hover_repeat_tablet\":\"\",\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_repeat_mobile\":\"\",\"_background_hover_size\":\"\",\"_background_hover_size_widescreen\":\"\",\"_background_hover_size_tablet_extra\":\"\",\"_background_hover_size_tablet\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_size_mobile\":\"\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_video_link\":\"\",\"_background_hover_video_start\":\"\",\"_background_hover_video_end\":\"\",\"_background_hover_play_once\":\"\",\"_background_hover_play_on_mobile\":\"\",\"_background_hover_privacy_mode\":\"\",\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_background_hover_slideshow_loop\":\"yes\",\"_background_hover_slideshow_slide_duration\":5000,\"_background_hover_slideshow_slide_transition\":\"fade\",\"_background_hover_slideshow_transition_duration\":500,\"_background_hover_slideshow_background_size\":\"\",\"_background_hover_slideshow_background_size_widescreen\":\"\",\"_background_hover_slideshow_background_size_tablet_extra\":\"\",\"_background_hover_slideshow_background_size_tablet\":\"\",\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_size_mobile\":\"\",\"_background_hover_slideshow_background_position\":\"\",\"_background_hover_slideshow_background_position_widescreen\":\"\",\"_background_hover_slideshow_background_position_tablet_extra\":\"\",\"_background_hover_slideshow_background_position_tablet\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile\":\"\",\"_background_hover_slideshow_lazyload\":\"\",\"_background_hover_slideshow_ken_burns\":\"\",\"_background_hover_slideshow_ken_burns_zoom_direction\":\"in\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"\",\"_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_color\":\"\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_box_shadow_position\":\" \",\"_border_hover_border\":\"\",\"_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_color\":\"\",\"_border_radius_hover\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_box_shadow_hover_box_shadow_type\":\"\",\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_hover_box_shadow_position\":\" \",\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_switch\":\"\",\"_mask_shape\":\"circle\",\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_size\":\"contain\",\"_mask_size_widescreen\":\"\",\"_mask_size_tablet_extra\":\"\",\"_mask_size_tablet\":\"\",\"_mask_size_mobile_extra\":\"\",\"_mask_size_mobile\":\"\",\"_mask_size_scale\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_mask_size_scale_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position\":\"center center\",\"_mask_position_widescreen\":\"\",\"_mask_position_tablet_extra\":\"\",\"_mask_position_tablet\":\"\",\"_mask_position_mobile_extra\":\"\",\"_mask_position_mobile\":\"\",\"_mask_position_x\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_mask_position_x_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_mask_position_y_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat\":\"no-repeat\",\"_mask_repeat_widescreen\":\"\",\"_mask_repeat_tablet_extra\":\"\",\"_mask_repeat_tablet\":\"\",\"_mask_repeat_mobile_extra\":\"\",\"_mask_repeat_mobile\":\"\",\"hide_widescreen\":\"\",\"hide_desktop\":\"\",\"hide_tablet_extra\":\"\",\"hide_tablet\":\"\",\"hide_mobile_extra\":\"\",\"hide_mobile\":\"\",\"_attributes\":\"\",\"custom_css\":\"\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6630, 705, '_elementor_edit_mode', 'builder'),
(6631, 705, '_elementor_template_type', 'wp-page'),
(6632, 705, '_elementor_version', '3.34.2'),
(6633, 705, '_elementor_pro_version', '3.34.2'),
(6634, 705, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6635, 705, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#111111\",\"background_overlay_color_b\":\"#000A66A3\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23428e4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Byggeri \\u2013 T\\u00f8mrerarbejde og tagd\\u00e6kning\",\"header_size\":\"h4\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"pp_display_conditions\":[{\"_id\":\"b159f8d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"flex_direction_tablet\":\"column-reverse\",\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\",\"flex_direction_tablet\":\"column\",\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\",\"id\":57,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}],\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle ANMELDELSER\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"HVORFOR V\\u00c6LGE CP NORDIC ApS?\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79206f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>N\\u00e5r du v\\u00e6lger CP NORDIC ApS, f\\u00e5r du:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"44023b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/teamwork_4546121.svg\",\"id\":472},\"library\":\"svg\"},\"title_text\":\"et ungt og engageret team\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/effective_1401921.svg\",\"id\":474},\"library\":\"svg\"},\"title_text\":\"fokus p\\u00e5 kvalitet og detaljer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/communication_18765280.svg\",\"id\":479},\"library\":\"svg\"},\"title_text\":\"\\u00e6rlig<br> r\\u00e5dgivning\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/brainstorming_11663441.svg\",\"id\":480},\"library\":\"svg\"},\"title_text\":\"gennemt\\u00e6nkte l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c0f2190\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"327bd23\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/like_3941426.svg\",\"id\":481},\"library\":\"svg\"},\"title_text\":\"arbejde udf\\u00f8rt med ansvar\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2bc9769\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi lover ikke mere, end vi kan holde \\u2013 men vi holder det, vi lover.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2a1d8fc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6323910b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor8\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/wood-background-1-e1738912619419.jpg\",\"id\":510,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]}},\"elements\":[{\"id\":\"640d38eb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"75253fe5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"641310a\",\"elType\":\"widget\",\"settings\":{\"title\":\"KONTAKT OS\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee94578\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fea00\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68d73b3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14202595\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Name\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"tel\",\"field_label\":\"Phone\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\"},{\"field_type\":\"select\",\"field_label\":\"Services Name\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Messages\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor4\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_background_color\":\"#383838CC\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Roboto\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"field_typography_font_weight\":\"400\",\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7045, 642, '_elementor_page_settings', 'a:0:{}'),
(7046, 642, '_elementor_controls_usage', 'a:5:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;}}s:8:\"advanced\";a:2:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:4:{s:13:\"content_width\";i:4;s:20:\"flex_justify_content\";i:3;s:14:\"flex_direction\";i:3;s:8:\"flex_gap\";i:3;}}s:5:\"style\";a:2:{s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:7;}s:18:\"section_background\";a:2:{s:16:\"background_color\";i:2;s:21:\"background_background\";i:1;}}s:8:\"advanced\";a:3:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:3;s:18:\"animation_duration\";i:3;}s:14:\"section_layout\";a:1:{s:7:\"padding\";i:3;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:5;s:11:\"header_size\";i:2;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:5;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:3:{s:21:\"typography_typography\";i:2;s:22:\"typography_font_weight\";i:2;s:5:\"align\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:6;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:6;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:3;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:3;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}s:18:\"section_text_style\";a:3:{s:26:\"icon_typography_typography\";i:3;s:27:\"icon_typography_font_family\";i:3;s:27:\"icon_typography_font_weight\";i:3;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:3;}}}}}'),
(7631, 169, '_elementor_inline_svg', '<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>'),
(7632, 472, '_elementor_inline_svg', '<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 450 450\" width=\"512\"><g><g><path d=\"m225 165.2c-25.9 0-48.9-18.8-53.3-45.2-2.4-14.2.9-28.6 9.3-40.3 8.4-11.8 20.9-19.5 35.1-21.9 29.4-4.9 57.3 15 62.2 44.5 4.9 29.4-15 57.3-44.4 62.2-3 .5-6 .7-8.9.7zm-7.6-99.8c-12.2 2-22.9 8.7-30.1 18.8s-10.1 22.4-8 34.6c3.8 22.7 23.5 38.8 45.7 38.8 2.5 0 5.1-.2 7.6-.6 25.2-4.2 42.3-28.1 38.1-53.4s-28.1-42.4-53.3-38.2z\"></path><path d=\"m255.2 115c-2.1 0-3.8-1.7-3.8-3.8 0-14.6-11.8-26.4-26.4-26.4-2.1 0-3.8-1.7-3.8-3.8s1.7-3.8 3.8-3.8c18.8 0 34.1 15.3 34.1 34.1 0 2-1.8 3.7-3.9 3.7z\"></path><path d=\"m236.1 203h-22.2c-2.1 0-3.8-1.7-3.8-3.8v-14.1c-3.1-.6-6.1-1.4-9.1-2.4l-7 12.2c-1.1 1.8-3.4 2.5-5.3 1.4l-19.2-11.1c-.9-.5-1.5-1.4-1.8-2.3-.3-1-.1-2 .4-2.9l7-12.1c-2.4-2.1-4.6-4.3-6.7-6.6l-12.1 7c-1.8 1.1-4.2.4-5.2-1.4l-11.1-19.2c-1.1-1.8-.4-4.2 1.4-5.2l11.9-6.8c-1-3-1.9-6.1-2.6-9.3h-13.7c-2.1 0-3.8-1.7-3.8-3.8v-22.2c0-2.1 1.7-3.8 3.8-3.8h13.4c.6-3.2 1.4-6.4 2.4-9.5l-11.5-6.6c-1.8-1.1-2.5-3.4-1.4-5.3l11.1-19.6c.5-.9 1.4-1.5 2.3-1.8s2-.1 2.9.4l11.3 6.6c2.2-2.5 4.5-4.8 7-7l-6.5-11.3c-.5-.9-.6-1.9-.4-2.9.3-1 .9-1.8 1.8-2.3l19.2-11.1c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l6.4 11.2c3.1-1.1 6.4-1.9 9.7-2.6v-13c0-2.1 1.7-3.8 3.8-3.8h22.2c2.1 0 3.8 1.7 3.8 3.8v12.8c3.3.7 6.5 1.5 9.7 2.6l6.5-11.2c.5-.9 1.4-1.5 2.3-1.8 1-.3 2-.1 2.9.4l19.2 11.1c.9.5 1.5 1.3 1.8 2.3s.1 2-.4 2.9l-6.5 11.3c2.5 2.2 4.8 4.5 7 7.1l11.3-6.6c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l11.1 19.2c1.1 1.8.4 4.2-1.4 5.3l-11.5 6.6c1 3.1 1.8 6.3 2.5 9.5h13.6c2.1 0 3.8 1.7 3.8 3.8v22.2c0 2.1-1.7 3.8-3.8 3.8h-13.6c-.6 3.1-1.5 6.2-2.5 9.3l11.9 6.8c1.8 1.1 2.5 3.4 1.4 5.2l-11.2 19.5c-1.1 1.8-3.4 2.5-5.2 1.4l-12-7c-2.1 2.4-4.4 4.6-6.7 6.6l7 12.1c.5.9.6 1.9.4 2.9s-.9 1.8-1.8 2.3l-19.2 11.1c-1.8 1.1-4.2.4-5.2-1.4l-7-12.2c-3 1-6 1.8-9.1 2.4v14.1c-.2 2.3-2 4-4.1 4zm-18.4-7.7h14.5v-13.5c0-1.9 1.4-3.5 3.3-3.8 4.7-.7 9.4-2 13.8-3.7 1.8-.7 3.8 0 4.7 1.7l6.7 11.6 12.6-7.3-6.7-11.6c-1-1.6-.5-3.7.9-4.9 3.7-3 7.2-6.4 10.2-10.1 1.2-1.5 3.3-1.8 4.9-.9l11.5 6.6 7.3-12.6-11.3-6.5c-1.6-.9-2.4-3-1.6-4.7 1.8-4.5 3.1-9.2 3.9-14 .3-1.9 1.9-3.2 3.8-3.2h13v-14.6h-12.8c-1.9 0-3.5-1.4-3.8-3.3-.7-4.8-2-9.6-3.7-14.2-.7-1.8 0-3.7 1.7-4.7l10.9-6.3-7.3-12.6-10.8 6.3c-1.6.9-3.7.6-4.9-.9-3.1-3.9-6.6-7.4-10.4-10.6-1.5-1.2-1.9-3.3-.9-4.9l6.2-10.7-12.6-7.3-6.1 10.6c-1 1.6-3 2.3-4.7 1.7-4.6-1.8-9.5-3.1-14.4-3.9-1.9-.3-3.3-1.9-3.3-3.8v-12.2h-14.5v12.3c0 1.9-1.4 3.5-3.3 3.8-5 .8-9.8 2.1-14.4 3.9-1.8.7-3.8 0-4.7-1.7l-6.1-10.6-12.6 7.3 6.2 10.7c.9 1.6.6 3.7-.9 4.9-3.9 3.1-7.4 6.7-10.4 10.6-1.2 1.5-3.3 1.9-4.9.9l-10.8-6.3-7.3 12.6 10.9 6.3c1.6.9 2.3 2.9 1.7 4.7-1.7 4.6-3 9.4-3.7 14.2-.3 1.9-1.9 3.3-3.8 3.3h-12.8v14.5h13c1.9 0 3.5 1.4 3.8 3.2.8 4.8 2.1 9.5 3.9 14 .7 1.8 0 3.8-1.6 4.7l-11.3 6.5 7.3 12.6 11.5-6.6c1.6-.9 3.7-.6 4.9.9 3 3.7 6.5 7.1 10.3 10.1 1.5 1.2 1.9 3.3.9 4.9l-6.7 11.6 12.6 7.3 6.7-11.6c.9-1.6 2.9-2.3 4.7-1.7 4.5 1.7 9.1 2.9 13.8 3.7 1.9.3 3.3 1.9 3.3 3.8z\"></path></g><g><g><g><path d=\"m45.3 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m153.9 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path></g><g><path d=\"m189.3 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.2c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c0 2.1-1.7 3.8-3.8 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m73.3 326.4c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m126 326.4c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m99.7 325.6c-.6 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4s4.1 1.1 4.4 3.2c2.4 16.5 12.3 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m50.2 266.6c-.1 0-.2 0-.3 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.7 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-8.9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.5 2.2zm81.8-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13.1-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.4-.7 2.3-.7z\"></path></g></g></g><g><g><path d=\"m296.1 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m404.7 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path></g><g><path d=\"m440 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.1c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c.2 2.1-1.6 3.8-3.7 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m324 326.3c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m376.7 326.3c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m350.4 325.6c-.5 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4 2.1-.3 4 1.1 4.4 3.2 2.4 16.5 12.4 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m301 266.6c-.1 0-.2 0-.4 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.6 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.4 2.2zm81.7-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.5-.7 2.3-.7z\"></path></g></g></g></g></g></svg>'),
(7160, 751, '_elementor_edit_mode', 'builder'),
(7161, 751, '_elementor_template_type', 'footer'),
(7162, 751, '_elementor_version', '3.34.2'),
(7163, 751, '_elementor_pro_version', '3.34.2'),
(7164, 751, '_wp_page_template', 'default'),
(7165, 751, '_elementor_data', '[{\"id\":\"3cf69bc7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"background_color\":\"#121212\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"flex_direction_tablet\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"56542ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ba59e70\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"65fd471\"}],\"pp_display_conditions\":[{\"_id\":\"890752a\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\"}]},\"elements\":[{\"id\":\"7d433401\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"boxed_width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e0467be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fba2414\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"86eef93\"}],\"pp_display_conditions\":[{\"_id\":\"892bbfe\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\"}],\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"100\",\"bottom\":\"10\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"flex_align_items_tablet\":\"center\"},\"elements\":[{\"id\":\"4b245e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/Transparent-File-02-scaled.png\",\"id\":49,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"3584c9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":240,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7a77842\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We cover all of Funen and also operate throughout Denmark by agreement.<br>\\n\\nCVR: 45458830\",\"align_tablet\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"text_color\":\"#F3F3F3\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":295,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"40edc0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3f1c0dda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":17,\"sizes\":[]},\"boxed_width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"boxed_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"wrap\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content_tablet\":\"center\",\"flex_align_items_tablet\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9cef852\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3267f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"568580d\"}],\"pp_display_conditions\":[{\"_id\":\"3b43c19\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\"}]},\"elements\":[{\"id\":\"25ffa917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick Links\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"97f1c92\",\"pp_condition_date_time_before_value\":\"2023-11-08 15:26\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\"}],\"align_tablet\":\"center\",\"align_mobile_extra\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"_element_width\":\"inherit\",\"typography_typography\":\"custom\",\"title_color\":\"#FFFFFF\",\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6373b647\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Hjem\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5dee041\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Tjenester\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"fdf1982\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/tjenester\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Referencer\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/referencer\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5076fdb\"},{\"text\":\"Om os\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/om-os\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1cdf804\"},{\"text\":\"Kontakt\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/kontakt\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"085decf\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"db62914\",\"pp_condition_date_time_before_value\":\"2023-11-08 15:26\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\"}],\"icon_align_tablet\":\"center\",\"icon_align_mobile_extra\":\"center\",\"__globals__\":{\"text_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=accent\"},\"text_color\":\"#E2E2E2\",\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_elements_tooltip_content\":\"Tooltip Content\",\"icon_typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7b991634\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ac9468\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f73d65c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e9fdb2\"}],\"pp_display_conditions\":[{\"_id\":\"6b3e2fa\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\"}]},\"elements\":[{\"id\":\"1dc7df4b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"97f1c92\",\"pp_condition_date_time_before_value\":\"2023-11-08 15:26\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\"}],\"align_tablet\":\"center\",\"align_mobile_extra\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"_element_width\":\"inherit\",\"title_color\":\"#FFFFFF\",\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45a55ad8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"CP NORDIC ApS\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"857a7bd\",\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"}},{\"text\":\"41 60 00 40\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:41600040\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f722a06\"},{\"text\":\"kontakt@cp-nordic.dk\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:kontakt@cp-nordic.dk\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f7076d3\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"db62914\",\"pp_condition_date_time_before_value\":\"2023-11-08 15:26\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\"}],\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align_tablet\":\"center\",\"icon_align_mobile_extra\":\"center\",\"icon_vertical_offset_mobile_extra\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_self_align_mobile_extra\":\"left\",\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=accent\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_vertical_offset_tablet\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"text_color\":\"#E2E2E2\",\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_elements_tooltip_content\":\"Tooltip Content\",\"icon_typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"d5ed30d\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"1a75682\",\"link\":{\"url\":\"https:\\/\\/www.facebook.com\\/cpnordic\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"da32d70\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/cpnordic\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.6,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"589cdcb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor6\"},\"icon_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"left\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"23c37f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ac9468\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f73d65c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e9fdb2\"}],\"pp_display_conditions\":[{\"_id\":\"6b3e2fa\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\"}]},\"elements\":[{\"id\":\"4bb313b\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"pp_display_conditions\":[{\"_id\":\"c3942e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5e55ea6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"flex_direction_tablet\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"56542ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ba59e70\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"65fd471\"}],\"pp_display_conditions\":[{\"_id\":\"890752a\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#222121\"},\"elements\":[{\"id\":\"543e7817\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"boxed_width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"boxed_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"wrap\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content_tablet\":\"center\",\"flex_align_items_tablet\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9cef852\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3267f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"568580d\"}],\"pp_display_conditions\":[{\"_id\":\"3b43c19\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"29e327ba\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u00a9 Copyright 2026 all rights reserved\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5dee041\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"db62914\",\"pp_condition_date_time_before_value\":\"2023-11-08 15:26\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"icon_align_tablet\":\"center\",\"icon_align_mobile_extra\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color_hover\":\"\"},\"text_color\":\"#FFFFFF\",\"pp_elements_tooltip_content\":\"Tooltip Content\",\"icon_typography_font_weight\":\"500\",\"view\":\"inline\",\"icon_align\":\"center\",\"icon_align_mobile\":\"center\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(5417, 583, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(7210, 754, '_elementor_page_settings', 'a:0:{}'),
(6022, 646, '_elementor_source', 'post'),
(6023, 646, '_elementor_edit_mode', 'builder'),
(6024, 646, '_elementor_template_type', 'header'),
(6025, 646, '_elementor_version', '3.34.2'),
(6026, 646, '_elementor_pro_version', '3.34.2'),
(6027, 646, '_wp_page_template', 'default'),
(6028, 646, '_elementor_data', '[{\"id\":\"67407e3b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2e8ba73\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f52efb8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"717f375\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"394af17\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"flex_wrap_mobile\":\"nowrap\",\"z_index\":1,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FCFCFC17\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-124\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"\"}},\"elements\":[{\"id\":\"341f8b74\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"33df9dc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7bdec\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"90e6e83\"}],\"pp_display_conditions\":[{\"_id\":\"3e37d22\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"4cc70c2e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":49,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/Transparent-File-02-scaled.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"link_to\":\"custom\",\"space\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"ef1f052\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"7043833\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"space_mobile_extra\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"space_tablet_extra\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"29f8b7e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":80},\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"13efff7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4ba59b9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9a413e\"}],\"pp_display_conditions\":[{\"_id\":\"6633050\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"flex_align_items\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"flex_direction_mobile\":\"row-reverse\",\"flex_justify_content_mobile\":\"flex-start\",\"flex_wrap_mobile\":\"nowrap\"},\"elements\":[{\"id\":\"55ad1095\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"pointer\":\"none\",\"toggle_label\":\"Menu\",\"pp_display_conditions\":[{\"_id\":\"6d90ae3\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"menu_type\":\"off-canvas\",\"toggle_align\":\"right\",\"toggle_background_color\":\"#02010100\",\"toggle_background_color_hover\":\"#02010100\",\"offcanvas_position\":\"right\",\"close_icon_background_color\":\"#02010100\",\"close_icon_background_color_hover\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_weight\":\"500\",\"__globals__\":{\"toggle_color\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_color_hover\":\"globals\\/colors?id=astglobalcolor3\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor5\",\"mobile_sub_link_color\":\"globals\\/colors?id=astglobalcolor5\",\"mobile_sub_link_bg_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor5\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_hover\":\"globals\\/colors?id=astglobalcolor5\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"close_icon_color_hover\":\"globals\\/colors?id=astglobalcolor5\",\"color_menu_item\":\"globals\\/colors?id=astglobalcolor4\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor4\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor4\",\"color_dropdown_item\":\"globals\\/colors?id=astglobalcolor5\",\"background_color_dropdown_item\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor5\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor5\",\"background_color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"dropdown_divider_color\":\"\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"menu_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"color_menu_item_hover\":\"#045cb4\",\"color_menu_item_active\":\"#045cb4\",\"color_dropdown_item\":\"#F0F5FA\",\"background_color_dropdown_item\":\"#046bd2\",\"color_dropdown_item_hover\":\"#F0F5FA\",\"background_color_dropdown_item_hover\":\"#045cb4\",\"color_dropdown_item_active\":\"#F0F5FA\",\"background_color_dropdown_item_active\":\"#045cb4\",\"dropdown_divider_border\":\"solid\",\"dropdown_divider_color\":\"#F0F5FA36\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"toggle_color\":\"#046bd2\",\"toggle_color_hover\":\"#334155\",\"overlay_bg_color\":\"#1e293b\",\"mobile_link_color\":\"#F0F5FA\",\"mobile_sub_link_bg_color\":\"#1e293b\",\"mobile_sub_link_color\":\"#F0F5FA\",\"mobile_link_hover\":\"#F0F5FA\",\"mobile_link_bg_hover\":\"#046bd2\",\"mobile_sub_link_bg_hover\":\"#046bd2\",\"mobile_sub_link_hover\":\"#F0F5FA\",\"close_icon_color\":\"#F0F5FA\",\"close_icon_color_hover\":\"#F0F5FA\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"toggle_size_mobile\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"4027936a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"730407e\",\"pp_condition_date_time_before_value\":\"2024-10-27 14:19\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/kontakt\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"348be72f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f25b0fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8462f23\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f25e330\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"pp_condition_key\":\"page\",\"pp_condition_operator\":\"not\",\"_id\":\"eda4653\",\"pp_condition_page_value\":[\"10\"],\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"\"},\"background_overlay_color\":\"#48aaad\",\"background_overlay_color_b\":\"#1E293B0A\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":179,\"sizes\":[]},\"css_classes\":\"header-breadcrumbs-section\",\"pp_display_conditions_enable\":\"yes\",\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":10,\\\"text\\\":\\\"Hjem\\\"}]}]]\"]},\"elements\":[{\"id\":\"13f6f159\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"page-title\\\" settings=\\\"%7B%22include_context%22%3A%22%22%2C%22show_home_title%22%3A%22%22%2C%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3b30e8f\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"}],\"isInner\":false}]'),
(5425, 14, '_elementor_edit_mode', 'builder'),
(5426, 14, '_astra_content_layout_flag', 'disabled'),
(5427, 14, 'ast-title-bar-display', 'disabled'),
(5428, 14, '_elementor_template_type', 'wp-page'),
(5429, 14, '_elementor_version', '3.34.2'),
(5430, 14, '_elementor_pro_version', '3.34.2'),
(5453, 14, '_elementor_data', '[{\"id\":\"7714a98\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"background_color\":\"#F2EEEC\",\"flex_direction_tablet\":\"column-reverse\",\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"cbae772\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b5d09ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPECIALL\\u00d8SNINGER\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2142cf3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi har en s\\u00e6rlig interesse for opgaver, der kr\\u00e6ver noget ekstra. N\\u00e5r standardl\\u00f8sninger ikke passer, finder vi l\\u00f8sninger, der g\\u00f8r.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b58c237\",\"elType\":\"widget\",\"settings\":{\"title\":\"Det kan v\\u00e6re:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91b5903\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"teknisk kr\\u00e6vende detaljer\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"specialtilpassede konstruktioner\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"samspil mellem flere materialer\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"l\\u00f8sninger, der kr\\u00e6ver ekstra omtanke\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c23ec26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Her kommer vores faglighed og erfaring virkelig i spil.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(5452, 14, '_wp_page_template', 'default'),
(5441, 585, '_elementor_edit_mode', 'builder'),
(5442, 585, '_elementor_template_type', 'wp-page'),
(5443, 585, '_elementor_version', '3.34.2'),
(5444, 585, '_elementor_pro_version', '3.34.2'),
(5445, 585, '_elementor_page_settings', 'a:0:{}'),
(5447, 586, '_elementor_edit_mode', 'builder'),
(5448, 586, '_elementor_template_type', 'wp-page'),
(5449, 586, '_elementor_version', '3.34.2'),
(5450, 586, '_elementor_pro_version', '3.34.2'),
(5451, 586, '_elementor_page_settings', 'a:0:{}'),
(5455, 587, '_elementor_edit_mode', 'builder'),
(5456, 587, '_elementor_template_type', 'wp-page'),
(5457, 587, '_elementor_version', '3.34.2'),
(5458, 587, '_elementor_pro_version', '3.34.2'),
(5459, 587, '_wp_page_template', 'default'),
(5460, 587, '_elementor_data', '[{\"id\":\"7714a98\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"flex_direction_tablet\":\"column-reverse\",\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"cbae772\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b5d09ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPECIALL\\u00d8SNINGER\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2142cf3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi har en s\\u00e6rlig interesse for opgaver, der kr\\u00e6ver noget ekstra. N\\u00e5r standardl\\u00f8sninger ikke passer, finder vi l\\u00f8sninger, der g\\u00f8r.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b58c237\",\"elType\":\"widget\",\"settings\":{\"title\":\"Det kan v\\u00e6re:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91b5903\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"teknisk kr\\u00e6vende detaljer\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"specialtilpassede konstruktioner\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"samspil mellem flere materialer\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"l\\u00f8sninger, der kr\\u00e6ver ekstra omtanke\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c23ec26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Her kommer vores faglighed og erfaring virkelig i spil.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(5466, 588, '_elementor_edit_mode', 'builder');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5467, 588, '_elementor_template_type', 'wp-page'),
(5468, 588, '_elementor_version', '3.34.2'),
(5469, 588, '_elementor_pro_version', '3.34.2'),
(5470, 588, '_wp_page_template', 'default'),
(5471, 588, '_elementor_data', '[{\"id\":\"7714a98\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"flex_direction_tablet\":\"column-reverse\",\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"cbae772\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b5d09ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPECIALL\\u00d8SNINGER\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2142cf3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi har en s\\u00e6rlig interesse for opgaver, der kr\\u00e6ver noget ekstra. N\\u00e5r standardl\\u00f8sninger ikke passer, finder vi l\\u00f8sninger, der g\\u00f8r.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b58c237\",\"elType\":\"widget\",\"settings\":{\"title\":\"Det kan v\\u00e6re:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91b5903\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"teknisk kr\\u00e6vende detaljer\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"specialtilpassede konstruktioner\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"samspil mellem flere materialer\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"l\\u00f8sninger, der kr\\u00e6ver ekstra omtanke\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c23ec26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Her kommer vores faglighed og erfaring virkelig i spil.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(5494, 14, '_elementor_page_settings', 'a:0:{}'),
(5495, 14, '_elementor_controls_usage', 'a:4:{s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:2;s:11:\"header_size\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:3:{s:5:\"align\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_weight\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:2;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:2;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:1;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:1;}s:18:\"section_text_style\";a:3:{s:26:\"icon_typography_typography\";i:1;s:27:\"icon_typography_font_family\";i:1;s:27:\"icon_typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:4:{s:13:\"content_width\";i:1;s:20:\"flex_justify_content\";i:1;s:14:\"flex_direction\";i:1;s:8:\"flex_gap\";i:1;}}s:5:\"style\";a:2:{s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:2;}s:18:\"section_background\";a:1:{s:16:\"background_color\";i:1;}}s:8:\"advanced\";a:3:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:2;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:1;s:18:\"animation_duration\";i:1;}s:14:\"section_layout\";a:1:{s:7:\"padding\";i:1;}}}}}'),
(5472, 588, '_elementor_page_settings', 'a:0:{}'),
(5476, 589, '_elementor_edit_mode', 'builder'),
(5477, 589, '_elementor_template_type', 'wp-page'),
(5478, 589, '_elementor_version', '3.34.2'),
(5479, 589, '_elementor_pro_version', '3.34.2'),
(5480, 589, '_wp_page_template', 'default'),
(5481, 589, '_elementor_data', '[{\"id\":\"7714a98\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"flex_direction_tablet\":\"column-reverse\",\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"cbae772\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b5d09ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPECIALL\\u00d8SNINGER\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2142cf3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi har en s\\u00e6rlig interesse for opgaver, der kr\\u00e6ver noget ekstra. N\\u00e5r standardl\\u00f8sninger ikke passer, finder vi l\\u00f8sninger, der g\\u00f8r.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b58c237\",\"elType\":\"widget\",\"settings\":{\"title\":\"Det kan v\\u00e6re:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"91b5903\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"teknisk kr\\u00e6vende detaljer\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"specialtilpassede konstruktioner\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"samspil mellem flere materialer\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"l\\u00f8sninger, der kr\\u00e6ver ekstra omtanke\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c23ec26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Her kommer vores faglighed og erfaring virkelig i spil.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(4687, 519, '_elementor_edit_mode', 'builder'),
(4667, 517, '_elementor_edit_mode', 'builder'),
(4668, 517, '_elementor_template_type', 'wp-page'),
(4669, 517, '_elementor_version', '3.34.2'),
(4670, 517, '_elementor_pro_version', '3.34.2'),
(4671, 517, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4672, 517, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\",\"id\":57,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle ANMELDELSER\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]}},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"HVORFOR V\\u00c6LGE CP NORDIC ApS?\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79206f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>N\\u00e5r du v\\u00e6lger CP NORDIC ApS, f\\u00e5r du:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"44023b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/teamwork_4546121.svg\",\"id\":472},\"library\":\"svg\"},\"title_text\":\"et ungt og engageret team\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/effective_1401921.svg\",\"id\":474},\"library\":\"svg\"},\"title_text\":\"fokus p\\u00e5 kvalitet og detaljer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/communication_18765280.svg\",\"id\":479},\"library\":\"svg\"},\"title_text\":\"\\u00e6rlig<br> r\\u00e5dgivning\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/brainstorming_11663441.svg\",\"id\":480},\"library\":\"svg\"},\"title_text\":\"gennemt\\u00e6nkte l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c0f2190\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"327bd23\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/like_3941426.svg\",\"id\":481},\"library\":\"svg\"},\"title_text\":\"arbejde udf\\u00f8rt med ansvar\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2bc9769\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi lover ikke mere, end vi kan holde \\u2013 men vi holder det, vi lover.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2a1d8fc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"986dd0f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9231a79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"31fa3c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f1b19ca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7391996\"}]},\"elements\":[{\"id\":\"547d40f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7d5adb7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1522ba7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e13c951\"}],\"pp_display_conditions\":[{\"_id\":\"1e39e5d\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"4bda72e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7d5adb7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1522ba7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e13c951\"}],\"pp_display_conditions\":[{\"_id\":\"1e39e5d\"}]},\"elements\":[{\"id\":\"07d0be8\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"8b3e3db\"},{\"custom_id\":\"field_2a35699\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"2a35699\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"f9dd88c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6323910b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor8\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/wood-background-1-e1738912619419.jpg\",\"id\":510,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"640d38eb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"75253fe5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"14202595\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Name\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"tel\",\"field_label\":\"Phone\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\"},{\"field_type\":\"select\",\"field_label\":\"Services Name\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Messages\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor4\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_background_color\":\"#494949CC\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD3D\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"mark_required\":\"yes\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4773, 526, '_elementor_edit_mode', 'builder'),
(4641, 514, '_elementor_page_settings', 'a:0:{}'),
(7343, 767, '_wp_page_template', 'elementor_header_footer'),
(7345, 767, '_elementor_edit_mode', 'builder'),
(7346, 767, '_elementor_template_type', 'wp-page'),
(7347, 767, '_elementor_version', '3.34.2'),
(7348, 767, '_elementor_pro_version', '3.34.2');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7349, 767, '_elementor_data', '[{\"id\":\"013c01d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"fe90551\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column-reverse\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"84d3850\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4707f87\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Navn\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"field_type\":\"text\",\"placeholder\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"attachment_type\":\"link\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_widescreen\":\"\",\"width_tablet_extra\":\"\",\"width_tablet\":\"\",\"width_mobile_extra\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"attachment_type\":\"link\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_widescreen\":\"\",\"width_tablet_extra\":\"\",\"width_tablet\":\"\",\"width_mobile_extra\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"},{\"field_type\":\"tel\",\"field_label\":\"Telefon\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\",\"placeholder\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"attachment_type\":\"link\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_widescreen\":\"\",\"width_tablet_extra\":\"\",\"width_tablet\":\"\",\"width_mobile_extra\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"},{\"field_type\":\"select\",\"field_label\":\"Tjenesters navn\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\",\"placeholder\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"attachment_type\":\"link\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_widescreen\":\"\",\"width_tablet_extra\":\"\",\"width_tablet\":\"\",\"width_mobile_extra\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Beskeder\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"\",\"required\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"attachment_type\":\"link\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_widescreen\":\"\",\"width_tablet_extra\":\"\",\"width_tablet\":\"\",\"width_mobile_extra\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-02-11 to 2026-02-17\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Roboto\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"field_typography_font_weight\":\"400\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"show_labels\":\"true\",\"mark_required\":\"\",\"label_position\":\"above\",\"button_width\":\"100\",\"button_width_widescreen\":\"\",\"button_width_tablet_extra\":\"\",\"button_width_tablet\":\"\",\"button_width_mobile_extra\":\"\",\"button_width_mobile\":\"\",\"selected_button_icon\":{\"value\":\"\",\"library\":\"\"},\"button_icon_align\":\"row\",\"button_icon_indent\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_css_id\":\"\",\"submit_actions\":[\"email\",\"save-to-database\"],\"submissions_metadata\":[\"remote_ip\",\"user_agent\"],\"email_reply_to\":\"\",\"email_to_cc\":\"\",\"email_to_bcc\":\"\",\"email_content_type\":\"html\",\"email_to_cc_2\":\"\",\"email_to_bcc_2\":\"\",\"form_metadata_2\":[],\"email_content_type_2\":\"html\",\"redirect_to\":\"\",\"activecampaign_api_credentials_source\":\"default\",\"activecampaign_api_key\":\"\",\"activecampaign_api_url\":\"\",\"activecampaign_list\":\"\",\"activecampaign_tags\":\"\",\"convertkit_api_key_source\":\"default\",\"convertkit_custom_api_key\":\"\",\"convertkit_form\":\"\",\"convertkit_tags\":\"\",\"discord_webhook\":\"\",\"discord_username\":\"\",\"discord_avatar_url\":\"\",\"discord_title\":\"\",\"discord_content\":\"\",\"discord_form_data\":\"yes\",\"discord_ts\":\"yes\",\"discord_webhook_color\":\"#D30C5C\",\"drip_api_token_source\":\"default\",\"drip_custom_api_token\":\"\",\"drip_account\":\"\",\"drip_custom_fields\":\"no\",\"tags\":\"\",\"getresponse_api_key_source\":\"default\",\"getresponse_custom_api_key\":\"\",\"getresponse_list\":\"\",\"getresponse_dayofcycle\":\"\",\"mailchimp_api_key_source\":\"default\",\"mailchimp_api_key\":\"\",\"mailchimp_list\":\"\",\"mailchimp_groups\":\"\",\"mailchimp_tags\":\"\",\"mailchimp_double_opt_in\":\"\",\"mailerlite_api_key_source\":\"default\",\"mailerlite_custom_api_key\":\"\",\"mailerlite_group\":\"\",\"allow_resubscribe\":\"\",\"slack_webhook\":\"\",\"slack_channel\":\"\",\"slack_username\":\"\",\"slack_pretext\":\"\",\"slack_title\":\"\",\"slack_text\":\"\",\"slack_add_fields\":\"yes\",\"slack_add_ts\":\"yes\",\"slack_webhook_color\":\"#D30C5C\",\"webhooks\":\"\",\"webhooks_advanced_data\":\"no\",\"popup_action\":\"\",\"popup_action_popup_id\":\"\",\"popup_action_do_not_show_again\":\"\",\"step_type\":\"number_text\",\"step_icon_shape\":\"circle\",\"form_id\":\"\",\"form_validation\":\"\",\"custom_messages\":\"\",\"label_color\":\"\",\"mark_required_color\":\"\",\"label_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_text_transform\":\"\",\"label_typography_font_style\":\"\",\"label_typography_text_decoration\":\"\",\"label_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"label_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"label_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"html_color\":\"\",\"html_typography_typography\":\"\",\"html_typography_font_family\":\"\",\"html_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"html_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"html_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"html_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"html_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"html_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"html_typography_font_weight\":\"\",\"html_typography_text_transform\":\"\",\"html_typography_font_style\":\"\",\"html_typography_text_decoration\":\"\",\"html_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"html_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"html_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"html_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"html_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"html_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"html_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"html_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"html_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"html_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"html_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"html_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"html_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"html_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"html_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"html_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"html_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"html_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"field_text_color\":\"\",\"field_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"field_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"field_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"field_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"field_typography_text_transform\":\"\",\"field_typography_font_style\":\"\",\"field_typography_text_decoration\":\"\",\"field_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"field_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"field_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"field_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"field_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"field_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"field_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"field_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"field_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"field_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"field_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"field_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"field_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"field_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"field_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"field_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"field_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"field_background_color\":\"#ffffff\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_align\":\"stretch\",\"button_align_widescreen\":\"\",\"button_align_tablet_extra\":\"\",\"button_align_tablet\":\"\",\"button_align_mobile_extra\":\"\",\"button_align_mobile\":\"\",\"button_content_align\":\"\",\"button_content_align_widescreen\":\"\",\"button_content_align_tablet_extra\":\"\",\"button_content_align_tablet\":\"\",\"button_content_align_mobile_extra\":\"\",\"button_content_align_mobile\":\"\",\"button_typography_typography\":\"\",\"button_typography_font_family\":\"\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_font_weight\":\"\",\"button_typography_text_transform\":\"\",\"button_typography_font_style\":\"\",\"button_typography_text_decoration\":\"\",\"button_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"button_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"button_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"button_border_border\":\"\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_text_color\":\"#ffffff\",\"button_border_color\":\"\",\"previous_button_background_color\":\"\",\"previous_button_text_color\":\"#ffffff\",\"previous_button_border_color\":\"\",\"button_hover_color\":\"#ffffff\",\"button_hover_border_color\":\"\",\"previous_button_background_color_hover\":\"\",\"previous_button_text_color_hover\":\"#ffffff\",\"previous_button_border_color_hover\":\"\",\"hover_transition_duration\":{\"unit\":\"ms\",\"size\":\"\",\"sizes\":[]},\"button_hover_animation\":\"\",\"message_typography_typography\":\"\",\"message_typography_font_family\":\"\",\"message_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"message_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"message_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"message_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"message_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"message_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"message_typography_font_weight\":\"\",\"message_typography_text_transform\":\"\",\"message_typography_font_style\":\"\",\"message_typography_text_decoration\":\"\",\"message_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"message_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"message_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"message_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"message_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"message_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"message_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"message_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"message_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"message_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"message_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"message_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"message_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"message_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"message_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"message_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"message_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"message_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"success_message_color\":\"\",\"error_message_color\":\"\",\"inline_message_color\":\"\",\"steps_typography_typography\":\"\",\"steps_typography_font_family\":\"\",\"steps_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"steps_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"steps_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"steps_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"steps_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"steps_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"steps_typography_font_weight\":\"\",\"steps_typography_text_transform\":\"\",\"steps_typography_font_style\":\"\",\"steps_typography_text_decoration\":\"\",\"steps_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"steps_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"steps_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"steps_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"steps_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"steps_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"steps_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"steps_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"steps_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"steps_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"steps_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"steps_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"steps_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"steps_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"steps_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"steps_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"steps_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"steps_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"steps_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"steps_gap_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"steps_gap_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"steps_gap_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"steps_gap_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"steps_gap_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"steps_icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"steps_icon_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"steps_icon_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"steps_icon_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"steps_icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"steps_icon_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"steps_padding\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"steps_padding_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"steps_padding_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"steps_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"steps_padding_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"steps_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"step_inactive_primary_color\":\"\",\"step_inactive_secondary_color\":\"#ffffff\",\"step_active_primary_color\":\"\",\"step_active_secondary_color\":\"#ffffff\",\"step_completed_primary_color\":\"\",\"step_completed_secondary_color\":\"#ffffff\",\"step_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"step_divider_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"step_divider_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"step_divider_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"step_divider_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"step_divider_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"step_divider_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"step_divider_gap_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"step_divider_gap_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"step_divider_gap_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"step_divider_gap_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"step_divider_gap_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"step_progress_bar_color\":\"\",\"step_progress_bar_background_color\":\"\",\"step_progress_bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"step_progress_bar_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"step_progress_bar_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"step_progress_bar_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"step_progress_bar_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"step_progress_bar_height_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"step_progress_bar_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"step_progress_bar_percentage__typography_typography\":\"\",\"step_progress_bar_percentage__typography_font_family\":\"\",\"step_progress_bar_percentage__typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"step_progress_bar_percentage__typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"step_progress_bar_percentage__typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"step_progress_bar_percentage__typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"step_progress_bar_percentage__typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"step_progress_bar_percentage__typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"step_progress_bar_percentage__typography_font_weight\":\"\",\"step_progress_bar_percentage__typography_text_transform\":\"\",\"step_progress_bar_percentage__typography_font_style\":\"\",\"step_progress_bar_percentage__typography_text_decoration\":\"\",\"step_progress_bar_percentage__typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"step_progress_bar_percentage__typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"step_progress_bar_percentage__typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"step_progress_bar_percentage__typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"step_progress_bar_percentage__typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"step_progress_bar_percentage__typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"step_progress_bar_percentage__typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"step_progress_bar_percentage__typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"step_progress_bar_percentage__typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"step_progress_bar_percentage__typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"step_progress_bar_percentage__typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"step_progress_bar_percentage__typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"step_progress_bar_percentage__typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"step_progress_bar_percentage__typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"step_progress_bar_percentage__typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"step_progress_bar_percentage__typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"step_progress_bar_percentage__typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"step_progress_bar_percentage__typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"step_progress_bar_percentage_color\":\"\",\"_title\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"\",\"_element_width_widescreen\":\"\",\"_element_width_tablet_extra\":\"\",\"_element_width_tablet\":\"\",\"_element_width_mobile_extra\":\"\",\"_element_width_mobile\":\"\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_grid_column\":\"\",\"_grid_column_widescreen\":\"\",\"_grid_column_tablet_extra\":\"\",\"_grid_column_tablet\":\"\",\"_grid_column_mobile_extra\":\"\",\"_grid_column_mobile\":\"\",\"_grid_column_custom\":\"\",\"_grid_column_custom_widescreen\":\"\",\"_grid_column_custom_tablet_extra\":\"\",\"_grid_column_custom_tablet\":\"\",\"_grid_column_custom_mobile_extra\":\"\",\"_grid_column_custom_mobile\":\"\",\"_grid_row\":\"\",\"_grid_row_widescreen\":\"\",\"_grid_row_tablet_extra\":\"\",\"_grid_row_tablet\":\"\",\"_grid_row_mobile_extra\":\"\",\"_grid_row_mobile\":\"\",\"_grid_row_custom\":\"\",\"_grid_row_custom_widescreen\":\"\",\"_grid_row_custom_tablet_extra\":\"\",\"_grid_row_custom_tablet\":\"\",\"_grid_row_custom_mobile_extra\":\"\",\"_grid_row_custom_mobile\":\"\",\"_flex_align_self\":\"\",\"_flex_align_self_widescreen\":\"\",\"_flex_align_self_tablet_extra\":\"\",\"_flex_align_self_tablet\":\"\",\"_flex_align_self_mobile_extra\":\"\",\"_flex_align_self_mobile\":\"\",\"_flex_order\":\"\",\"_flex_order_widescreen\":\"\",\"_flex_order_tablet_extra\":\"\",\"_flex_order_tablet\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_mobile\":\"\",\"_flex_order_custom\":\"\",\"_flex_order_custom_widescreen\":\"\",\"_flex_order_custom_tablet_extra\":\"\",\"_flex_order_custom_tablet\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_order_custom_mobile\":\"\",\"_flex_size\":\"\",\"_flex_size_widescreen\":\"\",\"_flex_size_tablet_extra\":\"\",\"_flex_size_tablet\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_size_mobile\":\"\",\"_flex_grow\":1,\"_flex_grow_widescreen\":\"\",\"_flex_grow_tablet_extra\":\"\",\"_flex_grow_tablet\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_grow_mobile\":\"\",\"_flex_shrink\":1,\"_flex_shrink_widescreen\":\"\",\"_flex_shrink_tablet_extra\":\"\",\"_flex_shrink_tablet\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_flex_shrink_mobile\":\"\",\"_element_vertical_align\":\"\",\"_element_vertical_align_widescreen\":\"\",\"_element_vertical_align_tablet_extra\":\"\",\"_element_vertical_align_tablet\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_element_vertical_align_mobile\":\"\",\"_position\":\"\",\"_offset_orientation_h\":\"start\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_orientation_v\":\"start\",\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index\":\"\",\"_z_index_widescreen\":\"\",\"_z_index_tablet_extra\":\"\",\"_z_index_tablet\":\"\",\"_z_index_mobile_extra\":\"\",\"_z_index_mobile\":\"\",\"_element_id\":\"\",\"_css_classes\":\"\",\"e_display_conditions\":\"\",\"_element_cache\":\"\",\"pp_display_conditions_enable\":\"\",\"pp_display_conditions_output\":\"\",\"pp_display_conditions_relation\":\"all\",\"pp_wrapper_link_enable\":\"\",\"pp_wrapper_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_custom_cursor_enable\":\"\",\"pp_custom_cursor_target\":\"container\",\"pp_custom_cursor_css_selector\":\"\",\"pp_custom_cursor_type\":\"image\",\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text\":\"\",\"pp_custom_cursor_left_offset\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_top_offset\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_typography_typography\":\"\",\"pp_custom_cursor_text_typography_font_family\":\"\",\"pp_custom_cursor_text_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_weight\":\"\",\"pp_custom_cursor_text_typography_text_transform\":\"\",\"pp_custom_cursor_text_typography_font_style\":\"\",\"pp_custom_cursor_text_typography_text_decoration\":\"\",\"pp_custom_cursor_text_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_color\":\"\",\"pp_custom_cursor_text_bg_background\":\"\",\"pp_custom_cursor_text_bg_color\":\"\",\"pp_custom_cursor_text_bg_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_color_stop_widescreen\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_tablet_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_tablet\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_mobile_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_mobile\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b\":\"#f2295b\",\"pp_custom_cursor_text_bg_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pp_custom_cursor_text_bg_color_b_stop_widescreen\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_tablet\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_mobile\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_gradient_type\":\"linear\",\"pp_custom_cursor_text_bg_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"pp_custom_cursor_text_bg_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_tablet\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_mobile\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_position\":\"center center\",\"pp_custom_cursor_text_bg_gradient_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_gradient_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_gradient_position_tablet\":\"\",\"pp_custom_cursor_text_bg_gradient_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_gradient_position_mobile\":\"\",\"pp_custom_cursor_text_bg_position\":\"\",\"pp_custom_cursor_text_bg_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_position_tablet\":\"\",\"pp_custom_cursor_text_bg_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_position_mobile\":\"\",\"pp_custom_cursor_text_bg_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_attachment\":\"\",\"pp_custom_cursor_text_bg_repeat\":\"\",\"pp_custom_cursor_text_bg_repeat_widescreen\":\"\",\"pp_custom_cursor_text_bg_repeat_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_repeat_tablet\":\"\",\"pp_custom_cursor_text_bg_repeat_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_repeat_mobile\":\"\",\"pp_custom_cursor_text_bg_size\":\"\",\"pp_custom_cursor_text_bg_size_widescreen\":\"\",\"pp_custom_cursor_text_bg_size_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_size_tablet\":\"\",\"pp_custom_cursor_text_bg_size_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_size_mobile\":\"\",\"pp_custom_cursor_text_bg_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_video_link\":\"\",\"pp_custom_cursor_text_bg_video_start\":\"\",\"pp_custom_cursor_text_bg_video_end\":\"\",\"pp_custom_cursor_text_bg_play_once\":\"\",\"pp_custom_cursor_text_bg_play_on_mobile\":\"\",\"pp_custom_cursor_text_bg_privacy_mode\":\"\",\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"pp_custom_cursor_text_bg_slideshow_loop\":\"yes\",\"pp_custom_cursor_text_bg_slideshow_slide_duration\":5000,\"pp_custom_cursor_text_bg_slideshow_slide_transition\":\"fade\",\"pp_custom_cursor_text_bg_slideshow_transition_duration\":500,\"pp_custom_cursor_text_bg_slideshow_background_size\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_widescreen\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_tablet\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_mobile\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_tablet\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_mobile\":\"\",\"pp_custom_cursor_text_bg_slideshow_lazyload\":\"\",\"pp_custom_cursor_text_bg_slideshow_ken_burns\":\"\",\"pp_custom_cursor_text_bg_slideshow_ken_burns_zoom_direction\":\"in\",\"pp_custom_cursor_text_border_border\":\"\",\"pp_custom_cursor_text_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_color\":\"\",\"pp_custom_cursor_text_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_enable\":\"\",\"pp_elements_tooltip_target\":\"current\",\"pp_elements_tooltip_selector\":\"\",\"pp_elements_tooltip_trigger\":\"hover\",\"pp_elements_tooltip_position\":\"top\",\"pp_elements_tooltip_arrow\":\"yes\",\"pp_elements_tooltip_animation\":\"fade\",\"pp_elements_tooltip_distance\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_zindex\":99,\"pp_elements_tooltip_bg_color\":\"\",\"pp_elements_tooltip_color\":\"\",\"pp_elements_tooltip_typography_typography\":\"\",\"pp_elements_tooltip_typography_font_family\":\"\",\"pp_elements_tooltip_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_weight\":\"\",\"pp_elements_tooltip_typography_text_transform\":\"\",\"pp_elements_tooltip_typography_font_style\":\"\",\"pp_elements_tooltip_typography_text_decoration\":\"\",\"pp_elements_tooltip_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_box_shadow_box_shadow_type\":\"\",\"pp_elements_tooltip_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"pp_elements_tooltip_box_shadow_box_shadow_position\":\" \",\"pp_elements_tooltip_border_border\":\"\",\"pp_elements_tooltip_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_color\":\"\",\"pp_elements_tooltip_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"\",\"motion_fx_translateY_effect\":\"\",\"motion_fx_translateY_direction\":\"\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_translateX_effect\":\"\",\"motion_fx_translateX_direction\":\"\",\"motion_fx_translateX_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_translateX_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_opacity_effect\":\"\",\"motion_fx_opacity_direction\":\"out-in\",\"motion_fx_opacity_level\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_opacity_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_blur_effect\":\"\",\"motion_fx_blur_direction\":\"out-in\",\"motion_fx_blur_level\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"motion_fx_blur_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_rotateZ_effect\":\"\",\"motion_fx_rotateZ_direction\":\"\",\"motion_fx_rotateZ_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_rotateZ_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_scale_effect\":\"\",\"motion_fx_scale_direction\":\"out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_scale_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_transform_origin_x\":\"center\",\"motion_fx_transform_origin_y\":\"center\",\"motion_fx_devices\":[\"widescreen\",\"desktop\",\"tablet_extra\",\"tablet\",\"mobile_extra\",\"mobile\"],\"motion_fx_range\":\"\",\"motion_fx_motion_fx_mouse\":\"\",\"motion_fx_mouseTrack_effect\":\"\",\"motion_fx_mouseTrack_direction\":\"\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_tilt_effect\":\"\",\"motion_fx_tilt_direction\":\"\",\"motion_fx_tilt_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"handle_motion_fx_asset_loading\":\"\",\"sticky\":\"\",\"sticky_on\":[\"widescreen\",\"desktop\",\"tablet_extra\",\"tablet\",\"mobile_extra\",\"mobile\"],\"sticky_offset\":0,\"sticky_offset_widescreen\":\"\",\"sticky_offset_tablet_extra\":\"\",\"sticky_offset_tablet\":\"\",\"sticky_offset_mobile_extra\":\"\",\"sticky_offset_mobile\":\"\",\"sticky_effects_offset\":0,\"sticky_effects_offset_widescreen\":\"\",\"sticky_effects_offset_tablet_extra\":\"\",\"sticky_effects_offset_tablet\":\"\",\"sticky_effects_offset_mobile_extra\":\"\",\"sticky_effects_offset_mobile\":\"\",\"sticky_anchor_link_offset\":0,\"sticky_anchor_link_offset_widescreen\":\"\",\"sticky_anchor_link_offset_tablet_extra\":\"\",\"sticky_anchor_link_offset_tablet\":\"\",\"sticky_anchor_link_offset_mobile_extra\":\"\",\"sticky_anchor_link_offset_mobile\":\"\",\"sticky_parent\":\"\",\"_animation\":\"\",\"_animation_widescreen\":\"\",\"_animation_tablet_extra\":\"\",\"_animation_tablet\":\"\",\"_animation_mobile_extra\":\"\",\"_animation_mobile\":\"\",\"animation_duration\":\"\",\"_animation_delay\":\"\",\"_transform_rotate_popover\":\"\",\"_transform_rotateZ_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotate_3d\":\"\",\"_transform_rotateX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"\",\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_popover\":\"\",\"_transform_keep_proportions\":\"yes\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skew_popover\":\"\",\"_transform_skewX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_flipX_effect\":\"\",\"_transform_flipY_effect\":\"\",\"_transform_rotate_popover_hover\":\"\",\"_transform_rotateZ_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotate_3d_hover\":\"\",\"_transform_rotateX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover_hover\":\"\",\"_transform_translateX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_popover_hover\":\"\",\"_transform_keep_proportions_hover\":\"yes\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skew_popover_hover\":\"\",\"_transform_skewX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_flipX_effect_hover\":\"\",\"_transform_flipY_effect_hover\":\"\",\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point\":\"\",\"motion_fx_transform_x_anchor_point_widescreen\":\"\",\"motion_fx_transform_x_anchor_point_tablet_extra\":\"\",\"motion_fx_transform_x_anchor_point_tablet\":\"\",\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_x_anchor_point_mobile\":\"\",\"motion_fx_transform_y_anchor_point\":\"\",\"motion_fx_transform_y_anchor_point_widescreen\":\"\",\"motion_fx_transform_y_anchor_point_tablet_extra\":\"\",\"motion_fx_transform_y_anchor_point_tablet\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile\":\"\",\"_background_color\":\"\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_stop_widescreen\":{\"unit\":\"%\"},\"_background_color_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_color_stop_tablet\":{\"unit\":\"%\"},\"_background_color_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_color_stop_mobile\":{\"unit\":\"%\"},\"_background_color_b\":\"#f2295b\",\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_color_b_stop_widescreen\":{\"unit\":\"%\"},\"_background_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_color_b_stop_tablet\":{\"unit\":\"%\"},\"_background_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_color_b_stop_mobile\":{\"unit\":\"%\"},\"_background_gradient_type\":\"linear\",\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"_background_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\"},\"_background_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\"},\"_background_gradient_position\":\"center center\",\"_background_gradient_position_widescreen\":\"\",\"_background_gradient_position_tablet_extra\":\"\",\"_background_gradient_position_tablet\":\"\",\"_background_gradient_position_mobile_extra\":\"\",\"_background_gradient_position_mobile\":\"\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position\":\"\",\"_background_position_widescreen\":\"\",\"_background_position_tablet_extra\":\"\",\"_background_position_tablet\":\"\",\"_background_position_mobile_extra\":\"\",\"_background_position_mobile\":\"\",\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_attachment\":\"\",\"_background_repeat\":\"\",\"_background_repeat_widescreen\":\"\",\"_background_repeat_tablet_extra\":\"\",\"_background_repeat_tablet\":\"\",\"_background_repeat_mobile_extra\":\"\",\"_background_repeat_mobile\":\"\",\"_background_size\":\"\",\"_background_size_widescreen\":\"\",\"_background_size_tablet_extra\":\"\",\"_background_size_tablet\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_size_mobile\":\"\",\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_video_link\":\"\",\"_background_video_start\":\"\",\"_background_video_end\":\"\",\"_background_play_once\":\"\",\"_background_play_on_mobile\":\"\",\"_background_privacy_mode\":\"\",\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_slideshow_loop\":\"yes\",\"_background_slideshow_slide_duration\":5000,\"_background_slideshow_slide_transition\":\"fade\",\"_background_slideshow_transition_duration\":500,\"_background_slideshow_background_size\":\"\",\"_background_slideshow_background_size_widescreen\":\"\",\"_background_slideshow_background_size_tablet_extra\":\"\",\"_background_slideshow_background_size_tablet\":\"\",\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_size_mobile\":\"\",\"_background_slideshow_background_position\":\"\",\"_background_slideshow_background_position_widescreen\":\"\",\"_background_slideshow_background_position_tablet_extra\":\"\",\"_background_slideshow_background_position_tablet\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile\":\"\",\"_background_slideshow_lazyload\":\"\",\"_background_slideshow_ken_burns\":\"\",\"_background_slideshow_ken_burns_zoom_direction\":\"in\",\"_background_hover_background\":\"\",\"_background_hover_color\":\"\",\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_stop_widescreen\":{\"unit\":\"%\"},\"_background_hover_color_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\"},\"_background_hover_color_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\"},\"_background_hover_color_b\":\"#f2295b\",\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_color_b_stop_widescreen\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\"},\"_background_hover_gradient_type\":\"linear\",\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\"},\"_background_hover_gradient_position\":\"center center\",\"_background_hover_gradient_position_widescreen\":\"\",\"_background_hover_gradient_position_tablet_extra\":\"\",\"_background_hover_gradient_position_tablet\":\"\",\"_background_hover_gradient_position_mobile_extra\":\"\",\"_background_hover_gradient_position_mobile\":\"\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position\":\"\",\"_background_hover_position_widescreen\":\"\",\"_background_hover_position_tablet_extra\":\"\",\"_background_hover_position_tablet\":\"\",\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_position_mobile\":\"\",\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_attachment\":\"\",\"_background_hover_repeat\":\"\",\"_background_hover_repeat_widescreen\":\"\",\"_background_hover_repeat_tablet_extra\":\"\",\"_background_hover_repeat_tablet\":\"\",\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_repeat_mobile\":\"\",\"_background_hover_size\":\"\",\"_background_hover_size_widescreen\":\"\",\"_background_hover_size_tablet_extra\":\"\",\"_background_hover_size_tablet\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_size_mobile\":\"\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_video_link\":\"\",\"_background_hover_video_start\":\"\",\"_background_hover_video_end\":\"\",\"_background_hover_play_once\":\"\",\"_background_hover_play_on_mobile\":\"\",\"_background_hover_privacy_mode\":\"\",\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_background_hover_slideshow_loop\":\"yes\",\"_background_hover_slideshow_slide_duration\":5000,\"_background_hover_slideshow_slide_transition\":\"fade\",\"_background_hover_slideshow_transition_duration\":500,\"_background_hover_slideshow_background_size\":\"\",\"_background_hover_slideshow_background_size_widescreen\":\"\",\"_background_hover_slideshow_background_size_tablet_extra\":\"\",\"_background_hover_slideshow_background_size_tablet\":\"\",\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_size_mobile\":\"\",\"_background_hover_slideshow_background_position\":\"\",\"_background_hover_slideshow_background_position_widescreen\":\"\",\"_background_hover_slideshow_background_position_tablet_extra\":\"\",\"_background_hover_slideshow_background_position_tablet\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile\":\"\",\"_background_hover_slideshow_lazyload\":\"\",\"_background_hover_slideshow_ken_burns\":\"\",\"_background_hover_slideshow_ken_burns_zoom_direction\":\"in\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_box_shadow_position\":\" \",\"_border_hover_border\":\"\",\"_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_color\":\"\",\"_border_radius_hover\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_box_shadow_hover_box_shadow_type\":\"\",\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_hover_box_shadow_position\":\" \",\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_switch\":\"\",\"_mask_shape\":\"circle\",\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_size\":\"contain\",\"_mask_size_widescreen\":\"\",\"_mask_size_tablet_extra\":\"\",\"_mask_size_tablet\":\"\",\"_mask_size_mobile_extra\":\"\",\"_mask_size_mobile\":\"\",\"_mask_size_scale\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_mask_size_scale_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position\":\"center center\",\"_mask_position_widescreen\":\"\",\"_mask_position_tablet_extra\":\"\",\"_mask_position_tablet\":\"\",\"_mask_position_mobile_extra\":\"\",\"_mask_position_mobile\":\"\",\"_mask_position_x\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_mask_position_x_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_mask_position_y_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat\":\"no-repeat\",\"_mask_repeat_widescreen\":\"\",\"_mask_repeat_tablet_extra\":\"\",\"_mask_repeat_tablet\":\"\",\"_mask_repeat_mobile_extra\":\"\",\"_mask_repeat_mobile\":\"\",\"hide_widescreen\":\"\",\"hide_desktop\":\"\",\"hide_tablet_extra\":\"\",\"hide_tablet\":\"\",\"hide_mobile_extra\":\"\",\"hide_mobile\":\"\",\"_attributes\":\"\",\"custom_css\":\"\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true},{\"id\":\"acbaf90\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5f31bac\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"32a9521\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dea9376\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7ff945\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"256b247\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title\":\"KONTAKT OS\",\"pp_display_conditions\":[{\"_id\":\"156b1a5\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-02-11 to 2026-02-17\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align_mobile_extra\":\"center\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"size\":\"default\",\"header_size\":\"h2\",\"align_widescreen\":\"\",\"align_tablet_extra\":\"\",\"align_tablet\":\"\",\"align_mobile\":\"\",\"typography_typography\":\"\",\"typography_font_family\":\"\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_weight\":\"\",\"typography_text_transform\":\"\",\"typography_font_style\":\"\",\"typography_text_decoration\":\"\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_type\":\"\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_stroke_color\":\"#000\",\"text_shadow_text_shadow_type\":\"\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"blend_mode\":\"\",\"title_color\":\"\",\"title_hover_color\":\"\",\"title_hover_color_transition_duration\":{\"unit\":\"s\",\"size\":\"\",\"sizes\":[]},\"_title\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"\",\"_element_width_widescreen\":\"\",\"_element_width_tablet_extra\":\"\",\"_element_width_tablet\":\"\",\"_element_width_mobile_extra\":\"\",\"_element_width_mobile\":\"\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_grid_column\":\"\",\"_grid_column_widescreen\":\"\",\"_grid_column_tablet_extra\":\"\",\"_grid_column_tablet\":\"\",\"_grid_column_mobile_extra\":\"\",\"_grid_column_mobile\":\"\",\"_grid_column_custom\":\"\",\"_grid_column_custom_widescreen\":\"\",\"_grid_column_custom_tablet_extra\":\"\",\"_grid_column_custom_tablet\":\"\",\"_grid_column_custom_mobile_extra\":\"\",\"_grid_column_custom_mobile\":\"\",\"_grid_row\":\"\",\"_grid_row_widescreen\":\"\",\"_grid_row_tablet_extra\":\"\",\"_grid_row_tablet\":\"\",\"_grid_row_mobile_extra\":\"\",\"_grid_row_mobile\":\"\",\"_grid_row_custom\":\"\",\"_grid_row_custom_widescreen\":\"\",\"_grid_row_custom_tablet_extra\":\"\",\"_grid_row_custom_tablet\":\"\",\"_grid_row_custom_mobile_extra\":\"\",\"_grid_row_custom_mobile\":\"\",\"_flex_align_self\":\"\",\"_flex_align_self_widescreen\":\"\",\"_flex_align_self_tablet_extra\":\"\",\"_flex_align_self_tablet\":\"\",\"_flex_align_self_mobile_extra\":\"\",\"_flex_align_self_mobile\":\"\",\"_flex_order\":\"\",\"_flex_order_widescreen\":\"\",\"_flex_order_tablet_extra\":\"\",\"_flex_order_tablet\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_mobile\":\"\",\"_flex_order_custom\":\"\",\"_flex_order_custom_widescreen\":\"\",\"_flex_order_custom_tablet_extra\":\"\",\"_flex_order_custom_tablet\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_order_custom_mobile\":\"\",\"_flex_size\":\"\",\"_flex_size_widescreen\":\"\",\"_flex_size_tablet_extra\":\"\",\"_flex_size_tablet\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_size_mobile\":\"\",\"_flex_grow\":1,\"_flex_grow_widescreen\":\"\",\"_flex_grow_tablet_extra\":\"\",\"_flex_grow_tablet\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_grow_mobile\":\"\",\"_flex_shrink\":1,\"_flex_shrink_widescreen\":\"\",\"_flex_shrink_tablet_extra\":\"\",\"_flex_shrink_tablet\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_flex_shrink_mobile\":\"\",\"_element_vertical_align\":\"\",\"_element_vertical_align_widescreen\":\"\",\"_element_vertical_align_tablet_extra\":\"\",\"_element_vertical_align_tablet\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_element_vertical_align_mobile\":\"\",\"_position\":\"\",\"_offset_orientation_h\":\"start\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_orientation_v\":\"start\",\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index\":\"\",\"_z_index_widescreen\":\"\",\"_z_index_tablet_extra\":\"\",\"_z_index_tablet\":\"\",\"_z_index_mobile_extra\":\"\",\"_z_index_mobile\":\"\",\"_element_id\":\"\",\"_css_classes\":\"\",\"e_display_conditions\":\"\",\"_element_cache\":\"\",\"pp_display_conditions_enable\":\"\",\"pp_display_conditions_output\":\"\",\"pp_display_conditions_relation\":\"all\",\"pp_wrapper_link_enable\":\"\",\"pp_wrapper_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_custom_cursor_enable\":\"\",\"pp_custom_cursor_target\":\"container\",\"pp_custom_cursor_css_selector\":\"\",\"pp_custom_cursor_type\":\"image\",\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text\":\"\",\"pp_custom_cursor_left_offset\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_top_offset\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_typography_typography\":\"\",\"pp_custom_cursor_text_typography_font_family\":\"\",\"pp_custom_cursor_text_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_weight\":\"\",\"pp_custom_cursor_text_typography_text_transform\":\"\",\"pp_custom_cursor_text_typography_font_style\":\"\",\"pp_custom_cursor_text_typography_text_decoration\":\"\",\"pp_custom_cursor_text_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_color\":\"\",\"pp_custom_cursor_text_bg_background\":\"\",\"pp_custom_cursor_text_bg_color\":\"\",\"pp_custom_cursor_text_bg_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_color_stop_widescreen\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_tablet_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_tablet\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_mobile_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_mobile\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b\":\"#f2295b\",\"pp_custom_cursor_text_bg_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pp_custom_cursor_text_bg_color_b_stop_widescreen\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_tablet\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_mobile\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_gradient_type\":\"linear\",\"pp_custom_cursor_text_bg_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"pp_custom_cursor_text_bg_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_tablet\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_mobile\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_position\":\"center center\",\"pp_custom_cursor_text_bg_gradient_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_gradient_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_gradient_position_tablet\":\"\",\"pp_custom_cursor_text_bg_gradient_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_gradient_position_mobile\":\"\",\"pp_custom_cursor_text_bg_position\":\"\",\"pp_custom_cursor_text_bg_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_position_tablet\":\"\",\"pp_custom_cursor_text_bg_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_position_mobile\":\"\",\"pp_custom_cursor_text_bg_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_attachment\":\"\",\"pp_custom_cursor_text_bg_repeat\":\"\",\"pp_custom_cursor_text_bg_repeat_widescreen\":\"\",\"pp_custom_cursor_text_bg_repeat_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_repeat_tablet\":\"\",\"pp_custom_cursor_text_bg_repeat_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_repeat_mobile\":\"\",\"pp_custom_cursor_text_bg_size\":\"\",\"pp_custom_cursor_text_bg_size_widescreen\":\"\",\"pp_custom_cursor_text_bg_size_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_size_tablet\":\"\",\"pp_custom_cursor_text_bg_size_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_size_mobile\":\"\",\"pp_custom_cursor_text_bg_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_video_link\":\"\",\"pp_custom_cursor_text_bg_video_start\":\"\",\"pp_custom_cursor_text_bg_video_end\":\"\",\"pp_custom_cursor_text_bg_play_once\":\"\",\"pp_custom_cursor_text_bg_play_on_mobile\":\"\",\"pp_custom_cursor_text_bg_privacy_mode\":\"\",\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"pp_custom_cursor_text_bg_slideshow_loop\":\"yes\",\"pp_custom_cursor_text_bg_slideshow_slide_duration\":5000,\"pp_custom_cursor_text_bg_slideshow_slide_transition\":\"fade\",\"pp_custom_cursor_text_bg_slideshow_transition_duration\":500,\"pp_custom_cursor_text_bg_slideshow_background_size\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_widescreen\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_tablet\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_mobile\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_tablet\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_mobile\":\"\",\"pp_custom_cursor_text_bg_slideshow_lazyload\":\"\",\"pp_custom_cursor_text_bg_slideshow_ken_burns\":\"\",\"pp_custom_cursor_text_bg_slideshow_ken_burns_zoom_direction\":\"in\",\"pp_custom_cursor_text_border_border\":\"\",\"pp_custom_cursor_text_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_color\":\"\",\"pp_custom_cursor_text_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_enable\":\"\",\"pp_elements_tooltip_target\":\"current\",\"pp_elements_tooltip_selector\":\"\",\"pp_elements_tooltip_trigger\":\"hover\",\"pp_elements_tooltip_position\":\"top\",\"pp_elements_tooltip_arrow\":\"yes\",\"pp_elements_tooltip_animation\":\"fade\",\"pp_elements_tooltip_distance\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_zindex\":99,\"pp_elements_tooltip_bg_color\":\"\",\"pp_elements_tooltip_color\":\"\",\"pp_elements_tooltip_typography_typography\":\"\",\"pp_elements_tooltip_typography_font_family\":\"\",\"pp_elements_tooltip_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_weight\":\"\",\"pp_elements_tooltip_typography_text_transform\":\"\",\"pp_elements_tooltip_typography_font_style\":\"\",\"pp_elements_tooltip_typography_text_decoration\":\"\",\"pp_elements_tooltip_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_box_shadow_box_shadow_type\":\"\",\"pp_elements_tooltip_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"pp_elements_tooltip_box_shadow_box_shadow_position\":\" \",\"pp_elements_tooltip_border_border\":\"\",\"pp_elements_tooltip_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_color\":\"\",\"pp_elements_tooltip_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"\",\"motion_fx_translateY_effect\":\"\",\"motion_fx_translateY_direction\":\"\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_translateX_effect\":\"\",\"motion_fx_translateX_direction\":\"\",\"motion_fx_translateX_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_translateX_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_opacity_effect\":\"\",\"motion_fx_opacity_direction\":\"out-in\",\"motion_fx_opacity_level\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_opacity_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_blur_effect\":\"\",\"motion_fx_blur_direction\":\"out-in\",\"motion_fx_blur_level\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"motion_fx_blur_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_rotateZ_effect\":\"\",\"motion_fx_rotateZ_direction\":\"\",\"motion_fx_rotateZ_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_rotateZ_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_scale_effect\":\"\",\"motion_fx_scale_direction\":\"out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_scale_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_transform_origin_x\":\"center\",\"motion_fx_transform_origin_y\":\"center\",\"motion_fx_devices\":[\"widescreen\",\"desktop\",\"tablet_extra\",\"tablet\",\"mobile_extra\",\"mobile\"],\"motion_fx_range\":\"\",\"motion_fx_motion_fx_mouse\":\"\",\"motion_fx_mouseTrack_effect\":\"\",\"motion_fx_mouseTrack_direction\":\"\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_tilt_effect\":\"\",\"motion_fx_tilt_direction\":\"\",\"motion_fx_tilt_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"handle_motion_fx_asset_loading\":\"\",\"sticky\":\"\",\"sticky_on\":[\"widescreen\",\"desktop\",\"tablet_extra\",\"tablet\",\"mobile_extra\",\"mobile\"],\"sticky_offset\":0,\"sticky_offset_widescreen\":\"\",\"sticky_offset_tablet_extra\":\"\",\"sticky_offset_tablet\":\"\",\"sticky_offset_mobile_extra\":\"\",\"sticky_offset_mobile\":\"\",\"sticky_effects_offset\":0,\"sticky_effects_offset_widescreen\":\"\",\"sticky_effects_offset_tablet_extra\":\"\",\"sticky_effects_offset_tablet\":\"\",\"sticky_effects_offset_mobile_extra\":\"\",\"sticky_effects_offset_mobile\":\"\",\"sticky_anchor_link_offset\":0,\"sticky_anchor_link_offset_widescreen\":\"\",\"sticky_anchor_link_offset_tablet_extra\":\"\",\"sticky_anchor_link_offset_tablet\":\"\",\"sticky_anchor_link_offset_mobile_extra\":\"\",\"sticky_anchor_link_offset_mobile\":\"\",\"sticky_parent\":\"\",\"_animation\":\"\",\"_animation_widescreen\":\"\",\"_animation_tablet_extra\":\"\",\"_animation_tablet\":\"\",\"_animation_mobile_extra\":\"\",\"_animation_mobile\":\"\",\"animation_duration\":\"\",\"_animation_delay\":\"\",\"_transform_rotate_popover\":\"\",\"_transform_rotateZ_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotate_3d\":\"\",\"_transform_rotateX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"\",\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_popover\":\"\",\"_transform_keep_proportions\":\"yes\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skew_popover\":\"\",\"_transform_skewX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_flipX_effect\":\"\",\"_transform_flipY_effect\":\"\",\"_transform_rotate_popover_hover\":\"\",\"_transform_rotateZ_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotate_3d_hover\":\"\",\"_transform_rotateX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover_hover\":\"\",\"_transform_translateX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_popover_hover\":\"\",\"_transform_keep_proportions_hover\":\"yes\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skew_popover_hover\":\"\",\"_transform_skewX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_flipX_effect_hover\":\"\",\"_transform_flipY_effect_hover\":\"\",\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point\":\"\",\"motion_fx_transform_x_anchor_point_widescreen\":\"\",\"motion_fx_transform_x_anchor_point_tablet_extra\":\"\",\"motion_fx_transform_x_anchor_point_tablet\":\"\",\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_x_anchor_point_mobile\":\"\",\"motion_fx_transform_y_anchor_point\":\"\",\"motion_fx_transform_y_anchor_point_widescreen\":\"\",\"motion_fx_transform_y_anchor_point_tablet_extra\":\"\",\"motion_fx_transform_y_anchor_point_tablet\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile\":\"\",\"_background_background\":\"\",\"_background_color\":\"\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_stop_widescreen\":{\"unit\":\"%\"},\"_background_color_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_color_stop_tablet\":{\"unit\":\"%\"},\"_background_color_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_color_stop_mobile\":{\"unit\":\"%\"},\"_background_color_b\":\"#f2295b\",\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_color_b_stop_widescreen\":{\"unit\":\"%\"},\"_background_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_color_b_stop_tablet\":{\"unit\":\"%\"},\"_background_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_color_b_stop_mobile\":{\"unit\":\"%\"},\"_background_gradient_type\":\"linear\",\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"_background_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\"},\"_background_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\"},\"_background_gradient_position\":\"center center\",\"_background_gradient_position_widescreen\":\"\",\"_background_gradient_position_tablet_extra\":\"\",\"_background_gradient_position_tablet\":\"\",\"_background_gradient_position_mobile_extra\":\"\",\"_background_gradient_position_mobile\":\"\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position\":\"\",\"_background_position_widescreen\":\"\",\"_background_position_tablet_extra\":\"\",\"_background_position_tablet\":\"\",\"_background_position_mobile_extra\":\"\",\"_background_position_mobile\":\"\",\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_attachment\":\"\",\"_background_repeat\":\"\",\"_background_repeat_widescreen\":\"\",\"_background_repeat_tablet_extra\":\"\",\"_background_repeat_tablet\":\"\",\"_background_repeat_mobile_extra\":\"\",\"_background_repeat_mobile\":\"\",\"_background_size\":\"\",\"_background_size_widescreen\":\"\",\"_background_size_tablet_extra\":\"\",\"_background_size_tablet\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_size_mobile\":\"\",\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_video_link\":\"\",\"_background_video_start\":\"\",\"_background_video_end\":\"\",\"_background_play_once\":\"\",\"_background_play_on_mobile\":\"\",\"_background_privacy_mode\":\"\",\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_slideshow_loop\":\"yes\",\"_background_slideshow_slide_duration\":5000,\"_background_slideshow_slide_transition\":\"fade\",\"_background_slideshow_transition_duration\":500,\"_background_slideshow_background_size\":\"\",\"_background_slideshow_background_size_widescreen\":\"\",\"_background_slideshow_background_size_tablet_extra\":\"\",\"_background_slideshow_background_size_tablet\":\"\",\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_size_mobile\":\"\",\"_background_slideshow_background_position\":\"\",\"_background_slideshow_background_position_widescreen\":\"\",\"_background_slideshow_background_position_tablet_extra\":\"\",\"_background_slideshow_background_position_tablet\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile\":\"\",\"_background_slideshow_lazyload\":\"\",\"_background_slideshow_ken_burns\":\"\",\"_background_slideshow_ken_burns_zoom_direction\":\"in\",\"_background_hover_background\":\"\",\"_background_hover_color\":\"\",\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_stop_widescreen\":{\"unit\":\"%\"},\"_background_hover_color_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\"},\"_background_hover_color_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\"},\"_background_hover_color_b\":\"#f2295b\",\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_color_b_stop_widescreen\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\"},\"_background_hover_gradient_type\":\"linear\",\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\"},\"_background_hover_gradient_position\":\"center center\",\"_background_hover_gradient_position_widescreen\":\"\",\"_background_hover_gradient_position_tablet_extra\":\"\",\"_background_hover_gradient_position_tablet\":\"\",\"_background_hover_gradient_position_mobile_extra\":\"\",\"_background_hover_gradient_position_mobile\":\"\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position\":\"\",\"_background_hover_position_widescreen\":\"\",\"_background_hover_position_tablet_extra\":\"\",\"_background_hover_position_tablet\":\"\",\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_position_mobile\":\"\",\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_attachment\":\"\",\"_background_hover_repeat\":\"\",\"_background_hover_repeat_widescreen\":\"\",\"_background_hover_repeat_tablet_extra\":\"\",\"_background_hover_repeat_tablet\":\"\",\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_repeat_mobile\":\"\",\"_background_hover_size\":\"\",\"_background_hover_size_widescreen\":\"\",\"_background_hover_size_tablet_extra\":\"\",\"_background_hover_size_tablet\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_size_mobile\":\"\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_video_link\":\"\",\"_background_hover_video_start\":\"\",\"_background_hover_video_end\":\"\",\"_background_hover_play_once\":\"\",\"_background_hover_play_on_mobile\":\"\",\"_background_hover_privacy_mode\":\"\",\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_background_hover_slideshow_loop\":\"yes\",\"_background_hover_slideshow_slide_duration\":5000,\"_background_hover_slideshow_slide_transition\":\"fade\",\"_background_hover_slideshow_transition_duration\":500,\"_background_hover_slideshow_background_size\":\"\",\"_background_hover_slideshow_background_size_widescreen\":\"\",\"_background_hover_slideshow_background_size_tablet_extra\":\"\",\"_background_hover_slideshow_background_size_tablet\":\"\",\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_size_mobile\":\"\",\"_background_hover_slideshow_background_position\":\"\",\"_background_hover_slideshow_background_position_widescreen\":\"\",\"_background_hover_slideshow_background_position_tablet_extra\":\"\",\"_background_hover_slideshow_background_position_tablet\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile\":\"\",\"_background_hover_slideshow_lazyload\":\"\",\"_background_hover_slideshow_ken_burns\":\"\",\"_background_hover_slideshow_ken_burns_zoom_direction\":\"in\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"\",\"_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_color\":\"\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_box_shadow_position\":\" \",\"_border_hover_border\":\"\",\"_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_color\":\"\",\"_border_radius_hover\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_box_shadow_hover_box_shadow_type\":\"\",\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_hover_box_shadow_position\":\" \",\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_switch\":\"\",\"_mask_shape\":\"circle\",\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_size\":\"contain\",\"_mask_size_widescreen\":\"\",\"_mask_size_tablet_extra\":\"\",\"_mask_size_tablet\":\"\",\"_mask_size_mobile_extra\":\"\",\"_mask_size_mobile\":\"\",\"_mask_size_scale\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_mask_size_scale_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position\":\"center center\",\"_mask_position_widescreen\":\"\",\"_mask_position_tablet_extra\":\"\",\"_mask_position_tablet\":\"\",\"_mask_position_mobile_extra\":\"\",\"_mask_position_mobile\":\"\",\"_mask_position_x\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_mask_position_x_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_mask_position_y_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat\":\"no-repeat\",\"_mask_repeat_widescreen\":\"\",\"_mask_repeat_tablet_extra\":\"\",\"_mask_repeat_tablet\":\"\",\"_mask_repeat_mobile_extra\":\"\",\"_mask_repeat_mobile\":\"\",\"hide_widescreen\":\"\",\"hide_desktop\":\"\",\"hide_tablet_extra\":\"\",\"hide_tablet\":\"\",\"hide_mobile_extra\":\"\",\"hide_mobile\":\"\",\"_attributes\":\"\",\"custom_css\":\"\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"309c417\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Vi d\\u00e6kker hele Fyn \\u2013 og tager ogs\\u00e5 gerne opgaver uden for omr\\u00e5det, n\\u00e5r der er tale om sp\\u00e6ndende eller teknisk kr\\u00e6vende l\\u00f8sninger.\",\"pp_display_conditions\":[{\"_id\":\"e03db8a\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-02-11 to 2026-02-17\",\"pp_condition_date_time_before_value\":\"2026-02-17 12:18\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align_mobile_extra\":\"center\",\"align_mobile\":\"center\",\"drop_cap\":\"\",\"text_columns\":\"\",\"text_columns_widescreen\":\"\",\"text_columns_tablet_extra\":\"\",\"text_columns_tablet\":\"\",\"text_columns_mobile_extra\":\"\",\"text_columns_mobile\":\"\",\"column_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"\",\"align_widescreen\":\"\",\"align_tablet_extra\":\"\",\"align_tablet\":\"\",\"typography_typography\":\"\",\"typography_font_family\":\"\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_weight\":\"\",\"typography_text_transform\":\"\",\"typography_font_style\":\"\",\"typography_text_decoration\":\"\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_shadow_text_shadow_type\":\"\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"paragraph_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"paragraph_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"paragraph_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"paragraph_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"paragraph_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"paragraph_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_color\":\"\",\"link_color\":\"\",\"link_hover_color\":\"\",\"link_hover_color_transition_duration\":{\"unit\":\"s\",\"size\":\"\",\"sizes\":[]},\"drop_cap_view\":\"default\",\"drop_cap_primary_color\":\"\",\"drop_cap_secondary_color\":\"\",\"drop_cap_shadow_text_shadow_type\":\"\",\"drop_cap_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"drop_cap_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"drop_cap_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"drop_cap_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"drop_cap_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"drop_cap_typography_typography\":\"\",\"drop_cap_typography_font_family\":\"\",\"drop_cap_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_weight\":\"\",\"drop_cap_typography_text_transform\":\"\",\"drop_cap_typography_font_style\":\"\",\"drop_cap_typography_text_decoration\":\"\",\"drop_cap_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_title\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"\",\"_element_width_widescreen\":\"\",\"_element_width_tablet_extra\":\"\",\"_element_width_tablet\":\"\",\"_element_width_mobile_extra\":\"\",\"_element_width_mobile\":\"\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_grid_column\":\"\",\"_grid_column_widescreen\":\"\",\"_grid_column_tablet_extra\":\"\",\"_grid_column_tablet\":\"\",\"_grid_column_mobile_extra\":\"\",\"_grid_column_mobile\":\"\",\"_grid_column_custom\":\"\",\"_grid_column_custom_widescreen\":\"\",\"_grid_column_custom_tablet_extra\":\"\",\"_grid_column_custom_tablet\":\"\",\"_grid_column_custom_mobile_extra\":\"\",\"_grid_column_custom_mobile\":\"\",\"_grid_row\":\"\",\"_grid_row_widescreen\":\"\",\"_grid_row_tablet_extra\":\"\",\"_grid_row_tablet\":\"\",\"_grid_row_mobile_extra\":\"\",\"_grid_row_mobile\":\"\",\"_grid_row_custom\":\"\",\"_grid_row_custom_widescreen\":\"\",\"_grid_row_custom_tablet_extra\":\"\",\"_grid_row_custom_tablet\":\"\",\"_grid_row_custom_mobile_extra\":\"\",\"_grid_row_custom_mobile\":\"\",\"_flex_align_self\":\"\",\"_flex_align_self_widescreen\":\"\",\"_flex_align_self_tablet_extra\":\"\",\"_flex_align_self_tablet\":\"\",\"_flex_align_self_mobile_extra\":\"\",\"_flex_align_self_mobile\":\"\",\"_flex_order\":\"\",\"_flex_order_widescreen\":\"\",\"_flex_order_tablet_extra\":\"\",\"_flex_order_tablet\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_mobile\":\"\",\"_flex_order_custom\":\"\",\"_flex_order_custom_widescreen\":\"\",\"_flex_order_custom_tablet_extra\":\"\",\"_flex_order_custom_tablet\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_order_custom_mobile\":\"\",\"_flex_size\":\"\",\"_flex_size_widescreen\":\"\",\"_flex_size_tablet_extra\":\"\",\"_flex_size_tablet\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_size_mobile\":\"\",\"_flex_grow\":1,\"_flex_grow_widescreen\":\"\",\"_flex_grow_tablet_extra\":\"\",\"_flex_grow_tablet\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_grow_mobile\":\"\",\"_flex_shrink\":1,\"_flex_shrink_widescreen\":\"\",\"_flex_shrink_tablet_extra\":\"\",\"_flex_shrink_tablet\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_flex_shrink_mobile\":\"\",\"_element_vertical_align\":\"\",\"_element_vertical_align_widescreen\":\"\",\"_element_vertical_align_tablet_extra\":\"\",\"_element_vertical_align_tablet\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_element_vertical_align_mobile\":\"\",\"_position\":\"\",\"_offset_orientation_h\":\"start\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_orientation_v\":\"start\",\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index\":\"\",\"_z_index_widescreen\":\"\",\"_z_index_tablet_extra\":\"\",\"_z_index_tablet\":\"\",\"_z_index_mobile_extra\":\"\",\"_z_index_mobile\":\"\",\"_element_id\":\"\",\"_css_classes\":\"\",\"e_display_conditions\":\"\",\"_element_cache\":\"\",\"pp_display_conditions_enable\":\"\",\"pp_display_conditions_output\":\"\",\"pp_display_conditions_relation\":\"all\",\"pp_wrapper_link_enable\":\"\",\"pp_wrapper_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_custom_cursor_enable\":\"\",\"pp_custom_cursor_target\":\"container\",\"pp_custom_cursor_css_selector\":\"\",\"pp_custom_cursor_type\":\"image\",\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text\":\"\",\"pp_custom_cursor_left_offset\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_top_offset\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_typography_typography\":\"\",\"pp_custom_cursor_text_typography_font_family\":\"\",\"pp_custom_cursor_text_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_weight\":\"\",\"pp_custom_cursor_text_typography_text_transform\":\"\",\"pp_custom_cursor_text_typography_font_style\":\"\",\"pp_custom_cursor_text_typography_text_decoration\":\"\",\"pp_custom_cursor_text_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_color\":\"\",\"pp_custom_cursor_text_bg_background\":\"\",\"pp_custom_cursor_text_bg_color\":\"\",\"pp_custom_cursor_text_bg_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_color_stop_widescreen\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_tablet_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_tablet\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_mobile_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_mobile\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b\":\"#f2295b\",\"pp_custom_cursor_text_bg_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pp_custom_cursor_text_bg_color_b_stop_widescreen\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_tablet\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_mobile\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_gradient_type\":\"linear\",\"pp_custom_cursor_text_bg_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"pp_custom_cursor_text_bg_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_tablet\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_mobile\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_position\":\"center center\",\"pp_custom_cursor_text_bg_gradient_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_gradient_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_gradient_position_tablet\":\"\",\"pp_custom_cursor_text_bg_gradient_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_gradient_position_mobile\":\"\",\"pp_custom_cursor_text_bg_position\":\"\",\"pp_custom_cursor_text_bg_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_position_tablet\":\"\",\"pp_custom_cursor_text_bg_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_position_mobile\":\"\",\"pp_custom_cursor_text_bg_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_attachment\":\"\",\"pp_custom_cursor_text_bg_repeat\":\"\",\"pp_custom_cursor_text_bg_repeat_widescreen\":\"\",\"pp_custom_cursor_text_bg_repeat_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_repeat_tablet\":\"\",\"pp_custom_cursor_text_bg_repeat_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_repeat_mobile\":\"\",\"pp_custom_cursor_text_bg_size\":\"\",\"pp_custom_cursor_text_bg_size_widescreen\":\"\",\"pp_custom_cursor_text_bg_size_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_size_tablet\":\"\",\"pp_custom_cursor_text_bg_size_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_size_mobile\":\"\",\"pp_custom_cursor_text_bg_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_video_link\":\"\",\"pp_custom_cursor_text_bg_video_start\":\"\",\"pp_custom_cursor_text_bg_video_end\":\"\",\"pp_custom_cursor_text_bg_play_once\":\"\",\"pp_custom_cursor_text_bg_play_on_mobile\":\"\",\"pp_custom_cursor_text_bg_privacy_mode\":\"\",\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"pp_custom_cursor_text_bg_slideshow_loop\":\"yes\",\"pp_custom_cursor_text_bg_slideshow_slide_duration\":5000,\"pp_custom_cursor_text_bg_slideshow_slide_transition\":\"fade\",\"pp_custom_cursor_text_bg_slideshow_transition_duration\":500,\"pp_custom_cursor_text_bg_slideshow_background_size\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_widescreen\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_tablet\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_mobile\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_tablet\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_mobile\":\"\",\"pp_custom_cursor_text_bg_slideshow_lazyload\":\"\",\"pp_custom_cursor_text_bg_slideshow_ken_burns\":\"\",\"pp_custom_cursor_text_bg_slideshow_ken_burns_zoom_direction\":\"in\",\"pp_custom_cursor_text_border_border\":\"\",\"pp_custom_cursor_text_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_color\":\"\",\"pp_custom_cursor_text_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_enable\":\"\",\"pp_elements_tooltip_target\":\"current\",\"pp_elements_tooltip_selector\":\"\",\"pp_elements_tooltip_trigger\":\"hover\",\"pp_elements_tooltip_position\":\"top\",\"pp_elements_tooltip_arrow\":\"yes\",\"pp_elements_tooltip_animation\":\"fade\",\"pp_elements_tooltip_distance\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_zindex\":99,\"pp_elements_tooltip_bg_color\":\"\",\"pp_elements_tooltip_color\":\"\",\"pp_elements_tooltip_typography_typography\":\"\",\"pp_elements_tooltip_typography_font_family\":\"\",\"pp_elements_tooltip_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_weight\":\"\",\"pp_elements_tooltip_typography_text_transform\":\"\",\"pp_elements_tooltip_typography_font_style\":\"\",\"pp_elements_tooltip_typography_text_decoration\":\"\",\"pp_elements_tooltip_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_box_shadow_box_shadow_type\":\"\",\"pp_elements_tooltip_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"pp_elements_tooltip_box_shadow_box_shadow_position\":\" \",\"pp_elements_tooltip_border_border\":\"\",\"pp_elements_tooltip_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_color\":\"\",\"pp_elements_tooltip_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"\",\"motion_fx_translateY_effect\":\"\",\"motion_fx_translateY_direction\":\"\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_translateX_effect\":\"\",\"motion_fx_translateX_direction\":\"\",\"motion_fx_translateX_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_translateX_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_opacity_effect\":\"\",\"motion_fx_opacity_direction\":\"out-in\",\"motion_fx_opacity_level\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_opacity_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_blur_effect\":\"\",\"motion_fx_blur_direction\":\"out-in\",\"motion_fx_blur_level\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"motion_fx_blur_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_rotateZ_effect\":\"\",\"motion_fx_rotateZ_direction\":\"\",\"motion_fx_rotateZ_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_rotateZ_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_scale_effect\":\"\",\"motion_fx_scale_direction\":\"out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_scale_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_transform_origin_x\":\"center\",\"motion_fx_transform_origin_y\":\"center\",\"motion_fx_devices\":[\"widescreen\",\"desktop\",\"tablet_extra\",\"tablet\",\"mobile_extra\",\"mobile\"],\"motion_fx_range\":\"\",\"motion_fx_motion_fx_mouse\":\"\",\"motion_fx_mouseTrack_effect\":\"\",\"motion_fx_mouseTrack_direction\":\"\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_tilt_effect\":\"\",\"motion_fx_tilt_direction\":\"\",\"motion_fx_tilt_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"handle_motion_fx_asset_loading\":\"\",\"sticky\":\"\",\"sticky_on\":[\"widescreen\",\"desktop\",\"tablet_extra\",\"tablet\",\"mobile_extra\",\"mobile\"],\"sticky_offset\":0,\"sticky_offset_widescreen\":\"\",\"sticky_offset_tablet_extra\":\"\",\"sticky_offset_tablet\":\"\",\"sticky_offset_mobile_extra\":\"\",\"sticky_offset_mobile\":\"\",\"sticky_effects_offset\":0,\"sticky_effects_offset_widescreen\":\"\",\"sticky_effects_offset_tablet_extra\":\"\",\"sticky_effects_offset_tablet\":\"\",\"sticky_effects_offset_mobile_extra\":\"\",\"sticky_effects_offset_mobile\":\"\",\"sticky_anchor_link_offset\":0,\"sticky_anchor_link_offset_widescreen\":\"\",\"sticky_anchor_link_offset_tablet_extra\":\"\",\"sticky_anchor_link_offset_tablet\":\"\",\"sticky_anchor_link_offset_mobile_extra\":\"\",\"sticky_anchor_link_offset_mobile\":\"\",\"sticky_parent\":\"\",\"_animation\":\"\",\"_animation_widescreen\":\"\",\"_animation_tablet_extra\":\"\",\"_animation_tablet\":\"\",\"_animation_mobile_extra\":\"\",\"_animation_mobile\":\"\",\"animation_duration\":\"\",\"_animation_delay\":\"\",\"_transform_rotate_popover\":\"\",\"_transform_rotateZ_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotate_3d\":\"\",\"_transform_rotateX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"\",\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_popover\":\"\",\"_transform_keep_proportions\":\"yes\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skew_popover\":\"\",\"_transform_skewX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_flipX_effect\":\"\",\"_transform_flipY_effect\":\"\",\"_transform_rotate_popover_hover\":\"\",\"_transform_rotateZ_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotate_3d_hover\":\"\",\"_transform_rotateX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover_hover\":\"\",\"_transform_translateX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_popover_hover\":\"\",\"_transform_keep_proportions_hover\":\"yes\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skew_popover_hover\":\"\",\"_transform_skewX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_flipX_effect_hover\":\"\",\"_transform_flipY_effect_hover\":\"\",\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point\":\"\",\"motion_fx_transform_x_anchor_point_widescreen\":\"\",\"motion_fx_transform_x_anchor_point_tablet_extra\":\"\",\"motion_fx_transform_x_anchor_point_tablet\":\"\",\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_x_anchor_point_mobile\":\"\",\"motion_fx_transform_y_anchor_point\":\"\",\"motion_fx_transform_y_anchor_point_widescreen\":\"\",\"motion_fx_transform_y_anchor_point_tablet_extra\":\"\",\"motion_fx_transform_y_anchor_point_tablet\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile\":\"\",\"_background_background\":\"\",\"_background_color\":\"\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_stop_widescreen\":{\"unit\":\"%\"},\"_background_color_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_color_stop_tablet\":{\"unit\":\"%\"},\"_background_color_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_color_stop_mobile\":{\"unit\":\"%\"},\"_background_color_b\":\"#f2295b\",\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_color_b_stop_widescreen\":{\"unit\":\"%\"},\"_background_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_color_b_stop_tablet\":{\"unit\":\"%\"},\"_background_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_color_b_stop_mobile\":{\"unit\":\"%\"},\"_background_gradient_type\":\"linear\",\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"_background_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\"},\"_background_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\"},\"_background_gradient_position\":\"center center\",\"_background_gradient_position_widescreen\":\"\",\"_background_gradient_position_tablet_extra\":\"\",\"_background_gradient_position_tablet\":\"\",\"_background_gradient_position_mobile_extra\":\"\",\"_background_gradient_position_mobile\":\"\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position\":\"\",\"_background_position_widescreen\":\"\",\"_background_position_tablet_extra\":\"\",\"_background_position_tablet\":\"\",\"_background_position_mobile_extra\":\"\",\"_background_position_mobile\":\"\",\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_attachment\":\"\",\"_background_repeat\":\"\",\"_background_repeat_widescreen\":\"\",\"_background_repeat_tablet_extra\":\"\",\"_background_repeat_tablet\":\"\",\"_background_repeat_mobile_extra\":\"\",\"_background_repeat_mobile\":\"\",\"_background_size\":\"\",\"_background_size_widescreen\":\"\",\"_background_size_tablet_extra\":\"\",\"_background_size_tablet\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_size_mobile\":\"\",\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_video_link\":\"\",\"_background_video_start\":\"\",\"_background_video_end\":\"\",\"_background_play_once\":\"\",\"_background_play_on_mobile\":\"\",\"_background_privacy_mode\":\"\",\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_slideshow_loop\":\"yes\",\"_background_slideshow_slide_duration\":5000,\"_background_slideshow_slide_transition\":\"fade\",\"_background_slideshow_transition_duration\":500,\"_background_slideshow_background_size\":\"\",\"_background_slideshow_background_size_widescreen\":\"\",\"_background_slideshow_background_size_tablet_extra\":\"\",\"_background_slideshow_background_size_tablet\":\"\",\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_size_mobile\":\"\",\"_background_slideshow_background_position\":\"\",\"_background_slideshow_background_position_widescreen\":\"\",\"_background_slideshow_background_position_tablet_extra\":\"\",\"_background_slideshow_background_position_tablet\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile\":\"\",\"_background_slideshow_lazyload\":\"\",\"_background_slideshow_ken_burns\":\"\",\"_background_slideshow_ken_burns_zoom_direction\":\"in\",\"_background_hover_background\":\"\",\"_background_hover_color\":\"\",\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_stop_widescreen\":{\"unit\":\"%\"},\"_background_hover_color_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\"},\"_background_hover_color_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\"},\"_background_hover_color_b\":\"#f2295b\",\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_color_b_stop_widescreen\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\"},\"_background_hover_gradient_type\":\"linear\",\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\"},\"_background_hover_gradient_position\":\"center center\",\"_background_hover_gradient_position_widescreen\":\"\",\"_background_hover_gradient_position_tablet_extra\":\"\",\"_background_hover_gradient_position_tablet\":\"\",\"_background_hover_gradient_position_mobile_extra\":\"\",\"_background_hover_gradient_position_mobile\":\"\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position\":\"\",\"_background_hover_position_widescreen\":\"\",\"_background_hover_position_tablet_extra\":\"\",\"_background_hover_position_tablet\":\"\",\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_position_mobile\":\"\",\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_attachment\":\"\",\"_background_hover_repeat\":\"\",\"_background_hover_repeat_widescreen\":\"\",\"_background_hover_repeat_tablet_extra\":\"\",\"_background_hover_repeat_tablet\":\"\",\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_repeat_mobile\":\"\",\"_background_hover_size\":\"\",\"_background_hover_size_widescreen\":\"\",\"_background_hover_size_tablet_extra\":\"\",\"_background_hover_size_tablet\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_size_mobile\":\"\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_video_link\":\"\",\"_background_hover_video_start\":\"\",\"_background_hover_video_end\":\"\",\"_background_hover_play_once\":\"\",\"_background_hover_play_on_mobile\":\"\",\"_background_hover_privacy_mode\":\"\",\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_background_hover_slideshow_loop\":\"yes\",\"_background_hover_slideshow_slide_duration\":5000,\"_background_hover_slideshow_slide_transition\":\"fade\",\"_background_hover_slideshow_transition_duration\":500,\"_background_hover_slideshow_background_size\":\"\",\"_background_hover_slideshow_background_size_widescreen\":\"\",\"_background_hover_slideshow_background_size_tablet_extra\":\"\",\"_background_hover_slideshow_background_size_tablet\":\"\",\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_size_mobile\":\"\",\"_background_hover_slideshow_background_position\":\"\",\"_background_hover_slideshow_background_position_widescreen\":\"\",\"_background_hover_slideshow_background_position_tablet_extra\":\"\",\"_background_hover_slideshow_background_position_tablet\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile\":\"\",\"_background_hover_slideshow_lazyload\":\"\",\"_background_hover_slideshow_ken_burns\":\"\",\"_background_hover_slideshow_ken_burns_zoom_direction\":\"in\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"\",\"_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_color\":\"\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_box_shadow_position\":\" \",\"_border_hover_border\":\"\",\"_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_color\":\"\",\"_border_radius_hover\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_box_shadow_hover_box_shadow_type\":\"\",\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_hover_box_shadow_position\":\" \",\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_switch\":\"\",\"_mask_shape\":\"circle\",\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_size\":\"contain\",\"_mask_size_widescreen\":\"\",\"_mask_size_tablet_extra\":\"\",\"_mask_size_tablet\":\"\",\"_mask_size_mobile_extra\":\"\",\"_mask_size_mobile\":\"\",\"_mask_size_scale\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_mask_size_scale_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position\":\"center center\",\"_mask_position_widescreen\":\"\",\"_mask_position_tablet_extra\":\"\",\"_mask_position_tablet\":\"\",\"_mask_position_mobile_extra\":\"\",\"_mask_position_mobile\":\"\",\"_mask_position_x\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_mask_position_x_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_mask_position_y_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat\":\"no-repeat\",\"_mask_repeat_widescreen\":\"\",\"_mask_repeat_tablet_extra\":\"\",\"_mask_repeat_tablet\":\"\",\"_mask_repeat_mobile_extra\":\"\",\"_mask_repeat_mobile\":\"\",\"hide_widescreen\":\"\",\"hide_desktop\":\"\",\"hide_tablet_extra\":\"\",\"hide_tablet\":\"\",\"hide_mobile_extra\":\"\",\"hide_mobile\":\"\",\"_attributes\":\"\",\"custom_css\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7061e9f\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"1a75682\",\"link\":{\"url\":\"https:\\/\\/www.facebook.com\\/cpnordic\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"da32d70\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/cpnordic\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.6,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"589cdcb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor6\"},\"icon_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"left\",\"align_tablet\":\"left\",\"align_mobile_extra\":\"center\",\"columns\":\"0\",\"columns_widescreen\":\"\",\"columns_tablet_extra\":\"\",\"columns_tablet\":\"\",\"columns_mobile_extra\":\"\",\"columns_mobile\":\"\",\"align_widescreen\":\"\",\"align_tablet_extra\":\"\",\"align_mobile\":\"\",\"icon_primary_color\":\"\",\"icon_secondary_color\":\"\",\"icon_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"icon_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"row_gap_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"row_gap_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"row_gap_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"row_gap_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"row_gap_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_border\":\"\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_color\":\"\",\"border_radius_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"hover_primary_color\":\"\",\"hover_secondary_color\":\"\",\"hover_border_color\":\"\",\"hover_animation\":\"\",\"_title\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"\",\"_element_width_widescreen\":\"\",\"_element_width_tablet_extra\":\"\",\"_element_width_tablet\":\"\",\"_element_width_mobile_extra\":\"\",\"_element_width_mobile\":\"\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_grid_column\":\"\",\"_grid_column_widescreen\":\"\",\"_grid_column_tablet_extra\":\"\",\"_grid_column_tablet\":\"\",\"_grid_column_mobile_extra\":\"\",\"_grid_column_mobile\":\"\",\"_grid_column_custom\":\"\",\"_grid_column_custom_widescreen\":\"\",\"_grid_column_custom_tablet_extra\":\"\",\"_grid_column_custom_tablet\":\"\",\"_grid_column_custom_mobile_extra\":\"\",\"_grid_column_custom_mobile\":\"\",\"_grid_row\":\"\",\"_grid_row_widescreen\":\"\",\"_grid_row_tablet_extra\":\"\",\"_grid_row_tablet\":\"\",\"_grid_row_mobile_extra\":\"\",\"_grid_row_mobile\":\"\",\"_grid_row_custom\":\"\",\"_grid_row_custom_widescreen\":\"\",\"_grid_row_custom_tablet_extra\":\"\",\"_grid_row_custom_tablet\":\"\",\"_grid_row_custom_mobile_extra\":\"\",\"_grid_row_custom_mobile\":\"\",\"_flex_align_self\":\"\",\"_flex_align_self_widescreen\":\"\",\"_flex_align_self_tablet_extra\":\"\",\"_flex_align_self_tablet\":\"\",\"_flex_align_self_mobile_extra\":\"\",\"_flex_align_self_mobile\":\"\",\"_flex_order\":\"\",\"_flex_order_widescreen\":\"\",\"_flex_order_tablet_extra\":\"\",\"_flex_order_tablet\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_mobile\":\"\",\"_flex_order_custom\":\"\",\"_flex_order_custom_widescreen\":\"\",\"_flex_order_custom_tablet_extra\":\"\",\"_flex_order_custom_tablet\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_order_custom_mobile\":\"\",\"_flex_size\":\"\",\"_flex_size_widescreen\":\"\",\"_flex_size_tablet_extra\":\"\",\"_flex_size_tablet\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_size_mobile\":\"\",\"_flex_grow\":1,\"_flex_grow_widescreen\":\"\",\"_flex_grow_tablet_extra\":\"\",\"_flex_grow_tablet\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_grow_mobile\":\"\",\"_flex_shrink\":1,\"_flex_shrink_widescreen\":\"\",\"_flex_shrink_tablet_extra\":\"\",\"_flex_shrink_tablet\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_flex_shrink_mobile\":\"\",\"_element_vertical_align\":\"\",\"_element_vertical_align_widescreen\":\"\",\"_element_vertical_align_tablet_extra\":\"\",\"_element_vertical_align_tablet\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_element_vertical_align_mobile\":\"\",\"_position\":\"\",\"_offset_orientation_h\":\"start\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_orientation_v\":\"start\",\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index\":\"\",\"_z_index_widescreen\":\"\",\"_z_index_tablet_extra\":\"\",\"_z_index_tablet\":\"\",\"_z_index_mobile_extra\":\"\",\"_z_index_mobile\":\"\",\"_element_id\":\"\",\"_css_classes\":\"\",\"e_display_conditions\":\"\",\"_element_cache\":\"\",\"pp_display_conditions_enable\":\"\",\"pp_display_conditions_output\":\"\",\"pp_display_conditions_relation\":\"all\",\"pp_wrapper_link_enable\":\"\",\"pp_wrapper_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_custom_cursor_enable\":\"\",\"pp_custom_cursor_target\":\"container\",\"pp_custom_cursor_css_selector\":\"\",\"pp_custom_cursor_type\":\"image\",\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text\":\"\",\"pp_custom_cursor_left_offset\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_top_offset\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_typography_typography\":\"\",\"pp_custom_cursor_text_typography_font_family\":\"\",\"pp_custom_cursor_text_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_weight\":\"\",\"pp_custom_cursor_text_typography_text_transform\":\"\",\"pp_custom_cursor_text_typography_font_style\":\"\",\"pp_custom_cursor_text_typography_text_decoration\":\"\",\"pp_custom_cursor_text_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_color\":\"\",\"pp_custom_cursor_text_bg_background\":\"\",\"pp_custom_cursor_text_bg_color\":\"\",\"pp_custom_cursor_text_bg_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_color_stop_widescreen\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_tablet_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_tablet\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_mobile_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_mobile\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b\":\"#f2295b\",\"pp_custom_cursor_text_bg_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pp_custom_cursor_text_bg_color_b_stop_widescreen\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_tablet\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_mobile\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_gradient_type\":\"linear\",\"pp_custom_cursor_text_bg_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"pp_custom_cursor_text_bg_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_tablet\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_mobile\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_position\":\"center center\",\"pp_custom_cursor_text_bg_gradient_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_gradient_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_gradient_position_tablet\":\"\",\"pp_custom_cursor_text_bg_gradient_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_gradient_position_mobile\":\"\",\"pp_custom_cursor_text_bg_position\":\"\",\"pp_custom_cursor_text_bg_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_position_tablet\":\"\",\"pp_custom_cursor_text_bg_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_position_mobile\":\"\",\"pp_custom_cursor_text_bg_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_attachment\":\"\",\"pp_custom_cursor_text_bg_repeat\":\"\",\"pp_custom_cursor_text_bg_repeat_widescreen\":\"\",\"pp_custom_cursor_text_bg_repeat_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_repeat_tablet\":\"\",\"pp_custom_cursor_text_bg_repeat_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_repeat_mobile\":\"\",\"pp_custom_cursor_text_bg_size\":\"\",\"pp_custom_cursor_text_bg_size_widescreen\":\"\",\"pp_custom_cursor_text_bg_size_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_size_tablet\":\"\",\"pp_custom_cursor_text_bg_size_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_size_mobile\":\"\",\"pp_custom_cursor_text_bg_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_video_link\":\"\",\"pp_custom_cursor_text_bg_video_start\":\"\",\"pp_custom_cursor_text_bg_video_end\":\"\",\"pp_custom_cursor_text_bg_play_once\":\"\",\"pp_custom_cursor_text_bg_play_on_mobile\":\"\",\"pp_custom_cursor_text_bg_privacy_mode\":\"\",\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"pp_custom_cursor_text_bg_slideshow_loop\":\"yes\",\"pp_custom_cursor_text_bg_slideshow_slide_duration\":5000,\"pp_custom_cursor_text_bg_slideshow_slide_transition\":\"fade\",\"pp_custom_cursor_text_bg_slideshow_transition_duration\":500,\"pp_custom_cursor_text_bg_slideshow_background_size\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_widescreen\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_tablet\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_mobile\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_tablet\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_mobile\":\"\",\"pp_custom_cursor_text_bg_slideshow_lazyload\":\"\",\"pp_custom_cursor_text_bg_slideshow_ken_burns\":\"\",\"pp_custom_cursor_text_bg_slideshow_ken_burns_zoom_direction\":\"in\",\"pp_custom_cursor_text_border_border\":\"\",\"pp_custom_cursor_text_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_color\":\"\",\"pp_custom_cursor_text_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_enable\":\"\",\"pp_elements_tooltip_target\":\"current\",\"pp_elements_tooltip_selector\":\"\",\"pp_elements_tooltip_trigger\":\"hover\",\"pp_elements_tooltip_position\":\"top\",\"pp_elements_tooltip_arrow\":\"yes\",\"pp_elements_tooltip_animation\":\"fade\",\"pp_elements_tooltip_distance\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_zindex\":99,\"pp_elements_tooltip_bg_color\":\"\",\"pp_elements_tooltip_color\":\"\",\"pp_elements_tooltip_typography_typography\":\"\",\"pp_elements_tooltip_typography_font_family\":\"\",\"pp_elements_tooltip_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_weight\":\"\",\"pp_elements_tooltip_typography_text_transform\":\"\",\"pp_elements_tooltip_typography_font_style\":\"\",\"pp_elements_tooltip_typography_text_decoration\":\"\",\"pp_elements_tooltip_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_box_shadow_box_shadow_type\":\"\",\"pp_elements_tooltip_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"pp_elements_tooltip_box_shadow_box_shadow_position\":\" \",\"pp_elements_tooltip_border_border\":\"\",\"pp_elements_tooltip_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_color\":\"\",\"pp_elements_tooltip_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"\",\"motion_fx_translateY_effect\":\"\",\"motion_fx_translateY_direction\":\"\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_translateX_effect\":\"\",\"motion_fx_translateX_direction\":\"\",\"motion_fx_translateX_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_translateX_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_opacity_effect\":\"\",\"motion_fx_opacity_direction\":\"out-in\",\"motion_fx_opacity_level\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_opacity_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_blur_effect\":\"\",\"motion_fx_blur_direction\":\"out-in\",\"motion_fx_blur_level\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"motion_fx_blur_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_rotateZ_effect\":\"\",\"motion_fx_rotateZ_direction\":\"\",\"motion_fx_rotateZ_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_rotateZ_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_scale_effect\":\"\",\"motion_fx_scale_direction\":\"out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_scale_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_transform_origin_x\":\"center\",\"motion_fx_transform_origin_y\":\"center\",\"motion_fx_devices\":[\"widescreen\",\"desktop\",\"tablet_extra\",\"tablet\",\"mobile_extra\",\"mobile\"],\"motion_fx_range\":\"\",\"motion_fx_motion_fx_mouse\":\"\",\"motion_fx_mouseTrack_effect\":\"\",\"motion_fx_mouseTrack_direction\":\"\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_tilt_effect\":\"\",\"motion_fx_tilt_direction\":\"\",\"motion_fx_tilt_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"handle_motion_fx_asset_loading\":\"\",\"sticky\":\"\",\"sticky_on\":[\"widescreen\",\"desktop\",\"tablet_extra\",\"tablet\",\"mobile_extra\",\"mobile\"],\"sticky_offset\":0,\"sticky_offset_widescreen\":\"\",\"sticky_offset_tablet_extra\":\"\",\"sticky_offset_tablet\":\"\",\"sticky_offset_mobile_extra\":\"\",\"sticky_offset_mobile\":\"\",\"sticky_effects_offset\":0,\"sticky_effects_offset_widescreen\":\"\",\"sticky_effects_offset_tablet_extra\":\"\",\"sticky_effects_offset_tablet\":\"\",\"sticky_effects_offset_mobile_extra\":\"\",\"sticky_effects_offset_mobile\":\"\",\"sticky_anchor_link_offset\":0,\"sticky_anchor_link_offset_widescreen\":\"\",\"sticky_anchor_link_offset_tablet_extra\":\"\",\"sticky_anchor_link_offset_tablet\":\"\",\"sticky_anchor_link_offset_mobile_extra\":\"\",\"sticky_anchor_link_offset_mobile\":\"\",\"sticky_parent\":\"\",\"_animation\":\"\",\"_animation_widescreen\":\"\",\"_animation_tablet_extra\":\"\",\"_animation_tablet\":\"\",\"_animation_mobile_extra\":\"\",\"_animation_mobile\":\"\",\"animation_duration\":\"\",\"_animation_delay\":\"\",\"_transform_rotate_popover\":\"\",\"_transform_rotateZ_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotate_3d\":\"\",\"_transform_rotateX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"\",\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_popover\":\"\",\"_transform_keep_proportions\":\"yes\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skew_popover\":\"\",\"_transform_skewX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_flipX_effect\":\"\",\"_transform_flipY_effect\":\"\",\"_transform_rotate_popover_hover\":\"\",\"_transform_rotateZ_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotate_3d_hover\":\"\",\"_transform_rotateX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover_hover\":\"\",\"_transform_translateX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_popover_hover\":\"\",\"_transform_keep_proportions_hover\":\"yes\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skew_popover_hover\":\"\",\"_transform_skewX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_flipX_effect_hover\":\"\",\"_transform_flipY_effect_hover\":\"\",\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point\":\"\",\"motion_fx_transform_x_anchor_point_widescreen\":\"\",\"motion_fx_transform_x_anchor_point_tablet_extra\":\"\",\"motion_fx_transform_x_anchor_point_tablet\":\"\",\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_x_anchor_point_mobile\":\"\",\"motion_fx_transform_y_anchor_point\":\"\",\"motion_fx_transform_y_anchor_point_widescreen\":\"\",\"motion_fx_transform_y_anchor_point_tablet_extra\":\"\",\"motion_fx_transform_y_anchor_point_tablet\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile\":\"\",\"_background_background\":\"\",\"_background_color\":\"\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_stop_widescreen\":{\"unit\":\"%\"},\"_background_color_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_color_stop_tablet\":{\"unit\":\"%\"},\"_background_color_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_color_stop_mobile\":{\"unit\":\"%\"},\"_background_color_b\":\"#f2295b\",\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_color_b_stop_widescreen\":{\"unit\":\"%\"},\"_background_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_color_b_stop_tablet\":{\"unit\":\"%\"},\"_background_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_color_b_stop_mobile\":{\"unit\":\"%\"},\"_background_gradient_type\":\"linear\",\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"_background_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\"},\"_background_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\"},\"_background_gradient_position\":\"center center\",\"_background_gradient_position_widescreen\":\"\",\"_background_gradient_position_tablet_extra\":\"\",\"_background_gradient_position_tablet\":\"\",\"_background_gradient_position_mobile_extra\":\"\",\"_background_gradient_position_mobile\":\"\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position\":\"\",\"_background_position_widescreen\":\"\",\"_background_position_tablet_extra\":\"\",\"_background_position_tablet\":\"\",\"_background_position_mobile_extra\":\"\",\"_background_position_mobile\":\"\",\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_attachment\":\"\",\"_background_repeat\":\"\",\"_background_repeat_widescreen\":\"\",\"_background_repeat_tablet_extra\":\"\",\"_background_repeat_tablet\":\"\",\"_background_repeat_mobile_extra\":\"\",\"_background_repeat_mobile\":\"\",\"_background_size\":\"\",\"_background_size_widescreen\":\"\",\"_background_size_tablet_extra\":\"\",\"_background_size_tablet\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_size_mobile\":\"\",\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_video_link\":\"\",\"_background_video_start\":\"\",\"_background_video_end\":\"\",\"_background_play_once\":\"\",\"_background_play_on_mobile\":\"\",\"_background_privacy_mode\":\"\",\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_slideshow_loop\":\"yes\",\"_background_slideshow_slide_duration\":5000,\"_background_slideshow_slide_transition\":\"fade\",\"_background_slideshow_transition_duration\":500,\"_background_slideshow_background_size\":\"\",\"_background_slideshow_background_size_widescreen\":\"\",\"_background_slideshow_background_size_tablet_extra\":\"\",\"_background_slideshow_background_size_tablet\":\"\",\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_size_mobile\":\"\",\"_background_slideshow_background_position\":\"\",\"_background_slideshow_background_position_widescreen\":\"\",\"_background_slideshow_background_position_tablet_extra\":\"\",\"_background_slideshow_background_position_tablet\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile\":\"\",\"_background_slideshow_lazyload\":\"\",\"_background_slideshow_ken_burns\":\"\",\"_background_slideshow_ken_burns_zoom_direction\":\"in\",\"_background_hover_background\":\"\",\"_background_hover_color\":\"\",\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_stop_widescreen\":{\"unit\":\"%\"},\"_background_hover_color_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\"},\"_background_hover_color_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\"},\"_background_hover_color_b\":\"#f2295b\",\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_color_b_stop_widescreen\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\"},\"_background_hover_gradient_type\":\"linear\",\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\"},\"_background_hover_gradient_position\":\"center center\",\"_background_hover_gradient_position_widescreen\":\"\",\"_background_hover_gradient_position_tablet_extra\":\"\",\"_background_hover_gradient_position_tablet\":\"\",\"_background_hover_gradient_position_mobile_extra\":\"\",\"_background_hover_gradient_position_mobile\":\"\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position\":\"\",\"_background_hover_position_widescreen\":\"\",\"_background_hover_position_tablet_extra\":\"\",\"_background_hover_position_tablet\":\"\",\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_position_mobile\":\"\",\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_attachment\":\"\",\"_background_hover_repeat\":\"\",\"_background_hover_repeat_widescreen\":\"\",\"_background_hover_repeat_tablet_extra\":\"\",\"_background_hover_repeat_tablet\":\"\",\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_repeat_mobile\":\"\",\"_background_hover_size\":\"\",\"_background_hover_size_widescreen\":\"\",\"_background_hover_size_tablet_extra\":\"\",\"_background_hover_size_tablet\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_size_mobile\":\"\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_video_link\":\"\",\"_background_hover_video_start\":\"\",\"_background_hover_video_end\":\"\",\"_background_hover_play_once\":\"\",\"_background_hover_play_on_mobile\":\"\",\"_background_hover_privacy_mode\":\"\",\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_background_hover_slideshow_loop\":\"yes\",\"_background_hover_slideshow_slide_duration\":5000,\"_background_hover_slideshow_slide_transition\":\"fade\",\"_background_hover_slideshow_transition_duration\":500,\"_background_hover_slideshow_background_size\":\"\",\"_background_hover_slideshow_background_size_widescreen\":\"\",\"_background_hover_slideshow_background_size_tablet_extra\":\"\",\"_background_hover_slideshow_background_size_tablet\":\"\",\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_size_mobile\":\"\",\"_background_hover_slideshow_background_position\":\"\",\"_background_hover_slideshow_background_position_widescreen\":\"\",\"_background_hover_slideshow_background_position_tablet_extra\":\"\",\"_background_hover_slideshow_background_position_tablet\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile\":\"\",\"_background_hover_slideshow_lazyload\":\"\",\"_background_hover_slideshow_ken_burns\":\"\",\"_background_hover_slideshow_ken_burns_zoom_direction\":\"in\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"\",\"_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_color\":\"\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_box_shadow_position\":\" \",\"_border_hover_border\":\"\",\"_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_color\":\"\",\"_border_radius_hover\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_box_shadow_hover_box_shadow_type\":\"\",\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_hover_box_shadow_position\":\" \",\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_switch\":\"\",\"_mask_shape\":\"circle\",\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_size\":\"contain\",\"_mask_size_widescreen\":\"\",\"_mask_size_tablet_extra\":\"\",\"_mask_size_tablet\":\"\",\"_mask_size_mobile_extra\":\"\",\"_mask_size_mobile\":\"\",\"_mask_size_scale\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_mask_size_scale_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position\":\"center center\",\"_mask_position_widescreen\":\"\",\"_mask_position_tablet_extra\":\"\",\"_mask_position_tablet\":\"\",\"_mask_position_mobile_extra\":\"\",\"_mask_position_mobile\":\"\",\"_mask_position_x\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_mask_position_x_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_mask_position_y_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat\":\"no-repeat\",\"_mask_repeat_widescreen\":\"\",\"_mask_repeat_tablet_extra\":\"\",\"_mask_repeat_tablet\":\"\",\"_mask_repeat_mobile_extra\":\"\",\"_mask_repeat_mobile\":\"\",\"hide_widescreen\":\"\",\"hide_desktop\":\"\",\"hide_tablet_extra\":\"\",\"hide_tablet\":\"\",\"hide_mobile_extra\":\"\",\"hide_mobile\":\"\",\"_attributes\":\"\",\"custom_css\":\"\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7522, 785, '_wp_page_template', 'elementor_header_footer'),
(7524, 785, '_elementor_edit_mode', 'builder'),
(7525, 785, '_elementor_template_type', 'wp-page'),
(7526, 785, '_elementor_version', '3.34.2'),
(7527, 785, '_elementor_pro_version', '3.34.2'),
(7528, 785, '_elementor_data', '[{\"id\":\"013c01d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"fe90551\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column-reverse\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"84d3850\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#F0F5FA\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"ec74b0c\",\"elType\":\"widget\",\"settings\":{\"title\":\"F\\u00e5 et vejledende prisoverslag\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"aaa964c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4707f87\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"Prisberegner\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Navn\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"select\",\"field_label\":\"Arbejdstype\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nUdskiftning og montering af d\\u00f8re og vinduer\\nSpecialtilpassede l\\u00f8sninger\\nTAGD\\u00c6KNING\"},{\"field_type\":\"select\",\"field_label\":\"St\\u00f8rrelse \\/ m\\u00e6ngde\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Lille\\nMellem \\nStor\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"field_type\":\"select\",\"field_label\":\"Valgfrit kompleksitetsniveau\",\"required\":\"true\",\"custom_id\":\"field_cacceaa\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Lav \\nMellem \\nH\\u00f8j\",\"_id\":\"cacceaa\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Beskeder\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"},\"button_background_color\":\"#507eff\",\"button_background_hover_color\":\"#000a66\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Roboto\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"field_typography_font_weight\":\"400\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"label_color\":\"#1e293b\",\"_background_color\":\"#F0F5FA\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(7496, 782, '_elementor_page_settings', 'a:0:{}'),
(7499, 783, '_wp_page_template', 'elementor_header_footer'),
(7501, 783, '_elementor_edit_mode', 'builder'),
(7502, 783, '_elementor_template_type', 'wp-page'),
(7503, 783, '_elementor_version', '3.34.2'),
(7504, 783, '_elementor_pro_version', '3.34.2'),
(7505, 783, '_elementor_data', '[{\"id\":\"013c01d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"fe90551\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column-reverse\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"84d3850\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#F0F5FA\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"ec74b0c\",\"elType\":\"widget\",\"settings\":{\"title\":\"F\\u00e5 et vejledende prisoverslag\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"aaa964c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4707f87\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"Prisberegner\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Navn\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"select\",\"field_label\":\"Arbejdstype\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nUdskiftning og montering af d\\u00f8re og vinduer\\nSpecialtilpassede l\\u00f8sninger\\nTAGD\\u00c6KNING\"},{\"field_type\":\"select\",\"field_label\":\"St\\u00f8rrelse \\/ m\\u00e6ngde\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Lille\\nMellem \\nStor\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"field_type\":\"select\",\"field_label\":\"Valgfrit kompleksitetsniveau\",\"required\":\"true\",\"custom_id\":\"field_cacceaa\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Lav \\nMellem \\nH\\u00f8j\",\"_id\":\"cacceaa\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Beskeder\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"},\"button_background_color\":\"#507eff\",\"button_background_hover_color\":\"#000a66\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Roboto\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"field_typography_font_weight\":\"400\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"label_color\":\"#1e293b\",\"_background_color\":\"#F0F5FA\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(4644, 515, '_elementor_edit_mode', 'builder'),
(4645, 515, '_elementor_template_type', 'wp-page'),
(4646, 515, '_elementor_version', '3.34.2'),
(4647, 515, '_elementor_pro_version', '3.34.2'),
(4648, 515, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4649, 515, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\",\"id\":57,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle ANMELDELSER\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]}},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"HVORFOR V\\u00c6LGE CP NORDIC ApS?\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79206f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>N\\u00e5r du v\\u00e6lger CP NORDIC ApS, f\\u00e5r du:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"44023b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/teamwork_4546121.svg\",\"id\":472},\"library\":\"svg\"},\"title_text\":\"et ungt og engageret team\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/effective_1401921.svg\",\"id\":474},\"library\":\"svg\"},\"title_text\":\"fokus p\\u00e5 kvalitet og detaljer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/communication_18765280.svg\",\"id\":479},\"library\":\"svg\"},\"title_text\":\"\\u00e6rlig<br> r\\u00e5dgivning\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/brainstorming_11663441.svg\",\"id\":480},\"library\":\"svg\"},\"title_text\":\"gennemt\\u00e6nkte l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c0f2190\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"327bd23\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/like_3941426.svg\",\"id\":481},\"library\":\"svg\"},\"title_text\":\"arbejde udf\\u00f8rt med ansvar\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2bc9769\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi lover ikke mere, end vi kan holde \\u2013 men vi holder det, vi lover.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2a1d8fc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"986dd0f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9231a79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"31fa3c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f1b19ca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7391996\"}]},\"elements\":[{\"id\":\"547d40f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7d5adb7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1522ba7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e13c951\"}],\"pp_display_conditions\":[{\"_id\":\"1e39e5d\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"4bda72e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7d5adb7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1522ba7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e13c951\"}],\"pp_display_conditions\":[{\"_id\":\"1e39e5d\"}]},\"elements\":[{\"id\":\"07d0be8\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"8b3e3db\"},{\"custom_id\":\"field_2a35699\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"2a35699\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"f9dd88c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6323910b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor8\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/wood-background-1-e1738912619419.jpg\",\"id\":510,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"640d38eb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"75253fe5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"14202595\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Name\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"tel\",\"field_label\":\"Phone\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\"},{\"field_type\":\"select\",\"field_label\":\"Services Name\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Messages\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor4\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_background_color\":\"#494949CC\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"mark_required\":\"yes\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4651, 515, '_elementor_page_settings', 'a:0:{}'),
(7361, 769, '_wp_page_template', 'elementor_header_footer'),
(7363, 769, '_elementor_edit_mode', 'builder'),
(7364, 769, '_elementor_template_type', 'wp-page'),
(7365, 769, '_elementor_version', '3.34.2'),
(7366, 769, '_elementor_pro_version', '3.34.2'),
(7367, 769, '_elementor_data', '[{\"id\":\"013c01d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"fe90551\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column-reverse\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"84d3850\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#F0F5FA\"},\"elements\":[{\"id\":\"4707f87\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Navn\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"select\",\"field_label\":\"Arbejdstype\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nUdskiftning og montering af d\\u00f8re og vinduer\\nSpecialtilpassede l\\u00f8sninger\\nTAGD\\u00c6KNING\"},{\"field_type\":\"select\",\"field_label\":\"Tjenesters navn\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Beskeder\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"},\"button_background_color\":\"#507eff\",\"button_background_hover_color\":\"#000a66\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Roboto\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"field_typography_font_weight\":\"400\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"label_color\":\"#1e293b\",\"_background_color\":\"#F0F5FA\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(7321, 765, '_wp_page_template', 'elementor_header_footer'),
(7323, 765, '_elementor_edit_mode', 'builder'),
(7324, 765, '_elementor_template_type', 'wp-page'),
(7325, 765, '_elementor_version', '3.34.2'),
(7326, 765, '_elementor_pro_version', '3.34.2');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7327, 765, '_elementor_data', '[{\"id\":\"013c01d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"fe90551\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column-reverse\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"84d3850\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4707f87\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Navn\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"field_type\":\"text\",\"placeholder\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"attachment_type\":\"link\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_widescreen\":\"\",\"width_tablet_extra\":\"\",\"width_tablet\":\"\",\"width_mobile_extra\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"attachment_type\":\"link\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_widescreen\":\"\",\"width_tablet_extra\":\"\",\"width_tablet\":\"\",\"width_mobile_extra\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"},{\"field_type\":\"tel\",\"field_label\":\"Telefon\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\",\"placeholder\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"attachment_type\":\"link\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_widescreen\":\"\",\"width_tablet_extra\":\"\",\"width_tablet\":\"\",\"width_mobile_extra\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"},{\"field_type\":\"select\",\"field_label\":\"Tjenesters navn\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\",\"placeholder\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"attachment_type\":\"link\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_widescreen\":\"\",\"width_tablet_extra\":\"\",\"width_tablet\":\"\",\"width_mobile_extra\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Beskeder\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"\",\"required\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"attachment_type\":\"link\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_widescreen\":\"\",\"width_tablet_extra\":\"\",\"width_tablet\":\"\",\"width_mobile_extra\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-02-11 to 2026-02-17\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Roboto\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"field_typography_font_weight\":\"400\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"show_labels\":\"true\",\"mark_required\":\"\",\"label_position\":\"above\",\"button_width\":\"100\",\"button_width_widescreen\":\"\",\"button_width_tablet_extra\":\"\",\"button_width_tablet\":\"\",\"button_width_mobile_extra\":\"\",\"button_width_mobile\":\"\",\"selected_button_icon\":{\"value\":\"\",\"library\":\"\"},\"button_icon_align\":\"row\",\"button_icon_indent\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_css_id\":\"\",\"submit_actions\":[\"email\",\"save-to-database\"],\"submissions_metadata\":[\"remote_ip\",\"user_agent\"],\"email_reply_to\":\"\",\"email_to_cc\":\"\",\"email_to_bcc\":\"\",\"email_content_type\":\"html\",\"email_to_cc_2\":\"\",\"email_to_bcc_2\":\"\",\"form_metadata_2\":[],\"email_content_type_2\":\"html\",\"redirect_to\":\"\",\"activecampaign_api_credentials_source\":\"default\",\"activecampaign_api_key\":\"\",\"activecampaign_api_url\":\"\",\"activecampaign_list\":\"\",\"activecampaign_tags\":\"\",\"convertkit_api_key_source\":\"default\",\"convertkit_custom_api_key\":\"\",\"convertkit_form\":\"\",\"convertkit_tags\":\"\",\"discord_webhook\":\"\",\"discord_username\":\"\",\"discord_avatar_url\":\"\",\"discord_title\":\"\",\"discord_content\":\"\",\"discord_form_data\":\"yes\",\"discord_ts\":\"yes\",\"discord_webhook_color\":\"#D30C5C\",\"drip_api_token_source\":\"default\",\"drip_custom_api_token\":\"\",\"drip_account\":\"\",\"drip_custom_fields\":\"no\",\"tags\":\"\",\"getresponse_api_key_source\":\"default\",\"getresponse_custom_api_key\":\"\",\"getresponse_list\":\"\",\"getresponse_dayofcycle\":\"\",\"mailchimp_api_key_source\":\"default\",\"mailchimp_api_key\":\"\",\"mailchimp_list\":\"\",\"mailchimp_groups\":\"\",\"mailchimp_tags\":\"\",\"mailchimp_double_opt_in\":\"\",\"mailerlite_api_key_source\":\"default\",\"mailerlite_custom_api_key\":\"\",\"mailerlite_group\":\"\",\"allow_resubscribe\":\"\",\"slack_webhook\":\"\",\"slack_channel\":\"\",\"slack_username\":\"\",\"slack_pretext\":\"\",\"slack_title\":\"\",\"slack_text\":\"\",\"slack_add_fields\":\"yes\",\"slack_add_ts\":\"yes\",\"slack_webhook_color\":\"#D30C5C\",\"webhooks\":\"\",\"webhooks_advanced_data\":\"no\",\"popup_action\":\"\",\"popup_action_popup_id\":\"\",\"popup_action_do_not_show_again\":\"\",\"step_type\":\"number_text\",\"step_icon_shape\":\"circle\",\"form_id\":\"\",\"form_validation\":\"\",\"custom_messages\":\"\",\"label_color\":\"\",\"mark_required_color\":\"\",\"label_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_text_transform\":\"\",\"label_typography_font_style\":\"\",\"label_typography_text_decoration\":\"\",\"label_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"label_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"label_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"label_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"html_color\":\"\",\"html_typography_typography\":\"\",\"html_typography_font_family\":\"\",\"html_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"html_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"html_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"html_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"html_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"html_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"html_typography_font_weight\":\"\",\"html_typography_text_transform\":\"\",\"html_typography_font_style\":\"\",\"html_typography_text_decoration\":\"\",\"html_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"html_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"html_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"html_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"html_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"html_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"html_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"html_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"html_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"html_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"html_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"html_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"html_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"html_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"html_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"html_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"html_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"html_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"field_text_color\":\"\",\"field_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"field_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"field_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"field_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"field_typography_text_transform\":\"\",\"field_typography_font_style\":\"\",\"field_typography_text_decoration\":\"\",\"field_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"field_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"field_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"field_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"field_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"field_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"field_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"field_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"field_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"field_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"field_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"field_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"field_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"field_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"field_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"field_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"field_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"field_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"field_background_color\":\"#ffffff\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_align\":\"stretch\",\"button_align_widescreen\":\"\",\"button_align_tablet_extra\":\"\",\"button_align_tablet\":\"\",\"button_align_mobile_extra\":\"\",\"button_align_mobile\":\"\",\"button_content_align\":\"\",\"button_content_align_widescreen\":\"\",\"button_content_align_tablet_extra\":\"\",\"button_content_align_tablet\":\"\",\"button_content_align_mobile_extra\":\"\",\"button_content_align_mobile\":\"\",\"button_typography_typography\":\"\",\"button_typography_font_family\":\"\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_font_weight\":\"\",\"button_typography_text_transform\":\"\",\"button_typography_font_style\":\"\",\"button_typography_text_decoration\":\"\",\"button_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"button_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"button_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"button_border_border\":\"\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"button_text_color\":\"#ffffff\",\"button_border_color\":\"\",\"previous_button_background_color\":\"\",\"previous_button_text_color\":\"#ffffff\",\"previous_button_border_color\":\"\",\"button_hover_color\":\"#ffffff\",\"button_hover_border_color\":\"\",\"previous_button_background_color_hover\":\"\",\"previous_button_text_color_hover\":\"#ffffff\",\"previous_button_border_color_hover\":\"\",\"hover_transition_duration\":{\"unit\":\"ms\",\"size\":\"\",\"sizes\":[]},\"button_hover_animation\":\"\",\"message_typography_typography\":\"\",\"message_typography_font_family\":\"\",\"message_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"message_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"message_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"message_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"message_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"message_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"message_typography_font_weight\":\"\",\"message_typography_text_transform\":\"\",\"message_typography_font_style\":\"\",\"message_typography_text_decoration\":\"\",\"message_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"message_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"message_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"message_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"message_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"message_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"message_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"message_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"message_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"message_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"message_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"message_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"message_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"message_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"message_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"message_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"message_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"message_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"success_message_color\":\"\",\"error_message_color\":\"\",\"inline_message_color\":\"\",\"steps_typography_typography\":\"\",\"steps_typography_font_family\":\"\",\"steps_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"steps_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"steps_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"steps_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"steps_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"steps_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"steps_typography_font_weight\":\"\",\"steps_typography_text_transform\":\"\",\"steps_typography_font_style\":\"\",\"steps_typography_text_decoration\":\"\",\"steps_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"steps_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"steps_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"steps_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"steps_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"steps_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"steps_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"steps_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"steps_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"steps_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"steps_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"steps_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"steps_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"steps_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"steps_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"steps_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"steps_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"steps_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"steps_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"steps_gap_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"steps_gap_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"steps_gap_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"steps_gap_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"steps_gap_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"steps_icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"steps_icon_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"steps_icon_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"steps_icon_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"steps_icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"steps_icon_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"steps_padding\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"steps_padding_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"steps_padding_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"steps_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"steps_padding_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"steps_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"step_inactive_primary_color\":\"\",\"step_inactive_secondary_color\":\"#ffffff\",\"step_active_primary_color\":\"\",\"step_active_secondary_color\":\"#ffffff\",\"step_completed_primary_color\":\"\",\"step_completed_secondary_color\":\"#ffffff\",\"step_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"step_divider_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"step_divider_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"step_divider_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"step_divider_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"step_divider_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"step_divider_gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"step_divider_gap_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"step_divider_gap_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"step_divider_gap_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"step_divider_gap_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"step_divider_gap_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"step_progress_bar_color\":\"\",\"step_progress_bar_background_color\":\"\",\"step_progress_bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"step_progress_bar_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"step_progress_bar_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"step_progress_bar_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"step_progress_bar_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"step_progress_bar_height_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"step_progress_bar_border_radius\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"step_progress_bar_percentage__typography_typography\":\"\",\"step_progress_bar_percentage__typography_font_family\":\"\",\"step_progress_bar_percentage__typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"step_progress_bar_percentage__typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"step_progress_bar_percentage__typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"step_progress_bar_percentage__typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"step_progress_bar_percentage__typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"step_progress_bar_percentage__typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"step_progress_bar_percentage__typography_font_weight\":\"\",\"step_progress_bar_percentage__typography_text_transform\":\"\",\"step_progress_bar_percentage__typography_font_style\":\"\",\"step_progress_bar_percentage__typography_text_decoration\":\"\",\"step_progress_bar_percentage__typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"step_progress_bar_percentage__typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"step_progress_bar_percentage__typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"step_progress_bar_percentage__typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"step_progress_bar_percentage__typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"step_progress_bar_percentage__typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"step_progress_bar_percentage__typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"step_progress_bar_percentage__typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"step_progress_bar_percentage__typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"step_progress_bar_percentage__typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"step_progress_bar_percentage__typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"step_progress_bar_percentage__typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"step_progress_bar_percentage__typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"step_progress_bar_percentage__typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"step_progress_bar_percentage__typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"step_progress_bar_percentage__typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"step_progress_bar_percentage__typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"step_progress_bar_percentage__typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"step_progress_bar_percentage_color\":\"\",\"_title\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"\",\"_element_width_widescreen\":\"\",\"_element_width_tablet_extra\":\"\",\"_element_width_tablet\":\"\",\"_element_width_mobile_extra\":\"\",\"_element_width_mobile\":\"\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_grid_column\":\"\",\"_grid_column_widescreen\":\"\",\"_grid_column_tablet_extra\":\"\",\"_grid_column_tablet\":\"\",\"_grid_column_mobile_extra\":\"\",\"_grid_column_mobile\":\"\",\"_grid_column_custom\":\"\",\"_grid_column_custom_widescreen\":\"\",\"_grid_column_custom_tablet_extra\":\"\",\"_grid_column_custom_tablet\":\"\",\"_grid_column_custom_mobile_extra\":\"\",\"_grid_column_custom_mobile\":\"\",\"_grid_row\":\"\",\"_grid_row_widescreen\":\"\",\"_grid_row_tablet_extra\":\"\",\"_grid_row_tablet\":\"\",\"_grid_row_mobile_extra\":\"\",\"_grid_row_mobile\":\"\",\"_grid_row_custom\":\"\",\"_grid_row_custom_widescreen\":\"\",\"_grid_row_custom_tablet_extra\":\"\",\"_grid_row_custom_tablet\":\"\",\"_grid_row_custom_mobile_extra\":\"\",\"_grid_row_custom_mobile\":\"\",\"_flex_align_self\":\"\",\"_flex_align_self_widescreen\":\"\",\"_flex_align_self_tablet_extra\":\"\",\"_flex_align_self_tablet\":\"\",\"_flex_align_self_mobile_extra\":\"\",\"_flex_align_self_mobile\":\"\",\"_flex_order\":\"\",\"_flex_order_widescreen\":\"\",\"_flex_order_tablet_extra\":\"\",\"_flex_order_tablet\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_mobile\":\"\",\"_flex_order_custom\":\"\",\"_flex_order_custom_widescreen\":\"\",\"_flex_order_custom_tablet_extra\":\"\",\"_flex_order_custom_tablet\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_order_custom_mobile\":\"\",\"_flex_size\":\"\",\"_flex_size_widescreen\":\"\",\"_flex_size_tablet_extra\":\"\",\"_flex_size_tablet\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_size_mobile\":\"\",\"_flex_grow\":1,\"_flex_grow_widescreen\":\"\",\"_flex_grow_tablet_extra\":\"\",\"_flex_grow_tablet\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_grow_mobile\":\"\",\"_flex_shrink\":1,\"_flex_shrink_widescreen\":\"\",\"_flex_shrink_tablet_extra\":\"\",\"_flex_shrink_tablet\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_flex_shrink_mobile\":\"\",\"_element_vertical_align\":\"\",\"_element_vertical_align_widescreen\":\"\",\"_element_vertical_align_tablet_extra\":\"\",\"_element_vertical_align_tablet\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_element_vertical_align_mobile\":\"\",\"_position\":\"\",\"_offset_orientation_h\":\"start\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_orientation_v\":\"start\",\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index\":\"\",\"_z_index_widescreen\":\"\",\"_z_index_tablet_extra\":\"\",\"_z_index_tablet\":\"\",\"_z_index_mobile_extra\":\"\",\"_z_index_mobile\":\"\",\"_element_id\":\"\",\"_css_classes\":\"\",\"e_display_conditions\":\"\",\"_element_cache\":\"\",\"pp_display_conditions_enable\":\"\",\"pp_display_conditions_output\":\"\",\"pp_display_conditions_relation\":\"all\",\"pp_wrapper_link_enable\":\"\",\"pp_wrapper_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_custom_cursor_enable\":\"\",\"pp_custom_cursor_target\":\"container\",\"pp_custom_cursor_css_selector\":\"\",\"pp_custom_cursor_type\":\"image\",\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text\":\"\",\"pp_custom_cursor_left_offset\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_top_offset\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_typography_typography\":\"\",\"pp_custom_cursor_text_typography_font_family\":\"\",\"pp_custom_cursor_text_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_weight\":\"\",\"pp_custom_cursor_text_typography_text_transform\":\"\",\"pp_custom_cursor_text_typography_font_style\":\"\",\"pp_custom_cursor_text_typography_text_decoration\":\"\",\"pp_custom_cursor_text_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_color\":\"\",\"pp_custom_cursor_text_bg_background\":\"\",\"pp_custom_cursor_text_bg_color\":\"\",\"pp_custom_cursor_text_bg_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_color_stop_widescreen\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_tablet_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_tablet\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_mobile_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_mobile\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b\":\"#f2295b\",\"pp_custom_cursor_text_bg_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pp_custom_cursor_text_bg_color_b_stop_widescreen\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_tablet\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_mobile\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_gradient_type\":\"linear\",\"pp_custom_cursor_text_bg_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"pp_custom_cursor_text_bg_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_tablet\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_mobile\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_position\":\"center center\",\"pp_custom_cursor_text_bg_gradient_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_gradient_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_gradient_position_tablet\":\"\",\"pp_custom_cursor_text_bg_gradient_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_gradient_position_mobile\":\"\",\"pp_custom_cursor_text_bg_position\":\"\",\"pp_custom_cursor_text_bg_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_position_tablet\":\"\",\"pp_custom_cursor_text_bg_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_position_mobile\":\"\",\"pp_custom_cursor_text_bg_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_attachment\":\"\",\"pp_custom_cursor_text_bg_repeat\":\"\",\"pp_custom_cursor_text_bg_repeat_widescreen\":\"\",\"pp_custom_cursor_text_bg_repeat_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_repeat_tablet\":\"\",\"pp_custom_cursor_text_bg_repeat_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_repeat_mobile\":\"\",\"pp_custom_cursor_text_bg_size\":\"\",\"pp_custom_cursor_text_bg_size_widescreen\":\"\",\"pp_custom_cursor_text_bg_size_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_size_tablet\":\"\",\"pp_custom_cursor_text_bg_size_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_size_mobile\":\"\",\"pp_custom_cursor_text_bg_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_video_link\":\"\",\"pp_custom_cursor_text_bg_video_start\":\"\",\"pp_custom_cursor_text_bg_video_end\":\"\",\"pp_custom_cursor_text_bg_play_once\":\"\",\"pp_custom_cursor_text_bg_play_on_mobile\":\"\",\"pp_custom_cursor_text_bg_privacy_mode\":\"\",\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"pp_custom_cursor_text_bg_slideshow_loop\":\"yes\",\"pp_custom_cursor_text_bg_slideshow_slide_duration\":5000,\"pp_custom_cursor_text_bg_slideshow_slide_transition\":\"fade\",\"pp_custom_cursor_text_bg_slideshow_transition_duration\":500,\"pp_custom_cursor_text_bg_slideshow_background_size\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_widescreen\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_tablet\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_mobile\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_tablet\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_mobile\":\"\",\"pp_custom_cursor_text_bg_slideshow_lazyload\":\"\",\"pp_custom_cursor_text_bg_slideshow_ken_burns\":\"\",\"pp_custom_cursor_text_bg_slideshow_ken_burns_zoom_direction\":\"in\",\"pp_custom_cursor_text_border_border\":\"\",\"pp_custom_cursor_text_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_color\":\"\",\"pp_custom_cursor_text_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_enable\":\"\",\"pp_elements_tooltip_target\":\"current\",\"pp_elements_tooltip_selector\":\"\",\"pp_elements_tooltip_trigger\":\"hover\",\"pp_elements_tooltip_position\":\"top\",\"pp_elements_tooltip_arrow\":\"yes\",\"pp_elements_tooltip_animation\":\"fade\",\"pp_elements_tooltip_distance\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_zindex\":99,\"pp_elements_tooltip_bg_color\":\"\",\"pp_elements_tooltip_color\":\"\",\"pp_elements_tooltip_typography_typography\":\"\",\"pp_elements_tooltip_typography_font_family\":\"\",\"pp_elements_tooltip_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_weight\":\"\",\"pp_elements_tooltip_typography_text_transform\":\"\",\"pp_elements_tooltip_typography_font_style\":\"\",\"pp_elements_tooltip_typography_text_decoration\":\"\",\"pp_elements_tooltip_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_box_shadow_box_shadow_type\":\"\",\"pp_elements_tooltip_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"pp_elements_tooltip_box_shadow_box_shadow_position\":\" \",\"pp_elements_tooltip_border_border\":\"\",\"pp_elements_tooltip_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_color\":\"\",\"pp_elements_tooltip_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"\",\"motion_fx_translateY_effect\":\"\",\"motion_fx_translateY_direction\":\"\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_translateX_effect\":\"\",\"motion_fx_translateX_direction\":\"\",\"motion_fx_translateX_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_translateX_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_opacity_effect\":\"\",\"motion_fx_opacity_direction\":\"out-in\",\"motion_fx_opacity_level\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_opacity_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_blur_effect\":\"\",\"motion_fx_blur_direction\":\"out-in\",\"motion_fx_blur_level\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"motion_fx_blur_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_rotateZ_effect\":\"\",\"motion_fx_rotateZ_direction\":\"\",\"motion_fx_rotateZ_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_rotateZ_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_scale_effect\":\"\",\"motion_fx_scale_direction\":\"out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_scale_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_transform_origin_x\":\"center\",\"motion_fx_transform_origin_y\":\"center\",\"motion_fx_devices\":[\"widescreen\",\"desktop\",\"tablet_extra\",\"tablet\",\"mobile_extra\",\"mobile\"],\"motion_fx_range\":\"\",\"motion_fx_motion_fx_mouse\":\"\",\"motion_fx_mouseTrack_effect\":\"\",\"motion_fx_mouseTrack_direction\":\"\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_tilt_effect\":\"\",\"motion_fx_tilt_direction\":\"\",\"motion_fx_tilt_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"handle_motion_fx_asset_loading\":\"\",\"sticky\":\"\",\"sticky_on\":[\"widescreen\",\"desktop\",\"tablet_extra\",\"tablet\",\"mobile_extra\",\"mobile\"],\"sticky_offset\":0,\"sticky_offset_widescreen\":\"\",\"sticky_offset_tablet_extra\":\"\",\"sticky_offset_tablet\":\"\",\"sticky_offset_mobile_extra\":\"\",\"sticky_offset_mobile\":\"\",\"sticky_effects_offset\":0,\"sticky_effects_offset_widescreen\":\"\",\"sticky_effects_offset_tablet_extra\":\"\",\"sticky_effects_offset_tablet\":\"\",\"sticky_effects_offset_mobile_extra\":\"\",\"sticky_effects_offset_mobile\":\"\",\"sticky_anchor_link_offset\":0,\"sticky_anchor_link_offset_widescreen\":\"\",\"sticky_anchor_link_offset_tablet_extra\":\"\",\"sticky_anchor_link_offset_tablet\":\"\",\"sticky_anchor_link_offset_mobile_extra\":\"\",\"sticky_anchor_link_offset_mobile\":\"\",\"sticky_parent\":\"\",\"_animation\":\"\",\"_animation_widescreen\":\"\",\"_animation_tablet_extra\":\"\",\"_animation_tablet\":\"\",\"_animation_mobile_extra\":\"\",\"_animation_mobile\":\"\",\"animation_duration\":\"\",\"_animation_delay\":\"\",\"_transform_rotate_popover\":\"\",\"_transform_rotateZ_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotate_3d\":\"\",\"_transform_rotateX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"\",\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_popover\":\"\",\"_transform_keep_proportions\":\"yes\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skew_popover\":\"\",\"_transform_skewX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_flipX_effect\":\"\",\"_transform_flipY_effect\":\"\",\"_transform_rotate_popover_hover\":\"\",\"_transform_rotateZ_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotate_3d_hover\":\"\",\"_transform_rotateX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover_hover\":\"\",\"_transform_translateX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_popover_hover\":\"\",\"_transform_keep_proportions_hover\":\"yes\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skew_popover_hover\":\"\",\"_transform_skewX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_flipX_effect_hover\":\"\",\"_transform_flipY_effect_hover\":\"\",\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point\":\"\",\"motion_fx_transform_x_anchor_point_widescreen\":\"\",\"motion_fx_transform_x_anchor_point_tablet_extra\":\"\",\"motion_fx_transform_x_anchor_point_tablet\":\"\",\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_x_anchor_point_mobile\":\"\",\"motion_fx_transform_y_anchor_point\":\"\",\"motion_fx_transform_y_anchor_point_widescreen\":\"\",\"motion_fx_transform_y_anchor_point_tablet_extra\":\"\",\"motion_fx_transform_y_anchor_point_tablet\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile\":\"\",\"_background_color\":\"\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_stop_widescreen\":{\"unit\":\"%\"},\"_background_color_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_color_stop_tablet\":{\"unit\":\"%\"},\"_background_color_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_color_stop_mobile\":{\"unit\":\"%\"},\"_background_color_b\":\"#f2295b\",\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_color_b_stop_widescreen\":{\"unit\":\"%\"},\"_background_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_color_b_stop_tablet\":{\"unit\":\"%\"},\"_background_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_color_b_stop_mobile\":{\"unit\":\"%\"},\"_background_gradient_type\":\"linear\",\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"_background_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\"},\"_background_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\"},\"_background_gradient_position\":\"center center\",\"_background_gradient_position_widescreen\":\"\",\"_background_gradient_position_tablet_extra\":\"\",\"_background_gradient_position_tablet\":\"\",\"_background_gradient_position_mobile_extra\":\"\",\"_background_gradient_position_mobile\":\"\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position\":\"\",\"_background_position_widescreen\":\"\",\"_background_position_tablet_extra\":\"\",\"_background_position_tablet\":\"\",\"_background_position_mobile_extra\":\"\",\"_background_position_mobile\":\"\",\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_attachment\":\"\",\"_background_repeat\":\"\",\"_background_repeat_widescreen\":\"\",\"_background_repeat_tablet_extra\":\"\",\"_background_repeat_tablet\":\"\",\"_background_repeat_mobile_extra\":\"\",\"_background_repeat_mobile\":\"\",\"_background_size\":\"\",\"_background_size_widescreen\":\"\",\"_background_size_tablet_extra\":\"\",\"_background_size_tablet\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_size_mobile\":\"\",\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_video_link\":\"\",\"_background_video_start\":\"\",\"_background_video_end\":\"\",\"_background_play_once\":\"\",\"_background_play_on_mobile\":\"\",\"_background_privacy_mode\":\"\",\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_slideshow_loop\":\"yes\",\"_background_slideshow_slide_duration\":5000,\"_background_slideshow_slide_transition\":\"fade\",\"_background_slideshow_transition_duration\":500,\"_background_slideshow_background_size\":\"\",\"_background_slideshow_background_size_widescreen\":\"\",\"_background_slideshow_background_size_tablet_extra\":\"\",\"_background_slideshow_background_size_tablet\":\"\",\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_size_mobile\":\"\",\"_background_slideshow_background_position\":\"\",\"_background_slideshow_background_position_widescreen\":\"\",\"_background_slideshow_background_position_tablet_extra\":\"\",\"_background_slideshow_background_position_tablet\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile\":\"\",\"_background_slideshow_lazyload\":\"\",\"_background_slideshow_ken_burns\":\"\",\"_background_slideshow_ken_burns_zoom_direction\":\"in\",\"_background_hover_background\":\"\",\"_background_hover_color\":\"\",\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_stop_widescreen\":{\"unit\":\"%\"},\"_background_hover_color_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\"},\"_background_hover_color_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\"},\"_background_hover_color_b\":\"#f2295b\",\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_color_b_stop_widescreen\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\"},\"_background_hover_gradient_type\":\"linear\",\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\"},\"_background_hover_gradient_position\":\"center center\",\"_background_hover_gradient_position_widescreen\":\"\",\"_background_hover_gradient_position_tablet_extra\":\"\",\"_background_hover_gradient_position_tablet\":\"\",\"_background_hover_gradient_position_mobile_extra\":\"\",\"_background_hover_gradient_position_mobile\":\"\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position\":\"\",\"_background_hover_position_widescreen\":\"\",\"_background_hover_position_tablet_extra\":\"\",\"_background_hover_position_tablet\":\"\",\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_position_mobile\":\"\",\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_attachment\":\"\",\"_background_hover_repeat\":\"\",\"_background_hover_repeat_widescreen\":\"\",\"_background_hover_repeat_tablet_extra\":\"\",\"_background_hover_repeat_tablet\":\"\",\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_repeat_mobile\":\"\",\"_background_hover_size\":\"\",\"_background_hover_size_widescreen\":\"\",\"_background_hover_size_tablet_extra\":\"\",\"_background_hover_size_tablet\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_size_mobile\":\"\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_video_link\":\"\",\"_background_hover_video_start\":\"\",\"_background_hover_video_end\":\"\",\"_background_hover_play_once\":\"\",\"_background_hover_play_on_mobile\":\"\",\"_background_hover_privacy_mode\":\"\",\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_background_hover_slideshow_loop\":\"yes\",\"_background_hover_slideshow_slide_duration\":5000,\"_background_hover_slideshow_slide_transition\":\"fade\",\"_background_hover_slideshow_transition_duration\":500,\"_background_hover_slideshow_background_size\":\"\",\"_background_hover_slideshow_background_size_widescreen\":\"\",\"_background_hover_slideshow_background_size_tablet_extra\":\"\",\"_background_hover_slideshow_background_size_tablet\":\"\",\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_size_mobile\":\"\",\"_background_hover_slideshow_background_position\":\"\",\"_background_hover_slideshow_background_position_widescreen\":\"\",\"_background_hover_slideshow_background_position_tablet_extra\":\"\",\"_background_hover_slideshow_background_position_tablet\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile\":\"\",\"_background_hover_slideshow_lazyload\":\"\",\"_background_hover_slideshow_ken_burns\":\"\",\"_background_hover_slideshow_ken_burns_zoom_direction\":\"in\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_box_shadow_position\":\" \",\"_border_hover_border\":\"\",\"_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_color\":\"\",\"_border_radius_hover\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_box_shadow_hover_box_shadow_type\":\"\",\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_hover_box_shadow_position\":\" \",\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_switch\":\"\",\"_mask_shape\":\"circle\",\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_size\":\"contain\",\"_mask_size_widescreen\":\"\",\"_mask_size_tablet_extra\":\"\",\"_mask_size_tablet\":\"\",\"_mask_size_mobile_extra\":\"\",\"_mask_size_mobile\":\"\",\"_mask_size_scale\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_mask_size_scale_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position\":\"center center\",\"_mask_position_widescreen\":\"\",\"_mask_position_tablet_extra\":\"\",\"_mask_position_tablet\":\"\",\"_mask_position_mobile_extra\":\"\",\"_mask_position_mobile\":\"\",\"_mask_position_x\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_mask_position_x_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_mask_position_y_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat\":\"no-repeat\",\"_mask_repeat_widescreen\":\"\",\"_mask_repeat_tablet_extra\":\"\",\"_mask_repeat_tablet\":\"\",\"_mask_repeat_mobile_extra\":\"\",\"_mask_repeat_mobile\":\"\",\"hide_widescreen\":\"\",\"hide_desktop\":\"\",\"hide_tablet_extra\":\"\",\"hide_tablet\":\"\",\"hide_mobile_extra\":\"\",\"hide_mobile\":\"\",\"_attributes\":\"\",\"custom_css\":\"\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true},{\"id\":\"acbaf90\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5f31bac\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"32a9521\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dea9376\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7ff945\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"256b247\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title\":\"KONTAKT OS\",\"pp_display_conditions\":[{\"_id\":\"156b1a5\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-02-11 to 2026-02-17\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align_mobile_extra\":\"center\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"size\":\"default\",\"header_size\":\"h2\",\"align_widescreen\":\"\",\"align_tablet_extra\":\"\",\"align_tablet\":\"\",\"align_mobile\":\"\",\"typography_typography\":\"\",\"typography_font_family\":\"\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_weight\":\"\",\"typography_text_transform\":\"\",\"typography_font_style\":\"\",\"typography_text_decoration\":\"\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_type\":\"\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_text_stroke_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_stroke_stroke_color\":\"#000\",\"text_shadow_text_shadow_type\":\"\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"blend_mode\":\"\",\"title_color\":\"\",\"title_hover_color\":\"\",\"title_hover_color_transition_duration\":{\"unit\":\"s\",\"size\":\"\",\"sizes\":[]},\"_title\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"\",\"_element_width_widescreen\":\"\",\"_element_width_tablet_extra\":\"\",\"_element_width_tablet\":\"\",\"_element_width_mobile_extra\":\"\",\"_element_width_mobile\":\"\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_grid_column\":\"\",\"_grid_column_widescreen\":\"\",\"_grid_column_tablet_extra\":\"\",\"_grid_column_tablet\":\"\",\"_grid_column_mobile_extra\":\"\",\"_grid_column_mobile\":\"\",\"_grid_column_custom\":\"\",\"_grid_column_custom_widescreen\":\"\",\"_grid_column_custom_tablet_extra\":\"\",\"_grid_column_custom_tablet\":\"\",\"_grid_column_custom_mobile_extra\":\"\",\"_grid_column_custom_mobile\":\"\",\"_grid_row\":\"\",\"_grid_row_widescreen\":\"\",\"_grid_row_tablet_extra\":\"\",\"_grid_row_tablet\":\"\",\"_grid_row_mobile_extra\":\"\",\"_grid_row_mobile\":\"\",\"_grid_row_custom\":\"\",\"_grid_row_custom_widescreen\":\"\",\"_grid_row_custom_tablet_extra\":\"\",\"_grid_row_custom_tablet\":\"\",\"_grid_row_custom_mobile_extra\":\"\",\"_grid_row_custom_mobile\":\"\",\"_flex_align_self\":\"\",\"_flex_align_self_widescreen\":\"\",\"_flex_align_self_tablet_extra\":\"\",\"_flex_align_self_tablet\":\"\",\"_flex_align_self_mobile_extra\":\"\",\"_flex_align_self_mobile\":\"\",\"_flex_order\":\"\",\"_flex_order_widescreen\":\"\",\"_flex_order_tablet_extra\":\"\",\"_flex_order_tablet\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_mobile\":\"\",\"_flex_order_custom\":\"\",\"_flex_order_custom_widescreen\":\"\",\"_flex_order_custom_tablet_extra\":\"\",\"_flex_order_custom_tablet\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_order_custom_mobile\":\"\",\"_flex_size\":\"\",\"_flex_size_widescreen\":\"\",\"_flex_size_tablet_extra\":\"\",\"_flex_size_tablet\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_size_mobile\":\"\",\"_flex_grow\":1,\"_flex_grow_widescreen\":\"\",\"_flex_grow_tablet_extra\":\"\",\"_flex_grow_tablet\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_grow_mobile\":\"\",\"_flex_shrink\":1,\"_flex_shrink_widescreen\":\"\",\"_flex_shrink_tablet_extra\":\"\",\"_flex_shrink_tablet\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_flex_shrink_mobile\":\"\",\"_element_vertical_align\":\"\",\"_element_vertical_align_widescreen\":\"\",\"_element_vertical_align_tablet_extra\":\"\",\"_element_vertical_align_tablet\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_element_vertical_align_mobile\":\"\",\"_position\":\"\",\"_offset_orientation_h\":\"start\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_orientation_v\":\"start\",\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index\":\"\",\"_z_index_widescreen\":\"\",\"_z_index_tablet_extra\":\"\",\"_z_index_tablet\":\"\",\"_z_index_mobile_extra\":\"\",\"_z_index_mobile\":\"\",\"_element_id\":\"\",\"_css_classes\":\"\",\"e_display_conditions\":\"\",\"_element_cache\":\"\",\"pp_display_conditions_enable\":\"\",\"pp_display_conditions_output\":\"\",\"pp_display_conditions_relation\":\"all\",\"pp_wrapper_link_enable\":\"\",\"pp_wrapper_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_custom_cursor_enable\":\"\",\"pp_custom_cursor_target\":\"container\",\"pp_custom_cursor_css_selector\":\"\",\"pp_custom_cursor_type\":\"image\",\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text\":\"\",\"pp_custom_cursor_left_offset\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_top_offset\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_typography_typography\":\"\",\"pp_custom_cursor_text_typography_font_family\":\"\",\"pp_custom_cursor_text_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_weight\":\"\",\"pp_custom_cursor_text_typography_text_transform\":\"\",\"pp_custom_cursor_text_typography_font_style\":\"\",\"pp_custom_cursor_text_typography_text_decoration\":\"\",\"pp_custom_cursor_text_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_color\":\"\",\"pp_custom_cursor_text_bg_background\":\"\",\"pp_custom_cursor_text_bg_color\":\"\",\"pp_custom_cursor_text_bg_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_color_stop_widescreen\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_tablet_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_tablet\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_mobile_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_mobile\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b\":\"#f2295b\",\"pp_custom_cursor_text_bg_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pp_custom_cursor_text_bg_color_b_stop_widescreen\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_tablet\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_mobile\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_gradient_type\":\"linear\",\"pp_custom_cursor_text_bg_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"pp_custom_cursor_text_bg_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_tablet\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_mobile\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_position\":\"center center\",\"pp_custom_cursor_text_bg_gradient_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_gradient_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_gradient_position_tablet\":\"\",\"pp_custom_cursor_text_bg_gradient_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_gradient_position_mobile\":\"\",\"pp_custom_cursor_text_bg_position\":\"\",\"pp_custom_cursor_text_bg_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_position_tablet\":\"\",\"pp_custom_cursor_text_bg_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_position_mobile\":\"\",\"pp_custom_cursor_text_bg_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_attachment\":\"\",\"pp_custom_cursor_text_bg_repeat\":\"\",\"pp_custom_cursor_text_bg_repeat_widescreen\":\"\",\"pp_custom_cursor_text_bg_repeat_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_repeat_tablet\":\"\",\"pp_custom_cursor_text_bg_repeat_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_repeat_mobile\":\"\",\"pp_custom_cursor_text_bg_size\":\"\",\"pp_custom_cursor_text_bg_size_widescreen\":\"\",\"pp_custom_cursor_text_bg_size_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_size_tablet\":\"\",\"pp_custom_cursor_text_bg_size_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_size_mobile\":\"\",\"pp_custom_cursor_text_bg_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_video_link\":\"\",\"pp_custom_cursor_text_bg_video_start\":\"\",\"pp_custom_cursor_text_bg_video_end\":\"\",\"pp_custom_cursor_text_bg_play_once\":\"\",\"pp_custom_cursor_text_bg_play_on_mobile\":\"\",\"pp_custom_cursor_text_bg_privacy_mode\":\"\",\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"pp_custom_cursor_text_bg_slideshow_loop\":\"yes\",\"pp_custom_cursor_text_bg_slideshow_slide_duration\":5000,\"pp_custom_cursor_text_bg_slideshow_slide_transition\":\"fade\",\"pp_custom_cursor_text_bg_slideshow_transition_duration\":500,\"pp_custom_cursor_text_bg_slideshow_background_size\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_widescreen\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_tablet\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_mobile\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_tablet\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_mobile\":\"\",\"pp_custom_cursor_text_bg_slideshow_lazyload\":\"\",\"pp_custom_cursor_text_bg_slideshow_ken_burns\":\"\",\"pp_custom_cursor_text_bg_slideshow_ken_burns_zoom_direction\":\"in\",\"pp_custom_cursor_text_border_border\":\"\",\"pp_custom_cursor_text_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_color\":\"\",\"pp_custom_cursor_text_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_enable\":\"\",\"pp_elements_tooltip_target\":\"current\",\"pp_elements_tooltip_selector\":\"\",\"pp_elements_tooltip_trigger\":\"hover\",\"pp_elements_tooltip_position\":\"top\",\"pp_elements_tooltip_arrow\":\"yes\",\"pp_elements_tooltip_animation\":\"fade\",\"pp_elements_tooltip_distance\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_zindex\":99,\"pp_elements_tooltip_bg_color\":\"\",\"pp_elements_tooltip_color\":\"\",\"pp_elements_tooltip_typography_typography\":\"\",\"pp_elements_tooltip_typography_font_family\":\"\",\"pp_elements_tooltip_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_weight\":\"\",\"pp_elements_tooltip_typography_text_transform\":\"\",\"pp_elements_tooltip_typography_font_style\":\"\",\"pp_elements_tooltip_typography_text_decoration\":\"\",\"pp_elements_tooltip_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_box_shadow_box_shadow_type\":\"\",\"pp_elements_tooltip_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"pp_elements_tooltip_box_shadow_box_shadow_position\":\" \",\"pp_elements_tooltip_border_border\":\"\",\"pp_elements_tooltip_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_color\":\"\",\"pp_elements_tooltip_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"\",\"motion_fx_translateY_effect\":\"\",\"motion_fx_translateY_direction\":\"\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_translateX_effect\":\"\",\"motion_fx_translateX_direction\":\"\",\"motion_fx_translateX_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_translateX_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_opacity_effect\":\"\",\"motion_fx_opacity_direction\":\"out-in\",\"motion_fx_opacity_level\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_opacity_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_blur_effect\":\"\",\"motion_fx_blur_direction\":\"out-in\",\"motion_fx_blur_level\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"motion_fx_blur_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_rotateZ_effect\":\"\",\"motion_fx_rotateZ_direction\":\"\",\"motion_fx_rotateZ_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_rotateZ_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_scale_effect\":\"\",\"motion_fx_scale_direction\":\"out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_scale_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_transform_origin_x\":\"center\",\"motion_fx_transform_origin_y\":\"center\",\"motion_fx_devices\":[\"widescreen\",\"desktop\",\"tablet_extra\",\"tablet\",\"mobile_extra\",\"mobile\"],\"motion_fx_range\":\"\",\"motion_fx_motion_fx_mouse\":\"\",\"motion_fx_mouseTrack_effect\":\"\",\"motion_fx_mouseTrack_direction\":\"\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_tilt_effect\":\"\",\"motion_fx_tilt_direction\":\"\",\"motion_fx_tilt_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"handle_motion_fx_asset_loading\":\"\",\"sticky\":\"\",\"sticky_on\":[\"widescreen\",\"desktop\",\"tablet_extra\",\"tablet\",\"mobile_extra\",\"mobile\"],\"sticky_offset\":0,\"sticky_offset_widescreen\":\"\",\"sticky_offset_tablet_extra\":\"\",\"sticky_offset_tablet\":\"\",\"sticky_offset_mobile_extra\":\"\",\"sticky_offset_mobile\":\"\",\"sticky_effects_offset\":0,\"sticky_effects_offset_widescreen\":\"\",\"sticky_effects_offset_tablet_extra\":\"\",\"sticky_effects_offset_tablet\":\"\",\"sticky_effects_offset_mobile_extra\":\"\",\"sticky_effects_offset_mobile\":\"\",\"sticky_anchor_link_offset\":0,\"sticky_anchor_link_offset_widescreen\":\"\",\"sticky_anchor_link_offset_tablet_extra\":\"\",\"sticky_anchor_link_offset_tablet\":\"\",\"sticky_anchor_link_offset_mobile_extra\":\"\",\"sticky_anchor_link_offset_mobile\":\"\",\"sticky_parent\":\"\",\"_animation\":\"\",\"_animation_widescreen\":\"\",\"_animation_tablet_extra\":\"\",\"_animation_tablet\":\"\",\"_animation_mobile_extra\":\"\",\"_animation_mobile\":\"\",\"animation_duration\":\"\",\"_animation_delay\":\"\",\"_transform_rotate_popover\":\"\",\"_transform_rotateZ_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotate_3d\":\"\",\"_transform_rotateX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"\",\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_popover\":\"\",\"_transform_keep_proportions\":\"yes\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skew_popover\":\"\",\"_transform_skewX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_flipX_effect\":\"\",\"_transform_flipY_effect\":\"\",\"_transform_rotate_popover_hover\":\"\",\"_transform_rotateZ_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotate_3d_hover\":\"\",\"_transform_rotateX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover_hover\":\"\",\"_transform_translateX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_popover_hover\":\"\",\"_transform_keep_proportions_hover\":\"yes\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skew_popover_hover\":\"\",\"_transform_skewX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_flipX_effect_hover\":\"\",\"_transform_flipY_effect_hover\":\"\",\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point\":\"\",\"motion_fx_transform_x_anchor_point_widescreen\":\"\",\"motion_fx_transform_x_anchor_point_tablet_extra\":\"\",\"motion_fx_transform_x_anchor_point_tablet\":\"\",\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_x_anchor_point_mobile\":\"\",\"motion_fx_transform_y_anchor_point\":\"\",\"motion_fx_transform_y_anchor_point_widescreen\":\"\",\"motion_fx_transform_y_anchor_point_tablet_extra\":\"\",\"motion_fx_transform_y_anchor_point_tablet\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile\":\"\",\"_background_background\":\"\",\"_background_color\":\"\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_stop_widescreen\":{\"unit\":\"%\"},\"_background_color_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_color_stop_tablet\":{\"unit\":\"%\"},\"_background_color_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_color_stop_mobile\":{\"unit\":\"%\"},\"_background_color_b\":\"#f2295b\",\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_color_b_stop_widescreen\":{\"unit\":\"%\"},\"_background_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_color_b_stop_tablet\":{\"unit\":\"%\"},\"_background_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_color_b_stop_mobile\":{\"unit\":\"%\"},\"_background_gradient_type\":\"linear\",\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"_background_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\"},\"_background_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\"},\"_background_gradient_position\":\"center center\",\"_background_gradient_position_widescreen\":\"\",\"_background_gradient_position_tablet_extra\":\"\",\"_background_gradient_position_tablet\":\"\",\"_background_gradient_position_mobile_extra\":\"\",\"_background_gradient_position_mobile\":\"\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position\":\"\",\"_background_position_widescreen\":\"\",\"_background_position_tablet_extra\":\"\",\"_background_position_tablet\":\"\",\"_background_position_mobile_extra\":\"\",\"_background_position_mobile\":\"\",\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_attachment\":\"\",\"_background_repeat\":\"\",\"_background_repeat_widescreen\":\"\",\"_background_repeat_tablet_extra\":\"\",\"_background_repeat_tablet\":\"\",\"_background_repeat_mobile_extra\":\"\",\"_background_repeat_mobile\":\"\",\"_background_size\":\"\",\"_background_size_widescreen\":\"\",\"_background_size_tablet_extra\":\"\",\"_background_size_tablet\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_size_mobile\":\"\",\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_video_link\":\"\",\"_background_video_start\":\"\",\"_background_video_end\":\"\",\"_background_play_once\":\"\",\"_background_play_on_mobile\":\"\",\"_background_privacy_mode\":\"\",\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_slideshow_loop\":\"yes\",\"_background_slideshow_slide_duration\":5000,\"_background_slideshow_slide_transition\":\"fade\",\"_background_slideshow_transition_duration\":500,\"_background_slideshow_background_size\":\"\",\"_background_slideshow_background_size_widescreen\":\"\",\"_background_slideshow_background_size_tablet_extra\":\"\",\"_background_slideshow_background_size_tablet\":\"\",\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_size_mobile\":\"\",\"_background_slideshow_background_position\":\"\",\"_background_slideshow_background_position_widescreen\":\"\",\"_background_slideshow_background_position_tablet_extra\":\"\",\"_background_slideshow_background_position_tablet\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile\":\"\",\"_background_slideshow_lazyload\":\"\",\"_background_slideshow_ken_burns\":\"\",\"_background_slideshow_ken_burns_zoom_direction\":\"in\",\"_background_hover_background\":\"\",\"_background_hover_color\":\"\",\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_stop_widescreen\":{\"unit\":\"%\"},\"_background_hover_color_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\"},\"_background_hover_color_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\"},\"_background_hover_color_b\":\"#f2295b\",\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_color_b_stop_widescreen\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\"},\"_background_hover_gradient_type\":\"linear\",\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\"},\"_background_hover_gradient_position\":\"center center\",\"_background_hover_gradient_position_widescreen\":\"\",\"_background_hover_gradient_position_tablet_extra\":\"\",\"_background_hover_gradient_position_tablet\":\"\",\"_background_hover_gradient_position_mobile_extra\":\"\",\"_background_hover_gradient_position_mobile\":\"\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position\":\"\",\"_background_hover_position_widescreen\":\"\",\"_background_hover_position_tablet_extra\":\"\",\"_background_hover_position_tablet\":\"\",\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_position_mobile\":\"\",\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_attachment\":\"\",\"_background_hover_repeat\":\"\",\"_background_hover_repeat_widescreen\":\"\",\"_background_hover_repeat_tablet_extra\":\"\",\"_background_hover_repeat_tablet\":\"\",\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_repeat_mobile\":\"\",\"_background_hover_size\":\"\",\"_background_hover_size_widescreen\":\"\",\"_background_hover_size_tablet_extra\":\"\",\"_background_hover_size_tablet\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_size_mobile\":\"\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_video_link\":\"\",\"_background_hover_video_start\":\"\",\"_background_hover_video_end\":\"\",\"_background_hover_play_once\":\"\",\"_background_hover_play_on_mobile\":\"\",\"_background_hover_privacy_mode\":\"\",\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_background_hover_slideshow_loop\":\"yes\",\"_background_hover_slideshow_slide_duration\":5000,\"_background_hover_slideshow_slide_transition\":\"fade\",\"_background_hover_slideshow_transition_duration\":500,\"_background_hover_slideshow_background_size\":\"\",\"_background_hover_slideshow_background_size_widescreen\":\"\",\"_background_hover_slideshow_background_size_tablet_extra\":\"\",\"_background_hover_slideshow_background_size_tablet\":\"\",\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_size_mobile\":\"\",\"_background_hover_slideshow_background_position\":\"\",\"_background_hover_slideshow_background_position_widescreen\":\"\",\"_background_hover_slideshow_background_position_tablet_extra\":\"\",\"_background_hover_slideshow_background_position_tablet\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile\":\"\",\"_background_hover_slideshow_lazyload\":\"\",\"_background_hover_slideshow_ken_burns\":\"\",\"_background_hover_slideshow_ken_burns_zoom_direction\":\"in\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"\",\"_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_color\":\"\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_box_shadow_position\":\" \",\"_border_hover_border\":\"\",\"_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_color\":\"\",\"_border_radius_hover\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_box_shadow_hover_box_shadow_type\":\"\",\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_hover_box_shadow_position\":\" \",\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_switch\":\"\",\"_mask_shape\":\"circle\",\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_size\":\"contain\",\"_mask_size_widescreen\":\"\",\"_mask_size_tablet_extra\":\"\",\"_mask_size_tablet\":\"\",\"_mask_size_mobile_extra\":\"\",\"_mask_size_mobile\":\"\",\"_mask_size_scale\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_mask_size_scale_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position\":\"center center\",\"_mask_position_widescreen\":\"\",\"_mask_position_tablet_extra\":\"\",\"_mask_position_tablet\":\"\",\"_mask_position_mobile_extra\":\"\",\"_mask_position_mobile\":\"\",\"_mask_position_x\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_mask_position_x_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_mask_position_y_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat\":\"no-repeat\",\"_mask_repeat_widescreen\":\"\",\"_mask_repeat_tablet_extra\":\"\",\"_mask_repeat_tablet\":\"\",\"_mask_repeat_mobile_extra\":\"\",\"_mask_repeat_mobile\":\"\",\"hide_widescreen\":\"\",\"hide_desktop\":\"\",\"hide_tablet_extra\":\"\",\"hide_tablet\":\"\",\"hide_mobile_extra\":\"\",\"hide_mobile\":\"\",\"_attributes\":\"\",\"custom_css\":\"\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"309c417\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Vi d\\u00e6kker hele Fyn \\u2013 og tager ogs\\u00e5 gerne opgaver uden for omr\\u00e5det, n\\u00e5r der er tale om sp\\u00e6ndende eller teknisk kr\\u00e6vende l\\u00f8sninger.\",\"pp_display_conditions\":[{\"_id\":\"e03db8a\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-02-11 to 2026-02-17\",\"pp_condition_date_time_before_value\":\"2026-02-17 12:18\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align_mobile_extra\":\"center\",\"align_mobile\":\"center\",\"drop_cap\":\"\",\"text_columns\":\"\",\"text_columns_widescreen\":\"\",\"text_columns_tablet_extra\":\"\",\"text_columns_tablet\":\"\",\"text_columns_mobile_extra\":\"\",\"text_columns_mobile\":\"\",\"column_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"\",\"align_widescreen\":\"\",\"align_tablet_extra\":\"\",\"align_tablet\":\"\",\"typography_typography\":\"\",\"typography_font_family\":\"\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_weight\":\"\",\"typography_text_transform\":\"\",\"typography_font_style\":\"\",\"typography_text_decoration\":\"\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_shadow_text_shadow_type\":\"\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"paragraph_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"paragraph_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"paragraph_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"paragraph_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"paragraph_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"paragraph_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_color\":\"\",\"link_color\":\"\",\"link_hover_color\":\"\",\"link_hover_color_transition_duration\":{\"unit\":\"s\",\"size\":\"\",\"sizes\":[]},\"drop_cap_view\":\"default\",\"drop_cap_primary_color\":\"\",\"drop_cap_secondary_color\":\"\",\"drop_cap_shadow_text_shadow_type\":\"\",\"drop_cap_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"drop_cap_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"drop_cap_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"drop_cap_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"drop_cap_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"drop_cap_typography_typography\":\"\",\"drop_cap_typography_font_family\":\"\",\"drop_cap_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_weight\":\"\",\"drop_cap_typography_text_transform\":\"\",\"drop_cap_typography_font_style\":\"\",\"drop_cap_typography_text_decoration\":\"\",\"drop_cap_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_title\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"\",\"_element_width_widescreen\":\"\",\"_element_width_tablet_extra\":\"\",\"_element_width_tablet\":\"\",\"_element_width_mobile_extra\":\"\",\"_element_width_mobile\":\"\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_grid_column\":\"\",\"_grid_column_widescreen\":\"\",\"_grid_column_tablet_extra\":\"\",\"_grid_column_tablet\":\"\",\"_grid_column_mobile_extra\":\"\",\"_grid_column_mobile\":\"\",\"_grid_column_custom\":\"\",\"_grid_column_custom_widescreen\":\"\",\"_grid_column_custom_tablet_extra\":\"\",\"_grid_column_custom_tablet\":\"\",\"_grid_column_custom_mobile_extra\":\"\",\"_grid_column_custom_mobile\":\"\",\"_grid_row\":\"\",\"_grid_row_widescreen\":\"\",\"_grid_row_tablet_extra\":\"\",\"_grid_row_tablet\":\"\",\"_grid_row_mobile_extra\":\"\",\"_grid_row_mobile\":\"\",\"_grid_row_custom\":\"\",\"_grid_row_custom_widescreen\":\"\",\"_grid_row_custom_tablet_extra\":\"\",\"_grid_row_custom_tablet\":\"\",\"_grid_row_custom_mobile_extra\":\"\",\"_grid_row_custom_mobile\":\"\",\"_flex_align_self\":\"\",\"_flex_align_self_widescreen\":\"\",\"_flex_align_self_tablet_extra\":\"\",\"_flex_align_self_tablet\":\"\",\"_flex_align_self_mobile_extra\":\"\",\"_flex_align_self_mobile\":\"\",\"_flex_order\":\"\",\"_flex_order_widescreen\":\"\",\"_flex_order_tablet_extra\":\"\",\"_flex_order_tablet\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_mobile\":\"\",\"_flex_order_custom\":\"\",\"_flex_order_custom_widescreen\":\"\",\"_flex_order_custom_tablet_extra\":\"\",\"_flex_order_custom_tablet\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_order_custom_mobile\":\"\",\"_flex_size\":\"\",\"_flex_size_widescreen\":\"\",\"_flex_size_tablet_extra\":\"\",\"_flex_size_tablet\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_size_mobile\":\"\",\"_flex_grow\":1,\"_flex_grow_widescreen\":\"\",\"_flex_grow_tablet_extra\":\"\",\"_flex_grow_tablet\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_grow_mobile\":\"\",\"_flex_shrink\":1,\"_flex_shrink_widescreen\":\"\",\"_flex_shrink_tablet_extra\":\"\",\"_flex_shrink_tablet\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_flex_shrink_mobile\":\"\",\"_element_vertical_align\":\"\",\"_element_vertical_align_widescreen\":\"\",\"_element_vertical_align_tablet_extra\":\"\",\"_element_vertical_align_tablet\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_element_vertical_align_mobile\":\"\",\"_position\":\"\",\"_offset_orientation_h\":\"start\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_orientation_v\":\"start\",\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index\":\"\",\"_z_index_widescreen\":\"\",\"_z_index_tablet_extra\":\"\",\"_z_index_tablet\":\"\",\"_z_index_mobile_extra\":\"\",\"_z_index_mobile\":\"\",\"_element_id\":\"\",\"_css_classes\":\"\",\"e_display_conditions\":\"\",\"_element_cache\":\"\",\"pp_display_conditions_enable\":\"\",\"pp_display_conditions_output\":\"\",\"pp_display_conditions_relation\":\"all\",\"pp_wrapper_link_enable\":\"\",\"pp_wrapper_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_custom_cursor_enable\":\"\",\"pp_custom_cursor_target\":\"container\",\"pp_custom_cursor_css_selector\":\"\",\"pp_custom_cursor_type\":\"image\",\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text\":\"\",\"pp_custom_cursor_left_offset\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_top_offset\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_typography_typography\":\"\",\"pp_custom_cursor_text_typography_font_family\":\"\",\"pp_custom_cursor_text_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_weight\":\"\",\"pp_custom_cursor_text_typography_text_transform\":\"\",\"pp_custom_cursor_text_typography_font_style\":\"\",\"pp_custom_cursor_text_typography_text_decoration\":\"\",\"pp_custom_cursor_text_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_color\":\"\",\"pp_custom_cursor_text_bg_background\":\"\",\"pp_custom_cursor_text_bg_color\":\"\",\"pp_custom_cursor_text_bg_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_color_stop_widescreen\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_tablet_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_tablet\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_mobile_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_mobile\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b\":\"#f2295b\",\"pp_custom_cursor_text_bg_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pp_custom_cursor_text_bg_color_b_stop_widescreen\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_tablet\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_mobile\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_gradient_type\":\"linear\",\"pp_custom_cursor_text_bg_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"pp_custom_cursor_text_bg_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_tablet\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_mobile\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_position\":\"center center\",\"pp_custom_cursor_text_bg_gradient_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_gradient_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_gradient_position_tablet\":\"\",\"pp_custom_cursor_text_bg_gradient_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_gradient_position_mobile\":\"\",\"pp_custom_cursor_text_bg_position\":\"\",\"pp_custom_cursor_text_bg_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_position_tablet\":\"\",\"pp_custom_cursor_text_bg_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_position_mobile\":\"\",\"pp_custom_cursor_text_bg_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_attachment\":\"\",\"pp_custom_cursor_text_bg_repeat\":\"\",\"pp_custom_cursor_text_bg_repeat_widescreen\":\"\",\"pp_custom_cursor_text_bg_repeat_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_repeat_tablet\":\"\",\"pp_custom_cursor_text_bg_repeat_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_repeat_mobile\":\"\",\"pp_custom_cursor_text_bg_size\":\"\",\"pp_custom_cursor_text_bg_size_widescreen\":\"\",\"pp_custom_cursor_text_bg_size_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_size_tablet\":\"\",\"pp_custom_cursor_text_bg_size_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_size_mobile\":\"\",\"pp_custom_cursor_text_bg_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_video_link\":\"\",\"pp_custom_cursor_text_bg_video_start\":\"\",\"pp_custom_cursor_text_bg_video_end\":\"\",\"pp_custom_cursor_text_bg_play_once\":\"\",\"pp_custom_cursor_text_bg_play_on_mobile\":\"\",\"pp_custom_cursor_text_bg_privacy_mode\":\"\",\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"pp_custom_cursor_text_bg_slideshow_loop\":\"yes\",\"pp_custom_cursor_text_bg_slideshow_slide_duration\":5000,\"pp_custom_cursor_text_bg_slideshow_slide_transition\":\"fade\",\"pp_custom_cursor_text_bg_slideshow_transition_duration\":500,\"pp_custom_cursor_text_bg_slideshow_background_size\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_widescreen\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_tablet\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_mobile\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_tablet\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_mobile\":\"\",\"pp_custom_cursor_text_bg_slideshow_lazyload\":\"\",\"pp_custom_cursor_text_bg_slideshow_ken_burns\":\"\",\"pp_custom_cursor_text_bg_slideshow_ken_burns_zoom_direction\":\"in\",\"pp_custom_cursor_text_border_border\":\"\",\"pp_custom_cursor_text_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_color\":\"\",\"pp_custom_cursor_text_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_enable\":\"\",\"pp_elements_tooltip_target\":\"current\",\"pp_elements_tooltip_selector\":\"\",\"pp_elements_tooltip_trigger\":\"hover\",\"pp_elements_tooltip_position\":\"top\",\"pp_elements_tooltip_arrow\":\"yes\",\"pp_elements_tooltip_animation\":\"fade\",\"pp_elements_tooltip_distance\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_zindex\":99,\"pp_elements_tooltip_bg_color\":\"\",\"pp_elements_tooltip_color\":\"\",\"pp_elements_tooltip_typography_typography\":\"\",\"pp_elements_tooltip_typography_font_family\":\"\",\"pp_elements_tooltip_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_weight\":\"\",\"pp_elements_tooltip_typography_text_transform\":\"\",\"pp_elements_tooltip_typography_font_style\":\"\",\"pp_elements_tooltip_typography_text_decoration\":\"\",\"pp_elements_tooltip_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_box_shadow_box_shadow_type\":\"\",\"pp_elements_tooltip_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"pp_elements_tooltip_box_shadow_box_shadow_position\":\" \",\"pp_elements_tooltip_border_border\":\"\",\"pp_elements_tooltip_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_color\":\"\",\"pp_elements_tooltip_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"\",\"motion_fx_translateY_effect\":\"\",\"motion_fx_translateY_direction\":\"\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_translateX_effect\":\"\",\"motion_fx_translateX_direction\":\"\",\"motion_fx_translateX_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_translateX_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_opacity_effect\":\"\",\"motion_fx_opacity_direction\":\"out-in\",\"motion_fx_opacity_level\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_opacity_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_blur_effect\":\"\",\"motion_fx_blur_direction\":\"out-in\",\"motion_fx_blur_level\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"motion_fx_blur_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_rotateZ_effect\":\"\",\"motion_fx_rotateZ_direction\":\"\",\"motion_fx_rotateZ_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_rotateZ_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_scale_effect\":\"\",\"motion_fx_scale_direction\":\"out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_scale_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_transform_origin_x\":\"center\",\"motion_fx_transform_origin_y\":\"center\",\"motion_fx_devices\":[\"widescreen\",\"desktop\",\"tablet_extra\",\"tablet\",\"mobile_extra\",\"mobile\"],\"motion_fx_range\":\"\",\"motion_fx_motion_fx_mouse\":\"\",\"motion_fx_mouseTrack_effect\":\"\",\"motion_fx_mouseTrack_direction\":\"\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_tilt_effect\":\"\",\"motion_fx_tilt_direction\":\"\",\"motion_fx_tilt_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"handle_motion_fx_asset_loading\":\"\",\"sticky\":\"\",\"sticky_on\":[\"widescreen\",\"desktop\",\"tablet_extra\",\"tablet\",\"mobile_extra\",\"mobile\"],\"sticky_offset\":0,\"sticky_offset_widescreen\":\"\",\"sticky_offset_tablet_extra\":\"\",\"sticky_offset_tablet\":\"\",\"sticky_offset_mobile_extra\":\"\",\"sticky_offset_mobile\":\"\",\"sticky_effects_offset\":0,\"sticky_effects_offset_widescreen\":\"\",\"sticky_effects_offset_tablet_extra\":\"\",\"sticky_effects_offset_tablet\":\"\",\"sticky_effects_offset_mobile_extra\":\"\",\"sticky_effects_offset_mobile\":\"\",\"sticky_anchor_link_offset\":0,\"sticky_anchor_link_offset_widescreen\":\"\",\"sticky_anchor_link_offset_tablet_extra\":\"\",\"sticky_anchor_link_offset_tablet\":\"\",\"sticky_anchor_link_offset_mobile_extra\":\"\",\"sticky_anchor_link_offset_mobile\":\"\",\"sticky_parent\":\"\",\"_animation\":\"\",\"_animation_widescreen\":\"\",\"_animation_tablet_extra\":\"\",\"_animation_tablet\":\"\",\"_animation_mobile_extra\":\"\",\"_animation_mobile\":\"\",\"animation_duration\":\"\",\"_animation_delay\":\"\",\"_transform_rotate_popover\":\"\",\"_transform_rotateZ_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotate_3d\":\"\",\"_transform_rotateX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"\",\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_popover\":\"\",\"_transform_keep_proportions\":\"yes\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skew_popover\":\"\",\"_transform_skewX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_flipX_effect\":\"\",\"_transform_flipY_effect\":\"\",\"_transform_rotate_popover_hover\":\"\",\"_transform_rotateZ_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotate_3d_hover\":\"\",\"_transform_rotateX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover_hover\":\"\",\"_transform_translateX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_popover_hover\":\"\",\"_transform_keep_proportions_hover\":\"yes\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skew_popover_hover\":\"\",\"_transform_skewX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_flipX_effect_hover\":\"\",\"_transform_flipY_effect_hover\":\"\",\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point\":\"\",\"motion_fx_transform_x_anchor_point_widescreen\":\"\",\"motion_fx_transform_x_anchor_point_tablet_extra\":\"\",\"motion_fx_transform_x_anchor_point_tablet\":\"\",\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_x_anchor_point_mobile\":\"\",\"motion_fx_transform_y_anchor_point\":\"\",\"motion_fx_transform_y_anchor_point_widescreen\":\"\",\"motion_fx_transform_y_anchor_point_tablet_extra\":\"\",\"motion_fx_transform_y_anchor_point_tablet\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile\":\"\",\"_background_background\":\"\",\"_background_color\":\"\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_stop_widescreen\":{\"unit\":\"%\"},\"_background_color_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_color_stop_tablet\":{\"unit\":\"%\"},\"_background_color_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_color_stop_mobile\":{\"unit\":\"%\"},\"_background_color_b\":\"#f2295b\",\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_color_b_stop_widescreen\":{\"unit\":\"%\"},\"_background_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_color_b_stop_tablet\":{\"unit\":\"%\"},\"_background_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_color_b_stop_mobile\":{\"unit\":\"%\"},\"_background_gradient_type\":\"linear\",\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"_background_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\"},\"_background_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\"},\"_background_gradient_position\":\"center center\",\"_background_gradient_position_widescreen\":\"\",\"_background_gradient_position_tablet_extra\":\"\",\"_background_gradient_position_tablet\":\"\",\"_background_gradient_position_mobile_extra\":\"\",\"_background_gradient_position_mobile\":\"\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position\":\"\",\"_background_position_widescreen\":\"\",\"_background_position_tablet_extra\":\"\",\"_background_position_tablet\":\"\",\"_background_position_mobile_extra\":\"\",\"_background_position_mobile\":\"\",\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_attachment\":\"\",\"_background_repeat\":\"\",\"_background_repeat_widescreen\":\"\",\"_background_repeat_tablet_extra\":\"\",\"_background_repeat_tablet\":\"\",\"_background_repeat_mobile_extra\":\"\",\"_background_repeat_mobile\":\"\",\"_background_size\":\"\",\"_background_size_widescreen\":\"\",\"_background_size_tablet_extra\":\"\",\"_background_size_tablet\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_size_mobile\":\"\",\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_video_link\":\"\",\"_background_video_start\":\"\",\"_background_video_end\":\"\",\"_background_play_once\":\"\",\"_background_play_on_mobile\":\"\",\"_background_privacy_mode\":\"\",\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_slideshow_loop\":\"yes\",\"_background_slideshow_slide_duration\":5000,\"_background_slideshow_slide_transition\":\"fade\",\"_background_slideshow_transition_duration\":500,\"_background_slideshow_background_size\":\"\",\"_background_slideshow_background_size_widescreen\":\"\",\"_background_slideshow_background_size_tablet_extra\":\"\",\"_background_slideshow_background_size_tablet\":\"\",\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_size_mobile\":\"\",\"_background_slideshow_background_position\":\"\",\"_background_slideshow_background_position_widescreen\":\"\",\"_background_slideshow_background_position_tablet_extra\":\"\",\"_background_slideshow_background_position_tablet\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile\":\"\",\"_background_slideshow_lazyload\":\"\",\"_background_slideshow_ken_burns\":\"\",\"_background_slideshow_ken_burns_zoom_direction\":\"in\",\"_background_hover_background\":\"\",\"_background_hover_color\":\"\",\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_stop_widescreen\":{\"unit\":\"%\"},\"_background_hover_color_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\"},\"_background_hover_color_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\"},\"_background_hover_color_b\":\"#f2295b\",\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_color_b_stop_widescreen\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\"},\"_background_hover_gradient_type\":\"linear\",\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\"},\"_background_hover_gradient_position\":\"center center\",\"_background_hover_gradient_position_widescreen\":\"\",\"_background_hover_gradient_position_tablet_extra\":\"\",\"_background_hover_gradient_position_tablet\":\"\",\"_background_hover_gradient_position_mobile_extra\":\"\",\"_background_hover_gradient_position_mobile\":\"\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position\":\"\",\"_background_hover_position_widescreen\":\"\",\"_background_hover_position_tablet_extra\":\"\",\"_background_hover_position_tablet\":\"\",\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_position_mobile\":\"\",\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_attachment\":\"\",\"_background_hover_repeat\":\"\",\"_background_hover_repeat_widescreen\":\"\",\"_background_hover_repeat_tablet_extra\":\"\",\"_background_hover_repeat_tablet\":\"\",\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_repeat_mobile\":\"\",\"_background_hover_size\":\"\",\"_background_hover_size_widescreen\":\"\",\"_background_hover_size_tablet_extra\":\"\",\"_background_hover_size_tablet\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_size_mobile\":\"\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_video_link\":\"\",\"_background_hover_video_start\":\"\",\"_background_hover_video_end\":\"\",\"_background_hover_play_once\":\"\",\"_background_hover_play_on_mobile\":\"\",\"_background_hover_privacy_mode\":\"\",\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_background_hover_slideshow_loop\":\"yes\",\"_background_hover_slideshow_slide_duration\":5000,\"_background_hover_slideshow_slide_transition\":\"fade\",\"_background_hover_slideshow_transition_duration\":500,\"_background_hover_slideshow_background_size\":\"\",\"_background_hover_slideshow_background_size_widescreen\":\"\",\"_background_hover_slideshow_background_size_tablet_extra\":\"\",\"_background_hover_slideshow_background_size_tablet\":\"\",\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_size_mobile\":\"\",\"_background_hover_slideshow_background_position\":\"\",\"_background_hover_slideshow_background_position_widescreen\":\"\",\"_background_hover_slideshow_background_position_tablet_extra\":\"\",\"_background_hover_slideshow_background_position_tablet\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile\":\"\",\"_background_hover_slideshow_lazyload\":\"\",\"_background_hover_slideshow_ken_burns\":\"\",\"_background_hover_slideshow_ken_burns_zoom_direction\":\"in\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"\",\"_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_color\":\"\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_box_shadow_position\":\" \",\"_border_hover_border\":\"\",\"_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_color\":\"\",\"_border_radius_hover\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_box_shadow_hover_box_shadow_type\":\"\",\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_hover_box_shadow_position\":\" \",\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_switch\":\"\",\"_mask_shape\":\"circle\",\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_size\":\"contain\",\"_mask_size_widescreen\":\"\",\"_mask_size_tablet_extra\":\"\",\"_mask_size_tablet\":\"\",\"_mask_size_mobile_extra\":\"\",\"_mask_size_mobile\":\"\",\"_mask_size_scale\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_mask_size_scale_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position\":\"center center\",\"_mask_position_widescreen\":\"\",\"_mask_position_tablet_extra\":\"\",\"_mask_position_tablet\":\"\",\"_mask_position_mobile_extra\":\"\",\"_mask_position_mobile\":\"\",\"_mask_position_x\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_mask_position_x_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_mask_position_y_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat\":\"no-repeat\",\"_mask_repeat_widescreen\":\"\",\"_mask_repeat_tablet_extra\":\"\",\"_mask_repeat_tablet\":\"\",\"_mask_repeat_mobile_extra\":\"\",\"_mask_repeat_mobile\":\"\",\"hide_widescreen\":\"\",\"hide_desktop\":\"\",\"hide_tablet_extra\":\"\",\"hide_tablet\":\"\",\"hide_mobile_extra\":\"\",\"hide_mobile\":\"\",\"_attributes\":\"\",\"custom_css\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7061e9f\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"1a75682\",\"link\":{\"url\":\"https:\\/\\/www.facebook.com\\/cpnordic\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"da32d70\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/cpnordic\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.6,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"589cdcb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor6\"},\"icon_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"left\",\"align_tablet\":\"left\",\"align_mobile_extra\":\"center\",\"columns\":\"0\",\"columns_widescreen\":\"\",\"columns_tablet_extra\":\"\",\"columns_tablet\":\"\",\"columns_mobile_extra\":\"\",\"columns_mobile\":\"\",\"align_widescreen\":\"\",\"align_tablet_extra\":\"\",\"align_mobile\":\"\",\"icon_primary_color\":\"\",\"icon_secondary_color\":\"\",\"icon_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"icon_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"row_gap_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"row_gap_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"row_gap_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"row_gap_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"row_gap_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_border_border\":\"\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"image_border_color\":\"\",\"border_radius_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"hover_primary_color\":\"\",\"hover_secondary_color\":\"\",\"hover_border_color\":\"\",\"hover_animation\":\"\",\"_title\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_element_width\":\"\",\"_element_width_widescreen\":\"\",\"_element_width_tablet_extra\":\"\",\"_element_width_tablet\":\"\",\"_element_width_mobile_extra\":\"\",\"_element_width_mobile\":\"\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_grid_column\":\"\",\"_grid_column_widescreen\":\"\",\"_grid_column_tablet_extra\":\"\",\"_grid_column_tablet\":\"\",\"_grid_column_mobile_extra\":\"\",\"_grid_column_mobile\":\"\",\"_grid_column_custom\":\"\",\"_grid_column_custom_widescreen\":\"\",\"_grid_column_custom_tablet_extra\":\"\",\"_grid_column_custom_tablet\":\"\",\"_grid_column_custom_mobile_extra\":\"\",\"_grid_column_custom_mobile\":\"\",\"_grid_row\":\"\",\"_grid_row_widescreen\":\"\",\"_grid_row_tablet_extra\":\"\",\"_grid_row_tablet\":\"\",\"_grid_row_mobile_extra\":\"\",\"_grid_row_mobile\":\"\",\"_grid_row_custom\":\"\",\"_grid_row_custom_widescreen\":\"\",\"_grid_row_custom_tablet_extra\":\"\",\"_grid_row_custom_tablet\":\"\",\"_grid_row_custom_mobile_extra\":\"\",\"_grid_row_custom_mobile\":\"\",\"_flex_align_self\":\"\",\"_flex_align_self_widescreen\":\"\",\"_flex_align_self_tablet_extra\":\"\",\"_flex_align_self_tablet\":\"\",\"_flex_align_self_mobile_extra\":\"\",\"_flex_align_self_mobile\":\"\",\"_flex_order\":\"\",\"_flex_order_widescreen\":\"\",\"_flex_order_tablet_extra\":\"\",\"_flex_order_tablet\":\"\",\"_flex_order_mobile_extra\":\"\",\"_flex_order_mobile\":\"\",\"_flex_order_custom\":\"\",\"_flex_order_custom_widescreen\":\"\",\"_flex_order_custom_tablet_extra\":\"\",\"_flex_order_custom_tablet\":\"\",\"_flex_order_custom_mobile_extra\":\"\",\"_flex_order_custom_mobile\":\"\",\"_flex_size\":\"\",\"_flex_size_widescreen\":\"\",\"_flex_size_tablet_extra\":\"\",\"_flex_size_tablet\":\"\",\"_flex_size_mobile_extra\":\"\",\"_flex_size_mobile\":\"\",\"_flex_grow\":1,\"_flex_grow_widescreen\":\"\",\"_flex_grow_tablet_extra\":\"\",\"_flex_grow_tablet\":\"\",\"_flex_grow_mobile_extra\":\"\",\"_flex_grow_mobile\":\"\",\"_flex_shrink\":1,\"_flex_shrink_widescreen\":\"\",\"_flex_shrink_tablet_extra\":\"\",\"_flex_shrink_tablet\":\"\",\"_flex_shrink_mobile_extra\":\"\",\"_flex_shrink_mobile\":\"\",\"_element_vertical_align\":\"\",\"_element_vertical_align_widescreen\":\"\",\"_element_vertical_align_tablet_extra\":\"\",\"_element_vertical_align_tablet\":\"\",\"_element_vertical_align_mobile_extra\":\"\",\"_element_vertical_align_mobile\":\"\",\"_position\":\"\",\"_offset_orientation_h\":\"start\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_orientation_v\":\"start\",\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_z_index\":\"\",\"_z_index_widescreen\":\"\",\"_z_index_tablet_extra\":\"\",\"_z_index_tablet\":\"\",\"_z_index_mobile_extra\":\"\",\"_z_index_mobile\":\"\",\"_element_id\":\"\",\"_css_classes\":\"\",\"e_display_conditions\":\"\",\"_element_cache\":\"\",\"pp_display_conditions_enable\":\"\",\"pp_display_conditions_output\":\"\",\"pp_display_conditions_relation\":\"all\",\"pp_wrapper_link_enable\":\"\",\"pp_wrapper_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_custom_cursor_enable\":\"\",\"pp_custom_cursor_target\":\"container\",\"pp_custom_cursor_css_selector\":\"\",\"pp_custom_cursor_type\":\"image\",\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text\":\"\",\"pp_custom_cursor_left_offset\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_top_offset\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_typography_typography\":\"\",\"pp_custom_cursor_text_typography_font_family\":\"\",\"pp_custom_cursor_text_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_font_weight\":\"\",\"pp_custom_cursor_text_typography_text_transform\":\"\",\"pp_custom_cursor_text_typography_font_style\":\"\",\"pp_custom_cursor_text_typography_text_decoration\":\"\",\"pp_custom_cursor_text_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_color\":\"\",\"pp_custom_cursor_text_bg_background\":\"\",\"pp_custom_cursor_text_bg_color\":\"\",\"pp_custom_cursor_text_bg_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_color_stop_widescreen\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_tablet_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_tablet\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_mobile_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_stop_mobile\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b\":\"#f2295b\",\"pp_custom_cursor_text_bg_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pp_custom_cursor_text_bg_color_b_stop_widescreen\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_tablet\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_color_b_stop_mobile\":{\"unit\":\"%\"},\"pp_custom_cursor_text_bg_gradient_type\":\"linear\",\"pp_custom_cursor_text_bg_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"pp_custom_cursor_text_bg_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_tablet\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_angle_mobile\":{\"unit\":\"deg\"},\"pp_custom_cursor_text_bg_gradient_position\":\"center center\",\"pp_custom_cursor_text_bg_gradient_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_gradient_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_gradient_position_tablet\":\"\",\"pp_custom_cursor_text_bg_gradient_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_gradient_position_mobile\":\"\",\"pp_custom_cursor_text_bg_position\":\"\",\"pp_custom_cursor_text_bg_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_position_tablet\":\"\",\"pp_custom_cursor_text_bg_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_position_mobile\":\"\",\"pp_custom_cursor_text_bg_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_custom_cursor_text_bg_attachment\":\"\",\"pp_custom_cursor_text_bg_repeat\":\"\",\"pp_custom_cursor_text_bg_repeat_widescreen\":\"\",\"pp_custom_cursor_text_bg_repeat_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_repeat_tablet\":\"\",\"pp_custom_cursor_text_bg_repeat_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_repeat_mobile\":\"\",\"pp_custom_cursor_text_bg_size\":\"\",\"pp_custom_cursor_text_bg_size_widescreen\":\"\",\"pp_custom_cursor_text_bg_size_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_size_tablet\":\"\",\"pp_custom_cursor_text_bg_size_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_size_mobile\":\"\",\"pp_custom_cursor_text_bg_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_custom_cursor_text_bg_video_link\":\"\",\"pp_custom_cursor_text_bg_video_start\":\"\",\"pp_custom_cursor_text_bg_video_end\":\"\",\"pp_custom_cursor_text_bg_play_once\":\"\",\"pp_custom_cursor_text_bg_play_on_mobile\":\"\",\"pp_custom_cursor_text_bg_privacy_mode\":\"\",\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"pp_custom_cursor_text_bg_slideshow_loop\":\"yes\",\"pp_custom_cursor_text_bg_slideshow_slide_duration\":5000,\"pp_custom_cursor_text_bg_slideshow_slide_transition\":\"fade\",\"pp_custom_cursor_text_bg_slideshow_transition_duration\":500,\"pp_custom_cursor_text_bg_slideshow_background_size\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_widescreen\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_tablet\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_size_mobile\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_widescreen\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_tablet_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_tablet\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_mobile_extra\":\"\",\"pp_custom_cursor_text_bg_slideshow_background_position_mobile\":\"\",\"pp_custom_cursor_text_bg_slideshow_lazyload\":\"\",\"pp_custom_cursor_text_bg_slideshow_ken_burns\":\"\",\"pp_custom_cursor_text_bg_slideshow_ken_burns_zoom_direction\":\"in\",\"pp_custom_cursor_text_border_border\":\"\",\"pp_custom_cursor_text_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_border_color\":\"\",\"pp_custom_cursor_text_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_custom_cursor_text_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_enable\":\"\",\"pp_elements_tooltip_target\":\"current\",\"pp_elements_tooltip_selector\":\"\",\"pp_elements_tooltip_trigger\":\"hover\",\"pp_elements_tooltip_position\":\"top\",\"pp_elements_tooltip_arrow\":\"yes\",\"pp_elements_tooltip_animation\":\"fade\",\"pp_elements_tooltip_distance\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_zindex\":99,\"pp_elements_tooltip_bg_color\":\"\",\"pp_elements_tooltip_color\":\"\",\"pp_elements_tooltip_typography_typography\":\"\",\"pp_elements_tooltip_typography_font_family\":\"\",\"pp_elements_tooltip_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_font_weight\":\"\",\"pp_elements_tooltip_typography_text_transform\":\"\",\"pp_elements_tooltip_typography_font_style\":\"\",\"pp_elements_tooltip_typography_text_decoration\":\"\",\"pp_elements_tooltip_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pp_elements_tooltip_box_shadow_box_shadow_type\":\"\",\"pp_elements_tooltip_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"pp_elements_tooltip_box_shadow_box_shadow_position\":\" \",\"pp_elements_tooltip_border_border\":\"\",\"pp_elements_tooltip_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_border_color\":\"\",\"pp_elements_tooltip_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"pp_elements_tooltip_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"motion_fx_motion_fx_scrolling\":\"\",\"motion_fx_translateY_effect\":\"\",\"motion_fx_translateY_direction\":\"\",\"motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_translateX_effect\":\"\",\"motion_fx_translateX_direction\":\"\",\"motion_fx_translateX_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_translateX_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_opacity_effect\":\"\",\"motion_fx_opacity_direction\":\"out-in\",\"motion_fx_opacity_level\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"motion_fx_opacity_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_blur_effect\":\"\",\"motion_fx_blur_direction\":\"out-in\",\"motion_fx_blur_level\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"motion_fx_blur_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_rotateZ_effect\":\"\",\"motion_fx_rotateZ_direction\":\"\",\"motion_fx_rotateZ_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_rotateZ_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":0,\"end\":100}},\"motion_fx_scale_effect\":\"\",\"motion_fx_scale_direction\":\"out-in\",\"motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"motion_fx_scale_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":20,\"end\":80}},\"motion_fx_transform_origin_x\":\"center\",\"motion_fx_transform_origin_y\":\"center\",\"motion_fx_devices\":[\"widescreen\",\"desktop\",\"tablet_extra\",\"tablet\",\"mobile_extra\",\"mobile\"],\"motion_fx_range\":\"\",\"motion_fx_motion_fx_mouse\":\"\",\"motion_fx_mouseTrack_effect\":\"\",\"motion_fx_mouseTrack_direction\":\"\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"motion_fx_tilt_effect\":\"\",\"motion_fx_tilt_direction\":\"\",\"motion_fx_tilt_speed\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"handle_motion_fx_asset_loading\":\"\",\"sticky\":\"\",\"sticky_on\":[\"widescreen\",\"desktop\",\"tablet_extra\",\"tablet\",\"mobile_extra\",\"mobile\"],\"sticky_offset\":0,\"sticky_offset_widescreen\":\"\",\"sticky_offset_tablet_extra\":\"\",\"sticky_offset_tablet\":\"\",\"sticky_offset_mobile_extra\":\"\",\"sticky_offset_mobile\":\"\",\"sticky_effects_offset\":0,\"sticky_effects_offset_widescreen\":\"\",\"sticky_effects_offset_tablet_extra\":\"\",\"sticky_effects_offset_tablet\":\"\",\"sticky_effects_offset_mobile_extra\":\"\",\"sticky_effects_offset_mobile\":\"\",\"sticky_anchor_link_offset\":0,\"sticky_anchor_link_offset_widescreen\":\"\",\"sticky_anchor_link_offset_tablet_extra\":\"\",\"sticky_anchor_link_offset_tablet\":\"\",\"sticky_anchor_link_offset_mobile_extra\":\"\",\"sticky_anchor_link_offset_mobile\":\"\",\"sticky_parent\":\"\",\"_animation\":\"\",\"_animation_widescreen\":\"\",\"_animation_tablet_extra\":\"\",\"_animation_tablet\":\"\",\"_animation_mobile_extra\":\"\",\"_animation_mobile\":\"\",\"animation_duration\":\"\",\"_animation_delay\":\"\",\"_transform_rotate_popover\":\"\",\"_transform_rotateZ_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotate_3d\":\"\",\"_transform_rotateX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover\":\"\",\"_transform_translateX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_popover\":\"\",\"_transform_keep_proportions\":\"yes\",\"_transform_scale_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skew_popover\":\"\",\"_transform_skewX_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_flipX_effect\":\"\",\"_transform_flipY_effect\":\"\",\"_transform_rotate_popover_hover\":\"\",\"_transform_rotateZ_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateZ_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotate_3d_hover\":\"\",\"_transform_rotateX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateX_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_rotateY_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_perspective_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translate_popover_hover\":\"\",\"_transform_translateX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateX_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_translateY_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_popover_hover\":\"\",\"_transform_keep_proportions_hover\":\"yes\",\"_transform_scale_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scale_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleX_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_scaleY_effect_hover_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skew_popover_hover\":\"\",\"_transform_skewX_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewX_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_widescreen\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_tablet_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile_extra\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_skewY_effect_hover_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_transform_flipX_effect_hover\":\"\",\"_transform_flipY_effect_hover\":\"\",\"_transform_transition_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"motion_fx_transform_x_anchor_point\":\"\",\"motion_fx_transform_x_anchor_point_widescreen\":\"\",\"motion_fx_transform_x_anchor_point_tablet_extra\":\"\",\"motion_fx_transform_x_anchor_point_tablet\":\"\",\"motion_fx_transform_x_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_x_anchor_point_mobile\":\"\",\"motion_fx_transform_y_anchor_point\":\"\",\"motion_fx_transform_y_anchor_point_widescreen\":\"\",\"motion_fx_transform_y_anchor_point_tablet_extra\":\"\",\"motion_fx_transform_y_anchor_point_tablet\":\"\",\"motion_fx_transform_y_anchor_point_mobile_extra\":\"\",\"motion_fx_transform_y_anchor_point_mobile\":\"\",\"_background_background\":\"\",\"_background_color\":\"\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_stop_widescreen\":{\"unit\":\"%\"},\"_background_color_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_color_stop_tablet\":{\"unit\":\"%\"},\"_background_color_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_color_stop_mobile\":{\"unit\":\"%\"},\"_background_color_b\":\"#f2295b\",\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_color_b_stop_widescreen\":{\"unit\":\"%\"},\"_background_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_color_b_stop_tablet\":{\"unit\":\"%\"},\"_background_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_color_b_stop_mobile\":{\"unit\":\"%\"},\"_background_gradient_type\":\"linear\",\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"_background_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\"},\"_background_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\"},\"_background_gradient_position\":\"center center\",\"_background_gradient_position_widescreen\":\"\",\"_background_gradient_position_tablet_extra\":\"\",\"_background_gradient_position_tablet\":\"\",\"_background_gradient_position_mobile_extra\":\"\",\"_background_gradient_position_mobile\":\"\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_position\":\"\",\"_background_position_widescreen\":\"\",\"_background_position_tablet_extra\":\"\",\"_background_position_tablet\":\"\",\"_background_position_mobile_extra\":\"\",\"_background_position_mobile\":\"\",\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_attachment\":\"\",\"_background_repeat\":\"\",\"_background_repeat_widescreen\":\"\",\"_background_repeat_tablet_extra\":\"\",\"_background_repeat_tablet\":\"\",\"_background_repeat_mobile_extra\":\"\",\"_background_repeat_mobile\":\"\",\"_background_size\":\"\",\"_background_size_widescreen\":\"\",\"_background_size_tablet_extra\":\"\",\"_background_size_tablet\":\"\",\"_background_size_mobile_extra\":\"\",\"_background_size_mobile\":\"\",\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_video_link\":\"\",\"_background_video_start\":\"\",\"_background_video_end\":\"\",\"_background_play_once\":\"\",\"_background_play_on_mobile\":\"\",\"_background_privacy_mode\":\"\",\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_slideshow_loop\":\"yes\",\"_background_slideshow_slide_duration\":5000,\"_background_slideshow_slide_transition\":\"fade\",\"_background_slideshow_transition_duration\":500,\"_background_slideshow_background_size\":\"\",\"_background_slideshow_background_size_widescreen\":\"\",\"_background_slideshow_background_size_tablet_extra\":\"\",\"_background_slideshow_background_size_tablet\":\"\",\"_background_slideshow_background_size_mobile_extra\":\"\",\"_background_slideshow_background_size_mobile\":\"\",\"_background_slideshow_background_position\":\"\",\"_background_slideshow_background_position_widescreen\":\"\",\"_background_slideshow_background_position_tablet_extra\":\"\",\"_background_slideshow_background_position_tablet\":\"\",\"_background_slideshow_background_position_mobile_extra\":\"\",\"_background_slideshow_background_position_mobile\":\"\",\"_background_slideshow_lazyload\":\"\",\"_background_slideshow_ken_burns\":\"\",\"_background_slideshow_ken_burns_zoom_direction\":\"in\",\"_background_hover_background\":\"\",\"_background_hover_color\":\"\",\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_stop_widescreen\":{\"unit\":\"%\"},\"_background_hover_color_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\"},\"_background_hover_color_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\"},\"_background_hover_color_b\":\"#f2295b\",\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_color_b_stop_widescreen\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\"},\"_background_hover_gradient_type\":\"linear\",\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\"},\"_background_hover_gradient_position\":\"center center\",\"_background_hover_gradient_position_widescreen\":\"\",\"_background_hover_gradient_position_tablet_extra\":\"\",\"_background_hover_gradient_position_tablet\":\"\",\"_background_hover_gradient_position_mobile_extra\":\"\",\"_background_hover_gradient_position_mobile\":\"\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_position\":\"\",\"_background_hover_position_widescreen\":\"\",\"_background_hover_position_tablet_extra\":\"\",\"_background_hover_position_tablet\":\"\",\"_background_hover_position_mobile_extra\":\"\",\"_background_hover_position_mobile\":\"\",\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_attachment\":\"\",\"_background_hover_repeat\":\"\",\"_background_hover_repeat_widescreen\":\"\",\"_background_hover_repeat_tablet_extra\":\"\",\"_background_hover_repeat_tablet\":\"\",\"_background_hover_repeat_mobile_extra\":\"\",\"_background_hover_repeat_mobile\":\"\",\"_background_hover_size\":\"\",\"_background_hover_size_widescreen\":\"\",\"_background_hover_size_tablet_extra\":\"\",\"_background_hover_size_tablet\":\"\",\"_background_hover_size_mobile_extra\":\"\",\"_background_hover_size_mobile\":\"\",\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_video_link\":\"\",\"_background_hover_video_start\":\"\",\"_background_hover_video_end\":\"\",\"_background_hover_play_once\":\"\",\"_background_hover_play_on_mobile\":\"\",\"_background_hover_privacy_mode\":\"\",\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_background_hover_slideshow_loop\":\"yes\",\"_background_hover_slideshow_slide_duration\":5000,\"_background_hover_slideshow_slide_transition\":\"fade\",\"_background_hover_slideshow_transition_duration\":500,\"_background_hover_slideshow_background_size\":\"\",\"_background_hover_slideshow_background_size_widescreen\":\"\",\"_background_hover_slideshow_background_size_tablet_extra\":\"\",\"_background_hover_slideshow_background_size_tablet\":\"\",\"_background_hover_slideshow_background_size_mobile_extra\":\"\",\"_background_hover_slideshow_background_size_mobile\":\"\",\"_background_hover_slideshow_background_position\":\"\",\"_background_hover_slideshow_background_position_widescreen\":\"\",\"_background_hover_slideshow_background_position_tablet_extra\":\"\",\"_background_hover_slideshow_background_position_tablet\":\"\",\"_background_hover_slideshow_background_position_mobile_extra\":\"\",\"_background_hover_slideshow_background_position_mobile\":\"\",\"_background_hover_slideshow_lazyload\":\"\",\"_background_hover_slideshow_ken_burns\":\"\",\"_background_hover_slideshow_ken_burns_zoom_direction\":\"in\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_border\":\"\",\"_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_color\":\"\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_box_shadow_box_shadow_type\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_box_shadow_position\":\" \",\"_border_hover_border\":\"\",\"_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_hover_color\":\"\",\"_border_radius_hover\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_hover_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_box_shadow_hover_box_shadow_type\":\"\",\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_hover_box_shadow_position\":\" \",\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_switch\":\"\",\"_mask_shape\":\"circle\",\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_widescreen\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_tablet_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_tablet\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_mobile_extra\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_image_mobile\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_mask_size\":\"contain\",\"_mask_size_widescreen\":\"\",\"_mask_size_tablet_extra\":\"\",\"_mask_size_tablet\":\"\",\"_mask_size_mobile_extra\":\"\",\"_mask_size_mobile\":\"\",\"_mask_size_scale\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_mask_size_scale_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_size_scale_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position\":\"center center\",\"_mask_position_widescreen\":\"\",\"_mask_position_tablet_extra\":\"\",\"_mask_position_tablet\":\"\",\"_mask_position_mobile_extra\":\"\",\"_mask_position_mobile\":\"\",\"_mask_position_x\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_mask_position_x_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_mask_position_y_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_position_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_mask_repeat\":\"no-repeat\",\"_mask_repeat_widescreen\":\"\",\"_mask_repeat_tablet_extra\":\"\",\"_mask_repeat_tablet\":\"\",\"_mask_repeat_mobile_extra\":\"\",\"_mask_repeat_mobile\":\"\",\"hide_widescreen\":\"\",\"hide_desktop\":\"\",\"hide_tablet_extra\":\"\",\"hide_tablet\":\"\",\"hide_mobile_extra\":\"\",\"hide_mobile\":\"\",\"_attributes\":\"\",\"custom_css\":\"\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4655, 516, '_elementor_template_type', 'wp-page'),
(4656, 516, '_elementor_version', '3.34.2'),
(4657, 516, '_elementor_pro_version', '3.34.2'),
(4658, 516, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4659, 516, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\",\"id\":57,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle ANMELDELSER\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]}},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"HVORFOR V\\u00c6LGE CP NORDIC ApS?\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79206f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>N\\u00e5r du v\\u00e6lger CP NORDIC ApS, f\\u00e5r du:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"44023b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/teamwork_4546121.svg\",\"id\":472},\"library\":\"svg\"},\"title_text\":\"et ungt og engageret team\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/effective_1401921.svg\",\"id\":474},\"library\":\"svg\"},\"title_text\":\"fokus p\\u00e5 kvalitet og detaljer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/communication_18765280.svg\",\"id\":479},\"library\":\"svg\"},\"title_text\":\"\\u00e6rlig<br> r\\u00e5dgivning\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/brainstorming_11663441.svg\",\"id\":480},\"library\":\"svg\"},\"title_text\":\"gennemt\\u00e6nkte l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c0f2190\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"327bd23\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/like_3941426.svg\",\"id\":481},\"library\":\"svg\"},\"title_text\":\"arbejde udf\\u00f8rt med ansvar\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2bc9769\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi lover ikke mere, end vi kan holde \\u2013 men vi holder det, vi lover.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2a1d8fc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"986dd0f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9231a79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"31fa3c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f1b19ca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7391996\"}]},\"elements\":[{\"id\":\"547d40f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7d5adb7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1522ba7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e13c951\"}],\"pp_display_conditions\":[{\"_id\":\"1e39e5d\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"4bda72e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7d5adb7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1522ba7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e13c951\"}],\"pp_display_conditions\":[{\"_id\":\"1e39e5d\"}]},\"elements\":[{\"id\":\"07d0be8\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"8b3e3db\"},{\"custom_id\":\"field_2a35699\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"2a35699\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"f9dd88c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6323910b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor8\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/wood-background-1-e1738912619419.jpg\",\"id\":510,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"640d38eb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"75253fe5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"14202595\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Name\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"tel\",\"field_label\":\"Phone\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\"},{\"field_type\":\"select\",\"field_label\":\"Services Name\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Messages\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor4\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_background_color\":\"#494949CC\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD3D\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"mark_required\":\"yes\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6725, 714, '_elementor_edit_mode', 'builder'),
(6705, 712, '_elementor_edit_mode', 'builder'),
(6706, 712, '_elementor_template_type', 'wp-page'),
(6707, 712, '_elementor_version', '3.34.2'),
(6708, 712, '_elementor_pro_version', '3.34.2'),
(6709, 712, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6710, 712, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#111111\",\"background_overlay_color_b\":\"#000A66A3\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23428e4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Byggeri \\u2013 T\\u00f8mrerarbejde og tagd\\u00e6kning\",\"header_size\":\"h4\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"pp_display_conditions\":[{\"_id\":\"b159f8d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/kontakt\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"flex_direction_tablet\":\"column-reverse\",\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/om-os\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/tomrerarbejde\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\",\"flex_direction_tablet\":\"column\",\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\",\"id\":57,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"18631d2\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/tagdaekning\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}],\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle ANMELDELSER\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"HVORFOR V\\u00c6LGE CP NORDIC ApS?\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79206f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>N\\u00e5r du v\\u00e6lger CP NORDIC ApS, f\\u00e5r du:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"44023b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/teamwork_4546121.svg\",\"id\":472},\"library\":\"svg\"},\"title_text\":\"et ungt og engageret team\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/effective_1401921.svg\",\"id\":474},\"library\":\"svg\"},\"title_text\":\"fokus p\\u00e5 kvalitet og detaljer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/communication_18765280.svg\",\"id\":479},\"library\":\"svg\"},\"title_text\":\"\\u00e6rlig<br> r\\u00e5dgivning\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/brainstorming_11663441.svg\",\"id\":480},\"library\":\"svg\"},\"title_text\":\"gennemt\\u00e6nkte l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c0f2190\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"327bd23\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/like_3941426.svg\",\"id\":481},\"library\":\"svg\"},\"title_text\":\"arbejde udf\\u00f8rt med ansvar\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2bc9769\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi lover ikke mere, end vi kan holde \\u2013 men vi holder det, vi lover.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2a1d8fc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6323910b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor8\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/wood-background-1-e1738912619419.jpg\",\"id\":510,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]}},\"elements\":[{\"id\":\"640d38eb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"75253fe5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"641310a\",\"elType\":\"widget\",\"settings\":{\"title\":\"KONTAKT OS\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee94578\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fea00\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68d73b3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14202595\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Name\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"tel\",\"field_label\":\"Phone\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\"},{\"field_type\":\"select\",\"field_label\":\"Services Name\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Messages\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor4\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_background_color\":\"#383838CC\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Roboto\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"field_typography_font_weight\":\"400\",\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7233, 16, '_elementor_page_settings', 'a:0:{}'),
(7234, 16, '_elementor_controls_usage', 'a:5:{s:7:\"heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:3;s:11:\"header_size\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:3;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:3:{s:5:\"align\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_weight\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:3;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:5:{s:20:\"flex_justify_content\";i:2;s:5:\"width\";i:1;s:14:\"flex_direction\";i:2;s:8:\"flex_gap\";i:2;s:13:\"content_width\";i:2;}}s:5:\"style\";a:3:{s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:5;}s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}s:8:\"advanced\";a:3:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:5;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:2;s:18:\"animation_duration\";i:2;}s:14:\"section_layout\";a:1:{s:7:\"padding\";i:2;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;}}s:8:\"advanced\";a:2:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:1;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:1;}s:18:\"section_text_style\";a:4:{s:26:\"icon_typography_typography\";i:1;s:27:\"icon_typography_font_family\";i:1;s:25:\"icon_typography_font_size\";i:1;s:27:\"icon_typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}}'),
(7078, 668, '_elementor_page_settings', 'a:0:{}'),
(7079, 668, '_elementor_controls_usage', 'a:5:{s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}}}}s:4:\"html\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:4:\"html\";i:2;}}s:8:\"advanced\";a:4:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:2;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_responsive\";a:6:{s:15:\"hide_widescreen\";i:1;s:12:\"hide_desktop\";i:1;s:17:\"hide_tablet_extra\";i:1;s:11:\"hide_tablet\";i:1;s:17:\"hide_mobile_extra\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:2:{s:4:\"text\";i:1;s:4:\"link\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:1:{s:14:\"flex_direction\";i:1;}}s:5:\"style\";a:2:{s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:1;}s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}s:8:\"advanced\";a:2:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}s:14:\"section_layout\";a:1:{s:7:\"padding\";i:1;}}}}}'),
(6925, 729, '_elementor_edit_mode', 'builder'),
(6926, 729, '_elementor_template_type', 'wp-page'),
(6927, 729, '_elementor_version', '3.34.2'),
(6928, 729, '_elementor_pro_version', '3.34.2'),
(6929, 729, '_wp_page_template', 'default'),
(6930, 729, '_elementor_data', '[{\"id\":\"bc434c0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"85ae5f7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"329d021\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores tjenester\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"15f3e6c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"flex_direction_mobile_extra\":\"column\",\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20}},\"elements\":[{\"id\":\"1490168\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"968d8b2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"title_text\":\"T\\u00d8MRERARBEJDE\",\"description_text\":\"Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:\\n\\n\",\"title_size\":\"h4\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"662ea50\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/tomrerarbejde\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cc9bbae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"afb00f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"ef0f12b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"title_text\":\"TAGD\\u00c6KNING\",\"description_text\":\"Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.\",\"title_size\":\"h4\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"fc9e68b\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/tagdaekning\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cc9bbae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6071, 640, '_elementor_edit_mode', 'builder'),
(6072, 640, '_astra_content_layout_flag', 'disabled'),
(6094, 640, '_elementor_data', '[{\"id\":\"54f9a2a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"12f2944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"af763fd\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h5\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"2dc1012\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h5\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"2580a94\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h5\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"0ecc0a0\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h5\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"780d3ea\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\",\"id\":408,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"title_tag\":\"h5\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"d093334\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\",\"id\":411,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Specialtilpassede l\\u00f8sninger\",\"title_tag\":\"h5\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"1dfdaf6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8dece08\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"093a473\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f0c229\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"d6cadf7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}]},\"elements\":[{\"id\":\"06daa19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"348d6fc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"89c6a77\",\"elType\":\"widget\",\"settings\":{\"title\":\"Terrasser\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b8459\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Terrasser er et af vores kerneomr\\u00e5der. Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5 korrekt opbygning, stabilitet og finish, da det er afg\\u00f8rende for b\\u00e5de holdbarhed og udseende.<\\/p><p>Vi arbejder gerne med h\\u00e5rdttr\\u00e6sterrasser og foretr\\u00e6kker tr\\u00e6sorter som cumaru, ip\\u00e9 og thermobehandlet tr\\u00e6, da disse materialer har:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bad2068\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"h\\u00f8j naturlig holdbarhed\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"god modstandsdygtighed over for fugt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"et flot og tidl\\u00f8st udtryk\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f7f5cc7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Med korrekt montage giver disse tr\\u00e6sorter terrasser, der \\u00e6ldes p\\u00e6nt og kr\\u00e6ver minimal vedligeholdelse.<\\/p><p>Vi r\\u00e5dgiver altid om materialevalg, opbygning og vedligeholdelse, s\\u00e5 l\\u00f8sningen passer til b\\u00e5de huset, omgivelserne og kundens behov.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(6074, 640, 'ast-title-bar-display', 'disabled'),
(6075, 640, 'ast-featured-img', 'disabled'),
(6076, 640, '_elementor_template_type', 'wp-page'),
(6077, 640, '_elementor_version', '3.34.2'),
(6078, 640, '_elementor_pro_version', '3.34.2'),
(6080, 650, '_wp_page_template', 'default'),
(6082, 650, '_elementor_edit_mode', 'builder'),
(6083, 650, '_elementor_template_type', 'wp-page'),
(6084, 650, '_elementor_version', '3.34.2'),
(6085, 650, '_elementor_pro_version', '3.34.2'),
(6086, 650, '_elementor_page_settings', 'a:0:{}'),
(6087, 651, '_wp_page_template', 'default'),
(6089, 651, '_elementor_edit_mode', 'builder'),
(6090, 651, '_elementor_template_type', 'wp-page'),
(6091, 651, '_elementor_version', '3.34.2'),
(6092, 651, '_elementor_pro_version', '3.34.2'),
(6093, 651, '_elementor_page_settings', 'a:0:{}'),
(6095, 652, '_wp_page_template', 'default'),
(6097, 652, '_elementor_edit_mode', 'builder'),
(6098, 652, '_elementor_template_type', 'wp-page'),
(6099, 652, '_elementor_version', '3.34.2'),
(6100, 652, '_elementor_pro_version', '3.34.2');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6101, 652, '_elementor_data', '[{\"id\":\"54f9a2a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"12f2944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"af763fd\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h5\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"2dc1012\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h5\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"2580a94\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h5\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"0ecc0a0\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h5\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"780d3ea\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\",\"id\":408,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"title_tag\":\"h5\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"d093334\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\",\"id\":411,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Specialtilpassede l\\u00f8sninger\",\"title_tag\":\"h5\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"1dfdaf6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8dece08\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"093a473\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f0c229\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"d6cadf7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}]},\"elements\":[{\"id\":\"06daa19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"348d6fc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"89c6a77\",\"elType\":\"widget\",\"settings\":{\"title\":\"Terrasser\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b8459\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Terrasser er et af vores kerneomr\\u00e5der. Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5 korrekt opbygning, stabilitet og finish, da det er afg\\u00f8rende for b\\u00e5de holdbarhed og udseende.<\\/p><p>Vi arbejder gerne med h\\u00e5rdttr\\u00e6sterrasser og foretr\\u00e6kker tr\\u00e6sorter som cumaru, ip\\u00e9 og thermobehandlet tr\\u00e6, da disse materialer har:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bad2068\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"h\\u00f8j naturlig holdbarhed\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"god modstandsdygtighed over for fugt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"et flot og tidl\\u00f8st udtryk\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f7f5cc7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Med korrekt montage giver disse tr\\u00e6sorter terrasser, der \\u00e6ldes p\\u00e6nt og kr\\u00e6ver minimal vedligeholdelse.<\\/p><p>Vi r\\u00e5dgiver altid om materialevalg, opbygning og vedligeholdelse, s\\u00e5 l\\u00f8sningen passer til b\\u00e5de huset, omgivelserne og kundens behov.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(6956, 732, '_wp_page_template', 'default'),
(6957, 732, '_elementor_edit_mode', 'builder'),
(6958, 732, '_elementor_template_type', 'wp-page'),
(6959, 732, '_elementor_version', '3.34.2'),
(6960, 732, '_elementor_pro_version', '3.34.2'),
(6961, 732, '_elementor_data', '[{\"id\":\"54f9a2a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"12f2944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"af763fd\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h5\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"2dc1012\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h5\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"2580a94\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h5\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"0ecc0a0\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h5\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"780d3ea\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\",\"id\":408,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"title_tag\":\"h5\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"d093334\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\",\"id\":411,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Specialtilpassede l\\u00f8sninger\",\"title_tag\":\"h5\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"1dfdaf6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8dece08\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"093a473\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f0c229\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"d6cadf7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}]},\"elements\":[{\"id\":\"06daa19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"348d6fc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"89c6a77\",\"elType\":\"widget\",\"settings\":{\"title\":\"Terrasser\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b8459\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Terrasser er et af vores kerneomr\\u00e5der. Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5 korrekt opbygning, stabilitet og finish, da det er afg\\u00f8rende for b\\u00e5de holdbarhed og udseende.<\\/p><p>Vi arbejder gerne med h\\u00e5rdttr\\u00e6sterrasser og foretr\\u00e6kker tr\\u00e6sorter som cumaru, ip\\u00e9 og thermobehandlet tr\\u00e6, da disse materialer har:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bad2068\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"h\\u00f8j naturlig holdbarhed\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"god modstandsdygtighed over for fugt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"et flot og tidl\\u00f8st udtryk\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f7f5cc7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Med korrekt montage giver disse tr\\u00e6sorter terrasser, der \\u00e6ldes p\\u00e6nt og kr\\u00e6ver minimal vedligeholdelse.<\\/p><p>Vi r\\u00e5dgiver altid om materialevalg, opbygning og vedligeholdelse, s\\u00e5 l\\u00f8sningen passer til b\\u00e5de huset, omgivelserne og kundens behov.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(6110, 653, '_elementor_page_settings', 'a:0:{}'),
(6114, 654, '_elementor_edit_mode', 'builder'),
(6115, 654, '_elementor_template_type', 'wp-page'),
(6116, 654, '_elementor_version', '3.34.2'),
(6117, 654, '_elementor_pro_version', '3.34.2'),
(6118, 654, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6119, 654, '_elementor_data', '[{\"id\":\"3116faf\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d749f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e24a3a2\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h5\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"9d704bc\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h5\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"8fe03fe\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h5\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"ab28497\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h5\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"8e879e0\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"title_tag\":\"h5\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"765b7c7\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h5\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"9b641f7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"947c814\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a129ac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5fff8c9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"47616c5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}]},\"elements\":[{\"id\":\"d7c6a99\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f5cb5ac\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"732bc0a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Terrasser\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5be015b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Terrasser er et af vores kerneomr\\u00e5der. Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5 korrekt opbygning, stabilitet og finish, da det er afg\\u00f8rende for b\\u00e5de holdbarhed og udseende.<\\/p><p>Vi arbejder gerne med h\\u00e5rdttr\\u00e6sterrasser og foretr\\u00e6kker tr\\u00e6sorter som cumaru, ip\\u00e9 og thermobehandlet tr\\u00e6, da disse materialer har:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d75ad83\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"h\\u00f8j naturlig holdbarhed\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"god modstandsdygtighed over for fugt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"et flot og tidl\\u00f8st udtryk\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5089be2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Med korrekt montage giver disse tr\\u00e6sorter terrasser, der \\u00e6ldes p\\u00e6nt og kr\\u00e6ver minimal vedligeholdelse.<\\/p><p>Vi r\\u00e5dgiver altid om materialevalg, opbygning og vedligeholdelse, s\\u00e5 l\\u00f8sningen passer til b\\u00e5de huset, omgivelserne og kundens behov.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(6120, 654, '_elementor_page_settings', 'a:0:{}'),
(4700, 520, '_elementor_edit_mode', 'builder'),
(4701, 520, '_elementor_template_type', 'wp-page'),
(4702, 520, '_elementor_version', '3.34.2'),
(4703, 520, '_elementor_pro_version', '3.34.2'),
(4704, 520, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4705, 520, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\",\"id\":57,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle ANMELDELSER\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]}},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"HVORFOR V\\u00c6LGE CP NORDIC ApS?\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79206f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>N\\u00e5r du v\\u00e6lger CP NORDIC ApS, f\\u00e5r du:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"44023b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/teamwork_4546121.svg\",\"id\":472},\"library\":\"svg\"},\"title_text\":\"et ungt og engageret team\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/effective_1401921.svg\",\"id\":474},\"library\":\"svg\"},\"title_text\":\"fokus p\\u00e5 kvalitet og detaljer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/communication_18765280.svg\",\"id\":479},\"library\":\"svg\"},\"title_text\":\"\\u00e6rlig<br> r\\u00e5dgivning\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/brainstorming_11663441.svg\",\"id\":480},\"library\":\"svg\"},\"title_text\":\"gennemt\\u00e6nkte l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c0f2190\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"327bd23\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/like_3941426.svg\",\"id\":481},\"library\":\"svg\"},\"title_text\":\"arbejde udf\\u00f8rt med ansvar\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2bc9769\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi lover ikke mere, end vi kan holde \\u2013 men vi holder det, vi lover.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2a1d8fc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"986dd0f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9231a79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"31fa3c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f1b19ca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7391996\"}]},\"elements\":[{\"id\":\"547d40f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7d5adb7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1522ba7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e13c951\"}],\"pp_display_conditions\":[{\"_id\":\"1e39e5d\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"4bda72e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7d5adb7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1522ba7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e13c951\"}],\"pp_display_conditions\":[{\"_id\":\"1e39e5d\"}]},\"elements\":[{\"id\":\"07d0be8\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"8b3e3db\"},{\"custom_id\":\"field_2a35699\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"2a35699\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"f9dd88c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6323910b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor8\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/wood-background-1-e1738912619419.jpg\",\"id\":510,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"640d38eb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"75253fe5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"14202595\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Name\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"tel\",\"field_label\":\"Phone\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\"},{\"field_type\":\"select\",\"field_label\":\"Services Name\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Messages\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor4\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_background_color\":\"#494949CC\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"mark_required\":\"yes\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4674, 517, '_elementor_page_settings', 'a:0:{}'),
(7506, 783, '_elementor_page_settings', 'a:0:{}'),
(7511, 784, '_elementor_edit_mode', 'builder'),
(7512, 784, '_elementor_template_type', 'wp-page'),
(7513, 784, '_elementor_version', '3.34.2'),
(7514, 784, '_elementor_pro_version', '3.34.2'),
(7515, 784, '_elementor_data', '[{\"id\":\"013c01d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"fe90551\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column-reverse\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"84d3850\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#F0F5FA\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"ec74b0c\",\"elType\":\"widget\",\"settings\":{\"title\":\"F\\u00e5 et vejledende prisoverslag\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"aaa964c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4707f87\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"Prisberegner\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Navn\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"select\",\"field_label\":\"Arbejdstype\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nUdskiftning og montering af d\\u00f8re og vinduer\\nSpecialtilpassede l\\u00f8sninger\\nTAGD\\u00c6KNING\"},{\"field_type\":\"select\",\"field_label\":\"St\\u00f8rrelse \\/ m\\u00e6ngde\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Lille\\nMellem \\nStor\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"field_type\":\"select\",\"field_label\":\"Valgfrit kompleksitetsniveau\",\"required\":\"true\",\"custom_id\":\"field_cacceaa\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Lav \\nMellem \\nH\\u00f8j\",\"_id\":\"cacceaa\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Beskeder\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"},\"button_background_color\":\"#507eff\",\"button_background_hover_color\":\"#000a66\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Roboto\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"field_typography_font_weight\":\"400\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"label_color\":\"#1e293b\",\"_background_color\":\"#F0F5FA\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(7551, 760, '_elementor_page_settings', 'a:0:{}'),
(7552, 760, '_elementor_controls_usage', 'a:3:{s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:4:\"form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:4:{s:19:\"section_form_fields\";a:3:{s:9:\"form_name\";i:1;s:11:\"form_fields\";i:1;s:10:\"input_size\";i:1;}s:15:\"section_buttons\";a:1:{s:11:\"button_size\";i:1;}s:13:\"section_email\";a:4:{s:13:\"form_metadata\";i:1;s:13:\"email_subject\";i:1;s:15:\"email_from_name\";i:1;s:14:\"email_reply_to\";i:1;}s:15:\"section_email_2\";a:2:{s:15:\"email_subject_2\";i:1;s:17:\"email_from_name_2\";i:1;}}s:8:\"advanced\";a:4:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:15:\"_section_border\";a:3:{s:14:\"_border_border\";i:1;s:13:\"_border_width\";i:1;s:13:\"_border_color\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_form_style\";a:8:{s:10:\"column_gap\";i:1;s:7:\"row_gap\";i:1;s:13:\"label_spacing\";i:1;s:27:\"label_typography_typography\";i:1;s:28:\"label_typography_font_family\";i:1;s:26:\"label_typography_font_size\";i:1;s:28:\"label_typography_font_weight\";i:1;s:11:\"label_color\";i:1;}s:19:\"section_field_style\";a:6:{s:18:\"field_border_color\";i:1;s:19:\"field_border_radius\";i:1;s:27:\"field_typography_typography\";i:1;s:28:\"field_typography_font_family\";i:1;s:26:\"field_typography_font_size\";i:1;s:28:\"field_typography_font_weight\";i:1;}s:20:\"section_button_style\";a:4:{s:20:\"button_border_radius\";i:1;s:23:\"button_background_color\";i:1;s:29:\"button_background_hover_color\";i:1;s:19:\"button_text_padding\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:4:{s:13:\"content_width\";i:2;s:5:\"width\";i:1;s:14:\"flex_direction\";i:2;s:20:\"flex_justify_content\";i:1;}}s:5:\"style\";a:2:{s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:3;}s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:1;}}s:8:\"advanced\";a:3:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:3;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:1;s:18:\"animation_duration\";i:1;}s:14:\"section_layout\";a:1:{s:7:\"padding\";i:2;}}}}}'),
(7529, 785, '_elementor_page_settings', 'a:0:{}'),
(7532, 786, '_wp_page_template', 'elementor_header_footer'),
(7534, 786, '_elementor_edit_mode', 'builder'),
(7535, 786, '_elementor_template_type', 'wp-page'),
(7536, 786, '_elementor_version', '3.34.2'),
(7537, 786, '_elementor_pro_version', '3.34.2'),
(7538, 786, '_elementor_data', '[{\"id\":\"013c01d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"fe90551\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column-reverse\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"84d3850\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#F0F5FA\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"ec74b0c\",\"elType\":\"widget\",\"settings\":{\"title\":\"F\\u00e5 et vejledende prisoverslag\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"aaa964c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4707f87\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"Prisberegner\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Navn\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"select\",\"field_label\":\"Arbejdstype\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nUdskiftning og montering af d\\u00f8re og vinduer\\nSpecialtilpassede l\\u00f8sninger\\nTAGD\\u00c6KNING\"},{\"field_type\":\"select\",\"field_label\":\"St\\u00f8rrelse \\/ m\\u00e6ngde\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Lille\\nMellem \\nStor\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"field_type\":\"select\",\"field_label\":\"Valgfrit kompleksitetsniveau\",\"required\":\"true\",\"custom_id\":\"field_cacceaa\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Lav \\nMellem \\nH\\u00f8j\",\"_id\":\"cacceaa\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Beskeder\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"},\"button_background_color\":\"#507eff\",\"button_background_hover_color\":\"#000a66\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Roboto\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"field_typography_font_weight\":\"400\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"label_color\":\"#1e293b\",\"_background_color\":\"#F0F5FA\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(7539, 786, '_elementor_page_settings', 'a:0:{}'),
(7542, 787, '_wp_page_template', 'elementor_header_footer'),
(7544, 787, '_elementor_edit_mode', 'builder'),
(4677, 518, '_elementor_edit_mode', 'builder'),
(4678, 518, '_elementor_template_type', 'wp-page'),
(4679, 518, '_elementor_version', '3.34.2'),
(4680, 518, '_elementor_pro_version', '3.34.2'),
(4681, 518, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4682, 518, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\",\"id\":57,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle ANMELDELSER\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]}},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"HVORFOR V\\u00c6LGE CP NORDIC ApS?\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79206f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>N\\u00e5r du v\\u00e6lger CP NORDIC ApS, f\\u00e5r du:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"44023b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/teamwork_4546121.svg\",\"id\":472},\"library\":\"svg\"},\"title_text\":\"et ungt og engageret team\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/effective_1401921.svg\",\"id\":474},\"library\":\"svg\"},\"title_text\":\"fokus p\\u00e5 kvalitet og detaljer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/communication_18765280.svg\",\"id\":479},\"library\":\"svg\"},\"title_text\":\"\\u00e6rlig<br> r\\u00e5dgivning\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/brainstorming_11663441.svg\",\"id\":480},\"library\":\"svg\"},\"title_text\":\"gennemt\\u00e6nkte l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c0f2190\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"327bd23\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/like_3941426.svg\",\"id\":481},\"library\":\"svg\"},\"title_text\":\"arbejde udf\\u00f8rt med ansvar\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2bc9769\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi lover ikke mere, end vi kan holde \\u2013 men vi holder det, vi lover.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2a1d8fc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"986dd0f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9231a79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"31fa3c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f1b19ca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7391996\"}]},\"elements\":[{\"id\":\"547d40f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7d5adb7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1522ba7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e13c951\"}],\"pp_display_conditions\":[{\"_id\":\"1e39e5d\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"4bda72e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7d5adb7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1522ba7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e13c951\"}],\"pp_display_conditions\":[{\"_id\":\"1e39e5d\"}]},\"elements\":[{\"id\":\"07d0be8\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"8b3e3db\"},{\"custom_id\":\"field_2a35699\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"2a35699\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"f9dd88c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6323910b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor8\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/wood-background-1-e1738912619419.jpg\",\"id\":510,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"640d38eb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"75253fe5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"14202595\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Name\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"tel\",\"field_label\":\"Phone\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\"},{\"field_type\":\"select\",\"field_label\":\"Services Name\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Messages\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor4\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_background_color\":\"#494949CC\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD3D\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"mark_required\":\"yes\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4684, 518, '_elementor_page_settings', 'a:0:{}'),
(7270, 760, '_edit_last', '1'),
(7271, 760, '_edit_lock', '1771073708:1'),
(7272, 760, '_wp_page_template', 'elementor_header_footer'),
(7320, 760, '_elementor_data', '[{\"id\":\"013c01d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"fe90551\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column-reverse\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"84d3850\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#F0F5FA\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"ec74b0c\",\"elType\":\"widget\",\"settings\":{\"title\":\"F\\u00e5 et vejledende prisoverslag\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"aaa964c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4707f87\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"Prisberegner\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Navn\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"select\",\"field_label\":\"Arbejdstype\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nUdskiftning og montering af d\\u00f8re og vinduer\\nSpecialtilpassede l\\u00f8sninger\\nTAGD\\u00c6KNING\"},{\"field_type\":\"select\",\"field_label\":\"St\\u00f8rrelse \\/ m\\u00e6ngde\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Lille\\nMellem \\nStor\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"field_type\":\"select\",\"field_label\":\"Valgfrit kompleksitetsniveau\",\"required\":\"true\",\"custom_id\":\"field_cacceaa\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Lav \\nMellem \\nH\\u00f8j\",\"_id\":\"cacceaa\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Beskeder\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"},\"button_background_color\":\"#507eff\",\"button_background_hover_color\":\"#000a66\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"F\\u00e5 et vejledende prisoverslag \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Roboto\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"field_typography_font_weight\":\"400\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"email_reply_to\":\"field_6986e48\",\"label_color\":\"#1e293b\",\"_background_color\":\"#F0F5FA\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(7279, 760, 'ast-featured-img', 'disabled'),
(7275, 760, 'site-sidebar-layout', 'no-sidebar'),
(7276, 760, 'ast-site-content-layout', 'full-width-container'),
(7277, 760, 'site-content-style', 'default'),
(7278, 760, 'site-sidebar-style', 'default'),
(7280, 760, 'astra-migrate-meta-layouts', 'set'),
(7281, 760, 'ast-breadcrumbs-content', 'disabled'),
(7282, 760, 'theme-transparent-header-meta', 'default'),
(7283, 762, '_menu_item_type', 'post_type'),
(7284, 762, '_menu_item_menu_item_parent', '0'),
(7285, 762, '_menu_item_object_id', '760'),
(7286, 762, '_menu_item_object', 'page'),
(7287, 762, '_menu_item_target', ''),
(7288, 762, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(7289, 762, '_menu_item_xfn', ''),
(7290, 762, '_menu_item_url', ''),
(7297, 23, '_wp_old_date', '2026-01-26'),
(7292, 21, '_wp_old_date', '2026-01-26'),
(7293, 25, '_wp_old_date', '2026-01-26'),
(7294, 645, '_wp_old_date', '2026-01-26'),
(7295, 644, '_wp_old_date', '2026-01-26'),
(7296, 670, '_wp_old_date', '2026-01-26'),
(7299, 760, '_elementor_edit_mode', 'builder'),
(7300, 760, '_astra_content_layout_flag', 'disabled'),
(7301, 760, 'ast-title-bar-display', 'disabled'),
(7302, 760, '_elementor_template_type', 'wp-page'),
(7303, 760, '_elementor_version', '3.34.2'),
(7304, 760, '_elementor_pro_version', '3.34.2'),
(7306, 763, '_wp_page_template', 'elementor_header_footer'),
(7308, 763, '_elementor_edit_mode', 'builder'),
(7309, 763, '_elementor_template_type', 'wp-page'),
(7310, 763, '_elementor_version', '3.34.2'),
(7311, 763, '_elementor_pro_version', '3.34.2'),
(7312, 763, '_elementor_page_settings', 'a:0:{}'),
(7313, 764, '_wp_page_template', 'elementor_header_footer'),
(7315, 764, '_elementor_edit_mode', 'builder'),
(7316, 764, '_elementor_template_type', 'wp-page'),
(7317, 764, '_elementor_version', '3.34.2'),
(7318, 764, '_elementor_pro_version', '3.34.2'),
(7319, 764, '_elementor_page_settings', 'a:0:{}'),
(7393, 772, '_wp_page_template', 'elementor_header_footer'),
(7395, 772, '_elementor_edit_mode', 'builder'),
(7396, 772, '_elementor_template_type', 'wp-page'),
(7397, 772, '_elementor_version', '3.34.2'),
(7398, 772, '_elementor_pro_version', '3.34.2'),
(7399, 772, '_elementor_data', '[{\"id\":\"013c01d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"fe90551\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column-reverse\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"84d3850\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#F0F5FA\"},\"elements\":[{\"id\":\"4707f87\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Navn\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"select\",\"field_label\":\"Arbejdstype\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nUdskiftning og montering af d\\u00f8re og vinduer\\nSpecialtilpassede l\\u00f8sninger\\nTAGD\\u00c6KNING\"},{\"field_type\":\"select\",\"field_label\":\"St\\u00f8rrelse \\/ m\\u00e6ngde\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Lille\\nMellem \\nStor\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Beskeder\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"},\"button_background_color\":\"#507eff\",\"button_background_hover_color\":\"#000a66\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Roboto\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"field_typography_font_weight\":\"400\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"label_color\":\"#1e293b\",\"_background_color\":\"#F0F5FA\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(7411, 773, '_elementor_page_settings', 'a:0:{}'),
(7412, 774, '_wp_page_template', 'elementor_header_footer'),
(7414, 774, '_elementor_edit_mode', 'builder'),
(7415, 774, '_elementor_template_type', 'wp-page'),
(7416, 774, '_elementor_version', '3.34.2'),
(7417, 774, '_elementor_pro_version', '3.34.2'),
(7418, 774, '_elementor_data', '[{\"id\":\"013c01d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"fe90551\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column-reverse\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"84d3850\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#F0F5FA\"},\"elements\":[{\"id\":\"4707f87\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Navn\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"select\",\"field_label\":\"Arbejdstype\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nUdskiftning og montering af d\\u00f8re og vinduer\\nSpecialtilpassede l\\u00f8sninger\\nTAGD\\u00c6KNING\"},{\"field_type\":\"select\",\"field_label\":\"St\\u00f8rrelse \\/ m\\u00e6ngde\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Lille\\nMellem \\nStor\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Beskeder\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"},\"button_background_color\":\"#507eff\",\"button_background_hover_color\":\"#000a66\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Roboto\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"field_typography_font_weight\":\"400\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"label_color\":\"#1e293b\",\"_background_color\":\"#F0F5FA\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(7419, 774, '_elementor_page_settings', 'a:0:{}'),
(7420, 775, '_wp_page_template', 'elementor_header_footer'),
(7422, 775, '_elementor_edit_mode', 'builder'),
(7423, 775, '_elementor_template_type', 'wp-page'),
(7424, 775, '_elementor_version', '3.34.2'),
(7425, 775, '_elementor_pro_version', '3.34.2'),
(7426, 775, '_elementor_data', '[{\"id\":\"013c01d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"fe90551\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column-reverse\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"84d3850\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#F0F5FA\"},\"elements\":[{\"id\":\"4707f87\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Navn\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"select\",\"field_label\":\"Arbejdstype\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nUdskiftning og montering af d\\u00f8re og vinduer\\nSpecialtilpassede l\\u00f8sninger\\nTAGD\\u00c6KNING\"},{\"field_type\":\"select\",\"field_label\":\"St\\u00f8rrelse \\/ m\\u00e6ngde\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Lille\\nMellem \\nStor\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"field_type\":\"select\",\"field_label\":\"Valgfrit kompleksitetsniveau\",\"required\":\"true\",\"custom_id\":\"field_cacceaa\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Lav \\nMellem \\nH\\u00f8j\",\"_id\":\"cacceaa\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Beskeder\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"},\"button_background_color\":\"#507eff\",\"button_background_hover_color\":\"#000a66\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Roboto\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"field_typography_font_weight\":\"400\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"label_color\":\"#1e293b\",\"_background_color\":\"#F0F5FA\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(7445, 778, '_wp_page_template', 'elementor_header_footer'),
(7429, 776, '_wp_page_template', 'elementor_header_footer'),
(7431, 776, '_elementor_edit_mode', 'builder'),
(7432, 776, '_elementor_template_type', 'wp-page'),
(7433, 776, '_elementor_version', '3.34.2'),
(7434, 776, '_elementor_pro_version', '3.34.2'),
(7435, 776, '_elementor_data', '[{\"id\":\"013c01d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"fe90551\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column-reverse\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"84d3850\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#F0F5FA\"},\"elements\":[{\"id\":\"4707f87\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Navn\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"select\",\"field_label\":\"Arbejdstype\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nUdskiftning og montering af d\\u00f8re og vinduer\\nSpecialtilpassede l\\u00f8sninger\\nTAGD\\u00c6KNING\"},{\"field_type\":\"select\",\"field_label\":\"St\\u00f8rrelse \\/ m\\u00e6ngde\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Lille\\nMellem \\nStor\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"field_type\":\"select\",\"field_label\":\"Valgfrit kompleksitetsniveau\",\"required\":\"true\",\"custom_id\":\"field_cacceaa\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Lav \\nMellem \\nH\\u00f8j\",\"_id\":\"cacceaa\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Beskeder\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"},\"button_background_color\":\"#507eff\",\"button_background_hover_color\":\"#000a66\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Roboto\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"field_typography_font_weight\":\"400\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"label_color\":\"#1e293b\",\"_background_color\":\"#F0F5FA\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(7436, 776, '_elementor_page_settings', 'a:0:{}'),
(7437, 777, '_wp_page_template', 'elementor_header_footer'),
(7439, 777, '_elementor_edit_mode', 'builder'),
(7440, 777, '_elementor_template_type', 'wp-page'),
(7441, 777, '_elementor_version', '3.34.2'),
(7442, 777, '_elementor_pro_version', '3.34.2');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7443, 777, '_elementor_data', '[{\"id\":\"013c01d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"fe90551\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column-reverse\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"84d3850\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#F0F5FA\"},\"elements\":[{\"id\":\"4707f87\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Navn\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"select\",\"field_label\":\"Arbejdstype\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nUdskiftning og montering af d\\u00f8re og vinduer\\nSpecialtilpassede l\\u00f8sninger\\nTAGD\\u00c6KNING\"},{\"field_type\":\"select\",\"field_label\":\"St\\u00f8rrelse \\/ m\\u00e6ngde\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Lille\\nMellem \\nStor\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"field_type\":\"select\",\"field_label\":\"Valgfrit kompleksitetsniveau\",\"required\":\"true\",\"custom_id\":\"field_cacceaa\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Lav \\nMellem \\nH\\u00f8j\",\"_id\":\"cacceaa\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Beskeder\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"},\"button_background_color\":\"#507eff\",\"button_background_hover_color\":\"#000a66\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Roboto\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"field_typography_font_weight\":\"400\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"label_color\":\"#1e293b\",\"_background_color\":\"#F0F5FA\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(7444, 777, '_elementor_page_settings', 'a:0:{}'),
(7447, 778, '_elementor_edit_mode', 'builder'),
(7448, 778, '_elementor_template_type', 'wp-page'),
(7449, 778, '_elementor_version', '3.34.2'),
(7450, 778, '_elementor_pro_version', '3.34.2'),
(7451, 778, '_elementor_data', '[{\"id\":\"013c01d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"fe90551\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column-reverse\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"84d3850\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#F0F5FA\"},\"elements\":[{\"id\":\"4707f87\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"Prisberegner\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Navn\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"select\",\"field_label\":\"Arbejdstype\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nUdskiftning og montering af d\\u00f8re og vinduer\\nSpecialtilpassede l\\u00f8sninger\\nTAGD\\u00c6KNING\"},{\"field_type\":\"select\",\"field_label\":\"St\\u00f8rrelse \\/ m\\u00e6ngde\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Lille\\nMellem \\nStor\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"field_type\":\"select\",\"field_label\":\"Valgfrit kompleksitetsniveau\",\"required\":\"true\",\"custom_id\":\"field_cacceaa\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Lav \\nMellem \\nH\\u00f8j\",\"_id\":\"cacceaa\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Beskeder\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"},\"button_background_color\":\"#507eff\",\"button_background_hover_color\":\"#000a66\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Roboto\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"field_typography_font_weight\":\"400\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"label_color\":\"#1e293b\",\"_background_color\":\"#F0F5FA\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(7456, 779, '_wp_page_template', 'elementor_header_footer'),
(7458, 779, '_elementor_edit_mode', 'builder'),
(7459, 779, '_elementor_template_type', 'wp-page'),
(7460, 779, '_elementor_version', '3.34.2'),
(7461, 779, '_elementor_pro_version', '3.34.2'),
(7462, 779, '_elementor_data', '[{\"id\":\"013c01d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"fe90551\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column-reverse\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"84d3850\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#F0F5FA\"},\"elements\":[{\"id\":\"4707f87\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"Prisberegner\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Navn\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"select\",\"field_label\":\"Arbejdstype\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nUdskiftning og montering af d\\u00f8re og vinduer\\nSpecialtilpassede l\\u00f8sninger\\nTAGD\\u00c6KNING\"},{\"field_type\":\"select\",\"field_label\":\"St\\u00f8rrelse \\/ m\\u00e6ngde\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Lille\\nMellem \\nStor\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"field_type\":\"select\",\"field_label\":\"Valgfrit kompleksitetsniveau\",\"required\":\"true\",\"custom_id\":\"field_cacceaa\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Lav \\nMellem \\nH\\u00f8j\",\"_id\":\"cacceaa\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Beskeder\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"},\"button_background_color\":\"#507eff\",\"button_background_hover_color\":\"#000a66\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Roboto\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"field_typography_font_weight\":\"400\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"label_color\":\"#1e293b\",\"_background_color\":\"#F0F5FA\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(7509, 784, '_wp_page_template', 'elementor_header_footer'),
(7489, 782, '_wp_page_template', 'elementor_header_footer'),
(7491, 782, '_elementor_edit_mode', 'builder'),
(7492, 782, '_elementor_template_type', 'wp-page'),
(7493, 782, '_elementor_version', '3.34.2'),
(7494, 782, '_elementor_pro_version', '3.34.2'),
(7495, 782, '_elementor_data', '[{\"id\":\"013c01d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"fe90551\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column-reverse\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"84d3850\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#F0F5FA\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"15\",\"bottom\":\"45\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"ec74b0c\",\"elType\":\"widget\",\"settings\":{\"title\":\"F\\u00e5 et vejledende prisoverslag\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"aaa964c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4707f87\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"Prisberegner\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Navn\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"select\",\"field_label\":\"Arbejdstype\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nUdskiftning og montering af d\\u00f8re og vinduer\\nSpecialtilpassede l\\u00f8sninger\\nTAGD\\u00c6KNING\"},{\"field_type\":\"select\",\"field_label\":\"St\\u00f8rrelse \\/ m\\u00e6ngde\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Lille\\nMellem \\nStor\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"field_type\":\"select\",\"field_label\":\"Valgfrit kompleksitetsniveau\",\"required\":\"true\",\"custom_id\":\"field_cacceaa\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Lav \\nMellem \\nH\\u00f8j\",\"_id\":\"cacceaa\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Beskeder\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"},\"button_background_color\":\"#507eff\",\"button_background_hover_color\":\"#000a66\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Roboto\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"field_typography_font_weight\":\"400\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"label_color\":\"#1e293b\",\"_background_color\":\"#F0F5FA\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(7463, 779, '_elementor_page_settings', 'a:0:{}'),
(7466, 780, '_wp_page_template', 'elementor_header_footer'),
(7468, 780, '_elementor_edit_mode', 'builder'),
(7469, 780, '_elementor_template_type', 'wp-page'),
(7470, 780, '_elementor_version', '3.34.2'),
(7471, 780, '_elementor_pro_version', '3.34.2'),
(7472, 780, '_elementor_data', '[{\"id\":\"013c01d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"fe90551\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column-reverse\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"84d3850\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#F0F5FA\"},\"elements\":[{\"id\":\"4707f87\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"Prisberegner\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Navn\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"select\",\"field_label\":\"Arbejdstype\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nUdskiftning og montering af d\\u00f8re og vinduer\\nSpecialtilpassede l\\u00f8sninger\\nTAGD\\u00c6KNING\"},{\"field_type\":\"select\",\"field_label\":\"St\\u00f8rrelse \\/ m\\u00e6ngde\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Lille\\nMellem \\nStor\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"field_type\":\"select\",\"field_label\":\"Valgfrit kompleksitetsniveau\",\"required\":\"true\",\"custom_id\":\"field_cacceaa\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Lav \\nMellem \\nH\\u00f8j\",\"_id\":\"cacceaa\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Beskeder\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"},\"button_background_color\":\"#507eff\",\"button_background_hover_color\":\"#000a66\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Roboto\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"field_typography_font_weight\":\"400\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"label_color\":\"#1e293b\",\"_background_color\":\"#F0F5FA\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(4688, 519, '_elementor_template_type', 'wp-page'),
(4689, 519, '_elementor_version', '3.34.2'),
(4690, 519, '_elementor_pro_version', '3.34.2'),
(4691, 519, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4692, 519, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\",\"id\":57,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle ANMELDELSER\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]}},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"HVORFOR V\\u00c6LGE CP NORDIC ApS?\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79206f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>N\\u00e5r du v\\u00e6lger CP NORDIC ApS, f\\u00e5r du:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"44023b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/teamwork_4546121.svg\",\"id\":472},\"library\":\"svg\"},\"title_text\":\"et ungt og engageret team\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/effective_1401921.svg\",\"id\":474},\"library\":\"svg\"},\"title_text\":\"fokus p\\u00e5 kvalitet og detaljer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/communication_18765280.svg\",\"id\":479},\"library\":\"svg\"},\"title_text\":\"\\u00e6rlig<br> r\\u00e5dgivning\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/brainstorming_11663441.svg\",\"id\":480},\"library\":\"svg\"},\"title_text\":\"gennemt\\u00e6nkte l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c0f2190\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"327bd23\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/like_3941426.svg\",\"id\":481},\"library\":\"svg\"},\"title_text\":\"arbejde udf\\u00f8rt med ansvar\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2bc9769\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi lover ikke mere, end vi kan holde \\u2013 men vi holder det, vi lover.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2a1d8fc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"986dd0f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9231a79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"31fa3c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f1b19ca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7391996\"}]},\"elements\":[{\"id\":\"547d40f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7d5adb7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1522ba7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e13c951\"}],\"pp_display_conditions\":[{\"_id\":\"1e39e5d\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"4bda72e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7d5adb7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1522ba7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e13c951\"}],\"pp_display_conditions\":[{\"_id\":\"1e39e5d\"}]},\"elements\":[{\"id\":\"07d0be8\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"8b3e3db\"},{\"custom_id\":\"field_2a35699\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"2a35699\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"f9dd88c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6323910b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor8\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/wood-background-1-e1738912619419.jpg\",\"id\":510,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"640d38eb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"75253fe5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"14202595\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Name\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"tel\",\"field_label\":\"Phone\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\"},{\"field_type\":\"select\",\"field_label\":\"Services Name\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Messages\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor4\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_background_color\":\"#494949CC\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"mark_required\":\"yes\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6138, 642, '_elementor_edit_mode', 'builder'),
(6139, 642, '_astra_content_layout_flag', 'disabled'),
(6161, 642, '_elementor_data', '[{\"id\":\"da47fa9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"73e548d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}]},\"elements\":[{\"id\":\"0630135\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"0b858af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"9cd53aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba1f56d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e0acf42\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1ebba86\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9f06d27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"af8a159\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"background_color\":\"#F2EEEC6E\",\"flex_direction_tablet\":\"column-reverse\",\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"ae9dcfe\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f8070ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPECIALL\\u00d8SNINGER\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fa656d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi har en s\\u00e6rlig interesse for opgaver, der kr\\u00e6ver noget ekstra. N\\u00e5r standardl\\u00f8sninger ikke passer, finder vi l\\u00f8sninger, der g\\u00f8r.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7fce677\",\"elType\":\"widget\",\"settings\":{\"title\":\"Det kan v\\u00e6re:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c0ffdf0\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"teknisk kr\\u00e6vende detaljer\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"specialtilpassede konstruktioner\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"samspil mellem flere materialer\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"l\\u00f8sninger, der kr\\u00e6ver ekstra omtanke\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"07daf97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Her kommer vores faglighed og erfaring virkelig i spil.\",\"pp_display_conditions\":[{\"_id\":\"525a929\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"34e27a1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"background_color\":\"#F2EEEC6E\",\"flex_direction_tablet\":\"column-reverse\",\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"fb7865a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0076979\",\"elType\":\"widget\",\"settings\":{\"title\":\"KVALITET FREM FOR KVANTITET\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9f9cbcc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tager bevidst et begr\\u00e6nset antal opgaver ad gangen. Det giver os mulighed for at:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b0e7d9d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"bevare overblik\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"sikre h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"v\\u00e6re tilg\\u00e6ngelige for kunden\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"f\\u00f8lge op p\\u00e5 detaljerne\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f53b930\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Vi tror p\\u00e5, at godt h\\u00e5ndv\\u00e6rk kr\\u00e6ver tid og fokus.\",\"pp_display_conditions\":[{\"_id\":\"525a929\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(6141, 642, 'ast-title-bar-display', 'disabled'),
(6142, 642, 'ast-featured-img', 'disabled'),
(6143, 642, '_elementor_template_type', 'wp-page'),
(6144, 642, '_elementor_version', '3.34.2'),
(6145, 642, '_elementor_pro_version', '3.34.2'),
(6147, 656, '_wp_page_template', 'default'),
(6149, 656, '_elementor_edit_mode', 'builder'),
(6150, 656, '_elementor_template_type', 'wp-page'),
(6151, 656, '_elementor_version', '3.34.2'),
(6152, 656, '_elementor_pro_version', '3.34.2'),
(6153, 656, '_elementor_page_settings', 'a:0:{}'),
(6154, 657, '_wp_page_template', 'default'),
(6156, 657, '_elementor_edit_mode', 'builder'),
(6157, 657, '_elementor_template_type', 'wp-page'),
(6158, 657, '_elementor_version', '3.34.2'),
(6159, 657, '_elementor_pro_version', '3.34.2'),
(6160, 657, '_elementor_page_settings', 'a:0:{}'),
(6187, 661, '_wp_page_template', 'default'),
(6162, 658, '_wp_page_template', 'default'),
(6164, 658, '_elementor_edit_mode', 'builder'),
(6165, 658, '_elementor_template_type', 'wp-page'),
(6166, 658, '_elementor_version', '3.34.2'),
(6167, 658, '_elementor_pro_version', '3.34.2'),
(6168, 658, '_elementor_data', '[{\"id\":\"da47fa9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"73e548d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}]},\"elements\":[{\"id\":\"0630135\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"0b858af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"9cd53aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba1f56d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e0acf42\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1ebba86\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9f06d27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(6171, 659, '_wp_page_template', 'default'),
(6173, 659, '_elementor_edit_mode', 'builder'),
(6174, 659, '_elementor_template_type', 'wp-page'),
(6175, 659, '_elementor_version', '3.34.2'),
(6176, 659, '_elementor_pro_version', '3.34.2'),
(6177, 659, '_elementor_data', '[{\"id\":\"da47fa9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"73e548d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}]},\"elements\":[{\"id\":\"0630135\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"0b858af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"9cd53aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba1f56d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e0acf42\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1ebba86\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9f06d27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(6178, 659, '_elementor_page_settings', 'a:0:{}'),
(6179, 660, '_wp_page_template', 'default'),
(6181, 660, '_elementor_edit_mode', 'builder'),
(6182, 660, '_elementor_template_type', 'wp-page'),
(6183, 660, '_elementor_version', '3.34.2'),
(6184, 660, '_elementor_pro_version', '3.34.2'),
(6185, 660, '_elementor_data', '[{\"id\":\"da47fa9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"73e548d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}]},\"elements\":[{\"id\":\"0630135\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"0b858af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"9cd53aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba1f56d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e0acf42\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1ebba86\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9f06d27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(6186, 660, '_elementor_page_settings', 'a:0:{}'),
(7117, 747, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7118, 747, '_elementor_data', '[{\"id\":\"1e332a51\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1600399\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3f02c7e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"69bbd48\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9bbb579\",\"pp_condition_date_time_before_value\":\"2024-06-13 12:14\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"id\":\"\",\"url\":\"\"},\"background_position\":\"bottom right\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"\"},\"background_overlay_position\":\"top left\",\"background_overlay_attachment\":\"scroll\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#F8F8F8\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"a4da8ee\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8791aed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe09348\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"935d9bd\"}],\"pp_display_conditions\":[{\"_id\":\"faf5fd2\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}]},\"elements\":[{\"id\":\"49d71336\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kontaktoplysninger\",\"align\":\"left\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"802d5d7\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"750c99c1\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"editor\":\"Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid\\nvelkommen til at kontakte os for en uforpligtende snak.\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c93489c\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"33ff5776\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"def43cb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c8cfb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e7a215\"}],\"pp_display_conditions\":[{\"_id\":\"daade15\",\"pp_condition_date_time_before_value\":\"2024-06-13 12:14\"}],\"flex_direction\":\"row\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_direction_tablet\":\"row\",\"flex_justify_content\":\"center\",\"flex_justify_content_tablet\":\"space-around\",\"flex_wrap\":\"wrap\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"5414ae23\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ca201cd\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"7db42375\",\"elType\":\"widget\",\"settings\":{\"title\":\"Placering\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"470d48aa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Fyn, Denmark\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a2184f8\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5511ffdf\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"6b6d887e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":504,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/smartphone_230142.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"3676670c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ring til os\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d86beaa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"41 60 00 40\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:41600040\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ce5f04f\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"64f3768f\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"55c9290\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":505,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/email_542689.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"397a533e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Send os en email\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a6b4fdc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"kontakt@cp-nordic.dk\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a2184f8\",\"link\":{\"url\":\"mailto:kontakt@cp-nordic.dk\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\",\"content_width\":\"full\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1629e761\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"3f0b36ba\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"304a3dc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d9ec4b\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Navn\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"tel\",\"field_label\":\"Telefon\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\"},{\"field_type\":\"select\",\"field_label\":\"Tjenesters navn\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Beskeder\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Roboto\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"field_typography_font_weight\":\"400\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true},{\"id\":\"636e2bca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5f31bac\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"32a9521\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dea9376\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7ff945\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"54da3f3a\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title\":\"KONTAKT OS\",\"pp_display_conditions\":[{\"_id\":\"156b1a5\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align_mobile_extra\":\"center\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79c5eed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi d\\u00e6kker hele Fyn \\u2013 og tager ogs\\u00e5 gerne opgaver uden for omr\\u00e5det, n\\u00e5r der er tale om sp\\u00e6ndende eller teknisk kr\\u00e6vende l\\u00f8sninger.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e03db8a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c76d79\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"1a75682\",\"link\":{\"url\":\"https:\\/\\/www.facebook.com\\/cpnordic\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"da32d70\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/cpnordic\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.6,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"589cdcb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor6\"},\"icon_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"left\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6189, 661, '_elementor_edit_mode', 'builder'),
(6190, 661, '_elementor_template_type', 'wp-page'),
(6191, 661, '_elementor_version', '3.34.2'),
(6192, 661, '_elementor_pro_version', '3.34.2'),
(6193, 661, '_elementor_data', '[{\"id\":\"da47fa9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"73e548d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}]},\"elements\":[{\"id\":\"0630135\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"0b858af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"9cd53aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba1f56d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e0acf42\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1ebba86\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9f06d27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(6198, 662, '_wp_page_template', 'default'),
(7113, 747, '_elementor_edit_mode', 'builder'),
(7114, 747, '_elementor_template_type', 'wp-page'),
(7115, 747, '_elementor_version', '3.34.2'),
(7116, 747, '_elementor_pro_version', '3.34.2'),
(6200, 662, '_elementor_edit_mode', 'builder'),
(6201, 662, '_elementor_template_type', 'wp-page'),
(6202, 662, '_elementor_version', '3.34.2'),
(6203, 662, '_elementor_pro_version', '3.34.2'),
(6204, 662, '_elementor_data', '[{\"id\":\"da47fa9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"73e548d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}]},\"elements\":[{\"id\":\"0630135\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"0b858af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"9cd53aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba1f56d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e0acf42\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1ebba86\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9f06d27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(6231, 665, '_wp_page_template', 'default'),
(6233, 665, '_elementor_edit_mode', 'builder'),
(6234, 665, '_elementor_template_type', 'wp-page'),
(6235, 665, '_elementor_version', '3.34.2'),
(6236, 665, '_elementor_pro_version', '3.34.2');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6237, 665, '_elementor_data', '[{\"id\":\"da47fa9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"73e548d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}]},\"elements\":[{\"id\":\"0630135\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"0b858af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"9cd53aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba1f56d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e0acf42\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1ebba86\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9f06d27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"af8a159\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"background_color\":\"#F2EEEC6E\",\"flex_direction_tablet\":\"column-reverse\",\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"ae9dcfe\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f8070ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPECIALL\\u00d8SNINGER\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fa656d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi har en s\\u00e6rlig interesse for opgaver, der kr\\u00e6ver noget ekstra. N\\u00e5r standardl\\u00f8sninger ikke passer, finder vi l\\u00f8sninger, der g\\u00f8r.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7fce677\",\"elType\":\"widget\",\"settings\":{\"title\":\"Det kan v\\u00e6re:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c0ffdf0\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"teknisk kr\\u00e6vende detaljer\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"specialtilpassede konstruktioner\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"samspil mellem flere materialer\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"l\\u00f8sninger, der kr\\u00e6ver ekstra omtanke\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"07daf97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Her kommer vores faglighed og erfaring virkelig i spil.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(6205, 662, '_elementor_page_settings', 'a:0:{}'),
(6208, 663, '_wp_page_template', 'default'),
(6210, 663, '_elementor_edit_mode', 'builder'),
(6211, 663, '_elementor_template_type', 'wp-page'),
(6212, 663, '_elementor_version', '3.34.2'),
(6213, 663, '_elementor_pro_version', '3.34.2'),
(6214, 663, '_elementor_data', '[{\"id\":\"da47fa9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"73e548d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}]},\"elements\":[{\"id\":\"0630135\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"0b858af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"9cd53aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba1f56d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e0acf42\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1ebba86\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9f06d27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(6215, 663, '_elementor_page_settings', 'a:0:{}'),
(6218, 664, '_wp_page_template', 'default'),
(6220, 664, '_elementor_edit_mode', 'builder'),
(6221, 664, '_elementor_template_type', 'wp-page'),
(6222, 664, '_elementor_version', '3.34.2'),
(6223, 664, '_elementor_pro_version', '3.34.2'),
(6224, 664, '_elementor_data', '[{\"id\":\"da47fa9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"73e548d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}]},\"elements\":[{\"id\":\"0630135\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"0b858af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"9cd53aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba1f56d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e0acf42\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1ebba86\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9f06d27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"af8a159\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"background_color\":\"#F2EEEC6E\",\"flex_direction_tablet\":\"column-reverse\",\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"ae9dcfe\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f8070ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPECIALL\\u00d8SNINGER\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fa656d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi har en s\\u00e6rlig interesse for opgaver, der kr\\u00e6ver noget ekstra. N\\u00e5r standardl\\u00f8sninger ikke passer, finder vi l\\u00f8sninger, der g\\u00f8r.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7fce677\",\"elType\":\"widget\",\"settings\":{\"title\":\"Det kan v\\u00e6re:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c0ffdf0\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"teknisk kr\\u00e6vende detaljer\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"specialtilpassede konstruktioner\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"samspil mellem flere materialer\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"l\\u00f8sninger, der kr\\u00e6ver ekstra omtanke\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"07daf97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Her kommer vores faglighed og erfaring virkelig i spil.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(6899, 727, '_elementor_edit_mode', 'builder'),
(6900, 727, '_elementor_template_type', 'wp-page'),
(6901, 727, '_elementor_version', '3.34.2'),
(6902, 727, '_elementor_pro_version', '3.34.2'),
(6903, 727, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6904, 727, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#111111\",\"background_overlay_color_b\":\"#000A66A3\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23428e4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Byggeri \\u2013 T\\u00f8mrerarbejde og tagd\\u00e6kning\",\"header_size\":\"h4\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"pp_display_conditions\":[{\"_id\":\"b159f8d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/kontakt\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"flex_direction_tablet\":\"column-reverse\",\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/om-os\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/tomrerarbejde\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\",\"flex_direction_tablet\":\"column\",\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\",\"id\":57,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"18631d2\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/tagdaekning\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}],\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle ANMELDELSER\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"HVORFOR V\\u00c6LGE CP NORDIC ApS?\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79206f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>N\\u00e5r du v\\u00e6lger CP NORDIC ApS, f\\u00e5r du:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"44023b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/teamwork_4546121.svg\",\"id\":472},\"library\":\"svg\"},\"title_text\":\"et ungt og engageret team\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/effective_1401921.svg\",\"id\":474},\"library\":\"svg\"},\"title_text\":\"fokus p\\u00e5 kvalitet og detaljer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/communication_18765280.svg\",\"id\":479},\"library\":\"svg\"},\"title_text\":\"\\u00e6rlig<br> r\\u00e5dgivning\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/brainstorming_11663441.svg\",\"id\":480},\"library\":\"svg\"},\"title_text\":\"gennemt\\u00e6nkte l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c0f2190\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"327bd23\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/like_3941426.svg\",\"id\":481},\"library\":\"svg\"},\"title_text\":\"arbejde udf\\u00f8rt med ansvar\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2bc9769\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi lover ikke mere, end vi kan holde \\u2013 men vi holder det, vi lover.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2a1d8fc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6323910b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor8\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/wood-background-1-e1738912619419.jpg\",\"id\":510,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]}},\"elements\":[{\"id\":\"640d38eb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"75253fe5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"641310a\",\"elType\":\"widget\",\"settings\":{\"title\":\"KONTAKT OS\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee94578\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fea00\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68d73b3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14202595\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Navn\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"tel\",\"field_label\":\"Telefon\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\"},{\"field_type\":\"select\",\"field_label\":\"Tjenesters navn\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Beskeder\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor4\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_background_color\":\"#383838CC\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Roboto\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"field_typography_font_weight\":\"400\",\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7016, 738, '_wp_page_template', 'default'),
(7017, 738, '_elementor_edit_mode', 'builder'),
(7018, 738, '_elementor_template_type', 'wp-page'),
(7019, 738, '_elementor_version', '3.34.2'),
(7020, 738, '_elementor_pro_version', '3.34.2'),
(7021, 738, '_elementor_data', '[{\"id\":\"da47fa9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"73e548d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}]},\"elements\":[{\"id\":\"0630135\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"0b858af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"9cd53aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba1f56d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e0acf42\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1ebba86\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9f06d27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"af8a159\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"background_color\":\"#F2EEEC6E\",\"flex_direction_tablet\":\"column-reverse\",\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"ae9dcfe\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f8070ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPECIALL\\u00d8SNINGER\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fa656d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi har en s\\u00e6rlig interesse for opgaver, der kr\\u00e6ver noget ekstra. N\\u00e5r standardl\\u00f8sninger ikke passer, finder vi l\\u00f8sninger, der g\\u00f8r.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7fce677\",\"elType\":\"widget\",\"settings\":{\"title\":\"Det kan v\\u00e6re:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c0ffdf0\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"teknisk kr\\u00e6vende detaljer\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"specialtilpassede konstruktioner\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"samspil mellem flere materialer\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"l\\u00f8sninger, der kr\\u00e6ver ekstra omtanke\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"07daf97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Her kommer vores faglighed og erfaring virkelig i spil.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"34e27a1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"background_color\":\"#F2EEEC6E\",\"flex_direction_tablet\":\"column-reverse\",\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"fb7865a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0076979\",\"elType\":\"widget\",\"settings\":{\"title\":\"KVALITET FREM FOR KVANTITET\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9f9cbcc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tager bevidst et begr\\u00e6nset antal opgaver ad gangen. Det giver os mulighed for at:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b0e7d9d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"bevare overblik\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"sikre h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"v\\u00e6re tilg\\u00e6ngelige for kunden\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"f\\u00f8lge op p\\u00e5 detaljerne\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f53b930\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at godt h\\u00e5ndv\\u00e6rk kr\\u00e6ver tid og fokus.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(4774, 526, '_elementor_template_type', 'wp-page'),
(4775, 526, '_elementor_version', '3.34.2'),
(4776, 526, '_elementor_pro_version', '3.34.2'),
(4777, 526, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4778, 526, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\",\"id\":57,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle ANMELDELSER\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]}},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"HVORFOR V\\u00c6LGE CP NORDIC ApS?\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79206f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>N\\u00e5r du v\\u00e6lger CP NORDIC ApS, f\\u00e5r du:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"44023b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/teamwork_4546121.svg\",\"id\":472},\"library\":\"svg\"},\"title_text\":\"et ungt og engageret team\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/effective_1401921.svg\",\"id\":474},\"library\":\"svg\"},\"title_text\":\"fokus p\\u00e5 kvalitet og detaljer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/communication_18765280.svg\",\"id\":479},\"library\":\"svg\"},\"title_text\":\"\\u00e6rlig<br> r\\u00e5dgivning\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/brainstorming_11663441.svg\",\"id\":480},\"library\":\"svg\"},\"title_text\":\"gennemt\\u00e6nkte l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c0f2190\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"327bd23\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/like_3941426.svg\",\"id\":481},\"library\":\"svg\"},\"title_text\":\"arbejde udf\\u00f8rt med ansvar\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2bc9769\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi lover ikke mere, end vi kan holde \\u2013 men vi holder det, vi lover.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2a1d8fc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"986dd0f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9231a79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"31fa3c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f1b19ca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7391996\"}]},\"elements\":[{\"id\":\"547d40f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7d5adb7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1522ba7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e13c951\"}],\"pp_display_conditions\":[{\"_id\":\"1e39e5d\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"4bda72e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7d5adb7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1522ba7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e13c951\"}],\"pp_display_conditions\":[{\"_id\":\"1e39e5d\"}]},\"elements\":[{\"id\":\"07d0be8\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"8b3e3db\"},{\"custom_id\":\"field_2a35699\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"2a35699\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"f9dd88c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6323910b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor8\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/wood-background-1-e1738912619419.jpg\",\"id\":510,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]}},\"elements\":[{\"id\":\"640d38eb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"75253fe5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"641310a\",\"elType\":\"widget\",\"settings\":{\"title\":\"KONTAKT OS\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee94578\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fea00\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68d73b3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14202595\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Name\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"tel\",\"field_label\":\"Phone\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\"},{\"field_type\":\"select\",\"field_label\":\"Services Name\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Messages\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor4\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_background_color\":\"#494949CC\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"mark_required\":\"yes\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7036, 740, '_wp_page_template', 'default'),
(4707, 520, '_elementor_page_settings', 'a:0:{}'),
(7260, 759, '_elementor_pro_version', '3.34.2'),
(7261, 759, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7262, 759, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#111111\",\"background_overlay_color_b\":\"#000A66A3\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23428e4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Byggeri \\u2013 T\\u00f8mrerarbejde og tagd\\u00e6kning\",\"header_size\":\"h4\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"pp_display_conditions\":[{\"_id\":\"b159f8d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/kontakt\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"flex_direction_tablet\":\"column-reverse\",\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS is run by two skilled craftsmen who completed their apprenticeships together in 2022. We are both 25 years old and share a strong passion for quality craftsmanship and long-lasting solutions.<\\/p><p>We originally come from East Funen but are now based in Central Funen, from where we carry out work for both private and commercial clients. Our work ranges from carpentry and roofing to installation and specialized tasks, and we approach every project with professionalism, honesty, and attention to detail.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/om-os\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/tomrerarbejde\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\",\"flex_direction_tablet\":\"column\",\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\",\"id\":57,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"18631d2\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/tagdaekning\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}],\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle ANMELDELSER\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"HVORFOR V\\u00c6LGE CP NORDIC ApS?\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79206f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>N\\u00e5r du v\\u00e6lger CP NORDIC ApS, f\\u00e5r du:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"44023b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/teamwork_4546121.svg\",\"id\":472},\"library\":\"svg\"},\"title_text\":\"et ungt og engageret team\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/effective_1401921.svg\",\"id\":474},\"library\":\"svg\"},\"title_text\":\"fokus p\\u00e5 kvalitet og detaljer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/communication_18765280.svg\",\"id\":479},\"library\":\"svg\"},\"title_text\":\"\\u00e6rlig<br> r\\u00e5dgivning\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/brainstorming_11663441.svg\",\"id\":480},\"library\":\"svg\"},\"title_text\":\"gennemt\\u00e6nkte l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c0f2190\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"327bd23\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/like_3941426.svg\",\"id\":481},\"library\":\"svg\"},\"title_text\":\"arbejde udf\\u00f8rt med ansvar\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2bc9769\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi lover ikke mere, end vi kan holde \\u2013 men vi holder det, vi lover.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2a1d8fc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6323910b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor8\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/wood-background-1-e1738912619419.jpg\",\"id\":510,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]}},\"elements\":[{\"id\":\"640d38eb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"75253fe5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"641310a\",\"elType\":\"widget\",\"settings\":{\"title\":\"KONTAKT OS\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee94578\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fea00\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68d73b3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14202595\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Navn\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"tel\",\"field_label\":\"Telefon\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\"},{\"field_type\":\"select\",\"field_label\":\"Tjenesters navn\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Beskeder\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor4\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_background_color\":\"#383838CC\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Roboto\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"field_typography_font_weight\":\"400\",\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7636, 481, '_elementor_inline_svg', '<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"outline\"><path d=\"M486.41,144A28,28,0,0,0,472,92H349.123l5.457-21.828a48.513,48.513,0,0,0-12.848-46.153A41.035,41.035,0,0,0,312.609,12H308a8.009,8.009,0,0,0-8,8V47.413l-19.233,64.112A17.376,17.376,0,0,1,268,123.539V112a4,4,0,0,0-4-4H152a4,4,0,0,0-4,4v72a4,4,0,0,0,8,0V116h72V276H156V248a4,4,0,0,0-8,0v32a4,4,0,0,0,4,4H264a4,4,0,0,0,4-4V268.5h11.168A37.07,37.07,0,0,1,305.092,279a45.025,45.025,0,0,0,31.48,12.752L440,292a27.987,27.987,0,0,0,19.369-48.2,27.987,27.987,0,0,0,16-48A28,28,0,0,0,486.41,144ZM260,276H236V116h24Zm212-88H396a4,4,0,0,0,0,8h60a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h40a20,20,0,0,1,.01,40l-103.428-.25a37.07,37.07,0,0,1-25.924-10.5,45.031,45.031,0,0,0-31.49-12.752H268V131.686a25.317,25.317,0,0,0,20.429-17.862l19.4-64.675A4,4,0,0,0,308,48V20h4.609a33.082,33.082,0,0,1,23.481,9.69,40.507,40.507,0,0,1,10.728,38.541l-6.7,26.8A4,4,0,0,0,344,100H472a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h72a20,20,0,0,1,0,40Z\"></path><path d=\"M194.5,183.243l-1.9-.217a4,4,0,0,0-4.169,2.491L184.29,195.9H135.278l-3.539-9.317a4,4,0,0,0-7.478,2.84l2.459,6.477h-8.474L68.452,156.872a4,4,0,1,0-4.935,6.3L77.6,174.209,56.961,194.48l-6.636-5.491a4,4,0,1,0-5.1,6.163L87.219,229.9a44.1,44.1,0,0,0,28.05,10.1H212a8.009,8.009,0,0,0,8-8V203.9a8.009,8.009,0,0,0-8-8h-8v-2.01A10.708,10.708,0,0,0,194.5,183.243ZM212,203.9V232H115.269a36.081,36.081,0,0,1-22.951-8.264l-29.16-24.128,20.8-20.422L114.4,203.045a4,4,0,0,0,2.468.852H187a4,4,0,0,0,3.715-2.517l3.929-9.843a2.712,2.712,0,0,1,1.356,2.35v6.01a4,4,0,0,0,4,4Z\"></path><path d=\"M223.084,484.672,200.87,469.863V346.36A44.1,44.1,0,0,0,195.327,325l-17.183-30.94a4,4,0,0,0-7,3.884l17.184,30.94a36.073,36.073,0,0,1,4.537,17.478V468H164.333a4,4,0,1,0,0,8h31.321l12,8H152.865V352a4,4,0,0,0-.358-1.655l-25.454-56A4,4,0,0,0,123.411,292H114.2a4,4,0,0,0-3.945,4.658l8.862,53.175a36.016,36.016,0,0,1-1.951,18.949L78.642,468H48.333a4,4,0,1,0,0,8H80.377L92,484H32.088L76.63,361.366a4.017,4.017,0,0,0,.183-2.044L61.1,268H136a4,4,0,0,0,0-8H59.233L30.555,173.966A19.723,19.723,0,0,1,49.27,148H76a12,12,0,0,0,24,0h15.2a21.975,21.975,0,0,1,8.395,1.652l10.889,4.458a4,4,0,1,0,3.032-7.4L126.63,142.25A29.938,29.938,0,0,0,115.2,140H100v-4.527A16.014,16.014,0,0,0,112,120V103.473A16.014,16.014,0,0,0,124,88V80a4,4,0,0,0-4-4H90A22.025,22.025,0,0,0,68,98v18a12.02,12.02,0,0,0,8,11.314V140H49.27a27.723,27.723,0,0,0-26.305,36.5l29.493,88.482,16.29,94.655-46.128,127A4,4,0,0,0,26.38,492h78.485a4,4,0,0,0,2.268-7.3L86.3,470.368l38.318-98.69a44.018,44.018,0,0,0,2.385-23.16L118.921,300h1.914l24.03,52.867V488a4,4,0,0,0,4,4h72a4,4,0,0,0,2.219-7.328ZM76,98A14.015,14.015,0,0,1,90,84h26v4a8.009,8.009,0,0,1-8,8H92a4,4,0,0,0-4,4,11.962,11.962,0,0,1-1.53,5.881A12.044,12.044,0,0,0,76,104.686Zm4,14a3.981,3.981,0,0,1,3.407,1.9,4,4,0,0,0,5.956.975c.207-.171.7-.648.7-.648.032-.028.061-.057.09-.087A19.907,19.907,0,0,0,95.6,104H104v16a8.009,8.009,0,0,1-8,8,12.133,12.133,0,0,1-2.681-.3,4,4,0,1,0-1.775,7.8c.151.035.3.06.456.091V148a4,4,0,1,1-8,0V124a4,4,0,0,0-4-4,4,4,0,0,1,0-8Z\"></path></g></svg>');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7637, 10, '_elementor_element_cache', '{\"timeout\":1782294593,\"value\":{\"content\":\"<div class=\\\"elementor-element elementor-element-1429bcd e-flex e-con-boxed e-con e-parent\\\" data-id=\\\"1429bcd\\\" data-element_type=\\\"container\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;slideshow&quot;,&quot;background_slideshow_gallery&quot;:[{&quot;id&quot;:57,&quot;url&quot;:&quot;https:\\\\\\/\\\\\\/mrarif.me\\\\\\/cpnordic\\\\\\/wp-content\\\\\\/uploads\\\\\\/2026\\\\\\/01\\\\\\/182_2-1-copyright.jpg&quot;},{&quot;id&quot;:55,&quot;url&quot;:&quot;https:\\\\\\/\\\\\\/mrarif.me\\\\\\/cpnordic\\\\\\/wp-content\\\\\\/uploads\\\\\\/2026\\\\\\/01\\\\\\/182_2-3-copyright.jpg&quot;}],&quot;background_slideshow_loop&quot;:&quot;yes&quot;,&quot;background_slideshow_slide_duration&quot;:5000,&quot;background_slideshow_slide_transition&quot;:&quot;fade&quot;,&quot;background_slideshow_transition_duration&quot;:500}\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"e-con-inner\\\">\\n\\t\\t<div class=\\\"elementor-element elementor-element-5fa6cb9 e-con-full animated-slow e-flex elementor-invisible e-con e-child\\\" data-id=\\\"5fa6cb9\\\" data-element_type=\\\"container\\\" data-settings=\\\"{&quot;animation&quot;:&quot;fadeIn&quot;}\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-86dc75e elementor-widget elementor-widget-heading\\\" data-id=\\\"86dc75e\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t\\t<h1 class=\\\"elementor-heading-title elementor-size-default\\\">CP NORDIC ApS<\\/h1>\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-23428e4 elementor-widget elementor-widget-heading\\\" data-id=\\\"23428e4\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t\\t<h4 class=\\\"elementor-heading-title elementor-size-default\\\">Byggeri \\u2013 T\\u00f8mrerarbejde og tagd\\u00e6kning<\\/h4>\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-ead15d1 elementor-align-center elementor-widget elementor-widget-button\\\" data-id=\\\"ead15d1\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"button.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a class=\\\"elementor-button elementor-button-link elementor-size-sm\\\" href=\\\"https:\\/\\/mrarif.me\\/cpnordic\\/kontakt\\/\\\">\\n\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-content-wrapper\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-text\\\">Kontakt<\\/span>\\n\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-20bf3c2 e-flex e-con-boxed e-con e-parent\\\" data-id=\\\"20bf3c2\\\" data-element_type=\\\"container\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"e-con-inner\\\">\\n\\t\\t<div class=\\\"elementor-element elementor-element-7e799e7 e-con-full animated-slow e-flex elementor-invisible e-con e-child\\\" data-id=\\\"7e799e7\\\" data-element_type=\\\"container\\\" data-settings=\\\"{&quot;animation&quot;:&quot;fadeIn&quot;}\\\">\\n\\t\\t[elementor-element k=\\\"7e3dc5e517862d53cc17d5f276a76400\\\" data=\\\"eyJpZCI6ImFkNzliOTUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlZGl0b3IiOiI8cD5DUCBOT1JESUMgQXBTIGlzIHJ1biBieSB0d28gc2tpbGxlZCBjcmFmdHNtZW4gd2hvIGNvbXBsZXRlZCB0aGVpciBhcHByZW50aWNlc2hpcHMgdG9nZXRoZXIgaW4gMjAyMi4gV2UgYXJlIGJvdGggMjUgeWVhcnMgb2xkIGFuZCBzaGFyZSBhIHN0cm9uZyBwYXNzaW9uIGZvciBxdWFsaXR5IGNyYWZ0c21hbnNoaXAgYW5kIGxvbmctbGFzdGluZyBzb2x1dGlvbnMuPFwvcD48cD5XZSBvcmlnaW5hbGx5IGNvbWUgZnJvbSBFYXN0IEZ1bmVuIGJ1dCBhcmUgbm93IGJhc2VkIGluIENlbnRyYWwgRnVuZW4sIGZyb20gd2hlcmUgd2UgY2Fycnkgb3V0IHdvcmsgZm9yIGJvdGggcHJpdmF0ZSBhbmQgY29tbWVyY2lhbCBjbGllbnRzLiBPdXIgd29yayByYW5nZXMgZnJvbSBjYXJwZW50cnkgYW5kIHJvb2ZpbmcgdG8gaW5zdGFsbGF0aW9uIGFuZCBzcGVjaWFsaXplZCB0YXNrcywgYW5kIHdlIGFwcHJvYWNoIGV2ZXJ5IHByb2plY3Qgd2l0aCBwcm9mZXNzaW9uYWxpc20sIGhvbmVzdHksIGFuZCBhdHRlbnRpb24gdG8gZGV0YWlsLjxcL3A+IiwiZHJvcF9jYXAiOiJ5ZXMiLCJwcF9kaXNwbGF5X2NvbmRpdGlvbnMiOlt7Il9pZCI6IjUyNWE5MjkifV0sInBwX2VsZW1lbnRzX3Rvb2x0aXBfY29udGVudCI6IlRvb2x0aXAgQ29udGVudCJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJ0ZXh0LWVkaXRvciJ9\\\"]\\t\\t<div class=\\\"elementor-element elementor-element-b593b12 elementor-widget elementor-widget-button\\\" data-id=\\\"b593b12\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"button.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a class=\\\"elementor-button elementor-button-link elementor-size-sm\\\" href=\\\"https:\\/\\/mrarif.me\\/cpnordic\\/om-os\\/\\\">\\n\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-content-wrapper\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-text\\\">L\\u00e6r mere<\\/span>\\n\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-75a6cc7 e-con-full animated-slow e-flex elementor-invisible e-con e-child\\\" data-id=\\\"75a6cc7\\\" data-element_type=\\\"container\\\" data-settings=\\\"{&quot;animation&quot;:&quot;fadeIn&quot;}\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-388fa57 elementor-widget elementor-widget-heading\\\" data-id=\\\"388fa57\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t\\t<h2 class=\\\"elementor-heading-title elementor-size-default\\\">OM CP NORDIC ApS<\\/h2>\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-cd30c65 e-flex e-con-boxed e-con e-parent\\\" data-id=\\\"cd30c65\\\" data-element_type=\\\"container\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"e-con-inner\\\">\\n\\t\\t<div class=\\\"elementor-element elementor-element-4aa6944 e-con-full e-flex e-con e-child\\\" data-id=\\\"4aa6944\\\" data-element_type=\\\"container\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-12aa6b2 animated-slow elementor-invisible elementor-widget elementor-widget-image\\\" data-id=\\\"12aa6b2\\\" data-element_type=\\\"widget\\\" data-settings=\\\"{&quot;_animation&quot;:&quot;fadeIn&quot;}\\\" data-widget_type=\\\"image.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"1536\\\" height=\\\"2048\\\" src=\\\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\\\" class=\\\"attachment-full size-full wp-image-233\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg 1536w, https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\\\" sizes=\\\"(max-width: 1536px) 100vw, 1536px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-05e9da5 e-con-full animated-slow e-flex elementor-invisible e-con e-child\\\" data-id=\\\"05e9da5\\\" data-element_type=\\\"container\\\" data-settings=\\\"{&quot;animation&quot;:&quot;fadeIn&quot;}\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-20b62c3 elementor-widget elementor-widget-heading\\\" data-id=\\\"20b62c3\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t\\t<h2 class=\\\"elementor-heading-title elementor-size-default\\\">VORES FILOSOFI<\\/h2>\\t\\t\\t\\t<\\/div>\\n\\t\\t[elementor-element k=\\\"7e3dc5e517862d53cc17d5f276a76400\\\" data=\\\"eyJpZCI6ImEwOTAyZTMiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlZGl0b3IiOiJGb3Igb3MgaGFuZGxlciBnb2R0IGhcdTAwZTVuZHZcdTAwZTZyayBvbSBtZXJlIGVuZCBkZXQsIG1hbiBrYW4gc2UgcFx1MDBlNSBvdmVyZmxhZGVuLiBEZXQgaGFuZGxlciBvbSBrb3JyZWt0IG9wYnlnbmluZywgZ2VubmVtdFx1MDBlNm5rdGUgbFx1MDBmOHNuaW5nZXIgb2cgcmVzcGVrdCBmb3IgYlx1MDBlNWRlIGJ5Z25pbmdlbiBvZyBrdW5kZW4uIiwicHBfZGlzcGxheV9jb25kaXRpb25zIjpbeyJfaWQiOiJmN2NmM2MwIn1dLCJwcF9lbGVtZW50c190b29sdGlwX2NvbnRlbnQiOiJUb29sdGlwIENvbnRlbnQifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoidGV4dC1lZGl0b3IifQ==\\\"]\\t\\t<div class=\\\"elementor-element elementor-element-54846fb elementor-widget elementor-widget-heading\\\" data-id=\\\"54846fb\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t\\t<h5 class=\\\"elementor-heading-title elementor-size-default\\\">Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:<\\/h5>\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-728ff2a elementor-icon-list--layout-traditional elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list\\\" data-id=\\\"728ff2a\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"icon-list.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t<ul class=\\\"elementor-icon-list-items\\\">\\n\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" height=\\\"512\\\" viewBox=\\\"0 0 520 520\\\" width=\\\"512\\\"><g id=\\\"_20-Checked\\\" data-name=\\\"20-Checked\\\"><path d=\\\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\\\"><\\/path><path d=\\\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\\\"><\\/path><\\/g><\\/svg>\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">grundig planl\\u00e6gning<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" height=\\\"512\\\" viewBox=\\\"0 0 520 520\\\" width=\\\"512\\\"><g id=\\\"_20-Checked\\\" data-name=\\\"20-Checked\\\"><path d=\\\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\\\"><\\/path><path d=\\\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\\\"><\\/path><\\/g><\\/svg>\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">korrekt udf\\u00f8relse<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" height=\\\"512\\\" viewBox=\\\"0 0 520 520\\\" width=\\\"512\\\"><g id=\\\"_20-Checked\\\" data-name=\\\"20-Checked\\\"><path d=\\\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\\\"><\\/path><path d=\\\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\\\"><\\/path><\\/g><\\/svg>\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">materialer af h\\u00f8j kvalitet<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" height=\\\"512\\\" viewBox=\\\"0 0 520 520\\\" width=\\\"512\\\"><g id=\\\"_20-Checked\\\" data-name=\\\"20-Checked\\\"><path d=\\\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\\\"><\\/path><path d=\\\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\\\"><\\/path><\\/g><\\/svg>\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">\\u00e6rlig og tydelig kommunikation<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t[elementor-element k=\\\"7e3dc5e517862d53cc17d5f276a76400\\\" data=\\\"eyJpZCI6IjZhYTU3ZDQiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlZGl0b3IiOiI8cD5WaSB0cm9yIHBcdTAwZTUsIGF0IGV0IGdvZHQgcmVzdWx0YXQgc3RhcnRlciBtZWQgZ29kIGRpYWxvZy4gRGVyZm9yIGJydWdlciB2aSB0aWQgcFx1MDBlNSBhdCBmb3JzdFx1MDBlNSBrdW5kZW5zIFx1MDBmOG5za2VyIG9nIHJcdTAwZTVkZ2l2ZSBvbSBkZSBsXHUwMGY4c25pbmdlciwgZGVyIGdpdmVyIGJlZHN0IG1lbmluZyBcdTIwMTMgYlx1MDBlNWRlIGZ1bmt0aW9uZWx0IG9nIFx1MDBmOGtvbm9taXNrLjxcL3A+IiwicHBfZGlzcGxheV9jb25kaXRpb25zIjpbeyJfaWQiOiJmN2NmM2MwIn1dLCJwcF9lbGVtZW50c190b29sdGlwX2NvbnRlbnQiOiJUb29sdGlwIENvbnRlbnQifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoidGV4dC1lZGl0b3IifQ==\\\"]\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-7ad6ada services-section e-flex e-con-boxed e-con e-parent\\\" data-id=\\\"7ad6ada\\\" data-element_type=\\\"container\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"e-con-inner\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-3b8d32f elementor-align-center animated-slow elementor-invisible elementor-widget elementor-widget-button\\\" data-id=\\\"3b8d32f\\\" data-element_type=\\\"widget\\\" data-settings=\\\"{&quot;_animation&quot;:&quot;fadeIn&quot;}\\\" data-widget_type=\\\"button.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a class=\\\"elementor-button elementor-button-link elementor-size-sm\\\" href=\\\"https:\\/\\/mrarif.me\\/cpnordic\\/tomrerarbejde\\/\\\">\\n\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-content-wrapper\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-text\\\">Se alle tjenester<\\/span>\\n\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-9c4ac80 e-con-full animated-slow e-flex elementor-invisible e-con e-child\\\" data-id=\\\"9c4ac80\\\" data-element_type=\\\"container\\\" data-settings=\\\"{&quot;animation&quot;:&quot;fadeIn&quot;}\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-44924f8 elementor-cta--skin-cover elementor-cta--valign-bottom elementor-widget__width-initial elementor-animated-content elementor-bg-transform elementor-bg-transform-zoom-in elementor-widget elementor-widget-call-to-action\\\" data-id=\\\"44924f8\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"call-to-action.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-cta\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"elementor-cta__bg-wrapper\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-cta__bg elementor-bg\\\" style=\\\"background-image: url(https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg);\\\" role=\\\"img\\\" aria-label=\\\"CP NORDIC ApS img-1\\\"><\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-cta__bg-overlay\\\"><\\/div>\\n\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-cta__content\\\">\\n\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<h4 class=\\\"elementor-cta__title elementor-cta__content-item elementor-content-item elementor-animated-item--grow\\\">\\n\\t\\t\\t\\t\\t\\tTerrasser\\t\\t\\t\\t\\t<\\/h4>\\n\\t\\t\\t\\t\\n\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-b57ab6d elementor-cta--skin-cover elementor-cta--valign-bottom elementor-widget__width-initial elementor-animated-content elementor-bg-transform elementor-bg-transform-zoom-in elementor-widget elementor-widget-call-to-action\\\" data-id=\\\"b57ab6d\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"call-to-action.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-cta\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"elementor-cta__bg-wrapper\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-cta__bg elementor-bg\\\" style=\\\"background-image: url(https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg);\\\" role=\\\"img\\\" aria-label=\\\"CP NORDIC ApS img-2\\\"><\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-cta__bg-overlay\\\"><\\/div>\\n\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-cta__content\\\">\\n\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<h4 class=\\\"elementor-cta__title elementor-cta__content-item elementor-content-item elementor-animated-item--grow\\\">\\n\\t\\t\\t\\t\\t\\tTotalrenoveringer\\t\\t\\t\\t\\t<\\/h4>\\n\\t\\t\\t\\t\\n\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-a7c9c0d elementor-cta--skin-cover elementor-cta--valign-bottom elementor-widget__width-initial elementor-animated-content elementor-bg-transform elementor-bg-transform-zoom-in elementor-widget elementor-widget-call-to-action\\\" data-id=\\\"a7c9c0d\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"call-to-action.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-cta\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"elementor-cta__bg-wrapper\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-cta__bg elementor-bg\\\" style=\\\"background-image: url(https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg);\\\" role=\\\"img\\\" aria-label=\\\"CP NORDIC ApS img-3\\\"><\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-cta__bg-overlay\\\"><\\/div>\\n\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-cta__content\\\">\\n\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<h4 class=\\\"elementor-cta__title elementor-cta__content-item elementor-content-item elementor-animated-item--grow\\\">\\n\\t\\t\\t\\t\\t\\tTilbygninger\\t\\t\\t\\t\\t<\\/h4>\\n\\t\\t\\t\\t\\n\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-6dd400e elementor-cta--skin-cover elementor-cta--valign-bottom elementor-widget__width-initial elementor-animated-content elementor-bg-transform elementor-bg-transform-zoom-in elementor-widget elementor-widget-call-to-action\\\" data-id=\\\"6dd400e\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"call-to-action.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-cta\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"elementor-cta__bg-wrapper\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-cta__bg elementor-bg\\\" style=\\\"background-image: url(https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg);\\\" role=\\\"img\\\" aria-label=\\\"CP NORDIC ApS img-4\\\"><\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-cta__bg-overlay\\\"><\\/div>\\n\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-cta__content\\\">\\n\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<h4 class=\\\"elementor-cta__title elementor-cta__content-item elementor-content-item elementor-animated-item--grow\\\">\\n\\t\\t\\t\\t\\t\\tCarporte\\t\\t\\t\\t\\t<\\/h4>\\n\\t\\t\\t\\t\\n\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-253b5e7 e-con-full animated-slow e-flex elementor-invisible e-con e-child\\\" data-id=\\\"253b5e7\\\" data-element_type=\\\"container\\\" data-settings=\\\"{&quot;animation&quot;:&quot;fadeIn&quot;}\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-056c929 elementor-widget elementor-widget-heading\\\" data-id=\\\"056c929\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t\\t<h2 class=\\\"elementor-heading-title elementor-size-default\\\">T\\u00d8MRERARBEJDE<\\/h2>\\t\\t\\t\\t<\\/div>\\n\\t\\t[elementor-element k=\\\"7e3dc5e517862d53cc17d5f276a76400\\\" data=\\\"eyJpZCI6IjZmNjg1Y2MiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlZGl0b3IiOiI8cD5WaSB1ZGZcdTAwZjhyZXIgZW4gYnJlZCB2aWZ0ZSBhZiB0XHUwMGY4bXJlcm9wZ2F2ZXIgZm9yIHByaXZhdGUgYm9saWdlamVyZSBvZyBtaW5kcmUgZXJodmVydiwgaGVydW5kZXI6PFwvcD4iLCJwcF9kaXNwbGF5X2NvbmRpdGlvbnMiOlt7Il9pZCI6IjUyNWE5MjkifV0sInBwX2VsZW1lbnRzX3Rvb2x0aXBfY29udGVudCI6IlRvb2x0aXAgQ29udGVudCIsImFsaWduIjoiY2VudGVyIn0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6InRleHQtZWRpdG9yIn0=\\\"]\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-0ca2dad e-con-full tagd\\u00e6kning-section e-flex e-con e-parent\\\" data-id=\\\"0ca2dad\\\" data-element_type=\\\"container\\\">\\n\\t\\t<div class=\\\"elementor-element elementor-element-2d462bc e-con-full e-flex e-con e-child\\\" data-id=\\\"2d462bc\\\" data-element_type=\\\"container\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-c9a240e e-con-full animated-slow e-flex elementor-invisible e-con e-child\\\" data-id=\\\"c9a240e\\\" data-element_type=\\\"container\\\" data-settings=\\\"{&quot;animation&quot;:&quot;fadeIn&quot;}\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-b24049d elementor-widget elementor-widget-heading\\\" data-id=\\\"b24049d\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t\\t<h2 class=\\\"elementor-heading-title elementor-size-default\\\">TAGD\\u00c6KNING<\\/h2>\\t\\t\\t\\t<\\/div>\\n\\t\\t[elementor-element k=\\\"7e3dc5e517862d53cc17d5f276a76400\\\" data=\\\"eyJpZCI6ImRhNDQxNTQiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlZGl0b3IiOiI8cD5JbmRlbiBmb3IgdGFnZFx1MDBlNmtuaW5nIHVkZlx1MDBmOHJlciB2aSBwcm9mZXNzaW9uZWx0IGFyYmVqZGUgbWVkIGZva3VzIHBcdTAwZTUgdFx1MDBlNnRoZWQsIGtvcnJla3Qgb3BieWduaW5nIG9nIGxhbmcgbGV2ZXRpZC48XC9wPiIsInBwX2Rpc3BsYXlfY29uZGl0aW9ucyI6W3siX2lkIjoiZjdjZjNjMCJ9XSwicHBfZWxlbWVudHNfdG9vbHRpcF9jb250ZW50IjoiVG9vbHRpcCBDb250ZW50In0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6InRleHQtZWRpdG9yIn0=\\\"]\\t\\t<div class=\\\"elementor-element elementor-element-e6a5e71 elementor-widget elementor-widget-heading\\\" data-id=\\\"e6a5e71\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t\\t<h5 class=\\\"elementor-heading-title elementor-size-default\\\">Vores ydelser omfatter blandt andet:<\\/h5>\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-a45ffb3 elementor-icon-list--layout-traditional elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list\\\" data-id=\\\"a45ffb3\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"icon-list.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t<ul class=\\\"elementor-icon-list-items\\\">\\n\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" height=\\\"512\\\" viewBox=\\\"0 0 520 520\\\" width=\\\"512\\\"><g id=\\\"_20-Checked\\\" data-name=\\\"20-Checked\\\"><path d=\\\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\\\"><\\/path><path d=\\\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\\\"><\\/path><\\/g><\\/svg>\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">2-lags tagpapl\\u00f8sninger<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" height=\\\"512\\\" viewBox=\\\"0 0 520 520\\\" width=\\\"512\\\"><g id=\\\"_20-Checked\\\" data-name=\\\"20-Checked\\\"><path d=\\\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\\\"><\\/path><path d=\\\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\\\"><\\/path><\\/g><\\/svg>\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" height=\\\"512\\\" viewBox=\\\"0 0 520 520\\\" width=\\\"512\\\"><g id=\\\"_20-Checked\\\" data-name=\\\"20-Checked\\\"><path d=\\\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\\\"><\\/path><path d=\\\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\\\"><\\/path><\\/g><\\/svg>\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">Tagpap klar til sedum<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" height=\\\"512\\\" viewBox=\\\"0 0 520 520\\\" width=\\\"512\\\"><g id=\\\"_20-Checked\\\" data-name=\\\"20-Checked\\\"><path d=\\\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\\\"><\\/path><path d=\\\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\\\"><\\/path><\\/g><\\/svg>\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">Foliearbejde<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t[elementor-element k=\\\"7e3dc5e517862d53cc17d5f276a76400\\\" data=\\\"eyJpZCI6IjAwOGM0NDgiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlZGl0b3IiOiI8cD5BbHQgdGFnYXJiZWpkZSB1ZGZcdTAwZjhyZXMgbWVkIHByb2Zlc3Npb25lbCBzdmVqc25pbmcgb2cga29ycmVrdCBvcGJ5Z25pbmcuIFZpIGdcdTAwZTVyIGlra2UgcFx1MDBlNSBrb21wcm9taXMgbWVkIGRldGFsamVybmUsIGRhIHRhZ2V0cyBvcGJ5Z25pbmcgZXIgYWZnXHUwMGY4cmVuZGUgZm9yIGJcdTAwZTVkZSBob2xkYmFyaGVkIG9nIGZ1bmt0aW9uLjxcL3A+PHA+Vmkgclx1MDBlNWRnaXZlciBnZXJuZSBvbSBkZW4gcmV0dGUgbFx1MDBmOHNuaW5nIHVkIGZyYSBieWduaW5nZW5zIHR5cGUsIGhcdTAwZTZsZG5pbmcgb2cgYW52ZW5kZWxzZS48XC9wPiIsInBwX2Rpc3BsYXlfY29uZGl0aW9ucyI6W3siX2lkIjoiZjdjZjNjMCJ9XSwicHBfZWxlbWVudHNfdG9vbHRpcF9jb250ZW50IjoiVG9vbHRpcCBDb250ZW50In0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6InRleHQtZWRpdG9yIn0=\\\"]\\t\\t<div class=\\\"elementor-element elementor-element-18631d2 elementor-align-left animated-slow elementor-invisible elementor-widget elementor-widget-button\\\" data-id=\\\"18631d2\\\" data-element_type=\\\"widget\\\" data-settings=\\\"{&quot;_animation&quot;:&quot;fadeIn&quot;}\\\" data-widget_type=\\\"button.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a class=\\\"elementor-button elementor-button-link elementor-size-sm\\\" href=\\\"https:\\/\\/mrarif.me\\/cpnordic\\/tagdaekning\\/\\\">\\n\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-content-wrapper\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-text\\\">L\\u00e6r mere<\\/span>\\n\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-f5080f2 e-flex e-con-boxed e-con e-parent\\\" data-id=\\\"f5080f2\\\" data-element_type=\\\"container\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"e-con-inner\\\">\\n\\t\\t<div class=\\\"elementor-element elementor-element-52fd176 e-con-full e-flex e-con e-child\\\" data-id=\\\"52fd176\\\" data-element_type=\\\"container\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-0a13297 animated-slow elementor-invisible elementor-widget elementor-widget-heading\\\" data-id=\\\"0a13297\\\" data-element_type=\\\"widget\\\" data-settings=\\\"{&quot;_animation&quot;:&quot;fadeIn&quot;}\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t\\t<h2 class=\\\"elementor-heading-title elementor-size-default\\\">Galleri<\\/h2>\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-c5d014e animated-slow elementor-invisible elementor-widget elementor-widget-gallery\\\" data-id=\\\"c5d014e\\\" data-element_type=\\\"widget\\\" data-settings=\\\"{&quot;columns&quot;:3,&quot;gap&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:20,&quot;sizes&quot;:[]},&quot;aspect_ratio&quot;:&quot;1:1&quot;,&quot;_animation&quot;:&quot;fadeIn&quot;,&quot;lazyload&quot;:&quot;yes&quot;,&quot;gallery_layout&quot;:&quot;grid&quot;,&quot;columns_tablet&quot;:2,&quot;columns_mobile&quot;:1,&quot;gap_widescreen&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;gap_tablet_extra&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:10,&quot;sizes&quot;:[]},&quot;gap_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:10,&quot;sizes&quot;:[]},&quot;gap_mobile_extra&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:10,&quot;sizes&quot;:[]},&quot;gap_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:10,&quot;sizes&quot;:[]},&quot;link_to&quot;:&quot;file&quot;,&quot;overlay_background&quot;:&quot;yes&quot;,&quot;content_hover_animation&quot;:&quot;fade-in&quot;}\\\" data-widget_type=\\\"gallery.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-gallery__container\\\">\\n\\t\\t\\t\\t\\t\\t\\t<a class=\\\"e-gallery-item elementor-gallery-item elementor-animated-content\\\" href=\\\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\\\" data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"c5d014e\\\" data-elementor-lightbox-title=\\\"CP NORDIC ApS item-2\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"e-gallery-image elementor-gallery-item__image\\\" data-thumbnail=\\\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\\\" data-width=\\\"1080\\\" data-height=\\\"1351\\\" aria-label=\\\"\\\" role=\\\"img\\\" ><\\/div>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-gallery-item__overlay\\\"><\\/div>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t<a class=\\\"e-gallery-item elementor-gallery-item elementor-animated-content\\\" href=\\\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\\\" data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"c5d014e\\\" data-elementor-lightbox-title=\\\"CP NORDIC ApS item-1\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"e-gallery-image elementor-gallery-item__image\\\" data-thumbnail=\\\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\\\" data-width=\\\"1536\\\" data-height=\\\"1536\\\" aria-label=\\\"\\\" role=\\\"img\\\" ><\\/div>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-gallery-item__overlay\\\"><\\/div>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t<a class=\\\"e-gallery-item elementor-gallery-item elementor-animated-content\\\" href=\\\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\\\" data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"c5d014e\\\" data-elementor-lightbox-title=\\\"CP NORDIC ApS item-9\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"e-gallery-image elementor-gallery-item__image\\\" data-thumbnail=\\\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\\\" data-width=\\\"1536\\\" data-height=\\\"1536\\\" aria-label=\\\"\\\" role=\\\"img\\\" ><\\/div>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-gallery-item__overlay\\\"><\\/div>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t<a class=\\\"e-gallery-item elementor-gallery-item elementor-animated-content\\\" href=\\\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\\\" data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"c5d014e\\\" data-elementor-lightbox-title=\\\"CP NORDIC ApS item-8\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"e-gallery-image elementor-gallery-item__image\\\" data-thumbnail=\\\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\\\" data-width=\\\"1536\\\" data-height=\\\"1920\\\" aria-label=\\\"\\\" role=\\\"img\\\" ><\\/div>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-gallery-item__overlay\\\"><\\/div>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t<a class=\\\"e-gallery-item elementor-gallery-item elementor-animated-content\\\" href=\\\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\\\" data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"c5d014e\\\" data-elementor-lightbox-title=\\\"CP NORDIC ApS item-7\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"e-gallery-image elementor-gallery-item__image\\\" data-thumbnail=\\\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\\\" data-width=\\\"1080\\\" data-height=\\\"1351\\\" aria-label=\\\"\\\" role=\\\"img\\\" ><\\/div>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-gallery-item__overlay\\\"><\\/div>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t<a class=\\\"e-gallery-item elementor-gallery-item elementor-animated-content\\\" href=\\\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\\\" data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"c5d014e\\\" data-elementor-lightbox-title=\\\"CP NORDIC ApS item-6\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"e-gallery-image elementor-gallery-item__image\\\" data-thumbnail=\\\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\\\" data-width=\\\"1080\\\" data-height=\\\"1351\\\" aria-label=\\\"\\\" role=\\\"img\\\" ><\\/div>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-gallery-item__overlay\\\"><\\/div>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t<a class=\\\"e-gallery-item elementor-gallery-item elementor-animated-content\\\" href=\\\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\\\" data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"c5d014e\\\" data-elementor-lightbox-title=\\\"CP NORDIC ApS item-5\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"e-gallery-image elementor-gallery-item__image\\\" data-thumbnail=\\\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\\\" data-width=\\\"1080\\\" data-height=\\\"1351\\\" aria-label=\\\"\\\" role=\\\"img\\\" ><\\/div>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-gallery-item__overlay\\\"><\\/div>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t<a class=\\\"e-gallery-item elementor-gallery-item elementor-animated-content\\\" href=\\\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\\\" data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"c5d014e\\\" data-elementor-lightbox-title=\\\"CP NORDIC ApS img-3\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"e-gallery-image elementor-gallery-item__image\\\" data-thumbnail=\\\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\\\" data-width=\\\"1536\\\" data-height=\\\"2048\\\" aria-label=\\\"\\\" role=\\\"img\\\" ><\\/div>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-gallery-item__overlay\\\"><\\/div>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t<a class=\\\"e-gallery-item elementor-gallery-item elementor-animated-content\\\" href=\\\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\\\" data-elementor-open-lightbox=\\\"yes\\\" data-elementor-lightbox-slideshow=\\\"c5d014e\\\" data-elementor-lightbox-title=\\\"CP NORDIC ApS img-1\\\" data-e-action-hash=\\\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"e-gallery-image elementor-gallery-item__image\\\" data-thumbnail=\\\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\\\" data-width=\\\"1536\\\" data-height=\\\"2048\\\" aria-label=\\\"\\\" role=\\\"img\\\" ><\\/div>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-gallery-item__overlay\\\"><\\/div>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-f80ef3f elementor-hidden-widescreen elementor-hidden-desktop elementor-hidden-tablet_extra elementor-hidden-tablet elementor-hidden-mobile_extra elementor-hidden-mobile e-flex e-con-boxed e-con e-parent\\\" data-id=\\\"f80ef3f\\\" data-element_type=\\\"container\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"e-con-inner\\\">\\n\\t\\t<div class=\\\"elementor-element elementor-element-51b946b e-con-full e-flex e-con e-child\\\" data-id=\\\"51b946b\\\" data-element_type=\\\"container\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-b1e2243 elementor-widget elementor-widget-image\\\" data-id=\\\"b1e2243\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"image.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"1536\\\" height=\\\"2048\\\" src=\\\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\\\" class=\\\"attachment-full size-full wp-image-164\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\\\" sizes=\\\"(max-width: 1536px) 100vw, 1536px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-ace13a9 e-con-full e-flex e-con e-child\\\" data-id=\\\"ace13a9\\\" data-element_type=\\\"container\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-0d51da2 elementor-widget elementor-widget-heading\\\" data-id=\\\"0d51da2\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t\\t<h1 class=\\\"elementor-heading-title elementor-size-default\\\">Carpentry<\\/h1>\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-70ff71a elementor-icon-list--layout-traditional elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list\\\" data-id=\\\"70ff71a\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"icon-list.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t<ul class=\\\"elementor-icon-list-items\\\">\\n\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" id=\\\"Layer_1\\\" viewBox=\\\"0 0 48 48\\\"><g><path d=\\\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\\\"><\\/path><\\/g><\\/svg>\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">Terraces<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" id=\\\"Layer_1\\\" height=\\\"512\\\" viewBox=\\\"0 0 100 100\\\" width=\\\"512\\\"><path d=\\\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\\\"><\\/path><path d=\\\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\\\"><\\/path><path d=\\\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">Total renovations<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" height=\\\"512\\\" viewBox=\\\"0 0 520 520\\\" width=\\\"512\\\"><g id=\\\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\\\"><g><g><g><g><path d=\\\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\\\"><\\/path><\\/g><\\/g><g><g><path d=\\\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\\\"><\\/path><\\/g><\\/g><\\/g><\\/g><\\/g><\\/svg>\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">Extensions<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" id=\\\"Layer_1\\\" viewBox=\\\"0 0 64 64\\\"><g fill=\\\"rgb(0,0,0)\\\"><path d=\\\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\\\"><\\/path><path d=\\\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\\\"><\\/path><path d=\\\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\\\"><\\/path><path d=\\\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\\\"><\\/path><path d=\\\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\\\"><\\/path><path d=\\\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\\\"><\\/path><\\/g><\\/svg>\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">Carports<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" id=\\\"Layer_1\\\" height=\\\"100\\\" viewBox=\\\"0 0 100 100\\\" width=\\\"100\\\"><g style=\\\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\\\"><path d=\\\"m75 85h-20.002-29.998v-70h50z\\\"><\\/path><path d=\\\"m54.998 75.001-29.998 9.999v-70h29.998z\\\"><\\/path><path d=\\\"m47.5 41.251v7.5z\\\"><\\/path><\\/g><\\/svg>\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">Doors &amp; windows<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-ef6011c e-flex e-con-boxed e-con e-parent\\\" data-id=\\\"ef6011c\\\" data-element_type=\\\"container\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"e-con-inner\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-58dd776 animated-slow elementor-invisible elementor-widget elementor-widget-heading\\\" data-id=\\\"58dd776\\\" data-element_type=\\\"widget\\\" data-settings=\\\"{&quot;_animation&quot;:&quot;fadeIn&quot;}\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t\\t<h2 class=\\\"elementor-heading-title elementor-size-default\\\">ANMELDELSER<\\/h2>\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-d10dbe5 animated-slow elementor-invisible elementor-widget elementor-widget-html\\\" data-id=\\\"d10dbe5\\\" data-element_type=\\\"widget\\\" data-settings=\\\"{&quot;_animation&quot;:&quot;fadeIn&quot;}\\\" data-widget_type=\\\"html.default\\\">\\n\\t\\t\\t\\t\\t<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\\t\\t\\t\\t<\\/div>\\n\\t\\t[elementor-element k=\\\"7e3dc5e517862d53cc17d5f276a76400\\\" data=\\\"eyJpZCI6ImMxODA0ZTIiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlZGl0b3IiOiI8cD5WaSBzXHUwMGU2dHRlciBzdG9yIHByaXMgcFx1MDBlNSBmZWVkYmFjayBmcmEgdm9yZXMga3VuZGVyIG9nIGVyIHN0b2x0ZSBhZiBkZSBhbm1lbGRlbHNlciwgdmkgaGFyIG1vZHRhZ2V0LjxiciBcLz5EdSBrYW4gbFx1MDBlNnNlIGFubWVsZGVsc2VyIG9nIHZ1cmRlcmluZ2VyIGFmIHZvcmVzIGFyYmVqZGUgcFx1MDBlNSBBbm1lbGQgSFx1MDBlNW5kdlx1MDBlNnJrZXI6PFwvcD4iLCJhbGlnbiI6ImNlbnRlciIsInBwX2Rpc3BsYXlfY29uZGl0aW9ucyI6W3siX2lkIjoiZjBlYmExNSJ9XSwicHBfZWxlbWVudHNfdG9vbHRpcF9jb250ZW50IjoiVG9vbHRpcCBDb250ZW50In0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6InRleHQtZWRpdG9yIn0=\\\"]\\t\\t<div class=\\\"elementor-element elementor-element-78195b1 elementor-align-center elementor-widget elementor-widget-button\\\" data-id=\\\"78195b1\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"button.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a class=\\\"elementor-button elementor-button-link elementor-size-sm\\\" href=\\\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\\\" target=\\\"_blank\\\" rel=\\\"nofollow\\\">\\n\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-content-wrapper\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-text\\\">Se alle ANMELDELSER<\\/span>\\n\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-8ddf149 elementor-hidden-widescreen elementor-hidden-desktop elementor-hidden-tablet_extra elementor-hidden-tablet elementor-hidden-mobile_extra elementor-hidden-mobile elementor-widget elementor-widget-html\\\" data-id=\\\"8ddf149\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"html.default\\\">\\n\\t\\t\\t\\t\\t<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-6a78c4e e-flex e-con-boxed e-con e-parent\\\" data-id=\\\"6a78c4e\\\" data-element_type=\\\"container\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"e-con-inner\\\">\\n\\t\\t<div class=\\\"elementor-element elementor-element-7818ce2 e-con-full animated-slow e-flex elementor-invisible e-con e-child\\\" data-id=\\\"7818ce2\\\" data-element_type=\\\"container\\\" data-settings=\\\"{&quot;animation&quot;:&quot;fadeIn&quot;}\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-5346448 elementor-widget elementor-widget-heading\\\" data-id=\\\"5346448\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t\\t<h2 class=\\\"elementor-heading-title elementor-size-default\\\">HVORFOR V\\u00c6LGE CP NORDIC ApS?<\\/h2>\\t\\t\\t\\t<\\/div>\\n\\t\\t[elementor-element k=\\\"7e3dc5e517862d53cc17d5f276a76400\\\" data=\\\"eyJpZCI6Ijc5MjA2ZjUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlZGl0b3IiOiI8cD5OXHUwMGU1ciBkdSB2XHUwMGU2bGdlciBDUCBOT1JESUMgQXBTLCBmXHUwMGU1ciBkdTo8XC9wPiIsImFsaWduIjoiY2VudGVyIiwicHBfZGlzcGxheV9jb25kaXRpb25zIjpbeyJfaWQiOiI0NDAyM2I4In1dLCJwcF9lbGVtZW50c190b29sdGlwX2NvbnRlbnQiOiJUb29sdGlwIENvbnRlbnQifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoidGV4dC1lZGl0b3IifQ==\\\"]\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-7f386ca e-con-full animated-slow e-flex elementor-invisible e-con e-child\\\" data-id=\\\"7f386ca\\\" data-element_type=\\\"container\\\" data-settings=\\\"{&quot;animation&quot;:&quot;fadeIn&quot;}\\\">\\n\\t\\t<div class=\\\"elementor-element elementor-element-c5f605d e-con-full e-flex e-con e-child\\\" data-id=\\\"c5f605d\\\" data-element_type=\\\"container\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-7463379 elementor-view-default elementor-position-block-start elementor-mobile-position-block-start elementor-widget elementor-widget-icon-box\\\" data-id=\\\"7463379\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"icon-box.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-icon-box-wrapper\\\">\\n\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-icon-box-icon\\\">\\n\\t\\t\\t\\t<span  class=\\\"elementor-icon\\\">\\n\\t\\t\\t\\t<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" id=\\\"Layer_1\\\" height=\\\"512\\\" viewBox=\\\"0 0 450 450\\\" width=\\\"512\\\"><g><g><path d=\\\"m225 165.2c-25.9 0-48.9-18.8-53.3-45.2-2.4-14.2.9-28.6 9.3-40.3 8.4-11.8 20.9-19.5 35.1-21.9 29.4-4.9 57.3 15 62.2 44.5 4.9 29.4-15 57.3-44.4 62.2-3 .5-6 .7-8.9.7zm-7.6-99.8c-12.2 2-22.9 8.7-30.1 18.8s-10.1 22.4-8 34.6c3.8 22.7 23.5 38.8 45.7 38.8 2.5 0 5.1-.2 7.6-.6 25.2-4.2 42.3-28.1 38.1-53.4s-28.1-42.4-53.3-38.2z\\\"><\\/path><path d=\\\"m255.2 115c-2.1 0-3.8-1.7-3.8-3.8 0-14.6-11.8-26.4-26.4-26.4-2.1 0-3.8-1.7-3.8-3.8s1.7-3.8 3.8-3.8c18.8 0 34.1 15.3 34.1 34.1 0 2-1.8 3.7-3.9 3.7z\\\"><\\/path><path d=\\\"m236.1 203h-22.2c-2.1 0-3.8-1.7-3.8-3.8v-14.1c-3.1-.6-6.1-1.4-9.1-2.4l-7 12.2c-1.1 1.8-3.4 2.5-5.3 1.4l-19.2-11.1c-.9-.5-1.5-1.4-1.8-2.3-.3-1-.1-2 .4-2.9l7-12.1c-2.4-2.1-4.6-4.3-6.7-6.6l-12.1 7c-1.8 1.1-4.2.4-5.2-1.4l-11.1-19.2c-1.1-1.8-.4-4.2 1.4-5.2l11.9-6.8c-1-3-1.9-6.1-2.6-9.3h-13.7c-2.1 0-3.8-1.7-3.8-3.8v-22.2c0-2.1 1.7-3.8 3.8-3.8h13.4c.6-3.2 1.4-6.4 2.4-9.5l-11.5-6.6c-1.8-1.1-2.5-3.4-1.4-5.3l11.1-19.6c.5-.9 1.4-1.5 2.3-1.8s2-.1 2.9.4l11.3 6.6c2.2-2.5 4.5-4.8 7-7l-6.5-11.3c-.5-.9-.6-1.9-.4-2.9.3-1 .9-1.8 1.8-2.3l19.2-11.1c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l6.4 11.2c3.1-1.1 6.4-1.9 9.7-2.6v-13c0-2.1 1.7-3.8 3.8-3.8h22.2c2.1 0 3.8 1.7 3.8 3.8v12.8c3.3.7 6.5 1.5 9.7 2.6l6.5-11.2c.5-.9 1.4-1.5 2.3-1.8 1-.3 2-.1 2.9.4l19.2 11.1c.9.5 1.5 1.3 1.8 2.3s.1 2-.4 2.9l-6.5 11.3c2.5 2.2 4.8 4.5 7 7.1l11.3-6.6c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l11.1 19.2c1.1 1.8.4 4.2-1.4 5.3l-11.5 6.6c1 3.1 1.8 6.3 2.5 9.5h13.6c2.1 0 3.8 1.7 3.8 3.8v22.2c0 2.1-1.7 3.8-3.8 3.8h-13.6c-.6 3.1-1.5 6.2-2.5 9.3l11.9 6.8c1.8 1.1 2.5 3.4 1.4 5.2l-11.2 19.5c-1.1 1.8-3.4 2.5-5.2 1.4l-12-7c-2.1 2.4-4.4 4.6-6.7 6.6l7 12.1c.5.9.6 1.9.4 2.9s-.9 1.8-1.8 2.3l-19.2 11.1c-1.8 1.1-4.2.4-5.2-1.4l-7-12.2c-3 1-6 1.8-9.1 2.4v14.1c-.2 2.3-2 4-4.1 4zm-18.4-7.7h14.5v-13.5c0-1.9 1.4-3.5 3.3-3.8 4.7-.7 9.4-2 13.8-3.7 1.8-.7 3.8 0 4.7 1.7l6.7 11.6 12.6-7.3-6.7-11.6c-1-1.6-.5-3.7.9-4.9 3.7-3 7.2-6.4 10.2-10.1 1.2-1.5 3.3-1.8 4.9-.9l11.5 6.6 7.3-12.6-11.3-6.5c-1.6-.9-2.4-3-1.6-4.7 1.8-4.5 3.1-9.2 3.9-14 .3-1.9 1.9-3.2 3.8-3.2h13v-14.6h-12.8c-1.9 0-3.5-1.4-3.8-3.3-.7-4.8-2-9.6-3.7-14.2-.7-1.8 0-3.7 1.7-4.7l10.9-6.3-7.3-12.6-10.8 6.3c-1.6.9-3.7.6-4.9-.9-3.1-3.9-6.6-7.4-10.4-10.6-1.5-1.2-1.9-3.3-.9-4.9l6.2-10.7-12.6-7.3-6.1 10.6c-1 1.6-3 2.3-4.7 1.7-4.6-1.8-9.5-3.1-14.4-3.9-1.9-.3-3.3-1.9-3.3-3.8v-12.2h-14.5v12.3c0 1.9-1.4 3.5-3.3 3.8-5 .8-9.8 2.1-14.4 3.9-1.8.7-3.8 0-4.7-1.7l-6.1-10.6-12.6 7.3 6.2 10.7c.9 1.6.6 3.7-.9 4.9-3.9 3.1-7.4 6.7-10.4 10.6-1.2 1.5-3.3 1.9-4.9.9l-10.8-6.3-7.3 12.6 10.9 6.3c1.6.9 2.3 2.9 1.7 4.7-1.7 4.6-3 9.4-3.7 14.2-.3 1.9-1.9 3.3-3.8 3.3h-12.8v14.5h13c1.9 0 3.5 1.4 3.8 3.2.8 4.8 2.1 9.5 3.9 14 .7 1.8 0 3.8-1.6 4.7l-11.3 6.5 7.3 12.6 11.5-6.6c1.6-.9 3.7-.6 4.9.9 3 3.7 6.5 7.1 10.3 10.1 1.5 1.2 1.9 3.3.9 4.9l-6.7 11.6 12.6 7.3 6.7-11.6c.9-1.6 2.9-2.3 4.7-1.7 4.5 1.7 9.1 2.9 13.8 3.7 1.9.3 3.3 1.9 3.3 3.8z\\\"><\\/path><\\/g><g><g><g><path d=\\\"m45.3 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\\\"><\\/path><path d=\\\"m153.9 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\\\"><\\/path><\\/g><g><path d=\\\"m189.3 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.2c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c0 2.1-1.7 3.8-3.8 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\\\"><\\/path><g><path d=\\\"m73.3 326.4c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2-1.7 3.8-3.8 3.8z\\\"><\\/path><path d=\\\"m126 326.4c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2-1.7 3.8-3.8 3.8z\\\"><\\/path><path d=\\\"m99.7 325.6c-.6 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4s4.1 1.1 4.4 3.2c2.4 16.5 12.3 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\\\"><\\/path><path d=\\\"m50.2 266.6c-.1 0-.2 0-.3 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.7 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-8.9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.5 2.2zm81.8-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13.1-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.4-.7 2.3-.7z\\\"><\\/path><\\/g><\\/g><\\/g><g><g><path d=\\\"m296.1 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\\\"><\\/path><path d=\\\"m404.7 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\\\"><\\/path><\\/g><g><path d=\\\"m440 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.1c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c.2 2.1-1.6 3.8-3.7 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\\\"><\\/path><g><path d=\\\"m324 326.3c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2.1-1.7 3.8-3.8 3.8z\\\"><\\/path><path d=\\\"m376.7 326.3c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2.1-1.6 3.8-3.8 3.8z\\\"><\\/path><path d=\\\"m350.4 325.6c-.5 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4 2.1-.3 4 1.1 4.4 3.2 2.4 16.5 12.4 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\\\"><\\/path><path d=\\\"m301 266.6c-.1 0-.2 0-.4 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.6 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.4 2.2zm81.7-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.5-.7 2.3-.7z\\\"><\\/path><\\/g><\\/g><\\/g><\\/g><\\/g><\\/svg>\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t<\\/div>\\n\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-icon-box-content\\\">\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<h5 class=\\\"elementor-icon-box-title\\\">\\n\\t\\t\\t\\t\\t\\t<span  >\\n\\t\\t\\t\\t\\t\\t\\tet ungt og engageret team\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t<\\/h5>\\n\\t\\t\\t\\t\\n\\t\\t\\t\\t\\n\\t\\t\\t<\\/div>\\n\\t\\t\\t\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-8c9d127 e-con-full e-flex e-con e-child\\\" data-id=\\\"8c9d127\\\" data-element_type=\\\"container\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-c359ae7 elementor-view-default elementor-position-block-start elementor-mobile-position-block-start elementor-widget elementor-widget-icon-box\\\" data-id=\\\"c359ae7\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"icon-box.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-icon-box-wrapper\\\">\\n\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-icon-box-icon\\\">\\n\\t\\t\\t\\t<span  class=\\\"elementor-icon\\\">\\n\\t\\t\\t\\t<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" height=\\\"496pt\\\" viewBox=\\\"0 0 496 496\\\" width=\\\"496pt\\\"><path d=\\\"m440 328h-28.207031c5.078125-6.703125 8.207031-14.960938 8.207031-24 0-8.824219-7.175781-16-16-16h-12v-19.960938c59.574219-14.445312 104-68.085937 104-132.039062 0-74.992188-61.007812-136-136-136s-136 61.007812-136 136c0 63.953125 44.425781 117.59375 104 132.039062v19.960938h-8.449219c-6.167969 0-12.359375 1.464844-17.886719 4.214844l-50.480468 25.25c-3.320313 1.664062-7.03125 2.535156-10.734375 2.535156h-40.449219v-16h-104v16h56v56h16v-56h16v128h-16v-56h-16v56h-56v16h104v-16h40.449219c3.703125 0 7.414062.871094 10.734375 2.527344l34.488281 17.25c5.519531 2.757812 11.710937 4.222656 17.878906 4.222656h24.449219v24h64v-24h48c13.230469 0 24-10.769531 24-24 0-6.167969-2.40625-11.742188-6.238281-16 3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16 0-13.230469-10.769531-24-24-24zm8 24c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm-208-280c0-66.167969 53.832031-120 120-120s120 53.832031 120 120-53.832031 120-120 120-120-53.832031-120-120zm104 134.976562c5.257812.617188 10.574219 1.023438 16 1.023438s10.742188-.40625 16-1.023438v17.023438h-32zm-40.449219 185.023438c-3.703125 0-7.414062-.871094-10.734375-2.527344l-34.488281-17.25c-5.519531-2.757812-11.710937-4.222656-17.878906-4.222656h-40.449219v-96h40.449219c6.167969 0 12.359375-1.464844 17.886719-4.214844l50.480468-25.25c3.320313-1.664062 7.03125-2.535156 10.734375-2.535156h84.449219c0 13.230469-10.769531 24-24 24h-48.28125l-23.863281 35.808594c-6.101563 9.160156-14.527344 16.589844-24.367188 21.503906-8.753906 4.375-18.542969 6.6875-28.320312 6.6875h-15.167969v16h15.167969c12.246093 0 24.519531-2.894531 35.472656-8.375 12.328125-6.160156 22.878906-15.480469 30.527344-26.945312l6.832031-10.253907v93.574219zm40.449219 24v-136h17.472656c-.898437 2.511719-1.472656 5.183594-1.472656 8 0 6.167969 2.40625 11.742188 6.238281 16-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16 0 10.414062 6.710938 19.214844 16 22.527344v9.472656zm96-24h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8s-3.59375 8-8 8zm0 0\\\"><\\/path><path d=\\\"m394.878906 73.007812-7.757812 13.984376c17.816406 9.878906 28.878906 28.664062 28.878906 49.007812h16c0-26.160156-14.222656-50.296875-37.121094-62.992188zm0 0\\\"><\\/path><path d=\\\"m360 80c4.734375 0 9.449219.59375 14.007812 1.769531l3.976563-15.503906c-5.855469-1.496094-11.90625-2.265625-17.984375-2.265625zm0 0\\\"><\\/path><path d=\\\"m360 48c48.519531 0 88 39.480469 88 88 0 20.753906-7.398438 40.910156-20.832031 56.785156l12.207031 10.34375c15.882812-18.761718 24.625-42.601562 24.625-67.128906 0-57.34375-46.65625-104-104-104-24.527344 0-48.367188 8.753906-67.128906 24.632812l10.335937 12.199219c15.871094-13.433593 36.039063-20.832031 56.792969-20.832031zm0 0\\\"><\\/path><path d=\\\"m427.128906 215.367188-10.335937-12.199219c-15.871094 13.433593-36.039063 20.832031-56.792969 20.832031-48.519531 0-88-39.480469-88-88 0-20.753906 7.398438-40.910156 20.832031-56.785156l-12.207031-10.34375c-15.882812 18.761718-24.625 42.601562-24.625 67.128906 0 57.34375 46.65625 104 104 104 24.527344 0 48.367188-8.753906 67.128906-24.632812zm0 0\\\"><\\/path><path d=\\\"m121.214844 165.640625c4.953125-1.375 9.695312-3.34375 14.183594-5.878906l9.769531 4.886719 19.472656-19.480469-4.886719-9.769531c2.535156-4.496094 4.503906-9.230469 5.886719-14.183594l10.359375-3.445313v-27.53125l-10.351562-3.453125c-1.375-4.953125-3.34375-9.707031-5.886719-14.183594l4.886719-9.777343-19.472657-19.472657-9.769531 4.886719c-4.484375-2.535156-9.230469-4.503906-14.183594-5.878906l-3.453125-10.359375h-27.539062l-3.445313 10.359375c-4.953125 1.375-9.695312 3.34375-14.183594 5.878906l-9.777343-4.886719-19.472657 19.472657 4.886719 9.777343c-2.535156 4.488282-4.503906 9.230469-5.886719 14.183594l-10.351562 3.445313v27.53125l10.351562 3.453125c1.375 4.953125 3.34375 9.695312 5.886719 14.183594l-4.886719 9.769531 19.472657 19.480469 9.769531-4.886719c4.484375 2.535156 9.230469 4.503906 14.183594 5.878906l3.453125 10.359375h27.539062zm-12.304688-13.679687-2.679687 8.039062h-4.460938l-2.679687-8.039062-4.554688-.90625c-6.128906-1.222657-11.878906-3.605469-17.109375-7.09375l-3.867187-2.578126-7.574219 3.800782-3.160156-3.167969 3.792969-7.582031-2.578126-3.859375c-3.488281-5.222657-5.871093-10.980469-7.09375-17.109375l-.914062-4.554688-8.03125-2.679687v-4.46875l8.03125-2.671875.914062-4.554688c1.222657-6.136718 3.613282-11.886718 7.09375-17.109375l2.578126-3.859375-3.792969-7.589844 3.160156-3.160156 7.574219 3.800782 3.867187-2.578126c5.222657-3.488281 10.980469-5.863281 17.109375-7.09375l4.554688-.90625 2.679687-8.039062h4.460938l2.679687 8.039062 4.554688.90625c6.128906 1.222657 11.878906 3.605469 17.109375 7.09375l3.867187 2.578126 7.574219-3.800782 3.160156 3.160156-3.792969 7.589844 2.578126 3.859375c3.488281 5.214844 5.871093 10.972657 7.09375 17.109375l.914062 4.554688 8.03125 2.679687v4.46875l-8.03125 2.671875-.914062 4.554688c-1.222657 6.128906-3.613282 11.878906-7.09375 17.109375l-2.578126 3.859375 3.792969 7.582031-3.160156 3.167969-7.574219-3.800782-3.867187 2.578126c-5.222657 3.488281-10.980469 5.863281-17.109375 7.09375zm0 0\\\"><\\/path><path d=\\\"m104 72c-17.648438 0-32 14.351562-32 32s14.351562 32 32 32 32-14.351562 32-32-14.351562-32-32-32zm0 48c-8.824219 0-16-7.175781-16-16s7.175781-16 16-16 16 7.175781 16 16-7.175781 16-16 16zm0 0\\\"><\\/path><path d=\\\"m160 248v-40h48v-208h-208v208h106.664062zm-144-232h176v176h-48v24l-32-24h-96zm0 0\\\"><\\/path><path d=\\\"m0 272h16v16h-16zm0 0\\\"><\\/path><path d=\\\"m32 272h16v16h-16zm0 0\\\"><\\/path><path d=\\\"m64 272h16v16h-16zm0 0\\\"><\\/path><path d=\\\"m32 304h16v16h-16zm0 0\\\"><\\/path><path d=\\\"m64 304h16v16h-16zm0 0\\\"><\\/path><path d=\\\"m0 480h16v16h-16zm0 0\\\"><\\/path><path d=\\\"m32 480h16v16h-16zm0 0\\\"><\\/path><path d=\\\"m64 480h16v16h-16zm0 0\\\"><\\/path><path d=\\\"m32 448h16v16h-16zm0 0\\\"><\\/path><path d=\\\"m64 448h16v16h-16zm0 0\\\"><\\/path><\\/svg>\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t<\\/div>\\n\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-icon-box-content\\\">\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<h5 class=\\\"elementor-icon-box-title\\\">\\n\\t\\t\\t\\t\\t\\t<span  >\\n\\t\\t\\t\\t\\t\\t\\tfokus p\\u00e5 kvalitet og detaljer\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t<\\/h5>\\n\\t\\t\\t\\t\\n\\t\\t\\t\\t\\n\\t\\t\\t<\\/div>\\n\\t\\t\\t\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-283d96c e-con-full e-flex e-con e-child\\\" data-id=\\\"283d96c\\\" data-element_type=\\\"container\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-7b4f452 elementor-view-default elementor-position-block-start elementor-mobile-position-block-start elementor-widget elementor-widget-icon-box\\\" data-id=\\\"7b4f452\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"icon-box.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-icon-box-wrapper\\\">\\n\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-icon-box-icon\\\">\\n\\t\\t\\t\\t<span  class=\\\"elementor-icon\\\">\\n\\t\\t\\t\\t<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" id=\\\"Layer_1\\\" viewBox=\\\"0 0 512 512\\\"><path d=\\\"m469.12 408.93-67.26-33.63v-22.13c10.71-7.69 18.6-19.07 21.78-32.27h5.28c8.81 0 15.98-7.17 15.98-15.98v-5.29c0-6.35-3.74-11.84-9.12-14.41 5.19-18.64-1.65-39.76-19.44-59.78-12.58-14.16-30.67-22.27-49.62-22.27-18.93 0-37.01 8.12-49.59 22.27-13.38 15.05-20.95 41.01-14.03 59.62-5.56 2.5-9.45 8.09-9.45 14.57v5.29c0 8.81 7.17 15.98 15.98 15.98h5.55c3.16 13.09 10.94 24.39 21.51 32.08v22.32l-67.26 33.63c-16.7 5.87-27.89 21.6-27.89 39.28v41.63c0 3.31 2.69 6 6 6h243.46c3.31 0 6-2.69 6-6v-41.63c0-17.68-11.19-33.41-27.88-39.28zm-62.24-17.7-15.83 27.66-13.29-13.29 19.29-19.29zm-37.61 5.88-20.59-20.58v-16.91c6.41 2.57 13.4 4.01 20.72 4.01 7.22 0 14.11-1.39 20.45-3.9v16.8zm63.63-97.48v5.29c0 2.16-1.82 3.98-3.98 3.98h-3.74c.01-.36.03-.71.03-1.07v-12.18h3.71c2.15-.01 3.98 1.82 3.98 3.98zm-119.29 8.2v1.07h-3.98c-2.16 0-3.98-1.82-3.98-3.98v-5.29c0-2.16 1.82-3.98 3.98-3.98l3.98.22zm1.95-24.19c-7.33-13.69-.89-37.39 10.53-50.24 10.31-11.6 25.12-18.25 40.63-18.25 15.52 0 30.34 6.65 40.65 18.25 8.43 9.48 21.3 27.59 17.4 46.39-5.66-.35-10.67-2.55-14.4-6.36-5.37-5.49-7.72-14-6.63-23.94.29-2.62-1.17-5.13-3.6-6.17s-5.25-.37-6.95 1.65c-19.33 22.92-45.95 36.76-73.9 38.68h-3.73zm10.05 24.19v-12.73c24.57-2.92 47.92-14.05 66.73-31.8 1.43 7.26 4.63 13.6 9.45 18.52 3.27 3.35 7.14 5.89 11.41 7.58v18.42c0 24.15-19.65 43.8-43.8 43.8s-43.79-19.64-43.79-43.79zm15.89 78.48 19.29 19.29-13.29 13.29-15.84-27.66zm3.22 97.53h-39.42v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.76v-35.63c0-12.68 8.1-23.95 20.15-28.05.26-.09.51-.19.75-.31l46.47-23.23 20.07 35.06c.93 1.62 2.56 2.72 4.41 2.97.27.04.53.05.79.05 1.58 0 3.11-.62 4.24-1.76l.14-.14zm12.08 0 7.41-64.69 5.06-5.06 4.84 4.84 7.86 64.92h-25.17zm128.2 0h-39.76v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.18l-6.2-51.17.25.25c1.13 1.13 2.66 1.76 4.24 1.76.26 0 .53-.02.79-.05 1.85-.25 3.48-1.34 4.41-2.97l20.07-35.06 46.47 23.23c.24.12.49.23.75.31 12.05 4.1 20.15 15.38 20.15 28.05v35.65zm-67.04-346.65h-10.84l28.38 39.84 28.38-39.84h-10.84c-3.31 0-6-2.69-6-6v-64.58h-98.7c-3.31 0-6-2.69-6-6s2.69-6 6-6h104.7c3.31 0 6 2.69 6 6v64.58h16.48c2.25 0 4.3 1.25 5.33 3.25s.86 4.4-.45 6.23l-40.02 56.18c-1.13 1.58-2.95 2.52-4.89 2.52s-3.76-.94-4.89-2.52l-40.02-56.18c-1.3-1.83-1.48-4.23-.45-6.23s3.09-3.25 5.33-3.25h16.48v-23.5h-65.38c-3.31 0-6-2.69-6-6s2.69-6 6-6h71.38c3.31 0 6 2.69 6 6v35.5c.02 3.31-2.67 6-5.98 6zm-118.44 50.65v-133.26c0-21.18-17.23-38.41-38.41-38.41h-207.7c-21.18-.01-38.41 17.23-38.41 38.41v133.26c0 21.18 17.23 38.41 38.41 38.41h105.8l64.8 55.11c1.11.94 2.49 1.43 3.89 1.43.85 0 1.71-.18 2.52-.55 2.12-.98 3.48-3.11 3.48-5.45v-50.54h27.21c21.18 0 38.41-17.23 38.41-38.41zm-71.62 26.41c-3.31 0-6 2.69-6 6v43.56l-56.59-48.13c-1.08-.92-2.46-1.43-3.89-1.43h-108.01c-14.56 0-26.41-11.85-26.41-26.41v-133.26c0-14.56 11.85-26.41 26.41-26.41h207.69c14.56 0 26.41 11.85 26.41 26.41v133.26c0 14.56-11.85 26.41-26.41 26.41zm-156.34-87.87h56.97c3.31 0 6-2.69 6-6v-39.2l8.55-8.55c2.34-2.34 2.34-6.14 0-8.49-2.34-2.34-6.14-2.34-8.48 0l-.7.7c-.98-1.97-3.01-3.32-5.36-3.32h-56.98c-3.31 0-6 2.69-6 6v52.85c0 3.32 2.69 6.01 6 6.01zm6-52.86h44.97v2.69l-18.16 18.16-8.84-8.84c-2.34-2.34-6.14-2.34-8.49 0-2.34 2.34-2.34 6.14 0 8.49l13.08 13.08c1.17 1.17 2.71 1.76 4.24 1.76s3.07-.59 4.24-1.76l13.92-13.92v21.2h-44.96zm173.62 3.08c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 31.92c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 36.52c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.68 5.99 6zm0 31.92c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.69 5.99 6zm-119.36 165.01h10.84l-28.38-39.84-28.38 39.84h10.84c3.31 0 6 2.69 6 6v64.58h98.7c3.31 0 6 2.69 6 6s-2.69 6-6 6h-104.69c-3.31 0-6-2.69-6-6v-64.58h-16.48c-2.25 0-4.3-1.25-5.33-3.25s-.86-4.4.45-6.23l40.02-56.18c1.13-1.58 2.95-2.52 4.89-2.52s3.76.94 4.89 2.52l40.02 56.18c1.3 1.83 1.48 4.23.45 6.23s-3.09 3.25-5.33 3.25h-16.48v23.5h65.38c3.31 0 6 2.69 6 6s-2.69 6-6 6h-71.38c-3.31 0-6-2.69-6-6v-35.5c-.03-3.31 2.66-6 5.97-6z\\\"><\\/path><\\/svg>\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t<\\/div>\\n\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-icon-box-content\\\">\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<h5 class=\\\"elementor-icon-box-title\\\">\\n\\t\\t\\t\\t\\t\\t<span  >\\n\\t\\t\\t\\t\\t\\t\\t\\u00e6rlig<br> r\\u00e5dgivning\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t<\\/h5>\\n\\t\\t\\t\\t\\n\\t\\t\\t\\t\\n\\t\\t\\t<\\/div>\\n\\t\\t\\t\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-bc5745d e-con-full e-flex e-con e-child\\\" data-id=\\\"bc5745d\\\" data-element_type=\\\"container\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-4803ab1 elementor-view-default elementor-position-block-start elementor-mobile-position-block-start elementor-widget elementor-widget-icon-box\\\" data-id=\\\"4803ab1\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"icon-box.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-icon-box-wrapper\\\">\\n\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-icon-box-icon\\\">\\n\\t\\t\\t\\t<span  class=\\\"elementor-icon\\\">\\n\\t\\t\\t\\t<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" xmlns:serif=\\\"http:\\/\\/www.serif.com\\/\\\" clip-rule=\\\"evenodd\\\" fill-rule=\\\"evenodd\\\" stroke-linejoin=\\\"round\\\" stroke-miterlimit=\\\"2\\\" viewBox=\\\"0 0 510 510\\\"><path d=\\\"m192.036 385.845c-4.787-46.972-19.459-64.336-30.658-82.352-8.672-13.951-15.5-28.245-15.5-54.252 0-60.242 48.865-109.109 109.135-109.109 60.242 0 109.109 48.866 109.109 109.109 0 26.007-6.828 40.301-15.5 54.252-11.199 18.016-25.871 35.38-30.658 82.352 9.985 2.864 17.345 12.101 17.345 22.975v36.44c0 13.109-10.747 23.866-23.893 23.866h-10.334v9.945c0 12.588-10.341 22.929-22.93 22.929h-46.304c-12.589 0-22.93-10.341-22.93-22.929v-9.945h-10.334c-13.146 0-23.893-10.757-23.893-23.866v-36.44c0-10.874 7.36-20.111 17.345-22.975zm111.948-.917c4.199-42.194 15.78-62.332 26.488-79.049 10.147-15.842 19.65-28.207 19.65-56.638 0-52.513-42.597-95.109-95.109-95.109-52.537 0-95.135 42.596-95.135 95.109 0 28.431 9.503 40.796 19.65 56.638 10.708 16.717 22.289 36.855 26.488 79.049zm2.554-78.61c-1.175 13.701-11.985 24.191-24.783 24.191-13.527 0-24.862-12.086-24.862-26.673v-99.328c0-14.12 11.335-26.673 24.862-26.673 11.309 0 21.031 8.139 23.975 19.497 9.12 3.904 15.688 13.438 15.688 24.78 0 1.153-.068 2.289-.201 3.403 5.078 5.326 8.283 12.802 8.283 21.117 0 6.39-1.889 12.262-5.06 17.053 1.996 4.099 3.13 8.773 3.13 13.76 0 14.1-9.065 25.697-21.032 28.873zm-16.452-109.977c-1.964-2.729-4.916-4.506-8.331-4.506-6.192 0-10.862 6.21-10.862 12.673v99.328c0 6.677 4.67 12.673 10.862 12.673 5.516 0 9.822-4.614 10.717-10.425-4.709-1.416-8.923-4.144-12.279-7.814-2.607-2.852-2.409-7.283.443-9.89 2.851-2.607 7.282-2.408 9.889.443 2.416 2.642 5.72 4.356 9.402 4.356 7.733 0 13.643-7.218 13.643-15.734s-5.91-15.734-13.643-15.734c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7 5.352 0 10.388 1.655 14.658 4.533.593-1.743.915-3.634.915-5.612 0-2.11-.366-4.128-1.036-5.972-.769.858-1.588 1.66-2.453 2.397-2.94 2.507-7.361 2.156-9.869-.784-2.507-2.939-2.155-7.361.784-9.868 2.773-2.365 4.492-6.122 4.492-10.293 0-6.072-3.705-11.374-8.898-12.467-.154-.023-.307-.052-.458-.085-.499-.08-1.01-.121-1.532-.121-2.947 0-5.591 1.389-7.515 3.525-2.585 2.87-7.015 3.101-9.886.515-2.87-2.586-3.101-7.015-.515-9.886 3.111-3.453 7.059-5.988 11.472-7.252zm-104.526 67.344c-3.171-4.791-5.06-10.663-5.06-17.053 0-8.307 3.198-15.777 8.284-21.104-.133-1.118-.202-2.258-.202-3.416 0-11.354 6.582-20.897 15.717-24.792 2.948-11.354 12.67-19.485 23.946-19.485 13.56 0 24.888 12.555 24.888 26.673v99.328c0 14.585-11.328 26.673-24.888 26.673-12.765 0-23.578-10.484-24.757-24.184-11.98-3.166-21.058-14.769-21.058-28.88 0-4.987 1.134-9.661 3.13-13.76zm9.982-23.036c-.675 1.847-1.042 3.869-1.042 5.983 0 1.978.322 3.869.915 5.612 4.27-2.878 9.306-4.533 14.658-4.533 3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7-7.733 0-13.643 7.218-13.643 15.734s5.91 15.734 13.643 15.734c3.682 0 6.986-1.714 9.402-4.356 2.607-2.851 7.038-3.05 9.889-.443 2.852 2.607 3.05 7.038.443 9.89-3.35 3.664-7.556 6.389-12.255 7.807.891 5.813 5.192 10.432 10.693 10.432 6.21 0 10.888-5.993 10.888-12.673v-99.328c0-6.466-4.678-12.673-10.888-12.673-3.404 0-6.349 1.777-8.309 4.507 4.421 1.264 8.367 3.8 11.476 7.251 2.586 2.871 2.355 7.3-.516 9.886-2.87 2.586-7.3 2.355-9.886-.515-1.926-2.138-4.574-3.525-7.54-3.525-.493 0-.976.037-1.448.108-.196.045-.395.082-.596.11-5.165 1.118-8.844 6.404-8.844 12.455 0 1.243.153 2.45.442 3.594.101.284.183.572.246.862.748 2.326 2.071 4.346 3.814 5.823 2.947 2.498 3.311 6.919.813 9.866s-6.919 3.312-9.866.814c-.878-.745-1.71-1.554-2.489-2.422zm3.042 158.279c-5.442 0-9.893 4.451-9.893 9.892v36.44c0 5.423 4.454 9.866 9.893 9.866h17.334c3.866 0 7 3.134 7 7v16.945c0 4.902 4.027 8.929 8.93 8.929h46.304c4.903 0 8.93-4.027 8.93-8.929v-16.945c0-3.866 3.134-7 7-7h17.334c5.439 0 9.893-4.443 9.893-9.866v-36.44c0-5.441-4.451-9.892-9.893-9.892zm63.416-314.093 2.907-5.412c1.828-3.403 6.075-4.683 9.479-2.854 3.403 1.828 4.682 6.075 2.854 9.479l-16.073 29.925c-1.22 2.271-3.589 3.688-6.167 3.688s-4.947-1.417-6.167-3.688l-16.073-29.925c-1.828-3.404-.549-7.651 2.854-9.479 3.404-1.829 7.651-.549 9.479 2.854l2.907 5.412v-69.835c0-3.863 3.137-7 7-7s7 3.137 7 7zm-132.198 54.758-49.381-49.381c-2.732-2.731-2.732-7.167 0-9.899s7.168-2.732 9.9 0l49.38 49.38-1.771-5.881c-1.114-3.7.985-7.608 4.684-8.722 3.7-1.114 7.607.985 8.721 4.685l9.796 32.526c.743 2.468.069 5.145-1.753 6.968-1.823 1.823-4.5 2.496-6.969 1.753l-32.526-9.795c-3.699-1.114-5.798-5.022-4.684-8.721s5.022-5.798 8.721-4.684zm-44.859 122.299h-69.835c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7h69.835l-5.412-2.907c-3.403-1.828-4.682-6.076-2.854-9.479 1.828-3.404 6.075-4.683 9.479-2.855l29.926 16.074c2.271 1.22 3.688 3.589 3.688 6.167 0 2.577-1.417 4.947-3.688 6.166l-29.926 16.074c-3.404 1.828-7.651.549-9.479-2.855-1.828-3.403-.549-7.651 2.854-9.479zm54.758 118.198-49.38 49.38c-2.732 2.732-7.168 2.732-9.9 0s-2.732-7.167 0-9.899l49.381-49.381-5.882 1.772c-3.699 1.114-7.607-.985-8.721-4.685-1.114-3.699.985-7.607 4.684-8.721l32.526-9.795c2.469-.743 5.146-.07 6.969 1.753 1.822 1.823 2.496 4.5 1.753 6.968l-9.796 32.527c-1.114 3.699-5.021 5.798-8.721 4.684-3.699-1.114-5.798-5.022-4.684-8.721zm240.497-240.497 5.882-1.771c3.699-1.114 7.607.985 8.721 4.684s-.985 7.607-4.684 8.721l-32.526 9.795c-2.469.743-5.146.07-6.969-1.753-1.822-1.823-2.496-4.5-1.753-6.968l9.796-32.526c1.114-3.7 5.021-5.799 8.721-4.685 3.699 1.114 5.798 5.022 4.684 8.722l-1.771 5.881 49.38-49.38c2.732-2.732 7.168-2.732 9.9 0s2.732 7.168 0 9.899zm44.859 122.299 5.412 2.906c3.403 1.828 4.682 6.076 2.854 9.479-1.828 3.404-6.075 4.683-9.479 2.855l-29.926-16.074c-2.271-1.219-3.688-3.589-3.688-6.166 0-2.578 1.417-4.947 3.688-6.167l29.926-16.074c3.404-1.828 7.651-.549 9.479 2.855 1.828 3.403.549 7.651-2.854 9.479l-5.412 2.907h69.835c3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7zm-54.758 118.198 1.771 5.882c1.114 3.699-.985 7.607-4.684 8.721-3.7 1.114-7.607-.985-8.721-4.684l-9.796-32.527c-.743-2.468-.069-5.145 1.753-6.968 1.823-1.823 4.5-2.496 6.969-1.753l32.526 9.795c3.699 1.114 5.798 5.022 4.684 8.721-1.114 3.7-5.022 5.799-8.721 4.685l-5.882-1.772 49.381 49.381c2.732 2.732 2.732 7.167 0 9.899s-7.168 2.732-9.9 0z\\\"><\\/path><\\/svg>\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t<\\/div>\\n\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-icon-box-content\\\">\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<h5 class=\\\"elementor-icon-box-title\\\">\\n\\t\\t\\t\\t\\t\\t<span  >\\n\\t\\t\\t\\t\\t\\t\\tgennemt\\u00e6nkte l\\u00f8sninger\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t<\\/h5>\\n\\t\\t\\t\\t\\n\\t\\t\\t\\t\\n\\t\\t\\t<\\/div>\\n\\t\\t\\t\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-c0f2190 e-con-full e-flex e-con e-child\\\" data-id=\\\"c0f2190\\\" data-element_type=\\\"container\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-327bd23 elementor-view-default elementor-position-block-start elementor-mobile-position-block-start elementor-widget elementor-widget-icon-box\\\" data-id=\\\"327bd23\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"icon-box.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-icon-box-wrapper\\\">\\n\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-icon-box-icon\\\">\\n\\t\\t\\t\\t<span  class=\\\"elementor-icon\\\">\\n\\t\\t\\t\\t<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" viewBox=\\\"0 0 512 512\\\" width=\\\"512\\\" height=\\\"512\\\"><g id=\\\"outline\\\"><path d=\\\"M486.41,144A28,28,0,0,0,472,92H349.123l5.457-21.828a48.513,48.513,0,0,0-12.848-46.153A41.035,41.035,0,0,0,312.609,12H308a8.009,8.009,0,0,0-8,8V47.413l-19.233,64.112A17.376,17.376,0,0,1,268,123.539V112a4,4,0,0,0-4-4H152a4,4,0,0,0-4,4v72a4,4,0,0,0,8,0V116h72V276H156V248a4,4,0,0,0-8,0v32a4,4,0,0,0,4,4H264a4,4,0,0,0,4-4V268.5h11.168A37.07,37.07,0,0,1,305.092,279a45.025,45.025,0,0,0,31.48,12.752L440,292a27.987,27.987,0,0,0,19.369-48.2,27.987,27.987,0,0,0,16-48A28,28,0,0,0,486.41,144ZM260,276H236V116h24Zm212-88H396a4,4,0,0,0,0,8h60a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h40a20,20,0,0,1,.01,40l-103.428-.25a37.07,37.07,0,0,1-25.924-10.5,45.031,45.031,0,0,0-31.49-12.752H268V131.686a25.317,25.317,0,0,0,20.429-17.862l19.4-64.675A4,4,0,0,0,308,48V20h4.609a33.082,33.082,0,0,1,23.481,9.69,40.507,40.507,0,0,1,10.728,38.541l-6.7,26.8A4,4,0,0,0,344,100H472a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h72a20,20,0,0,1,0,40Z\\\"><\\/path><path d=\\\"M194.5,183.243l-1.9-.217a4,4,0,0,0-4.169,2.491L184.29,195.9H135.278l-3.539-9.317a4,4,0,0,0-7.478,2.84l2.459,6.477h-8.474L68.452,156.872a4,4,0,1,0-4.935,6.3L77.6,174.209,56.961,194.48l-6.636-5.491a4,4,0,1,0-5.1,6.163L87.219,229.9a44.1,44.1,0,0,0,28.05,10.1H212a8.009,8.009,0,0,0,8-8V203.9a8.009,8.009,0,0,0-8-8h-8v-2.01A10.708,10.708,0,0,0,194.5,183.243ZM212,203.9V232H115.269a36.081,36.081,0,0,1-22.951-8.264l-29.16-24.128,20.8-20.422L114.4,203.045a4,4,0,0,0,2.468.852H187a4,4,0,0,0,3.715-2.517l3.929-9.843a2.712,2.712,0,0,1,1.356,2.35v6.01a4,4,0,0,0,4,4Z\\\"><\\/path><path d=\\\"M223.084,484.672,200.87,469.863V346.36A44.1,44.1,0,0,0,195.327,325l-17.183-30.94a4,4,0,0,0-7,3.884l17.184,30.94a36.073,36.073,0,0,1,4.537,17.478V468H164.333a4,4,0,1,0,0,8h31.321l12,8H152.865V352a4,4,0,0,0-.358-1.655l-25.454-56A4,4,0,0,0,123.411,292H114.2a4,4,0,0,0-3.945,4.658l8.862,53.175a36.016,36.016,0,0,1-1.951,18.949L78.642,468H48.333a4,4,0,1,0,0,8H80.377L92,484H32.088L76.63,361.366a4.017,4.017,0,0,0,.183-2.044L61.1,268H136a4,4,0,0,0,0-8H59.233L30.555,173.966A19.723,19.723,0,0,1,49.27,148H76a12,12,0,0,0,24,0h15.2a21.975,21.975,0,0,1,8.395,1.652l10.889,4.458a4,4,0,1,0,3.032-7.4L126.63,142.25A29.938,29.938,0,0,0,115.2,140H100v-4.527A16.014,16.014,0,0,0,112,120V103.473A16.014,16.014,0,0,0,124,88V80a4,4,0,0,0-4-4H90A22.025,22.025,0,0,0,68,98v18a12.02,12.02,0,0,0,8,11.314V140H49.27a27.723,27.723,0,0,0-26.305,36.5l29.493,88.482,16.29,94.655-46.128,127A4,4,0,0,0,26.38,492h78.485a4,4,0,0,0,2.268-7.3L86.3,470.368l38.318-98.69a44.018,44.018,0,0,0,2.385-23.16L118.921,300h1.914l24.03,52.867V488a4,4,0,0,0,4,4h72a4,4,0,0,0,2.219-7.328ZM76,98A14.015,14.015,0,0,1,90,84h26v4a8.009,8.009,0,0,1-8,8H92a4,4,0,0,0-4,4,11.962,11.962,0,0,1-1.53,5.881A12.044,12.044,0,0,0,76,104.686Zm4,14a3.981,3.981,0,0,1,3.407,1.9,4,4,0,0,0,5.956.975c.207-.171.7-.648.7-.648.032-.028.061-.057.09-.087A19.907,19.907,0,0,0,95.6,104H104v16a8.009,8.009,0,0,1-8,8,12.133,12.133,0,0,1-2.681-.3,4,4,0,1,0-1.775,7.8c.151.035.3.06.456.091V148a4,4,0,1,1-8,0V124a4,4,0,0,0-4-4,4,4,0,0,1,0-8Z\\\"><\\/path><\\/g><\\/svg>\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t<\\/div>\\n\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-icon-box-content\\\">\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<h5 class=\\\"elementor-icon-box-title\\\">\\n\\t\\t\\t\\t\\t\\t<span  >\\n\\t\\t\\t\\t\\t\\t\\tarbejde udf\\u00f8rt med ansvar\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t<\\/h5>\\n\\t\\t\\t\\t\\n\\t\\t\\t\\t\\n\\t\\t\\t<\\/div>\\n\\t\\t\\t\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t[elementor-element k=\\\"7e3dc5e517862d53cc17d5f276a76400\\\" data=\\\"eyJpZCI6IjJiYzk3NjkiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlZGl0b3IiOiI8cD5WaSBsb3ZlciBpa2tlIG1lcmUsIGVuZCB2aSBrYW4gaG9sZGUgXHUyMDEzIG1lbiB2aSBob2xkZXIgZGV0LCB2aSBsb3Zlci48XC9wPiIsImFsaWduIjoiY2VudGVyIiwiX21hcmdpbiI6eyJ1bml0IjoicHgiLCJ0b3AiOiIzMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sInBwX2Rpc3BsYXlfY29uZGl0aW9ucyI6W3siX2lkIjoiMmExZDhmYyJ9XSwicHBfZWxlbWVudHNfdG9vbHRpcF9jb250ZW50IjoiVG9vbHRpcCBDb250ZW50In0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6InRleHQtZWRpdG9yIn0=\\\"]\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-6323910b e-flex e-con-boxed e-con e-parent\\\" data-id=\\\"6323910b\\\" data-element_type=\\\"container\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"e-con-inner\\\">\\n\\t\\t<div class=\\\"elementor-element elementor-element-640d38eb e-con-full e-flex e-con e-child\\\" data-id=\\\"640d38eb\\\" data-element_type=\\\"container\\\">\\n\\t\\t<div class=\\\"elementor-element elementor-element-75253fe5 e-con-full animated-slow e-flex e-con e-child\\\" data-id=\\\"75253fe5\\\" data-element_type=\\\"container\\\" data-settings=\\\"{&quot;animation&quot;:&quot;none&quot;,&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-641310a elementor-widget elementor-widget-heading\\\" data-id=\\\"641310a\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t\\t<h2 class=\\\"elementor-heading-title elementor-size-default\\\">KONTAKT OS<\\/h2>\\t\\t\\t\\t<\\/div>\\n\\t\\t[elementor-element k=\\\"7e3dc5e517862d53cc17d5f276a76400\\\" data=\\\"eyJpZCI6ImI3ZmVhMDAiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlZGl0b3IiOiI8cD5IYXIgZHUgZXQgcHJvamVrdCBpIHRhbmtlcm5lLCBlbGxlciBcdTAwZjhuc2tlciBkdSBhdCBoXHUwMGY4cmUgbWVyZSBvbSBkaW5lIG11bGlnaGVkZXIsIGVyIGR1IGFsdGlkIHZlbGtvbW1lbiB0aWwgYXQga29udGFrdGUgb3MgZm9yIGVuIHVmb3JwbGlndGVuZGUgc25hay48XC9wPiIsImFsaWduIjoiY2VudGVyIiwicHBfZGlzcGxheV9jb25kaXRpb25zIjpbeyJfaWQiOiI2OGQ3M2IzIn1dLCJwcF9lbGVtZW50c190b29sdGlwX2NvbnRlbnQiOiJUb29sdGlwIENvbnRlbnQiLCJfX2dsb2JhbHNfXyI6eyJ0ZXh0X2NvbG9yIjoiZ2xvYmFsc1wvY29sb3JzP2lkPWFzdGdsb2JhbGNvbG9yNCJ9fSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoidGV4dC1lZGl0b3IifQ==\\\"]\\t\\t<div class=\\\"elementor-element elementor-element-14202595 elementor-button-align-stretch elementor-widget elementor-widget-form\\\" data-id=\\\"14202595\\\" data-element_type=\\\"widget\\\" data-settings=\\\"{&quot;step_next_label&quot;:&quot;Next&quot;,&quot;step_previous_label&quot;:&quot;Previous&quot;,&quot;button_width&quot;:&quot;100&quot;,&quot;step_type&quot;:&quot;number_text&quot;,&quot;step_icon_shape&quot;:&quot;circle&quot;}\\\" data-widget_type=\\\"form.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t<form class=\\\"elementor-form\\\" method=\\\"post\\\" name=\\\"New Form\\\" aria-label=\\\"New Form\\\">\\n\\t\\t\\t<input type=\\\"hidden\\\" name=\\\"post_id\\\" value=\\\"10\\\"\\/>\\n\\t\\t\\t<input type=\\\"hidden\\\" name=\\\"form_id\\\" value=\\\"14202595\\\"\\/>\\n\\t\\t\\t<input type=\\\"hidden\\\" name=\\\"referer_title\\\" value=\\\"\\\" \\/>\\n\\n\\t\\t\\t\\t\\t\\t\\t<input type=\\\"hidden\\\" name=\\\"queried_id\\\" value=\\\"10\\\"\\/>\\n\\t\\t\\t\\n\\t\\t\\t<div class=\\\"elementor-form-fields-wrapper elementor-labels-above\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-field-type-text elementor-field-group elementor-column elementor-field-group-field_bb6ac82 elementor-col-50 elementor-field-required\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<label for=\\\"form-field-field_bb6ac82\\\" class=\\\"elementor-field-label\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\tNavn\\t\\t\\t\\t\\t\\t\\t<\\/label>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<input size=\\\"1\\\" type=\\\"text\\\" name=\\\"form_fields[field_bb6ac82]\\\" id=\\\"form-field-field_bb6ac82\\\" class=\\\"elementor-field elementor-size-lg  elementor-field-textual\\\" required=\\\"required\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-field-type-email elementor-field-group elementor-column elementor-field-group-field_6986e48 elementor-col-50 elementor-field-required\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<label for=\\\"form-field-field_6986e48\\\" class=\\\"elementor-field-label\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\tEmail\\t\\t\\t\\t\\t\\t\\t<\\/label>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<input size=\\\"1\\\" type=\\\"email\\\" name=\\\"form_fields[field_6986e48]\\\" id=\\\"form-field-field_6986e48\\\" class=\\\"elementor-field elementor-size-lg  elementor-field-textual\\\" required=\\\"required\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-field-type-tel elementor-field-group elementor-column elementor-field-group-field_7683f73 elementor-col-50 elementor-field-required\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<label for=\\\"form-field-field_7683f73\\\" class=\\\"elementor-field-label\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\tTelefon\\t\\t\\t\\t\\t\\t\\t<\\/label>\\n\\t\\t\\t\\t\\t\\t\\t\\t<input size=\\\"1\\\" type=\\\"tel\\\" name=\\\"form_fields[field_7683f73]\\\" id=\\\"form-field-field_7683f73\\\" class=\\\"elementor-field elementor-size-lg  elementor-field-textual\\\" required=\\\"required\\\" pattern=\\\"[0-9()#&amp;+*-=.]+\\\" title=\\\"Only numbers and phone characters (#, -, *, etc) are accepted.\\\">\\n\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-field-type-select elementor-field-group elementor-column elementor-field-group-field_9de44bc elementor-col-50 elementor-field-required\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<label for=\\\"form-field-field_9de44bc\\\" class=\\\"elementor-field-label\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\tTjenesters navn\\t\\t\\t\\t\\t\\t\\t<\\/label>\\n\\t\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-field elementor-select-wrapper remove-before \\\">\\n\\t\\t\\t<div class=\\\"select-caret-down-wrapper\\\">\\n\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" class=\\\"e-font-icon-svg e-eicon-caret-down\\\" viewBox=\\\"0 0 571.4 571.4\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M571 393Q571 407 561 418L311 668Q300 679 286 679T261 668L11 418Q0 407 0 393T11 368 36 357H536Q550 357 561 368T571 393Z\\\"><\\/path><\\/svg>\\t\\t\\t<\\/div>\\n\\t\\t\\t<select name=\\\"form_fields[field_9de44bc]\\\" id=\\\"form-field-field_9de44bc\\\" class=\\\"elementor-field-textual elementor-size-lg\\\" required=\\\"required\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<option value=\\\"Terrasser\\\">Terrasser<\\/option>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<option value=\\\"Totalrenoveringer\\\">Totalrenoveringer<\\/option>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<option value=\\\"Tilbygninger\\\">Tilbygninger<\\/option>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<option value=\\\"Carporte\\\">Carporte<\\/option>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<option value=\\\"TAGD\\u00c6KNING\\\">TAGD\\u00c6KNING<\\/option>\\n\\t\\t\\t\\t\\t\\t\\t<\\/select>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-field-type-textarea elementor-field-group elementor-column elementor-field-group-field_d10992d elementor-col-100\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<label for=\\\"form-field-field_d10992d\\\" class=\\\"elementor-field-label\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\tBeskeder\\t\\t\\t\\t\\t\\t\\t<\\/label>\\n\\t\\t\\t\\t\\t\\t<textarea class=\\\"elementor-field-textual elementor-field  elementor-size-lg\\\" name=\\\"form_fields[field_d10992d]\\\" id=\\\"form-field-field_d10992d\\\" rows=\\\"4\\\"><\\/textarea>\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-field-group elementor-column elementor-field-type-submit elementor-col-100 e-form__buttons\\\">\\n\\t\\t\\t\\t\\t<button class=\\\"elementor-button elementor-size-lg\\\" type=\\\"submit\\\">\\n\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-content-wrapper\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-text\\\">Send<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t<\\/button>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t<\\/div>\\n\\t\\t<\\/form>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\",\"scripts\":[],\"styles\":[]}}');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7635, 480, '_elementor_inline_svg', '<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 510 510\"><path d=\"m192.036 385.845c-4.787-46.972-19.459-64.336-30.658-82.352-8.672-13.951-15.5-28.245-15.5-54.252 0-60.242 48.865-109.109 109.135-109.109 60.242 0 109.109 48.866 109.109 109.109 0 26.007-6.828 40.301-15.5 54.252-11.199 18.016-25.871 35.38-30.658 82.352 9.985 2.864 17.345 12.101 17.345 22.975v36.44c0 13.109-10.747 23.866-23.893 23.866h-10.334v9.945c0 12.588-10.341 22.929-22.93 22.929h-46.304c-12.589 0-22.93-10.341-22.93-22.929v-9.945h-10.334c-13.146 0-23.893-10.757-23.893-23.866v-36.44c0-10.874 7.36-20.111 17.345-22.975zm111.948-.917c4.199-42.194 15.78-62.332 26.488-79.049 10.147-15.842 19.65-28.207 19.65-56.638 0-52.513-42.597-95.109-95.109-95.109-52.537 0-95.135 42.596-95.135 95.109 0 28.431 9.503 40.796 19.65 56.638 10.708 16.717 22.289 36.855 26.488 79.049zm2.554-78.61c-1.175 13.701-11.985 24.191-24.783 24.191-13.527 0-24.862-12.086-24.862-26.673v-99.328c0-14.12 11.335-26.673 24.862-26.673 11.309 0 21.031 8.139 23.975 19.497 9.12 3.904 15.688 13.438 15.688 24.78 0 1.153-.068 2.289-.201 3.403 5.078 5.326 8.283 12.802 8.283 21.117 0 6.39-1.889 12.262-5.06 17.053 1.996 4.099 3.13 8.773 3.13 13.76 0 14.1-9.065 25.697-21.032 28.873zm-16.452-109.977c-1.964-2.729-4.916-4.506-8.331-4.506-6.192 0-10.862 6.21-10.862 12.673v99.328c0 6.677 4.67 12.673 10.862 12.673 5.516 0 9.822-4.614 10.717-10.425-4.709-1.416-8.923-4.144-12.279-7.814-2.607-2.852-2.409-7.283.443-9.89 2.851-2.607 7.282-2.408 9.889.443 2.416 2.642 5.72 4.356 9.402 4.356 7.733 0 13.643-7.218 13.643-15.734s-5.91-15.734-13.643-15.734c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7 5.352 0 10.388 1.655 14.658 4.533.593-1.743.915-3.634.915-5.612 0-2.11-.366-4.128-1.036-5.972-.769.858-1.588 1.66-2.453 2.397-2.94 2.507-7.361 2.156-9.869-.784-2.507-2.939-2.155-7.361.784-9.868 2.773-2.365 4.492-6.122 4.492-10.293 0-6.072-3.705-11.374-8.898-12.467-.154-.023-.307-.052-.458-.085-.499-.08-1.01-.121-1.532-.121-2.947 0-5.591 1.389-7.515 3.525-2.585 2.87-7.015 3.101-9.886.515-2.87-2.586-3.101-7.015-.515-9.886 3.111-3.453 7.059-5.988 11.472-7.252zm-104.526 67.344c-3.171-4.791-5.06-10.663-5.06-17.053 0-8.307 3.198-15.777 8.284-21.104-.133-1.118-.202-2.258-.202-3.416 0-11.354 6.582-20.897 15.717-24.792 2.948-11.354 12.67-19.485 23.946-19.485 13.56 0 24.888 12.555 24.888 26.673v99.328c0 14.585-11.328 26.673-24.888 26.673-12.765 0-23.578-10.484-24.757-24.184-11.98-3.166-21.058-14.769-21.058-28.88 0-4.987 1.134-9.661 3.13-13.76zm9.982-23.036c-.675 1.847-1.042 3.869-1.042 5.983 0 1.978.322 3.869.915 5.612 4.27-2.878 9.306-4.533 14.658-4.533 3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7-7.733 0-13.643 7.218-13.643 15.734s5.91 15.734 13.643 15.734c3.682 0 6.986-1.714 9.402-4.356 2.607-2.851 7.038-3.05 9.889-.443 2.852 2.607 3.05 7.038.443 9.89-3.35 3.664-7.556 6.389-12.255 7.807.891 5.813 5.192 10.432 10.693 10.432 6.21 0 10.888-5.993 10.888-12.673v-99.328c0-6.466-4.678-12.673-10.888-12.673-3.404 0-6.349 1.777-8.309 4.507 4.421 1.264 8.367 3.8 11.476 7.251 2.586 2.871 2.355 7.3-.516 9.886-2.87 2.586-7.3 2.355-9.886-.515-1.926-2.138-4.574-3.525-7.54-3.525-.493 0-.976.037-1.448.108-.196.045-.395.082-.596.11-5.165 1.118-8.844 6.404-8.844 12.455 0 1.243.153 2.45.442 3.594.101.284.183.572.246.862.748 2.326 2.071 4.346 3.814 5.823 2.947 2.498 3.311 6.919.813 9.866s-6.919 3.312-9.866.814c-.878-.745-1.71-1.554-2.489-2.422zm3.042 158.279c-5.442 0-9.893 4.451-9.893 9.892v36.44c0 5.423 4.454 9.866 9.893 9.866h17.334c3.866 0 7 3.134 7 7v16.945c0 4.902 4.027 8.929 8.93 8.929h46.304c4.903 0 8.93-4.027 8.93-8.929v-16.945c0-3.866 3.134-7 7-7h17.334c5.439 0 9.893-4.443 9.893-9.866v-36.44c0-5.441-4.451-9.892-9.893-9.892zm63.416-314.093 2.907-5.412c1.828-3.403 6.075-4.683 9.479-2.854 3.403 1.828 4.682 6.075 2.854 9.479l-16.073 29.925c-1.22 2.271-3.589 3.688-6.167 3.688s-4.947-1.417-6.167-3.688l-16.073-29.925c-1.828-3.404-.549-7.651 2.854-9.479 3.404-1.829 7.651-.549 9.479 2.854l2.907 5.412v-69.835c0-3.863 3.137-7 7-7s7 3.137 7 7zm-132.198 54.758-49.381-49.381c-2.732-2.731-2.732-7.167 0-9.899s7.168-2.732 9.9 0l49.38 49.38-1.771-5.881c-1.114-3.7.985-7.608 4.684-8.722 3.7-1.114 7.607.985 8.721 4.685l9.796 32.526c.743 2.468.069 5.145-1.753 6.968-1.823 1.823-4.5 2.496-6.969 1.753l-32.526-9.795c-3.699-1.114-5.798-5.022-4.684-8.721s5.022-5.798 8.721-4.684zm-44.859 122.299h-69.835c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7h69.835l-5.412-2.907c-3.403-1.828-4.682-6.076-2.854-9.479 1.828-3.404 6.075-4.683 9.479-2.855l29.926 16.074c2.271 1.22 3.688 3.589 3.688 6.167 0 2.577-1.417 4.947-3.688 6.166l-29.926 16.074c-3.404 1.828-7.651.549-9.479-2.855-1.828-3.403-.549-7.651 2.854-9.479zm54.758 118.198-49.38 49.38c-2.732 2.732-7.168 2.732-9.9 0s-2.732-7.167 0-9.899l49.381-49.381-5.882 1.772c-3.699 1.114-7.607-.985-8.721-4.685-1.114-3.699.985-7.607 4.684-8.721l32.526-9.795c2.469-.743 5.146-.07 6.969 1.753 1.822 1.823 2.496 4.5 1.753 6.968l-9.796 32.527c-1.114 3.699-5.021 5.798-8.721 4.684-3.699-1.114-5.798-5.022-4.684-8.721zm240.497-240.497 5.882-1.771c3.699-1.114 7.607.985 8.721 4.684s-.985 7.607-4.684 8.721l-32.526 9.795c-2.469.743-5.146.07-6.969-1.753-1.822-1.823-2.496-4.5-1.753-6.968l9.796-32.526c1.114-3.7 5.021-5.799 8.721-4.685 3.699 1.114 5.798 5.022 4.684 8.722l-1.771 5.881 49.38-49.38c2.732-2.732 7.168-2.732 9.9 0s2.732 7.168 0 9.899zm44.859 122.299 5.412 2.906c3.403 1.828 4.682 6.076 2.854 9.479-1.828 3.404-6.075 4.683-9.479 2.855l-29.926-16.074c-2.271-1.219-3.688-3.589-3.688-6.166 0-2.578 1.417-4.947 3.688-6.167l29.926-16.074c3.404-1.828 7.651-.549 9.479 2.855 1.828 3.403.549 7.651-2.854 9.479l-5.412 2.907h69.835c3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7zm-54.758 118.198 1.771 5.882c1.114 3.699-.985 7.607-4.684 8.721-3.7 1.114-7.607-.985-8.721-4.684l-9.796-32.527c-.743-2.468-.069-5.145 1.753-6.968 1.823-1.823 4.5-2.496 6.969-1.753l32.526 9.795c3.699 1.114 5.798 5.022 4.684 8.721-1.114 3.7-5.022 5.799-8.721 4.685l-5.882-1.772 49.381 49.381c2.732 2.732 2.732 7.167 0 9.899s-7.168 2.732-9.9 0z\"></path></svg>'),
(7634, 479, '_elementor_inline_svg', '<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m469.12 408.93-67.26-33.63v-22.13c10.71-7.69 18.6-19.07 21.78-32.27h5.28c8.81 0 15.98-7.17 15.98-15.98v-5.29c0-6.35-3.74-11.84-9.12-14.41 5.19-18.64-1.65-39.76-19.44-59.78-12.58-14.16-30.67-22.27-49.62-22.27-18.93 0-37.01 8.12-49.59 22.27-13.38 15.05-20.95 41.01-14.03 59.62-5.56 2.5-9.45 8.09-9.45 14.57v5.29c0 8.81 7.17 15.98 15.98 15.98h5.55c3.16 13.09 10.94 24.39 21.51 32.08v22.32l-67.26 33.63c-16.7 5.87-27.89 21.6-27.89 39.28v41.63c0 3.31 2.69 6 6 6h243.46c3.31 0 6-2.69 6-6v-41.63c0-17.68-11.19-33.41-27.88-39.28zm-62.24-17.7-15.83 27.66-13.29-13.29 19.29-19.29zm-37.61 5.88-20.59-20.58v-16.91c6.41 2.57 13.4 4.01 20.72 4.01 7.22 0 14.11-1.39 20.45-3.9v16.8zm63.63-97.48v5.29c0 2.16-1.82 3.98-3.98 3.98h-3.74c.01-.36.03-.71.03-1.07v-12.18h3.71c2.15-.01 3.98 1.82 3.98 3.98zm-119.29 8.2v1.07h-3.98c-2.16 0-3.98-1.82-3.98-3.98v-5.29c0-2.16 1.82-3.98 3.98-3.98l3.98.22zm1.95-24.19c-7.33-13.69-.89-37.39 10.53-50.24 10.31-11.6 25.12-18.25 40.63-18.25 15.52 0 30.34 6.65 40.65 18.25 8.43 9.48 21.3 27.59 17.4 46.39-5.66-.35-10.67-2.55-14.4-6.36-5.37-5.49-7.72-14-6.63-23.94.29-2.62-1.17-5.13-3.6-6.17s-5.25-.37-6.95 1.65c-19.33 22.92-45.95 36.76-73.9 38.68h-3.73zm10.05 24.19v-12.73c24.57-2.92 47.92-14.05 66.73-31.8 1.43 7.26 4.63 13.6 9.45 18.52 3.27 3.35 7.14 5.89 11.41 7.58v18.42c0 24.15-19.65 43.8-43.8 43.8s-43.79-19.64-43.79-43.79zm15.89 78.48 19.29 19.29-13.29 13.29-15.84-27.66zm3.22 97.53h-39.42v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.76v-35.63c0-12.68 8.1-23.95 20.15-28.05.26-.09.51-.19.75-.31l46.47-23.23 20.07 35.06c.93 1.62 2.56 2.72 4.41 2.97.27.04.53.05.79.05 1.58 0 3.11-.62 4.24-1.76l.14-.14zm12.08 0 7.41-64.69 5.06-5.06 4.84 4.84 7.86 64.92h-25.17zm128.2 0h-39.76v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.18l-6.2-51.17.25.25c1.13 1.13 2.66 1.76 4.24 1.76.26 0 .53-.02.79-.05 1.85-.25 3.48-1.34 4.41-2.97l20.07-35.06 46.47 23.23c.24.12.49.23.75.31 12.05 4.1 20.15 15.38 20.15 28.05v35.65zm-67.04-346.65h-10.84l28.38 39.84 28.38-39.84h-10.84c-3.31 0-6-2.69-6-6v-64.58h-98.7c-3.31 0-6-2.69-6-6s2.69-6 6-6h104.7c3.31 0 6 2.69 6 6v64.58h16.48c2.25 0 4.3 1.25 5.33 3.25s.86 4.4-.45 6.23l-40.02 56.18c-1.13 1.58-2.95 2.52-4.89 2.52s-3.76-.94-4.89-2.52l-40.02-56.18c-1.3-1.83-1.48-4.23-.45-6.23s3.09-3.25 5.33-3.25h16.48v-23.5h-65.38c-3.31 0-6-2.69-6-6s2.69-6 6-6h71.38c3.31 0 6 2.69 6 6v35.5c.02 3.31-2.67 6-5.98 6zm-118.44 50.65v-133.26c0-21.18-17.23-38.41-38.41-38.41h-207.7c-21.18-.01-38.41 17.23-38.41 38.41v133.26c0 21.18 17.23 38.41 38.41 38.41h105.8l64.8 55.11c1.11.94 2.49 1.43 3.89 1.43.85 0 1.71-.18 2.52-.55 2.12-.98 3.48-3.11 3.48-5.45v-50.54h27.21c21.18 0 38.41-17.23 38.41-38.41zm-71.62 26.41c-3.31 0-6 2.69-6 6v43.56l-56.59-48.13c-1.08-.92-2.46-1.43-3.89-1.43h-108.01c-14.56 0-26.41-11.85-26.41-26.41v-133.26c0-14.56 11.85-26.41 26.41-26.41h207.69c14.56 0 26.41 11.85 26.41 26.41v133.26c0 14.56-11.85 26.41-26.41 26.41zm-156.34-87.87h56.97c3.31 0 6-2.69 6-6v-39.2l8.55-8.55c2.34-2.34 2.34-6.14 0-8.49-2.34-2.34-6.14-2.34-8.48 0l-.7.7c-.98-1.97-3.01-3.32-5.36-3.32h-56.98c-3.31 0-6 2.69-6 6v52.85c0 3.32 2.69 6.01 6 6.01zm6-52.86h44.97v2.69l-18.16 18.16-8.84-8.84c-2.34-2.34-6.14-2.34-8.49 0-2.34 2.34-2.34 6.14 0 8.49l13.08 13.08c1.17 1.17 2.71 1.76 4.24 1.76s3.07-.59 4.24-1.76l13.92-13.92v21.2h-44.96zm173.62 3.08c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 31.92c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 36.52c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.68 5.99 6zm0 31.92c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.69 5.99 6zm-119.36 165.01h10.84l-28.38-39.84-28.38 39.84h10.84c3.31 0 6 2.69 6 6v64.58h98.7c3.31 0 6 2.69 6 6s-2.69 6-6 6h-104.69c-3.31 0-6-2.69-6-6v-64.58h-16.48c-2.25 0-4.3-1.25-5.33-3.25s-.86-4.4.45-6.23l40.02-56.18c1.13-1.58 2.95-2.52 4.89-2.52s3.76.94 4.89 2.52l40.02 56.18c1.3 1.83 1.48 4.23.45 6.23s-3.09 3.25-5.33 3.25h-16.48v23.5h65.38c3.31 0 6 2.69 6 6s-2.69 6-6 6h-71.38c-3.31 0-6-2.69-6-6v-35.5c-.03-3.31 2.66-6 5.97-6z\"></path></svg>'),
(4710, 521, '_elementor_edit_mode', 'builder'),
(4711, 521, '_elementor_template_type', 'wp-page'),
(4712, 521, '_elementor_version', '3.34.2'),
(4713, 521, '_elementor_pro_version', '3.34.2'),
(4714, 521, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4715, 521, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\",\"id\":57,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle ANMELDELSER\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]}},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"HVORFOR V\\u00c6LGE CP NORDIC ApS?\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79206f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>N\\u00e5r du v\\u00e6lger CP NORDIC ApS, f\\u00e5r du:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"44023b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/teamwork_4546121.svg\",\"id\":472},\"library\":\"svg\"},\"title_text\":\"et ungt og engageret team\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/effective_1401921.svg\",\"id\":474},\"library\":\"svg\"},\"title_text\":\"fokus p\\u00e5 kvalitet og detaljer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/communication_18765280.svg\",\"id\":479},\"library\":\"svg\"},\"title_text\":\"\\u00e6rlig<br> r\\u00e5dgivning\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/brainstorming_11663441.svg\",\"id\":480},\"library\":\"svg\"},\"title_text\":\"gennemt\\u00e6nkte l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c0f2190\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"327bd23\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/like_3941426.svg\",\"id\":481},\"library\":\"svg\"},\"title_text\":\"arbejde udf\\u00f8rt med ansvar\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2bc9769\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi lover ikke mere, end vi kan holde \\u2013 men vi holder det, vi lover.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2a1d8fc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"986dd0f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9231a79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"31fa3c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f1b19ca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7391996\"}]},\"elements\":[{\"id\":\"547d40f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7d5adb7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1522ba7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e13c951\"}],\"pp_display_conditions\":[{\"_id\":\"1e39e5d\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"4bda72e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7d5adb7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1522ba7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e13c951\"}],\"pp_display_conditions\":[{\"_id\":\"1e39e5d\"}]},\"elements\":[{\"id\":\"07d0be8\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"8b3e3db\"},{\"custom_id\":\"field_2a35699\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"2a35699\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"f9dd88c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6323910b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor8\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/wood-background-1-e1738912619419.jpg\",\"id\":510,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.71,\"sizes\":[]}},\"elements\":[{\"id\":\"640d38eb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"75253fe5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"14202595\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Name\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"tel\",\"field_label\":\"Phone\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\"},{\"field_type\":\"select\",\"field_label\":\"Services Name\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Messages\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor4\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_background_color\":\"#494949CC\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"mark_required\":\"yes\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4717, 521, '_elementor_page_settings', 'a:0:{}'),
(7247, 758, '_elementor_edit_mode', 'builder'),
(7248, 758, '_elementor_template_type', 'wp-page'),
(7249, 758, '_elementor_version', '3.34.2'),
(7250, 758, '_elementor_pro_version', '3.34.2'),
(7251, 758, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7252, 758, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#111111\",\"background_overlay_color_b\":\"#000A66A3\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23428e4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Byggeri \\u2013 T\\u00f8mrerarbejde og tagd\\u00e6kning\",\"header_size\":\"h4\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"pp_display_conditions\":[{\"_id\":\"b159f8d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/kontakt\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"flex_direction_tablet\":\"column-reverse\",\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/om-os\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/tomrerarbejde\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\",\"flex_direction_tablet\":\"column\",\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\",\"id\":57,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"18631d2\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/tagdaekning\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}],\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle ANMELDELSER\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"HVORFOR V\\u00c6LGE CP NORDIC ApS?\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79206f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>N\\u00e5r du v\\u00e6lger CP NORDIC ApS, f\\u00e5r du:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"44023b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/teamwork_4546121.svg\",\"id\":472},\"library\":\"svg\"},\"title_text\":\"et ungt og engageret team\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/effective_1401921.svg\",\"id\":474},\"library\":\"svg\"},\"title_text\":\"fokus p\\u00e5 kvalitet og detaljer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/communication_18765280.svg\",\"id\":479},\"library\":\"svg\"},\"title_text\":\"\\u00e6rlig<br> r\\u00e5dgivning\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/brainstorming_11663441.svg\",\"id\":480},\"library\":\"svg\"},\"title_text\":\"gennemt\\u00e6nkte l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c0f2190\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"327bd23\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/like_3941426.svg\",\"id\":481},\"library\":\"svg\"},\"title_text\":\"arbejde udf\\u00f8rt med ansvar\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2bc9769\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi lover ikke mere, end vi kan holde \\u2013 men vi holder det, vi lover.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2a1d8fc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6323910b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor8\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/wood-background-1-e1738912619419.jpg\",\"id\":510,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]}},\"elements\":[{\"id\":\"640d38eb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"75253fe5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"641310a\",\"elType\":\"widget\",\"settings\":{\"title\":\"KONTAKT OS\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee94578\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fea00\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68d73b3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14202595\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Navn\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"tel\",\"field_label\":\"Telefon\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\"},{\"field_type\":\"select\",\"field_label\":\"Tjenesters navn\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Beskeder\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor4\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_background_color\":\"#383838CC\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Roboto\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"field_typography_font_weight\":\"400\",\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7254, 758, '_elementor_page_settings', 'a:0:{}'),
(4720, 522, '_elementor_edit_mode', 'builder'),
(4721, 522, '_elementor_template_type', 'wp-page'),
(4722, 522, '_elementor_version', '3.34.2'),
(4723, 522, '_elementor_pro_version', '3.34.2'),
(4724, 522, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4725, 522, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\",\"id\":57,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle ANMELDELSER\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]}},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"HVORFOR V\\u00c6LGE CP NORDIC ApS?\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79206f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>N\\u00e5r du v\\u00e6lger CP NORDIC ApS, f\\u00e5r du:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"44023b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/teamwork_4546121.svg\",\"id\":472},\"library\":\"svg\"},\"title_text\":\"et ungt og engageret team\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/effective_1401921.svg\",\"id\":474},\"library\":\"svg\"},\"title_text\":\"fokus p\\u00e5 kvalitet og detaljer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/communication_18765280.svg\",\"id\":479},\"library\":\"svg\"},\"title_text\":\"\\u00e6rlig<br> r\\u00e5dgivning\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/brainstorming_11663441.svg\",\"id\":480},\"library\":\"svg\"},\"title_text\":\"gennemt\\u00e6nkte l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c0f2190\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"327bd23\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/like_3941426.svg\",\"id\":481},\"library\":\"svg\"},\"title_text\":\"arbejde udf\\u00f8rt med ansvar\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2bc9769\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi lover ikke mere, end vi kan holde \\u2013 men vi holder det, vi lover.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2a1d8fc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"986dd0f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9231a79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"31fa3c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f1b19ca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7391996\"}]},\"elements\":[{\"id\":\"547d40f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7d5adb7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1522ba7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e13c951\"}],\"pp_display_conditions\":[{\"_id\":\"1e39e5d\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"4bda72e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7d5adb7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1522ba7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e13c951\"}],\"pp_display_conditions\":[{\"_id\":\"1e39e5d\"}]},\"elements\":[{\"id\":\"07d0be8\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"8b3e3db\"},{\"custom_id\":\"field_2a35699\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"2a35699\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"f9dd88c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6323910b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor8\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/wood-background-1-e1738912619419.jpg\",\"id\":510,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]}},\"elements\":[{\"id\":\"640d38eb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"75253fe5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"641310a\",\"elType\":\"widget\",\"settings\":{\"title\":\"KONTAKT OS\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee94578\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fea00\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68d73b3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14202595\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Name\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"tel\",\"field_label\":\"Phone\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\"},{\"field_type\":\"select\",\"field_label\":\"Services Name\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Messages\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor4\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_background_color\":\"#494949CC\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"mark_required\":\"yes\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6238, 665, '_elementor_page_settings', 'a:0:{}'),
(6241, 666, '_wp_page_template', 'default'),
(6243, 666, '_elementor_edit_mode', 'builder'),
(6244, 666, '_elementor_template_type', 'wp-page'),
(6245, 666, '_elementor_version', '3.34.2'),
(6246, 666, '_elementor_pro_version', '3.34.2'),
(6247, 666, '_elementor_data', '[{\"id\":\"da47fa9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"73e548d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}]},\"elements\":[{\"id\":\"0630135\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"0b858af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"9cd53aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba1f56d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e0acf42\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1ebba86\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9f06d27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"af8a159\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"background_color\":\"#F2EEEC6E\",\"flex_direction_tablet\":\"column-reverse\",\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"ae9dcfe\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f8070ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPECIALL\\u00d8SNINGER\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fa656d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi har en s\\u00e6rlig interesse for opgaver, der kr\\u00e6ver noget ekstra. N\\u00e5r standardl\\u00f8sninger ikke passer, finder vi l\\u00f8sninger, der g\\u00f8r.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7fce677\",\"elType\":\"widget\",\"settings\":{\"title\":\"Det kan v\\u00e6re:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c0ffdf0\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"teknisk kr\\u00e6vende detaljer\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"specialtilpassede konstruktioner\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"samspil mellem flere materialer\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"l\\u00f8sninger, der kr\\u00e6ver ekstra omtanke\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"07daf97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Her kommer vores faglighed og erfaring virkelig i spil.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(6248, 666, '_elementor_page_settings', 'a:0:{}'),
(6251, 667, '_wp_page_template', 'default'),
(6253, 667, '_elementor_edit_mode', 'builder'),
(6254, 667, '_elementor_template_type', 'wp-page'),
(6255, 667, '_elementor_version', '3.34.2'),
(6256, 667, '_elementor_pro_version', '3.34.2'),
(6257, 667, '_elementor_data', '[{\"id\":\"da47fa9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"73e548d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}]},\"elements\":[{\"id\":\"0630135\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"0b858af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"9cd53aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba1f56d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e0acf42\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1ebba86\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9f06d27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"af8a159\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"background_color\":\"#F2EEEC6E\",\"flex_direction_tablet\":\"column-reverse\",\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"ae9dcfe\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f8070ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPECIALL\\u00d8SNINGER\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fa656d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi har en s\\u00e6rlig interesse for opgaver, der kr\\u00e6ver noget ekstra. N\\u00e5r standardl\\u00f8sninger ikke passer, finder vi l\\u00f8sninger, der g\\u00f8r.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7fce677\",\"elType\":\"widget\",\"settings\":{\"title\":\"Det kan v\\u00e6re:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c0ffdf0\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"teknisk kr\\u00e6vende detaljer\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"specialtilpassede konstruktioner\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"samspil mellem flere materialer\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"l\\u00f8sninger, der kr\\u00e6ver ekstra omtanke\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"07daf97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Her kommer vores faglighed og erfaring virkelig i spil.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"34e27a1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"background_color\":\"#F2EEEC6E\",\"flex_direction_tablet\":\"column-reverse\",\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"fb7865a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0076979\",\"elType\":\"widget\",\"settings\":{\"title\":\"KVALITET FREM FOR KVANTITET\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9f9cbcc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tager bevidst et begr\\u00e6nset antal opgaver ad gangen. Det giver os mulighed for at:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b0e7d9d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"bevare overblik\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"sikre h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"v\\u00e6re tilg\\u00e6ngelige for kunden\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"f\\u00f8lge op p\\u00e5 detaljerne\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f53b930\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at godt h\\u00e5ndv\\u00e6rk kr\\u00e6ver tid og fokus.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(6264, 668, '_edit_last', '1'),
(6265, 668, '_wp_page_template', 'default'),
(6266, 668, 'site-sidebar-layout', 'no-sidebar'),
(6271, 668, 'theme-transparent-header-meta', 'default'),
(6268, 668, 'ast-site-content-layout', 'full-width-container'),
(6269, 668, 'site-content-style', 'default'),
(6270, 668, 'site-sidebar-style', 'default'),
(6272, 668, 'astra-migrate-meta-layouts', 'set'),
(6273, 668, '_edit_lock', '1771067454:1'),
(6274, 670, '_menu_item_type', 'post_type'),
(6275, 670, '_menu_item_menu_item_parent', '0'),
(6276, 670, '_menu_item_object_id', '668'),
(6277, 670, '_menu_item_object', 'page'),
(6278, 670, '_menu_item_target', ''),
(6279, 670, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(6280, 670, '_menu_item_xfn', ''),
(6281, 670, '_menu_item_url', ''),
(6289, 668, '_elementor_template_type', 'wp-page'),
(6290, 668, '_elementor_version', '3.34.2'),
(6291, 668, '_elementor_pro_version', '3.34.2'),
(6293, 671, '_wp_page_template', 'default'),
(6295, 671, '_elementor_edit_mode', 'builder'),
(6296, 671, '_elementor_template_type', 'wp-page'),
(6297, 671, '_elementor_version', '3.34.2'),
(6298, 671, '_elementor_pro_version', '3.34.2'),
(6299, 671, '_elementor_page_settings', 'a:0:{}'),
(6300, 672, '_wp_page_template', 'default'),
(6302, 672, '_elementor_edit_mode', 'builder'),
(6303, 672, '_elementor_template_type', 'wp-page'),
(6304, 672, '_elementor_version', '3.34.2'),
(6305, 672, '_elementor_pro_version', '3.34.2'),
(6306, 672, '_elementor_page_settings', 'a:0:{}'),
(6308, 673, '_wp_page_template', 'default'),
(6310, 673, '_elementor_edit_mode', 'builder'),
(6311, 673, '_elementor_template_type', 'wp-page'),
(6312, 673, '_elementor_version', '3.34.2'),
(6313, 673, '_elementor_pro_version', '3.34.2'),
(6314, 673, '_elementor_data', '[{\"id\":\"db67a1d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"8002bef\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f0466b5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"22cf5aa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b4c972c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle ANMELDELSER\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5a69c19\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(7049, 741, '_wp_page_template', 'default'),
(7050, 741, '_elementor_edit_mode', 'builder'),
(7051, 741, '_elementor_template_type', 'wp-page'),
(7052, 741, '_elementor_version', '3.34.2'),
(7053, 741, '_elementor_pro_version', '3.34.2'),
(7054, 741, '_elementor_data', '[{\"id\":\"db67a1d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"8002bef\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f0466b5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"22cf5aa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b4c972c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle ANMELDELSER\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5a69c19\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}]'),
(6379, 680, '_elementor_edit_mode', 'builder'),
(6363, 678, '_elementor_edit_mode', 'builder'),
(6364, 678, '_elementor_template_type', 'wp-page'),
(6365, 678, '_elementor_version', '3.34.2'),
(6366, 678, '_elementor_pro_version', '3.34.2'),
(6367, 678, '_wp_page_template', 'default'),
(6368, 678, '_elementor_data', '[{\"id\":\"3116faf\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d749f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e24a3a2\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"T\\u00d8MRERARBEJDE\",\"title_tag\":\"h5\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"9d704bc\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"TAGD\\u00c6KNING\",\"title_tag\":\"h5\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"9b641f7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"947c814\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores tjenester\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false}]'),
(6370, 678, '_elementor_page_settings', 'a:0:{}'),
(6371, 679, '_elementor_edit_mode', 'builder'),
(6372, 679, '_elementor_template_type', 'wp-page'),
(6373, 679, '_elementor_version', '3.34.2'),
(6374, 679, '_elementor_pro_version', '3.34.2'),
(6375, 679, '_wp_page_template', 'default'),
(6376, 679, '_elementor_data', '[{\"id\":\"3116faf\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d749f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e24a3a2\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"T\\u00d8MRERARBEJDE\",\"title_tag\":\"h5\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"9d704bc\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"TAGD\\u00c6KNING\",\"title_tag\":\"h5\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"9b641f7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"947c814\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores tjenester\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false}]'),
(6378, 679, '_elementor_page_settings', 'a:0:{}'),
(6380, 680, '_elementor_template_type', 'wp-page'),
(6381, 680, '_elementor_version', '3.34.2'),
(6382, 680, '_elementor_pro_version', '3.34.2'),
(6383, 680, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6384, 680, '_elementor_data', '[{\"id\":\"3116faf\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d749f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e24a3a2\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"T\\u00d8MRERARBEJDE\",\"title_tag\":\"h5\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"9d704bc\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"TAGD\\u00c6KNING\",\"title_tag\":\"h5\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"9b641f7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"947c814\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores tjenester\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false}]'),
(6945, 731, '_elementor_edit_mode', 'builder'),
(4850, 533, '_elementor_edit_mode', 'builder'),
(4832, 531, '_elementor_edit_mode', 'builder'),
(4833, 531, '_elementor_template_type', 'wp-page'),
(4834, 531, '_elementor_version', '3.34.2'),
(4835, 531, '_elementor_pro_version', '3.34.2'),
(4836, 531, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4837, 531, '_elementor_data', '[{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\",\"id\":57,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}],\"content_width\":\"full\",\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"346c9d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Construction \\u2013 Carpentry & Roofing\",\"header_size\":\"h4\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d788e5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle ANMELDELSER\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]}},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"HVORFOR V\\u00c6LGE CP NORDIC ApS?\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79206f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>N\\u00e5r du v\\u00e6lger CP NORDIC ApS, f\\u00e5r du:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"44023b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/teamwork_4546121.svg\",\"id\":472},\"library\":\"svg\"},\"title_text\":\"et ungt og engageret team\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/effective_1401921.svg\",\"id\":474},\"library\":\"svg\"},\"title_text\":\"fokus p\\u00e5 kvalitet og detaljer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/communication_18765280.svg\",\"id\":479},\"library\":\"svg\"},\"title_text\":\"\\u00e6rlig<br> r\\u00e5dgivning\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/brainstorming_11663441.svg\",\"id\":480},\"library\":\"svg\"},\"title_text\":\"gennemt\\u00e6nkte l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c0f2190\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"327bd23\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/like_3941426.svg\",\"id\":481},\"library\":\"svg\"},\"title_text\":\"arbejde udf\\u00f8rt med ansvar\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2bc9769\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi lover ikke mere, end vi kan holde \\u2013 men vi holder det, vi lover.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2a1d8fc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"986dd0f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9231a79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"31fa3c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f1b19ca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7391996\"}]},\"elements\":[{\"id\":\"547d40f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7d5adb7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1522ba7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e13c951\"}],\"pp_display_conditions\":[{\"_id\":\"1e39e5d\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"4bda72e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7d5adb7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1522ba7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e13c951\"}],\"pp_display_conditions\":[{\"_id\":\"1e39e5d\"}]},\"elements\":[{\"id\":\"07d0be8\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"8b3e3db\"},{\"custom_id\":\"field_2a35699\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"2a35699\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"f9dd88c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6323910b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor8\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/wood-background-1-e1738912619419.jpg\",\"id\":510,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]}},\"elements\":[{\"id\":\"640d38eb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"75253fe5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"641310a\",\"elType\":\"widget\",\"settings\":{\"title\":\"KONTAKT OS\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee94578\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fea00\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68d73b3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14202595\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Name\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"tel\",\"field_label\":\"Phone\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\"},{\"field_type\":\"select\",\"field_label\":\"Services Name\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Messages\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor4\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_background_color\":\"#494949CC\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"mark_required\":\"yes\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4740, 523, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(4819, 530, '_elementor_source', 'post'),
(4820, 530, '_elementor_edit_mode', 'builder'),
(4821, 530, '_elementor_template_type', 'footer'),
(4822, 530, '_elementor_version', '3.34.2'),
(4823, 530, '_elementor_pro_version', '3.34.2'),
(4824, 530, '_wp_page_template', 'default'),
(4825, 530, '_elementor_data', '[{\"id\":\"3cf69bc7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"background_color\":\"#121212\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"flex_direction_tablet\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"56542ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ba59e70\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"65fd471\"}],\"pp_display_conditions\":[{\"_id\":\"890752a\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\"}]},\"elements\":[{\"id\":\"7d433401\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"boxed_width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e0467be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fba2414\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"86eef93\"}],\"pp_display_conditions\":[{\"_id\":\"892bbfe\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\"}],\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"100\",\"bottom\":\"10\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b245e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/Transparent-File-02-scaled.png\",\"id\":49,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"3584c9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":240,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7a77842\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"text_color\":\"#F3F3F3\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":295,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"40edc0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3f1c0dda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"boxed_width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"boxed_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"wrap\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content_tablet\":\"center\",\"flex_align_items_tablet\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9cef852\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3267f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"568580d\"}],\"pp_display_conditions\":[{\"_id\":\"3b43c19\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\"}]},\"elements\":[{\"id\":\"25ffa917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick Links\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"97f1c92\",\"pp_condition_date_time_before_value\":\"2023-11-08 15:26\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\"}],\"align_tablet\":\"center\",\"align_mobile_extra\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"_element_width\":\"inherit\",\"typography_typography\":\"custom\",\"title_color\":\"#FFFFFF\",\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6373b647\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Hjem\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5dee041\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Tjenester\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"fdf1982\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/tjenester\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Referencer\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/referencer\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5076fdb\"},{\"text\":\"Om os\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/om-os\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1cdf804\"},{\"text\":\"Kontakt\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/kontakt\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"085decf\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"db62914\",\"pp_condition_date_time_before_value\":\"2023-11-08 15:26\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\"}],\"icon_align_tablet\":\"center\",\"icon_align_mobile_extra\":\"center\",\"__globals__\":{\"text_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=accent\"},\"text_color\":\"#E2E2E2\",\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_elements_tooltip_content\":\"Tooltip Content\",\"icon_typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7b991634\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ac9468\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f73d65c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e9fdb2\"}],\"pp_display_conditions\":[{\"_id\":\"6b3e2fa\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\"}]},\"elements\":[{\"id\":\"1dc7df4b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"97f1c92\",\"pp_condition_date_time_before_value\":\"2023-11-08 15:26\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\"}],\"align_tablet\":\"center\",\"align_mobile_extra\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"_element_width\":\"inherit\",\"title_color\":\"#FFFFFF\",\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45a55ad8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Fyn, Denmark\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"857a7bd\",\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"}},{\"text\":\"41 60 00 40\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:41600040\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f722a06\"},{\"text\":\"kontakt@cp-nordic.dk\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:kontakt@cp-nordic.dk\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f7076d3\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"db62914\",\"pp_condition_date_time_before_value\":\"2023-11-08 15:26\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\"}],\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align_tablet\":\"center\",\"icon_align_mobile_extra\":\"center\",\"icon_vertical_offset_mobile_extra\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_self_align_mobile_extra\":\"left\",\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=accent\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_vertical_offset_tablet\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"text_color\":\"#E2E2E2\",\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_elements_tooltip_content\":\"Tooltip Content\",\"icon_typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"d5ed30d\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"1a75682\",\"link\":{\"url\":\"https:\\/\\/www.facebook.com\\/cpnordic\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"da32d70\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/cpnordic\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.6,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"589cdcb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor6\"},\"icon_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5e55ea6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"flex_direction_tablet\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"56542ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ba59e70\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"65fd471\"}],\"pp_display_conditions\":[{\"_id\":\"890752a\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor2\"},\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"543e7817\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"boxed_width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"boxed_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"wrap\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content_tablet\":\"center\",\"flex_align_items_tablet\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9cef852\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3267f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"568580d\"}],\"pp_display_conditions\":[{\"_id\":\"3b43c19\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"29e327ba\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u00a9 Copyright 2026 all rights reserved\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5dee041\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"db62914\",\"pp_condition_date_time_before_value\":\"2023-11-08 15:26\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"icon_align_tablet\":\"center\",\"icon_align_mobile_extra\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color_hover\":\"\"},\"text_color\":\"#FFFFFF\",\"pp_elements_tooltip_content\":\"Tooltip Content\",\"icon_typography_font_weight\":\"500\",\"view\":\"inline\",\"icon_align\":\"center\",\"icon_align_mobile\":\"center\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(4756, 524, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(4780, 526, '_elementor_page_settings', 'a:0:{}'),
(7220, 755, '_elementor_page_settings', 'a:0:{}'),
(7226, 756, '_elementor_version', '3.34.2'),
(7227, 756, '_elementor_pro_version', '3.34.2'),
(7228, 756, '_wp_page_template', 'default'),
(7229, 756, '_elementor_data', '[{\"id\":\"580962f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC5C\",\"flex_direction_tablet\":\"column-reverse\",\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F5F3F2\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"\"}},\"elements\":[{\"id\":\"0a64fdb\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"90a885a\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"007564a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS is run by two skilled craftsmen who completed their apprenticeships together in 2022. We are both 25 years old and share a strong passion for quality craftsmanship and long-lasting solutions.<\\/p><p>We originally come from East Funen but are now based in Central Funen, from where we carry out work for both private and commercial clients. Our work ranges from carpentry and roofing to installation and specialized tasks, and we approach every project with professionalism, honesty, and attention to detail.<\\/p><p>With us, there are no long decision-making processes or changing contact persons. You are in direct dialogue with the people carrying out the work, and we place great importance on clear agreements, good communication, and a finished result we can stand behind.<\\/p><p>We cover all of Funen and also take on projects in the rest of Denmark by agreement.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"617780c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"b57ce82\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}]},\"elements\":[{\"id\":\"e3724c6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b79d6d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8a1d74a\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"944b744\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f99f95c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e408251\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"b3e8d95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(7244, 757, '_elementor_page_settings', 'a:0:{}'),
(4783, 527, '_elementor_edit_mode', 'builder'),
(4784, 527, '_elementor_template_type', 'wp-page'),
(4785, 527, '_elementor_version', '3.34.2'),
(4786, 527, '_elementor_pro_version', '3.34.2'),
(4787, 527, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4788, 527, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\",\"id\":57,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle ANMELDELSER\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]}},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"HVORFOR V\\u00c6LGE CP NORDIC ApS?\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79206f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>N\\u00e5r du v\\u00e6lger CP NORDIC ApS, f\\u00e5r du:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"44023b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/teamwork_4546121.svg\",\"id\":472},\"library\":\"svg\"},\"title_text\":\"et ungt og engageret team\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/effective_1401921.svg\",\"id\":474},\"library\":\"svg\"},\"title_text\":\"fokus p\\u00e5 kvalitet og detaljer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/communication_18765280.svg\",\"id\":479},\"library\":\"svg\"},\"title_text\":\"\\u00e6rlig<br> r\\u00e5dgivning\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/brainstorming_11663441.svg\",\"id\":480},\"library\":\"svg\"},\"title_text\":\"gennemt\\u00e6nkte l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c0f2190\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"327bd23\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/like_3941426.svg\",\"id\":481},\"library\":\"svg\"},\"title_text\":\"arbejde udf\\u00f8rt med ansvar\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2bc9769\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi lover ikke mere, end vi kan holde \\u2013 men vi holder det, vi lover.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2a1d8fc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"986dd0f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9231a79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"31fa3c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f1b19ca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7391996\"}]},\"elements\":[{\"id\":\"547d40f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7d5adb7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1522ba7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e13c951\"}],\"pp_display_conditions\":[{\"_id\":\"1e39e5d\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"4bda72e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7d5adb7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1522ba7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e13c951\"}],\"pp_display_conditions\":[{\"_id\":\"1e39e5d\"}]},\"elements\":[{\"id\":\"07d0be8\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"8b3e3db\"},{\"custom_id\":\"field_2a35699\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"2a35699\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"f9dd88c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6323910b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor8\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/wood-background-1-e1738912619419.jpg\",\"id\":510,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]}},\"elements\":[{\"id\":\"640d38eb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"75253fe5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"641310a\",\"elType\":\"widget\",\"settings\":{\"title\":\"KONTAKT OS\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee94578\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fea00\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68d73b3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14202595\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Name\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"tel\",\"field_label\":\"Phone\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\"},{\"field_type\":\"select\",\"field_label\":\"Services Name\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Messages\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor4\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_background_color\":\"#494949CC\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"mark_required\":\"yes\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4790, 527, '_elementor_page_settings', 'a:0:{}'),
(6802, 718, '_elementor_template_type', 'wp-page'),
(6803, 718, '_elementor_version', '3.34.2'),
(6804, 718, '_elementor_pro_version', '3.34.2'),
(6805, 718, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6806, 718, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#111111\",\"background_overlay_color_b\":\"#000A66A3\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23428e4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Byggeri \\u2013 T\\u00f8mrerarbejde og tagd\\u00e6kning\",\"header_size\":\"h4\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"pp_display_conditions\":[{\"_id\":\"b159f8d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/kontakt\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"flex_direction_tablet\":\"column-reverse\",\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/om-os\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/tomrerarbejde\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\",\"flex_direction_tablet\":\"column\",\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\",\"id\":57,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"18631d2\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/tagdaekning\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}],\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle ANMELDELSER\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"HVORFOR V\\u00c6LGE CP NORDIC ApS?\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79206f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>N\\u00e5r du v\\u00e6lger CP NORDIC ApS, f\\u00e5r du:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"44023b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/teamwork_4546121.svg\",\"id\":472},\"library\":\"svg\"},\"title_text\":\"et ungt og engageret team\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/effective_1401921.svg\",\"id\":474},\"library\":\"svg\"},\"title_text\":\"fokus p\\u00e5 kvalitet og detaljer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/communication_18765280.svg\",\"id\":479},\"library\":\"svg\"},\"title_text\":\"\\u00e6rlig<br> r\\u00e5dgivning\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/brainstorming_11663441.svg\",\"id\":480},\"library\":\"svg\"},\"title_text\":\"gennemt\\u00e6nkte l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c0f2190\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"327bd23\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/like_3941426.svg\",\"id\":481},\"library\":\"svg\"},\"title_text\":\"arbejde udf\\u00f8rt med ansvar\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2bc9769\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi lover ikke mere, end vi kan holde \\u2013 men vi holder det, vi lover.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2a1d8fc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6323910b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor8\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/wood-background-1-e1738912619419.jpg\",\"id\":510,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]}},\"elements\":[{\"id\":\"640d38eb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"75253fe5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"641310a\",\"elType\":\"widget\",\"settings\":{\"title\":\"KONTAKT OS\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee94578\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fea00\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68d73b3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14202595\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Navn\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"tel\",\"field_label\":\"Telefon\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\"},{\"field_type\":\"select\",\"field_label\":\"Tjenesters navn\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Beskeder\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor4\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_background_color\":\"#383838CC\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Roboto\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"field_typography_font_weight\":\"400\",\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6797, 717, '_elementor_page_settings', 'a:0:{}'),
(4893, 537, '_elementor_edit_mode', 'builder'),
(4894, 537, '_elementor_template_type', 'wp-page'),
(4895, 537, '_elementor_version', '3.34.2'),
(4896, 537, '_elementor_pro_version', '3.34.2'),
(4897, 537, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4898, 537, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\",\"id\":57,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle ANMELDELSER\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]}},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"HVORFOR V\\u00c6LGE CP NORDIC ApS?\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79206f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>N\\u00e5r du v\\u00e6lger CP NORDIC ApS, f\\u00e5r du:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"44023b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/teamwork_4546121.svg\",\"id\":472},\"library\":\"svg\"},\"title_text\":\"et ungt og engageret team\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/effective_1401921.svg\",\"id\":474},\"library\":\"svg\"},\"title_text\":\"fokus p\\u00e5 kvalitet og detaljer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/communication_18765280.svg\",\"id\":479},\"library\":\"svg\"},\"title_text\":\"\\u00e6rlig<br> r\\u00e5dgivning\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/brainstorming_11663441.svg\",\"id\":480},\"library\":\"svg\"},\"title_text\":\"gennemt\\u00e6nkte l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c0f2190\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"327bd23\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/like_3941426.svg\",\"id\":481},\"library\":\"svg\"},\"title_text\":\"arbejde udf\\u00f8rt med ansvar\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2bc9769\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi lover ikke mere, end vi kan holde \\u2013 men vi holder det, vi lover.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2a1d8fc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"986dd0f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9231a79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"31fa3c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f1b19ca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7391996\"}]},\"elements\":[{\"id\":\"547d40f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7d5adb7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1522ba7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e13c951\"}],\"pp_display_conditions\":[{\"_id\":\"1e39e5d\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"4bda72e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7d5adb7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1522ba7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e13c951\"}],\"pp_display_conditions\":[{\"_id\":\"1e39e5d\"}]},\"elements\":[{\"id\":\"07d0be8\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"8b3e3db\"},{\"custom_id\":\"field_2a35699\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"2a35699\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"f9dd88c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6323910b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor8\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/wood-background-1-e1738912619419.jpg\",\"id\":510,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]}},\"elements\":[{\"id\":\"640d38eb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"75253fe5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"641310a\",\"elType\":\"widget\",\"settings\":{\"title\":\"KONTAKT OS\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee94578\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fea00\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68d73b3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14202595\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Name\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"tel\",\"field_label\":\"Phone\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\"},{\"field_type\":\"select\",\"field_label\":\"Services Name\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Messages\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor4\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_background_color\":\"#494949CC\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"mark_required\":\"yes\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4793, 528, '_elementor_edit_mode', 'builder'),
(4794, 528, '_elementor_template_type', 'wp-page'),
(4795, 528, '_elementor_version', '3.34.2'),
(4796, 528, '_elementor_pro_version', '3.34.2'),
(4797, 528, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4798, 528, '_elementor_data', '[{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\",\"id\":57,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}],\"content_width\":\"full\",\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"346c9d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Construction \\u2013 Carpentry & Roofing\",\"header_size\":\"h4\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d788e5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle ANMELDELSER\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]}},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"HVORFOR V\\u00c6LGE CP NORDIC ApS?\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79206f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>N\\u00e5r du v\\u00e6lger CP NORDIC ApS, f\\u00e5r du:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"44023b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/teamwork_4546121.svg\",\"id\":472},\"library\":\"svg\"},\"title_text\":\"et ungt og engageret team\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/effective_1401921.svg\",\"id\":474},\"library\":\"svg\"},\"title_text\":\"fokus p\\u00e5 kvalitet og detaljer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/communication_18765280.svg\",\"id\":479},\"library\":\"svg\"},\"title_text\":\"\\u00e6rlig<br> r\\u00e5dgivning\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/brainstorming_11663441.svg\",\"id\":480},\"library\":\"svg\"},\"title_text\":\"gennemt\\u00e6nkte l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c0f2190\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"327bd23\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/like_3941426.svg\",\"id\":481},\"library\":\"svg\"},\"title_text\":\"arbejde udf\\u00f8rt med ansvar\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2bc9769\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi lover ikke mere, end vi kan holde \\u2013 men vi holder det, vi lover.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2a1d8fc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"986dd0f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9231a79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"31fa3c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f1b19ca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7391996\"}]},\"elements\":[{\"id\":\"547d40f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7d5adb7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1522ba7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e13c951\"}],\"pp_display_conditions\":[{\"_id\":\"1e39e5d\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"4bda72e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7d5adb7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1522ba7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e13c951\"}],\"pp_display_conditions\":[{\"_id\":\"1e39e5d\"}]},\"elements\":[{\"id\":\"07d0be8\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"8b3e3db\"},{\"custom_id\":\"field_2a35699\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"2a35699\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"f9dd88c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6323910b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor8\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/wood-background-1-e1738912619419.jpg\",\"id\":510,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]}},\"elements\":[{\"id\":\"640d38eb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"75253fe5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"641310a\",\"elType\":\"widget\",\"settings\":{\"title\":\"KONTAKT OS\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee94578\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fea00\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68d73b3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14202595\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Name\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"tel\",\"field_label\":\"Phone\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\"},{\"field_type\":\"select\",\"field_label\":\"Services Name\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Messages\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor4\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_background_color\":\"#494949CC\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"mark_required\":\"yes\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6648, 707, '_elementor_edit_mode', 'builder'),
(6649, 707, '_elementor_template_type', 'wp-page'),
(6650, 707, '_elementor_version', '3.34.2'),
(6651, 707, '_elementor_pro_version', '3.34.2'),
(6652, 707, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6653, 707, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#111111\",\"background_overlay_color_b\":\"#000A66A3\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23428e4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Byggeri \\u2013 T\\u00f8mrerarbejde og tagd\\u00e6kning\",\"header_size\":\"h4\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"pp_display_conditions\":[{\"_id\":\"b159f8d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/kontakt\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"flex_direction_tablet\":\"column-reverse\",\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/om-os\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/tomrerarbejde\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\",\"flex_direction_tablet\":\"column\",\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\",\"id\":57,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"18631d2\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/tagdaekning\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}],\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle ANMELDELSER\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"HVORFOR V\\u00c6LGE CP NORDIC ApS?\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79206f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>N\\u00e5r du v\\u00e6lger CP NORDIC ApS, f\\u00e5r du:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"44023b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/teamwork_4546121.svg\",\"id\":472},\"library\":\"svg\"},\"title_text\":\"et ungt og engageret team\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/effective_1401921.svg\",\"id\":474},\"library\":\"svg\"},\"title_text\":\"fokus p\\u00e5 kvalitet og detaljer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/communication_18765280.svg\",\"id\":479},\"library\":\"svg\"},\"title_text\":\"\\u00e6rlig<br> r\\u00e5dgivning\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/brainstorming_11663441.svg\",\"id\":480},\"library\":\"svg\"},\"title_text\":\"gennemt\\u00e6nkte l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c0f2190\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"327bd23\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/like_3941426.svg\",\"id\":481},\"library\":\"svg\"},\"title_text\":\"arbejde udf\\u00f8rt med ansvar\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2bc9769\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi lover ikke mere, end vi kan holde \\u2013 men vi holder det, vi lover.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2a1d8fc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6323910b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor8\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/wood-background-1-e1738912619419.jpg\",\"id\":510,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]}},\"elements\":[{\"id\":\"640d38eb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"75253fe5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"641310a\",\"elType\":\"widget\",\"settings\":{\"title\":\"KONTAKT OS\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee94578\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fea00\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68d73b3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14202595\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Name\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"tel\",\"field_label\":\"Phone\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\"},{\"field_type\":\"select\",\"field_label\":\"Services Name\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Messages\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor4\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_background_color\":\"#383838CC\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Roboto\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"field_typography_font_weight\":\"400\",\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6339, 675, '_elementor_page_settings', 'a:0:{}'),
(6342, 676, '_elementor_edit_mode', 'builder'),
(6343, 676, '_elementor_template_type', 'wp-page'),
(6344, 676, '_elementor_version', '3.34.2'),
(6345, 676, '_elementor_pro_version', '3.34.2'),
(6346, 676, '_wp_page_template', 'default'),
(6347, 676, '_elementor_data', '[{\"id\":\"3116faf\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d749f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e24a3a2\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h5\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"9d704bc\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h5\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"8fe03fe\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h5\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"ab28497\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h5\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"8e879e0\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"title_tag\":\"h5\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"765b7c7\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\",\"id\":411,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Specialtilpassede l\\u00f8sninger\",\"title_tag\":\"h5\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"9b641f7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"947c814\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a129ac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5fff8c9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"47616c5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}]},\"elements\":[{\"id\":\"d7c6a99\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f5cb5ac\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"732bc0a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Terrasser\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5be015b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Terrasser er et af vores kerneomr\\u00e5der. Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5 korrekt opbygning, stabilitet og finish, da det er afg\\u00f8rende for b\\u00e5de holdbarhed og udseende.<\\/p><p>Vi arbejder gerne med h\\u00e5rdttr\\u00e6sterrasser og foretr\\u00e6kker tr\\u00e6sorter som cumaru, ip\\u00e9 og thermobehandlet tr\\u00e6, da disse materialer har:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d75ad83\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"h\\u00f8j naturlig holdbarhed\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"god modstandsdygtighed over for fugt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"et flot og tidl\\u00f8st udtryk\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5089be2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Med korrekt montage giver disse tr\\u00e6sorter terrasser, der \\u00e6ldes p\\u00e6nt og kr\\u00e6ver minimal vedligeholdelse.<\\/p><p>Vi r\\u00e5dgiver altid om materialevalg, opbygning og vedligeholdelse, s\\u00e5 l\\u00f8sningen passer til b\\u00e5de huset, omgivelserne og kundens behov.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(6349, 676, '_elementor_page_settings', 'a:0:{}'),
(6896, 726, '_elementor_page_settings', 'a:0:{}'),
(6390, 681, '_elementor_edit_mode', 'builder'),
(6391, 681, '_elementor_template_type', 'wp-page'),
(6392, 681, '_elementor_version', '3.34.2'),
(6393, 681, '_elementor_pro_version', '3.34.2'),
(6394, 681, '_wp_page_template', 'default'),
(6395, 681, '_elementor_data', '[{\"id\":\"3116faf\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d749f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e24a3a2\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"T\\u00d8MRERARBEJDE\",\"title_tag\":\"h5\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"9d704bc\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"TAGD\\u00c6KNING\",\"title_tag\":\"h5\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"9b641f7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"947c814\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores tjenester\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false}]'),
(6454, 687, '_elementor_edit_mode', 'builder'),
(6455, 687, '_elementor_template_type', 'wp-page'),
(6456, 687, '_elementor_version', '3.34.2'),
(6423, 684, '_elementor_edit_mode', 'builder'),
(6424, 684, '_elementor_template_type', 'wp-page'),
(6425, 684, '_elementor_version', '3.34.2'),
(6426, 684, '_elementor_pro_version', '3.34.2'),
(6427, 684, '_wp_page_template', 'default'),
(6428, 684, '_elementor_data', '[{\"id\":\"3116faf\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d749f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"25\",\"row\":\"25\",\"isLinked\":true,\"unit\":\"px\",\"size\":25},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e24a3a2\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"T\\u00d8MRERARBEJDE\",\"title_tag\":\"h5\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"9d704bc\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"TAGD\\u00c6KNING\",\"title_tag\":\"h5\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"9b641f7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"947c814\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores tjenester\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false}]'),
(6397, 681, '_elementor_page_settings', 'a:0:{}'),
(6400, 682, '_elementor_edit_mode', 'builder'),
(6401, 682, '_elementor_template_type', 'wp-page'),
(6402, 682, '_elementor_version', '3.34.2'),
(6403, 682, '_elementor_pro_version', '3.34.2'),
(6404, 682, '_wp_page_template', 'default'),
(6405, 682, '_elementor_data', '[{\"id\":\"3116faf\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d749f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e24a3a2\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"T\\u00d8MRERARBEJDE\",\"title_tag\":\"h5\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"9d704bc\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"TAGD\\u00c6KNING\",\"title_tag\":\"h5\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"9b641f7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"947c814\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores tjenester\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false}]'),
(6407, 682, '_elementor_page_settings', 'a:0:{}'),
(6411, 683, '_elementor_template_type', 'wp-page'),
(6412, 683, '_elementor_version', '3.34.2'),
(6413, 683, '_elementor_pro_version', '3.34.2'),
(6414, 683, '_wp_page_template', 'default'),
(6415, 683, '_elementor_data', '[{\"id\":\"3116faf\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d749f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"25\",\"row\":\"25\",\"isLinked\":true,\"unit\":\"px\",\"size\":25},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e24a3a2\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"T\\u00d8MRERARBEJDE\",\"title_tag\":\"h5\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"9d704bc\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"TAGD\\u00c6KNING\",\"title_tag\":\"h5\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"9b641f7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"947c814\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores tjenester\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false}]'),
(6457, 687, '_elementor_pro_version', '3.34.2'),
(6458, 687, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6459, 687, '_elementor_data', '[{\"id\":\"bc434c0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"85ae5f7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"329d021\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores tjenester\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"15f3e6c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1490168\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"968d8b2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"title_text\":\"T\\u00d8MRERARBEJDE\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"afb00f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"ef0f12b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"title_text\":\"TAGD\\u00c6KNING\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6430, 684, '_elementor_page_settings', 'a:0:{}'),
(6433, 685, '_elementor_edit_mode', 'builder'),
(6434, 685, '_elementor_template_type', 'wp-page'),
(6435, 685, '_elementor_version', '3.34.2'),
(6436, 685, '_elementor_pro_version', '3.34.2'),
(6437, 685, '_wp_page_template', 'default'),
(6438, 685, '_elementor_data', '[{\"id\":\"3116faf\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d749f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"25\",\"row\":\"25\",\"isLinked\":true,\"unit\":\"px\",\"size\":25},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e24a3a2\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"T\\u00d8MRERARBEJDE\",\"title_tag\":\"h5\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"9d704bc\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"TAGD\\u00c6KNING\",\"title_tag\":\"h5\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"9b641f7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"947c814\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores tjenester\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false}]'),
(6440, 685, '_elementor_page_settings', 'a:0:{}'),
(6443, 686, '_elementor_edit_mode', 'builder'),
(6444, 686, '_elementor_template_type', 'wp-page'),
(6445, 686, '_elementor_version', '3.34.2'),
(6446, 686, '_elementor_pro_version', '3.34.2'),
(6447, 686, '_wp_page_template', 'default'),
(6448, 686, '_elementor_data', '[{\"id\":\"bc434c0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"85ae5f7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"329d021\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores tjenester\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"15f3e6c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1490168\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"968d8b2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"title_text\":\"T\\u00d8MRERARBEJDE\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"afb00f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"ef0f12b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"title_text\":\"TAGD\\u00c6KNING\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(4875, 535, '_elementor_edit_mode', 'builder'),
(4876, 535, '_elementor_template_type', 'wp-page'),
(4877, 535, '_elementor_version', '3.34.2'),
(4878, 535, '_elementor_pro_version', '3.34.2'),
(4879, 535, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4880, 535, '_elementor_data', '[{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\",\"id\":57,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}],\"content_width\":\"full\",\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"346c9d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Construction \\u2013 Carpentry & Roofing\",\"header_size\":\"h4\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d788e5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle ANMELDELSER\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]}},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"HVORFOR V\\u00c6LGE CP NORDIC ApS?\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79206f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>N\\u00e5r du v\\u00e6lger CP NORDIC ApS, f\\u00e5r du:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"44023b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/teamwork_4546121.svg\",\"id\":472},\"library\":\"svg\"},\"title_text\":\"et ungt og engageret team\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/effective_1401921.svg\",\"id\":474},\"library\":\"svg\"},\"title_text\":\"fokus p\\u00e5 kvalitet og detaljer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/communication_18765280.svg\",\"id\":479},\"library\":\"svg\"},\"title_text\":\"\\u00e6rlig<br> r\\u00e5dgivning\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/brainstorming_11663441.svg\",\"id\":480},\"library\":\"svg\"},\"title_text\":\"gennemt\\u00e6nkte l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c0f2190\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"327bd23\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/like_3941426.svg\",\"id\":481},\"library\":\"svg\"},\"title_text\":\"arbejde udf\\u00f8rt med ansvar\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2bc9769\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi lover ikke mere, end vi kan holde \\u2013 men vi holder det, vi lover.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2a1d8fc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"986dd0f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9231a79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"31fa3c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f1b19ca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7391996\"}]},\"elements\":[{\"id\":\"547d40f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7d5adb7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1522ba7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e13c951\"}],\"pp_display_conditions\":[{\"_id\":\"1e39e5d\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"4bda72e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7d5adb7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1522ba7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e13c951\"}],\"pp_display_conditions\":[{\"_id\":\"1e39e5d\"}]},\"elements\":[{\"id\":\"07d0be8\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"8b3e3db\"},{\"custom_id\":\"field_2a35699\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"2a35699\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"f9dd88c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6323910b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor8\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/wood-background-1-e1738912619419.jpg\",\"id\":510,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]}},\"elements\":[{\"id\":\"640d38eb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"75253fe5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"641310a\",\"elType\":\"widget\",\"settings\":{\"title\":\"KONTAKT OS\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee94578\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fea00\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68d73b3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14202595\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Name\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"tel\",\"field_label\":\"Phone\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\"},{\"field_type\":\"select\",\"field_label\":\"Services Name\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Messages\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor4\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_background_color\":\"#494949CC\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"mark_required\":\"yes\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4996, 547, '_elementor_source', 'post'),
(4997, 547, '_elementor_edit_mode', 'builder'),
(4998, 547, '_elementor_template_type', 'footer'),
(4999, 547, '_elementor_version', '3.34.2'),
(5000, 547, '_elementor_pro_version', '3.34.2'),
(5001, 547, '_wp_page_template', 'default'),
(5002, 547, '_elementor_data', '[{\"id\":\"3cf69bc7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"background_color\":\"#121212\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"flex_direction_tablet\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"56542ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ba59e70\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"65fd471\"}],\"pp_display_conditions\":[{\"_id\":\"890752a\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\"}]},\"elements\":[{\"id\":\"7d433401\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"boxed_width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e0467be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fba2414\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"86eef93\"}],\"pp_display_conditions\":[{\"_id\":\"892bbfe\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\"}],\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"100\",\"bottom\":\"10\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b245e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/Transparent-File-02-scaled.png\",\"id\":49,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"3584c9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":240,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7a77842\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"text_color\":\"#F3F3F3\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":295,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"40edc0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3f1c0dda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"boxed_width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"boxed_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"wrap\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content_tablet\":\"center\",\"flex_align_items_tablet\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9cef852\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3267f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"568580d\"}],\"pp_display_conditions\":[{\"_id\":\"3b43c19\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\"}]},\"elements\":[{\"id\":\"25ffa917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick Links\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"97f1c92\",\"pp_condition_date_time_before_value\":\"2023-11-08 15:26\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\"}],\"align_tablet\":\"center\",\"align_mobile_extra\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"_element_width\":\"inherit\",\"typography_typography\":\"custom\",\"title_color\":\"#FFFFFF\",\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6373b647\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Hjem\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5dee041\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Tjenester\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"fdf1982\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/tjenester\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Referencer\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/referencer\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5076fdb\"},{\"text\":\"Om os\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/om-os\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1cdf804\"},{\"text\":\"Kontakt\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/kontakt\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"085decf\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"db62914\",\"pp_condition_date_time_before_value\":\"2023-11-08 15:26\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\"}],\"icon_align_tablet\":\"center\",\"icon_align_mobile_extra\":\"center\",\"__globals__\":{\"text_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=accent\"},\"text_color\":\"#E2E2E2\",\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_elements_tooltip_content\":\"Tooltip Content\",\"icon_typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7b991634\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ac9468\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f73d65c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e9fdb2\"}],\"pp_display_conditions\":[{\"_id\":\"6b3e2fa\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\"}]},\"elements\":[{\"id\":\"1dc7df4b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"97f1c92\",\"pp_condition_date_time_before_value\":\"2023-11-08 15:26\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\"}],\"align_tablet\":\"center\",\"align_mobile_extra\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"_element_width\":\"inherit\",\"title_color\":\"#FFFFFF\",\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45a55ad8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Fyn, Denmark\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"857a7bd\",\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"}},{\"text\":\"41 60 00 40\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:41600040\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f722a06\"},{\"text\":\"kontakt@cp-nordic.dk\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:kontakt@cp-nordic.dk\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f7076d3\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"db62914\",\"pp_condition_date_time_before_value\":\"2023-11-08 15:26\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\"}],\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align_tablet\":\"center\",\"icon_align_mobile_extra\":\"center\",\"icon_vertical_offset_mobile_extra\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_self_align_mobile_extra\":\"left\",\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=accent\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_vertical_offset_tablet\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"text_color\":\"#E2E2E2\",\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_elements_tooltip_content\":\"Tooltip Content\",\"icon_typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"d5ed30d\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"1a75682\",\"link\":{\"url\":\"https:\\/\\/www.facebook.com\\/cpnordic\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"da32d70\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/cpnordic\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.6,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"589cdcb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor6\"},\"icon_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5e55ea6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"flex_direction_tablet\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"56542ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ba59e70\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"65fd471\"}],\"pp_display_conditions\":[{\"_id\":\"890752a\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#242323\"},\"elements\":[{\"id\":\"543e7817\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"boxed_width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"boxed_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"wrap\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content_tablet\":\"center\",\"flex_align_items_tablet\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9cef852\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3267f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"568580d\"}],\"pp_display_conditions\":[{\"_id\":\"3b43c19\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"29e327ba\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u00a9 Copyright 2026 all rights reserved\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5dee041\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"db62914\",\"pp_condition_date_time_before_value\":\"2023-11-08 15:26\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"icon_align_tablet\":\"center\",\"icon_align_mobile_extra\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color_hover\":\"\"},\"text_color\":\"#FFFFFF\",\"pp_elements_tooltip_content\":\"Tooltip Content\",\"icon_typography_font_weight\":\"500\",\"view\":\"inline\",\"icon_align\":\"center\",\"icon_align_mobile\":\"center\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(6469, 688, '_elementor_page_settings', 'a:0:{}'),
(6470, 689, '_elementor_edit_mode', 'builder'),
(6471, 689, '_elementor_template_type', 'wp-page'),
(6472, 689, '_elementor_version', '3.34.2'),
(6473, 689, '_elementor_pro_version', '3.34.2'),
(6474, 689, '_wp_page_template', 'default'),
(6475, 689, '_elementor_data', '[{\"id\":\"bc434c0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"85ae5f7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"329d021\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores tjenester\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"15f3e6c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1490168\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"968d8b2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"title_text\":\"T\\u00d8MRERARBEJDE\",\"description_text\":\"Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:\\n\\n\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"afb00f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"ef0f12b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"title_text\":\"TAGD\\u00c6KNING\",\"description_text\":\"Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4855, 533, '_elementor_data', '[{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\",\"id\":57,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}],\"content_width\":\"full\",\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"346c9d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Construction \\u2013 Carpentry & Roofing\",\"header_size\":\"h4\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d788e5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle ANMELDELSER\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]}},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"HVORFOR V\\u00c6LGE CP NORDIC ApS?\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79206f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>N\\u00e5r du v\\u00e6lger CP NORDIC ApS, f\\u00e5r du:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"44023b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/teamwork_4546121.svg\",\"id\":472},\"library\":\"svg\"},\"title_text\":\"et ungt og engageret team\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/effective_1401921.svg\",\"id\":474},\"library\":\"svg\"},\"title_text\":\"fokus p\\u00e5 kvalitet og detaljer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/communication_18765280.svg\",\"id\":479},\"library\":\"svg\"},\"title_text\":\"\\u00e6rlig<br> r\\u00e5dgivning\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/brainstorming_11663441.svg\",\"id\":480},\"library\":\"svg\"},\"title_text\":\"gennemt\\u00e6nkte l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c0f2190\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"327bd23\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/like_3941426.svg\",\"id\":481},\"library\":\"svg\"},\"title_text\":\"arbejde udf\\u00f8rt med ansvar\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2bc9769\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi lover ikke mere, end vi kan holde \\u2013 men vi holder det, vi lover.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2a1d8fc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"986dd0f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9231a79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"31fa3c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f1b19ca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7391996\"}]},\"elements\":[{\"id\":\"547d40f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7d5adb7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1522ba7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e13c951\"}],\"pp_display_conditions\":[{\"_id\":\"1e39e5d\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"4bda72e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7d5adb7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1522ba7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e13c951\"}],\"pp_display_conditions\":[{\"_id\":\"1e39e5d\"}]},\"elements\":[{\"id\":\"07d0be8\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"8b3e3db\"},{\"custom_id\":\"field_2a35699\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"2a35699\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"f9dd88c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6323910b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor8\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/wood-background-1-e1738912619419.jpg\",\"id\":510,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]}},\"elements\":[{\"id\":\"640d38eb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"75253fe5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"641310a\",\"elType\":\"widget\",\"settings\":{\"title\":\"KONTAKT OS\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee94578\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fea00\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68d73b3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14202595\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Name\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"tel\",\"field_label\":\"Phone\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\"},{\"field_type\":\"select\",\"field_label\":\"Services Name\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Messages\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor4\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_background_color\":\"#494949CC\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"mark_required\":\"yes\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4851, 533, '_elementor_template_type', 'wp-page'),
(4852, 533, '_elementor_version', '3.34.2'),
(4853, 533, '_elementor_pro_version', '3.34.2'),
(4854, 533, '_wp_page_template', 'default'),
(4839, 531, '_elementor_page_settings', 'a:0:{}'),
(6722, 713, '_elementor_page_settings', 'a:0:{}'),
(6715, 713, '_elementor_edit_mode', 'builder'),
(6716, 713, '_elementor_template_type', 'wp-page'),
(6717, 713, '_elementor_version', '3.34.2'),
(6718, 713, '_elementor_pro_version', '3.34.2'),
(6719, 713, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6720, 713, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#111111\",\"background_overlay_color_b\":\"#000A66A3\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23428e4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Byggeri \\u2013 T\\u00f8mrerarbejde og tagd\\u00e6kning\",\"header_size\":\"h4\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"pp_display_conditions\":[{\"_id\":\"b159f8d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/kontakt\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"flex_direction_tablet\":\"column-reverse\",\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/om-os\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/tomrerarbejde\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\",\"flex_direction_tablet\":\"column\",\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\",\"id\":57,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"18631d2\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/tagdaekning\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}],\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle ANMELDELSER\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"HVORFOR V\\u00c6LGE CP NORDIC ApS?\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79206f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>N\\u00e5r du v\\u00e6lger CP NORDIC ApS, f\\u00e5r du:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"44023b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/teamwork_4546121.svg\",\"id\":472},\"library\":\"svg\"},\"title_text\":\"et ungt og engageret team\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/effective_1401921.svg\",\"id\":474},\"library\":\"svg\"},\"title_text\":\"fokus p\\u00e5 kvalitet og detaljer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/communication_18765280.svg\",\"id\":479},\"library\":\"svg\"},\"title_text\":\"\\u00e6rlig<br> r\\u00e5dgivning\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/brainstorming_11663441.svg\",\"id\":480},\"library\":\"svg\"},\"title_text\":\"gennemt\\u00e6nkte l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c0f2190\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"327bd23\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/like_3941426.svg\",\"id\":481},\"library\":\"svg\"},\"title_text\":\"arbejde udf\\u00f8rt med ansvar\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2bc9769\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi lover ikke mere, end vi kan holde \\u2013 men vi holder det, vi lover.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2a1d8fc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6323910b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor8\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/wood-background-1-e1738912619419.jpg\",\"id\":510,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]}},\"elements\":[{\"id\":\"640d38eb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"75253fe5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"641310a\",\"elType\":\"widget\",\"settings\":{\"title\":\"KONTAKT OS\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee94578\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fea00\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68d73b3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14202595\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Name\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"tel\",\"field_label\":\"Phone\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\"},{\"field_type\":\"select\",\"field_label\":\"Services Name\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Messages\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor4\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_background_color\":\"#383838CC\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Roboto\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"field_typography_font_weight\":\"400\",\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4841, 532, '_elementor_edit_mode', 'builder'),
(4842, 532, '_elementor_template_type', 'wp-page'),
(4843, 532, '_elementor_version', '3.34.2'),
(4844, 532, '_elementor_pro_version', '3.34.2'),
(4845, 532, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4846, 532, '_elementor_data', '[{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\",\"id\":57,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}],\"content_width\":\"full\",\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"346c9d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Construction \\u2013 Carpentry & Roofing\",\"header_size\":\"h4\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d788e5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle ANMELDELSER\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]}},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"HVORFOR V\\u00c6LGE CP NORDIC ApS?\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79206f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>N\\u00e5r du v\\u00e6lger CP NORDIC ApS, f\\u00e5r du:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"44023b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/teamwork_4546121.svg\",\"id\":472},\"library\":\"svg\"},\"title_text\":\"et ungt og engageret team\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/effective_1401921.svg\",\"id\":474},\"library\":\"svg\"},\"title_text\":\"fokus p\\u00e5 kvalitet og detaljer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/communication_18765280.svg\",\"id\":479},\"library\":\"svg\"},\"title_text\":\"\\u00e6rlig<br> r\\u00e5dgivning\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/brainstorming_11663441.svg\",\"id\":480},\"library\":\"svg\"},\"title_text\":\"gennemt\\u00e6nkte l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c0f2190\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"327bd23\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/like_3941426.svg\",\"id\":481},\"library\":\"svg\"},\"title_text\":\"arbejde udf\\u00f8rt med ansvar\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2bc9769\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi lover ikke mere, end vi kan holde \\u2013 men vi holder det, vi lover.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2a1d8fc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"986dd0f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9231a79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"31fa3c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f1b19ca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7391996\"}]},\"elements\":[{\"id\":\"547d40f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7d5adb7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1522ba7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e13c951\"}],\"pp_display_conditions\":[{\"_id\":\"1e39e5d\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"4bda72e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7d5adb7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1522ba7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e13c951\"}],\"pp_display_conditions\":[{\"_id\":\"1e39e5d\"}]},\"elements\":[{\"id\":\"07d0be8\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"8b3e3db\"},{\"custom_id\":\"field_2a35699\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"2a35699\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"f9dd88c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6323910b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor8\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/wood-background-1-e1738912619419.jpg\",\"id\":510,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]}},\"elements\":[{\"id\":\"640d38eb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"75253fe5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"641310a\",\"elType\":\"widget\",\"settings\":{\"title\":\"KONTAKT OS\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee94578\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fea00\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68d73b3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14202595\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Name\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"tel\",\"field_label\":\"Phone\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\"},{\"field_type\":\"select\",\"field_label\":\"Services Name\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Messages\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor4\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_background_color\":\"#494949CC\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"mark_required\":\"yes\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4848, 532, '_elementor_page_settings', 'a:0:{}'),
(6694, 711, '_elementor_edit_mode', 'builder'),
(6695, 711, '_elementor_template_type', 'wp-page'),
(6696, 711, '_elementor_version', '3.34.2'),
(6697, 711, '_elementor_pro_version', '3.34.2'),
(6698, 711, '_wp_page_template', 'default'),
(6699, 711, '_elementor_data', '[{\"id\":\"1e332a51\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1600399\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3f02c7e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"69bbd48\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9bbb579\",\"pp_condition_date_time_before_value\":\"2024-06-13 12:14\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"id\":\"\",\"url\":\"\"},\"background_position\":\"bottom right\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"\"},\"background_overlay_position\":\"top left\",\"background_overlay_attachment\":\"scroll\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"a4da8ee\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8791aed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe09348\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"935d9bd\"}],\"pp_display_conditions\":[{\"_id\":\"faf5fd2\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}]},\"elements\":[{\"id\":\"49d71336\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kontaktoplysninger\",\"align\":\"left\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"802d5d7\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"750c99c1\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"editor\":\"<p>Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid<br \\/>velkommen til at kontakte os for en uforpligtende snak.<\\/p>\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c93489c\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"33ff5776\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"def43cb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c8cfb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e7a215\"}],\"pp_display_conditions\":[{\"_id\":\"daade15\",\"pp_condition_date_time_before_value\":\"2024-06-13 12:14\"}],\"flex_direction\":\"row\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_direction_tablet\":\"row\",\"flex_justify_content\":\"center\",\"flex_justify_content_tablet\":\"space-around\",\"flex_wrap\":\"wrap\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"5414ae23\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ca201cd\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"7db42375\",\"elType\":\"widget\",\"settings\":{\"title\":\"Placering\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"470d48aa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Fyn, Denmark\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a2184f8\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5511ffdf\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"6b6d887e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":504,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/smartphone_230142.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"3676670c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ring til os\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d86beaa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"41 60 00 40\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:41600040\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ce5f04f\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"64f3768f\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"55c9290\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":505,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/email_542689.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"397a533e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Send os en email\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a6b4fdc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"kontakt@cp-nordic.dk\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a2184f8\",\"link\":{\"url\":\"mailto:kontakt@cp-nordic.dk\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\",\"content_width\":\"full\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1629e761\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"3f0b36ba\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"304a3dc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d9ec4b\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Navn\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"tel\",\"field_label\":\"Telefon\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\"},{\"field_type\":\"select\",\"field_label\":\"Tjenesters navn\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Beskeder\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Roboto\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"field_typography_font_weight\":\"400\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true},{\"id\":\"636e2bca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5f31bac\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"32a9521\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dea9376\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7ff945\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"54da3f3a\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title\":\"KONTAKT OS\",\"pp_display_conditions\":[{\"_id\":\"156b1a5\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align_mobile_extra\":\"center\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79c5eed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi d\\u00e6kker hele Fyn \\u2013 og tager ogs\\u00e5 gerne opgaver uden for omr\\u00e5det, n\\u00e5r der er tale om sp\\u00e6ndende eller teknisk kr\\u00e6vende l\\u00f8sninger.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e03db8a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c76d79\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"1a75682\",\"link\":{\"url\":\"https:\\/\\/www.facebook.com\\/cpnordic\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"da32d70\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/cpnordic\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.6,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"589cdcb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor6\"},\"icon_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"left\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6680, 709, '_elementor_page_settings', 'a:0:{}'),
(6684, 710, '_elementor_edit_mode', 'builder'),
(6685, 710, '_elementor_template_type', 'wp-page'),
(6686, 710, '_elementor_version', '3.34.2'),
(6687, 710, '_elementor_pro_version', '3.34.2'),
(6688, 710, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6689, 710, '_elementor_data', '[{\"id\":\"1e332a51\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1600399\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3f02c7e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"69bbd48\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9bbb579\",\"pp_condition_date_time_before_value\":\"2024-06-13 12:14\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"id\":\"\",\"url\":\"\"},\"background_position\":\"bottom right\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"\"},\"background_overlay_position\":\"top left\",\"background_overlay_attachment\":\"scroll\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"a4da8ee\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8791aed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe09348\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"935d9bd\"}],\"pp_display_conditions\":[{\"_id\":\"faf5fd2\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}]},\"elements\":[{\"id\":\"49d71336\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kontaktoplysninger\",\"align\":\"left\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"802d5d7\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"750c99c1\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"editor\":\"<p>Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid<br \\/>velkommen til at kontakte os for en uforpligtende snak.<\\/p>\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c93489c\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"33ff5776\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"def43cb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c8cfb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e7a215\"}],\"pp_display_conditions\":[{\"_id\":\"daade15\",\"pp_condition_date_time_before_value\":\"2024-06-13 12:14\"}],\"flex_direction\":\"row\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_direction_tablet\":\"row\",\"flex_justify_content\":\"center\",\"flex_justify_content_tablet\":\"space-around\",\"flex_wrap\":\"wrap\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"5414ae23\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ca201cd\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"7db42375\",\"elType\":\"widget\",\"settings\":{\"title\":\"Placering\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"470d48aa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Fyn, Denmark\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a2184f8\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5511ffdf\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"6b6d887e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":504,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/smartphone_230142.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"3676670c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ring til os\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d86beaa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"41 60 00 40\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:41600040\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ce5f04f\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"64f3768f\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"55c9290\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":505,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/email_542689.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"397a533e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Send os en email\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a6b4fdc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"kontakt@cp-nordic.dk\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a2184f8\",\"link\":{\"url\":\"mailto:kontakt@cp-nordic.dk\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\",\"content_width\":\"full\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1629e761\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"3f0b36ba\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"304a3dc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d9ec4b\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Name\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"tel\",\"field_label\":\"Phone\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\"},{\"field_type\":\"select\",\"field_label\":\"Services Name\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Messages\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Roboto\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"field_typography_font_weight\":\"400\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true},{\"id\":\"636e2bca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5f31bac\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"32a9521\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dea9376\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7ff945\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"54da3f3a\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title\":\"KONTAKT OS\",\"pp_display_conditions\":[{\"_id\":\"156b1a5\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align_mobile_extra\":\"center\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79c5eed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi d\\u00e6kker hele Fyn \\u2013 og tager ogs\\u00e5 gerne opgaver uden for omr\\u00e5det, n\\u00e5r der er tale om sp\\u00e6ndende eller teknisk kr\\u00e6vende l\\u00f8sninger.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e03db8a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c76d79\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"1a75682\",\"link\":{\"url\":\"https:\\/\\/www.facebook.com\\/cpnordic\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"da32d70\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/cpnordic\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.6,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"589cdcb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor6\"},\"icon_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"left\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6690, 710, '_elementor_page_settings', 'a:0:{}'),
(6873, 724, '_elementor_page_settings', 'a:0:{}'),
(6889, 726, '_elementor_edit_mode', 'builder'),
(6890, 726, '_elementor_template_type', 'wp-page'),
(6891, 726, '_elementor_version', '3.34.2'),
(6892, 726, '_elementor_pro_version', '3.34.2'),
(6893, 726, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6894, 726, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#111111\",\"background_overlay_color_b\":\"#000A66A3\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23428e4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Byggeri \\u2013 T\\u00f8mrerarbejde og tagd\\u00e6kning\",\"header_size\":\"h4\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"pp_display_conditions\":[{\"_id\":\"b159f8d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/kontakt\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"flex_direction_tablet\":\"column-reverse\",\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/om-os\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/tomrerarbejde\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\",\"flex_direction_tablet\":\"column\",\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\",\"id\":57,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"18631d2\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/tagdaekning\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}],\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle ANMELDELSER\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"HVORFOR V\\u00c6LGE CP NORDIC ApS?\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79206f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>N\\u00e5r du v\\u00e6lger CP NORDIC ApS, f\\u00e5r du:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"44023b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/teamwork_4546121.svg\",\"id\":472},\"library\":\"svg\"},\"title_text\":\"et ungt og engageret team\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/effective_1401921.svg\",\"id\":474},\"library\":\"svg\"},\"title_text\":\"fokus p\\u00e5 kvalitet og detaljer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/communication_18765280.svg\",\"id\":479},\"library\":\"svg\"},\"title_text\":\"\\u00e6rlig<br> r\\u00e5dgivning\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/brainstorming_11663441.svg\",\"id\":480},\"library\":\"svg\"},\"title_text\":\"gennemt\\u00e6nkte l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c0f2190\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"327bd23\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/like_3941426.svg\",\"id\":481},\"library\":\"svg\"},\"title_text\":\"arbejde udf\\u00f8rt med ansvar\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2bc9769\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi lover ikke mere, end vi kan holde \\u2013 men vi holder det, vi lover.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2a1d8fc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6323910b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor8\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/wood-background-1-e1738912619419.jpg\",\"id\":510,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]}},\"elements\":[{\"id\":\"640d38eb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"75253fe5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"641310a\",\"elType\":\"widget\",\"settings\":{\"title\":\"KONTAKT OS\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee94578\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fea00\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68d73b3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14202595\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Navn\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"tel\",\"field_label\":\"Telefon\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\"},{\"field_type\":\"select\",\"field_label\":\"Tjenesters navn\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Beskeder\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor4\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_background_color\":\"#383838CC\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Roboto\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"field_typography_font_weight\":\"400\",\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6726, 714, '_elementor_template_type', 'wp-page'),
(6727, 714, '_elementor_version', '3.34.2'),
(6728, 714, '_elementor_pro_version', '3.34.2'),
(6729, 714, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6730, 714, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#111111\",\"background_overlay_color_b\":\"#000A66A3\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23428e4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Byggeri \\u2013 T\\u00f8mrerarbejde og tagd\\u00e6kning\",\"header_size\":\"h4\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"pp_display_conditions\":[{\"_id\":\"b159f8d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/kontakt\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"flex_direction_tablet\":\"column-reverse\",\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/om-os\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/tomrerarbejde\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\",\"flex_direction_tablet\":\"column\",\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\",\"id\":57,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"18631d2\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/tagdaekning\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}],\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle ANMELDELSER\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"HVORFOR V\\u00c6LGE CP NORDIC ApS?\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79206f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>N\\u00e5r du v\\u00e6lger CP NORDIC ApS, f\\u00e5r du:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"44023b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/teamwork_4546121.svg\",\"id\":472},\"library\":\"svg\"},\"title_text\":\"et ungt og engageret team\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/effective_1401921.svg\",\"id\":474},\"library\":\"svg\"},\"title_text\":\"fokus p\\u00e5 kvalitet og detaljer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/communication_18765280.svg\",\"id\":479},\"library\":\"svg\"},\"title_text\":\"\\u00e6rlig<br> r\\u00e5dgivning\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/brainstorming_11663441.svg\",\"id\":480},\"library\":\"svg\"},\"title_text\":\"gennemt\\u00e6nkte l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c0f2190\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"327bd23\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/like_3941426.svg\",\"id\":481},\"library\":\"svg\"},\"title_text\":\"arbejde udf\\u00f8rt med ansvar\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2bc9769\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi lover ikke mere, end vi kan holde \\u2013 men vi holder det, vi lover.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2a1d8fc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6323910b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor8\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/wood-background-1-e1738912619419.jpg\",\"id\":510,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]}},\"elements\":[{\"id\":\"640d38eb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"75253fe5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"641310a\",\"elType\":\"widget\",\"settings\":{\"title\":\"KONTAKT OS\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee94578\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fea00\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68d73b3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14202595\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Navn\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"tel\",\"field_label\":\"Telefon\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\"},{\"field_type\":\"select\",\"field_label\":\"Tjenesters navn\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Beskeder\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor4\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_background_color\":\"#383838CC\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Roboto\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"field_typography_font_weight\":\"400\",\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6824, 720, '_elementor_edit_mode', 'builder'),
(6825, 720, '_elementor_template_type', 'wp-page'),
(6826, 720, '_elementor_version', '3.34.2'),
(6827, 720, '_elementor_pro_version', '3.34.2'),
(6828, 720, '_wp_page_template', 'default'),
(6829, 720, '_elementor_data', '[{\"id\":\"bc434c0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"85ae5f7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"329d021\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores tjenester\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"15f3e6c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"flex_direction_mobile_extra\":\"column\",\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20}},\"elements\":[{\"id\":\"1490168\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"968d8b2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"title_text\":\"T\\u00d8MRERARBEJDE\",\"description_text\":\"Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:\\n\\n\",\"title_size\":\"h4\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"662ea50\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/tomrerarbejde\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cc9bbae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"afb00f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"ef0f12b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"title_text\":\"TAGD\\u00c6KNING\",\"description_text\":\"Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.\",\"title_size\":\"h4\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"fc9e68b\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/tagdaekning\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cc9bbae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6830, 720, '_elementor_page_settings', 'a:0:{}'),
(6835, 721, '_elementor_template_type', 'wp-page'),
(6836, 721, '_elementor_version', '3.34.2'),
(6837, 721, '_elementor_pro_version', '3.34.2'),
(6838, 721, '_wp_page_template', 'default'),
(6839, 721, '_elementor_data', '[{\"id\":\"bc434c0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"85ae5f7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"329d021\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores tjenester\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"15f3e6c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"flex_direction_mobile_extra\":\"column\",\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20}},\"elements\":[{\"id\":\"1490168\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"968d8b2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"title_text\":\"T\\u00d8MRERARBEJDE\",\"description_text\":\"Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:\\n\\n\",\"title_size\":\"h4\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"662ea50\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/tomrerarbejde\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cc9bbae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"afb00f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"ef0f12b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"title_text\":\"TAGD\\u00c6KNING\",\"description_text\":\"Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.\",\"title_size\":\"h4\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"fc9e68b\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/tagdaekning\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cc9bbae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6787, 716, '_elementor_page_settings', 'a:0:{}'),
(6712, 712, '_elementor_page_settings', 'a:0:{}'),
(6820, 719, '_elementor_page_settings', 'a:0:{}'),
(4903, 538, '_elementor_edit_mode', 'builder'),
(4904, 538, '_elementor_template_type', 'wp-page'),
(4905, 538, '_elementor_version', '3.34.2'),
(4906, 538, '_elementor_pro_version', '3.34.2'),
(4907, 538, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4908, 538, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}]},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\",\"id\":57,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle ANMELDELSER\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]}},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"HVORFOR V\\u00c6LGE CP NORDIC ApS?\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79206f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>N\\u00e5r du v\\u00e6lger CP NORDIC ApS, f\\u00e5r du:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"44023b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/teamwork_4546121.svg\",\"id\":472},\"library\":\"svg\"},\"title_text\":\"et ungt og engageret team\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/effective_1401921.svg\",\"id\":474},\"library\":\"svg\"},\"title_text\":\"fokus p\\u00e5 kvalitet og detaljer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/communication_18765280.svg\",\"id\":479},\"library\":\"svg\"},\"title_text\":\"\\u00e6rlig<br> r\\u00e5dgivning\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/brainstorming_11663441.svg\",\"id\":480},\"library\":\"svg\"},\"title_text\":\"gennemt\\u00e6nkte l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c0f2190\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"327bd23\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/like_3941426.svg\",\"id\":481},\"library\":\"svg\"},\"title_text\":\"arbejde udf\\u00f8rt med ansvar\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2bc9769\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi lover ikke mere, end vi kan holde \\u2013 men vi holder det, vi lover.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2a1d8fc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"986dd0f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9231a79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"31fa3c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f1b19ca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7391996\"}]},\"elements\":[{\"id\":\"547d40f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7d5adb7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1522ba7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e13c951\"}],\"pp_display_conditions\":[{\"_id\":\"1e39e5d\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"4bda72e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7d5adb7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1522ba7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e13c951\"}],\"pp_display_conditions\":[{\"_id\":\"1e39e5d\"}]},\"elements\":[{\"id\":\"07d0be8\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"8b3e3db\"},{\"custom_id\":\"field_2a35699\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"2a35699\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"f9dd88c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6323910b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor8\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/wood-background-1-e1738912619419.jpg\",\"id\":510,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]}},\"elements\":[{\"id\":\"640d38eb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"75253fe5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"641310a\",\"elType\":\"widget\",\"settings\":{\"title\":\"KONTAKT OS\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee94578\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fea00\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68d73b3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14202595\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Name\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"tel\",\"field_label\":\"Phone\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\"},{\"field_type\":\"select\",\"field_label\":\"Services Name\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Messages\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor4\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_background_color\":\"#494949CC\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"mark_required\":\"yes\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5011, 548, '_elementor_source', 'post'),
(5012, 548, '_elementor_edit_mode', 'builder'),
(5013, 548, '_elementor_template_type', 'footer'),
(5014, 548, '_elementor_version', '3.34.2'),
(5015, 548, '_elementor_pro_version', '3.34.2'),
(5016, 548, '_wp_page_template', 'default'),
(5017, 548, '_elementor_data', '[{\"id\":\"3cf69bc7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"background_color\":\"#121212\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"flex_direction_tablet\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"56542ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ba59e70\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"65fd471\"}],\"pp_display_conditions\":[{\"_id\":\"890752a\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\"}]},\"elements\":[{\"id\":\"7d433401\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"boxed_width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e0467be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fba2414\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"86eef93\"}],\"pp_display_conditions\":[{\"_id\":\"892bbfe\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\"}],\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"100\",\"bottom\":\"10\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b245e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/Transparent-File-02-scaled.png\",\"id\":49,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"3584c9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":240,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7a77842\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"text_color\":\"#F3F3F3\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":295,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"40edc0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3f1c0dda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"boxed_width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"boxed_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"wrap\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content_tablet\":\"center\",\"flex_align_items_tablet\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9cef852\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3267f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"568580d\"}],\"pp_display_conditions\":[{\"_id\":\"3b43c19\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\"}]},\"elements\":[{\"id\":\"25ffa917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick Links\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"97f1c92\",\"pp_condition_date_time_before_value\":\"2023-11-08 15:26\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\"}],\"align_tablet\":\"center\",\"align_mobile_extra\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"_element_width\":\"inherit\",\"typography_typography\":\"custom\",\"title_color\":\"#FFFFFF\",\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6373b647\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Hjem\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5dee041\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Tjenester\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"fdf1982\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/tjenester\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Referencer\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/referencer\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5076fdb\"},{\"text\":\"Om os\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/om-os\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1cdf804\"},{\"text\":\"Kontakt\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/kontakt\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"085decf\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"db62914\",\"pp_condition_date_time_before_value\":\"2023-11-08 15:26\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\"}],\"icon_align_tablet\":\"center\",\"icon_align_mobile_extra\":\"center\",\"__globals__\":{\"text_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=accent\"},\"text_color\":\"#E2E2E2\",\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_elements_tooltip_content\":\"Tooltip Content\",\"icon_typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7b991634\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ac9468\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f73d65c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e9fdb2\"}],\"pp_display_conditions\":[{\"_id\":\"6b3e2fa\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\"}]},\"elements\":[{\"id\":\"1dc7df4b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"97f1c92\",\"pp_condition_date_time_before_value\":\"2023-11-08 15:26\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\"}],\"align_tablet\":\"center\",\"align_mobile_extra\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"_element_width\":\"inherit\",\"title_color\":\"#FFFFFF\",\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45a55ad8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Fyn, Denmark\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"857a7bd\",\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"}},{\"text\":\"41 60 00 40\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:41600040\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f722a06\"},{\"text\":\"kontakt@cp-nordic.dk\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:kontakt@cp-nordic.dk\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f7076d3\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"db62914\",\"pp_condition_date_time_before_value\":\"2023-11-08 15:26\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\"}],\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align_tablet\":\"center\",\"icon_align_mobile_extra\":\"center\",\"icon_vertical_offset_mobile_extra\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_self_align_mobile_extra\":\"left\",\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=accent\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_vertical_offset_tablet\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"text_color\":\"#E2E2E2\",\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_elements_tooltip_content\":\"Tooltip Content\",\"icon_typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"d5ed30d\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"1a75682\",\"link\":{\"url\":\"https:\\/\\/www.facebook.com\\/cpnordic\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"da32d70\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/cpnordic\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.6,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"589cdcb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor6\"},\"icon_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5e55ea6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"flex_direction_tablet\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"56542ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ba59e70\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"65fd471\"}],\"pp_display_conditions\":[{\"_id\":\"890752a\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#222121\"},\"elements\":[{\"id\":\"543e7817\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"boxed_width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"boxed_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"wrap\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content_tablet\":\"center\",\"flex_align_items_tablet\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9cef852\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3267f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"568580d\"}],\"pp_display_conditions\":[{\"_id\":\"3b43c19\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"29e327ba\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u00a9 Copyright 2026 all rights reserved\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5dee041\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"db62914\",\"pp_condition_date_time_before_value\":\"2023-11-08 15:26\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"icon_align_tablet\":\"center\",\"icon_align_mobile_extra\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color_hover\":\"\"},\"text_color\":\"#FFFFFF\",\"pp_elements_tooltip_content\":\"Tooltip Content\",\"icon_typography_font_weight\":\"500\",\"view\":\"inline\",\"icon_align\":\"center\",\"icon_align_mobile\":\"center\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(5926, 634, '_elementor_pro_version', '3.34.2'),
(5927, 634, '_wp_page_template', 'default'),
(5928, 634, '_elementor_data', '[{\"id\":\"1e332a51\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1600399\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3f02c7e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"69bbd48\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9bbb579\",\"pp_condition_date_time_before_value\":\"2024-06-13 12:14\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"id\":\"\",\"url\":\"\"},\"background_position\":\"bottom right\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"\"},\"background_overlay_position\":\"top left\",\"background_overlay_attachment\":\"scroll\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"a4da8ee\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8791aed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe09348\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"935d9bd\"}],\"pp_display_conditions\":[{\"_id\":\"faf5fd2\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}]},\"elements\":[{\"id\":\"49d71336\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kontaktoplysninger\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"802d5d7\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"750c99c1\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"editor\":\"<p>Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid<br \\/>velkommen til at kontakte os for en uforpligtende snak.<\\/p>\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c93489c\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"33ff5776\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"def43cb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c8cfb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e7a215\"}],\"pp_display_conditions\":[{\"_id\":\"daade15\",\"pp_condition_date_time_before_value\":\"2024-06-13 12:14\"}],\"flex_direction\":\"row\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_direction_tablet\":\"row\",\"flex_justify_content\":\"center\",\"flex_justify_content_tablet\":\"space-around\",\"flex_wrap\":\"wrap\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"5414ae23\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ca201cd\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"7db42375\",\"elType\":\"widget\",\"settings\":{\"title\":\"Placering\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"470d48aa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Fyn, Denmark\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a2184f8\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5511ffdf\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"6b6d887e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":504,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/smartphone_230142.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"3676670c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ring til os\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d86beaa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"41 60 00 40\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:41600040\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ce5f04f\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"64f3768f\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"55c9290\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":505,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/email_542689.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"397a533e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Send os en email\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a6b4fdc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"kontakt@cp-nordic.dk\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a2184f8\",\"link\":{\"url\":\"mailto:kontakt@cp-nordic.dk\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\",\"content_width\":\"full\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1629e761\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"3f0b36ba\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"304a3dc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d9ec4b\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Name\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"tel\",\"field_label\":\"Phone\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\"},{\"field_type\":\"select\",\"field_label\":\"Services Name\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Messages\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Roboto\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"field_typography_font_weight\":\"400\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true},{\"id\":\"636e2bca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5f31bac\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"32a9521\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dea9376\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7ff945\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"54da3f3a\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title\":\"KONTAKT OS\",\"pp_display_conditions\":[{\"_id\":\"156b1a5\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align_mobile_extra\":\"center\",\"align\":\"left\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79c5eed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi d\\u00e6kker hele Fyn \\u2013 og tager ogs\\u00e5 gerne opgaver uden for omr\\u00e5det, n\\u00e5r der er tale om sp\\u00e6ndende eller teknisk kr\\u00e6vende l\\u00f8sninger.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e03db8a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c76d79\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"1a75682\",\"link\":{\"url\":\"https:\\/\\/www.facebook.com\\/cpnordic\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"da32d70\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/cpnordic\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.6,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"589cdcb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor6\"},\"icon_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"left\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6495, 692, '_elementor_edit_mode', 'builder'),
(6479, 690, '_elementor_edit_mode', 'builder'),
(6480, 690, '_elementor_template_type', 'wp-page'),
(6481, 690, '_elementor_version', '3.34.2'),
(6482, 690, '_elementor_pro_version', '3.34.2'),
(6483, 690, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6484, 690, '_elementor_data', '[{\"id\":\"bc434c0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"85ae5f7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"329d021\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores tjenester\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"15f3e6c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1490168\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"968d8b2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"title_text\":\"T\\u00d8MRERARBEJDE\",\"description_text\":\"Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:\\n\\n\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"afb00f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"ef0f12b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"title_text\":\"TAGD\\u00c6KNING\",\"description_text\":\"Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(4882, 535, '_elementor_page_settings', 'a:0:{}'),
(6801, 718, '_elementor_edit_mode', 'builder'),
(6781, 716, '_elementor_edit_mode', 'builder'),
(6782, 716, '_elementor_template_type', 'wp-page'),
(6783, 716, '_elementor_version', '3.34.2'),
(6784, 716, '_elementor_pro_version', '3.34.2'),
(6785, 716, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6786, 716, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#111111\",\"background_overlay_color_b\":\"#000A66A3\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23428e4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Byggeri \\u2013 T\\u00f8mrerarbejde og tagd\\u00e6kning\",\"header_size\":\"h4\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"pp_display_conditions\":[{\"_id\":\"b159f8d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/kontakt\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"flex_direction_tablet\":\"column-reverse\",\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/om-os\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/tomrerarbejde\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\",\"flex_direction_tablet\":\"column\",\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\",\"id\":57,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"18631d2\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/tagdaekning\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}],\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle ANMELDELSER\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"HVORFOR V\\u00c6LGE CP NORDIC ApS?\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79206f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>N\\u00e5r du v\\u00e6lger CP NORDIC ApS, f\\u00e5r du:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"44023b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/teamwork_4546121.svg\",\"id\":472},\"library\":\"svg\"},\"title_text\":\"et ungt og engageret team\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/effective_1401921.svg\",\"id\":474},\"library\":\"svg\"},\"title_text\":\"fokus p\\u00e5 kvalitet og detaljer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/communication_18765280.svg\",\"id\":479},\"library\":\"svg\"},\"title_text\":\"\\u00e6rlig<br> r\\u00e5dgivning\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/brainstorming_11663441.svg\",\"id\":480},\"library\":\"svg\"},\"title_text\":\"gennemt\\u00e6nkte l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c0f2190\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"327bd23\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/like_3941426.svg\",\"id\":481},\"library\":\"svg\"},\"title_text\":\"arbejde udf\\u00f8rt med ansvar\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2bc9769\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi lover ikke mere, end vi kan holde \\u2013 men vi holder det, vi lover.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2a1d8fc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6323910b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor8\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/wood-background-1-e1738912619419.jpg\",\"id\":510,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]}},\"elements\":[{\"id\":\"640d38eb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"75253fe5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"641310a\",\"elType\":\"widget\",\"settings\":{\"title\":\"KONTAKT OS\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee94578\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fea00\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68d73b3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14202595\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Navn\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"tel\",\"field_label\":\"Telefon\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\"},{\"field_type\":\"select\",\"field_label\":\"Tjenesters navn\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Beskeder\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor4\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_background_color\":\"#383838CC\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Roboto\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"field_typography_font_weight\":\"400\",\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6660, 30, '_elementor_screenshot_failed', '2026-01-26 15:08:54'),
(4884, 536, '_elementor_edit_mode', 'builder'),
(4885, 536, '_elementor_template_type', 'wp-page'),
(4886, 536, '_elementor_version', '3.34.2'),
(4887, 536, '_elementor_pro_version', '3.34.2'),
(4888, 536, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4889, 536, '_elementor_data', '[{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\",\"id\":57,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}],\"content_width\":\"full\",\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"346c9d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Construction \\u2013 Carpentry & Roofing\",\"header_size\":\"h4\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d788e5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle ANMELDELSER\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]}},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"HVORFOR V\\u00c6LGE CP NORDIC ApS?\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79206f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>N\\u00e5r du v\\u00e6lger CP NORDIC ApS, f\\u00e5r du:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"44023b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/teamwork_4546121.svg\",\"id\":472},\"library\":\"svg\"},\"title_text\":\"et ungt og engageret team\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/effective_1401921.svg\",\"id\":474},\"library\":\"svg\"},\"title_text\":\"fokus p\\u00e5 kvalitet og detaljer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/communication_18765280.svg\",\"id\":479},\"library\":\"svg\"},\"title_text\":\"\\u00e6rlig<br> r\\u00e5dgivning\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/brainstorming_11663441.svg\",\"id\":480},\"library\":\"svg\"},\"title_text\":\"gennemt\\u00e6nkte l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c0f2190\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"327bd23\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/like_3941426.svg\",\"id\":481},\"library\":\"svg\"},\"title_text\":\"arbejde udf\\u00f8rt med ansvar\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2bc9769\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi lover ikke mere, end vi kan holde \\u2013 men vi holder det, vi lover.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2a1d8fc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"986dd0f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9231a79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"31fa3c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f1b19ca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7391996\"}]},\"elements\":[{\"id\":\"547d40f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7d5adb7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1522ba7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e13c951\"}],\"pp_display_conditions\":[{\"_id\":\"1e39e5d\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"4bda72e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7d5adb7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1522ba7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e13c951\"}],\"pp_display_conditions\":[{\"_id\":\"1e39e5d\"}]},\"elements\":[{\"id\":\"07d0be8\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"8b3e3db\"},{\"custom_id\":\"field_2a35699\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"2a35699\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"f9dd88c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6323910b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor8\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/wood-background-1-e1738912619419.jpg\",\"id\":510,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]}},\"elements\":[{\"id\":\"640d38eb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"75253fe5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"641310a\",\"elType\":\"widget\",\"settings\":{\"title\":\"KONTAKT OS\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee94578\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fea00\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68d73b3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14202595\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Name\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"tel\",\"field_label\":\"Phone\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\"},{\"field_type\":\"select\",\"field_label\":\"Services Name\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Messages\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor4\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_background_color\":\"#494949CC\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"mark_required\":\"yes\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4891, 536, '_elementor_page_settings', 'a:0:{}'),
(6639, 706, '_elementor_edit_mode', 'builder'),
(6640, 706, '_elementor_template_type', 'wp-page'),
(6641, 706, '_elementor_version', '3.34.2'),
(6642, 706, '_elementor_pro_version', '3.34.2'),
(6643, 706, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6644, 706, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#111111\",\"background_overlay_color_b\":\"#000A66A3\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23428e4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Byggeri \\u2013 T\\u00f8mrerarbejde og tagd\\u00e6kning\",\"header_size\":\"h4\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"pp_display_conditions\":[{\"_id\":\"b159f8d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"flex_direction_tablet\":\"column-reverse\",\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\",\"flex_direction_tablet\":\"column\",\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\",\"id\":57,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}],\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle ANMELDELSER\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"HVORFOR V\\u00c6LGE CP NORDIC ApS?\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79206f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>N\\u00e5r du v\\u00e6lger CP NORDIC ApS, f\\u00e5r du:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"44023b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/teamwork_4546121.svg\",\"id\":472},\"library\":\"svg\"},\"title_text\":\"et ungt og engageret team\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/effective_1401921.svg\",\"id\":474},\"library\":\"svg\"},\"title_text\":\"fokus p\\u00e5 kvalitet og detaljer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/communication_18765280.svg\",\"id\":479},\"library\":\"svg\"},\"title_text\":\"\\u00e6rlig<br> r\\u00e5dgivning\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/brainstorming_11663441.svg\",\"id\":480},\"library\":\"svg\"},\"title_text\":\"gennemt\\u00e6nkte l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c0f2190\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"327bd23\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/like_3941426.svg\",\"id\":481},\"library\":\"svg\"},\"title_text\":\"arbejde udf\\u00f8rt med ansvar\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2bc9769\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi lover ikke mere, end vi kan holde \\u2013 men vi holder det, vi lover.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2a1d8fc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6323910b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor8\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/wood-background-1-e1738912619419.jpg\",\"id\":510,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]}},\"elements\":[{\"id\":\"640d38eb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"75253fe5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"641310a\",\"elType\":\"widget\",\"settings\":{\"title\":\"KONTAKT OS\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee94578\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fea00\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68d73b3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14202595\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Name\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"tel\",\"field_label\":\"Phone\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\"},{\"field_type\":\"select\",\"field_label\":\"Services Name\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Messages\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor4\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_background_color\":\"#383838CC\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Roboto\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"field_typography_font_weight\":\"400\",\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6646, 706, '_elementor_page_settings', 'a:0:{}'),
(6876, 725, '_elementor_edit_mode', 'builder'),
(6877, 725, '_elementor_template_type', 'wp-page'),
(6878, 725, '_elementor_version', '3.34.2'),
(6879, 725, '_elementor_pro_version', '3.34.2'),
(6880, 725, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6881, 725, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#111111\",\"background_overlay_color_b\":\"#000A66A3\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23428e4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Byggeri \\u2013 T\\u00f8mrerarbejde og tagd\\u00e6kning\",\"header_size\":\"h4\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"pp_display_conditions\":[{\"_id\":\"b159f8d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/kontakt\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"flex_direction_tablet\":\"column-reverse\",\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/om-os\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/tomrerarbejde\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\",\"flex_direction_tablet\":\"column\",\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\",\"id\":57,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"18631d2\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/tagdaekning\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}],\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle ANMELDELSER\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"HVORFOR V\\u00c6LGE CP NORDIC ApS?\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79206f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>N\\u00e5r du v\\u00e6lger CP NORDIC ApS, f\\u00e5r du:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"44023b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/teamwork_4546121.svg\",\"id\":472},\"library\":\"svg\"},\"title_text\":\"et ungt og engageret team\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/effective_1401921.svg\",\"id\":474},\"library\":\"svg\"},\"title_text\":\"fokus p\\u00e5 kvalitet og detaljer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/communication_18765280.svg\",\"id\":479},\"library\":\"svg\"},\"title_text\":\"\\u00e6rlig<br> r\\u00e5dgivning\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/brainstorming_11663441.svg\",\"id\":480},\"library\":\"svg\"},\"title_text\":\"gennemt\\u00e6nkte l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c0f2190\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"327bd23\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/like_3941426.svg\",\"id\":481},\"library\":\"svg\"},\"title_text\":\"arbejde udf\\u00f8rt med ansvar\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2bc9769\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi lover ikke mere, end vi kan holde \\u2013 men vi holder det, vi lover.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2a1d8fc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6323910b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor8\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/wood-background-1-e1738912619419.jpg\",\"id\":510,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]}},\"elements\":[{\"id\":\"640d38eb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"75253fe5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"641310a\",\"elType\":\"widget\",\"settings\":{\"title\":\"KONTAKT OS\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee94578\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fea00\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68d73b3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14202595\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Navn\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"tel\",\"field_label\":\"Telefon\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\"},{\"field_type\":\"select\",\"field_label\":\"Tjenesters navn\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Beskeder\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor4\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_background_color\":\"#383838CC\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Roboto\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"field_typography_font_weight\":\"400\",\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6604, 702, '_elementor_page_settings', 'a:0:{}'),
(7237, 757, '_elementor_edit_mode', 'builder'),
(7238, 757, '_elementor_template_type', 'wp-page'),
(7239, 757, '_elementor_version', '3.34.2'),
(7240, 757, '_elementor_pro_version', '3.34.2'),
(7241, 757, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7242, 757, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#111111\",\"background_overlay_color_b\":\"#000A66A3\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23428e4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Byggeri \\u2013 T\\u00f8mrerarbejde og tagd\\u00e6kning\",\"header_size\":\"h4\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"pp_display_conditions\":[{\"_id\":\"b159f8d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/kontakt\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"flex_direction_tablet\":\"column-reverse\",\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/om-os\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/tomrerarbejde\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\",\"flex_direction_tablet\":\"column\",\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\",\"id\":57,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"18631d2\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/tagdaekning\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}],\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle ANMELDELSER\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"HVORFOR V\\u00c6LGE CP NORDIC ApS?\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79206f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>N\\u00e5r du v\\u00e6lger CP NORDIC ApS, f\\u00e5r du:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"44023b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/teamwork_4546121.svg\",\"id\":472},\"library\":\"svg\"},\"title_text\":\"et ungt og engageret team\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/effective_1401921.svg\",\"id\":474},\"library\":\"svg\"},\"title_text\":\"fokus p\\u00e5 kvalitet og detaljer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/communication_18765280.svg\",\"id\":479},\"library\":\"svg\"},\"title_text\":\"\\u00e6rlig<br> r\\u00e5dgivning\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/brainstorming_11663441.svg\",\"id\":480},\"library\":\"svg\"},\"title_text\":\"gennemt\\u00e6nkte l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c0f2190\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"327bd23\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/like_3941426.svg\",\"id\":481},\"library\":\"svg\"},\"title_text\":\"arbejde udf\\u00f8rt med ansvar\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2bc9769\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi lover ikke mere, end vi kan holde \\u2013 men vi holder det, vi lover.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2a1d8fc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6323910b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor8\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/wood-background-1-e1738912619419.jpg\",\"id\":510,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]}},\"elements\":[{\"id\":\"640d38eb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"75253fe5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"641310a\",\"elType\":\"widget\",\"settings\":{\"title\":\"KONTAKT OS\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee94578\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fea00\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68d73b3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14202595\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Navn\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"tel\",\"field_label\":\"Telefon\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\"},{\"field_type\":\"select\",\"field_label\":\"Tjenesters navn\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Beskeder\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor4\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_background_color\":\"#383838CC\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Roboto\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"field_typography_font_weight\":\"400\",\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6607, 703, '_elementor_edit_mode', 'builder'),
(6608, 703, '_elementor_template_type', 'wp-page'),
(6609, 703, '_elementor_version', '3.34.2'),
(6610, 703, '_elementor_pro_version', '3.34.2'),
(6611, 703, '_wp_page_template', 'default'),
(6612, 703, '_elementor_data', '[{\"id\":\"bc434c0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"85ae5f7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"329d021\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores tjenester\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"15f3e6c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1490168\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"968d8b2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"title_text\":\"T\\u00d8MRERARBEJDE\",\"description_text\":\"Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:\\n\\n\",\"title_size\":\"h4\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"662ea50\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/tomrerarbejde\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cc9bbae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"afb00f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"ef0f12b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"title_text\":\"TAGD\\u00c6KNING\",\"description_text\":\"Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.\",\"title_size\":\"h4\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"fc9e68b\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/tagdaekning\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cc9bbae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6614, 703, '_elementor_page_settings', 'a:0:{}'),
(7005, 737, '_elementor_edit_mode', 'builder'),
(6617, 704, '_elementor_edit_mode', 'builder'),
(6618, 704, '_elementor_template_type', 'wp-page'),
(6619, 704, '_elementor_version', '3.34.2'),
(6620, 704, '_elementor_pro_version', '3.34.2'),
(6621, 704, '_wp_page_template', 'default'),
(6622, 704, '_elementor_data', '[{\"id\":\"bc434c0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"85ae5f7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"329d021\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores tjenester\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"15f3e6c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"flex_direction_mobile_extra\":\"column\",\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20}},\"elements\":[{\"id\":\"1490168\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"968d8b2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"title_text\":\"T\\u00d8MRERARBEJDE\",\"description_text\":\"Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:\\n\\n\",\"title_size\":\"h4\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"662ea50\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/tomrerarbejde\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cc9bbae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"afb00f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"ef0f12b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"title_text\":\"TAGD\\u00c6KNING\",\"description_text\":\"Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.\",\"title_size\":\"h4\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"fc9e68b\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/tagdaekning\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cc9bbae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6637, 705, '_elementor_page_settings', 'a:0:{}'),
(4918, 539, '_elementor_page_settings', 'a:0:{}'),
(4950, 543, '_elementor_edit_mode', 'builder'),
(4951, 543, '_elementor_template_type', 'wp-page'),
(4952, 543, '_elementor_version', '3.34.2'),
(4953, 543, '_elementor_pro_version', '3.34.2'),
(4954, 543, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4955, 543, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}],\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23428e4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Byggeri \\u2013 T\\u00f8mrerarbejde og tagd\\u00e6kning\",\"header_size\":\"h4\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"pp_display_conditions\":[{\"_id\":\"b159f8d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\",\"id\":57,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle ANMELDELSER\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]}},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"HVORFOR V\\u00c6LGE CP NORDIC ApS?\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79206f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>N\\u00e5r du v\\u00e6lger CP NORDIC ApS, f\\u00e5r du:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"44023b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/teamwork_4546121.svg\",\"id\":472},\"library\":\"svg\"},\"title_text\":\"et ungt og engageret team\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/effective_1401921.svg\",\"id\":474},\"library\":\"svg\"},\"title_text\":\"fokus p\\u00e5 kvalitet og detaljer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/communication_18765280.svg\",\"id\":479},\"library\":\"svg\"},\"title_text\":\"\\u00e6rlig<br> r\\u00e5dgivning\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/brainstorming_11663441.svg\",\"id\":480},\"library\":\"svg\"},\"title_text\":\"gennemt\\u00e6nkte l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c0f2190\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"327bd23\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/like_3941426.svg\",\"id\":481},\"library\":\"svg\"},\"title_text\":\"arbejde udf\\u00f8rt med ansvar\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2bc9769\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi lover ikke mere, end vi kan holde \\u2013 men vi holder det, vi lover.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2a1d8fc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6323910b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor8\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/wood-background-1-e1738912619419.jpg\",\"id\":510,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]}},\"elements\":[{\"id\":\"640d38eb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"75253fe5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"641310a\",\"elType\":\"widget\",\"settings\":{\"title\":\"KONTAKT OS\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee94578\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fea00\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68d73b3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14202595\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Name\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"tel\",\"field_label\":\"Phone\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\"},{\"field_type\":\"select\",\"field_label\":\"Services Name\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Messages\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor4\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_background_color\":\"#494949CC\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"mark_required\":\"yes\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4919, 540, '_elementor_edit_mode', 'builder'),
(4920, 540, '_elementor_template_type', 'wp-page'),
(4921, 540, '_elementor_version', '3.34.2'),
(4922, 540, '_elementor_pro_version', '3.34.2'),
(4923, 540, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4924, 540, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}],\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23428e4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Byggeri \\u2013 T\\u00f8mrerarbejde og tagd\\u00e6kning\",\"header_size\":\"h4\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"pp_display_conditions\":[{\"_id\":\"b159f8d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\",\"id\":57,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle ANMELDELSER\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]}},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"HVORFOR V\\u00c6LGE CP NORDIC ApS?\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79206f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>N\\u00e5r du v\\u00e6lger CP NORDIC ApS, f\\u00e5r du:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"44023b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/teamwork_4546121.svg\",\"id\":472},\"library\":\"svg\"},\"title_text\":\"et ungt og engageret team\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/effective_1401921.svg\",\"id\":474},\"library\":\"svg\"},\"title_text\":\"fokus p\\u00e5 kvalitet og detaljer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/communication_18765280.svg\",\"id\":479},\"library\":\"svg\"},\"title_text\":\"\\u00e6rlig<br> r\\u00e5dgivning\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/brainstorming_11663441.svg\",\"id\":480},\"library\":\"svg\"},\"title_text\":\"gennemt\\u00e6nkte l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c0f2190\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"327bd23\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/like_3941426.svg\",\"id\":481},\"library\":\"svg\"},\"title_text\":\"arbejde udf\\u00f8rt med ansvar\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2bc9769\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi lover ikke mere, end vi kan holde \\u2013 men vi holder det, vi lover.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2a1d8fc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"986dd0f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9231a79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"31fa3c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f1b19ca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7391996\"}]},\"elements\":[{\"id\":\"547d40f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7d5adb7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1522ba7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e13c951\"}],\"pp_display_conditions\":[{\"_id\":\"1e39e5d\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"4bda72e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7d5adb7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1522ba7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e13c951\"}],\"pp_display_conditions\":[{\"_id\":\"1e39e5d\"}]},\"elements\":[{\"id\":\"07d0be8\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"8b3e3db\"},{\"custom_id\":\"field_2a35699\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"2a35699\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"f9dd88c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6323910b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor8\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/wood-background-1-e1738912619419.jpg\",\"id\":510,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]}},\"elements\":[{\"id\":\"640d38eb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"75253fe5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"641310a\",\"elType\":\"widget\",\"settings\":{\"title\":\"KONTAKT OS\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee94578\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fea00\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68d73b3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14202595\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Name\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"tel\",\"field_label\":\"Phone\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\"},{\"field_type\":\"select\",\"field_label\":\"Services Name\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Messages\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor4\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_background_color\":\"#494949CC\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"mark_required\":\"yes\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4930, 541, '_elementor_edit_mode', 'builder'),
(4931, 541, '_elementor_template_type', 'wp-page'),
(4932, 541, '_elementor_version', '3.34.2'),
(4933, 541, '_elementor_pro_version', '3.34.2'),
(4934, 541, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4935, 541, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}],\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23428e4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Byggeri \\u2013 T\\u00f8mrerarbejde og tagd\\u00e6kning\",\"header_size\":\"h4\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"pp_display_conditions\":[{\"_id\":\"b159f8d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\",\"id\":57,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle ANMELDELSER\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]}},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"HVORFOR V\\u00c6LGE CP NORDIC ApS?\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79206f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>N\\u00e5r du v\\u00e6lger CP NORDIC ApS, f\\u00e5r du:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"44023b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/teamwork_4546121.svg\",\"id\":472},\"library\":\"svg\"},\"title_text\":\"et ungt og engageret team\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/effective_1401921.svg\",\"id\":474},\"library\":\"svg\"},\"title_text\":\"fokus p\\u00e5 kvalitet og detaljer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/communication_18765280.svg\",\"id\":479},\"library\":\"svg\"},\"title_text\":\"\\u00e6rlig<br> r\\u00e5dgivning\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/brainstorming_11663441.svg\",\"id\":480},\"library\":\"svg\"},\"title_text\":\"gennemt\\u00e6nkte l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c0f2190\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"327bd23\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/like_3941426.svg\",\"id\":481},\"library\":\"svg\"},\"title_text\":\"arbejde udf\\u00f8rt med ansvar\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2bc9769\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi lover ikke mere, end vi kan holde \\u2013 men vi holder det, vi lover.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2a1d8fc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"986dd0f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9231a79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"31fa3c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f1b19ca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7391996\"}]},\"elements\":[{\"id\":\"547d40f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7d5adb7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1522ba7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e13c951\"}],\"pp_display_conditions\":[{\"_id\":\"1e39e5d\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"4bda72e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7d5adb7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1522ba7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e13c951\"}],\"pp_display_conditions\":[{\"_id\":\"1e39e5d\"}]},\"elements\":[{\"id\":\"07d0be8\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"8b3e3db\"},{\"custom_id\":\"field_2a35699\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"2a35699\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"f9dd88c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6323910b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor8\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/wood-background-1-e1738912619419.jpg\",\"id\":510,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]}},\"elements\":[{\"id\":\"640d38eb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"75253fe5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"641310a\",\"elType\":\"widget\",\"settings\":{\"title\":\"KONTAKT OS\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee94578\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fea00\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68d73b3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14202595\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Name\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"tel\",\"field_label\":\"Phone\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\"},{\"field_type\":\"select\",\"field_label\":\"Services Name\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Messages\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor4\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_background_color\":\"#494949CC\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"mark_required\":\"yes\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4963, 544, '_elementor_edit_mode', 'builder'),
(4964, 544, '_elementor_template_type', 'wp-page'),
(4965, 544, '_elementor_version', '3.34.2'),
(4966, 544, '_elementor_pro_version', '3.34.2'),
(4967, 544, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4968, 544, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}],\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23428e4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Byggeri \\u2013 T\\u00f8mrerarbejde og tagd\\u00e6kning\",\"header_size\":\"h4\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"pp_display_conditions\":[{\"_id\":\"b159f8d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\",\"id\":57,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle ANMELDELSER\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]}},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"HVORFOR V\\u00c6LGE CP NORDIC ApS?\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79206f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>N\\u00e5r du v\\u00e6lger CP NORDIC ApS, f\\u00e5r du:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"44023b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/teamwork_4546121.svg\",\"id\":472},\"library\":\"svg\"},\"title_text\":\"et ungt og engageret team\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/effective_1401921.svg\",\"id\":474},\"library\":\"svg\"},\"title_text\":\"fokus p\\u00e5 kvalitet og detaljer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/communication_18765280.svg\",\"id\":479},\"library\":\"svg\"},\"title_text\":\"\\u00e6rlig<br> r\\u00e5dgivning\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/brainstorming_11663441.svg\",\"id\":480},\"library\":\"svg\"},\"title_text\":\"gennemt\\u00e6nkte l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c0f2190\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"327bd23\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/like_3941426.svg\",\"id\":481},\"library\":\"svg\"},\"title_text\":\"arbejde udf\\u00f8rt med ansvar\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2bc9769\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi lover ikke mere, end vi kan holde \\u2013 men vi holder det, vi lover.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2a1d8fc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6323910b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor8\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/wood-background-1-e1738912619419.jpg\",\"id\":510,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]}},\"elements\":[{\"id\":\"640d38eb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"75253fe5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"641310a\",\"elType\":\"widget\",\"settings\":{\"title\":\"KONTAKT OS\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee94578\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fea00\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68d73b3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14202595\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Name\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"tel\",\"field_label\":\"Phone\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\"},{\"field_type\":\"select\",\"field_label\":\"Services Name\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Messages\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor4\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_background_color\":\"#494949CC\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"mark_required\":\"yes\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5054, 551, '_elementor_edit_mode', 'builder'),
(5055, 551, '_elementor_template_type', 'wp-page'),
(5056, 551, '_elementor_version', '3.34.2'),
(5057, 551, '_elementor_pro_version', '3.34.2'),
(5058, 551, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5059, 551, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#111111\",\"background_overlay_color_b\":\"#000A66A3\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23428e4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Byggeri \\u2013 T\\u00f8mrerarbejde og tagd\\u00e6kning\",\"header_size\":\"h4\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"pp_display_conditions\":[{\"_id\":\"b159f8d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\",\"id\":57,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle ANMELDELSER\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]}},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"HVORFOR V\\u00c6LGE CP NORDIC ApS?\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79206f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>N\\u00e5r du v\\u00e6lger CP NORDIC ApS, f\\u00e5r du:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"44023b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/teamwork_4546121.svg\",\"id\":472},\"library\":\"svg\"},\"title_text\":\"et ungt og engageret team\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/effective_1401921.svg\",\"id\":474},\"library\":\"svg\"},\"title_text\":\"fokus p\\u00e5 kvalitet og detaljer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/communication_18765280.svg\",\"id\":479},\"library\":\"svg\"},\"title_text\":\"\\u00e6rlig<br> r\\u00e5dgivning\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/brainstorming_11663441.svg\",\"id\":480},\"library\":\"svg\"},\"title_text\":\"gennemt\\u00e6nkte l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c0f2190\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"327bd23\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/like_3941426.svg\",\"id\":481},\"library\":\"svg\"},\"title_text\":\"arbejde udf\\u00f8rt med ansvar\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2bc9769\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi lover ikke mere, end vi kan holde \\u2013 men vi holder det, vi lover.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2a1d8fc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6323910b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor8\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/wood-background-1-e1738912619419.jpg\",\"id\":510,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]}},\"elements\":[{\"id\":\"640d38eb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"75253fe5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"641310a\",\"elType\":\"widget\",\"settings\":{\"title\":\"KONTAKT OS\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee94578\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fea00\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68d73b3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14202595\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Name\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"tel\",\"field_label\":\"Phone\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\"},{\"field_type\":\"select\",\"field_label\":\"Services Name\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Messages\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor4\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_background_color\":\"#494949CC\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"mark_required\":\"yes\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6494, 691, '_elementor_page_settings', 'a:0:{}'),
(6496, 692, '_elementor_template_type', 'wp-page'),
(6497, 692, '_elementor_version', '3.34.2'),
(6498, 692, '_elementor_pro_version', '3.34.2'),
(6499, 692, '_wp_page_template', 'default'),
(6500, 692, '_elementor_data', '[{\"id\":\"bc434c0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"85ae5f7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"329d021\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores tjenester\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"15f3e6c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1490168\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"968d8b2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"title_text\":\"T\\u00d8MRERARBEJDE\",\"description_text\":\"Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:\\n\\n\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"afb00f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"ef0f12b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"title_text\":\"TAGD\\u00c6KNING\",\"description_text\":\"Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5092, 554, '_elementor_page_settings', 'a:0:{}'),
(5093, 555, '_elementor_edit_mode', 'builder'),
(5094, 555, '_elementor_template_type', 'wp-page'),
(5095, 555, '_elementor_version', '3.34.2'),
(5096, 555, '_elementor_pro_version', '3.34.2'),
(5097, 555, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5098, 555, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#111111\",\"background_overlay_color_b\":\"#000A66A3\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23428e4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Byggeri \\u2013 T\\u00f8mrerarbejde og tagd\\u00e6kning\",\"header_size\":\"h4\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"pp_display_conditions\":[{\"_id\":\"b159f8d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"flex_direction_tablet\":\"column-reverse\",\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\",\"id\":57,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle ANMELDELSER\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]}},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"HVORFOR V\\u00c6LGE CP NORDIC ApS?\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79206f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>N\\u00e5r du v\\u00e6lger CP NORDIC ApS, f\\u00e5r du:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"44023b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/teamwork_4546121.svg\",\"id\":472},\"library\":\"svg\"},\"title_text\":\"et ungt og engageret team\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/effective_1401921.svg\",\"id\":474},\"library\":\"svg\"},\"title_text\":\"fokus p\\u00e5 kvalitet og detaljer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/communication_18765280.svg\",\"id\":479},\"library\":\"svg\"},\"title_text\":\"\\u00e6rlig<br> r\\u00e5dgivning\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/brainstorming_11663441.svg\",\"id\":480},\"library\":\"svg\"},\"title_text\":\"gennemt\\u00e6nkte l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c0f2190\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"327bd23\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/like_3941426.svg\",\"id\":481},\"library\":\"svg\"},\"title_text\":\"arbejde udf\\u00f8rt med ansvar\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2bc9769\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi lover ikke mere, end vi kan holde \\u2013 men vi holder det, vi lover.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2a1d8fc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6323910b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor8\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/wood-background-1-e1738912619419.jpg\",\"id\":510,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]}},\"elements\":[{\"id\":\"640d38eb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"75253fe5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"641310a\",\"elType\":\"widget\",\"settings\":{\"title\":\"KONTAKT OS\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee94578\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fea00\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68d73b3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14202595\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Name\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"tel\",\"field_label\":\"Phone\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\"},{\"field_type\":\"select\",\"field_label\":\"Services Name\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Messages\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor4\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_background_color\":\"#494949CC\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"mark_required\":\"yes\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6486, 690, '_elementor_page_settings', 'a:0:{}'),
(6487, 691, '_elementor_edit_mode', 'builder'),
(6488, 691, '_elementor_template_type', 'wp-page'),
(6489, 691, '_elementor_version', '3.34.2'),
(4937, 541, '_elementor_page_settings', 'a:0:{}'),
(6906, 727, '_elementor_page_settings', 'a:0:{}'),
(6513, 693, '_elementor_page_settings', 'a:0:{}'),
(7215, 755, '_elementor_template_type', 'wp-page'),
(7216, 755, '_elementor_version', '3.34.2'),
(7217, 755, '_elementor_pro_version', '3.34.2'),
(6516, 694, '_elementor_edit_mode', 'builder'),
(6517, 694, '_elementor_template_type', 'wp-page'),
(6518, 694, '_elementor_version', '3.34.2'),
(6519, 694, '_elementor_pro_version', '3.34.2'),
(6520, 694, '_wp_page_template', 'default'),
(6521, 694, '_elementor_data', '[{\"id\":\"bc434c0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"85ae5f7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"329d021\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores tjenester\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"15f3e6c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1490168\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"968d8b2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"title_text\":\"T\\u00d8MRERARBEJDE\",\"description_text\":\"Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:\\n\\n\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"afb00f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"ef0f12b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"title_text\":\"TAGD\\u00c6KNING\",\"description_text\":\"Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6523, 694, '_elementor_page_settings', 'a:0:{}'),
(7214, 755, '_elementor_edit_mode', 'builder'),
(6527, 695, '_elementor_template_type', 'wp-page'),
(6528, 695, '_elementor_version', '3.34.2'),
(6529, 695, '_elementor_pro_version', '3.34.2'),
(6530, 695, '_wp_page_template', 'default'),
(6531, 695, '_elementor_data', '[{\"id\":\"bc434c0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"85ae5f7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"329d021\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores tjenester\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"15f3e6c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1490168\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"968d8b2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"title_text\":\"T\\u00d8MRERARBEJDE\",\"description_text\":\"Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:\\n\\n\",\"title_size\":\"h4\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"afb00f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"ef0f12b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"title_text\":\"TAGD\\u00c6KNING\",\"description_text\":\"Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.\",\"title_size\":\"h4\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6547, 697, '_elementor_version', '3.34.2'),
(6548, 697, '_elementor_pro_version', '3.34.2'),
(6549, 697, '_wp_page_template', 'default'),
(6550, 697, '_elementor_data', '[{\"id\":\"bc434c0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"85ae5f7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"329d021\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores tjenester\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"15f3e6c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1490168\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"968d8b2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"title_text\":\"T\\u00d8MRERARBEJDE\",\"description_text\":\"Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:\\n\\n\",\"title_size\":\"h4\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"afb00f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"ef0f12b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"title_text\":\"TAGD\\u00c6KNING\",\"description_text\":\"Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.\",\"title_size\":\"h4\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6552, 697, '_elementor_page_settings', 'a:0:{}'),
(6554, 698, '_elementor_template_type', 'wp-page'),
(6555, 698, '_elementor_version', '3.34.2'),
(6556, 698, '_elementor_pro_version', '3.34.2'),
(6557, 698, '_wp_page_template', 'default'),
(6558, 698, '_elementor_data', '[{\"id\":\"bc434c0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"85ae5f7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"329d021\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores tjenester\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"15f3e6c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1490168\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"968d8b2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"title_text\":\"T\\u00d8MRERARBEJDE\",\"description_text\":\"Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:\\n\\n\",\"title_size\":\"h4\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"afb00f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"ef0f12b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"title_text\":\"TAGD\\u00c6KNING\",\"description_text\":\"Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.\",\"title_size\":\"h4\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6564, 699, '_elementor_edit_mode', 'builder'),
(6565, 699, '_elementor_template_type', 'wp-page'),
(6566, 699, '_elementor_version', '3.34.2'),
(6567, 699, '_elementor_pro_version', '3.34.2'),
(6568, 699, '_wp_page_template', 'default'),
(6569, 699, '_elementor_data', '[{\"id\":\"bc434c0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"85ae5f7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"329d021\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores tjenester\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"15f3e6c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1490168\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"968d8b2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"title_text\":\"T\\u00d8MRERARBEJDE\",\"description_text\":\"Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:\\n\\n\",\"title_size\":\"h4\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"afb00f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"ef0f12b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"title_text\":\"TAGD\\u00c6KNING\",\"description_text\":\"Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.\",\"title_size\":\"h4\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6597, 702, '_elementor_edit_mode', 'builder'),
(6598, 702, '_elementor_template_type', 'wp-page'),
(6599, 702, '_elementor_version', '3.34.2'),
(6600, 702, '_elementor_pro_version', '3.34.2'),
(6601, 702, '_wp_page_template', 'default'),
(6602, 702, '_elementor_data', '[{\"id\":\"bc434c0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"85ae5f7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"329d021\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores tjenester\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"15f3e6c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1490168\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"968d8b2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"title_text\":\"T\\u00d8MRERARBEJDE\",\"description_text\":\"Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:\\n\\n\",\"title_size\":\"h4\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"662ea50\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/tomrerarbejde\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cc9bbae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"afb00f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"ef0f12b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"title_text\":\"TAGD\\u00c6KNING\",\"description_text\":\"Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.\",\"title_size\":\"h4\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"fc9e68b\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/tagdaekning\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cc9bbae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6571, 699, '_elementor_page_settings', 'a:0:{}'),
(7259, 759, '_elementor_version', '3.34.2'),
(6574, 700, '_elementor_edit_mode', 'builder'),
(6575, 700, '_elementor_template_type', 'wp-page'),
(6576, 700, '_elementor_version', '3.34.2'),
(6577, 700, '_elementor_pro_version', '3.34.2'),
(6578, 700, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6579, 700, '_elementor_data', '[{\"id\":\"bc434c0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"85ae5f7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"329d021\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores tjenester\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"15f3e6c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1490168\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"968d8b2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"title_text\":\"T\\u00d8MRERARBEJDE\",\"description_text\":\"Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:\\n\\n\",\"title_size\":\"h4\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"afb00f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"ef0f12b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"title_text\":\"TAGD\\u00c6KNING\",\"description_text\":\"Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.\",\"title_size\":\"h4\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6581, 700, '_elementor_page_settings', 'a:0:{}'),
(6584, 701, '_elementor_edit_mode', 'builder'),
(6585, 701, '_elementor_template_type', 'wp-page'),
(6586, 701, '_elementor_version', '3.34.2'),
(6587, 701, '_elementor_pro_version', '3.34.2'),
(6588, 701, '_wp_page_template', 'default'),
(6589, 701, '_elementor_data', '[{\"id\":\"bc434c0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"85ae5f7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"329d021\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores tjenester\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"15f3e6c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1490168\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"968d8b2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"title_text\":\"T\\u00d8MRERARBEJDE\",\"description_text\":\"Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:\\n\\n\",\"title_size\":\"h4\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"662ea50\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/tomrerarbejde\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cc9bbae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"afb00f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"ef0f12b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"title_text\":\"TAGD\\u00c6KNING\",\"description_text\":\"Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.\",\"title_size\":\"h4\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"fc9e68b\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/tagdaekning\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cc9bbae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6985, 640, '_elementor_page_settings', 'a:0:{}'),
(6986, 640, '_elementor_controls_usage', 'a:6:{s:14:\"call-to-action\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:18:\"section_main_image\";a:3:{s:4:\"skin\";i:6;s:8:\"bg_image\";i:6;s:13:\"bg_image_size\";i:6;}s:15:\"section_content\";a:4:{s:5:\"title\";i:6;s:9:\"title_tag\";i:6;s:11:\"description\";i:6;s:6:\"button\";i:6;}}s:5:\"style\";a:2:{s:9:\"box_style\";a:4:{s:10:\"min-height\";i:6;s:9:\"alignment\";i:6;s:17:\"vertical_position\";i:6;s:7:\"padding\";i:6;}s:21:\"section_content_style\";a:4:{s:27:\"title_typography_typography\";i:6;s:28:\"title_typography_font_family\";i:6;s:28:\"title_typography_font_weight\";i:6;s:13:\"title_spacing\";i:6;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:14:\"_element_width\";i:6;s:21:\"_element_custom_width\";i:6;}s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:6;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:5:{s:13:\"content_width\";i:4;s:14:\"flex_direction\";i:3;s:20:\"flex_justify_content\";i:2;s:8:\"flex_gap\";i:4;s:9:\"flex_wrap\";i:1;}}s:5:\"style\";a:2:{s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:6;}s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}s:8:\"advanced\";a:3:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:6;}s:14:\"section_layout\";a:2:{s:7:\"padding\";i:3;s:11:\"css_classes\";i:1;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:3;s:18:\"animation_duration\";i:3;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:2;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:5:\"align\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;}}s:8:\"advanced\";a:2:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:1;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:1;}s:18:\"section_text_style\";a:4:{s:26:\"icon_typography_typography\";i:1;s:27:\"icon_typography_font_family\";i:1;s:25:\"icon_typography_font_size\";i:1;s:27:\"icon_typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}}'),
(6834, 721, '_elementor_edit_mode', 'builder'),
(6814, 719, '_elementor_edit_mode', 'builder'),
(6815, 719, '_elementor_template_type', 'wp-page'),
(6816, 719, '_elementor_version', '3.34.2'),
(6817, 719, '_elementor_pro_version', '3.34.2'),
(6818, 719, '_wp_page_template', 'default'),
(6819, 719, '_elementor_data', '[{\"id\":\"bc434c0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"85ae5f7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"329d021\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores tjenester\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"15f3e6c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"flex_direction_mobile_extra\":\"column\",\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20}},\"elements\":[{\"id\":\"1490168\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"968d8b2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"title_text\":\"T\\u00d8MRERARBEJDE\",\"description_text\":\"Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:\\n\\n\",\"title_size\":\"h4\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"662ea50\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/tomrerarbejde\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cc9bbae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"afb00f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"ef0f12b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"title_text\":\"TAGD\\u00c6KNING\",\"description_text\":\"Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.\",\"title_size\":\"h4\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"fc9e68b\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/tagdaekning\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cc9bbae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(4940, 542, '_elementor_edit_mode', 'builder'),
(4941, 542, '_elementor_template_type', 'wp-page'),
(4942, 542, '_elementor_version', '3.34.2'),
(4943, 542, '_elementor_pro_version', '3.34.2'),
(4944, 542, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4945, 542, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}],\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23428e4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Byggeri \\u2013 T\\u00f8mrerarbejde og tagd\\u00e6kning\",\"header_size\":\"h4\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"pp_display_conditions\":[{\"_id\":\"b159f8d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\",\"id\":57,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle ANMELDELSER\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]}},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"HVORFOR V\\u00c6LGE CP NORDIC ApS?\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79206f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>N\\u00e5r du v\\u00e6lger CP NORDIC ApS, f\\u00e5r du:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"44023b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/teamwork_4546121.svg\",\"id\":472},\"library\":\"svg\"},\"title_text\":\"et ungt og engageret team\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/effective_1401921.svg\",\"id\":474},\"library\":\"svg\"},\"title_text\":\"fokus p\\u00e5 kvalitet og detaljer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/communication_18765280.svg\",\"id\":479},\"library\":\"svg\"},\"title_text\":\"\\u00e6rlig<br> r\\u00e5dgivning\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/brainstorming_11663441.svg\",\"id\":480},\"library\":\"svg\"},\"title_text\":\"gennemt\\u00e6nkte l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c0f2190\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"327bd23\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/like_3941426.svg\",\"id\":481},\"library\":\"svg\"},\"title_text\":\"arbejde udf\\u00f8rt med ansvar\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2bc9769\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi lover ikke mere, end vi kan holde \\u2013 men vi holder det, vi lover.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2a1d8fc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"986dd0f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9231a79\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"31fa3c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f1b19ca\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7391996\"}]},\"elements\":[{\"id\":\"547d40f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7d5adb7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1522ba7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e13c951\"}],\"pp_display_conditions\":[{\"_id\":\"1e39e5d\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"4bda72e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7d5adb7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1522ba7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e13c951\"}],\"pp_display_conditions\":[{\"_id\":\"1e39e5d\"}]},\"elements\":[{\"id\":\"07d0be8\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"8b3e3db\"},{\"custom_id\":\"field_2a35699\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"_id\":\"2a35699\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"f9dd88c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6323910b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor8\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/wood-background-1-e1738912619419.jpg\",\"id\":510,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]}},\"elements\":[{\"id\":\"640d38eb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"75253fe5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"641310a\",\"elType\":\"widget\",\"settings\":{\"title\":\"KONTAKT OS\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee94578\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fea00\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68d73b3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14202595\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Name\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"tel\",\"field_label\":\"Phone\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\"},{\"field_type\":\"select\",\"field_label\":\"Services Name\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Messages\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor4\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_background_color\":\"#494949CC\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"mark_required\":\"yes\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6490, 691, '_elementor_pro_version', '3.34.2'),
(6491, 691, '_wp_page_template', 'default'),
(6492, 691, '_elementor_data', '[{\"id\":\"bc434c0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"85ae5f7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"329d021\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores tjenester\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"15f3e6c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1490168\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"968d8b2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"title_text\":\"T\\u00d8MRERARBEJDE\",\"description_text\":\"Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:\\n\\n\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"afb00f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"ef0f12b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"title_text\":\"TAGD\\u00c6KNING\",\"description_text\":\"Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(4947, 542, '_elementor_page_settings', 'a:0:{}'),
(6059, 649, '_elementor_version', '3.34.2'),
(6060, 649, '_elementor_pro_version', '3.34.2'),
(6061, 649, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6062, 649, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#111111\",\"background_overlay_color_b\":\"#000A66A3\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23428e4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Byggeri \\u2013 T\\u00f8mrerarbejde og tagd\\u00e6kning\",\"header_size\":\"h4\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"pp_display_conditions\":[{\"_id\":\"b159f8d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"flex_direction_tablet\":\"column-reverse\",\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\",\"flex_direction_tablet\":\"column\",\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\",\"id\":57,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}],\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle ANMELDELSER\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"HVORFOR V\\u00c6LGE CP NORDIC ApS?\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79206f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>N\\u00e5r du v\\u00e6lger CP NORDIC ApS, f\\u00e5r du:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"44023b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/teamwork_4546121.svg\",\"id\":472},\"library\":\"svg\"},\"title_text\":\"et ungt og engageret team\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/effective_1401921.svg\",\"id\":474},\"library\":\"svg\"},\"title_text\":\"fokus p\\u00e5 kvalitet og detaljer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/communication_18765280.svg\",\"id\":479},\"library\":\"svg\"},\"title_text\":\"\\u00e6rlig<br> r\\u00e5dgivning\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/brainstorming_11663441.svg\",\"id\":480},\"library\":\"svg\"},\"title_text\":\"gennemt\\u00e6nkte l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c0f2190\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"327bd23\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/like_3941426.svg\",\"id\":481},\"library\":\"svg\"},\"title_text\":\"arbejde udf\\u00f8rt med ansvar\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2bc9769\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi lover ikke mere, end vi kan holde \\u2013 men vi holder det, vi lover.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2a1d8fc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6323910b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor8\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/wood-background-1-e1738912619419.jpg\",\"id\":510,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]}},\"elements\":[{\"id\":\"640d38eb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"75253fe5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"641310a\",\"elType\":\"widget\",\"settings\":{\"title\":\"KONTAKT OS\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee94578\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fea00\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68d73b3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14202595\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Name\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"tel\",\"field_label\":\"Phone\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\"},{\"field_type\":\"select\",\"field_label\":\"Services Name\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Messages\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor4\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_background_color\":\"#383838CC\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Roboto\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"field_typography_font_weight\":\"400\",\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6866, 724, '_elementor_edit_mode', 'builder'),
(6867, 724, '_elementor_template_type', 'wp-page'),
(6868, 724, '_elementor_version', '3.34.2'),
(6869, 724, '_elementor_pro_version', '3.34.2'),
(6870, 724, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6871, 724, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#111111\",\"background_overlay_color_b\":\"#000A66A3\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23428e4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Byggeri \\u2013 T\\u00f8mrerarbejde og tagd\\u00e6kning\",\"header_size\":\"h4\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"pp_display_conditions\":[{\"_id\":\"b159f8d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/kontakt\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"flex_direction_tablet\":\"column-reverse\",\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/om-os\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/tomrerarbejde\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\",\"flex_direction_tablet\":\"column\",\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\",\"id\":57,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"18631d2\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/tagdaekning\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}],\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle ANMELDELSER\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"HVORFOR V\\u00c6LGE CP NORDIC ApS?\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79206f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>N\\u00e5r du v\\u00e6lger CP NORDIC ApS, f\\u00e5r du:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"44023b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/teamwork_4546121.svg\",\"id\":472},\"library\":\"svg\"},\"title_text\":\"et ungt og engageret team\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/effective_1401921.svg\",\"id\":474},\"library\":\"svg\"},\"title_text\":\"fokus p\\u00e5 kvalitet og detaljer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/communication_18765280.svg\",\"id\":479},\"library\":\"svg\"},\"title_text\":\"\\u00e6rlig<br> r\\u00e5dgivning\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/brainstorming_11663441.svg\",\"id\":480},\"library\":\"svg\"},\"title_text\":\"gennemt\\u00e6nkte l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c0f2190\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"327bd23\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/like_3941426.svg\",\"id\":481},\"library\":\"svg\"},\"title_text\":\"arbejde udf\\u00f8rt med ansvar\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2bc9769\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi lover ikke mere, end vi kan holde \\u2013 men vi holder det, vi lover.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2a1d8fc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6323910b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor8\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/wood-background-1-e1738912619419.jpg\",\"id\":510,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]}},\"elements\":[{\"id\":\"640d38eb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"75253fe5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"641310a\",\"elType\":\"widget\",\"settings\":{\"title\":\"KONTAKT OS\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee94578\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fea00\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68d73b3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14202595\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Navn\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"tel\",\"field_label\":\"Telefon\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\"},{\"field_type\":\"select\",\"field_label\":\"Tjenesters navn\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Beskeder\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor4\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_background_color\":\"#383838CC\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Roboto\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"field_typography_font_weight\":\"400\",\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7257, 759, '_elementor_edit_mode', 'builder'),
(7258, 759, '_elementor_template_type', 'wp-page'),
(6909, 728, '_elementor_edit_mode', 'builder'),
(6910, 728, '_elementor_template_type', 'wp-page'),
(6911, 728, '_elementor_version', '3.34.2'),
(6912, 728, '_elementor_pro_version', '3.34.2'),
(6913, 728, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6914, 728, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#111111\",\"background_overlay_color_b\":\"#000A66A3\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23428e4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Byggeri \\u2013 T\\u00f8mrerarbejde og tagd\\u00e6kning\",\"header_size\":\"h4\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"pp_display_conditions\":[{\"_id\":\"b159f8d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/kontakt\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"flex_direction_tablet\":\"column-reverse\",\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/om-os\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/tomrerarbejde\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\",\"flex_direction_tablet\":\"column\",\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\",\"id\":57,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"18631d2\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/tagdaekning\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}],\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle ANMELDELSER\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"HVORFOR V\\u00c6LGE CP NORDIC ApS?\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79206f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>N\\u00e5r du v\\u00e6lger CP NORDIC ApS, f\\u00e5r du:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"44023b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/teamwork_4546121.svg\",\"id\":472},\"library\":\"svg\"},\"title_text\":\"et ungt og engageret team\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/effective_1401921.svg\",\"id\":474},\"library\":\"svg\"},\"title_text\":\"fokus p\\u00e5 kvalitet og detaljer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/communication_18765280.svg\",\"id\":479},\"library\":\"svg\"},\"title_text\":\"\\u00e6rlig<br> r\\u00e5dgivning\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/brainstorming_11663441.svg\",\"id\":480},\"library\":\"svg\"},\"title_text\":\"gennemt\\u00e6nkte l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c0f2190\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"327bd23\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/like_3941426.svg\",\"id\":481},\"library\":\"svg\"},\"title_text\":\"arbejde udf\\u00f8rt med ansvar\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2bc9769\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi lover ikke mere, end vi kan holde \\u2013 men vi holder det, vi lover.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2a1d8fc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6323910b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor8\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/wood-background-1-e1738912619419.jpg\",\"id\":510,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]}},\"elements\":[{\"id\":\"640d38eb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"75253fe5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"641310a\",\"elType\":\"widget\",\"settings\":{\"title\":\"KONTAKT OS\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee94578\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fea00\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68d73b3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14202595\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Navn\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"tel\",\"field_label\":\"Telefon\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\"},{\"field_type\":\"select\",\"field_label\":\"Tjenesters navn\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Beskeder\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor4\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_background_color\":\"#383838CC\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Roboto\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"field_typography_font_weight\":\"400\",\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6047, 648, '_elementor_edit_mode', 'builder'),
(6048, 648, '_elementor_template_type', 'wp-page'),
(6049, 648, '_elementor_version', '3.34.2'),
(6050, 648, '_elementor_pro_version', '3.34.2'),
(6051, 648, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6052, 648, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#111111\",\"background_overlay_color_b\":\"#000A66A3\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23428e4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Byggeri \\u2013 T\\u00f8mrerarbejde og tagd\\u00e6kning\",\"header_size\":\"h4\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"pp_display_conditions\":[{\"_id\":\"b159f8d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"flex_direction_tablet\":\"column-reverse\",\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\",\"flex_direction_tablet\":\"column\",\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\",\"id\":57,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}],\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle ANMELDELSER\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"HVORFOR V\\u00c6LGE CP NORDIC ApS?\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79206f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>N\\u00e5r du v\\u00e6lger CP NORDIC ApS, f\\u00e5r du:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"44023b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/teamwork_4546121.svg\",\"id\":472},\"library\":\"svg\"},\"title_text\":\"et ungt og engageret team\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/effective_1401921.svg\",\"id\":474},\"library\":\"svg\"},\"title_text\":\"fokus p\\u00e5 kvalitet og detaljer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/communication_18765280.svg\",\"id\":479},\"library\":\"svg\"},\"title_text\":\"\\u00e6rlig<br> r\\u00e5dgivning\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/brainstorming_11663441.svg\",\"id\":480},\"library\":\"svg\"},\"title_text\":\"gennemt\\u00e6nkte l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c0f2190\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"327bd23\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/like_3941426.svg\",\"id\":481},\"library\":\"svg\"},\"title_text\":\"arbejde udf\\u00f8rt med ansvar\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2bc9769\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi lover ikke mere, end vi kan holde \\u2013 men vi holder det, vi lover.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2a1d8fc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6323910b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor8\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/wood-background-1-e1738912619419.jpg\",\"id\":510,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]}},\"elements\":[{\"id\":\"640d38eb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"75253fe5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"641310a\",\"elType\":\"widget\",\"settings\":{\"title\":\"KONTAKT OS\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee94578\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fea00\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68d73b3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14202595\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Name\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"tel\",\"field_label\":\"Phone\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\"},{\"field_type\":\"select\",\"field_label\":\"Services Name\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Messages\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor4\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_background_color\":\"#383838CC\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Roboto\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"field_typography_font_weight\":\"400\",\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6053, 648, '_elementor_page_settings', 'a:0:{}'),
(4970, 544, '_elementor_page_settings', 'a:0:{}'),
(7082, 744, '_elementor_edit_mode', 'builder'),
(7083, 744, '_elementor_template_type', 'wp-page'),
(7084, 744, '_elementor_version', '3.34.2'),
(7085, 744, '_elementor_pro_version', '3.34.2'),
(7086, 744, '_wp_page_template', 'default'),
(7087, 744, '_elementor_data', '[{\"id\":\"1e332a51\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1600399\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3f02c7e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"69bbd48\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9bbb579\",\"pp_condition_date_time_before_value\":\"2024-06-13 12:14\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"id\":\"\",\"url\":\"\"},\"background_position\":\"bottom right\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"\"},\"background_overlay_position\":\"top left\",\"background_overlay_attachment\":\"scroll\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"a4da8ee\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8791aed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe09348\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"935d9bd\"}],\"pp_display_conditions\":[{\"_id\":\"faf5fd2\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}]},\"elements\":[{\"id\":\"49d71336\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kontaktoplysninger\",\"align\":\"left\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"802d5d7\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"750c99c1\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"editor\":\"<p>Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid<br \\/>velkommen til at kontakte os for en uforpligtende snak.<\\/p>\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c93489c\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"33ff5776\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"def43cb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c8cfb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e7a215\"}],\"pp_display_conditions\":[{\"_id\":\"daade15\",\"pp_condition_date_time_before_value\":\"2024-06-13 12:14\"}],\"flex_direction\":\"row\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_direction_tablet\":\"row\",\"flex_justify_content\":\"center\",\"flex_justify_content_tablet\":\"space-around\",\"flex_wrap\":\"wrap\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"5414ae23\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ca201cd\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"7db42375\",\"elType\":\"widget\",\"settings\":{\"title\":\"Placering\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"470d48aa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Fyn, Denmark\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a2184f8\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5511ffdf\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"6b6d887e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":504,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/smartphone_230142.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"3676670c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ring til os\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d86beaa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"41 60 00 40\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:41600040\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ce5f04f\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"64f3768f\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"55c9290\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":505,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/email_542689.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"397a533e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Send os en email\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a6b4fdc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"kontakt@cp-nordic.dk\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a2184f8\",\"link\":{\"url\":\"mailto:kontakt@cp-nordic.dk\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\",\"content_width\":\"full\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1629e761\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"3f0b36ba\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"304a3dc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d9ec4b\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Navn\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"tel\",\"field_label\":\"Telefon\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\"},{\"field_type\":\"select\",\"field_label\":\"Tjenesters navn\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Beskeder\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Roboto\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"field_typography_font_weight\":\"400\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true},{\"id\":\"636e2bca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5f31bac\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"32a9521\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dea9376\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7ff945\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"54da3f3a\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title\":\"KONTAKT OS\",\"pp_display_conditions\":[{\"_id\":\"156b1a5\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align_mobile_extra\":\"center\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79c5eed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi d\\u00e6kker hele Fyn \\u2013 og tager ogs\\u00e5 gerne opgaver uden for omr\\u00e5det, n\\u00e5r der er tale om sp\\u00e6ndende eller teknisk kr\\u00e6vende l\\u00f8sninger.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e03db8a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c76d79\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"1a75682\",\"link\":{\"url\":\"https:\\/\\/www.facebook.com\\/cpnordic\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"da32d70\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/cpnordic\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.6,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"589cdcb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor6\"},\"icon_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"left\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5980, 640, '_edit_last', '1'),
(5981, 640, '_edit_lock', '1771067341:1'),
(5982, 640, '_wp_page_template', 'default'),
(5983, 640, 'site-sidebar-layout', 'no-sidebar'),
(5988, 640, 'theme-transparent-header-meta', 'default'),
(5985, 640, 'ast-site-content-layout', 'full-width-container'),
(5986, 640, 'site-content-style', 'default'),
(5987, 640, 'site-sidebar-style', 'default'),
(5989, 640, 'astra-migrate-meta-layouts', 'set'),
(5990, 642, '_edit_last', '1'),
(5991, 642, '_wp_page_template', 'default'),
(5992, 642, 'site-sidebar-layout', 'no-sidebar'),
(5997, 642, 'theme-transparent-header-meta', 'default'),
(5994, 642, 'ast-site-content-layout', 'full-width-container'),
(5995, 642, 'site-content-style', 'default'),
(5996, 642, 'site-sidebar-style', 'default'),
(5998, 642, 'astra-migrate-meta-layouts', 'set'),
(5999, 642, '_edit_lock', '1771067327:1'),
(6000, 644, '_menu_item_type', 'post_type'),
(6001, 644, '_menu_item_menu_item_parent', '25'),
(6002, 644, '_menu_item_object_id', '642'),
(6003, 644, '_menu_item_object', 'page'),
(6004, 644, '_menu_item_target', ''),
(6005, 644, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(6006, 644, '_menu_item_xfn', ''),
(6007, 644, '_menu_item_url', ''),
(6009, 645, '_menu_item_type', 'post_type'),
(6010, 645, '_menu_item_menu_item_parent', '25'),
(6011, 645, '_menu_item_object_id', '640'),
(6012, 645, '_menu_item_object', 'page'),
(6013, 645, '_menu_item_target', ''),
(6014, 645, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(6015, 645, '_menu_item_xfn', ''),
(6016, 645, '_menu_item_url', ''),
(6021, 23, '_wp_old_date', '2026-01-25'),
(6018, 21, '_wp_old_date', '2026-01-25'),
(6019, 25, '_wp_old_date', '2026-01-25'),
(6029, 646, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(6863, 723, '_elementor_page_settings', 'a:0:{}'),
(6043, 647, '_elementor_page_settings', 'a:0:{}'),
(6980, 734, '_elementor_pro_version', '3.34.2'),
(6981, 734, '_elementor_data', '[{\"id\":\"54f9a2a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"12f2944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"af763fd\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h5\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"2dc1012\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h5\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"2580a94\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h5\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"0ecc0a0\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h5\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"780d3ea\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\",\"id\":408,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"title_tag\":\"h5\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"d093334\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\",\"id\":411,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Specialtilpassede l\\u00f8sninger\",\"title_tag\":\"h5\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"1dfdaf6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8dece08\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"093a473\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f0c229\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"d6cadf7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}]},\"elements\":[{\"id\":\"06daa19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"348d6fc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"89c6a77\",\"elType\":\"widget\",\"settings\":{\"title\":\"Terrasser\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b8459\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Terrasser er et af vores kerneomr\\u00e5der. Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5 korrekt opbygning, stabilitet og finish, da det er afg\\u00f8rende for b\\u00e5de holdbarhed og udseende.<\\/p><p>Vi arbejder gerne med h\\u00e5rdttr\\u00e6sterrasser og foretr\\u00e6kker tr\\u00e6sorter som cumaru, ip\\u00e9 og thermobehandlet tr\\u00e6, da disse materialer har:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bad2068\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"h\\u00f8j naturlig holdbarhed\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"god modstandsdygtighed over for fugt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"et flot og tidl\\u00f8st udtryk\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f7f5cc7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Med korrekt montage giver disse tr\\u00e6sorter terrasser, der \\u00e6ldes p\\u00e6nt og kr\\u00e6ver minimal vedligeholdelse.<\\/p><p>Vi r\\u00e5dgiver altid om materialevalg, opbygning og vedligeholdelse, s\\u00e5 l\\u00f8sningen passer til b\\u00e5de huset, omgivelserne og kundens behov.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(4973, 545, '_elementor_edit_mode', 'builder'),
(4974, 545, '_elementor_template_type', 'wp-page'),
(4975, 545, '_elementor_version', '3.34.2'),
(4976, 545, '_elementor_pro_version', '3.34.2'),
(4977, 545, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4978, 545, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}],\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\"}},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23428e4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Byggeri \\u2013 T\\u00f8mrerarbejde og tagd\\u00e6kning\",\"header_size\":\"h4\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"pp_display_conditions\":[{\"_id\":\"b159f8d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\",\"id\":57,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle ANMELDELSER\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]}},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"HVORFOR V\\u00c6LGE CP NORDIC ApS?\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79206f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>N\\u00e5r du v\\u00e6lger CP NORDIC ApS, f\\u00e5r du:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"44023b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/teamwork_4546121.svg\",\"id\":472},\"library\":\"svg\"},\"title_text\":\"et ungt og engageret team\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/effective_1401921.svg\",\"id\":474},\"library\":\"svg\"},\"title_text\":\"fokus p\\u00e5 kvalitet og detaljer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/communication_18765280.svg\",\"id\":479},\"library\":\"svg\"},\"title_text\":\"\\u00e6rlig<br> r\\u00e5dgivning\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/brainstorming_11663441.svg\",\"id\":480},\"library\":\"svg\"},\"title_text\":\"gennemt\\u00e6nkte l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c0f2190\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"327bd23\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/like_3941426.svg\",\"id\":481},\"library\":\"svg\"},\"title_text\":\"arbejde udf\\u00f8rt med ansvar\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2bc9769\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi lover ikke mere, end vi kan holde \\u2013 men vi holder det, vi lover.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2a1d8fc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6323910b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor8\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/wood-background-1-e1738912619419.jpg\",\"id\":510,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]}},\"elements\":[{\"id\":\"640d38eb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"75253fe5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"641310a\",\"elType\":\"widget\",\"settings\":{\"title\":\"KONTAKT OS\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee94578\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fea00\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68d73b3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14202595\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Name\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"tel\",\"field_label\":\"Phone\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\"},{\"field_type\":\"select\",\"field_label\":\"Services Name\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Messages\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor4\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_background_color\":\"#494949CC\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"mark_required\":\"yes\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4980, 545, '_elementor_page_settings', 'a:0:{}'),
(5939, 635, '_elementor_page_settings', 'a:0:{}'),
(5943, 636, '_elementor_edit_mode', 'builder'),
(5944, 636, '_elementor_template_type', 'wp-page'),
(5945, 636, '_elementor_version', '3.34.2'),
(5946, 636, '_elementor_pro_version', '3.34.2'),
(5947, 636, '_wp_page_template', 'default'),
(5948, 636, '_elementor_data', '[{\"id\":\"1e332a51\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1600399\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3f02c7e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"69bbd48\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9bbb579\",\"pp_condition_date_time_before_value\":\"2024-06-13 12:14\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"id\":\"\",\"url\":\"\"},\"background_position\":\"bottom right\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"\"},\"background_overlay_position\":\"top left\",\"background_overlay_attachment\":\"scroll\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"a4da8ee\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8791aed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe09348\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"935d9bd\"}],\"pp_display_conditions\":[{\"_id\":\"faf5fd2\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}]},\"elements\":[{\"id\":\"49d71336\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kontaktoplysninger\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"802d5d7\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"750c99c1\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"editor\":\"<p>Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid<br \\/>velkommen til at kontakte os for en uforpligtende snak.<\\/p>\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c93489c\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"33ff5776\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"def43cb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c8cfb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e7a215\"}],\"pp_display_conditions\":[{\"_id\":\"daade15\",\"pp_condition_date_time_before_value\":\"2024-06-13 12:14\"}],\"flex_direction\":\"row\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_direction_tablet\":\"row\",\"flex_justify_content\":\"center\",\"flex_justify_content_tablet\":\"space-around\",\"flex_wrap\":\"wrap\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"5414ae23\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ca201cd\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"7db42375\",\"elType\":\"widget\",\"settings\":{\"title\":\"Placering\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"470d48aa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Fyn, Denmark\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a2184f8\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5511ffdf\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"6b6d887e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":504,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/smartphone_230142.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"3676670c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ring til os\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d86beaa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"41 60 00 40\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:41600040\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ce5f04f\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"64f3768f\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"55c9290\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":505,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/email_542689.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"397a533e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Send os en email\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a6b4fdc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"kontakt@cp-nordic.dk\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a2184f8\",\"link\":{\"url\":\"mailto:kontakt@cp-nordic.dk\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\",\"content_width\":\"full\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1629e761\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"3f0b36ba\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"304a3dc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d9ec4b\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Name\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"tel\",\"field_label\":\"Phone\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\"},{\"field_type\":\"select\",\"field_label\":\"Services Name\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Messages\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Roboto\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"field_typography_font_weight\":\"400\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true},{\"id\":\"636e2bca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5f31bac\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"32a9521\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dea9376\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7ff945\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"54da3f3a\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title\":\"KONTAKT OS\",\"pp_display_conditions\":[{\"_id\":\"156b1a5\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align_mobile_extra\":\"center\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79c5eed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi d\\u00e6kker hele Fyn \\u2013 og tager ogs\\u00e5 gerne opgaver uden for omr\\u00e5det, n\\u00e5r der er tale om sp\\u00e6ndende eller teknisk kr\\u00e6vende l\\u00f8sninger.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e03db8a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c76d79\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"1a75682\",\"link\":{\"url\":\"https:\\/\\/www.facebook.com\\/cpnordic\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"da32d70\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/cpnordic\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.6,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"589cdcb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor6\"},\"icon_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"left\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5960, 637, '_elementor_page_settings', 'a:0:{}'),
(5962, 638, '_elementor_edit_mode', 'builder'),
(5963, 638, '_elementor_template_type', 'wp-page'),
(5964, 638, '_elementor_version', '3.34.2'),
(5965, 638, '_elementor_pro_version', '3.34.2'),
(5966, 638, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5967, 638, '_elementor_data', '[{\"id\":\"1e332a51\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1600399\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3f02c7e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"69bbd48\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9bbb579\",\"pp_condition_date_time_before_value\":\"2024-06-13 12:14\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"id\":\"\",\"url\":\"\"},\"background_position\":\"bottom right\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"\"},\"background_overlay_position\":\"top left\",\"background_overlay_attachment\":\"scroll\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"a4da8ee\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8791aed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe09348\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"935d9bd\"}],\"pp_display_conditions\":[{\"_id\":\"faf5fd2\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}]},\"elements\":[{\"id\":\"49d71336\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kontaktoplysninger\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"802d5d7\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"750c99c1\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"editor\":\"<p>Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid<br \\/>velkommen til at kontakte os for en uforpligtende snak.<\\/p>\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c93489c\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"33ff5776\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"def43cb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c8cfb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e7a215\"}],\"pp_display_conditions\":[{\"_id\":\"daade15\",\"pp_condition_date_time_before_value\":\"2024-06-13 12:14\"}],\"flex_direction\":\"row\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_direction_tablet\":\"row\",\"flex_justify_content\":\"center\",\"flex_justify_content_tablet\":\"space-around\",\"flex_wrap\":\"wrap\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"5414ae23\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ca201cd\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"7db42375\",\"elType\":\"widget\",\"settings\":{\"title\":\"Placering\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"470d48aa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Fyn, Denmark\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a2184f8\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5511ffdf\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"6b6d887e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":504,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/smartphone_230142.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"3676670c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ring til os\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d86beaa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"41 60 00 40\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:41600040\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ce5f04f\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"64f3768f\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"55c9290\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":505,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/email_542689.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"397a533e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Send os en email\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a6b4fdc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"kontakt@cp-nordic.dk\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a2184f8\",\"link\":{\"url\":\"mailto:kontakt@cp-nordic.dk\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\",\"content_width\":\"full\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1629e761\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"3f0b36ba\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"304a3dc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d9ec4b\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Name\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"tel\",\"field_label\":\"Phone\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\"},{\"field_type\":\"select\",\"field_label\":\"Services Name\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Messages\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Roboto\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"field_typography_font_weight\":\"400\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true},{\"id\":\"636e2bca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5f31bac\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"32a9521\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dea9376\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7ff945\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"54da3f3a\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title\":\"KONTAKT OS\",\"pp_display_conditions\":[{\"_id\":\"156b1a5\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align_mobile_extra\":\"center\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79c5eed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi d\\u00e6kker hele Fyn \\u2013 og tager ogs\\u00e5 gerne opgaver uden for omr\\u00e5det, n\\u00e5r der er tale om sp\\u00e6ndende eller teknisk kr\\u00e6vende l\\u00f8sninger.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e03db8a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c76d79\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"1a75682\",\"link\":{\"url\":\"https:\\/\\/www.facebook.com\\/cpnordic\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"da32d70\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/cpnordic\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.6,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"589cdcb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor6\"},\"icon_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"left\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5968, 638, '_elementor_page_settings', 'a:0:{}'),
(5970, 639, '_elementor_edit_mode', 'builder'),
(5971, 639, '_elementor_template_type', 'wp-page'),
(5972, 639, '_elementor_version', '3.34.2'),
(5973, 639, '_elementor_pro_version', '3.34.2'),
(5974, 639, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5975, 639, '_elementor_data', '[{\"id\":\"1e332a51\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1600399\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3f02c7e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"69bbd48\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9bbb579\",\"pp_condition_date_time_before_value\":\"2024-06-13 12:14\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"id\":\"\",\"url\":\"\"},\"background_position\":\"bottom right\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"\"},\"background_overlay_position\":\"top left\",\"background_overlay_attachment\":\"scroll\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"a4da8ee\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8791aed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe09348\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"935d9bd\"}],\"pp_display_conditions\":[{\"_id\":\"faf5fd2\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}]},\"elements\":[{\"id\":\"49d71336\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kontaktoplysninger\",\"align\":\"left\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"802d5d7\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"750c99c1\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"editor\":\"<p>Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid<br \\/>velkommen til at kontakte os for en uforpligtende snak.<\\/p>\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c93489c\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"33ff5776\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"def43cb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c8cfb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e7a215\"}],\"pp_display_conditions\":[{\"_id\":\"daade15\",\"pp_condition_date_time_before_value\":\"2024-06-13 12:14\"}],\"flex_direction\":\"row\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_direction_tablet\":\"row\",\"flex_justify_content\":\"center\",\"flex_justify_content_tablet\":\"space-around\",\"flex_wrap\":\"wrap\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"5414ae23\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ca201cd\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"7db42375\",\"elType\":\"widget\",\"settings\":{\"title\":\"Placering\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"470d48aa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Fyn, Denmark\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a2184f8\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5511ffdf\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"6b6d887e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":504,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/smartphone_230142.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"3676670c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ring til os\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d86beaa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"41 60 00 40\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:41600040\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ce5f04f\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"64f3768f\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"55c9290\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":505,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/email_542689.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"397a533e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Send os en email\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a6b4fdc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"kontakt@cp-nordic.dk\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a2184f8\",\"link\":{\"url\":\"mailto:kontakt@cp-nordic.dk\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\",\"content_width\":\"full\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1629e761\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"3f0b36ba\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"304a3dc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d9ec4b\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Name\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"tel\",\"field_label\":\"Phone\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\"},{\"field_type\":\"select\",\"field_label\":\"Services Name\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Messages\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Roboto\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"field_typography_font_weight\":\"400\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true},{\"id\":\"636e2bca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5f31bac\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"32a9521\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dea9376\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7ff945\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"54da3f3a\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title\":\"KONTAKT OS\",\"pp_display_conditions\":[{\"_id\":\"156b1a5\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align_mobile_extra\":\"center\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79c5eed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi d\\u00e6kker hele Fyn \\u2013 og tager ogs\\u00e5 gerne opgaver uden for omr\\u00e5det, n\\u00e5r der er tale om sp\\u00e6ndende eller teknisk kr\\u00e6vende l\\u00f8sninger.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e03db8a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c76d79\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"1a75682\",\"link\":{\"url\":\"https:\\/\\/www.facebook.com\\/cpnordic\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"da32d70\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/cpnordic\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.6,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"589cdcb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor6\"},\"icon_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"left\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6674, 709, '_elementor_edit_mode', 'builder'),
(6675, 709, '_elementor_template_type', 'wp-page'),
(6676, 709, '_elementor_version', '3.34.2'),
(6677, 709, '_elementor_pro_version', '3.34.2'),
(6678, 709, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6679, 709, '_elementor_data', '[{\"id\":\"1e332a51\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1600399\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3f02c7e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"69bbd48\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9bbb579\",\"pp_condition_date_time_before_value\":\"2024-06-13 12:14\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"id\":\"\",\"url\":\"\"},\"background_position\":\"bottom right\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"\"},\"background_overlay_position\":\"top left\",\"background_overlay_attachment\":\"scroll\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"a4da8ee\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8791aed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe09348\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"935d9bd\"}],\"pp_display_conditions\":[{\"_id\":\"faf5fd2\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}]},\"elements\":[{\"id\":\"49d71336\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kontaktoplysninger\",\"align\":\"left\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"802d5d7\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"750c99c1\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"editor\":\"<p>Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid<br \\/>velkommen til at kontakte os for en uforpligtende snak.<\\/p>\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c93489c\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"33ff5776\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"def43cb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c8cfb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e7a215\"}],\"pp_display_conditions\":[{\"_id\":\"daade15\",\"pp_condition_date_time_before_value\":\"2024-06-13 12:14\"}],\"flex_direction\":\"row\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_direction_tablet\":\"row\",\"flex_justify_content\":\"center\",\"flex_justify_content_tablet\":\"space-around\",\"flex_wrap\":\"wrap\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"5414ae23\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ca201cd\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"7db42375\",\"elType\":\"widget\",\"settings\":{\"title\":\"Placering\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"470d48aa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Fyn, Denmark\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a2184f8\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5511ffdf\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"6b6d887e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":504,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/smartphone_230142.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"3676670c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ring til os\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d86beaa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"41 60 00 40\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:41600040\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ce5f04f\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"64f3768f\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"55c9290\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":505,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/email_542689.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"397a533e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Send os en email\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a6b4fdc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"kontakt@cp-nordic.dk\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a2184f8\",\"link\":{\"url\":\"mailto:kontakt@cp-nordic.dk\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\",\"content_width\":\"full\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1629e761\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"3f0b36ba\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"304a3dc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d9ec4b\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Name\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"tel\",\"field_label\":\"Phone\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\"},{\"field_type\":\"select\",\"field_label\":\"Services Name\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Messages\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Roboto\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"field_typography_font_weight\":\"400\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true},{\"id\":\"636e2bca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5f31bac\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"32a9521\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dea9376\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7ff945\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"54da3f3a\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title\":\"KONTAKT OS\",\"pp_display_conditions\":[{\"_id\":\"156b1a5\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align_mobile_extra\":\"center\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79c5eed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi d\\u00e6kker hele Fyn \\u2013 og tager ogs\\u00e5 gerne opgaver uden for omr\\u00e5det, n\\u00e5r der er tale om sp\\u00e6ndende eller teknisk kr\\u00e6vende l\\u00f8sninger.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e03db8a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c76d79\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"1a75682\",\"link\":{\"url\":\"https:\\/\\/www.facebook.com\\/cpnordic\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"da32d70\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/cpnordic\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.6,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"589cdcb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor6\"},\"icon_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"left\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(4983, 546, '_elementor_edit_mode', 'builder'),
(4984, 546, '_elementor_template_type', 'wp-page'),
(4985, 546, '_elementor_version', '3.34.2'),
(4986, 546, '_elementor_pro_version', '3.34.2'),
(4987, 546, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4988, 546, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#111111\",\"background_overlay_color_b\":\"#000A66A3\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23428e4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Byggeri \\u2013 T\\u00f8mrerarbejde og tagd\\u00e6kning\",\"header_size\":\"h4\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"pp_display_conditions\":[{\"_id\":\"b159f8d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\",\"id\":57,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle ANMELDELSER\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]}},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"HVORFOR V\\u00c6LGE CP NORDIC ApS?\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79206f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>N\\u00e5r du v\\u00e6lger CP NORDIC ApS, f\\u00e5r du:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"44023b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/teamwork_4546121.svg\",\"id\":472},\"library\":\"svg\"},\"title_text\":\"et ungt og engageret team\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/effective_1401921.svg\",\"id\":474},\"library\":\"svg\"},\"title_text\":\"fokus p\\u00e5 kvalitet og detaljer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/communication_18765280.svg\",\"id\":479},\"library\":\"svg\"},\"title_text\":\"\\u00e6rlig<br> r\\u00e5dgivning\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/brainstorming_11663441.svg\",\"id\":480},\"library\":\"svg\"},\"title_text\":\"gennemt\\u00e6nkte l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c0f2190\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"327bd23\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/like_3941426.svg\",\"id\":481},\"library\":\"svg\"},\"title_text\":\"arbejde udf\\u00f8rt med ansvar\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2bc9769\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi lover ikke mere, end vi kan holde \\u2013 men vi holder det, vi lover.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2a1d8fc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6323910b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor8\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/wood-background-1-e1738912619419.jpg\",\"id\":510,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]}},\"elements\":[{\"id\":\"640d38eb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"75253fe5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"641310a\",\"elType\":\"widget\",\"settings\":{\"title\":\"KONTAKT OS\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee94578\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fea00\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68d73b3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14202595\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Name\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"tel\",\"field_label\":\"Phone\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\"},{\"field_type\":\"select\",\"field_label\":\"Services Name\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Messages\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor4\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_background_color\":\"#494949CC\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"mark_required\":\"yes\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5900, 632, '_elementor_edit_mode', 'builder'),
(5901, 632, '_elementor_template_type', 'wp-page'),
(5902, 632, '_elementor_version', '3.34.2'),
(5903, 632, '_elementor_pro_version', '3.34.2'),
(5904, 632, '_wp_page_template', 'default'),
(5905, 632, '_elementor_data', '[{\"id\":\"1e332a51\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1600399\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3f02c7e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"69bbd48\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9bbb579\",\"pp_condition_date_time_before_value\":\"2024-06-13 12:14\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"id\":\"\",\"url\":\"\"},\"background_position\":\"bottom right\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"\"},\"background_overlay_position\":\"top left\",\"background_overlay_attachment\":\"scroll\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"a4da8ee\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8791aed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe09348\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"935d9bd\"}],\"pp_display_conditions\":[{\"_id\":\"faf5fd2\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}]},\"elements\":[{\"id\":\"49d71336\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kontaktoplysninger\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"802d5d7\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"750c99c1\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"editor\":\"<p>Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid<br \\/>velkommen til at kontakte os for en uforpligtende snak.<\\/p>\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c93489c\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"33ff5776\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"def43cb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c8cfb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e7a215\"}],\"pp_display_conditions\":[{\"_id\":\"daade15\",\"pp_condition_date_time_before_value\":\"2024-06-13 12:14\"}],\"flex_direction\":\"row\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_direction_tablet\":\"row\",\"flex_justify_content\":\"center\",\"flex_justify_content_tablet\":\"space-around\",\"flex_wrap\":\"wrap\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"5414ae23\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ca201cd\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"7db42375\",\"elType\":\"widget\",\"settings\":{\"title\":\"Placering\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"470d48aa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Fyn, Denmark\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a2184f8\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5511ffdf\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"6b6d887e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":504,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/smartphone_230142.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"3676670c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ring til os\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d86beaa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"41 60 00 40\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:41600040\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ce5f04f\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"64f3768f\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"55c9290\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":505,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/email_542689.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"397a533e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Send os en email\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a6b4fdc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"kontakt@cp-nordic.dk\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a2184f8\",\"link\":{\"url\":\"mailto:kontakt@cp-nordic.dk\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\",\"content_width\":\"full\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1629e761\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"3f0b36ba\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"304a3dc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d9ec4b\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Name\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"tel\",\"field_label\":\"Phone\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\"},{\"field_type\":\"select\",\"field_label\":\"Services Name\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Messages\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Roboto\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"field_typography_font_weight\":\"400\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true},{\"id\":\"636e2bca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5f31bac\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"32a9521\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dea9376\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7ff945\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"54da3f3a\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title\":\"KONTAKT OS\",\"pp_display_conditions\":[{\"_id\":\"156b1a5\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align_mobile_extra\":\"center\",\"align\":\"left\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79c5eed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi d\\u00e6kker hele Fyn \\u2013 og tager ogs\\u00e5 gerne opgaver uden for omr\\u00e5det, n\\u00e5r der er tale om sp\\u00e6ndende eller teknisk kr\\u00e6vende l\\u00f8sninger.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e03db8a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5906, 632, '_elementor_page_settings', 'a:0:{}'),
(5910, 633, '_elementor_edit_mode', 'builder'),
(5911, 633, '_elementor_template_type', 'wp-page'),
(5912, 633, '_elementor_version', '3.34.2'),
(5913, 633, '_elementor_pro_version', '3.34.2'),
(5914, 633, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5915, 633, '_elementor_data', '[{\"id\":\"1e332a51\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1600399\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3f02c7e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"69bbd48\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9bbb579\",\"pp_condition_date_time_before_value\":\"2024-06-13 12:14\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"id\":\"\",\"url\":\"\"},\"background_position\":\"bottom right\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"\"},\"background_overlay_position\":\"top left\",\"background_overlay_attachment\":\"scroll\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"a4da8ee\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8791aed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe09348\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"935d9bd\"}],\"pp_display_conditions\":[{\"_id\":\"faf5fd2\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}]},\"elements\":[{\"id\":\"49d71336\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kontaktoplysninger\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"802d5d7\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"750c99c1\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"editor\":\"<p>Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid<br \\/>velkommen til at kontakte os for en uforpligtende snak.<\\/p>\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c93489c\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"33ff5776\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"def43cb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c8cfb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e7a215\"}],\"pp_display_conditions\":[{\"_id\":\"daade15\",\"pp_condition_date_time_before_value\":\"2024-06-13 12:14\"}],\"flex_direction\":\"row\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_direction_tablet\":\"row\",\"flex_justify_content\":\"center\",\"flex_justify_content_tablet\":\"space-around\",\"flex_wrap\":\"wrap\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"5414ae23\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ca201cd\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"7db42375\",\"elType\":\"widget\",\"settings\":{\"title\":\"Placering\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"470d48aa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Fyn, Denmark\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a2184f8\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5511ffdf\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"6b6d887e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":504,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/smartphone_230142.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"3676670c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ring til os\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d86beaa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"41 60 00 40\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:41600040\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ce5f04f\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"64f3768f\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"55c9290\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":505,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/email_542689.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"397a533e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Send os en email\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a6b4fdc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"kontakt@cp-nordic.dk\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a2184f8\",\"link\":{\"url\":\"mailto:kontakt@cp-nordic.dk\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\",\"content_width\":\"full\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1629e761\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"3f0b36ba\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"304a3dc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d9ec4b\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Name\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"tel\",\"field_label\":\"Phone\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\"},{\"field_type\":\"select\",\"field_label\":\"Services Name\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Messages\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Roboto\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"field_typography_font_weight\":\"400\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true},{\"id\":\"636e2bca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5f31bac\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"32a9521\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dea9376\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7ff945\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"54da3f3a\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title\":\"KONTAKT OS\",\"pp_display_conditions\":[{\"_id\":\"156b1a5\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align_mobile_extra\":\"center\",\"align\":\"left\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79c5eed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi d\\u00e6kker hele Fyn \\u2013 og tager ogs\\u00e5 gerne opgaver uden for omr\\u00e5det, n\\u00e5r der er tale om sp\\u00e6ndende eller teknisk kr\\u00e6vende l\\u00f8sninger.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e03db8a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c76d79\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"1a75682\",\"link\":{\"url\":\"https:\\/\\/www.facebook.com\\/cpnordic\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"da32d70\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/cpnordic\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.6,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"589cdcb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor6\"},\"icon_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"left\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6796, 717, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#111111\",\"background_overlay_color_b\":\"#000A66A3\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23428e4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Byggeri \\u2013 T\\u00f8mrerarbejde og tagd\\u00e6kning\",\"header_size\":\"h4\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"pp_display_conditions\":[{\"_id\":\"b159f8d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/kontakt\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"flex_direction_tablet\":\"column-reverse\",\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/om-os\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/tomrerarbejde\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\",\"flex_direction_tablet\":\"column\",\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\",\"id\":57,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"18631d2\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/tagdaekning\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}],\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle ANMELDELSER\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"HVORFOR V\\u00c6LGE CP NORDIC ApS?\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79206f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>N\\u00e5r du v\\u00e6lger CP NORDIC ApS, f\\u00e5r du:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"44023b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/teamwork_4546121.svg\",\"id\":472},\"library\":\"svg\"},\"title_text\":\"et ungt og engageret team\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/effective_1401921.svg\",\"id\":474},\"library\":\"svg\"},\"title_text\":\"fokus p\\u00e5 kvalitet og detaljer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/communication_18765280.svg\",\"id\":479},\"library\":\"svg\"},\"title_text\":\"\\u00e6rlig<br> r\\u00e5dgivning\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/brainstorming_11663441.svg\",\"id\":480},\"library\":\"svg\"},\"title_text\":\"gennemt\\u00e6nkte l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c0f2190\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"327bd23\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/like_3941426.svg\",\"id\":481},\"library\":\"svg\"},\"title_text\":\"arbejde udf\\u00f8rt med ansvar\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2bc9769\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi lover ikke mere, end vi kan holde \\u2013 men vi holder det, vi lover.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2a1d8fc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6323910b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor8\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/wood-background-1-e1738912619419.jpg\",\"id\":510,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]}},\"elements\":[{\"id\":\"640d38eb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"75253fe5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"641310a\",\"elType\":\"widget\",\"settings\":{\"title\":\"KONTAKT OS\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee94578\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fea00\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68d73b3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14202595\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Navn\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"tel\",\"field_label\":\"Telefon\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\"},{\"field_type\":\"select\",\"field_label\":\"Tjenesters navn\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Beskeder\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor4\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_background_color\":\"#383838CC\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Roboto\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"field_typography_font_weight\":\"400\",\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5954, 637, '_elementor_edit_mode', 'builder'),
(5955, 637, '_elementor_template_type', 'wp-page'),
(5956, 637, '_elementor_version', '3.34.2'),
(5957, 637, '_elementor_pro_version', '3.34.2'),
(5958, 637, '_wp_page_template', 'default'),
(5959, 637, '_elementor_data', '[{\"id\":\"1e332a51\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1600399\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3f02c7e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"69bbd48\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9bbb579\",\"pp_condition_date_time_before_value\":\"2024-06-13 12:14\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"id\":\"\",\"url\":\"\"},\"background_position\":\"bottom right\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"\"},\"background_overlay_position\":\"top left\",\"background_overlay_attachment\":\"scroll\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"a4da8ee\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8791aed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe09348\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"935d9bd\"}],\"pp_display_conditions\":[{\"_id\":\"faf5fd2\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}]},\"elements\":[{\"id\":\"49d71336\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kontaktoplysninger\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"802d5d7\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"750c99c1\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"editor\":\"<p>Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid<br \\/>velkommen til at kontakte os for en uforpligtende snak.<\\/p>\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c93489c\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"33ff5776\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"def43cb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c8cfb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e7a215\"}],\"pp_display_conditions\":[{\"_id\":\"daade15\",\"pp_condition_date_time_before_value\":\"2024-06-13 12:14\"}],\"flex_direction\":\"row\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_direction_tablet\":\"row\",\"flex_justify_content\":\"center\",\"flex_justify_content_tablet\":\"space-around\",\"flex_wrap\":\"wrap\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"5414ae23\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ca201cd\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"7db42375\",\"elType\":\"widget\",\"settings\":{\"title\":\"Placering\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"470d48aa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Fyn, Denmark\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a2184f8\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5511ffdf\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"6b6d887e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":504,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/smartphone_230142.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"3676670c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ring til os\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d86beaa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"41 60 00 40\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:41600040\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ce5f04f\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"64f3768f\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"55c9290\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":505,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/email_542689.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"397a533e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Send os en email\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a6b4fdc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"kontakt@cp-nordic.dk\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a2184f8\",\"link\":{\"url\":\"mailto:kontakt@cp-nordic.dk\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\",\"content_width\":\"full\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1629e761\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"3f0b36ba\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"304a3dc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d9ec4b\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Name\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"tel\",\"field_label\":\"Phone\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\"},{\"field_type\":\"select\",\"field_label\":\"Services Name\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Messages\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Roboto\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"field_typography_font_weight\":\"400\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true},{\"id\":\"636e2bca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5f31bac\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"32a9521\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dea9376\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7ff945\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"54da3f3a\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title\":\"KONTAKT OS\",\"pp_display_conditions\":[{\"_id\":\"156b1a5\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align_mobile_extra\":\"center\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79c5eed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi d\\u00e6kker hele Fyn \\u2013 og tager ogs\\u00e5 gerne opgaver uden for omr\\u00e5det, n\\u00e5r der er tale om sp\\u00e6ndende eller teknisk kr\\u00e6vende l\\u00f8sninger.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e03db8a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c76d79\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"1a75682\",\"link\":{\"url\":\"https:\\/\\/www.facebook.com\\/cpnordic\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"da32d70\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/cpnordic\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.6,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"589cdcb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor6\"},\"icon_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"left\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5929, 634, '_elementor_page_settings', 'a:0:{}'),
(5933, 635, '_elementor_edit_mode', 'builder'),
(5934, 635, '_elementor_template_type', 'wp-page'),
(5935, 635, '_elementor_version', '3.34.2'),
(5936, 635, '_elementor_pro_version', '3.34.2'),
(5937, 635, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5938, 635, '_elementor_data', '[{\"id\":\"1e332a51\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1600399\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3f02c7e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"69bbd48\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9bbb579\",\"pp_condition_date_time_before_value\":\"2024-06-13 12:14\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"id\":\"\",\"url\":\"\"},\"background_position\":\"bottom right\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"\"},\"background_overlay_position\":\"top left\",\"background_overlay_attachment\":\"scroll\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"a4da8ee\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8791aed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe09348\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"935d9bd\"}],\"pp_display_conditions\":[{\"_id\":\"faf5fd2\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}]},\"elements\":[{\"id\":\"49d71336\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kontaktoplysninger\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"802d5d7\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"750c99c1\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"editor\":\"<p>Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid<br \\/>velkommen til at kontakte os for en uforpligtende snak.<\\/p>\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c93489c\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"33ff5776\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"def43cb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c8cfb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e7a215\"}],\"pp_display_conditions\":[{\"_id\":\"daade15\",\"pp_condition_date_time_before_value\":\"2024-06-13 12:14\"}],\"flex_direction\":\"row\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_direction_tablet\":\"row\",\"flex_justify_content\":\"center\",\"flex_justify_content_tablet\":\"space-around\",\"flex_wrap\":\"wrap\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"5414ae23\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ca201cd\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"7db42375\",\"elType\":\"widget\",\"settings\":{\"title\":\"Placering\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"470d48aa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Fyn, Denmark\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a2184f8\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5511ffdf\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"6b6d887e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":504,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/smartphone_230142.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"3676670c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ring til os\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d86beaa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"41 60 00 40\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:41600040\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ce5f04f\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"64f3768f\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"55c9290\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":505,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/email_542689.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"397a533e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Send os en email\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a6b4fdc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"kontakt@cp-nordic.dk\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a2184f8\",\"link\":{\"url\":\"mailto:kontakt@cp-nordic.dk\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\",\"content_width\":\"full\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1629e761\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"3f0b36ba\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"304a3dc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d9ec4b\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Name\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"tel\",\"field_label\":\"Phone\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\"},{\"field_type\":\"select\",\"field_label\":\"Services Name\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Messages\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Roboto\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"field_typography_font_weight\":\"400\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true},{\"id\":\"636e2bca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5f31bac\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"32a9521\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dea9376\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7ff945\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"54da3f3a\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title\":\"KONTAKT OS\",\"pp_display_conditions\":[{\"_id\":\"156b1a5\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align_mobile_extra\":\"center\",\"align\":\"left\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79c5eed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi d\\u00e6kker hele Fyn \\u2013 og tager ogs\\u00e5 gerne opgaver uden for omr\\u00e5det, n\\u00e5r der er tale om sp\\u00e6ndende eller teknisk kr\\u00e6vende l\\u00f8sninger.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e03db8a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9c76d79\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"1a75682\",\"link\":{\"url\":\"https:\\/\\/www.facebook.com\\/cpnordic\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"da32d70\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/cpnordic\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.6,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"589cdcb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor6\"},\"icon_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"left\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5085, 554, '_elementor_edit_mode', 'builder'),
(5086, 554, '_elementor_template_type', 'wp-page'),
(5087, 554, '_elementor_version', '3.34.2'),
(5088, 554, '_elementor_pro_version', '3.34.2'),
(5089, 554, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5090, 554, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#111111\",\"background_overlay_color_b\":\"#000A66A3\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23428e4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Byggeri \\u2013 T\\u00f8mrerarbejde og tagd\\u00e6kning\",\"header_size\":\"h4\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"pp_display_conditions\":[{\"_id\":\"b159f8d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"flex_direction_tablet\":\"column-reverse\",\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\",\"id\":57,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle ANMELDELSER\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]}},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"HVORFOR V\\u00c6LGE CP NORDIC ApS?\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79206f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>N\\u00e5r du v\\u00e6lger CP NORDIC ApS, f\\u00e5r du:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"44023b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/teamwork_4546121.svg\",\"id\":472},\"library\":\"svg\"},\"title_text\":\"et ungt og engageret team\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/effective_1401921.svg\",\"id\":474},\"library\":\"svg\"},\"title_text\":\"fokus p\\u00e5 kvalitet og detaljer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/communication_18765280.svg\",\"id\":479},\"library\":\"svg\"},\"title_text\":\"\\u00e6rlig<br> r\\u00e5dgivning\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/brainstorming_11663441.svg\",\"id\":480},\"library\":\"svg\"},\"title_text\":\"gennemt\\u00e6nkte l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c0f2190\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"327bd23\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/like_3941426.svg\",\"id\":481},\"library\":\"svg\"},\"title_text\":\"arbejde udf\\u00f8rt med ansvar\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2bc9769\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi lover ikke mere, end vi kan holde \\u2013 men vi holder det, vi lover.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2a1d8fc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6323910b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor8\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/wood-background-1-e1738912619419.jpg\",\"id\":510,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]}},\"elements\":[{\"id\":\"640d38eb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"75253fe5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"641310a\",\"elType\":\"widget\",\"settings\":{\"title\":\"KONTAKT OS\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee94578\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fea00\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68d73b3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14202595\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Name\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"tel\",\"field_label\":\"Phone\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\"},{\"field_type\":\"select\",\"field_label\":\"Services Name\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Messages\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor4\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_background_color\":\"#494949CC\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"mark_required\":\"yes\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5003, 547, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(5027, 549, '_elementor_edit_mode', 'builder'),
(5028, 549, '_elementor_template_type', 'footer'),
(5029, 549, '_elementor_version', '3.34.2'),
(5030, 549, '_elementor_pro_version', '3.34.2'),
(5031, 549, '_wp_page_template', 'default'),
(5032, 549, '_elementor_data', '[{\"id\":\"3cf69bc7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"background_color\":\"#121212\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"flex_direction_tablet\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"56542ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ba59e70\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"65fd471\"}],\"pp_display_conditions\":[{\"_id\":\"890752a\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\"}]},\"elements\":[{\"id\":\"7d433401\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"boxed_width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e0467be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fba2414\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"86eef93\"}],\"pp_display_conditions\":[{\"_id\":\"892bbfe\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\"}],\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"100\",\"bottom\":\"10\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"flex_align_items_tablet\":\"center\"},\"elements\":[{\"id\":\"4b245e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/Transparent-File-02-scaled.png\",\"id\":49,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"3584c9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":240,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7a77842\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.<\\/p>\",\"align_tablet\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"text_color\":\"#F3F3F3\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":295,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"40edc0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3f1c0dda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"boxed_width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"boxed_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"wrap\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content_tablet\":\"center\",\"flex_align_items_tablet\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9cef852\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3267f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"568580d\"}],\"pp_display_conditions\":[{\"_id\":\"3b43c19\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\"}]},\"elements\":[{\"id\":\"25ffa917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick Links\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"97f1c92\",\"pp_condition_date_time_before_value\":\"2023-11-08 15:26\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\"}],\"align_tablet\":\"center\",\"align_mobile_extra\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"_element_width\":\"inherit\",\"typography_typography\":\"custom\",\"title_color\":\"#FFFFFF\",\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6373b647\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Hjem\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5dee041\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Tjenester\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"fdf1982\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/tjenester\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Referencer\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/referencer\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5076fdb\"},{\"text\":\"Om os\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/om-os\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1cdf804\"},{\"text\":\"Kontakt\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/kontakt\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"085decf\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"db62914\",\"pp_condition_date_time_before_value\":\"2023-11-08 15:26\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\"}],\"icon_align_tablet\":\"center\",\"icon_align_mobile_extra\":\"center\",\"__globals__\":{\"text_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=accent\"},\"text_color\":\"#E2E2E2\",\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_elements_tooltip_content\":\"Tooltip Content\",\"icon_typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7b991634\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ac9468\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f73d65c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e9fdb2\"}],\"pp_display_conditions\":[{\"_id\":\"6b3e2fa\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\"}]},\"elements\":[{\"id\":\"1dc7df4b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"97f1c92\",\"pp_condition_date_time_before_value\":\"2023-11-08 15:26\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\"}],\"align_tablet\":\"center\",\"align_mobile_extra\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"_element_width\":\"inherit\",\"title_color\":\"#FFFFFF\",\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45a55ad8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Fyn, Denmark\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"857a7bd\",\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"}},{\"text\":\"41 60 00 40\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:41600040\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f722a06\"},{\"text\":\"kontakt@cp-nordic.dk\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:kontakt@cp-nordic.dk\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f7076d3\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"db62914\",\"pp_condition_date_time_before_value\":\"2023-11-08 15:26\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\"}],\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align_tablet\":\"center\",\"icon_align_mobile_extra\":\"center\",\"icon_vertical_offset_mobile_extra\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_self_align_mobile_extra\":\"left\",\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=accent\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_vertical_offset_tablet\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"text_color\":\"#E2E2E2\",\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_elements_tooltip_content\":\"Tooltip Content\",\"icon_typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"d5ed30d\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"1a75682\",\"link\":{\"url\":\"https:\\/\\/www.facebook.com\\/cpnordic\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"da32d70\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/cpnordic\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.6,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"589cdcb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor6\"},\"icon_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"left\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5e55ea6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"flex_direction_tablet\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"56542ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ba59e70\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"65fd471\"}],\"pp_display_conditions\":[{\"_id\":\"890752a\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#222121\"},\"elements\":[{\"id\":\"543e7817\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"boxed_width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"boxed_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"wrap\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content_tablet\":\"center\",\"flex_align_items_tablet\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9cef852\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3267f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"568580d\"}],\"pp_display_conditions\":[{\"_id\":\"3b43c19\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"29e327ba\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u00a9 Copyright 2026 all rights reserved\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5dee041\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"db62914\",\"pp_condition_date_time_before_value\":\"2023-11-08 15:26\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"icon_align_tablet\":\"center\",\"icon_align_mobile_extra\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color_hover\":\"\"},\"text_color\":\"#FFFFFF\",\"pp_elements_tooltip_content\":\"Tooltip Content\",\"icon_typography_font_weight\":\"500\",\"view\":\"inline\",\"icon_align\":\"center\",\"icon_align_mobile\":\"center\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(5018, 548, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(5896, 631, '_elementor_page_settings', 'a:0:{}'),
(7159, 751, '_elementor_source', 'post'),
(7140, 750, '_elementor_source', 'post'),
(7141, 750, '_elementor_edit_mode', 'builder'),
(7142, 750, '_elementor_template_type', 'footer'),
(7143, 750, '_elementor_version', '3.34.2'),
(7144, 750, '_elementor_pro_version', '3.34.2'),
(7145, 750, '_wp_page_template', 'default'),
(7146, 750, '_elementor_data', '[{\"id\":\"3cf69bc7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"background_color\":\"#121212\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"flex_direction_tablet\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"56542ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ba59e70\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"65fd471\"}],\"pp_display_conditions\":[{\"_id\":\"890752a\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\"}]},\"elements\":[{\"id\":\"7d433401\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"boxed_width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e0467be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fba2414\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"86eef93\"}],\"pp_display_conditions\":[{\"_id\":\"892bbfe\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\"}],\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"100\",\"bottom\":\"10\",\"left\":\"100\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"flex_align_items_tablet\":\"center\"},\"elements\":[{\"id\":\"4b245e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/Transparent-File-02-scaled.png\",\"id\":49,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"3584c9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":240,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7a77842\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.<\\/p>\",\"align_tablet\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"text_color\":\"#F3F3F3\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":295,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"40edc0b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3f1c0dda\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":17,\"sizes\":[]},\"boxed_width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"boxed_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"wrap\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content_tablet\":\"center\",\"flex_align_items_tablet\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9cef852\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3267f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"568580d\"}],\"pp_display_conditions\":[{\"_id\":\"3b43c19\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\"}]},\"elements\":[{\"id\":\"25ffa917\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick Links\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"97f1c92\",\"pp_condition_date_time_before_value\":\"2023-11-08 15:26\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\"}],\"align_tablet\":\"center\",\"align_mobile_extra\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"_element_width\":\"inherit\",\"typography_typography\":\"custom\",\"title_color\":\"#FFFFFF\",\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6373b647\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Hjem\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5dee041\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Tjenester\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"fdf1982\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/tjenester\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Referencer\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/referencer\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5076fdb\"},{\"text\":\"Om os\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/om-os\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1cdf804\"},{\"text\":\"Kontakt\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/kontakt\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"085decf\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"db62914\",\"pp_condition_date_time_before_value\":\"2023-11-08 15:26\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\"}],\"icon_align_tablet\":\"center\",\"icon_align_mobile_extra\":\"center\",\"__globals__\":{\"text_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=accent\"},\"text_color\":\"#E2E2E2\",\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_elements_tooltip_content\":\"Tooltip Content\",\"icon_typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7b991634\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ac9468\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f73d65c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e9fdb2\"}],\"pp_display_conditions\":[{\"_id\":\"6b3e2fa\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\"}]},\"elements\":[{\"id\":\"1dc7df4b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"97f1c92\",\"pp_condition_date_time_before_value\":\"2023-11-08 15:26\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\"}],\"align_tablet\":\"center\",\"align_mobile_extra\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"_element_width\":\"inherit\",\"title_color\":\"#FFFFFF\",\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45a55ad8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"CP NORDIC ApS\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"857a7bd\",\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"}},{\"text\":\"41 60 00 40\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:41600040\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f722a06\"},{\"text\":\"kontakt@cp-nordic.dk\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:kontakt@cp-nordic.dk\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f7076d3\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"db62914\",\"pp_condition_date_time_before_value\":\"2023-11-08 15:26\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\"}],\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align_tablet\":\"center\",\"icon_align_mobile_extra\":\"center\",\"icon_vertical_offset_mobile_extra\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_self_align_mobile_extra\":\"left\",\"__globals__\":{\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=accent\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_vertical_offset_tablet\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"text_color\":\"#E2E2E2\",\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_elements_tooltip_content\":\"Tooltip Content\",\"icon_typography_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"d5ed30d\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"1a75682\",\"link\":{\"url\":\"https:\\/\\/www.facebook.com\\/cpnordic\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"da32d70\",\"link\":{\"url\":\"https:\\/\\/www.instagram.com\\/cpnordic\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.6,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"589cdcb\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor6\"},\"icon_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"left\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"23c37f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap_tablet\":\"wrap\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2ac9468\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f73d65c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e9fdb2\"}],\"pp_display_conditions\":[{\"_id\":\"6b3e2fa\",\"pp_condition_date_value\":\"2024-07-25 to 2024-07-31\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\"}]},\"elements\":[{\"id\":\"4bb313b\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"pp_display_conditions\":[{\"_id\":\"c3942e1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5e55ea6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"flex_direction_tablet\":\"row\",\"flex_wrap_tablet\":\"wrap\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"56542ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ba59e70\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"65fd471\"}],\"pp_display_conditions\":[{\"_id\":\"890752a\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"__globals__\":{\"background_color\":\"\"},\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#222121\"},\"elements\":[{\"id\":\"543e7817\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"boxed_width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"boxed_width_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"boxed_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_wrap\":\"wrap\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content_tablet\":\"center\",\"flex_align_items_tablet\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9cef852\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a3267f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"568580d\"}],\"pp_display_conditions\":[{\"_id\":\"3b43c19\",\"pp_condition_date_time_before_value\":\"2024-07-31 13:47\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"29e327ba\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u00a9 Copyright 2026 all rights reserved\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5dee041\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"db62914\",\"pp_condition_date_time_before_value\":\"2023-11-08 15:26\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"icon_align_tablet\":\"center\",\"icon_align_mobile_extra\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color_hover\":\"\"},\"text_color\":\"#FFFFFF\",\"pp_elements_tooltip_content\":\"Tooltip Content\",\"icon_typography_font_weight\":\"500\",\"view\":\"inline\",\"icon_align\":\"center\",\"icon_align_mobile\":\"center\",\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(5033, 549, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(5061, 551, '_elementor_page_settings', 'a:0:{}'),
(5890, 631, '_elementor_edit_mode', 'builder'),
(5891, 631, '_elementor_template_type', 'wp-page'),
(5892, 631, '_elementor_version', '3.34.2'),
(5893, 631, '_elementor_pro_version', '3.34.2'),
(5894, 631, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5895, 631, '_elementor_data', '[{\"id\":\"1e332a51\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1600399\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3f02c7e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"69bbd48\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9bbb579\",\"pp_condition_date_time_before_value\":\"2024-06-13 12:14\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"id\":\"\",\"url\":\"\"},\"background_position\":\"bottom right\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"\"},\"background_overlay_position\":\"top left\",\"background_overlay_attachment\":\"scroll\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"a4da8ee\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8791aed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe09348\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"935d9bd\"}],\"pp_display_conditions\":[{\"_id\":\"faf5fd2\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}]},\"elements\":[{\"id\":\"49d71336\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kontaktoplysninger\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"802d5d7\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"750c99c1\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"editor\":\"<p>Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid<br \\/>velkommen til at kontakte os for en uforpligtende snak.<\\/p>\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c93489c\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"33ff5776\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"def43cb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c8cfb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e7a215\"}],\"pp_display_conditions\":[{\"_id\":\"daade15\",\"pp_condition_date_time_before_value\":\"2024-06-13 12:14\"}],\"flex_direction\":\"row\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_direction_tablet\":\"row\",\"flex_justify_content\":\"center\",\"flex_justify_content_tablet\":\"space-around\",\"flex_wrap\":\"wrap\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"5414ae23\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ca201cd\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"7db42375\",\"elType\":\"widget\",\"settings\":{\"title\":\"Placering\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"470d48aa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Fyn, Denmark\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a2184f8\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5511ffdf\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"6b6d887e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":504,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/smartphone_230142.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"3676670c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ring til os\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d86beaa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"41 60 00 40\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:41600040\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ce5f04f\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"64f3768f\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"55c9290\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":505,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/email_542689.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"397a533e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Send os en email\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a6b4fdc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"kontakt@cp-nordic.dk\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a2184f8\",\"link\":{\"url\":\"mailto:kontakt@cp-nordic.dk\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\",\"content_width\":\"full\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1629e761\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"3f0b36ba\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"304a3dc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d9ec4b\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Name\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"tel\",\"field_label\":\"Phone\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\"},{\"field_type\":\"select\",\"field_label\":\"Services Name\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Messages\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Roboto\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"field_typography_font_weight\":\"400\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true},{\"id\":\"636e2bca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5f31bac\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"32a9521\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dea9376\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7ff945\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"54da3f3a\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title\":\"KONTAKT OS\",\"pp_display_conditions\":[{\"_id\":\"156b1a5\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align_mobile_extra\":\"center\",\"align\":\"left\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79c5eed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi d\\u00e6kker hele Fyn \\u2013 og tager ogs\\u00e5 gerne opgaver uden for omr\\u00e5det, n\\u00e5r der er tale om sp\\u00e6ndende eller teknisk kr\\u00e6vende l\\u00f8sninger.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e03db8a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5863, 628, '_elementor_page_settings', 'a:0:{}'),
(6935, 730, '_elementor_edit_mode', 'builder'),
(6936, 730, '_elementor_template_type', 'wp-page'),
(6937, 730, '_elementor_version', '3.34.2'),
(6938, 730, '_elementor_pro_version', '3.34.2'),
(6939, 730, '_wp_page_template', 'default'),
(6940, 730, '_elementor_data', '[{\"id\":\"bc434c0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"85ae5f7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"329d021\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores tjenester\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"15f3e6c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"flex_direction_mobile_extra\":\"column\",\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20}},\"elements\":[{\"id\":\"1490168\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"968d8b2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"title_text\":\"T\\u00d8MRERARBEJDE\",\"description_text\":\"Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:\\n\\n\",\"title_size\":\"h4\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"662ea50\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/tomrerarbejde\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cc9bbae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"afb00f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"ef0f12b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"title_text\":\"TAGD\\u00c6KNING\",\"description_text\":\"Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.\",\"title_size\":\"h4\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"fc9e68b\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/tagdaekning\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cc9bbae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6942, 730, '_elementor_page_settings', 'a:0:{}'),
(6946, 731, '_elementor_template_type', 'wp-page'),
(6947, 731, '_elementor_version', '3.34.2'),
(6948, 731, '_elementor_pro_version', '3.34.2'),
(6949, 731, '_wp_page_template', 'default'),
(6950, 731, '_elementor_data', '[{\"id\":\"bc434c0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"85ae5f7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"329d021\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores tjenester\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"15f3e6c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"flex_direction_mobile_extra\":\"column\",\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20}},\"elements\":[{\"id\":\"1490168\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"968d8b2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"title_text\":\"T\\u00d8MRERARBEJDE\",\"description_text\":\"Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:\\n\\n\",\"title_size\":\"h4\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"662ea50\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/tomrerarbejde\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cc9bbae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"afb00f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"ef0f12b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"title_text\":\"TAGD\\u00c6KNING\",\"description_text\":\"Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.\",\"title_size\":\"h4\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"fc9e68b\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/tagdaekning\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cc9bbae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5867, 629, '_elementor_edit_mode', 'builder'),
(5868, 629, '_elementor_template_type', 'wp-page'),
(5869, 629, '_elementor_version', '3.34.2'),
(5870, 629, '_elementor_pro_version', '3.34.2'),
(5871, 629, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5872, 629, '_elementor_data', '[{\"id\":\"1e332a51\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1600399\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3f02c7e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"69bbd48\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9bbb579\",\"pp_condition_date_time_before_value\":\"2024-06-13 12:14\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"id\":\"\",\"url\":\"\"},\"background_position\":\"bottom right\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"\"},\"background_overlay_position\":\"top left\",\"background_overlay_attachment\":\"scroll\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"a4da8ee\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8791aed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe09348\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"935d9bd\"}],\"pp_display_conditions\":[{\"_id\":\"faf5fd2\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}]},\"elements\":[{\"id\":\"49d71336\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kontaktoplysninger\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"802d5d7\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"750c99c1\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"editor\":\"<p>Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid<br \\/>velkommen til at kontakte os for en uforpligtende snak.<\\/p>\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c93489c\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"33ff5776\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"def43cb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c8cfb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e7a215\"}],\"pp_display_conditions\":[{\"_id\":\"daade15\",\"pp_condition_date_time_before_value\":\"2024-06-13 12:14\"}],\"flex_direction\":\"row\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_direction_tablet\":\"row\",\"flex_justify_content\":\"center\",\"flex_justify_content_tablet\":\"space-around\",\"flex_wrap\":\"wrap\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"5414ae23\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ca201cd\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"7db42375\",\"elType\":\"widget\",\"settings\":{\"title\":\"Placering\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"470d48aa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Fyn, Denmark\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a2184f8\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5511ffdf\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"6b6d887e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":504,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/smartphone_230142.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"3676670c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ring til os\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d86beaa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"41 60 00 40\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:41600040\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ce5f04f\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"64f3768f\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"55c9290\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":505,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/email_542689.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"397a533e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Send os en email\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a6b4fdc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"kontakt@cp-nordic.dk\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a2184f8\",\"link\":{\"url\":\"mailto:kontakt@cp-nordic.dk\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\",\"content_width\":\"full\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1629e761\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"3f0b36ba\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"304a3dc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d9ec4b\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Name\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"tel\",\"field_label\":\"Phone\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\"},{\"field_type\":\"select\",\"field_label\":\"Services Name\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Messages\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Roboto\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"field_typography_font_weight\":\"400\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true},{\"id\":\"636e2bca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5f31bac\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"32a9521\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dea9376\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7ff945\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"54da3f3a\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title\":\"KONTAKT OS\",\"pp_display_conditions\":[{\"_id\":\"156b1a5\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align_mobile_extra\":\"center\",\"align\":\"left\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79c5eed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi d\\u00e6kker hele Fyn \\u2013 og tager ogs\\u00e5 gerne opgaver uden for omr\\u00e5det, n\\u00e5r der er tale om sp\\u00e6ndende eller teknisk kr\\u00e6vende l\\u00f8sninger.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e03db8a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5873, 629, '_elementor_page_settings', 'a:0:{}'),
(7006, 737, '_elementor_template_type', 'wp-page'),
(6989, 735, '_elementor_edit_mode', 'builder'),
(6990, 735, '_elementor_template_type', 'wp-page'),
(6991, 735, '_elementor_version', '3.34.2'),
(6992, 735, '_elementor_pro_version', '3.34.2'),
(6993, 735, '_wp_page_template', 'default'),
(6994, 735, '_elementor_data', '[{\"id\":\"bc434c0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"85ae5f7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"329d021\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores tjenester\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"15f3e6c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"flex_direction_mobile_extra\":\"column\",\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20}},\"elements\":[{\"id\":\"1490168\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"968d8b2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"title_text\":\"T\\u00d8MRERARBEJDE\",\"description_text\":\"Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:\\n\\n\",\"title_size\":\"h4\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"662ea50\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/tomrerarbejde\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cc9bbae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"afb00f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"ef0f12b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"title_text\":\"TAGD\\u00c6KNING\",\"description_text\":\"Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.\",\"title_size\":\"h4\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"fc9e68b\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/tagdaekning\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cc9bbae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6932, 729, '_elementor_page_settings', 'a:0:{}'),
(5877, 630, '_elementor_edit_mode', 'builder'),
(5878, 630, '_elementor_template_type', 'wp-page'),
(5879, 630, '_elementor_version', '3.34.2'),
(5880, 630, '_elementor_pro_version', '3.34.2'),
(5881, 630, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5882, 630, '_elementor_data', '[{\"id\":\"1e332a51\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1600399\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3f02c7e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"69bbd48\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9bbb579\",\"pp_condition_date_time_before_value\":\"2024-06-13 12:14\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"id\":\"\",\"url\":\"\"},\"background_position\":\"bottom right\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"\"},\"background_overlay_position\":\"top left\",\"background_overlay_attachment\":\"scroll\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"a4da8ee\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8791aed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe09348\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"935d9bd\"}],\"pp_display_conditions\":[{\"_id\":\"faf5fd2\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}]},\"elements\":[{\"id\":\"49d71336\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kontaktoplysninger\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"802d5d7\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"750c99c1\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"editor\":\"<p>Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid<br \\/>velkommen til at kontakte os for en uforpligtende snak.<\\/p>\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c93489c\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"33ff5776\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"def43cb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c8cfb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e7a215\"}],\"pp_display_conditions\":[{\"_id\":\"daade15\",\"pp_condition_date_time_before_value\":\"2024-06-13 12:14\"}],\"flex_direction\":\"row\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_direction_tablet\":\"row\",\"flex_justify_content\":\"center\",\"flex_justify_content_tablet\":\"space-around\",\"flex_wrap\":\"wrap\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"5414ae23\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ca201cd\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"7db42375\",\"elType\":\"widget\",\"settings\":{\"title\":\"Placering\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"470d48aa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Fyn, Denmark\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a2184f8\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5511ffdf\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"6b6d887e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":504,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/smartphone_230142.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"3676670c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ring til os\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d86beaa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"41 60 00 40\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:41600040\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ce5f04f\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"64f3768f\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"55c9290\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":505,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/email_542689.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"397a533e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Send os en email\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a6b4fdc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"kontakt@cp-nordic.dk\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a2184f8\",\"link\":{\"url\":\"mailto:kontakt@cp-nordic.dk\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\",\"content_width\":\"full\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1629e761\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"3f0b36ba\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"304a3dc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d9ec4b\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Name\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"tel\",\"field_label\":\"Phone\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\"},{\"field_type\":\"select\",\"field_label\":\"Services Name\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Messages\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Roboto\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"field_typography_font_weight\":\"400\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true},{\"id\":\"636e2bca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5f31bac\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"32a9521\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dea9376\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7ff945\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"54da3f3a\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title\":\"KONTAKT OS\",\"pp_display_conditions\":[{\"_id\":\"156b1a5\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align_mobile_extra\":\"center\",\"align\":\"left\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79c5eed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi d\\u00e6kker hele Fyn \\u2013 og tager ogs\\u00e5 gerne opgaver uden for omr\\u00e5det, n\\u00e5r der er tale om sp\\u00e6ndende eller teknisk kr\\u00e6vende l\\u00f8sninger.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e03db8a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(7266, 10, '_elementor_page_settings', 'a:0:{}'),
(7267, 10, '_elementor_controls_usage', 'a:11:{s:7:\"heading\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:13;s:11:\"header_size\";i:5;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:5:{s:5:\"align\";i:8;s:21:\"typography_typography\";i:4;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:3;}}s:8:\"advanced\";a:3:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:13;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:6;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:2;s:18:\"animation_duration\";i:2;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:2:{s:4:\"text\";i:5;s:4:\"link\";i:5;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:4;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}s:8:\"advanced\";a:3:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:5;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:2;s:18:\"animation_duration\";i:2;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:8:{s:13:\"content_width\";i:22;s:14:\"flex_direction\";i:13;s:10:\"min_height\";i:2;s:20:\"flex_justify_content\";i:8;s:5:\"width\";i:10;s:8:\"flex_gap\";i:8;s:9:\"flex_wrap\";i:1;s:11:\"boxed_width\";i:1;}}s:5:\"style\";a:4:{s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:31;}s:18:\"section_background\";a:8:{s:21:\"background_background\";i:13;s:28:\"background_slideshow_gallery\";i:1;s:16:\"background_color\";i:4;s:16:\"background_image\";i:2;s:19:\"background_position\";i:2;s:21:\"background_attachment\";i:2;s:17:\"background_repeat\";i:2;s:15:\"background_size\";i:2;}s:26:\"section_background_overlay\";a:4:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_color_b\";i:1;s:26:\"background_overlay_opacity\";i:1;}s:14:\"section_border\";a:5:{s:13:\"border_border\";i:5;s:12:\"border_width\";i:5;s:12:\"border_color\";i:5;s:26:\"box_shadow_box_shadow_type\";i:5;s:21:\"box_shadow_box_shadow\";i:5;}}s:8:\"advanced\";a:4:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:31;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:10;s:18:\"animation_duration\";i:10;}s:14:\"section_layout\";a:2:{s:7:\"padding\";i:15;s:11:\"css_classes\";i:2;}s:19:\"_section_responsive\";a:6:{s:15:\"hide_widescreen\";i:1;s:12:\"hide_desktop\";i:1;s:17:\"hide_tablet_extra\";i:1;s:11:\"hide_tablet\";i:1;s:17:\"hide_mobile_extra\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:10;s:8:\"drop_cap\";i:1;}}s:8:\"advanced\";a:2:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:10;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;}}s:8:\"advanced\";a:2:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:2;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:3;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:3;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}s:18:\"section_text_style\";a:4:{s:26:\"icon_typography_typography\";i:3;s:27:\"icon_typography_font_family\";i:3;s:27:\"icon_typography_font_weight\";i:3;s:25:\"icon_typography_font_size\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:3;}}}}s:14:\"call-to-action\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:18:\"section_main_image\";a:3:{s:4:\"skin\";i:4;s:8:\"bg_image\";i:4;s:13:\"bg_image_size\";i:4;}s:15:\"section_content\";a:4:{s:5:\"title\";i:4;s:9:\"title_tag\";i:4;s:11:\"description\";i:4;s:6:\"button\";i:4;}}s:5:\"style\";a:2:{s:9:\"box_style\";a:4:{s:10:\"min-height\";i:4;s:9:\"alignment\";i:4;s:17:\"vertical_position\";i:4;s:7:\"padding\";i:4;}s:21:\"section_content_style\";a:4:{s:27:\"title_typography_typography\";i:4;s:28:\"title_typography_font_family\";i:4;s:28:\"title_typography_font_weight\";i:4;s:13:\"title_spacing\";i:4;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:14:\"_element_width\";i:4;s:21:\"_element_custom_width\";i:4;}s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:4;}}}}s:7:\"gallery\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:8:\"settings\";a:6:{s:7:\"gallery\";i:1;s:9:\"galleries\";i:1;s:7:\"columns\";i:1;s:3:\"gap\";i:1;s:12:\"aspect_ratio\";i:1;s:20:\"thumbnail_image_size\";i:1;}}s:8:\"advanced\";a:2:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}}}}s:4:\"html\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:4:\"html\";i:2;}}s:8:\"advanced\";a:4:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:2;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}s:19:\"_section_responsive\";a:6:{s:15:\"hide_widescreen\";i:1;s:12:\"hide_desktop\";i:1;s:17:\"hide_tablet_extra\";i:1;s:11:\"hide_tablet\";i:1;s:17:\"hide_mobile_extra\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:4:{s:13:\"selected_icon\";i:5;s:10:\"title_text\";i:5;s:16:\"description_text\";i:5;s:10:\"title_size\";i:5;}}s:5:\"style\";a:3:{s:17:\"section_style_box\";a:2:{s:10:\"icon_space\";i:5;s:18:\"title_bottom_space\";i:5;}s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:5;}s:21:\"section_style_content\";a:3:{s:27:\"title_typography_typography\";i:5;s:28:\"title_typography_font_family\";i:5;s:28:\"title_typography_font_weight\";i:5;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:5;}}}}s:4:\"form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:4:{s:19:\"section_form_fields\";a:2:{s:11:\"form_fields\";i:1;s:10:\"input_size\";i:1;}s:15:\"section_buttons\";a:1:{s:11:\"button_size\";i:1;}s:13:\"section_email\";a:3:{s:13:\"form_metadata\";i:1;s:13:\"email_subject\";i:1;s:15:\"email_from_name\";i:1;}s:15:\"section_email_2\";a:2:{s:15:\"email_subject_2\";i:1;s:17:\"email_from_name_2\";i:1;}}s:8:\"advanced\";a:4:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:15:\"_section_border\";a:3:{s:14:\"_border_border\";i:1;s:13:\"_border_width\";i:1;s:13:\"_border_color\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_form_style\";a:7:{s:10:\"column_gap\";i:1;s:7:\"row_gap\";i:1;s:13:\"label_spacing\";i:1;s:27:\"label_typography_typography\";i:1;s:28:\"label_typography_font_family\";i:1;s:26:\"label_typography_font_size\";i:1;s:28:\"label_typography_font_weight\";i:1;}s:19:\"section_field_style\";a:6:{s:18:\"field_border_color\";i:1;s:19:\"field_border_radius\";i:1;s:27:\"field_typography_typography\";i:1;s:28:\"field_typography_font_family\";i:1;s:26:\"field_typography_font_size\";i:1;s:28:\"field_typography_font_weight\";i:1;}s:20:\"section_button_style\";a:3:{s:20:\"button_border_radius\";i:1;s:23:\"button_background_color\";i:1;s:29:\"button_background_hover_color\";i:1;}}}}}'),
(5064, 552, '_elementor_edit_mode', 'builder'),
(5065, 552, '_elementor_template_type', 'wp-page'),
(5066, 552, '_elementor_version', '3.34.2'),
(5067, 552, '_elementor_pro_version', '3.34.2'),
(5068, 552, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5069, 552, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#111111\",\"background_overlay_color_b\":\"#000A66A3\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23428e4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Byggeri \\u2013 T\\u00f8mrerarbejde og tagd\\u00e6kning\",\"header_size\":\"h4\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"pp_display_conditions\":[{\"_id\":\"b159f8d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\"},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}]},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\"},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\",\"id\":57,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle ANMELDELSER\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]}},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"HVORFOR V\\u00c6LGE CP NORDIC ApS?\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79206f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>N\\u00e5r du v\\u00e6lger CP NORDIC ApS, f\\u00e5r du:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"44023b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/teamwork_4546121.svg\",\"id\":472},\"library\":\"svg\"},\"title_text\":\"et ungt og engageret team\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/effective_1401921.svg\",\"id\":474},\"library\":\"svg\"},\"title_text\":\"fokus p\\u00e5 kvalitet og detaljer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/communication_18765280.svg\",\"id\":479},\"library\":\"svg\"},\"title_text\":\"\\u00e6rlig<br> r\\u00e5dgivning\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/brainstorming_11663441.svg\",\"id\":480},\"library\":\"svg\"},\"title_text\":\"gennemt\\u00e6nkte l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c0f2190\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"327bd23\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/like_3941426.svg\",\"id\":481},\"library\":\"svg\"},\"title_text\":\"arbejde udf\\u00f8rt med ansvar\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2bc9769\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi lover ikke mere, end vi kan holde \\u2013 men vi holder det, vi lover.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2a1d8fc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6323910b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor8\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/wood-background-1-e1738912619419.jpg\",\"id\":510,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]}},\"elements\":[{\"id\":\"640d38eb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"75253fe5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"641310a\",\"elType\":\"widget\",\"settings\":{\"title\":\"KONTAKT OS\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee94578\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fea00\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68d73b3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14202595\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Name\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"tel\",\"field_label\":\"Phone\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\"},{\"field_type\":\"select\",\"field_label\":\"Services Name\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Messages\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor4\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_background_color\":\"#494949CC\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"mark_required\":\"yes\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5071, 552, '_elementor_page_settings', 'a:0:{}'),
(5811, 624, '_elementor_edit_mode', 'builder'),
(5812, 624, '_elementor_template_type', 'wp-page'),
(5813, 624, '_elementor_version', '3.34.2'),
(5814, 624, '_elementor_pro_version', '3.34.2'),
(5815, 624, '_wp_page_template', 'default'),
(5816, 624, '_elementor_data', '[{\"id\":\"1e332a51\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1600399\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3f02c7e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"69bbd48\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9bbb579\",\"pp_condition_date_time_before_value\":\"2024-06-13 12:14\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"id\":\"\",\"url\":\"\"},\"background_position\":\"bottom right\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"\"},\"background_overlay_position\":\"top left\",\"background_overlay_attachment\":\"scroll\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"a4da8ee\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8791aed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe09348\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"935d9bd\"}],\"pp_display_conditions\":[{\"_id\":\"faf5fd2\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}]},\"elements\":[{\"id\":\"49d71336\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kontaktoplysninger\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"802d5d7\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"750c99c1\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"editor\":\"<p>Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid<br \\/>velkommen til at kontakte os for en uforpligtende snak.<\\/p>\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c93489c\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"33ff5776\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"def43cb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c8cfb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e7a215\"}],\"pp_display_conditions\":[{\"_id\":\"daade15\",\"pp_condition_date_time_before_value\":\"2024-06-13 12:14\"}],\"flex_direction\":\"row\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_direction_tablet\":\"row\",\"flex_justify_content\":\"center\",\"flex_justify_content_tablet\":\"space-around\",\"flex_wrap\":\"wrap\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"5414ae23\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ca201cd\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"7db42375\",\"elType\":\"widget\",\"settings\":{\"title\":\"Placering\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"470d48aa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Fyn, Denmark\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a2184f8\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5511ffdf\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"6b6d887e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":504,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/smartphone_230142.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"3676670c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ring til os\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d86beaa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"41 60 00 40\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:41600040\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ce5f04f\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"64f3768f\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"55c9290\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":505,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/email_542689.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"397a533e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Send os en email\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a6b4fdc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"kontakt@cp-nordic.dk\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a2184f8\",\"link\":{\"url\":\"mailto:kontakt@cp-nordic.dk\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\",\"content_width\":\"full\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1629e761\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"3f0b36ba\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"304a3dc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d9ec4b\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Name\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"tel\",\"field_label\":\"Phone\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\"},{\"field_type\":\"select\",\"field_label\":\"Services Name\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Messages\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Roboto\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"field_typography_font_weight\":\"400\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true},{\"id\":\"636e2bca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5f31bac\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"32a9521\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dea9376\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7ff945\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"54da3f3a\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title\":\"KONTAKT OS\",\"pp_display_conditions\":[{\"_id\":\"156b1a5\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align_mobile_extra\":\"center\",\"align\":\"left\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79c5eed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi d\\u00e6kker hele Fyn \\u2013 og tager ogs\\u00e5 gerne opgaver uden for omr\\u00e5det, n\\u00e5r der er tale om sp\\u00e6ndende eller teknisk kr\\u00e6vende l\\u00f8sninger.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e03db8a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5857, 628, '_elementor_edit_mode', 'builder'),
(5858, 628, '_elementor_template_type', 'wp-page'),
(5859, 628, '_elementor_version', '3.34.2'),
(5860, 628, '_elementor_pro_version', '3.34.2'),
(5861, 628, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5862, 628, '_elementor_data', '[{\"id\":\"1e332a51\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1600399\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3f02c7e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"69bbd48\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9bbb579\",\"pp_condition_date_time_before_value\":\"2024-06-13 12:14\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"id\":\"\",\"url\":\"\"},\"background_position\":\"bottom right\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"\"},\"background_overlay_position\":\"top left\",\"background_overlay_attachment\":\"scroll\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"a4da8ee\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8791aed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe09348\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"935d9bd\"}],\"pp_display_conditions\":[{\"_id\":\"faf5fd2\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}]},\"elements\":[{\"id\":\"49d71336\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kontaktoplysninger\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"802d5d7\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"750c99c1\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"editor\":\"<p>Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid<br \\/>velkommen til at kontakte os for en uforpligtende snak.<\\/p>\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c93489c\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"33ff5776\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"def43cb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c8cfb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e7a215\"}],\"pp_display_conditions\":[{\"_id\":\"daade15\",\"pp_condition_date_time_before_value\":\"2024-06-13 12:14\"}],\"flex_direction\":\"row\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_direction_tablet\":\"row\",\"flex_justify_content\":\"center\",\"flex_justify_content_tablet\":\"space-around\",\"flex_wrap\":\"wrap\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"5414ae23\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ca201cd\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"7db42375\",\"elType\":\"widget\",\"settings\":{\"title\":\"Placering\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"470d48aa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Fyn, Denmark\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a2184f8\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5511ffdf\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"6b6d887e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":504,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/smartphone_230142.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"3676670c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ring til os\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d86beaa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"41 60 00 40\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:41600040\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ce5f04f\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"64f3768f\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"55c9290\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":505,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/email_542689.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"397a533e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Send os en email\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a6b4fdc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"kontakt@cp-nordic.dk\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a2184f8\",\"link\":{\"url\":\"mailto:kontakt@cp-nordic.dk\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\",\"content_width\":\"full\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1629e761\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"3f0b36ba\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"304a3dc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d9ec4b\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Name\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"tel\",\"field_label\":\"Phone\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\"},{\"field_type\":\"select\",\"field_label\":\"Services Name\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Messages\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Roboto\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"field_typography_font_weight\":\"400\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true},{\"id\":\"636e2bca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5f31bac\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"32a9521\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dea9376\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7ff945\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"54da3f3a\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title\":\"KONTAKT OS\",\"pp_display_conditions\":[{\"_id\":\"156b1a5\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align_mobile_extra\":\"center\",\"align\":\"left\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79c5eed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi d\\u00e6kker hele Fyn \\u2013 og tager ogs\\u00e5 gerne opgaver uden for omr\\u00e5det, n\\u00e5r der er tale om sp\\u00e6ndende eller teknisk kr\\u00e6vende l\\u00f8sninger.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e03db8a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5830, 625, '_elementor_page_settings', 'a:0:{}'),
(6966, 733, '_wp_page_template', 'default'),
(6967, 733, '_elementor_edit_mode', 'builder'),
(6968, 733, '_elementor_template_type', 'wp-page'),
(6969, 733, '_elementor_version', '3.34.2'),
(6970, 733, '_elementor_pro_version', '3.34.2'),
(6971, 733, '_elementor_data', '[{\"id\":\"54f9a2a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"12f2944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"af763fd\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h5\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"2dc1012\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h5\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"2580a94\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h5\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"0ecc0a0\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h5\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"780d3ea\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\",\"id\":408,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"title_tag\":\"h5\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"d093334\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\",\"id\":411,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Specialtilpassede l\\u00f8sninger\",\"title_tag\":\"h5\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"1dfdaf6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8dece08\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"093a473\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f0c229\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"d6cadf7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}]},\"elements\":[{\"id\":\"06daa19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"348d6fc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"89c6a77\",\"elType\":\"widget\",\"settings\":{\"title\":\"Terrasser\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b8459\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Terrasser er et af vores kerneomr\\u00e5der. Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5 korrekt opbygning, stabilitet og finish, da det er afg\\u00f8rende for b\\u00e5de holdbarhed og udseende.<\\/p><p>Vi arbejder gerne med h\\u00e5rdttr\\u00e6sterrasser og foretr\\u00e6kker tr\\u00e6sorter som cumaru, ip\\u00e9 og thermobehandlet tr\\u00e6, da disse materialer har:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bad2068\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"h\\u00f8j naturlig holdbarhed\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"god modstandsdygtighed over for fugt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"et flot og tidl\\u00f8st udtryk\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f7f5cc7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Med korrekt montage giver disse tr\\u00e6sorter terrasser, der \\u00e6ldes p\\u00e6nt og kr\\u00e6ver minimal vedligeholdelse.<\\/p><p>Vi r\\u00e5dgiver altid om materialevalg, opbygning og vedligeholdelse, s\\u00e5 l\\u00f8sningen passer til b\\u00e5de huset, omgivelserne og kundens behov.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(6972, 733, '_elementor_page_settings', 'a:0:{}'),
(5834, 626, '_elementor_edit_mode', 'builder'),
(5835, 626, '_elementor_template_type', 'wp-page'),
(5836, 626, '_elementor_version', '3.34.2'),
(5837, 626, '_elementor_pro_version', '3.34.2'),
(5838, 626, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5839, 626, '_elementor_data', '[{\"id\":\"1e332a51\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1600399\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3f02c7e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"69bbd48\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9bbb579\",\"pp_condition_date_time_before_value\":\"2024-06-13 12:14\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"id\":\"\",\"url\":\"\"},\"background_position\":\"bottom right\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"\"},\"background_overlay_position\":\"top left\",\"background_overlay_attachment\":\"scroll\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"a4da8ee\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8791aed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe09348\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"935d9bd\"}],\"pp_display_conditions\":[{\"_id\":\"faf5fd2\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}]},\"elements\":[{\"id\":\"49d71336\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kontaktoplysninger\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"802d5d7\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"750c99c1\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"editor\":\"<p>Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid<br \\/>velkommen til at kontakte os for en uforpligtende snak.<\\/p>\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c93489c\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"33ff5776\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"def43cb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c8cfb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e7a215\"}],\"pp_display_conditions\":[{\"_id\":\"daade15\",\"pp_condition_date_time_before_value\":\"2024-06-13 12:14\"}],\"flex_direction\":\"row\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_direction_tablet\":\"row\",\"flex_justify_content\":\"center\",\"flex_justify_content_tablet\":\"space-around\",\"flex_wrap\":\"wrap\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"5414ae23\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ca201cd\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"7db42375\",\"elType\":\"widget\",\"settings\":{\"title\":\"Placering\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"470d48aa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Fyn, Denmark\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a2184f8\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5511ffdf\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"6b6d887e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":504,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/smartphone_230142.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"3676670c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ring til os\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d86beaa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"41 60 00 40\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:41600040\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ce5f04f\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"64f3768f\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"55c9290\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":505,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/email_542689.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"397a533e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Send os en email\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a6b4fdc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"kontakt@cp-nordic.dk\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a2184f8\",\"link\":{\"url\":\"mailto:kontakt@cp-nordic.dk\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\",\"content_width\":\"full\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1629e761\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"3f0b36ba\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"304a3dc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d9ec4b\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Name\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"tel\",\"field_label\":\"Phone\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\"},{\"field_type\":\"select\",\"field_label\":\"Services Name\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Messages\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Roboto\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"field_typography_font_weight\":\"400\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true},{\"id\":\"636e2bca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5f31bac\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"32a9521\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dea9376\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7ff945\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"54da3f3a\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title\":\"KONTAKT OS\",\"pp_display_conditions\":[{\"_id\":\"156b1a5\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align_mobile_extra\":\"center\",\"align\":\"left\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79c5eed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi d\\u00e6kker hele Fyn \\u2013 og tager ogs\\u00e5 gerne opgaver uden for omr\\u00e5det, n\\u00e5r der er tale om sp\\u00e6ndende eller teknisk kr\\u00e6vende l\\u00f8sninger.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e03db8a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5840, 626, '_elementor_page_settings', 'a:0:{}'),
(6962, 732, '_elementor_page_settings', 'a:0:{}'),
(5844, 627, '_elementor_edit_mode', 'builder'),
(5845, 627, '_elementor_template_type', 'wp-page'),
(5846, 627, '_elementor_version', '3.34.2'),
(5847, 627, '_elementor_pro_version', '3.34.2'),
(5848, 627, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5849, 627, '_elementor_data', '[{\"id\":\"1e332a51\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1600399\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3f02c7e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"69bbd48\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9bbb579\",\"pp_condition_date_time_before_value\":\"2024-06-13 12:14\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"id\":\"\",\"url\":\"\"},\"background_position\":\"bottom right\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"\"},\"background_overlay_position\":\"top left\",\"background_overlay_attachment\":\"scroll\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"a4da8ee\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8791aed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe09348\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"935d9bd\"}],\"pp_display_conditions\":[{\"_id\":\"faf5fd2\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}]},\"elements\":[{\"id\":\"49d71336\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kontaktoplysninger\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"802d5d7\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"750c99c1\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"editor\":\"<p>Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid<br \\/>velkommen til at kontakte os for en uforpligtende snak.<\\/p>\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c93489c\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"33ff5776\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"def43cb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c8cfb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e7a215\"}],\"pp_display_conditions\":[{\"_id\":\"daade15\",\"pp_condition_date_time_before_value\":\"2024-06-13 12:14\"}],\"flex_direction\":\"row\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_direction_tablet\":\"row\",\"flex_justify_content\":\"center\",\"flex_justify_content_tablet\":\"space-around\",\"flex_wrap\":\"wrap\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"5414ae23\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ca201cd\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"7db42375\",\"elType\":\"widget\",\"settings\":{\"title\":\"Placering\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"470d48aa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Fyn, Denmark\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a2184f8\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5511ffdf\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"6b6d887e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":504,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/smartphone_230142.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"3676670c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ring til os\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d86beaa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"41 60 00 40\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:41600040\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ce5f04f\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"64f3768f\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"55c9290\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":505,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/email_542689.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"397a533e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Send os en email\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a6b4fdc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"kontakt@cp-nordic.dk\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a2184f8\",\"link\":{\"url\":\"mailto:kontakt@cp-nordic.dk\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\",\"content_width\":\"full\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1629e761\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"3f0b36ba\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"304a3dc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d9ec4b\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Name\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"tel\",\"field_label\":\"Phone\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\"},{\"field_type\":\"select\",\"field_label\":\"Services Name\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Messages\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Roboto\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"field_typography_font_weight\":\"400\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true},{\"id\":\"636e2bca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5f31bac\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"32a9521\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dea9376\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7ff945\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"54da3f3a\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title\":\"KONTAKT OS\",\"pp_display_conditions\":[{\"_id\":\"156b1a5\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align_mobile_extra\":\"center\",\"align\":\"left\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79c5eed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi d\\u00e6kker hele Fyn \\u2013 og tager ogs\\u00e5 gerne opgaver uden for omr\\u00e5det, n\\u00e5r der er tale om sp\\u00e6ndende eller teknisk kr\\u00e6vende l\\u00f8sninger.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e03db8a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5101, 556, '_elementor_edit_mode', 'builder'),
(5102, 556, '_elementor_template_type', 'wp-page'),
(5103, 556, '_elementor_version', '3.34.2'),
(5104, 556, '_elementor_pro_version', '3.34.2'),
(5105, 556, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5106, 556, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#111111\",\"background_overlay_color_b\":\"#000A66A3\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23428e4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Byggeri \\u2013 T\\u00f8mrerarbejde og tagd\\u00e6kning\",\"header_size\":\"h4\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"pp_display_conditions\":[{\"_id\":\"b159f8d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"flex_direction_tablet\":\"column-reverse\",\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\",\"flex_direction_tablet\":\"column\",\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\",\"id\":57,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}],\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle ANMELDELSER\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"HVORFOR V\\u00c6LGE CP NORDIC ApS?\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79206f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>N\\u00e5r du v\\u00e6lger CP NORDIC ApS, f\\u00e5r du:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"44023b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/teamwork_4546121.svg\",\"id\":472},\"library\":\"svg\"},\"title_text\":\"et ungt og engageret team\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/effective_1401921.svg\",\"id\":474},\"library\":\"svg\"},\"title_text\":\"fokus p\\u00e5 kvalitet og detaljer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/communication_18765280.svg\",\"id\":479},\"library\":\"svg\"},\"title_text\":\"\\u00e6rlig<br> r\\u00e5dgivning\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/brainstorming_11663441.svg\",\"id\":480},\"library\":\"svg\"},\"title_text\":\"gennemt\\u00e6nkte l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c0f2190\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"327bd23\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/like_3941426.svg\",\"id\":481},\"library\":\"svg\"},\"title_text\":\"arbejde udf\\u00f8rt med ansvar\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2bc9769\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi lover ikke mere, end vi kan holde \\u2013 men vi holder det, vi lover.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2a1d8fc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6323910b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor8\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/wood-background-1-e1738912619419.jpg\",\"id\":510,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]}},\"elements\":[{\"id\":\"640d38eb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"75253fe5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"641310a\",\"elType\":\"widget\",\"settings\":{\"title\":\"KONTAKT OS\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee94578\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fea00\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68d73b3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14202595\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Name\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"tel\",\"field_label\":\"Phone\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\"},{\"field_type\":\"select\",\"field_label\":\"Services Name\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Messages\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor4\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_background_color\":\"#383838CC\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"mark_required\":\"yes\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5074, 553, '_elementor_edit_mode', 'builder'),
(5075, 553, '_elementor_template_type', 'wp-page'),
(5076, 553, '_elementor_version', '3.34.2'),
(5077, 553, '_elementor_pro_version', '3.34.2'),
(5078, 553, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5079, 553, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#111111\",\"background_overlay_color_b\":\"#000A66A3\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23428e4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Byggeri \\u2013 T\\u00f8mrerarbejde og tagd\\u00e6kning\",\"header_size\":\"h4\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"pp_display_conditions\":[{\"_id\":\"b159f8d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"flex_direction_tablet\":\"column-reverse\",\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\"},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\",\"id\":57,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}]},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"40e2721\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"625cd58\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"1abcd47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"636c9c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"90ae49d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03fb31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0efb113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9309af3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"be719a4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"92ffc97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"232acb2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"12470ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"8083936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1cfc871\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h3\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":496,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"c92306a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f906de5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"Totalrenoveringer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0aac52\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7d683e4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Tilbygninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3a12fbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"919b93a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Carporte\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e3c7b49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1fa81ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"b3e9c09\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"908bf67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Specialtilpassede l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e2866f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}]},\"elements\":[{\"id\":\"0d02aaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2c58a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4f2dae5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EAE4E1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"f647d0a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"015beae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roofing\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2d2226\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"25a430e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd4e5a9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof_18138482.svg\",\"id\":180},\"library\":\"svg\"},\"title_text\":\"Flat roofing \",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4458c49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"aaaac83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/roof-tiles_17257710.svg\",\"id\":182},\"library\":\"svg\"},\"title_text\":\"2-layer professionally welded roofing\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cef0cf8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"0ed0805\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/plant_13485754.svg\",\"id\":183},\"library\":\"svg\"},\"title_text\":\"Ready for sedum\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"93ef0b5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"\"}},\"elements\":[{\"id\":\"6bd3dee\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/solar-panel_3058086.svg\",\"id\":184},\"library\":\"svg\"},\"title_text\":\"Listed roofing on pitched roofs\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle ANMELDELSER\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]}},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"HVORFOR V\\u00c6LGE CP NORDIC ApS?\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79206f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>N\\u00e5r du v\\u00e6lger CP NORDIC ApS, f\\u00e5r du:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"44023b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/teamwork_4546121.svg\",\"id\":472},\"library\":\"svg\"},\"title_text\":\"et ungt og engageret team\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/effective_1401921.svg\",\"id\":474},\"library\":\"svg\"},\"title_text\":\"fokus p\\u00e5 kvalitet og detaljer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/communication_18765280.svg\",\"id\":479},\"library\":\"svg\"},\"title_text\":\"\\u00e6rlig<br> r\\u00e5dgivning\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/brainstorming_11663441.svg\",\"id\":480},\"library\":\"svg\"},\"title_text\":\"gennemt\\u00e6nkte l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c0f2190\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"327bd23\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/like_3941426.svg\",\"id\":481},\"library\":\"svg\"},\"title_text\":\"arbejde udf\\u00f8rt med ansvar\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2bc9769\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi lover ikke mere, end vi kan holde \\u2013 men vi holder det, vi lover.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2a1d8fc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6323910b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor8\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/wood-background-1-e1738912619419.jpg\",\"id\":510,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]}},\"elements\":[{\"id\":\"640d38eb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"75253fe5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"641310a\",\"elType\":\"widget\",\"settings\":{\"title\":\"KONTAKT OS\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee94578\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fea00\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68d73b3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14202595\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Name\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"tel\",\"field_label\":\"Phone\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\"},{\"field_type\":\"select\",\"field_label\":\"Services Name\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Messages\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor4\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_background_color\":\"#494949CC\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"mark_required\":\"yes\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5778, 620, '_elementor_page_settings', 'a:0:{}'),
(5780, 621, '_elementor_edit_mode', 'builder'),
(5781, 621, '_elementor_template_type', 'wp-page'),
(5782, 621, '_elementor_version', '3.34.2'),
(5783, 621, '_elementor_pro_version', '3.34.2'),
(5784, 621, '_wp_page_template', 'default'),
(5785, 621, '_elementor_data', '[{\"id\":\"1e332a51\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1600399\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3f02c7e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"69bbd48\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9bbb579\",\"pp_condition_date_time_before_value\":\"2024-06-13 12:14\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"id\":\"\",\"url\":\"\"},\"background_position\":\"bottom right\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"\"},\"background_overlay_position\":\"top left\",\"background_overlay_attachment\":\"scroll\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"a4da8ee\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8791aed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe09348\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"935d9bd\"}],\"pp_display_conditions\":[{\"_id\":\"faf5fd2\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}]},\"elements\":[{\"id\":\"49d71336\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kontaktoplysninger\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"802d5d7\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"750c99c1\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"editor\":\"<p>Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid<br \\/>velkommen til at kontakte os for en uforpligtende snak.<\\/p>\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c93489c\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"33ff5776\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"def43cb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c8cfb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e7a215\"}],\"pp_display_conditions\":[{\"_id\":\"daade15\",\"pp_condition_date_time_before_value\":\"2024-06-13 12:14\"}],\"flex_direction\":\"row\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_direction_tablet\":\"row\",\"flex_justify_content\":\"center\",\"flex_justify_content_tablet\":\"space-around\",\"flex_wrap\":\"wrap\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"5414ae23\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ca201cd\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"7db42375\",\"elType\":\"widget\",\"settings\":{\"title\":\"Placering\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"470d48aa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Fyn, Denmark\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a2184f8\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5511ffdf\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"6b6d887e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":504,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/smartphone_230142.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"3676670c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ring til os\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d86beaa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"41 60 00 40\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:41600040\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ce5f04f\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"64f3768f\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"55c9290\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":505,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/email_542689.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"397a533e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Send os en email\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a6b4fdc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"kontakt@cp-nordic.dk\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a2184f8\",\"link\":{\"url\":\"mailto:kontakt@cp-nordic.dk\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\",\"content_width\":\"full\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1629e761\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"3f0b36ba\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"304a3dc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d9ec4b\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Name\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"tel\",\"field_label\":\"Phone\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\"},{\"field_type\":\"select\",\"field_label\":\"Services Name\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Messages\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Roboto\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"field_typography_font_weight\":\"400\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true},{\"id\":\"636e2bca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5f31bac\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"32a9521\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dea9376\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7ff945\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"54da3f3a\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title\":\"KONTAKT OS\",\"pp_display_conditions\":[{\"_id\":\"156b1a5\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align_mobile_extra\":\"center\",\"align\":\"left\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79c5eed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi d\\u00e6kker hele Fyn \\u2013 og tager ogs\\u00e5 gerne opgaver uden for omr\\u00e5det, n\\u00e5r der er tale om sp\\u00e6ndende eller teknisk kr\\u00e6vende l\\u00f8sninger.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e03db8a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5791, 622, '_elementor_edit_mode', 'builder'),
(5792, 622, '_elementor_template_type', 'wp-page'),
(5793, 622, '_elementor_version', '3.34.2'),
(5794, 622, '_elementor_pro_version', '3.34.2'),
(5795, 622, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5796, 622, '_elementor_data', '[{\"id\":\"1e332a51\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1600399\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3f02c7e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"69bbd48\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9bbb579\",\"pp_condition_date_time_before_value\":\"2024-06-13 12:14\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"id\":\"\",\"url\":\"\"},\"background_position\":\"bottom right\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"\"},\"background_overlay_position\":\"top left\",\"background_overlay_attachment\":\"scroll\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"a4da8ee\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8791aed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe09348\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"935d9bd\"}],\"pp_display_conditions\":[{\"_id\":\"faf5fd2\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}]},\"elements\":[{\"id\":\"49d71336\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kontaktoplysninger\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"802d5d7\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"750c99c1\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"editor\":\"<p>Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid<br \\/>velkommen til at kontakte os for en uforpligtende snak.<\\/p>\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c93489c\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"33ff5776\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"def43cb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c8cfb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e7a215\"}],\"pp_display_conditions\":[{\"_id\":\"daade15\",\"pp_condition_date_time_before_value\":\"2024-06-13 12:14\"}],\"flex_direction\":\"row\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_direction_tablet\":\"row\",\"flex_justify_content\":\"center\",\"flex_justify_content_tablet\":\"space-around\",\"flex_wrap\":\"wrap\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"5414ae23\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ca201cd\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"7db42375\",\"elType\":\"widget\",\"settings\":{\"title\":\"Placering\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"470d48aa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Fyn, Denmark\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a2184f8\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5511ffdf\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"6b6d887e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":504,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/smartphone_230142.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"3676670c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ring til os\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d86beaa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"41 60 00 40\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:41600040\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ce5f04f\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"64f3768f\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"55c9290\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":505,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/email_542689.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"397a533e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Send os en email\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a6b4fdc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"kontakt@cp-nordic.dk\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a2184f8\",\"link\":{\"url\":\"mailto:kontakt@cp-nordic.dk\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\",\"content_width\":\"full\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1629e761\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"3f0b36ba\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"304a3dc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d9ec4b\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Name\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"tel\",\"field_label\":\"Phone\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\"},{\"field_type\":\"select\",\"field_label\":\"Services Name\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Messages\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Roboto\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"field_typography_font_weight\":\"400\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true},{\"id\":\"636e2bca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5f31bac\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"32a9521\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dea9376\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7ff945\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"54da3f3a\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title\":\"KONTAKT OS\",\"pp_display_conditions\":[{\"_id\":\"156b1a5\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align_mobile_extra\":\"center\",\"align\":\"left\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79c5eed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi d\\u00e6kker hele Fyn \\u2013 og tager ogs\\u00e5 gerne opgaver uden for omr\\u00e5det, n\\u00e5r der er tale om sp\\u00e6ndende eller teknisk kr\\u00e6vende l\\u00f8sninger.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e03db8a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5923, 634, '_elementor_edit_mode', 'builder'),
(5924, 634, '_elementor_template_type', 'wp-page'),
(5925, 634, '_elementor_version', '3.34.2'),
(5824, 625, '_elementor_edit_mode', 'builder'),
(5825, 625, '_elementor_template_type', 'wp-page'),
(5826, 625, '_elementor_version', '3.34.2'),
(5827, 625, '_elementor_pro_version', '3.34.2'),
(5828, 625, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5829, 625, '_elementor_data', '[{\"id\":\"1e332a51\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1600399\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3f02c7e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"69bbd48\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9bbb579\",\"pp_condition_date_time_before_value\":\"2024-06-13 12:14\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"id\":\"\",\"url\":\"\"},\"background_position\":\"bottom right\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"\"},\"background_overlay_position\":\"top left\",\"background_overlay_attachment\":\"scroll\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"a4da8ee\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8791aed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe09348\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"935d9bd\"}],\"pp_display_conditions\":[{\"_id\":\"faf5fd2\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}]},\"elements\":[{\"id\":\"49d71336\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kontaktoplysninger\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"802d5d7\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"750c99c1\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"editor\":\"<p>Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid<br \\/>velkommen til at kontakte os for en uforpligtende snak.<\\/p>\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c93489c\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"33ff5776\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"def43cb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c8cfb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e7a215\"}],\"pp_display_conditions\":[{\"_id\":\"daade15\",\"pp_condition_date_time_before_value\":\"2024-06-13 12:14\"}],\"flex_direction\":\"row\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_direction_tablet\":\"row\",\"flex_justify_content\":\"center\",\"flex_justify_content_tablet\":\"space-around\",\"flex_wrap\":\"wrap\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"5414ae23\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ca201cd\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"7db42375\",\"elType\":\"widget\",\"settings\":{\"title\":\"Placering\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"470d48aa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Fyn, Denmark\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a2184f8\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5511ffdf\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"6b6d887e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":504,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/smartphone_230142.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"3676670c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ring til os\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d86beaa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"41 60 00 40\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:41600040\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ce5f04f\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"64f3768f\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"55c9290\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":505,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/email_542689.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"397a533e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Send os en email\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a6b4fdc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"kontakt@cp-nordic.dk\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a2184f8\",\"link\":{\"url\":\"mailto:kontakt@cp-nordic.dk\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\",\"content_width\":\"full\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1629e761\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"3f0b36ba\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"304a3dc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d9ec4b\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Name\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"tel\",\"field_label\":\"Phone\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\"},{\"field_type\":\"select\",\"field_label\":\"Services Name\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Messages\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Roboto\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"field_typography_font_weight\":\"400\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true},{\"id\":\"636e2bca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5f31bac\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"32a9521\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dea9376\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7ff945\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"54da3f3a\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title\":\"KONTAKT OS\",\"pp_display_conditions\":[{\"_id\":\"156b1a5\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align_mobile_extra\":\"center\",\"align\":\"left\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79c5eed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi d\\u00e6kker hele Fyn \\u2013 og tager ogs\\u00e5 gerne opgaver uden for omr\\u00e5det, n\\u00e5r der er tale om sp\\u00e6ndende eller teknisk kr\\u00e6vende l\\u00f8sninger.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e03db8a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5797, 622, '_elementor_page_settings', 'a:0:{}'),
(7004, 736, '_elementor_page_settings', 'a:0:{}'),
(7007, 737, '_elementor_version', '3.34.2'),
(7008, 737, '_elementor_pro_version', '3.34.2'),
(7009, 737, '_wp_page_template', 'default'),
(7010, 737, '_elementor_data', '[{\"id\":\"bc434c0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"85ae5f7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"329d021\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores tjenester\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"15f3e6c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"flex_direction_mobile_extra\":\"column\",\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20}},\"elements\":[{\"id\":\"1490168\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"968d8b2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"title_text\":\"T\\u00d8MRERARBEJDE\",\"description_text\":\"Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:\\n\\n\",\"title_size\":\"h4\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"662ea50\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/tomrerarbejde\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cc9bbae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"afb00f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"ef0f12b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"title_text\":\"TAGD\\u00c6KNING\",\"description_text\":\"Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.\",\"title_size\":\"h4\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"fc9e68b\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/tagdaekning\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cc9bbae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(7012, 12, '_elementor_page_settings', 'a:0:{}'),
(7013, 12, '_elementor_controls_usage', 'a:4:{s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:5:{s:13:\"content_width\";i:4;s:5:\"width\";i:2;s:14:\"flex_direction\";i:2;s:20:\"flex_justify_content\";i:1;s:8:\"flex_gap\";i:1;}}s:5:\"style\";a:3:{s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:5;}s:18:\"section_background\";a:2:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;}s:14:\"section_border\";a:5:{s:13:\"border_border\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:26:\"box_shadow_box_shadow_type\";i:2;s:21:\"box_shadow_box_shadow\";i:2;}}s:8:\"advanced\";a:3:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:5;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:2;s:18:\"animation_duration\";i:2;}s:14:\"section_layout\";a:1:{s:7:\"padding\";i:3;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:4:{s:13:\"selected_icon\";i:2;s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:10:\"title_size\";i:2;}}s:5:\"style\";a:3:{s:17:\"section_style_box\";a:2:{s:10:\"icon_space\";i:2;s:18:\"title_bottom_space\";i:2;}s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:2;}s:21:\"section_style_content\";a:3:{s:27:\"title_typography_typography\";i:2;s:28:\"title_typography_font_family\";i:2;s:28:\"title_typography_font_weight\";i:2;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:2;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:2:{s:4:\"text\";i:2;s:4:\"link\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:2;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:2;}}}}}'),
(5801, 623, '_elementor_edit_mode', 'builder'),
(5802, 623, '_elementor_template_type', 'wp-page'),
(5803, 623, '_elementor_version', '3.34.2'),
(5804, 623, '_elementor_pro_version', '3.34.2'),
(5805, 623, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5806, 623, '_elementor_data', '[{\"id\":\"1e332a51\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1600399\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3f02c7e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"69bbd48\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9bbb579\",\"pp_condition_date_time_before_value\":\"2024-06-13 12:14\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"id\":\"\",\"url\":\"\"},\"background_position\":\"bottom right\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"\"},\"background_overlay_position\":\"top left\",\"background_overlay_attachment\":\"scroll\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"a4da8ee\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8791aed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe09348\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"935d9bd\"}],\"pp_display_conditions\":[{\"_id\":\"faf5fd2\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}]},\"elements\":[{\"id\":\"49d71336\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kontaktoplysninger\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"802d5d7\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"750c99c1\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"editor\":\"<p>Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid<br \\/>velkommen til at kontakte os for en uforpligtende snak.<\\/p>\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c93489c\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"33ff5776\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"def43cb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c8cfb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e7a215\"}],\"pp_display_conditions\":[{\"_id\":\"daade15\",\"pp_condition_date_time_before_value\":\"2024-06-13 12:14\"}],\"flex_direction\":\"row\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_direction_tablet\":\"row\",\"flex_justify_content\":\"center\",\"flex_justify_content_tablet\":\"space-around\",\"flex_wrap\":\"wrap\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"5414ae23\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ca201cd\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"7db42375\",\"elType\":\"widget\",\"settings\":{\"title\":\"Placering\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"470d48aa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Fyn, Denmark\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a2184f8\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5511ffdf\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"6b6d887e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":504,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/smartphone_230142.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"3676670c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ring til os\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d86beaa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"41 60 00 40\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:41600040\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ce5f04f\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"64f3768f\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"55c9290\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":505,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/email_542689.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"397a533e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Send os en email\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a6b4fdc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"kontakt@cp-nordic.dk\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a2184f8\",\"link\":{\"url\":\"mailto:kontakt@cp-nordic.dk\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\",\"content_width\":\"full\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1629e761\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"3f0b36ba\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"304a3dc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d9ec4b\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Name\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"tel\",\"field_label\":\"Phone\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\"},{\"field_type\":\"select\",\"field_label\":\"Services Name\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Messages\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Roboto\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"field_typography_font_weight\":\"400\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true},{\"id\":\"636e2bca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5f31bac\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"32a9521\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dea9376\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7ff945\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"54da3f3a\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title\":\"KONTAKT OS\",\"pp_display_conditions\":[{\"_id\":\"156b1a5\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align_mobile_extra\":\"center\",\"align\":\"left\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79c5eed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi d\\u00e6kker hele Fyn \\u2013 og tager ogs\\u00e5 gerne opgaver uden for omr\\u00e5det, n\\u00e5r der er tale om sp\\u00e6ndende eller teknisk kr\\u00e6vende l\\u00f8sninger.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e03db8a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5807, 623, '_elementor_page_settings', 'a:0:{}'),
(6996, 735, '_elementor_page_settings', 'a:0:{}'),
(6997, 736, '_elementor_edit_mode', 'builder'),
(6998, 736, '_elementor_template_type', 'wp-page'),
(6999, 736, '_elementor_version', '3.34.2'),
(7000, 736, '_elementor_pro_version', '3.34.2'),
(7001, 736, '_wp_page_template', 'default'),
(7002, 736, '_elementor_data', '[{\"id\":\"bc434c0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"85ae5f7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"329d021\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores tjenester\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"15f3e6c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"flex_direction_mobile_extra\":\"column\",\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20}},\"elements\":[{\"id\":\"1490168\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"968d8b2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"title_text\":\"T\\u00d8MRERARBEJDE\",\"description_text\":\"Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:\\n\\n\",\"title_size\":\"h4\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"662ea50\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/tomrerarbejde\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cc9bbae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"afb00f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"ef0f12b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"title_text\":\"TAGD\\u00c6KNING\",\"description_text\":\"Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.\",\"title_size\":\"h4\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"fc9e68b\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/tagdaekning\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cc9bbae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5100, 555, '_elementor_page_settings', 'a:0:{}'),
(5126, 559, '_elementor_edit_mode', 'builder'),
(5110, 557, '_elementor_edit_mode', 'builder'),
(5111, 557, '_elementor_template_type', 'wp-page'),
(5112, 557, '_elementor_version', '3.34.2'),
(5113, 557, '_elementor_pro_version', '3.34.2'),
(5114, 557, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5115, 557, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#111111\",\"background_overlay_color_b\":\"#000A66A3\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23428e4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Byggeri \\u2013 T\\u00f8mrerarbejde og tagd\\u00e6kning\",\"header_size\":\"h4\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"pp_display_conditions\":[{\"_id\":\"b159f8d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"flex_direction_tablet\":\"column-reverse\",\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\",\"flex_direction_tablet\":\"column\",\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\",\"id\":57,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}],\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle ANMELDELSER\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"HVORFOR V\\u00c6LGE CP NORDIC ApS?\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79206f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>N\\u00e5r du v\\u00e6lger CP NORDIC ApS, f\\u00e5r du:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"44023b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/teamwork_4546121.svg\",\"id\":472},\"library\":\"svg\"},\"title_text\":\"et ungt og engageret team\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/effective_1401921.svg\",\"id\":474},\"library\":\"svg\"},\"title_text\":\"fokus p\\u00e5 kvalitet og detaljer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/communication_18765280.svg\",\"id\":479},\"library\":\"svg\"},\"title_text\":\"\\u00e6rlig<br> r\\u00e5dgivning\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/brainstorming_11663441.svg\",\"id\":480},\"library\":\"svg\"},\"title_text\":\"gennemt\\u00e6nkte l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c0f2190\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"327bd23\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/like_3941426.svg\",\"id\":481},\"library\":\"svg\"},\"title_text\":\"arbejde udf\\u00f8rt med ansvar\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2bc9769\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi lover ikke mere, end vi kan holde \\u2013 men vi holder det, vi lover.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2a1d8fc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6323910b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor8\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/wood-background-1-e1738912619419.jpg\",\"id\":510,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]}},\"elements\":[{\"id\":\"640d38eb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"75253fe5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"641310a\",\"elType\":\"widget\",\"settings\":{\"title\":\"KONTAKT OS\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee94578\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fea00\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68d73b3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14202595\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Name\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"tel\",\"field_label\":\"Phone\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\"},{\"field_type\":\"select\",\"field_label\":\"Services Name\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Messages\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor4\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_background_color\":\"#383838CC\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"mark_required\":\"yes\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5117, 557, '_elementor_page_settings', 'a:0:{}'),
(5118, 558, '_elementor_edit_mode', 'builder'),
(5119, 558, '_elementor_template_type', 'wp-page'),
(5120, 558, '_elementor_version', '3.34.2'),
(5121, 558, '_elementor_pro_version', '3.34.2'),
(5122, 558, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5123, 558, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#111111\",\"background_overlay_color_b\":\"#000A66A3\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23428e4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Byggeri \\u2013 T\\u00f8mrerarbejde og tagd\\u00e6kning\",\"header_size\":\"h4\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"pp_display_conditions\":[{\"_id\":\"b159f8d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"flex_direction_tablet\":\"column-reverse\",\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\",\"flex_direction_tablet\":\"column\",\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\",\"id\":57,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}],\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle ANMELDELSER\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"HVORFOR V\\u00c6LGE CP NORDIC ApS?\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79206f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>N\\u00e5r du v\\u00e6lger CP NORDIC ApS, f\\u00e5r du:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"44023b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/teamwork_4546121.svg\",\"id\":472},\"library\":\"svg\"},\"title_text\":\"et ungt og engageret team\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/effective_1401921.svg\",\"id\":474},\"library\":\"svg\"},\"title_text\":\"fokus p\\u00e5 kvalitet og detaljer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/communication_18765280.svg\",\"id\":479},\"library\":\"svg\"},\"title_text\":\"\\u00e6rlig<br> r\\u00e5dgivning\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/brainstorming_11663441.svg\",\"id\":480},\"library\":\"svg\"},\"title_text\":\"gennemt\\u00e6nkte l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c0f2190\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"327bd23\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/like_3941426.svg\",\"id\":481},\"library\":\"svg\"},\"title_text\":\"arbejde udf\\u00f8rt med ansvar\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2bc9769\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi lover ikke mere, end vi kan holde \\u2013 men vi holder det, vi lover.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2a1d8fc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6323910b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor8\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/wood-background-1-e1738912619419.jpg\",\"id\":510,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]}},\"elements\":[{\"id\":\"640d38eb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"75253fe5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"641310a\",\"elType\":\"widget\",\"settings\":{\"title\":\"KONTAKT OS\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee94578\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fea00\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68d73b3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14202595\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Name\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"tel\",\"field_label\":\"Phone\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\"},{\"field_type\":\"select\",\"field_label\":\"Services Name\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Messages\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor4\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_background_color\":\"#383838CC\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"mark_required\":\"yes\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5125, 558, '_elementor_page_settings', 'a:0:{}'),
(5127, 559, '_elementor_template_type', 'wp-page'),
(5128, 559, '_elementor_version', '3.34.2'),
(5129, 559, '_elementor_pro_version', '3.34.2'),
(5130, 559, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5131, 559, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#111111\",\"background_overlay_color_b\":\"#000A66A3\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23428e4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Byggeri \\u2013 T\\u00f8mrerarbejde og tagd\\u00e6kning\",\"header_size\":\"h4\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"pp_display_conditions\":[{\"_id\":\"b159f8d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"flex_direction_tablet\":\"column-reverse\",\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\",\"flex_direction_tablet\":\"column\",\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\",\"id\":57,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}],\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle ANMELDELSER\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"HVORFOR V\\u00c6LGE CP NORDIC ApS?\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79206f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>N\\u00e5r du v\\u00e6lger CP NORDIC ApS, f\\u00e5r du:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"44023b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/teamwork_4546121.svg\",\"id\":472},\"library\":\"svg\"},\"title_text\":\"et ungt og engageret team\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/effective_1401921.svg\",\"id\":474},\"library\":\"svg\"},\"title_text\":\"fokus p\\u00e5 kvalitet og detaljer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/communication_18765280.svg\",\"id\":479},\"library\":\"svg\"},\"title_text\":\"\\u00e6rlig<br> r\\u00e5dgivning\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/brainstorming_11663441.svg\",\"id\":480},\"library\":\"svg\"},\"title_text\":\"gennemt\\u00e6nkte l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c0f2190\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"327bd23\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/like_3941426.svg\",\"id\":481},\"library\":\"svg\"},\"title_text\":\"arbejde udf\\u00f8rt med ansvar\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2bc9769\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi lover ikke mere, end vi kan holde \\u2013 men vi holder det, vi lover.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2a1d8fc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6323910b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor8\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/wood-background-1-e1738912619419.jpg\",\"id\":510,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]}},\"elements\":[{\"id\":\"640d38eb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"75253fe5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"641310a\",\"elType\":\"widget\",\"settings\":{\"title\":\"KONTAKT OS\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee94578\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fea00\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68d73b3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14202595\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Name\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"tel\",\"field_label\":\"Phone\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\"},{\"field_type\":\"select\",\"field_label\":\"Services Name\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Messages\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"md\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor4\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_background_color\":\"#383838CC\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"mark_required\":\"yes\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5151, 562, '_elementor_edit_mode', 'builder'),
(5135, 560, '_elementor_edit_mode', 'builder'),
(5136, 560, '_elementor_template_type', 'wp-page'),
(5137, 560, '_elementor_version', '3.34.2'),
(5138, 560, '_elementor_pro_version', '3.34.2'),
(5139, 560, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5140, 560, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#111111\",\"background_overlay_color_b\":\"#000A66A3\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23428e4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Byggeri \\u2013 T\\u00f8mrerarbejde og tagd\\u00e6kning\",\"header_size\":\"h4\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"pp_display_conditions\":[{\"_id\":\"b159f8d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"flex_direction_tablet\":\"column-reverse\",\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\",\"flex_direction_tablet\":\"column\",\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\",\"id\":57,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}],\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle ANMELDELSER\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"HVORFOR V\\u00c6LGE CP NORDIC ApS?\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79206f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>N\\u00e5r du v\\u00e6lger CP NORDIC ApS, f\\u00e5r du:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"44023b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/teamwork_4546121.svg\",\"id\":472},\"library\":\"svg\"},\"title_text\":\"et ungt og engageret team\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/effective_1401921.svg\",\"id\":474},\"library\":\"svg\"},\"title_text\":\"fokus p\\u00e5 kvalitet og detaljer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/communication_18765280.svg\",\"id\":479},\"library\":\"svg\"},\"title_text\":\"\\u00e6rlig<br> r\\u00e5dgivning\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/brainstorming_11663441.svg\",\"id\":480},\"library\":\"svg\"},\"title_text\":\"gennemt\\u00e6nkte l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c0f2190\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"327bd23\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/like_3941426.svg\",\"id\":481},\"library\":\"svg\"},\"title_text\":\"arbejde udf\\u00f8rt med ansvar\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2bc9769\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi lover ikke mere, end vi kan holde \\u2013 men vi holder det, vi lover.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2a1d8fc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6323910b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor8\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/wood-background-1-e1738912619419.jpg\",\"id\":510,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]}},\"elements\":[{\"id\":\"640d38eb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"75253fe5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"641310a\",\"elType\":\"widget\",\"settings\":{\"title\":\"KONTAKT OS\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee94578\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fea00\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68d73b3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14202595\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Name\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"tel\",\"field_label\":\"Phone\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\"},{\"field_type\":\"select\",\"field_label\":\"Services Name\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Messages\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"md\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor4\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_background_color\":\"#383838CC\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"mark_required\":\"yes\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5142, 560, '_elementor_page_settings', 'a:0:{}'),
(5143, 561, '_elementor_edit_mode', 'builder'),
(5144, 561, '_elementor_template_type', 'wp-page'),
(5145, 561, '_elementor_version', '3.34.2'),
(5146, 561, '_elementor_pro_version', '3.34.2'),
(5147, 561, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5148, 561, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#111111\",\"background_overlay_color_b\":\"#000A66A3\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23428e4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Byggeri \\u2013 T\\u00f8mrerarbejde og tagd\\u00e6kning\",\"header_size\":\"h4\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"pp_display_conditions\":[{\"_id\":\"b159f8d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"flex_direction_tablet\":\"column-reverse\",\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\",\"flex_direction_tablet\":\"column\",\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\",\"id\":57,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}],\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle ANMELDELSER\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"HVORFOR V\\u00c6LGE CP NORDIC ApS?\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79206f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>N\\u00e5r du v\\u00e6lger CP NORDIC ApS, f\\u00e5r du:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"44023b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/teamwork_4546121.svg\",\"id\":472},\"library\":\"svg\"},\"title_text\":\"et ungt og engageret team\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/effective_1401921.svg\",\"id\":474},\"library\":\"svg\"},\"title_text\":\"fokus p\\u00e5 kvalitet og detaljer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/communication_18765280.svg\",\"id\":479},\"library\":\"svg\"},\"title_text\":\"\\u00e6rlig<br> r\\u00e5dgivning\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/brainstorming_11663441.svg\",\"id\":480},\"library\":\"svg\"},\"title_text\":\"gennemt\\u00e6nkte l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c0f2190\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"327bd23\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/like_3941426.svg\",\"id\":481},\"library\":\"svg\"},\"title_text\":\"arbejde udf\\u00f8rt med ansvar\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2bc9769\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi lover ikke mere, end vi kan holde \\u2013 men vi holder det, vi lover.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2a1d8fc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6323910b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor8\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/wood-background-1-e1738912619419.jpg\",\"id\":510,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]}},\"elements\":[{\"id\":\"640d38eb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"75253fe5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"641310a\",\"elType\":\"widget\",\"settings\":{\"title\":\"KONTAKT OS\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee94578\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fea00\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68d73b3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14202595\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Name\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"tel\",\"field_label\":\"Phone\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\"},{\"field_type\":\"select\",\"field_label\":\"Services Name\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Messages\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"md\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor4\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_background_color\":\"#383838CC\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"mark_required\":\"yes\",\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5150, 561, '_elementor_page_settings', 'a:0:{}'),
(5152, 562, '_elementor_template_type', 'wp-page'),
(5153, 562, '_elementor_version', '3.34.2'),
(5154, 562, '_elementor_pro_version', '3.34.2'),
(5155, 562, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5156, 562, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#111111\",\"background_overlay_color_b\":\"#000A66A3\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23428e4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Byggeri \\u2013 T\\u00f8mrerarbejde og tagd\\u00e6kning\",\"header_size\":\"h4\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"pp_display_conditions\":[{\"_id\":\"b159f8d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"flex_direction_tablet\":\"column-reverse\",\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\",\"flex_direction_tablet\":\"column\",\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\",\"id\":57,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}],\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle ANMELDELSER\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"HVORFOR V\\u00c6LGE CP NORDIC ApS?\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79206f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>N\\u00e5r du v\\u00e6lger CP NORDIC ApS, f\\u00e5r du:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"44023b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/teamwork_4546121.svg\",\"id\":472},\"library\":\"svg\"},\"title_text\":\"et ungt og engageret team\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/effective_1401921.svg\",\"id\":474},\"library\":\"svg\"},\"title_text\":\"fokus p\\u00e5 kvalitet og detaljer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/communication_18765280.svg\",\"id\":479},\"library\":\"svg\"},\"title_text\":\"\\u00e6rlig<br> r\\u00e5dgivning\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/brainstorming_11663441.svg\",\"id\":480},\"library\":\"svg\"},\"title_text\":\"gennemt\\u00e6nkte l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c0f2190\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"327bd23\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/like_3941426.svg\",\"id\":481},\"library\":\"svg\"},\"title_text\":\"arbejde udf\\u00f8rt med ansvar\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2bc9769\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi lover ikke mere, end vi kan holde \\u2013 men vi holder det, vi lover.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2a1d8fc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6323910b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor8\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/wood-background-1-e1738912619419.jpg\",\"id\":510,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]}},\"elements\":[{\"id\":\"640d38eb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"75253fe5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"641310a\",\"elType\":\"widget\",\"settings\":{\"title\":\"KONTAKT OS\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee94578\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fea00\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68d73b3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14202595\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Name\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"tel\",\"field_label\":\"Phone\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\"},{\"field_type\":\"select\",\"field_label\":\"Services Name\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Messages\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"md\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor4\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_background_color\":\"#383838CC\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5160, 563, '_elementor_edit_mode', 'builder'),
(5161, 563, '_elementor_template_type', 'wp-page'),
(5162, 563, '_elementor_version', '3.34.2'),
(5163, 563, '_elementor_pro_version', '3.34.2'),
(5164, 563, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5165, 563, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#111111\",\"background_overlay_color_b\":\"#000A66A3\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23428e4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Byggeri \\u2013 T\\u00f8mrerarbejde og tagd\\u00e6kning\",\"header_size\":\"h4\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"pp_display_conditions\":[{\"_id\":\"b159f8d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"flex_direction_tablet\":\"column-reverse\",\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\",\"flex_direction_tablet\":\"column\",\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\",\"id\":57,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}],\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle ANMELDELSER\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"HVORFOR V\\u00c6LGE CP NORDIC ApS?\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79206f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>N\\u00e5r du v\\u00e6lger CP NORDIC ApS, f\\u00e5r du:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"44023b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/teamwork_4546121.svg\",\"id\":472},\"library\":\"svg\"},\"title_text\":\"et ungt og engageret team\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/effective_1401921.svg\",\"id\":474},\"library\":\"svg\"},\"title_text\":\"fokus p\\u00e5 kvalitet og detaljer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/communication_18765280.svg\",\"id\":479},\"library\":\"svg\"},\"title_text\":\"\\u00e6rlig<br> r\\u00e5dgivning\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/brainstorming_11663441.svg\",\"id\":480},\"library\":\"svg\"},\"title_text\":\"gennemt\\u00e6nkte l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c0f2190\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"327bd23\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/like_3941426.svg\",\"id\":481},\"library\":\"svg\"},\"title_text\":\"arbejde udf\\u00f8rt med ansvar\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2bc9769\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi lover ikke mere, end vi kan holde \\u2013 men vi holder det, vi lover.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2a1d8fc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6323910b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor8\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/wood-background-1-e1738912619419.jpg\",\"id\":510,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]}},\"elements\":[{\"id\":\"640d38eb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"75253fe5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"641310a\",\"elType\":\"widget\",\"settings\":{\"title\":\"KONTAKT OS\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee94578\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fea00\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68d73b3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14202595\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Name\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"tel\",\"field_label\":\"Phone\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\"},{\"field_type\":\"select\",\"field_label\":\"Services Name\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Messages\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"md\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor4\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_background_color\":\"#383838CC\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5167, 563, '_elementor_page_settings', 'a:0:{}'),
(5168, 564, '_elementor_edit_mode', 'builder'),
(5169, 564, '_elementor_template_type', 'wp-page'),
(5170, 564, '_elementor_version', '3.34.2'),
(5171, 564, '_elementor_pro_version', '3.34.2'),
(5172, 564, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5173, 564, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#111111\",\"background_overlay_color_b\":\"#000A66A3\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23428e4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Byggeri \\u2013 T\\u00f8mrerarbejde og tagd\\u00e6kning\",\"header_size\":\"h4\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"pp_display_conditions\":[{\"_id\":\"b159f8d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"flex_direction_tablet\":\"column-reverse\",\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\",\"flex_direction_tablet\":\"column\",\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\",\"id\":57,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}],\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle ANMELDELSER\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"HVORFOR V\\u00c6LGE CP NORDIC ApS?\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79206f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>N\\u00e5r du v\\u00e6lger CP NORDIC ApS, f\\u00e5r du:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"44023b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/teamwork_4546121.svg\",\"id\":472},\"library\":\"svg\"},\"title_text\":\"et ungt og engageret team\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/effective_1401921.svg\",\"id\":474},\"library\":\"svg\"},\"title_text\":\"fokus p\\u00e5 kvalitet og detaljer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/communication_18765280.svg\",\"id\":479},\"library\":\"svg\"},\"title_text\":\"\\u00e6rlig<br> r\\u00e5dgivning\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/brainstorming_11663441.svg\",\"id\":480},\"library\":\"svg\"},\"title_text\":\"gennemt\\u00e6nkte l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c0f2190\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"327bd23\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/like_3941426.svg\",\"id\":481},\"library\":\"svg\"},\"title_text\":\"arbejde udf\\u00f8rt med ansvar\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2bc9769\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi lover ikke mere, end vi kan holde \\u2013 men vi holder det, vi lover.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2a1d8fc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6323910b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor8\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/wood-background-1-e1738912619419.jpg\",\"id\":510,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]}},\"elements\":[{\"id\":\"640d38eb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"75253fe5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"641310a\",\"elType\":\"widget\",\"settings\":{\"title\":\"KONTAKT OS\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee94578\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fea00\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68d73b3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14202595\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Name\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"tel\",\"field_label\":\"Phone\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\"},{\"field_type\":\"select\",\"field_label\":\"Services Name\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Messages\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"md\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor4\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_background_color\":\"#383838CC\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5175, 564, '_elementor_page_settings', 'a:0:{}'),
(5176, 565, '_elementor_edit_mode', 'builder'),
(5177, 565, '_elementor_template_type', 'wp-page'),
(5178, 565, '_elementor_version', '3.34.2'),
(5179, 565, '_elementor_pro_version', '3.34.2'),
(5180, 565, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5181, 565, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#111111\",\"background_overlay_color_b\":\"#000A66A3\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23428e4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Byggeri \\u2013 T\\u00f8mrerarbejde og tagd\\u00e6kning\",\"header_size\":\"h4\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"pp_display_conditions\":[{\"_id\":\"b159f8d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"flex_direction_tablet\":\"column-reverse\",\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\",\"flex_direction_tablet\":\"column\",\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\",\"id\":57,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}],\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle ANMELDELSER\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"HVORFOR V\\u00c6LGE CP NORDIC ApS?\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79206f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>N\\u00e5r du v\\u00e6lger CP NORDIC ApS, f\\u00e5r du:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"44023b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/teamwork_4546121.svg\",\"id\":472},\"library\":\"svg\"},\"title_text\":\"et ungt og engageret team\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/effective_1401921.svg\",\"id\":474},\"library\":\"svg\"},\"title_text\":\"fokus p\\u00e5 kvalitet og detaljer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/communication_18765280.svg\",\"id\":479},\"library\":\"svg\"},\"title_text\":\"\\u00e6rlig<br> r\\u00e5dgivning\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/brainstorming_11663441.svg\",\"id\":480},\"library\":\"svg\"},\"title_text\":\"gennemt\\u00e6nkte l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c0f2190\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"327bd23\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/like_3941426.svg\",\"id\":481},\"library\":\"svg\"},\"title_text\":\"arbejde udf\\u00f8rt med ansvar\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2bc9769\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi lover ikke mere, end vi kan holde \\u2013 men vi holder det, vi lover.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2a1d8fc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6323910b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor8\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/wood-background-1-e1738912619419.jpg\",\"id\":510,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]}},\"elements\":[{\"id\":\"640d38eb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"75253fe5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"641310a\",\"elType\":\"widget\",\"settings\":{\"title\":\"KONTAKT OS\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee94578\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fea00\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68d73b3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14202595\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Name\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"tel\",\"field_label\":\"Phone\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\"},{\"field_type\":\"select\",\"field_label\":\"Services Name\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Messages\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor4\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_background_color\":\"#383838CC\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Roboto\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"field_typography_font_weight\":\"400\",\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5189, 566, '_elementor_edit_mode', 'builder'),
(5190, 566, '_elementor_template_type', 'wp-page'),
(5191, 566, '_elementor_version', '3.34.2'),
(5192, 566, '_elementor_pro_version', '3.34.2'),
(5193, 566, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5194, 566, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#111111\",\"background_overlay_color_b\":\"#000A66A3\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23428e4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Byggeri \\u2013 T\\u00f8mrerarbejde og tagd\\u00e6kning\",\"header_size\":\"h4\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"pp_display_conditions\":[{\"_id\":\"b159f8d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"flex_direction_tablet\":\"column-reverse\",\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\",\"flex_direction_tablet\":\"column\",\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\",\"id\":57,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}],\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle ANMELDELSER\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"HVORFOR V\\u00c6LGE CP NORDIC ApS?\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79206f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>N\\u00e5r du v\\u00e6lger CP NORDIC ApS, f\\u00e5r du:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"44023b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/teamwork_4546121.svg\",\"id\":472},\"library\":\"svg\"},\"title_text\":\"et ungt og engageret team\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/effective_1401921.svg\",\"id\":474},\"library\":\"svg\"},\"title_text\":\"fokus p\\u00e5 kvalitet og detaljer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/communication_18765280.svg\",\"id\":479},\"library\":\"svg\"},\"title_text\":\"\\u00e6rlig<br> r\\u00e5dgivning\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/brainstorming_11663441.svg\",\"id\":480},\"library\":\"svg\"},\"title_text\":\"gennemt\\u00e6nkte l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c0f2190\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"327bd23\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/like_3941426.svg\",\"id\":481},\"library\":\"svg\"},\"title_text\":\"arbejde udf\\u00f8rt med ansvar\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2bc9769\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi lover ikke mere, end vi kan holde \\u2013 men vi holder det, vi lover.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2a1d8fc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6323910b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor8\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/wood-background-1-e1738912619419.jpg\",\"id\":510,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]}},\"elements\":[{\"id\":\"640d38eb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"75253fe5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"641310a\",\"elType\":\"widget\",\"settings\":{\"title\":\"KONTAKT OS\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee94578\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fea00\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68d73b3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14202595\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Name\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"tel\",\"field_label\":\"Phone\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\"},{\"field_type\":\"select\",\"field_label\":\"Services Name\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Messages\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor4\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_background_color\":\"#383838CC\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Roboto\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"field_typography_font_weight\":\"400\",\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5410, 583, '_elementor_source', 'post'),
(5411, 583, '_elementor_edit_mode', 'builder'),
(5412, 583, '_elementor_template_type', 'header'),
(5413, 583, '_elementor_version', '3.34.2'),
(5414, 583, '_elementor_pro_version', '3.34.2'),
(5415, 583, '_wp_page_template', 'default'),
(5416, 583, '_elementor_data', '[{\"id\":\"67407e3b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2e8ba73\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f52efb8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"717f375\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"394af17\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"flex_wrap_mobile\":\"nowrap\",\"z_index\":1,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FCFCFC17\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-124\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"\"}},\"elements\":[{\"id\":\"341f8b74\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"33df9dc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bc7bdec\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"90e6e83\"}],\"pp_display_conditions\":[{\"_id\":\"3e37d22\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]}},\"elements\":[{\"id\":\"4cc70c2e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":49,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/Transparent-File-02-scaled.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"link_to\":\"custom\",\"space\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"ef1f052\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"7043833\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"space_mobile_extra\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"space_tablet_extra\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"29f8b7e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":80},\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"13efff7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"4ba59b9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9a413e\"}],\"pp_display_conditions\":[{\"_id\":\"6633050\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"flex_align_items\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"flex_direction_mobile\":\"row-reverse\",\"flex_justify_content_mobile\":\"flex-start\",\"flex_wrap_mobile\":\"nowrap\"},\"elements\":[{\"id\":\"55ad1095\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"pointer\":\"none\",\"toggle_label\":\"Menu\",\"pp_display_conditions\":[{\"_id\":\"6d90ae3\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"menu_type\":\"off-canvas\",\"toggle_align\":\"right\",\"toggle_background_color\":\"#02010100\",\"toggle_background_color_hover\":\"#02010100\",\"offcanvas_position\":\"right\",\"close_icon_background_color\":\"#02010100\",\"close_icon_background_color_hover\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_weight\":\"500\",\"__globals__\":{\"toggle_color\":\"globals\\/colors?id=astglobalcolor0\",\"toggle_color_hover\":\"globals\\/colors?id=astglobalcolor3\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor5\",\"mobile_sub_link_color\":\"globals\\/colors?id=astglobalcolor5\",\"mobile_sub_link_bg_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor5\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_hover\":\"globals\\/colors?id=astglobalcolor5\",\"close_icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"close_icon_color_hover\":\"globals\\/colors?id=astglobalcolor5\",\"color_menu_item\":\"globals\\/colors?id=astglobalcolor4\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor4\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor4\",\"color_dropdown_item\":\"globals\\/colors?id=astglobalcolor5\",\"background_color_dropdown_item\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor5\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor5\",\"background_color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"dropdown_divider_color\":\"\"},\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"menu_typography_text_transform\":\"uppercase\",\"menu_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"color_menu_item_hover\":\"#045cb4\",\"color_menu_item_active\":\"#045cb4\",\"color_dropdown_item\":\"#F0F5FA\",\"background_color_dropdown_item\":\"#046bd2\",\"color_dropdown_item_hover\":\"#F0F5FA\",\"background_color_dropdown_item_hover\":\"#045cb4\",\"color_dropdown_item_active\":\"#F0F5FA\",\"background_color_dropdown_item_active\":\"#045cb4\",\"dropdown_divider_border\":\"solid\",\"dropdown_divider_color\":\"#F0F5FA36\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"toggle_color\":\"#046bd2\",\"toggle_color_hover\":\"#334155\",\"overlay_bg_color\":\"#1e293b\",\"mobile_link_color\":\"#F0F5FA\",\"mobile_sub_link_bg_color\":\"#1e293b\",\"mobile_sub_link_color\":\"#F0F5FA\",\"mobile_link_hover\":\"#F0F5FA\",\"mobile_link_bg_hover\":\"#046bd2\",\"mobile_sub_link_bg_hover\":\"#046bd2\",\"mobile_sub_link_hover\":\"#F0F5FA\",\"close_icon_color\":\"#F0F5FA\",\"close_icon_color_hover\":\"#F0F5FA\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"toggle_size_mobile\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"4027936a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"730407e\",\"pp_condition_date_time_before_value\":\"2024-10-27 14:19\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"348be72f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f25b0fa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8462f23\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f25e330\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"pp_condition_key\":\"page\",\"pp_condition_operator\":\"not\",\"_id\":\"eda4653\",\"pp_condition_page_value\":[\"10\"],\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"\"},\"background_overlay_color\":\"#48aaad\",\"background_overlay_color_b\":\"#1E293B0A\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":179,\"sizes\":[]},\"css_classes\":\"header-breadcrumbs-section\",\"pp_display_conditions_enable\":\"yes\"},\"elements\":[{\"id\":\"13f6f159\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"page-title\\\" settings=\\\"%7B%22include_context%22%3A%22%22%2C%22show_home_title%22%3A%22%22%2C%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3b30e8f\",\"pp_condition_date_time_before_value\":\"2024-02-01 09:53\",\"pp_condition_date_value\":\"2025-08-29 to 2025-09-04\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"}],\"isInner\":false}]'),
(6058, 649, '_elementor_template_type', 'wp-page'),
(6037, 647, '_elementor_edit_mode', 'builder'),
(6038, 647, '_elementor_template_type', 'wp-page'),
(6039, 647, '_elementor_version', '3.34.2'),
(6040, 647, '_elementor_pro_version', '3.34.2'),
(6041, 647, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6042, 647, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#111111\",\"background_overlay_color_b\":\"#000A66A3\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23428e4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Byggeri \\u2013 T\\u00f8mrerarbejde og tagd\\u00e6kning\",\"header_size\":\"h4\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"pp_display_conditions\":[{\"_id\":\"b159f8d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"flex_direction_tablet\":\"column-reverse\",\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\",\"flex_direction_tablet\":\"column\",\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\",\"id\":57,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}],\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle ANMELDELSER\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"HVORFOR V\\u00c6LGE CP NORDIC ApS?\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79206f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>N\\u00e5r du v\\u00e6lger CP NORDIC ApS, f\\u00e5r du:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"44023b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/teamwork_4546121.svg\",\"id\":472},\"library\":\"svg\"},\"title_text\":\"et ungt og engageret team\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/effective_1401921.svg\",\"id\":474},\"library\":\"svg\"},\"title_text\":\"fokus p\\u00e5 kvalitet og detaljer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/communication_18765280.svg\",\"id\":479},\"library\":\"svg\"},\"title_text\":\"\\u00e6rlig<br> r\\u00e5dgivning\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/brainstorming_11663441.svg\",\"id\":480},\"library\":\"svg\"},\"title_text\":\"gennemt\\u00e6nkte l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c0f2190\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"327bd23\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/like_3941426.svg\",\"id\":481},\"library\":\"svg\"},\"title_text\":\"arbejde udf\\u00f8rt med ansvar\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2bc9769\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi lover ikke mere, end vi kan holde \\u2013 men vi holder det, vi lover.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2a1d8fc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6323910b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor8\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/wood-background-1-e1738912619419.jpg\",\"id\":510,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]}},\"elements\":[{\"id\":\"640d38eb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"75253fe5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"641310a\",\"elType\":\"widget\",\"settings\":{\"title\":\"KONTAKT OS\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee94578\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fea00\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68d73b3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14202595\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Name\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"tel\",\"field_label\":\"Phone\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\"},{\"field_type\":\"select\",\"field_label\":\"Services Name\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Messages\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor4\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_background_color\":\"#383838CC\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Roboto\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"field_typography_font_weight\":\"400\",\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5649, 605, '_elementor_page_settings', 'a:0:{}'),
(7026, 739, '_wp_page_template', 'default'),
(7027, 739, '_elementor_edit_mode', 'builder'),
(7028, 739, '_elementor_template_type', 'wp-page'),
(7029, 739, '_elementor_version', '3.34.2'),
(7030, 739, '_elementor_pro_version', '3.34.2'),
(7031, 739, '_elementor_data', '[{\"id\":\"da47fa9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"73e548d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}]},\"elements\":[{\"id\":\"0630135\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"0b858af\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"9cd53aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba1f56d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e0acf42\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1ebba86\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9f06d27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"af8a159\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"background_color\":\"#F2EEEC6E\",\"flex_direction_tablet\":\"column-reverse\",\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"ae9dcfe\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f8070ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"SPECIALL\\u00d8SNINGER\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fa656d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi har en s\\u00e6rlig interesse for opgaver, der kr\\u00e6ver noget ekstra. N\\u00e5r standardl\\u00f8sninger ikke passer, finder vi l\\u00f8sninger, der g\\u00f8r.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7fce677\",\"elType\":\"widget\",\"settings\":{\"title\":\"Det kan v\\u00e6re:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c0ffdf0\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"teknisk kr\\u00e6vende detaljer\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"specialtilpassede konstruktioner\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"samspil mellem flere materialer\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"l\\u00f8sninger, der kr\\u00e6ver ekstra omtanke\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"07daf97\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Her kommer vores faglighed og erfaring virkelig i spil.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"34e27a1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"background_color\":\"#F2EEEC6E\",\"flex_direction_tablet\":\"column-reverse\",\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"fb7865a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0076979\",\"elType\":\"widget\",\"settings\":{\"title\":\"KVALITET FREM FOR KVANTITET\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9f9cbcc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tager bevidst et begr\\u00e6nset antal opgaver ad gangen. Det giver os mulighed for at:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b0e7d9d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"bevare overblik\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"sikre h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"v\\u00e6re tilg\\u00e6ngelige for kunden\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"f\\u00f8lge op p\\u00e5 detaljerne\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"f53b930\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at godt h\\u00e5ndv\\u00e6rk kr\\u00e6ver tid og fokus.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(5653, 606, '_elementor_edit_mode', 'builder'),
(5654, 606, '_elementor_template_type', 'wp-page'),
(5655, 606, '_elementor_version', '3.34.2'),
(5656, 606, '_elementor_pro_version', '3.34.2'),
(5657, 606, '_wp_page_template', 'default'),
(5658, 606, '_elementor_data', '[{\"id\":\"1e332a51\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1600399\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3f02c7e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"69bbd48\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9bbb579\",\"pp_condition_date_time_before_value\":\"2024-06-13 12:14\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"id\":506,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/features-shape-1.png\"},\"background_position\":\"bottom right\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":507,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/slider-shape-2.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_attachment\":\"scroll\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"a4da8ee\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8791aed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe09348\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"935d9bd\"}],\"pp_display_conditions\":[{\"_id\":\"faf5fd2\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}]},\"elements\":[{\"id\":\"49d71336\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kontaktoplysninger\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"802d5d7\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"750c99c1\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"editor\":\"<p>Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid<br \\/>velkommen til at kontakte os for en uforpligtende snak.<\\/p>\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c93489c\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"33ff5776\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"def43cb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c8cfb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e7a215\"}],\"pp_display_conditions\":[{\"_id\":\"daade15\",\"pp_condition_date_time_before_value\":\"2024-06-13 12:14\"}],\"flex_direction\":\"row\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_direction_tablet\":\"row\",\"flex_justify_content\":\"center\",\"flex_justify_content_tablet\":\"space-around\",\"flex_wrap\":\"wrap\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"5414ae23\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ca201cd\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"7db42375\",\"elType\":\"widget\",\"settings\":{\"title\":\"Placering\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"470d48aa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Fyn, Denmark\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a2184f8\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5511ffdf\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"6b6d887e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":504,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/smartphone_230142.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"3676670c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ring til os\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d86beaa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"41 60 00 40\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:41600040\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ce5f04f\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"64f3768f\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"55c9290\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":505,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/email_542689.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"397a533e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Send os en email\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a6b4fdc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"kontakt@cp-nordic.dk\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a2184f8\",\"link\":{\"url\":\"mailto:kontakt@cp-nordic.dk\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\",\"content_width\":\"full\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1629e761\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"3f0b36ba\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"304a3dc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d1b58ac\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Name\",\"placeholder\":\"Name\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Messages\",\"placeholder\":\"Messages\",\"custom_id\":\"field_d10992d\",\"rows\":6,\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"show_labels\":\"\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_background_color\":\"#F0F5FA96\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true},{\"id\":\"636e2bca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5f31bac\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"32a9521\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dea9376\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7ff945\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"54da3f3a\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title\":\"Hours of Operation\",\"pp_display_conditions\":[{\"_id\":\"156b1a5\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align_mobile_extra\":\"center\",\"align\":\"left\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"678eb405\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"business_hours\":[{\"_id\":\"f12e234\",\"opening_hours\":\"10:00\",\"closed_text\":\"Closed\",\"closing_hours\":\"15:00\"},{\"day\":\"Tuesday\",\"_id\":\"b236ffe\",\"opening_hours\":\"10:00\",\"closed_text\":\"Closed\",\"closing_hours\":\"15:00\"},{\"day\":\"Wednesday\",\"_id\":\"b71ee4f\",\"opening_hours\":\"10:00\",\"closed_text\":\"Closed\",\"closing_hours\":\"15:00\"},{\"day\":\"Thursday\",\"_id\":\"a00f58d\",\"opening_hours\":\"10:00\",\"closed_text\":\"Closed\",\"closing_hours\":\"15:00\"},{\"day\":\"Friday\",\"_id\":\"53681c8\",\"opening_hours\":\"10:00\",\"closed_text\":\"Closed\",\"closing_hours\":\"15:00\"},{\"day\":\"Saturday\",\"closed\":\"\",\"highlight\":\"yes\",\"_id\":\"7577a50\",\"closed_text\":\"Closed\",\"__globals__\":{\"highlight_color\":\"globals\\/colors?id=astglobalcolor5\"}},{\"day\":\"Sunday\",\"closed\":\"yes\",\"highlight\":\"yes\",\"_id\":\"09fa485\",\"closed_text\":\"Closed\",\"__globals__\":{\"highlight_color\":\"globals\\/colors?id=astglobalcolor5\"}}],\"business_hours_custom\":[{\"day\":\"Monday\",\"_id\":\"812a65f\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Tuesday\",\"_id\":\"ac90ca4\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Wednesday\",\"_id\":\"391a242\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Thursday\",\"_id\":\"bca6f45\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Friday\",\"_id\":\"00b4230\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Saturday\",\"closed\":\"yes\",\"highlight\":\"yes\",\"highlight_color\":\"#bc1705\",\"_id\":\"bc5df80\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Sunday\",\"closed\":\"yes\",\"highlight\":\"yes\",\"highlight_color\":\"#bc1705\",\"_id\":\"d7eceed\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"}],\"rows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false},\"rows_divider_style\":\"solid\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"hours_typography_typography\":\"custom\",\"hours_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0f8baac\",\"pp_condition_date_time_before_value\":\"2024-08-01 07:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"rows_divider_color\":\"\",\"day_color\":\"globals\\/colors?id=astglobalcolor5\",\"hours_color\":\"globals\\/colors?id=astglobalcolor5\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"hours_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"rows_divider_color\":\"#8E8F8F3D\",\"day_color\":\"#FFFFFF\",\"hours_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"pp-business-hours\"},{\"id\":\"43e82eab\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title\":\"To reach the office after hours\",\"header_size\":\"h4\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"500\",\"pp_display_conditions\":[{\"_id\":\"15b2e0d\",\"pp_condition_date_time_before_value\":\"2024-08-11 07:15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56118585\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"text\":\"Call Us 888-510-1879\",\"link\":{\"url\":\"tel:8885101879\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"42b3e40\",\"pp_condition_date_time_before_value\":\"2024-08-11 07:15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"hover_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1751d596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a5ac8b4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f58036e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5227ac0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b0f7742\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\"}]},\"elements\":[{\"id\":\"93d7aaa\",\"elType\":\"widget\",\"settings\":{\"address\":\"10777 Westheimer Rd, Houston, TX 77042, USA\",\"height\":{\"unit\":\"px\",\"size\":412,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"c7478ab\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}]'),
(7022, 738, '_elementor_page_settings', 'a:0:{}'),
(5670, 607, '_elementor_page_settings', 'a:0:{}'),
(5672, 608, '_elementor_edit_mode', 'builder'),
(5673, 608, '_elementor_template_type', 'wp-page'),
(5674, 608, '_elementor_version', '3.34.2'),
(5675, 608, '_elementor_pro_version', '3.34.2'),
(5676, 608, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5677, 608, '_elementor_data', '[{\"id\":\"1e332a51\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1600399\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3f02c7e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"69bbd48\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9bbb579\",\"pp_condition_date_time_before_value\":\"2024-06-13 12:14\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"id\":506,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/features-shape-1.png\"},\"background_position\":\"bottom right\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":507,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/slider-shape-2.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_attachment\":\"scroll\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"a4da8ee\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8791aed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe09348\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"935d9bd\"}],\"pp_display_conditions\":[{\"_id\":\"faf5fd2\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}]},\"elements\":[{\"id\":\"49d71336\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kontaktoplysninger\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"802d5d7\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"750c99c1\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"editor\":\"<p>Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid<br \\/>velkommen til at kontakte os for en uforpligtende snak.<\\/p>\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c93489c\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"33ff5776\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"def43cb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c8cfb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e7a215\"}],\"pp_display_conditions\":[{\"_id\":\"daade15\",\"pp_condition_date_time_before_value\":\"2024-06-13 12:14\"}],\"flex_direction\":\"row\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_direction_tablet\":\"row\",\"flex_justify_content\":\"center\",\"flex_justify_content_tablet\":\"space-around\",\"flex_wrap\":\"wrap\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"5414ae23\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ca201cd\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"7db42375\",\"elType\":\"widget\",\"settings\":{\"title\":\"Placering\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"470d48aa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Fyn, Denmark\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a2184f8\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5511ffdf\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"6b6d887e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":504,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/smartphone_230142.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"3676670c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ring til os\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d86beaa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"41 60 00 40\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:41600040\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ce5f04f\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"64f3768f\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"55c9290\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":505,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/email_542689.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"397a533e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Send os en email\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a6b4fdc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"kontakt@cp-nordic.dk\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a2184f8\",\"link\":{\"url\":\"mailto:kontakt@cp-nordic.dk\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\",\"content_width\":\"full\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1629e761\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"3f0b36ba\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"304a3dc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d1b58ac\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Name\",\"placeholder\":\"Name\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Messages\",\"placeholder\":\"Messages\",\"custom_id\":\"field_d10992d\",\"rows\":6,\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"show_labels\":\"\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_background_color\":\"#F0F5FA96\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true},{\"id\":\"636e2bca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5f31bac\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"32a9521\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dea9376\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7ff945\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"54da3f3a\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title\":\"Hours of Operation\",\"pp_display_conditions\":[{\"_id\":\"156b1a5\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align_mobile_extra\":\"center\",\"align\":\"left\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"678eb405\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"business_hours\":[{\"_id\":\"f12e234\",\"opening_hours\":\"10:00\",\"closed_text\":\"Closed\",\"closing_hours\":\"15:00\"},{\"day\":\"Tuesday\",\"_id\":\"b236ffe\",\"opening_hours\":\"10:00\",\"closed_text\":\"Closed\",\"closing_hours\":\"15:00\"},{\"day\":\"Wednesday\",\"_id\":\"b71ee4f\",\"opening_hours\":\"10:00\",\"closed_text\":\"Closed\",\"closing_hours\":\"15:00\"},{\"day\":\"Thursday\",\"_id\":\"a00f58d\",\"opening_hours\":\"10:00\",\"closed_text\":\"Closed\",\"closing_hours\":\"15:00\"},{\"day\":\"Friday\",\"_id\":\"53681c8\",\"opening_hours\":\"10:00\",\"closed_text\":\"Closed\",\"closing_hours\":\"15:00\"},{\"day\":\"Saturday\",\"closed\":\"\",\"highlight\":\"yes\",\"_id\":\"7577a50\",\"closed_text\":\"Closed\",\"__globals__\":{\"highlight_color\":\"globals\\/colors?id=astglobalcolor5\"}},{\"day\":\"Sunday\",\"closed\":\"yes\",\"highlight\":\"yes\",\"_id\":\"09fa485\",\"closed_text\":\"Closed\",\"__globals__\":{\"highlight_color\":\"globals\\/colors?id=astglobalcolor5\"}}],\"business_hours_custom\":[{\"day\":\"Monday\",\"_id\":\"812a65f\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Tuesday\",\"_id\":\"ac90ca4\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Wednesday\",\"_id\":\"391a242\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Thursday\",\"_id\":\"bca6f45\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Friday\",\"_id\":\"00b4230\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Saturday\",\"closed\":\"yes\",\"highlight\":\"yes\",\"highlight_color\":\"#bc1705\",\"_id\":\"bc5df80\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Sunday\",\"closed\":\"yes\",\"highlight\":\"yes\",\"highlight_color\":\"#bc1705\",\"_id\":\"d7eceed\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"}],\"rows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false},\"rows_divider_style\":\"solid\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"hours_typography_typography\":\"custom\",\"hours_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0f8baac\",\"pp_condition_date_time_before_value\":\"2024-08-01 07:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"rows_divider_color\":\"\",\"day_color\":\"globals\\/colors?id=astglobalcolor5\",\"hours_color\":\"globals\\/colors?id=astglobalcolor5\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"hours_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"rows_divider_color\":\"#8E8F8F3D\",\"day_color\":\"#FFFFFF\",\"hours_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"pp-business-hours\"},{\"id\":\"43e82eab\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title\":\"To reach the office after hours\",\"header_size\":\"h4\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"500\",\"pp_display_conditions\":[{\"_id\":\"15b2e0d\",\"pp_condition_date_time_before_value\":\"2024-08-11 07:15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56118585\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"text\":\"Call Us 888-510-1879\",\"link\":{\"url\":\"tel:8885101879\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"42b3e40\",\"pp_condition_date_time_before_value\":\"2024-08-11 07:15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"hover_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1751d596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a5ac8b4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f58036e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5227ac0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b0f7742\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\"}]},\"elements\":[{\"id\":\"93d7aaa\",\"elType\":\"widget\",\"settings\":{\"address\":\"10777 Westheimer Rd, Houston, TX 77042, USA\",\"height\":{\"unit\":\"px\",\"size\":412,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"c7478ab\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}]'),
(5196, 566, '_elementor_page_settings', 'a:0:{}'),
(5739, 616, '_elementor_edit_mode', 'builder'),
(5740, 616, '_elementor_template_type', 'wp-page'),
(5741, 616, '_elementor_version', '3.34.2'),
(5742, 616, '_elementor_pro_version', '3.34.2'),
(5743, 616, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5744, 616, '_elementor_data', '[{\"id\":\"1e332a51\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1600399\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3f02c7e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"69bbd48\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9bbb579\",\"pp_condition_date_time_before_value\":\"2024-06-13 12:14\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"id\":\"\",\"url\":\"\"},\"background_position\":\"bottom right\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"\"},\"background_overlay_position\":\"top left\",\"background_overlay_attachment\":\"scroll\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"a4da8ee\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8791aed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe09348\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"935d9bd\"}],\"pp_display_conditions\":[{\"_id\":\"faf5fd2\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}]},\"elements\":[{\"id\":\"49d71336\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kontaktoplysninger\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"802d5d7\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"750c99c1\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"editor\":\"<p>Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid<br \\/>velkommen til at kontakte os for en uforpligtende snak.<\\/p>\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c93489c\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"33ff5776\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"def43cb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c8cfb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e7a215\"}],\"pp_display_conditions\":[{\"_id\":\"daade15\",\"pp_condition_date_time_before_value\":\"2024-06-13 12:14\"}],\"flex_direction\":\"row\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_direction_tablet\":\"row\",\"flex_justify_content\":\"center\",\"flex_justify_content_tablet\":\"space-around\",\"flex_wrap\":\"wrap\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"5414ae23\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ca201cd\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"7db42375\",\"elType\":\"widget\",\"settings\":{\"title\":\"Placering\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"470d48aa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Fyn, Denmark\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a2184f8\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5511ffdf\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"6b6d887e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":504,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/smartphone_230142.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"3676670c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ring til os\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d86beaa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"41 60 00 40\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:41600040\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ce5f04f\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"64f3768f\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"55c9290\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":505,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/email_542689.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"397a533e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Send os en email\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a6b4fdc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"kontakt@cp-nordic.dk\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a2184f8\",\"link\":{\"url\":\"mailto:kontakt@cp-nordic.dk\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\",\"content_width\":\"full\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1629e761\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"3f0b36ba\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"304a3dc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d9ec4b\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Name\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"tel\",\"field_label\":\"Phone\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\"},{\"field_type\":\"select\",\"field_label\":\"Services Name\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Messages\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Roboto\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"field_typography_font_weight\":\"400\",\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true},{\"id\":\"636e2bca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5f31bac\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"32a9521\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dea9376\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7ff945\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"54da3f3a\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title\":\"KONTAKT OS\",\"pp_display_conditions\":[{\"_id\":\"156b1a5\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align_mobile_extra\":\"center\",\"align\":\"left\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79c5eed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi d\\u00e6kker hele Fyn \\u2013 og tager ogs\\u00e5 gerne opgaver uden for omr\\u00e5det, n\\u00e5r der er tale om sp\\u00e6ndende eller teknisk kr\\u00e6vende l\\u00f8sninger.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e03db8a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5745, 616, '_elementor_page_settings', 'a:0:{}'),
(5747, 617, '_elementor_edit_mode', 'builder'),
(5748, 617, '_elementor_template_type', 'wp-page'),
(5749, 617, '_elementor_version', '3.34.2'),
(5750, 617, '_elementor_pro_version', '3.34.2'),
(5751, 617, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5752, 617, '_elementor_data', '[{\"id\":\"1e332a51\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1600399\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3f02c7e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"69bbd48\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9bbb579\",\"pp_condition_date_time_before_value\":\"2024-06-13 12:14\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"id\":\"\",\"url\":\"\"},\"background_position\":\"bottom right\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"\"},\"background_overlay_position\":\"top left\",\"background_overlay_attachment\":\"scroll\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"a4da8ee\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8791aed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe09348\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"935d9bd\"}],\"pp_display_conditions\":[{\"_id\":\"faf5fd2\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}]},\"elements\":[{\"id\":\"49d71336\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kontaktoplysninger\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"802d5d7\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"750c99c1\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"editor\":\"<p>Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid<br \\/>velkommen til at kontakte os for en uforpligtende snak.<\\/p>\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c93489c\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"33ff5776\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"def43cb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c8cfb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e7a215\"}],\"pp_display_conditions\":[{\"_id\":\"daade15\",\"pp_condition_date_time_before_value\":\"2024-06-13 12:14\"}],\"flex_direction\":\"row\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_direction_tablet\":\"row\",\"flex_justify_content\":\"center\",\"flex_justify_content_tablet\":\"space-around\",\"flex_wrap\":\"wrap\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"5414ae23\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ca201cd\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"7db42375\",\"elType\":\"widget\",\"settings\":{\"title\":\"Placering\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"470d48aa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Fyn, Denmark\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a2184f8\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5511ffdf\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"6b6d887e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":504,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/smartphone_230142.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"3676670c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ring til os\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d86beaa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"41 60 00 40\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:41600040\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ce5f04f\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"64f3768f\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"55c9290\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":505,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/email_542689.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"397a533e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Send os en email\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a6b4fdc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"kontakt@cp-nordic.dk\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a2184f8\",\"link\":{\"url\":\"mailto:kontakt@cp-nordic.dk\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\",\"content_width\":\"full\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1629e761\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"3f0b36ba\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"304a3dc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d9ec4b\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Name\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"tel\",\"field_label\":\"Phone\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\"},{\"field_type\":\"select\",\"field_label\":\"Services Name\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Messages\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Roboto\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"field_typography_font_weight\":\"400\",\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true},{\"id\":\"636e2bca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5f31bac\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"32a9521\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dea9376\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7ff945\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"54da3f3a\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title\":\"KONTAKT OS\",\"pp_display_conditions\":[{\"_id\":\"156b1a5\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align_mobile_extra\":\"center\",\"align\":\"left\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79c5eed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi d\\u00e6kker hele Fyn \\u2013 og tager ogs\\u00e5 gerne opgaver uden for omr\\u00e5det, n\\u00e5r der er tale om sp\\u00e6ndende eller teknisk kr\\u00e6vende l\\u00f8sninger.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e03db8a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5753, 617, '_elementor_page_settings', 'a:0:{}'),
(5764, 619, '_elementor_edit_mode', 'builder'),
(5765, 619, '_elementor_template_type', 'wp-page'),
(5766, 619, '_elementor_version', '3.34.2'),
(5767, 619, '_elementor_pro_version', '3.34.2'),
(5768, 619, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5769, 619, '_elementor_data', '[{\"id\":\"1e332a51\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1600399\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3f02c7e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"69bbd48\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9bbb579\",\"pp_condition_date_time_before_value\":\"2024-06-13 12:14\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"id\":\"\",\"url\":\"\"},\"background_position\":\"bottom right\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"\"},\"background_overlay_position\":\"top left\",\"background_overlay_attachment\":\"scroll\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"a4da8ee\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8791aed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe09348\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"935d9bd\"}],\"pp_display_conditions\":[{\"_id\":\"faf5fd2\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}]},\"elements\":[{\"id\":\"49d71336\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kontaktoplysninger\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"802d5d7\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"750c99c1\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"editor\":\"<p>Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid<br \\/>velkommen til at kontakte os for en uforpligtende snak.<\\/p>\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c93489c\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"33ff5776\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"def43cb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c8cfb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e7a215\"}],\"pp_display_conditions\":[{\"_id\":\"daade15\",\"pp_condition_date_time_before_value\":\"2024-06-13 12:14\"}],\"flex_direction\":\"row\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_direction_tablet\":\"row\",\"flex_justify_content\":\"center\",\"flex_justify_content_tablet\":\"space-around\",\"flex_wrap\":\"wrap\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"5414ae23\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ca201cd\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"7db42375\",\"elType\":\"widget\",\"settings\":{\"title\":\"Placering\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"470d48aa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Fyn, Denmark\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a2184f8\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5511ffdf\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"6b6d887e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":504,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/smartphone_230142.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"3676670c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ring til os\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d86beaa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"41 60 00 40\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:41600040\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ce5f04f\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"64f3768f\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"55c9290\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":505,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/email_542689.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"397a533e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Send os en email\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a6b4fdc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"kontakt@cp-nordic.dk\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a2184f8\",\"link\":{\"url\":\"mailto:kontakt@cp-nordic.dk\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\",\"content_width\":\"full\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1629e761\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"3f0b36ba\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"304a3dc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d9ec4b\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Name\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"tel\",\"field_label\":\"Phone\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\"},{\"field_type\":\"select\",\"field_label\":\"Services Name\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Messages\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Roboto\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"field_typography_font_weight\":\"400\",\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true},{\"id\":\"636e2bca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5f31bac\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"32a9521\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dea9376\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7ff945\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"54da3f3a\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title\":\"KONTAKT OS\",\"pp_display_conditions\":[{\"_id\":\"156b1a5\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align_mobile_extra\":\"center\",\"align\":\"left\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79c5eed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi d\\u00e6kker hele Fyn \\u2013 og tager ogs\\u00e5 gerne opgaver uden for omr\\u00e5det, n\\u00e5r der er tale om sp\\u00e6ndende eller teknisk kr\\u00e6vende l\\u00f8sninger.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e03db8a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5770, 619, '_elementor_page_settings', 'a:0:{}'),
(5772, 620, '_elementor_edit_mode', 'builder'),
(5773, 620, '_elementor_template_type', 'wp-page'),
(5774, 620, '_elementor_version', '3.34.2'),
(5775, 620, '_elementor_pro_version', '3.34.2'),
(5776, 620, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5777, 620, '_elementor_data', '[{\"id\":\"1e332a51\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1600399\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3f02c7e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"69bbd48\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9bbb579\",\"pp_condition_date_time_before_value\":\"2024-06-13 12:14\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"id\":\"\",\"url\":\"\"},\"background_position\":\"bottom right\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"\"},\"background_overlay_position\":\"top left\",\"background_overlay_attachment\":\"scroll\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"a4da8ee\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8791aed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe09348\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"935d9bd\"}],\"pp_display_conditions\":[{\"_id\":\"faf5fd2\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}]},\"elements\":[{\"id\":\"49d71336\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kontaktoplysninger\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"802d5d7\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"750c99c1\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"editor\":\"<p>Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid<br \\/>velkommen til at kontakte os for en uforpligtende snak.<\\/p>\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c93489c\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"33ff5776\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"def43cb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c8cfb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e7a215\"}],\"pp_display_conditions\":[{\"_id\":\"daade15\",\"pp_condition_date_time_before_value\":\"2024-06-13 12:14\"}],\"flex_direction\":\"row\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_direction_tablet\":\"row\",\"flex_justify_content\":\"center\",\"flex_justify_content_tablet\":\"space-around\",\"flex_wrap\":\"wrap\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"5414ae23\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ca201cd\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"7db42375\",\"elType\":\"widget\",\"settings\":{\"title\":\"Placering\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"470d48aa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Fyn, Denmark\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a2184f8\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5511ffdf\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"6b6d887e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":504,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/smartphone_230142.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"3676670c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ring til os\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d86beaa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"41 60 00 40\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:41600040\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ce5f04f\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"64f3768f\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"55c9290\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":505,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/email_542689.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"397a533e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Send os en email\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a6b4fdc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"kontakt@cp-nordic.dk\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a2184f8\",\"link\":{\"url\":\"mailto:kontakt@cp-nordic.dk\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\",\"content_width\":\"full\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1629e761\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"3f0b36ba\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"304a3dc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d9ec4b\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Name\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"tel\",\"field_label\":\"Phone\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\"},{\"field_type\":\"select\",\"field_label\":\"Services Name\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Messages\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Roboto\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"field_typography_font_weight\":\"400\",\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true},{\"id\":\"636e2bca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5f31bac\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"32a9521\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dea9376\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7ff945\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"54da3f3a\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title\":\"KONTAKT OS\",\"pp_display_conditions\":[{\"_id\":\"156b1a5\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align_mobile_extra\":\"center\",\"align\":\"left\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79c5eed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi d\\u00e6kker hele Fyn \\u2013 og tager ogs\\u00e5 gerne opgaver uden for omr\\u00e5det, n\\u00e5r der er tale om sp\\u00e6ndende eller teknisk kr\\u00e6vende l\\u00f8sninger.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e03db8a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5199, 567, '_elementor_edit_mode', 'builder'),
(5200, 567, '_elementor_template_type', 'wp-page'),
(5201, 567, '_elementor_version', '3.34.2'),
(5202, 567, '_elementor_pro_version', '3.34.2'),
(5203, 567, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5204, 567, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#111111\",\"background_overlay_color_b\":\"#000A66A3\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}]},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23428e4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Byggeri \\u2013 T\\u00f8mrerarbejde og tagd\\u00e6kning\",\"header_size\":\"h4\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"pp_display_conditions\":[{\"_id\":\"b159f8d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"flex_direction_tablet\":\"column-reverse\",\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15}},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\",\"flex_direction_tablet\":\"column\",\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\",\"id\":57,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}],\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle ANMELDELSER\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}]},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"HVORFOR V\\u00c6LGE CP NORDIC ApS?\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79206f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>N\\u00e5r du v\\u00e6lger CP NORDIC ApS, f\\u00e5r du:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"44023b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/teamwork_4546121.svg\",\"id\":472},\"library\":\"svg\"},\"title_text\":\"et ungt og engageret team\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/effective_1401921.svg\",\"id\":474},\"library\":\"svg\"},\"title_text\":\"fokus p\\u00e5 kvalitet og detaljer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/communication_18765280.svg\",\"id\":479},\"library\":\"svg\"},\"title_text\":\"\\u00e6rlig<br> r\\u00e5dgivning\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/brainstorming_11663441.svg\",\"id\":480},\"library\":\"svg\"},\"title_text\":\"gennemt\\u00e6nkte l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c0f2190\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"327bd23\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/like_3941426.svg\",\"id\":481},\"library\":\"svg\"},\"title_text\":\"arbejde udf\\u00f8rt med ansvar\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2bc9769\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi lover ikke mere, end vi kan holde \\u2013 men vi holder det, vi lover.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2a1d8fc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6323910b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor8\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/wood-background-1-e1738912619419.jpg\",\"id\":510,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]}},\"elements\":[{\"id\":\"640d38eb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"75253fe5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"641310a\",\"elType\":\"widget\",\"settings\":{\"title\":\"KONTAKT OS\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee94578\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fea00\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68d73b3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14202595\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Name\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"tel\",\"field_label\":\"Phone\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\"},{\"field_type\":\"select\",\"field_label\":\"Services Name\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Messages\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor4\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_background_color\":\"#383838CC\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Roboto\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"field_typography_font_weight\":\"400\",\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5206, 567, '_elementor_page_settings', 'a:0:{}'),
(5714, 613, '_elementor_edit_mode', 'builder'),
(5715, 613, '_elementor_template_type', 'wp-page'),
(5716, 613, '_elementor_version', '3.34.2'),
(5717, 613, '_elementor_pro_version', '3.34.2'),
(5718, 613, '_wp_page_template', 'default'),
(5719, 613, '_elementor_data', '[{\"id\":\"1e332a51\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1600399\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3f02c7e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"69bbd48\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9bbb579\",\"pp_condition_date_time_before_value\":\"2024-06-13 12:14\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"id\":506,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/features-shape-1.png\"},\"background_position\":\"bottom right\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":507,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/slider-shape-2.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_attachment\":\"scroll\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"a4da8ee\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8791aed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe09348\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"935d9bd\"}],\"pp_display_conditions\":[{\"_id\":\"faf5fd2\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}]},\"elements\":[{\"id\":\"49d71336\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kontaktoplysninger\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"802d5d7\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"750c99c1\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"editor\":\"<p>Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid<br \\/>velkommen til at kontakte os for en uforpligtende snak.<\\/p>\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c93489c\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"33ff5776\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"def43cb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c8cfb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e7a215\"}],\"pp_display_conditions\":[{\"_id\":\"daade15\",\"pp_condition_date_time_before_value\":\"2024-06-13 12:14\"}],\"flex_direction\":\"row\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_direction_tablet\":\"row\",\"flex_justify_content\":\"center\",\"flex_justify_content_tablet\":\"space-around\",\"flex_wrap\":\"wrap\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"5414ae23\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ca201cd\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"7db42375\",\"elType\":\"widget\",\"settings\":{\"title\":\"Placering\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"470d48aa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Fyn, Denmark\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a2184f8\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5511ffdf\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"6b6d887e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":504,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/smartphone_230142.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"3676670c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ring til os\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d86beaa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"41 60 00 40\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:41600040\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ce5f04f\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"64f3768f\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"55c9290\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":505,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/email_542689.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"397a533e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Send os en email\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a6b4fdc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"kontakt@cp-nordic.dk\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a2184f8\",\"link\":{\"url\":\"mailto:kontakt@cp-nordic.dk\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\",\"content_width\":\"full\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1629e761\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"3f0b36ba\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"304a3dc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d9ec4b\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Name\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"tel\",\"field_label\":\"Phone\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\"},{\"field_type\":\"select\",\"field_label\":\"Services Name\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Messages\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Roboto\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"field_typography_font_weight\":\"400\",\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true},{\"id\":\"636e2bca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5f31bac\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"32a9521\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dea9376\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7ff945\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"54da3f3a\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title\":\"KONTAKT OS\",\"pp_display_conditions\":[{\"_id\":\"156b1a5\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align_mobile_extra\":\"center\",\"align\":\"left\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79c5eed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi d\\u00e6kker hele Fyn \\u2013 og tager ogs\\u00e5 gerne opgaver uden for omr\\u00e5det, n\\u00e5r der er tale om sp\\u00e6ndende eller teknisk kr\\u00e6vende l\\u00f8sninger.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e03db8a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5720, 613, '_elementor_page_settings', 'a:0:{}'),
(5722, 614, '_elementor_edit_mode', 'builder'),
(5723, 614, '_elementor_template_type', 'wp-page'),
(5724, 614, '_elementor_version', '3.34.2'),
(5725, 614, '_elementor_pro_version', '3.34.2'),
(5726, 614, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5727, 614, '_elementor_data', '[{\"id\":\"1e332a51\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1600399\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3f02c7e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"69bbd48\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9bbb579\",\"pp_condition_date_time_before_value\":\"2024-06-13 12:14\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"id\":506,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/features-shape-1.png\"},\"background_position\":\"bottom right\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":507,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/slider-shape-2.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_attachment\":\"scroll\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"a4da8ee\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8791aed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe09348\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"935d9bd\"}],\"pp_display_conditions\":[{\"_id\":\"faf5fd2\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}]},\"elements\":[{\"id\":\"49d71336\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kontaktoplysninger\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"802d5d7\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"750c99c1\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"editor\":\"<p>Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid<br \\/>velkommen til at kontakte os for en uforpligtende snak.<\\/p>\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c93489c\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"33ff5776\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"def43cb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c8cfb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e7a215\"}],\"pp_display_conditions\":[{\"_id\":\"daade15\",\"pp_condition_date_time_before_value\":\"2024-06-13 12:14\"}],\"flex_direction\":\"row\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_direction_tablet\":\"row\",\"flex_justify_content\":\"center\",\"flex_justify_content_tablet\":\"space-around\",\"flex_wrap\":\"wrap\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"5414ae23\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ca201cd\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"7db42375\",\"elType\":\"widget\",\"settings\":{\"title\":\"Placering\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"470d48aa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Fyn, Denmark\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a2184f8\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5511ffdf\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"6b6d887e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":504,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/smartphone_230142.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"3676670c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ring til os\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d86beaa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"41 60 00 40\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:41600040\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ce5f04f\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"64f3768f\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"55c9290\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":505,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/email_542689.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"397a533e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Send os en email\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a6b4fdc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"kontakt@cp-nordic.dk\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a2184f8\",\"link\":{\"url\":\"mailto:kontakt@cp-nordic.dk\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\",\"content_width\":\"full\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1629e761\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"3f0b36ba\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"304a3dc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d9ec4b\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Name\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"tel\",\"field_label\":\"Phone\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\"},{\"field_type\":\"select\",\"field_label\":\"Services Name\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Messages\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Roboto\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"field_typography_font_weight\":\"400\",\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true},{\"id\":\"636e2bca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5f31bac\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"32a9521\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dea9376\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7ff945\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"54da3f3a\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title\":\"KONTAKT OS\",\"pp_display_conditions\":[{\"_id\":\"156b1a5\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align_mobile_extra\":\"center\",\"align\":\"left\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79c5eed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi d\\u00e6kker hele Fyn \\u2013 og tager ogs\\u00e5 gerne opgaver uden for omr\\u00e5det, n\\u00e5r der er tale om sp\\u00e6ndende eller teknisk kr\\u00e6vende l\\u00f8sninger.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e03db8a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5728, 614, '_elementor_page_settings', 'a:0:{}'),
(5730, 615, '_elementor_edit_mode', 'builder'),
(5731, 615, '_elementor_template_type', 'wp-page'),
(5732, 615, '_elementor_version', '3.34.2'),
(5733, 615, '_elementor_pro_version', '3.34.2'),
(5734, 615, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5735, 615, '_elementor_data', '[{\"id\":\"1e332a51\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1600399\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3f02c7e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"69bbd48\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9bbb579\",\"pp_condition_date_time_before_value\":\"2024-06-13 12:14\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"id\":\"\",\"url\":\"\"},\"background_position\":\"bottom right\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"\"},\"background_overlay_position\":\"top left\",\"background_overlay_attachment\":\"scroll\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"a4da8ee\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8791aed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe09348\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"935d9bd\"}],\"pp_display_conditions\":[{\"_id\":\"faf5fd2\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}]},\"elements\":[{\"id\":\"49d71336\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kontaktoplysninger\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"802d5d7\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"750c99c1\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"editor\":\"<p>Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid<br \\/>velkommen til at kontakte os for en uforpligtende snak.<\\/p>\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c93489c\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"33ff5776\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"def43cb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c8cfb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e7a215\"}],\"pp_display_conditions\":[{\"_id\":\"daade15\",\"pp_condition_date_time_before_value\":\"2024-06-13 12:14\"}],\"flex_direction\":\"row\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_direction_tablet\":\"row\",\"flex_justify_content\":\"center\",\"flex_justify_content_tablet\":\"space-around\",\"flex_wrap\":\"wrap\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"5414ae23\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ca201cd\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"7db42375\",\"elType\":\"widget\",\"settings\":{\"title\":\"Placering\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"470d48aa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Fyn, Denmark\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a2184f8\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5511ffdf\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"6b6d887e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":504,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/smartphone_230142.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"3676670c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ring til os\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d86beaa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"41 60 00 40\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:41600040\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ce5f04f\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"64f3768f\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"55c9290\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":505,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/email_542689.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"397a533e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Send os en email\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a6b4fdc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"kontakt@cp-nordic.dk\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a2184f8\",\"link\":{\"url\":\"mailto:kontakt@cp-nordic.dk\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\",\"content_width\":\"full\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1629e761\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"3f0b36ba\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"304a3dc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d9ec4b\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Name\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"tel\",\"field_label\":\"Phone\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\"},{\"field_type\":\"select\",\"field_label\":\"Services Name\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Messages\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Roboto\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"field_typography_font_weight\":\"400\",\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true},{\"id\":\"636e2bca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5f31bac\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"32a9521\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dea9376\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7ff945\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"54da3f3a\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title\":\"KONTAKT OS\",\"pp_display_conditions\":[{\"_id\":\"156b1a5\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align_mobile_extra\":\"center\",\"align\":\"left\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79c5eed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi d\\u00e6kker hele Fyn \\u2013 og tager ogs\\u00e5 gerne opgaver uden for omr\\u00e5det, n\\u00e5r der er tale om sp\\u00e6ndende eller teknisk kr\\u00e6vende l\\u00f8sninger.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e03db8a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5755, 618, '_elementor_edit_mode', 'builder'),
(5756, 618, '_elementor_template_type', 'wp-page'),
(5757, 618, '_elementor_version', '3.34.2'),
(5758, 618, '_elementor_pro_version', '3.34.2'),
(5759, 618, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5760, 618, '_elementor_data', '[{\"id\":\"1e332a51\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1600399\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3f02c7e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"69bbd48\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9bbb579\",\"pp_condition_date_time_before_value\":\"2024-06-13 12:14\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"id\":\"\",\"url\":\"\"},\"background_position\":\"bottom right\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"\"},\"background_overlay_position\":\"top left\",\"background_overlay_attachment\":\"scroll\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"a4da8ee\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8791aed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe09348\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"935d9bd\"}],\"pp_display_conditions\":[{\"_id\":\"faf5fd2\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}]},\"elements\":[{\"id\":\"49d71336\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kontaktoplysninger\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"802d5d7\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"750c99c1\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"editor\":\"<p>Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid<br \\/>velkommen til at kontakte os for en uforpligtende snak.<\\/p>\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c93489c\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"33ff5776\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"def43cb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c8cfb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e7a215\"}],\"pp_display_conditions\":[{\"_id\":\"daade15\",\"pp_condition_date_time_before_value\":\"2024-06-13 12:14\"}],\"flex_direction\":\"row\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_direction_tablet\":\"row\",\"flex_justify_content\":\"center\",\"flex_justify_content_tablet\":\"space-around\",\"flex_wrap\":\"wrap\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"5414ae23\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ca201cd\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"7db42375\",\"elType\":\"widget\",\"settings\":{\"title\":\"Placering\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"470d48aa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Fyn, Denmark\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a2184f8\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5511ffdf\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"6b6d887e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":504,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/smartphone_230142.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"3676670c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ring til os\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d86beaa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"41 60 00 40\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:41600040\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ce5f04f\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"64f3768f\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"55c9290\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":505,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/email_542689.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"397a533e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Send os en email\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a6b4fdc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"kontakt@cp-nordic.dk\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a2184f8\",\"link\":{\"url\":\"mailto:kontakt@cp-nordic.dk\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\",\"content_width\":\"full\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1629e761\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"3f0b36ba\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"304a3dc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d9ec4b\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Name\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"tel\",\"field_label\":\"Phone\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\"},{\"field_type\":\"select\",\"field_label\":\"Services Name\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Messages\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Roboto\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"field_typography_font_weight\":\"400\",\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true},{\"id\":\"636e2bca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5f31bac\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"32a9521\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dea9376\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7ff945\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"54da3f3a\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title\":\"KONTAKT OS\",\"pp_display_conditions\":[{\"_id\":\"156b1a5\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align_mobile_extra\":\"center\",\"align\":\"left\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79c5eed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi d\\u00e6kker hele Fyn \\u2013 og tager ogs\\u00e5 gerne opgaver uden for omr\\u00e5det, n\\u00e5r der er tale om sp\\u00e6ndende eller teknisk kr\\u00e6vende l\\u00f8sninger.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e03db8a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6057, 649, '_elementor_edit_mode', 'builder'),
(5209, 568, '_elementor_edit_mode', 'builder'),
(5210, 568, '_elementor_template_type', 'wp-page'),
(5211, 568, '_elementor_version', '3.34.2'),
(5212, 568, '_elementor_pro_version', '3.34.2'),
(5213, 568, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5214, 568, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#111111\",\"background_overlay_color_b\":\"#000A66A3\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23428e4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Byggeri \\u2013 T\\u00f8mrerarbejde og tagd\\u00e6kning\",\"header_size\":\"h4\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"pp_display_conditions\":[{\"_id\":\"b159f8d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"flex_direction_tablet\":\"column-reverse\",\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\",\"flex_direction_tablet\":\"column\",\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\",\"id\":57,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}],\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle ANMELDELSER\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"HVORFOR V\\u00c6LGE CP NORDIC ApS?\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79206f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>N\\u00e5r du v\\u00e6lger CP NORDIC ApS, f\\u00e5r du:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"44023b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/teamwork_4546121.svg\",\"id\":472},\"library\":\"svg\"},\"title_text\":\"et ungt og engageret team\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/effective_1401921.svg\",\"id\":474},\"library\":\"svg\"},\"title_text\":\"fokus p\\u00e5 kvalitet og detaljer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/communication_18765280.svg\",\"id\":479},\"library\":\"svg\"},\"title_text\":\"\\u00e6rlig<br> r\\u00e5dgivning\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/brainstorming_11663441.svg\",\"id\":480},\"library\":\"svg\"},\"title_text\":\"gennemt\\u00e6nkte l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c0f2190\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"327bd23\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/like_3941426.svg\",\"id\":481},\"library\":\"svg\"},\"title_text\":\"arbejde udf\\u00f8rt med ansvar\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2bc9769\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi lover ikke mere, end vi kan holde \\u2013 men vi holder det, vi lover.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2a1d8fc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6323910b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor8\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/wood-background-1-e1738912619419.jpg\",\"id\":510,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]}},\"elements\":[{\"id\":\"640d38eb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"75253fe5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"641310a\",\"elType\":\"widget\",\"settings\":{\"title\":\"KONTAKT OS\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee94578\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fea00\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68d73b3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14202595\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Name\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"tel\",\"field_label\":\"Phone\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\"},{\"field_type\":\"select\",\"field_label\":\"Services Name\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Messages\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor4\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_background_color\":\"#383838CC\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Roboto\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"field_typography_font_weight\":\"400\",\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6526, 695, '_elementor_edit_mode', 'builder'),
(5678, 608, '_elementor_page_settings', 'a:0:{}'),
(6979, 734, '_elementor_version', '3.34.2'),
(6978, 734, '_elementor_template_type', 'wp-page'),
(6977, 734, '_elementor_edit_mode', 'builder'),
(6976, 734, '_wp_page_template', 'default'),
(5689, 610, '_elementor_edit_mode', 'builder'),
(5690, 610, '_elementor_template_type', 'wp-page'),
(5691, 610, '_elementor_version', '3.34.2'),
(5692, 610, '_elementor_pro_version', '3.34.2'),
(5693, 610, '_wp_page_template', 'default'),
(5694, 610, '_elementor_data', '[{\"id\":\"1e332a51\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1600399\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3f02c7e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"69bbd48\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9bbb579\",\"pp_condition_date_time_before_value\":\"2024-06-13 12:14\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"id\":506,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/features-shape-1.png\"},\"background_position\":\"bottom right\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":507,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/slider-shape-2.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_attachment\":\"scroll\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"a4da8ee\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8791aed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe09348\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"935d9bd\"}],\"pp_display_conditions\":[{\"_id\":\"faf5fd2\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}]},\"elements\":[{\"id\":\"49d71336\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kontaktoplysninger\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"802d5d7\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"750c99c1\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"editor\":\"<p>Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid<br \\/>velkommen til at kontakte os for en uforpligtende snak.<\\/p>\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c93489c\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"33ff5776\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"def43cb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c8cfb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e7a215\"}],\"pp_display_conditions\":[{\"_id\":\"daade15\",\"pp_condition_date_time_before_value\":\"2024-06-13 12:14\"}],\"flex_direction\":\"row\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_direction_tablet\":\"row\",\"flex_justify_content\":\"center\",\"flex_justify_content_tablet\":\"space-around\",\"flex_wrap\":\"wrap\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"5414ae23\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ca201cd\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"7db42375\",\"elType\":\"widget\",\"settings\":{\"title\":\"Placering\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"470d48aa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Fyn, Denmark\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a2184f8\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5511ffdf\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"6b6d887e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":504,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/smartphone_230142.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"3676670c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ring til os\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d86beaa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"41 60 00 40\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:41600040\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ce5f04f\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"64f3768f\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"55c9290\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":505,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/email_542689.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"397a533e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Send os en email\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a6b4fdc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"kontakt@cp-nordic.dk\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a2184f8\",\"link\":{\"url\":\"mailto:kontakt@cp-nordic.dk\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\",\"content_width\":\"full\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1629e761\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"3f0b36ba\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"304a3dc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d9ec4b\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Name\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"tel\",\"field_label\":\"Phone\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\"},{\"field_type\":\"select\",\"field_label\":\"Services Name\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Messages\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Roboto\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"field_typography_font_weight\":\"400\",\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true},{\"id\":\"636e2bca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5f31bac\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"32a9521\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dea9376\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7ff945\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"54da3f3a\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title\":\"Kontakt\",\"pp_display_conditions\":[{\"_id\":\"156b1a5\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align_mobile_extra\":\"center\",\"align\":\"left\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79c5eed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi d\\u00e6kker hele Fyn \\u2013 og tager ogs\\u00e5 gerne opgaver uden for omr\\u00e5det, n\\u00e5r der er tale om sp\\u00e6ndende eller teknisk kr\\u00e6vende l\\u00f8sninger.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e03db8a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5695, 610, '_elementor_page_settings', 'a:0:{}'),
(5697, 611, '_elementor_edit_mode', 'builder'),
(5698, 611, '_elementor_template_type', 'wp-page'),
(5699, 611, '_elementor_version', '3.34.2'),
(5700, 611, '_elementor_pro_version', '3.34.2'),
(5701, 611, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5702, 611, '_elementor_data', '[{\"id\":\"1e332a51\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1600399\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3f02c7e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"69bbd48\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9bbb579\",\"pp_condition_date_time_before_value\":\"2024-06-13 12:14\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"id\":506,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/features-shape-1.png\"},\"background_position\":\"bottom right\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":507,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/slider-shape-2.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_attachment\":\"scroll\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"a4da8ee\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8791aed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe09348\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"935d9bd\"}],\"pp_display_conditions\":[{\"_id\":\"faf5fd2\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}]},\"elements\":[{\"id\":\"49d71336\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kontaktoplysninger\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"802d5d7\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"750c99c1\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"editor\":\"<p>Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid<br \\/>velkommen til at kontakte os for en uforpligtende snak.<\\/p>\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c93489c\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"33ff5776\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"def43cb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c8cfb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e7a215\"}],\"pp_display_conditions\":[{\"_id\":\"daade15\",\"pp_condition_date_time_before_value\":\"2024-06-13 12:14\"}],\"flex_direction\":\"row\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_direction_tablet\":\"row\",\"flex_justify_content\":\"center\",\"flex_justify_content_tablet\":\"space-around\",\"flex_wrap\":\"wrap\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"5414ae23\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ca201cd\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"7db42375\",\"elType\":\"widget\",\"settings\":{\"title\":\"Placering\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"470d48aa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Fyn, Denmark\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a2184f8\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5511ffdf\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"6b6d887e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":504,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/smartphone_230142.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"3676670c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ring til os\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d86beaa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"41 60 00 40\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:41600040\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ce5f04f\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"64f3768f\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"55c9290\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":505,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/email_542689.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"397a533e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Send os en email\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a6b4fdc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"kontakt@cp-nordic.dk\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a2184f8\",\"link\":{\"url\":\"mailto:kontakt@cp-nordic.dk\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\",\"content_width\":\"full\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1629e761\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"3f0b36ba\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"304a3dc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d9ec4b\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Name\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"tel\",\"field_label\":\"Phone\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\"},{\"field_type\":\"select\",\"field_label\":\"Services Name\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Messages\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Roboto\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"field_typography_font_weight\":\"400\",\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true},{\"id\":\"636e2bca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5f31bac\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"32a9521\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dea9376\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7ff945\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"54da3f3a\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title\":\"Kontakt\",\"pp_display_conditions\":[{\"_id\":\"156b1a5\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align_mobile_extra\":\"center\",\"align\":\"left\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79c5eed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi d\\u00e6kker hele Fyn \\u2013 og tager ogs\\u00e5 gerne opgaver uden for omr\\u00e5det, n\\u00e5r der er tale om sp\\u00e6ndende eller teknisk kr\\u00e6vende l\\u00f8sninger.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e03db8a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5703, 611, '_elementor_page_settings', 'a:0:{}'),
(5705, 612, '_elementor_edit_mode', 'builder'),
(5706, 612, '_elementor_template_type', 'wp-page'),
(5707, 612, '_elementor_version', '3.34.2'),
(5708, 612, '_elementor_pro_version', '3.34.2'),
(5709, 612, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5710, 612, '_elementor_data', '[{\"id\":\"1e332a51\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1600399\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3f02c7e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"69bbd48\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9bbb579\",\"pp_condition_date_time_before_value\":\"2024-06-13 12:14\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"id\":506,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/features-shape-1.png\"},\"background_position\":\"bottom right\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":507,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/slider-shape-2.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_attachment\":\"scroll\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"a4da8ee\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8791aed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe09348\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"935d9bd\"}],\"pp_display_conditions\":[{\"_id\":\"faf5fd2\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}]},\"elements\":[{\"id\":\"49d71336\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kontaktoplysninger\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"802d5d7\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"750c99c1\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"editor\":\"<p>Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid<br \\/>velkommen til at kontakte os for en uforpligtende snak.<\\/p>\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c93489c\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"33ff5776\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"def43cb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c8cfb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e7a215\"}],\"pp_display_conditions\":[{\"_id\":\"daade15\",\"pp_condition_date_time_before_value\":\"2024-06-13 12:14\"}],\"flex_direction\":\"row\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_direction_tablet\":\"row\",\"flex_justify_content\":\"center\",\"flex_justify_content_tablet\":\"space-around\",\"flex_wrap\":\"wrap\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"5414ae23\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ca201cd\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"7db42375\",\"elType\":\"widget\",\"settings\":{\"title\":\"Placering\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"470d48aa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Fyn, Denmark\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a2184f8\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5511ffdf\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"6b6d887e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":504,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/smartphone_230142.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"3676670c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Ring til os\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d86beaa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"41 60 00 40\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:41600040\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ce5f04f\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"64f3768f\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"55c9290\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":505,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/email_542689.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"397a533e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Send os en email\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a6b4fdc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"kontakt@cp-nordic.dk\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a2184f8\",\"link\":{\"url\":\"mailto:kontakt@cp-nordic.dk\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\",\"content_width\":\"full\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1629e761\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"3f0b36ba\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"304a3dc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d9ec4b\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Name\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"tel\",\"field_label\":\"Phone\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\"},{\"field_type\":\"select\",\"field_label\":\"Services Name\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Messages\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor2\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Roboto\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"field_typography_font_weight\":\"400\",\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true},{\"id\":\"636e2bca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5f31bac\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"32a9521\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dea9376\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7ff945\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"54da3f3a\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title\":\"KONTAKT OS\",\"pp_display_conditions\":[{\"_id\":\"156b1a5\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align_mobile_extra\":\"center\",\"align\":\"left\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79c5eed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi d\\u00e6kker hele Fyn \\u2013 og tager ogs\\u00e5 gerne opgaver uden for omr\\u00e5det, n\\u00e5r der er tale om sp\\u00e6ndende eller teknisk kr\\u00e6vende l\\u00f8sninger.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e03db8a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5639, 604, '_elementor_page_settings', 'a:0:{}'),
(5229, 569, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(6791, 717, '_elementor_edit_mode', 'builder'),
(6792, 717, '_elementor_template_type', 'wp-page'),
(6793, 717, '_elementor_version', '3.34.2'),
(5643, 605, '_elementor_edit_mode', 'builder'),
(5644, 605, '_elementor_template_type', 'wp-page'),
(5645, 605, '_elementor_version', '3.34.2'),
(5646, 605, '_elementor_pro_version', '3.34.2'),
(5647, 605, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5648, 605, '_elementor_data', '[{\"id\":\"1e332a51\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1600399\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3f02c7e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"69bbd48\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9bbb579\",\"pp_condition_date_time_before_value\":\"2024-06-13 12:14\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"id\":506,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/features-shape-1.png\"},\"background_position\":\"bottom right\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":507,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/slider-shape-2.png\"},\"background_overlay_position\":\"top left\",\"background_overlay_attachment\":\"scroll\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"a4da8ee\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8791aed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fe09348\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"935d9bd\"}],\"pp_display_conditions\":[{\"_id\":\"faf5fd2\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}]},\"elements\":[{\"id\":\"49d71336\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kontaktoplysninger\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"802d5d7\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"__globals__\":{\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_flex_align_self\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"750c99c1\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"editor\":\"<p>Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid<br \\/>velkommen til at kontakte os for en uforpligtende snak.<\\/p>\",\"align\":\"center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":760,\"sizes\":[]},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"c93489c\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"33ff5776\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"def43cb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c8cfb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4e7a215\"}],\"pp_display_conditions\":[{\"_id\":\"daade15\",\"pp_condition_date_time_before_value\":\"2024-06-13 12:14\"}],\"flex_direction\":\"row\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_direction_tablet\":\"row\",\"flex_justify_content\":\"center\",\"flex_justify_content_tablet\":\"space-around\",\"flex_wrap\":\"wrap\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"5414ae23\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ca201cd\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"7db42375\",\"elType\":\"widget\",\"settings\":{\"title\":\"LOCATION\\n\",\"header_size\":\"h4\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"470d48aa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"10777 Westheimer Rd Suite 1100 Houston, Tx 77042\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a2184f8\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5511ffdf\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"6b6d887e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":504,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/smartphone_230142.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"3676670c\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL US\\n\",\"header_size\":\"h4\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d86beaa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"(281) 501-0350\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"tel:(281)5010350\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ce5f04f\"}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"64f3768f\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"facb028\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de1ce2a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"be1feb3\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#1E293B26\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bff423b\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:54\"}],\"animation\":\"none\",\"animation_duration\":\"slow\",\"__globals__\":{\"border_color\":\"\",\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_align_items\":\"center\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":5,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"55c9290\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"id\":505,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/email_542689.svg\"},\"library\":\"svg\"},\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"4d0c1a1\"}],\"pp_display_conditions\":[{\"_id\":\"48f45f4\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"397a533e\",\"elType\":\"widget\",\"settings\":{\"title\":\"EMAIL US\\n\",\"header_size\":\"h4\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"display_condition_list\":[{\"display_condition_login_status\":\"subscriber\",\"_id\":\"94ce21a\"}],\"pp_display_conditions\":[{\"_id\":\"253caf8\",\"pp_condition_date_time_before_value\":\"2024-06-26 11:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a6b4fdc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"intake@modernhh.com\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a2184f8\",\"link\":{\"url\":\"mailto:intake@modernhh.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"b255189\",\"pp_condition_date_time_before_value\":\"2024-06-26 15:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"text_color_hover\":\"#ff5e15\",\"content_width\":\"full\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1629e761\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"3f0b36ba\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"304a3dc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d1b58ac\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Name\",\"placeholder\":\"Name\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Messages\",\"placeholder\":\"Messages\",\"custom_id\":\"field_d10992d\",\"rows\":6,\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"show_labels\":\"\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_background_color\":\"#F0F5FA96\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true},{\"id\":\"636e2bca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5f31bac\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"32a9521\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dea9376\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c7ff945\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"54da3f3a\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title\":\"Hours of Operation\",\"pp_display_conditions\":[{\"_id\":\"156b1a5\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align_mobile_extra\":\"center\",\"align\":\"left\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"678eb405\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"business_hours\":[{\"_id\":\"f12e234\",\"opening_hours\":\"10:00\",\"closed_text\":\"Closed\",\"closing_hours\":\"15:00\"},{\"day\":\"Tuesday\",\"_id\":\"b236ffe\",\"opening_hours\":\"10:00\",\"closed_text\":\"Closed\",\"closing_hours\":\"15:00\"},{\"day\":\"Wednesday\",\"_id\":\"b71ee4f\",\"opening_hours\":\"10:00\",\"closed_text\":\"Closed\",\"closing_hours\":\"15:00\"},{\"day\":\"Thursday\",\"_id\":\"a00f58d\",\"opening_hours\":\"10:00\",\"closed_text\":\"Closed\",\"closing_hours\":\"15:00\"},{\"day\":\"Friday\",\"_id\":\"53681c8\",\"opening_hours\":\"10:00\",\"closed_text\":\"Closed\",\"closing_hours\":\"15:00\"},{\"day\":\"Saturday\",\"closed\":\"\",\"highlight\":\"yes\",\"_id\":\"7577a50\",\"closed_text\":\"Closed\",\"__globals__\":{\"highlight_color\":\"globals\\/colors?id=astglobalcolor5\"}},{\"day\":\"Sunday\",\"closed\":\"yes\",\"highlight\":\"yes\",\"_id\":\"09fa485\",\"closed_text\":\"Closed\",\"__globals__\":{\"highlight_color\":\"globals\\/colors?id=astglobalcolor5\"}}],\"business_hours_custom\":[{\"day\":\"Monday\",\"_id\":\"812a65f\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Tuesday\",\"_id\":\"ac90ca4\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Wednesday\",\"_id\":\"391a242\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Thursday\",\"_id\":\"bca6f45\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Friday\",\"_id\":\"00b4230\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Saturday\",\"closed\":\"yes\",\"highlight\":\"yes\",\"highlight_color\":\"#bc1705\",\"_id\":\"bc5df80\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Sunday\",\"closed\":\"yes\",\"highlight\":\"yes\",\"highlight_color\":\"#bc1705\",\"_id\":\"d7eceed\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"}],\"rows_padding\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false},\"rows_divider_style\":\"solid\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"hours_typography_typography\":\"custom\",\"hours_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0f8baac\",\"pp_condition_date_time_before_value\":\"2024-08-01 07:08\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"rows_divider_color\":\"\",\"day_color\":\"globals\\/colors?id=astglobalcolor5\",\"hours_color\":\"globals\\/colors?id=astglobalcolor5\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"hours_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"rows_divider_color\":\"#8E8F8F3D\",\"day_color\":\"#FFFFFF\",\"hours_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"pp-business-hours\"},{\"id\":\"43e82eab\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"title\":\"To reach the office after hours\",\"header_size\":\"h4\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"500\",\"pp_display_conditions\":[{\"_id\":\"15b2e0d\",\"pp_condition_date_time_before_value\":\"2024-08-11 07:15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56118585\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"text\":\"Call Us 888-510-1879\",\"link\":{\"url\":\"tel:8885101879\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"42b3e40\",\"pp_condition_date_time_before_value\":\"2024-08-11 07:15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"hover_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1751d596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"a5ac8b4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f58036e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5227ac0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b0f7742\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\"}]},\"elements\":[{\"id\":\"93d7aaa\",\"elType\":\"widget\",\"settings\":{\"address\":\"10777 Westheimer Rd, Houston, TX 77042, USA\",\"height\":{\"unit\":\"px\",\"size\":412,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"c7478ab\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}]'),
(5237, 12, '_elementor_edit_mode', 'builder'),
(5238, 12, '_astra_content_layout_flag', 'disabled'),
(5239, 12, 'ast-title-bar-display', 'disabled'),
(5240, 12, '_elementor_template_type', 'wp-page'),
(5241, 12, '_elementor_version', '3.34.2'),
(5242, 12, '_elementor_pro_version', '3.34.2'),
(5257, 12, '_elementor_data', '[{\"id\":\"bc434c0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"85ae5f7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"329d021\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores tjenester\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"15f3e6c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"flex_direction_mobile_extra\":\"column\",\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20}},\"elements\":[{\"id\":\"1490168\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"968d8b2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"title_text\":\"T\\u00d8MRERARBEJDE\",\"description_text\":\"Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:\\n\\n\",\"title_size\":\"h4\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"662ea50\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/tomrerarbejde\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cc9bbae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"afb00f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"ef0f12b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"title_text\":\"TAGD\\u00c6KNING\",\"description_text\":\"Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.\",\"title_size\":\"h4\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"fc9e68b\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/tagdaekning\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cc9bbae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5245, 570, '_elementor_edit_mode', 'builder'),
(5246, 570, '_elementor_template_type', 'wp-page'),
(5247, 570, '_elementor_version', '3.34.2'),
(5248, 570, '_elementor_pro_version', '3.34.2'),
(5249, 570, '_elementor_page_settings', 'a:0:{}'),
(5251, 571, '_elementor_edit_mode', 'builder'),
(5252, 571, '_elementor_template_type', 'wp-page'),
(5253, 571, '_elementor_version', '3.34.2'),
(5254, 571, '_elementor_pro_version', '3.34.2'),
(5255, 571, '_elementor_page_settings', 'a:0:{}'),
(5256, 12, '_wp_page_template', 'default'),
(6410, 683, '_elementor_edit_mode', 'builder'),
(5284, 575, '_elementor_edit_mode', 'builder'),
(5285, 575, '_elementor_template_type', 'wp-page'),
(5286, 575, '_elementor_version', '3.34.2'),
(5259, 572, '_elementor_edit_mode', 'builder'),
(5260, 572, '_elementor_template_type', 'wp-page'),
(5261, 572, '_elementor_version', '3.34.2'),
(5262, 572, '_elementor_pro_version', '3.34.2'),
(5263, 572, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5264, 572, '_elementor_data', '[{\"id\":\"3116faf\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f43e21\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9d749f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e24a3a2\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"9d704bc\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"8fe03fe\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"ab28497\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"8e879e0\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"765b7c7\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"9b641f7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"947c814\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a129ac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(5287, 575, '_elementor_pro_version', '3.34.2'),
(5268, 573, '_elementor_edit_mode', 'builder'),
(5269, 573, '_elementor_template_type', 'wp-page'),
(5270, 573, '_elementor_version', '3.34.2'),
(5271, 573, '_elementor_pro_version', '3.34.2'),
(5272, 573, '_wp_page_template', 'default'),
(5273, 573, '_elementor_data', '[{\"id\":\"3116faf\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f43e21\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9d749f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e24a3a2\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"9d704bc\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"8fe03fe\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"ab28497\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"8e879e0\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"765b7c7\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"9b641f7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"947c814\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a129ac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(5274, 573, '_elementor_page_settings', 'a:0:{}'),
(5276, 574, '_elementor_edit_mode', 'builder'),
(5277, 574, '_elementor_template_type', 'wp-page'),
(5278, 574, '_elementor_version', '3.34.2'),
(5279, 574, '_elementor_pro_version', '3.34.2'),
(5280, 574, '_wp_page_template', 'default'),
(5281, 574, '_elementor_data', '[{\"id\":\"3116faf\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f43e21\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9d749f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e24a3a2\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"9d704bc\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"8fe03fe\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"ab28497\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"8e879e0\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"765b7c7\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"9b641f7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"947c814\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a129ac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(5282, 574, '_elementor_page_settings', 'a:0:{}'),
(5288, 575, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5289, 575, '_elementor_data', '[{\"id\":\"3116faf\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d749f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e24a3a2\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h5\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"9d704bc\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h5\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"8fe03fe\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h5\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"ab28497\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h5\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"8e879e0\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"title_tag\":\"h5\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"765b7c7\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h5\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"9b641f7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"947c814\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a129ac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(5293, 576, '_elementor_edit_mode', 'builder'),
(5294, 576, '_elementor_template_type', 'wp-page'),
(5295, 576, '_elementor_version', '3.34.2'),
(5296, 576, '_elementor_pro_version', '3.34.2'),
(5297, 576, '_wp_page_template', 'default'),
(5298, 576, '_elementor_data', '[{\"id\":\"3116faf\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d749f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e24a3a2\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h5\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"9d704bc\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h5\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"8fe03fe\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h5\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"ab28497\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h5\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"8e879e0\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"title_tag\":\"h5\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"765b7c7\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h5\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"9b641f7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"947c814\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a129ac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(5299, 576, '_elementor_page_settings', 'a:0:{}'),
(6510, 693, '_wp_page_template', 'default'),
(6511, 693, '_elementor_data', '[{\"id\":\"bc434c0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"85ae5f7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"329d021\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores tjenester\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"15f3e6c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1490168\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"968d8b2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"title_text\":\"T\\u00d8MRERARBEJDE\",\"description_text\":\"Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:\\n\\n\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"afb00f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"ef0f12b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"title_text\":\"TAGD\\u00c6KNING\",\"description_text\":\"Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5301, 577, '_elementor_edit_mode', 'builder'),
(5302, 577, '_elementor_template_type', 'wp-page'),
(5303, 577, '_elementor_version', '3.34.2'),
(5304, 577, '_elementor_pro_version', '3.34.2'),
(5305, 577, '_wp_page_template', 'default'),
(5306, 577, '_elementor_data', '[{\"id\":\"3116faf\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d749f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e24a3a2\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h5\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"9d704bc\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h5\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"8fe03fe\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h5\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"ab28497\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h5\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"8e879e0\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"title_tag\":\"h5\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"765b7c7\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h5\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"9b641f7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"947c814\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a129ac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(5307, 577, '_elementor_page_settings', 'a:0:{}'),
(6352, 677, '_elementor_edit_mode', 'builder'),
(6353, 677, '_elementor_template_type', 'wp-page'),
(6354, 677, '_elementor_version', '3.34.2'),
(6355, 677, '_elementor_pro_version', '3.34.2'),
(6356, 677, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6357, 677, '_elementor_data', '[{\"id\":\"3116faf\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d749f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e24a3a2\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"T\\u00d8MRERARBEJDE\",\"title_tag\":\"h5\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"9d704bc\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"TAGD\\u00c6KNING\",\"title_tag\":\"h5\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"9b641f7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"947c814\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores tjenester\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false}]'),
(6124, 655, '_elementor_edit_mode', 'builder'),
(6125, 655, '_elementor_template_type', 'wp-page'),
(6126, 655, '_elementor_version', '3.34.2'),
(6127, 655, '_elementor_pro_version', '3.34.2'),
(6128, 655, '_wp_page_template', 'default'),
(6129, 655, '_elementor_data', '[{\"id\":\"3116faf\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d749f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e24a3a2\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h5\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"9d704bc\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h5\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"8fe03fe\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h5\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"ab28497\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h5\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"8e879e0\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"title_tag\":\"h5\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"765b7c7\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\",\"id\":411,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Specialtilpassede l\\u00f8sninger\",\"title_tag\":\"h5\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"9b641f7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"947c814\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a129ac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5fff8c9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"47616c5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}]},\"elements\":[{\"id\":\"d7c6a99\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f5cb5ac\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"732bc0a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Terrasser\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5be015b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Terrasser er et af vores kerneomr\\u00e5der. Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5 korrekt opbygning, stabilitet og finish, da det er afg\\u00f8rende for b\\u00e5de holdbarhed og udseende.<\\/p><p>Vi arbejder gerne med h\\u00e5rdttr\\u00e6sterrasser og foretr\\u00e6kker tr\\u00e6sorter som cumaru, ip\\u00e9 og thermobehandlet tr\\u00e6, da disse materialer har:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d75ad83\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"h\\u00f8j naturlig holdbarhed\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"god modstandsdygtighed over for fugt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"et flot og tidl\\u00f8st udtryk\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5089be2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Med korrekt montage giver disse tr\\u00e6sorter terrasser, der \\u00e6ldes p\\u00e6nt og kr\\u00e6ver minimal vedligeholdelse.<\\/p><p>Vi r\\u00e5dgiver altid om materialevalg, opbygning og vedligeholdelse, s\\u00e5 l\\u00f8sningen passer til b\\u00e5de huset, omgivelserne og kundens behov.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(5309, 578, '_elementor_edit_mode', 'builder'),
(5310, 578, '_elementor_template_type', 'wp-page'),
(5311, 578, '_elementor_version', '3.34.2'),
(5312, 578, '_elementor_pro_version', '3.34.2'),
(5313, 578, '_wp_page_template', 'default'),
(5314, 578, '_elementor_data', '[{\"id\":\"3116faf\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d749f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e24a3a2\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h5\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"9d704bc\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h5\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"8fe03fe\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h5\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"ab28497\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h5\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"8e879e0\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"title_tag\":\"h5\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"765b7c7\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h5\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"9b641f7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"947c814\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a129ac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5fff8c9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"47616c5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}]},\"elements\":[{\"id\":\"d7c6a99\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f5cb5ac\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"732bc0a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Terrasser\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5be015b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Terrasser er et af vores kerneomr\\u00e5der. Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5 korrekt opbygning, stabilitet og finish, da det er afg\\u00f8rende for b\\u00e5de holdbarhed og udseende.<\\/p><p>Vi arbejder gerne med h\\u00e5rdttr\\u00e6sterrasser og foretr\\u00e6kker tr\\u00e6sorter som cumaru, ip\\u00e9 og thermobehandlet tr\\u00e6, da disse materialer har:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d75ad83\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"h\\u00f8j naturlig holdbarhed\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"god modstandsdygtighed over for fugt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"et flot og tidl\\u00f8st udtryk\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5089be2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Med korrekt montage giver disse tr\\u00e6sorter terrasser, der \\u00e6ldes p\\u00e6nt og kr\\u00e6ver minimal vedligeholdelse.<\\/p><p>Vi r\\u00e5dgiver altid om materialevalg, opbygning og vedligeholdelse, s\\u00e5 l\\u00f8sningen passer til b\\u00e5de huset, omgivelserne og kundens behov.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(6104, 653, '_elementor_edit_mode', 'builder'),
(6105, 653, '_elementor_template_type', 'wp-page'),
(6106, 653, '_elementor_version', '3.34.2'),
(6107, 653, '_elementor_pro_version', '3.34.2'),
(6108, 653, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6109, 653, '_elementor_data', '[{\"id\":\"3116faf\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d749f8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e24a3a2\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h5\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"9d704bc\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h5\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"8fe03fe\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h5\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"ab28497\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h5\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"8e879e0\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Udskiftning og montering af d\\u00f8re og vinduer\",\"title_tag\":\"h5\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"765b7c7\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h5\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"9b641f7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"947c814\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a129ac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5fff8c9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"47616c5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}]},\"elements\":[{\"id\":\"d7c6a99\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f5cb5ac\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"732bc0a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Terrasser\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5be015b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Terrasser er et af vores kerneomr\\u00e5der. Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5 korrekt opbygning, stabilitet og finish, da det er afg\\u00f8rende for b\\u00e5de holdbarhed og udseende.<\\/p><p>Vi arbejder gerne med h\\u00e5rdttr\\u00e6sterrasser og foretr\\u00e6kker tr\\u00e6sorter som cumaru, ip\\u00e9 og thermobehandlet tr\\u00e6, da disse materialer har:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d75ad83\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"h\\u00f8j naturlig holdbarhed\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"god modstandsdygtighed over for fugt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"et flot og tidl\\u00f8st udtryk\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5089be2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Med korrekt montage giver disse tr\\u00e6sorter terrasser, der \\u00e6ldes p\\u00e6nt og kr\\u00e6ver minimal vedligeholdelse.<\\/p><p>Vi r\\u00e5dgiver altid om materialevalg, opbygning og vedligeholdelse, s\\u00e5 l\\u00f8sningen passer til b\\u00e5de huset, omgivelserne og kundens behov.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\",\"pp_condition_date_time_before_value\":\"2026-01-29 13:44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(7032, 739, '_elementor_page_settings', 'a:0:{}'),
(5319, 579, '_elementor_edit_mode', 'builder'),
(5320, 579, '_elementor_template_type', 'kit'),
(5321, 579, '_wp_page_template', 'default'),
(5322, 579, '_elementor_page_settings', 'a:38:{s:13:\"system_colors\";a:4:{i:0;a:2:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";}i:1;a:2:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";}i:2;a:2:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";}i:3;a:2:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";}}s:13:\"custom_colors\";a:0:{}s:17:\"system_typography\";a:4:{i:0;a:5:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Nekst Black\";s:22:\"typography_font_weight\";s:3:\"600\";}i:1;a:5:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Nekst Black\";s:22:\"typography_font_weight\";s:3:\"400\";}i:2;a:5:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"400\";}i:3;a:5:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"500\";}}s:17:\"custom_typography\";a:0:{}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:9:\"site_name\";s:9:\"CP-NORDIC\";s:15:\"container_width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:1240;s:5:\"sizes\";a:0:{}}s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:18:\"active_breakpoints\";a:5:{i:0;s:15:\"viewport_mobile\";i:1;s:21:\"viewport_mobile_extra\";i:2;s:15:\"viewport_tablet\";i:3;s:21:\"viewport_tablet_extra\";i:4;s:19:\"viewport_widescreen\";}s:15:\"viewport_mobile\";i:480;s:21:\"viewport_mobile_extra\";i:767;s:15:\"viewport_tablet\";i:991;s:21:\"viewport_tablet_extra\";i:1199;s:19:\"viewport_widescreen\";i:1200;s:11:\"viewport_md\";i:481;s:11:\"viewport_lg\";i:992;s:32:\"colors_enable_styleguide_preview\";s:3:\"yes\";s:15:\"activeItemIndex\";i:1;s:36:\"typography_enable_styleguide_preview\";s:3:\"yes\";s:24:\"h1_typography_typography\";s:6:\"custom\";s:25:\"h1_typography_font_family\";s:11:\"Nekst Black\";s:23:\"h1_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:60;s:5:\"sizes\";a:0:{}}s:24:\"h2_typography_typography\";s:6:\"custom\";s:23:\"h2_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:42;s:5:\"sizes\";a:0:{}}s:24:\"h3_typography_typography\";s:6:\"custom\";s:23:\"h3_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:32;s:5:\"sizes\";a:0:{}}s:24:\"h4_typography_typography\";s:6:\"custom\";s:23:\"h4_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:26;s:5:\"sizes\";a:0:{}}s:24:\"h5_typography_typography\";s:6:\"custom\";s:23:\"h5_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:22;s:5:\"sizes\";a:0:{}}s:24:\"h6_typography_typography\";s:6:\"custom\";s:23:\"h6_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:28:\"button_typography_typography\";s:6:\"custom\";s:32:\"button_typography_text_transform\";s:9:\"uppercase\";s:32:\"button_typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:25:\"h4_typography_font_family\";s:6:\"Roboto\";s:25:\"h5_typography_font_family\";s:6:\"Roboto\";s:25:\"h6_typography_font_family\";s:6:\"Roboto\";}'),
(5323, 579, '_elementor_data', '[]'),
(5324, 579, '_elementor_version', '3.34.0'),
(5325, 579, '_elementor_pro_version', '3.17.1'),
(6856, 723, '_elementor_edit_mode', 'builder'),
(6857, 723, '_elementor_template_type', 'wp-page'),
(6858, 723, '_elementor_version', '3.34.2'),
(6859, 723, '_elementor_pro_version', '3.34.2'),
(6860, 723, '_wp_page_template', 'default');
INSERT INTO `wpcn_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6861, 723, '_elementor_data', '[{\"id\":\"1429bcd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3900213\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20abf21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9e8596\"}],\"pp_display_conditions\":[{\"_id\":\"1b95672\"}],\"min_height\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"flex_justify_content\":\"center\",\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":57,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\"},{\"id\":55,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-3-copyright.jpg\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#111111\",\"background_overlay_color_b\":\"#000A66A3\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"\"}},\"elements\":[{\"id\":\"5fa6cb9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6187270\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eb878da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a10b705\"}],\"pp_display_conditions\":[{\"_id\":\"9133f3b\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86dc75e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CP NORDIC ApS\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"36db422\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"typography_font_size\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23428e4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Byggeri \\u2013 T\\u00f8mrerarbejde og tagd\\u00e6kning\",\"header_size\":\"h4\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nekst Black\",\"pp_display_conditions\":[{\"_id\":\"b159f8d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ead15d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Kontakt\",\"align\":\"center\",\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#FFFFFF\",\"pp_display_conditions\":[{\"_id\":\"2934837\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/kontakt\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"20bf3c2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"40\",\"row\":\"40\",\"isLinked\":true,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"flex_direction_tablet\":\"column-reverse\",\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e799e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ad79b95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CP NORDIC ApS er et dansk t\\u00f8mrer- og tagd\\u00e6kkerfirma startet af to unge h\\u00e5ndv\\u00e6rkere p\\u00e5 25 \\u00e5r. Virksomheden blev etableret i marts sidste \\u00e5r med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.<\\/p><p>Inden opstarten af CP NORDIC ApS har vi begge flere \\u00e5rs erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forst\\u00e5else for, hvad der fungerer i praksis \\u2013 og hvad der ikke g\\u00f8r. Da vi valgte at starte selv, var det med \\u00f8nsket om at g\\u00f8re tingene rigtigt fra starten, uden smutveje og halve l\\u00f8sninger.<\\/p>\",\"drop_cap\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b593b12\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"pp_display_conditions\":[{\"_id\":\"14663e7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/om-os\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"75a6cc7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"388fa57\",\"elType\":\"widget\",\"settings\":{\"title\":\"OM CP NORDIC ApS\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"start\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"cd30c65\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4aa6944\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"12aa6b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"05e9da5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"20b62c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"VORES FILOSOFI\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a0902e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For os handler godt h\\u00e5ndv\\u00e6rk om mere end det, man kan se p\\u00e5 overfladen. Det handler om korrekt opbygning, gennemt\\u00e6nkte l\\u00f8sninger og respekt for b\\u00e5de bygningen og kunden.\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54846fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vi l\\u00e6gger stor v\\u00e6gt p\\u00e5:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"728ff2a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"grundig planl\\u00e6gning\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"korrekt udf\\u00f8relse\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"materialer af h\\u00f8j kvalitet\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"\\u00e6rlig og tydelig kommunikation\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6aa57d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi tror p\\u00e5, at et godt resultat starter med god dialog. Derfor bruger vi tid p\\u00e5 at forst\\u00e5 kundens \\u00f8nsker og r\\u00e5dgive om de l\\u00f8sninger, der giver bedst mening \\u2013 b\\u00e5de funktionelt og \\u00f8konomisk.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"7ad6ada\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column-reverse\",\"flex_gap\":{\"column\":\"\",\"row\":\"\",\"isLinked\":true,\"unit\":\"px\",\"size\":null},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"background_background\":\"classic\",\"background_color\":\"#F2EEEC\",\"css_classes\":\"services-section\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b8d32f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle tjenester\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/tomrerarbejde\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"9c4ac80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"flex-start\",\"flex_gap\":{\"column\":\"23\",\"row\":\"23\",\"isLinked\":true,\"unit\":\"px\",\"size\":23},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_wrap\":\"wrap\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"44924f8\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\",\"id\":233,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Terrasser\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"b57ab6d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-2.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Totalrenoveringer\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"a7c9c0d\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Tilbygninger\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"},{\"id\":\"6dd400e\",\"elType\":\"widget\",\"settings\":{\"skin\":\"cover\",\"bg_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-4.jpg\",\"id\":295,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"bg_image_size\":\"full\",\"title\":\"Carporte\",\"title_tag\":\"h4\",\"description\":\"\",\"button\":\"\",\"min-height\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]},\"alignment\":\"left\",\"vertical_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Nekst Black\",\"title_typography_font_weight\":\"500\",\"title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":23.5,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"d12d092\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"overlay_color\":\"\"},\"min-height_tablet_extra\":{\"unit\":\"px\",\"size\":544,\"sizes\":[]},\"min-height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"min-height_mobile_extra\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"min-height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_element_custom_width_tablet_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"call-to-action\"}],\"isInner\":true},{\"id\":\"253b5e7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c46f4a6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0dd3605\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8db9d72\"}],\"pp_display_conditions\":[{\"_id\":\"f7edf8e\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"056c929\",\"elType\":\"widget\",\"settings\":{\"title\":\"T\\u00d8MRERARBEJDE\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f685cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi udf\\u00f8rer en bred vifte af t\\u00f8mreropgaver for private boligejere og mindre erhverv, herunder:<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"525a929\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0ca2dad\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"content_width\":\"full\",\"css_classes\":\"tagd\\u00e6kning-section\",\"flex_direction_tablet\":\"column\",\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d462bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"min_height\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/182_2-1-copyright.jpg\",\"id\":57,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]}},\"elements\":[],\"isInner\":true},{\"id\":\"c9a240e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}],\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b24049d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TAGD\\u00c6KNING\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da44154\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Inden for tagd\\u00e6kning udf\\u00f8rer vi professionelt arbejde med fokus p\\u00e5 t\\u00e6thed, korrekt opbygning og lang levetid.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e6a5e71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vores ydelser omfatter blandt andet:\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\",\"pp_display_conditions\":[{\"_id\":\"7574273\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a45ffb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2-lags tagpapl\\u00f8sninger\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Listed\\u00e6kning p\\u00e5 skr\\u00e5 flader\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Tagpap klar til sedum\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Foliearbejde\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/check-mark_5290989-7.svg\",\"id\":226},\"library\":\"svg\"},\"_id\":\"137a025\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"008c448\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Alt tagarbejde udf\\u00f8res med professionel svejsning og korrekt opbygning. Vi g\\u00e5r ikke p\\u00e5 kompromis med detaljerne, da tagets opbygning er afg\\u00f8rende for b\\u00e5de holdbarhed og funktion.<\\/p><p>Vi r\\u00e5dgiver gerne om den rette l\\u00f8sning ud fra bygningens type, h\\u00e6ldning og anvendelse.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"f7cf3c0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"18631d2\",\"elType\":\"widget\",\"settings\":{\"text\":\"L\\u00e6r mere\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ea6481d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/tagdaekning\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f5080f2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"cd55056\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"378ebc1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5380b35\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a62f618\"}],\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"52fd176\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"af888e0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dc9aa24\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"19fc3ad\"}],\"pp_display_conditions\":[{\"_id\":\"52435f2\"}]},\"elements\":[{\"id\":\"0a13297\",\"elType\":\"widget\",\"settings\":{\"title\":\"Galleri\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e900a2d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5d014e\",\"elType\":\"widget\",\"settings\":{\"gallery\":[{\"id\":413,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-2.jpg\"},{\"id\":412,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-1.jpg\"},{\"id\":411,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-9.jpg\"},{\"id\":410,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-8.jpg\"},{\"id\":409,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-7.jpg\"},{\"id\":408,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-6.jpg\"},{\"id\":407,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-item-5.jpg\"},{\"id\":278,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-3.jpg\"},{\"id\":233,\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/CP-NORDIC-ApS-img-1.jpg\"}],\"galleries\":[{\"gallery_title\":\"New Gallery\",\"_id\":\"1f30203\"}],\"columns\":3,\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"aspect_ratio\":\"1:1\",\"thumbnail_image_size\":\"full\",\"show_all_galleries_label\":\"All\",\"pp_display_conditions\":[{\"_id\":\"b33a66d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"gallery\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f80ef3f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"60\",\"row\":\"60\",\"isLinked\":true,\"unit\":\"px\",\"size\":60},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ee80c85\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8bf124\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"83af810\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4fd1344\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"51b946b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"b1e2243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/616053345_122151193490928164_8199765515366368063_n.jpg\",\"id\":164,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"83e2586\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ace13a9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f2bb117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6e6b695\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bcf4be4\"}],\"pp_display_conditions\":[{\"_id\":\"3e9e59d\"}]},\"elements\":[{\"id\":\"0d51da2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Carpentry\",\"header_size\":\"h1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c9eb500\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70ff71a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terraces\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/restaurant_14493881.svg\",\"id\":165},\"library\":\"svg\"},\"_id\":\"eb44e60\"},{\"text\":\"Total renovations\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/eco-home_4317441.svg\",\"id\":166},\"library\":\"svg\"},\"_id\":\"8af7f78\"},{\"text\":\"Extensions\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/jigsaw_3318186.svg\",\"id\":167},\"library\":\"svg\"},\"_id\":\"45422a1\"},{\"text\":\"Carports\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/garage-house_17118001.svg\",\"id\":168},\"library\":\"svg\"},\"_id\":\"137a025\"},{\"text\":\"Doors & windows\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/exit_14156757.svg\",\"id\":169},\"library\":\"svg\"},\"_id\":\"ff69431\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Roboto\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"pp_display_conditions\":[{\"_id\":\"1eb871c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ef6011c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"244084f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d2070c3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a8e9aab\"}],\"pp_display_conditions\":[{\"_id\":\"8caeffe\"}],\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dd776\",\"elType\":\"widget\",\"settings\":{\"title\":\"ANMELDELSER\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"a7d1767\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d10dbe5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=2&w_id=ah-type-2-1&score=1&images=0&items=5&corners=1&bgcolor=f8f8f8&fcolor=000\'><\\/script><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-2-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"c1804e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi s\\u00e6tter stor pris p\\u00e5 feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br \\/>Du kan l\\u00e6se anmeldelser og vurderinger af vores arbejde p\\u00e5 Anmeld H\\u00e5ndv\\u00e6rker:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"f0eba15\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78195b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Se alle ANMELDELSER\",\"link\":{\"url\":\"https:\\/\\/www.anmeld-haandvaerker.dk\\/tomrer\\/cp-nordic-aps\",\"is_external\":\"on\",\"nofollow\":\"on\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"fa46f5a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8ddf149\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script src=\'\\/\\/anmeld-haandvaerker.dk\\/sites\\/all\\/themes\\/ah\\/js\\/ah.embed.js?id=1826265&type=4&w_id=ah-type-4-1&bgcolor=f8f8f8&fcolor=000\'><\\/script>\\r\\n<div class=\'smileywrapper\' id=\'ah-type-4-1\'><\\/div>\",\"pp_display_conditions\":[{\"_id\":\"51a55aa\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false},{\"id\":\"6a78c4e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9fd62a5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8f8900b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8dd36d3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7cb700f\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1340,\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7818ce2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5346448\",\"elType\":\"widget\",\"settings\":{\"title\":\"HVORFOR V\\u00c6LGE CP NORDIC ApS?\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0dfa847\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79206f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>N\\u00e5r du v\\u00e6lger CP NORDIC ApS, f\\u00e5r du:<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"44023b8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f386ca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"867fb4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e2af41\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"861ff0f\"}],\"pp_display_conditions\":[{\"_id\":\"c3a9147\"}],\"flex_gap_mobile_extra\":{\"column\":\"15\",\"row\":\"15\",\"isLinked\":true,\"unit\":\"px\",\"size\":15},\"flex_wrap_tablet\":\"wrap\",\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c5f605d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7463379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/teamwork_4546121.svg\",\"id\":472},\"library\":\"svg\"},\"title_text\":\"et ungt og engageret team\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c9d127\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"c359ae7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/effective_1401921.svg\",\"id\":474},\"library\":\"svg\"},\"title_text\":\"fokus p\\u00e5 kvalitet og detaljer\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"283d96c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b4f452\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/communication_18765280.svg\",\"id\":479},\"library\":\"svg\"},\"title_text\":\"\\u00e6rlig<br> r\\u00e5dgivning\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"bc5745d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"4803ab1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/brainstorming_11663441.svg\",\"id\":480},\"library\":\"svg\"},\"title_text\":\"gennemt\\u00e6nkte l\\u00f8sninger\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c0f2190\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"47168e6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fdfafd3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4752b6d\"}],\"border_border\":\"none\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D1D5DB\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":20,\"spread\":3,\"color\":\"rgba(0, 0, 0, 0.02)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"20cd03d\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor7\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"327bd23\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/like_3941426.svg\",\"id\":481},\"library\":\"svg\"},\"title_text\":\"arbejde udf\\u00f8rt med ansvar\",\"description_text\":\"\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e26d713\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2bc9769\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Vi lover ikke mere, end vi kan holde \\u2013 men vi holder det, vi lover.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"2a1d8fc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6323910b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c716079\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8d8cde4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91bf5fb\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f0f407d\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor6\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor8\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/cpnordic\\/wp-content\\/uploads\\/2026\\/01\\/wood-background-1-e1738912619419.jpg\",\"id\":510,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85,\"sizes\":[]}},\"elements\":[{\"id\":\"640d38eb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e8fecf1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"47aa9bd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ba2a4c2\"}],\"pp_display_conditions\":[{\"_id\":\"9af28ac\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"flex_direction_tablet\":\"column\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"75253fe5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3566883\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"44d795c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a2f785a\"}],\"pp_display_conditions\":[{\"_id\":\"3ebda5b\",\"pp_condition_date_time_before_value\":\"2024-06-28 12:32\"}],\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"animation\":\"none\",\"animation_duration\":\"slow\",\"background_background\":\"classic\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"641310a\",\"elType\":\"widget\",\"settings\":{\"title\":\"KONTAKT OS\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee94578\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7fea00\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Har du et projekt i tankerne, eller \\u00f8nsker du at h\\u00f8re mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"68d73b3\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14202595\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"bb6ac82\",\"field_label\":\"Navn\",\"required\":\"true\",\"custom_id\":\"field_bb6ac82\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"email\",\"field_label\":\"Email\",\"required\":\"true\",\"custom_id\":\"field_6986e48\",\"_id\":\"6986e48\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"field_type\":\"tel\",\"field_label\":\"Telefon\",\"required\":\"true\",\"custom_id\":\"field_7683f73\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"_id\":\"7683f73\"},{\"field_type\":\"select\",\"field_label\":\"Tjenesters navn\",\"required\":\"true\",\"custom_id\":\"field_9de44bc\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Terrasser\\nTotalrenoveringer\\nTilbygninger\\nCarporte\\nTAGD\\u00c6KNING\",\"width\":\"50\",\"_id\":\"9de44bc\"},{\"_id\":\"d10992d\",\"field_type\":\"textarea\",\"field_label\":\"Beskeder\",\"custom_id\":\"field_d10992d\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"pp_display_conditions\":[{\"_id\":\"b2b3b7b\",\"pp_condition_date_time_before_value\":\"2024-07-14 17:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"input_size\":\"lg\",\"button_size\":\"lg\",\"column_gap\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"field_border_color\":\"#ADADAD\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"field_border_color\":\"\",\"_background_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\",\"label_color\":\"globals\\/colors?id=astglobalcolor4\"},\"button_background_color\":\"#4951b2\",\"button_background_hover_color\":\"#0da4f7\",\"_background_color\":\"#383838CC\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#DDDDDD24\",\"form_metadata\":[\"date\",\"time\"],\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"CP-NORDIC\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"CP-NORDIC\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"CP-NORDIC\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"label_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Roboto\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"label_typography_font_weight\":\"400\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Roboto\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"field_typography_font_weight\":\"400\",\"_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');

-- --------------------------------------------------------

--
-- Table structure for table `wpcn_posts`
--

CREATE TABLE `wpcn_posts` (
  `ID` bigint(20) UNSIGNED NOT NULL,
  `post_author` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_content` longtext NOT NULL,
  `post_title` text NOT NULL,
  `post_excerpt` text NOT NULL,
  `post_status` varchar(20) NOT NULL DEFAULT 'publish',
  `comment_status` varchar(20) NOT NULL DEFAULT 'open',
  `ping_status` varchar(20) NOT NULL DEFAULT 'open',
  `post_password` varchar(255) NOT NULL DEFAULT '',
  `post_name` varchar(200) NOT NULL DEFAULT '',
  `to_ping` text NOT NULL,
  `pinged` text NOT NULL,
  `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_content_filtered` longtext NOT NULL,
  `post_parent` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `guid` varchar(255) NOT NULL DEFAULT '',
  `menu_order` int(11) NOT NULL DEFAULT 0,
  `post_type` varchar(20) NOT NULL DEFAULT 'post',
  `post_mime_type` varchar(100) NOT NULL DEFAULT '',
  `comment_count` bigint(20) NOT NULL DEFAULT 0
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `wpcn_posts`
--

INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(21, 1, '2026-02-14 12:14:17', '2026-01-25 11:48:56', ' ', '', '', 'publish', 'closed', 'closed', '', '21', '', '', '2026-02-14 12:14:17', '2026-02-14 12:14:17', '', 0, 'https://mrarif.me/cpnordic/?p=21', 1, 'nav_menu_item', '', 0),
(55, 1, '2026-01-25 13:05:25', '2026-01-25 13:05:25', '', '182_2-3-copyright', '', 'inherit', 'open', 'closed', '', '182_2-3-copyright', '', '', '2026-01-25 13:05:25', '2026-01-25 13:05:25', '', 0, 'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/182_2-3-copyright.jpg', 0, 'attachment', 'image/jpeg', 0),
(23, 1, '2026-02-14 12:14:17', '2026-01-25 11:48:56', ' ', '', '', 'publish', 'closed', 'closed', '', '23', '', '', '2026-02-14 12:14:17', '2026-02-14 12:14:17', '', 0, 'https://mrarif.me/cpnordic/?p=23', 7, 'nav_menu_item', '', 0),
(671, 1, '2026-01-26 14:52:03', '2026-01-26 14:52:03', '', 'ANMELDELSER', '', 'inherit', 'closed', 'closed', '', '668-revision-v1', '', '', '2026-01-26 14:52:03', '2026-01-26 14:52:03', '', 668, 'https://mrarif.me/cpnordic/?p=671', 0, 'revision', '', 0),
(25, 1, '2026-02-14 12:14:17', '2026-01-25 11:48:56', ' ', '', '', 'publish', 'closed', 'closed', '', '25', '', '', '2026-02-14 12:14:17', '2026-02-14 12:14:17', '', 0, 'https://mrarif.me/cpnordic/?p=25', 2, 'nav_menu_item', '', 0),
(26, 1, '2026-01-25 11:50:43', '2026-01-25 11:50:43', '', 'Default Kit', '', 'publish', 'closed', 'closed', '', 'default-kit', '', '', '2026-01-26 15:11:25', '2026-01-26 15:11:25', '', 0, 'https://mrarif.me/cpnordic/?p=26', 0, 'elementor_library', '', 0),
(30, 1, '2026-01-25 12:01:43', '2026-01-25 12:01:43', '<img width=\"2560\" height=\"1157\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-scaled.png\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-scaled.png 2560w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-300x136.png 300w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-1024x463.png 1024w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-768x347.png 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-1536x694.png 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-2048x925.png 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />																					<a href=\"https://mrarif.me/cpnordic/kontakt/\">\n									Kontakt\n					</a>', 'Header', '', 'publish', 'closed', 'closed', '', 'header', '', '', '2026-01-26 14:40:52', '2026-01-26 14:40:52', '', 0, 'https://mrarif.me/cpnordic/?post_type=elementor_library&#038;p=30', 0, 'elementor_library', '', 0),
(31, 1, '2026-01-25 12:03:47', '2026-01-25 12:03:47', '<ul>\n							<li>\n											<a href=\"tel:XXX-XXX-XXX\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										XXX-XXX-XXX\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@gmail.com\n											</a>\n									</li>\n						</ul>\n					<a href=\"https://www.facebook.com/modernhomecarehh/\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"https://www.instagram.com/modernhomecarellc?fbclid=IwZXh0bgNhZW0CMTAAAR2vcF8ghFhyPcka4WAqv2s18S8Bmgs7v24ryKWPZSfs1S7ukdm-Tlgyn2Y_aem_wYugYGBVO_28k3uF4EikcA\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n					<a href=\"https://www.youtube.com/@modernhomecare\" target=\"_blank\">\n						Youtube\n						<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z\"></path></svg>					</a>\n																	<img src=\"https://mrarif.me/cpnordic/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />																		<ul>\n							<li>\n											<a href=\"tel:XXX-XXX-XXX\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										XXX-XXX-XXX\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@gmail.com\n											</a>\n									</li>\n						</ul>\n					<a href=\"https://www.instagram.com/cffhealthcare/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n					<a href=\"https://twitter.com/cffhealthcare\" target=\"_blank\">\n						X-twitter\n						<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M389.2 48h70.6L305.6 224.2 487 464H345L233.7 318.6 106.5 464H35.8L200.7 275.5 26.8 48H172.4L272.9 180.9 389.2 48zM364.4 421.8h39.1L151.1 88h-42L364.4 421.8z\"></path></svg>					</a>\n					<a href=\"https://www.linkedin.com/cffhealthcare?_l=en_US\" target=\"_blank\">\n						Linkedin-in\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z\"></path></svg>					</a>\n					<a href=\"https://www.facebook.com/cffhealthcare\" target=\"_blank\">\n						Facebook\n						<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256C504 119 393 8 256 8S8 119 8 256c0 123.78 90.69 226.38 209.25 245V327.69h-63V256h63v-54.64c0-62.15 37-96.48 93.67-96.48 27.14 0 55.52 4.84 55.52 4.84v61h-31.28c-30.8 0-40.41 19.12-40.41 38.73V256h68.78l-11 71.69h-57.78V501C413.31 482.38 504 379.78 504 256z\"></path></svg>					</a>\n																	<img src=\"https://mrarif.me/cpnordic/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />																					<a role=\"button\">\n									Book Now \n					</a>\n						<p>Pharmaceutical, Medical Device, and Biotech life sciences consulting firm.</p>			<h5>Quick Links</h5>							<ul>\n							<li>\n										Home\n									</li>\n								<li>\n										About Us\n									</li>\n								<li>\n										Our Approach\n									</li>\n								<li>\n										Industries\n									</li>\n								<li>\n										Practice Areas\n									</li>\n								<li>\n										Resources\n									</li>\n								<li>\n										Free Checklists\n									</li>\n								<li>\n										Blog\n									</li>\n								<li>\n										Press\n									</li>\n						</ul>\n							<h5>Contact Info</h5>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										Location Here\n									</li>\n								<li>\n											<a href=\"tel:XXX-XXX-XXX\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										Direct:  XXX-XXX-XXX\n											</a>\n									</li>\n						</ul>\n					<a target=\"_blank\">\n						Linkedin-in\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z\"></path></svg>					</a>\n					<a target=\"_blank\">\n						Twitter\n						<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z\"></path></svg>					</a>\n					<a target=\"_blank\">\n						Youtube\n						<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z\"></path></svg>					</a>\n					<a target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n									<ul>\n							<li>\n										© Copyright 2024 all rights reserved\n									</li>\n						</ul>\n									<ul>\n							<li>\n										Privacy Statement\n									</li>\n								<li>\n										Accessibility Statement\n									</li>\n						</ul>', 'Common-Template-Update', '', 'publish', 'closed', 'closed', '', 'common-template-update', '', '', '2026-01-25 12:03:47', '2026-01-25 12:03:47', '', 0, 'https://mrarif.me/cpnordic/?elementor_library=common-template-update', 0, 'elementor_library', '', 0),
(4, 0, '2026-01-25 11:12:48', '2026-01-25 11:12:48', '<!-- wp:page-list /-->', 'Navigation', '', 'publish', 'closed', 'closed', '', 'navigation', '', '', '2026-01-25 11:12:48', '2026-01-25 11:12:48', '', 0, 'https://mrarif.me/cpnordic/index.php/2026/01/25/navigation/', 0, 'wp_navigation', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(10, 1, '2026-01-25 11:20:57', '2026-01-25 11:20:57', '<h1>CP NORDIC ApS</h1>					<h4>Byggeri – Tømrerarbejde og tagdækning</h4>										<a href=\"https://mrarif.me/cpnordic/kontakt/\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS is run by two skilled craftsmen who completed their apprenticeships together in 2022. We are both 25 years old and share a strong passion for quality craftsmanship and long-lasting solutions.</p><p>We originally come from East Funen but are now based in Central Funen, from where we carry out work for both private and commercial clients. Our work ranges from carpentry and roofing to installation and specialized tasks, and we approach every project with professionalism, honesty, and attention to detail.</p>								<a href=\"https://mrarif.me/cpnordic/om-os/\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"https://mrarif.me/cpnordic/tomrerarbejde/\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>								<a href=\"https://mrarif.me/cpnordic/tagdaekning/\">\n									Lær mere\n					</a>\n									<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle ANMELDELSER\n					</a>\n					<h2>HVORFOR VÆLGE CP NORDIC ApS?</h2>		<p>Når du vælger CP NORDIC ApS, får du:</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 450 450\" width=\"512\"><g><g><path d=\"m225 165.2c-25.9 0-48.9-18.8-53.3-45.2-2.4-14.2.9-28.6 9.3-40.3 8.4-11.8 20.9-19.5 35.1-21.9 29.4-4.9 57.3 15 62.2 44.5 4.9 29.4-15 57.3-44.4 62.2-3 .5-6 .7-8.9.7zm-7.6-99.8c-12.2 2-22.9 8.7-30.1 18.8s-10.1 22.4-8 34.6c3.8 22.7 23.5 38.8 45.7 38.8 2.5 0 5.1-.2 7.6-.6 25.2-4.2 42.3-28.1 38.1-53.4s-28.1-42.4-53.3-38.2z\"></path><path d=\"m255.2 115c-2.1 0-3.8-1.7-3.8-3.8 0-14.6-11.8-26.4-26.4-26.4-2.1 0-3.8-1.7-3.8-3.8s1.7-3.8 3.8-3.8c18.8 0 34.1 15.3 34.1 34.1 0 2-1.8 3.7-3.9 3.7z\"></path><path d=\"m236.1 203h-22.2c-2.1 0-3.8-1.7-3.8-3.8v-14.1c-3.1-.6-6.1-1.4-9.1-2.4l-7 12.2c-1.1 1.8-3.4 2.5-5.3 1.4l-19.2-11.1c-.9-.5-1.5-1.4-1.8-2.3-.3-1-.1-2 .4-2.9l7-12.1c-2.4-2.1-4.6-4.3-6.7-6.6l-12.1 7c-1.8 1.1-4.2.4-5.2-1.4l-11.1-19.2c-1.1-1.8-.4-4.2 1.4-5.2l11.9-6.8c-1-3-1.9-6.1-2.6-9.3h-13.7c-2.1 0-3.8-1.7-3.8-3.8v-22.2c0-2.1 1.7-3.8 3.8-3.8h13.4c.6-3.2 1.4-6.4 2.4-9.5l-11.5-6.6c-1.8-1.1-2.5-3.4-1.4-5.3l11.1-19.6c.5-.9 1.4-1.5 2.3-1.8s2-.1 2.9.4l11.3 6.6c2.2-2.5 4.5-4.8 7-7l-6.5-11.3c-.5-.9-.6-1.9-.4-2.9.3-1 .9-1.8 1.8-2.3l19.2-11.1c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l6.4 11.2c3.1-1.1 6.4-1.9 9.7-2.6v-13c0-2.1 1.7-3.8 3.8-3.8h22.2c2.1 0 3.8 1.7 3.8 3.8v12.8c3.3.7 6.5 1.5 9.7 2.6l6.5-11.2c.5-.9 1.4-1.5 2.3-1.8 1-.3 2-.1 2.9.4l19.2 11.1c.9.5 1.5 1.3 1.8 2.3s.1 2-.4 2.9l-6.5 11.3c2.5 2.2 4.8 4.5 7 7.1l11.3-6.6c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l11.1 19.2c1.1 1.8.4 4.2-1.4 5.3l-11.5 6.6c1 3.1 1.8 6.3 2.5 9.5h13.6c2.1 0 3.8 1.7 3.8 3.8v22.2c0 2.1-1.7 3.8-3.8 3.8h-13.6c-.6 3.1-1.5 6.2-2.5 9.3l11.9 6.8c1.8 1.1 2.5 3.4 1.4 5.2l-11.2 19.5c-1.1 1.8-3.4 2.5-5.2 1.4l-12-7c-2.1 2.4-4.4 4.6-6.7 6.6l7 12.1c.5.9.6 1.9.4 2.9s-.9 1.8-1.8 2.3l-19.2 11.1c-1.8 1.1-4.2.4-5.2-1.4l-7-12.2c-3 1-6 1.8-9.1 2.4v14.1c-.2 2.3-2 4-4.1 4zm-18.4-7.7h14.5v-13.5c0-1.9 1.4-3.5 3.3-3.8 4.7-.7 9.4-2 13.8-3.7 1.8-.7 3.8 0 4.7 1.7l6.7 11.6 12.6-7.3-6.7-11.6c-1-1.6-.5-3.7.9-4.9 3.7-3 7.2-6.4 10.2-10.1 1.2-1.5 3.3-1.8 4.9-.9l11.5 6.6 7.3-12.6-11.3-6.5c-1.6-.9-2.4-3-1.6-4.7 1.8-4.5 3.1-9.2 3.9-14 .3-1.9 1.9-3.2 3.8-3.2h13v-14.6h-12.8c-1.9 0-3.5-1.4-3.8-3.3-.7-4.8-2-9.6-3.7-14.2-.7-1.8 0-3.7 1.7-4.7l10.9-6.3-7.3-12.6-10.8 6.3c-1.6.9-3.7.6-4.9-.9-3.1-3.9-6.6-7.4-10.4-10.6-1.5-1.2-1.9-3.3-.9-4.9l6.2-10.7-12.6-7.3-6.1 10.6c-1 1.6-3 2.3-4.7 1.7-4.6-1.8-9.5-3.1-14.4-3.9-1.9-.3-3.3-1.9-3.3-3.8v-12.2h-14.5v12.3c0 1.9-1.4 3.5-3.3 3.8-5 .8-9.8 2.1-14.4 3.9-1.8.7-3.8 0-4.7-1.7l-6.1-10.6-12.6 7.3 6.2 10.7c.9 1.6.6 3.7-.9 4.9-3.9 3.1-7.4 6.7-10.4 10.6-1.2 1.5-3.3 1.9-4.9.9l-10.8-6.3-7.3 12.6 10.9 6.3c1.6.9 2.3 2.9 1.7 4.7-1.7 4.6-3 9.4-3.7 14.2-.3 1.9-1.9 3.3-3.8 3.3h-12.8v14.5h13c1.9 0 3.5 1.4 3.8 3.2.8 4.8 2.1 9.5 3.9 14 .7 1.8 0 3.8-1.6 4.7l-11.3 6.5 7.3 12.6 11.5-6.6c1.6-.9 3.7-.6 4.9.9 3 3.7 6.5 7.1 10.3 10.1 1.5 1.2 1.9 3.3.9 4.9l-6.7 11.6 12.6 7.3 6.7-11.6c.9-1.6 2.9-2.3 4.7-1.7 4.5 1.7 9.1 2.9 13.8 3.7 1.9.3 3.3 1.9 3.3 3.8z\"></path></g><g><g><g><path d=\"m45.3 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m153.9 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path></g><g><path d=\"m189.3 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.2c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c0 2.1-1.7 3.8-3.8 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m73.3 326.4c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m126 326.4c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m99.7 325.6c-.6 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4s4.1 1.1 4.4 3.2c2.4 16.5 12.3 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m50.2 266.6c-.1 0-.2 0-.3 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.7 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-8.9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.5 2.2zm81.8-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13.1-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.4-.7 2.3-.7z\"></path></g></g></g><g><g><path d=\"m296.1 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m404.7 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path></g><g><path d=\"m440 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.1c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c.2 2.1-1.6 3.8-3.7 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m324 326.3c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m376.7 326.3c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m350.4 325.6c-.5 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4 2.1-.3 4 1.1 4.4 3.2 2.4 16.5 12.4 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m301 266.6c-.1 0-.2 0-.4 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.6 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.4 2.2zm81.7-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.5-.7 2.3-.7z\"></path></g></g></g></g></g></svg>				\n									<h5>\n							et ungt og engageret team						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"496pt\" viewBox=\"0 0 496 496\" width=\"496pt\"><path d=\"m440 328h-28.207031c5.078125-6.703125 8.207031-14.960938 8.207031-24 0-8.824219-7.175781-16-16-16h-12v-19.960938c59.574219-14.445312 104-68.085937 104-132.039062 0-74.992188-61.007812-136-136-136s-136 61.007812-136 136c0 63.953125 44.425781 117.59375 104 132.039062v19.960938h-8.449219c-6.167969 0-12.359375 1.464844-17.886719 4.214844l-50.480468 25.25c-3.320313 1.664062-7.03125 2.535156-10.734375 2.535156h-40.449219v-16h-104v16h56v56h16v-56h16v128h-16v-56h-16v56h-56v16h104v-16h40.449219c3.703125 0 7.414062.871094 10.734375 2.527344l34.488281 17.25c5.519531 2.757812 11.710937 4.222656 17.878906 4.222656h24.449219v24h64v-24h48c13.230469 0 24-10.769531 24-24 0-6.167969-2.40625-11.742188-6.238281-16 3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16 0-13.230469-10.769531-24-24-24zm8 24c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm-208-280c0-66.167969 53.832031-120 120-120s120 53.832031 120 120-53.832031 120-120 120-120-53.832031-120-120zm104 134.976562c5.257812.617188 10.574219 1.023438 16 1.023438s10.742188-.40625 16-1.023438v17.023438h-32zm-40.449219 185.023438c-3.703125 0-7.414062-.871094-10.734375-2.527344l-34.488281-17.25c-5.519531-2.757812-11.710937-4.222656-17.878906-4.222656h-40.449219v-96h40.449219c6.167969 0 12.359375-1.464844 17.886719-4.214844l50.480468-25.25c3.320313-1.664062 7.03125-2.535156 10.734375-2.535156h84.449219c0 13.230469-10.769531 24-24 24h-48.28125l-23.863281 35.808594c-6.101563 9.160156-14.527344 16.589844-24.367188 21.503906-8.753906 4.375-18.542969 6.6875-28.320312 6.6875h-15.167969v16h15.167969c12.246093 0 24.519531-2.894531 35.472656-8.375 12.328125-6.160156 22.878906-15.480469 30.527344-26.945312l6.832031-10.253907v93.574219zm40.449219 24v-136h17.472656c-.898437 2.511719-1.472656 5.183594-1.472656 8 0 6.167969 2.40625 11.742188 6.238281 16-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16 0 10.414062 6.710938 19.214844 16 22.527344v9.472656zm96-24h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8s-3.59375 8-8 8zm0 0\"></path><path d=\"m394.878906 73.007812-7.757812 13.984376c17.816406 9.878906 28.878906 28.664062 28.878906 49.007812h16c0-26.160156-14.222656-50.296875-37.121094-62.992188zm0 0\"></path><path d=\"m360 80c4.734375 0 9.449219.59375 14.007812 1.769531l3.976563-15.503906c-5.855469-1.496094-11.90625-2.265625-17.984375-2.265625zm0 0\"></path><path d=\"m360 48c48.519531 0 88 39.480469 88 88 0 20.753906-7.398438 40.910156-20.832031 56.785156l12.207031 10.34375c15.882812-18.761718 24.625-42.601562 24.625-67.128906 0-57.34375-46.65625-104-104-104-24.527344 0-48.367188 8.753906-67.128906 24.632812l10.335937 12.199219c15.871094-13.433593 36.039063-20.832031 56.792969-20.832031zm0 0\"></path><path d=\"m427.128906 215.367188-10.335937-12.199219c-15.871094 13.433593-36.039063 20.832031-56.792969 20.832031-48.519531 0-88-39.480469-88-88 0-20.753906 7.398438-40.910156 20.832031-56.785156l-12.207031-10.34375c-15.882812 18.761718-24.625 42.601562-24.625 67.128906 0 57.34375 46.65625 104 104 104 24.527344 0 48.367188-8.753906 67.128906-24.632812zm0 0\"></path><path d=\"m121.214844 165.640625c4.953125-1.375 9.695312-3.34375 14.183594-5.878906l9.769531 4.886719 19.472656-19.480469-4.886719-9.769531c2.535156-4.496094 4.503906-9.230469 5.886719-14.183594l10.359375-3.445313v-27.53125l-10.351562-3.453125c-1.375-4.953125-3.34375-9.707031-5.886719-14.183594l4.886719-9.777343-19.472657-19.472657-9.769531 4.886719c-4.484375-2.535156-9.230469-4.503906-14.183594-5.878906l-3.453125-10.359375h-27.539062l-3.445313 10.359375c-4.953125 1.375-9.695312 3.34375-14.183594 5.878906l-9.777343-4.886719-19.472657 19.472657 4.886719 9.777343c-2.535156 4.488282-4.503906 9.230469-5.886719 14.183594l-10.351562 3.445313v27.53125l10.351562 3.453125c1.375 4.953125 3.34375 9.695312 5.886719 14.183594l-4.886719 9.769531 19.472657 19.480469 9.769531-4.886719c4.484375 2.535156 9.230469 4.503906 14.183594 5.878906l3.453125 10.359375h27.539062zm-12.304688-13.679687-2.679687 8.039062h-4.460938l-2.679687-8.039062-4.554688-.90625c-6.128906-1.222657-11.878906-3.605469-17.109375-7.09375l-3.867187-2.578126-7.574219 3.800782-3.160156-3.167969 3.792969-7.582031-2.578126-3.859375c-3.488281-5.222657-5.871093-10.980469-7.09375-17.109375l-.914062-4.554688-8.03125-2.679687v-4.46875l8.03125-2.671875.914062-4.554688c1.222657-6.136718 3.613282-11.886718 7.09375-17.109375l2.578126-3.859375-3.792969-7.589844 3.160156-3.160156 7.574219 3.800782 3.867187-2.578126c5.222657-3.488281 10.980469-5.863281 17.109375-7.09375l4.554688-.90625 2.679687-8.039062h4.460938l2.679687 8.039062 4.554688.90625c6.128906 1.222657 11.878906 3.605469 17.109375 7.09375l3.867187 2.578126 7.574219-3.800782 3.160156 3.160156-3.792969 7.589844 2.578126 3.859375c3.488281 5.214844 5.871093 10.972657 7.09375 17.109375l.914062 4.554688 8.03125 2.679687v4.46875l-8.03125 2.671875-.914062 4.554688c-1.222657 6.128906-3.613282 11.878906-7.09375 17.109375l-2.578126 3.859375 3.792969 7.582031-3.160156 3.167969-7.574219-3.800782-3.867187 2.578126c-5.222657 3.488281-10.980469 5.863281-17.109375 7.09375zm0 0\"></path><path d=\"m104 72c-17.648438 0-32 14.351562-32 32s14.351562 32 32 32 32-14.351562 32-32-14.351562-32-32-32zm0 48c-8.824219 0-16-7.175781-16-16s7.175781-16 16-16 16 7.175781 16 16-7.175781 16-16 16zm0 0\"></path><path d=\"m160 248v-40h48v-208h-208v208h106.664062zm-144-232h176v176h-48v24l-32-24h-96zm0 0\"></path><path d=\"m0 272h16v16h-16zm0 0\"></path><path d=\"m32 272h16v16h-16zm0 0\"></path><path d=\"m64 272h16v16h-16zm0 0\"></path><path d=\"m32 304h16v16h-16zm0 0\"></path><path d=\"m64 304h16v16h-16zm0 0\"></path><path d=\"m0 480h16v16h-16zm0 0\"></path><path d=\"m32 480h16v16h-16zm0 0\"></path><path d=\"m64 480h16v16h-16zm0 0\"></path><path d=\"m32 448h16v16h-16zm0 0\"></path><path d=\"m64 448h16v16h-16zm0 0\"></path></svg>				\n									<h5>\n							fokus på kvalitet og detaljer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m469.12 408.93-67.26-33.63v-22.13c10.71-7.69 18.6-19.07 21.78-32.27h5.28c8.81 0 15.98-7.17 15.98-15.98v-5.29c0-6.35-3.74-11.84-9.12-14.41 5.19-18.64-1.65-39.76-19.44-59.78-12.58-14.16-30.67-22.27-49.62-22.27-18.93 0-37.01 8.12-49.59 22.27-13.38 15.05-20.95 41.01-14.03 59.62-5.56 2.5-9.45 8.09-9.45 14.57v5.29c0 8.81 7.17 15.98 15.98 15.98h5.55c3.16 13.09 10.94 24.39 21.51 32.08v22.32l-67.26 33.63c-16.7 5.87-27.89 21.6-27.89 39.28v41.63c0 3.31 2.69 6 6 6h243.46c3.31 0 6-2.69 6-6v-41.63c0-17.68-11.19-33.41-27.88-39.28zm-62.24-17.7-15.83 27.66-13.29-13.29 19.29-19.29zm-37.61 5.88-20.59-20.58v-16.91c6.41 2.57 13.4 4.01 20.72 4.01 7.22 0 14.11-1.39 20.45-3.9v16.8zm63.63-97.48v5.29c0 2.16-1.82 3.98-3.98 3.98h-3.74c.01-.36.03-.71.03-1.07v-12.18h3.71c2.15-.01 3.98 1.82 3.98 3.98zm-119.29 8.2v1.07h-3.98c-2.16 0-3.98-1.82-3.98-3.98v-5.29c0-2.16 1.82-3.98 3.98-3.98l3.98.22zm1.95-24.19c-7.33-13.69-.89-37.39 10.53-50.24 10.31-11.6 25.12-18.25 40.63-18.25 15.52 0 30.34 6.65 40.65 18.25 8.43 9.48 21.3 27.59 17.4 46.39-5.66-.35-10.67-2.55-14.4-6.36-5.37-5.49-7.72-14-6.63-23.94.29-2.62-1.17-5.13-3.6-6.17s-5.25-.37-6.95 1.65c-19.33 22.92-45.95 36.76-73.9 38.68h-3.73zm10.05 24.19v-12.73c24.57-2.92 47.92-14.05 66.73-31.8 1.43 7.26 4.63 13.6 9.45 18.52 3.27 3.35 7.14 5.89 11.41 7.58v18.42c0 24.15-19.65 43.8-43.8 43.8s-43.79-19.64-43.79-43.79zm15.89 78.48 19.29 19.29-13.29 13.29-15.84-27.66zm3.22 97.53h-39.42v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.76v-35.63c0-12.68 8.1-23.95 20.15-28.05.26-.09.51-.19.75-.31l46.47-23.23 20.07 35.06c.93 1.62 2.56 2.72 4.41 2.97.27.04.53.05.79.05 1.58 0 3.11-.62 4.24-1.76l.14-.14zm12.08 0 7.41-64.69 5.06-5.06 4.84 4.84 7.86 64.92h-25.17zm128.2 0h-39.76v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.18l-6.2-51.17.25.25c1.13 1.13 2.66 1.76 4.24 1.76.26 0 .53-.02.79-.05 1.85-.25 3.48-1.34 4.41-2.97l20.07-35.06 46.47 23.23c.24.12.49.23.75.31 12.05 4.1 20.15 15.38 20.15 28.05v35.65zm-67.04-346.65h-10.84l28.38 39.84 28.38-39.84h-10.84c-3.31 0-6-2.69-6-6v-64.58h-98.7c-3.31 0-6-2.69-6-6s2.69-6 6-6h104.7c3.31 0 6 2.69 6 6v64.58h16.48c2.25 0 4.3 1.25 5.33 3.25s.86 4.4-.45 6.23l-40.02 56.18c-1.13 1.58-2.95 2.52-4.89 2.52s-3.76-.94-4.89-2.52l-40.02-56.18c-1.3-1.83-1.48-4.23-.45-6.23s3.09-3.25 5.33-3.25h16.48v-23.5h-65.38c-3.31 0-6-2.69-6-6s2.69-6 6-6h71.38c3.31 0 6 2.69 6 6v35.5c.02 3.31-2.67 6-5.98 6zm-118.44 50.65v-133.26c0-21.18-17.23-38.41-38.41-38.41h-207.7c-21.18-.01-38.41 17.23-38.41 38.41v133.26c0 21.18 17.23 38.41 38.41 38.41h105.8l64.8 55.11c1.11.94 2.49 1.43 3.89 1.43.85 0 1.71-.18 2.52-.55 2.12-.98 3.48-3.11 3.48-5.45v-50.54h27.21c21.18 0 38.41-17.23 38.41-38.41zm-71.62 26.41c-3.31 0-6 2.69-6 6v43.56l-56.59-48.13c-1.08-.92-2.46-1.43-3.89-1.43h-108.01c-14.56 0-26.41-11.85-26.41-26.41v-133.26c0-14.56 11.85-26.41 26.41-26.41h207.69c14.56 0 26.41 11.85 26.41 26.41v133.26c0 14.56-11.85 26.41-26.41 26.41zm-156.34-87.87h56.97c3.31 0 6-2.69 6-6v-39.2l8.55-8.55c2.34-2.34 2.34-6.14 0-8.49-2.34-2.34-6.14-2.34-8.48 0l-.7.7c-.98-1.97-3.01-3.32-5.36-3.32h-56.98c-3.31 0-6 2.69-6 6v52.85c0 3.32 2.69 6.01 6 6.01zm6-52.86h44.97v2.69l-18.16 18.16-8.84-8.84c-2.34-2.34-6.14-2.34-8.49 0-2.34 2.34-2.34 6.14 0 8.49l13.08 13.08c1.17 1.17 2.71 1.76 4.24 1.76s3.07-.59 4.24-1.76l13.92-13.92v21.2h-44.96zm173.62 3.08c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 31.92c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 36.52c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.68 5.99 6zm0 31.92c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.69 5.99 6zm-119.36 165.01h10.84l-28.38-39.84-28.38 39.84h10.84c3.31 0 6 2.69 6 6v64.58h98.7c3.31 0 6 2.69 6 6s-2.69 6-6 6h-104.69c-3.31 0-6-2.69-6-6v-64.58h-16.48c-2.25 0-4.3-1.25-5.33-3.25s-.86-4.4.45-6.23l40.02-56.18c1.13-1.58 2.95-2.52 4.89-2.52s3.76.94 4.89 2.52l40.02 56.18c1.3 1.83 1.48 4.23.45 6.23s-3.09 3.25-5.33 3.25h-16.48v23.5h65.38c3.31 0 6 2.69 6 6s-2.69 6-6 6h-71.38c-3.31 0-6-2.69-6-6v-35.5c-.03-3.31 2.66-6 5.97-6z\"></path></svg>				\n									<h5>\n							ærlig<br> rådgivning						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 510 510\"><path d=\"m192.036 385.845c-4.787-46.972-19.459-64.336-30.658-82.352-8.672-13.951-15.5-28.245-15.5-54.252 0-60.242 48.865-109.109 109.135-109.109 60.242 0 109.109 48.866 109.109 109.109 0 26.007-6.828 40.301-15.5 54.252-11.199 18.016-25.871 35.38-30.658 82.352 9.985 2.864 17.345 12.101 17.345 22.975v36.44c0 13.109-10.747 23.866-23.893 23.866h-10.334v9.945c0 12.588-10.341 22.929-22.93 22.929h-46.304c-12.589 0-22.93-10.341-22.93-22.929v-9.945h-10.334c-13.146 0-23.893-10.757-23.893-23.866v-36.44c0-10.874 7.36-20.111 17.345-22.975zm111.948-.917c4.199-42.194 15.78-62.332 26.488-79.049 10.147-15.842 19.65-28.207 19.65-56.638 0-52.513-42.597-95.109-95.109-95.109-52.537 0-95.135 42.596-95.135 95.109 0 28.431 9.503 40.796 19.65 56.638 10.708 16.717 22.289 36.855 26.488 79.049zm2.554-78.61c-1.175 13.701-11.985 24.191-24.783 24.191-13.527 0-24.862-12.086-24.862-26.673v-99.328c0-14.12 11.335-26.673 24.862-26.673 11.309 0 21.031 8.139 23.975 19.497 9.12 3.904 15.688 13.438 15.688 24.78 0 1.153-.068 2.289-.201 3.403 5.078 5.326 8.283 12.802 8.283 21.117 0 6.39-1.889 12.262-5.06 17.053 1.996 4.099 3.13 8.773 3.13 13.76 0 14.1-9.065 25.697-21.032 28.873zm-16.452-109.977c-1.964-2.729-4.916-4.506-8.331-4.506-6.192 0-10.862 6.21-10.862 12.673v99.328c0 6.677 4.67 12.673 10.862 12.673 5.516 0 9.822-4.614 10.717-10.425-4.709-1.416-8.923-4.144-12.279-7.814-2.607-2.852-2.409-7.283.443-9.89 2.851-2.607 7.282-2.408 9.889.443 2.416 2.642 5.72 4.356 9.402 4.356 7.733 0 13.643-7.218 13.643-15.734s-5.91-15.734-13.643-15.734c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7 5.352 0 10.388 1.655 14.658 4.533.593-1.743.915-3.634.915-5.612 0-2.11-.366-4.128-1.036-5.972-.769.858-1.588 1.66-2.453 2.397-2.94 2.507-7.361 2.156-9.869-.784-2.507-2.939-2.155-7.361.784-9.868 2.773-2.365 4.492-6.122 4.492-10.293 0-6.072-3.705-11.374-8.898-12.467-.154-.023-.307-.052-.458-.085-.499-.08-1.01-.121-1.532-.121-2.947 0-5.591 1.389-7.515 3.525-2.585 2.87-7.015 3.101-9.886.515-2.87-2.586-3.101-7.015-.515-9.886 3.111-3.453 7.059-5.988 11.472-7.252zm-104.526 67.344c-3.171-4.791-5.06-10.663-5.06-17.053 0-8.307 3.198-15.777 8.284-21.104-.133-1.118-.202-2.258-.202-3.416 0-11.354 6.582-20.897 15.717-24.792 2.948-11.354 12.67-19.485 23.946-19.485 13.56 0 24.888 12.555 24.888 26.673v99.328c0 14.585-11.328 26.673-24.888 26.673-12.765 0-23.578-10.484-24.757-24.184-11.98-3.166-21.058-14.769-21.058-28.88 0-4.987 1.134-9.661 3.13-13.76zm9.982-23.036c-.675 1.847-1.042 3.869-1.042 5.983 0 1.978.322 3.869.915 5.612 4.27-2.878 9.306-4.533 14.658-4.533 3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7-7.733 0-13.643 7.218-13.643 15.734s5.91 15.734 13.643 15.734c3.682 0 6.986-1.714 9.402-4.356 2.607-2.851 7.038-3.05 9.889-.443 2.852 2.607 3.05 7.038.443 9.89-3.35 3.664-7.556 6.389-12.255 7.807.891 5.813 5.192 10.432 10.693 10.432 6.21 0 10.888-5.993 10.888-12.673v-99.328c0-6.466-4.678-12.673-10.888-12.673-3.404 0-6.349 1.777-8.309 4.507 4.421 1.264 8.367 3.8 11.476 7.251 2.586 2.871 2.355 7.3-.516 9.886-2.87 2.586-7.3 2.355-9.886-.515-1.926-2.138-4.574-3.525-7.54-3.525-.493 0-.976.037-1.448.108-.196.045-.395.082-.596.11-5.165 1.118-8.844 6.404-8.844 12.455 0 1.243.153 2.45.442 3.594.101.284.183.572.246.862.748 2.326 2.071 4.346 3.814 5.823 2.947 2.498 3.311 6.919.813 9.866s-6.919 3.312-9.866.814c-.878-.745-1.71-1.554-2.489-2.422zm3.042 158.279c-5.442 0-9.893 4.451-9.893 9.892v36.44c0 5.423 4.454 9.866 9.893 9.866h17.334c3.866 0 7 3.134 7 7v16.945c0 4.902 4.027 8.929 8.93 8.929h46.304c4.903 0 8.93-4.027 8.93-8.929v-16.945c0-3.866 3.134-7 7-7h17.334c5.439 0 9.893-4.443 9.893-9.866v-36.44c0-5.441-4.451-9.892-9.893-9.892zm63.416-314.093 2.907-5.412c1.828-3.403 6.075-4.683 9.479-2.854 3.403 1.828 4.682 6.075 2.854 9.479l-16.073 29.925c-1.22 2.271-3.589 3.688-6.167 3.688s-4.947-1.417-6.167-3.688l-16.073-29.925c-1.828-3.404-.549-7.651 2.854-9.479 3.404-1.829 7.651-.549 9.479 2.854l2.907 5.412v-69.835c0-3.863 3.137-7 7-7s7 3.137 7 7zm-132.198 54.758-49.381-49.381c-2.732-2.731-2.732-7.167 0-9.899s7.168-2.732 9.9 0l49.38 49.38-1.771-5.881c-1.114-3.7.985-7.608 4.684-8.722 3.7-1.114 7.607.985 8.721 4.685l9.796 32.526c.743 2.468.069 5.145-1.753 6.968-1.823 1.823-4.5 2.496-6.969 1.753l-32.526-9.795c-3.699-1.114-5.798-5.022-4.684-8.721s5.022-5.798 8.721-4.684zm-44.859 122.299h-69.835c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7h69.835l-5.412-2.907c-3.403-1.828-4.682-6.076-2.854-9.479 1.828-3.404 6.075-4.683 9.479-2.855l29.926 16.074c2.271 1.22 3.688 3.589 3.688 6.167 0 2.577-1.417 4.947-3.688 6.166l-29.926 16.074c-3.404 1.828-7.651.549-9.479-2.855-1.828-3.403-.549-7.651 2.854-9.479zm54.758 118.198-49.38 49.38c-2.732 2.732-7.168 2.732-9.9 0s-2.732-7.167 0-9.899l49.381-49.381-5.882 1.772c-3.699 1.114-7.607-.985-8.721-4.685-1.114-3.699.985-7.607 4.684-8.721l32.526-9.795c2.469-.743 5.146-.07 6.969 1.753 1.822 1.823 2.496 4.5 1.753 6.968l-9.796 32.527c-1.114 3.699-5.021 5.798-8.721 4.684-3.699-1.114-5.798-5.022-4.684-8.721zm240.497-240.497 5.882-1.771c3.699-1.114 7.607.985 8.721 4.684s-.985 7.607-4.684 8.721l-32.526 9.795c-2.469.743-5.146.07-6.969-1.753-1.822-1.823-2.496-4.5-1.753-6.968l9.796-32.526c1.114-3.7 5.021-5.799 8.721-4.685 3.699 1.114 5.798 5.022 4.684 8.722l-1.771 5.881 49.38-49.38c2.732-2.732 7.168-2.732 9.9 0s2.732 7.168 0 9.899zm44.859 122.299 5.412 2.906c3.403 1.828 4.682 6.076 2.854 9.479-1.828 3.404-6.075 4.683-9.479 2.855l-29.926-16.074c-2.271-1.219-3.688-3.589-3.688-6.166 0-2.578 1.417-4.947 3.688-6.167l29.926-16.074c3.404-1.828 7.651-.549 9.479 2.855 1.828 3.403.549 7.651-2.854 9.479l-5.412 2.907h69.835c3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7zm-54.758 118.198 1.771 5.882c1.114 3.699-.985 7.607-4.684 8.721-3.7 1.114-7.607-.985-8.721-4.684l-9.796-32.527c-.743-2.468-.069-5.145 1.753-6.968 1.823-1.823 4.5-2.496 6.969-1.753l32.526 9.795c3.699 1.114 5.798 5.022 4.684 8.721-1.114 3.7-5.022 5.799-8.721 4.685l-5.882-1.772 49.381 49.381c2.732 2.732 2.732 7.167 0 9.899s-7.168 2.732-9.9 0z\"></path></svg>				\n									<h5>\n							gennemtænkte løsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"outline\"><path d=\"M486.41,144A28,28,0,0,0,472,92H349.123l5.457-21.828a48.513,48.513,0,0,0-12.848-46.153A41.035,41.035,0,0,0,312.609,12H308a8.009,8.009,0,0,0-8,8V47.413l-19.233,64.112A17.376,17.376,0,0,1,268,123.539V112a4,4,0,0,0-4-4H152a4,4,0,0,0-4,4v72a4,4,0,0,0,8,0V116h72V276H156V248a4,4,0,0,0-8,0v32a4,4,0,0,0,4,4H264a4,4,0,0,0,4-4V268.5h11.168A37.07,37.07,0,0,1,305.092,279a45.025,45.025,0,0,0,31.48,12.752L440,292a27.987,27.987,0,0,0,19.369-48.2,27.987,27.987,0,0,0,16-48A28,28,0,0,0,486.41,144ZM260,276H236V116h24Zm212-88H396a4,4,0,0,0,0,8h60a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h40a20,20,0,0,1,.01,40l-103.428-.25a37.07,37.07,0,0,1-25.924-10.5,45.031,45.031,0,0,0-31.49-12.752H268V131.686a25.317,25.317,0,0,0,20.429-17.862l19.4-64.675A4,4,0,0,0,308,48V20h4.609a33.082,33.082,0,0,1,23.481,9.69,40.507,40.507,0,0,1,10.728,38.541l-6.7,26.8A4,4,0,0,0,344,100H472a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h72a20,20,0,0,1,0,40Z\"></path><path d=\"M194.5,183.243l-1.9-.217a4,4,0,0,0-4.169,2.491L184.29,195.9H135.278l-3.539-9.317a4,4,0,0,0-7.478,2.84l2.459,6.477h-8.474L68.452,156.872a4,4,0,1,0-4.935,6.3L77.6,174.209,56.961,194.48l-6.636-5.491a4,4,0,1,0-5.1,6.163L87.219,229.9a44.1,44.1,0,0,0,28.05,10.1H212a8.009,8.009,0,0,0,8-8V203.9a8.009,8.009,0,0,0-8-8h-8v-2.01A10.708,10.708,0,0,0,194.5,183.243ZM212,203.9V232H115.269a36.081,36.081,0,0,1-22.951-8.264l-29.16-24.128,20.8-20.422L114.4,203.045a4,4,0,0,0,2.468.852H187a4,4,0,0,0,3.715-2.517l3.929-9.843a2.712,2.712,0,0,1,1.356,2.35v6.01a4,4,0,0,0,4,4Z\"></path><path d=\"M223.084,484.672,200.87,469.863V346.36A44.1,44.1,0,0,0,195.327,325l-17.183-30.94a4,4,0,0,0-7,3.884l17.184,30.94a36.073,36.073,0,0,1,4.537,17.478V468H164.333a4,4,0,1,0,0,8h31.321l12,8H152.865V352a4,4,0,0,0-.358-1.655l-25.454-56A4,4,0,0,0,123.411,292H114.2a4,4,0,0,0-3.945,4.658l8.862,53.175a36.016,36.016,0,0,1-1.951,18.949L78.642,468H48.333a4,4,0,1,0,0,8H80.377L92,484H32.088L76.63,361.366a4.017,4.017,0,0,0,.183-2.044L61.1,268H136a4,4,0,0,0,0-8H59.233L30.555,173.966A19.723,19.723,0,0,1,49.27,148H76a12,12,0,0,0,24,0h15.2a21.975,21.975,0,0,1,8.395,1.652l10.889,4.458a4,4,0,1,0,3.032-7.4L126.63,142.25A29.938,29.938,0,0,0,115.2,140H100v-4.527A16.014,16.014,0,0,0,112,120V103.473A16.014,16.014,0,0,0,124,88V80a4,4,0,0,0-4-4H90A22.025,22.025,0,0,0,68,98v18a12.02,12.02,0,0,0,8,11.314V140H49.27a27.723,27.723,0,0,0-26.305,36.5l29.493,88.482,16.29,94.655-46.128,127A4,4,0,0,0,26.38,492h78.485a4,4,0,0,0,2.268-7.3L86.3,470.368l38.318-98.69a44.018,44.018,0,0,0,2.385-23.16L118.921,300h1.914l24.03,52.867V488a4,4,0,0,0,4,4h72a4,4,0,0,0,2.219-7.328ZM76,98A14.015,14.015,0,0,1,90,84h26v4a8.009,8.009,0,0,1-8,8H92a4,4,0,0,0-4,4,11.962,11.962,0,0,1-1.53,5.881A12.044,12.044,0,0,0,76,104.686Zm4,14a3.981,3.981,0,0,1,3.407,1.9,4,4,0,0,0,5.956.975c.207-.171.7-.648.7-.648.032-.028.061-.057.09-.087A19.907,19.907,0,0,0,95.6,104H104v16a8.009,8.009,0,0,1-8,8,12.133,12.133,0,0,1-2.681-.3,4,4,0,1,0-1.775,7.8c.151.035.3.06.456.091V148a4,4,0,1,1-8,0V124a4,4,0,0,0-4-4,4,4,0,0,1,0-8Z\"></path></g></svg>				\n									<h5>\n							arbejde udført med ansvar						\n					</h5>\n				<p>Vi lover ikke mere, end vi kan holde – men vi holder det, vi lover.</p>			<h2>KONTAKT OS</h2>		<p>Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.</p>', 'Hjem', '', 'publish', 'closed', 'closed', '', 'hjem', '', '', '2026-02-14 12:09:50', '2026-02-14 12:09:50', '', 0, 'https://mrarif.me/cpnordic/?page_id=10', 0, 'page', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(11, 1, '2026-01-25 11:20:57', '2026-01-25 11:20:57', '', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-25 11:20:57', '2026-01-25 11:20:57', '', 10, 'https://mrarif.me/cpnordic/?p=11', 0, 'revision', '', 0),
(12, 1, '2026-01-25 11:21:12', '2026-01-25 11:21:12', '<h2>Vores tjenester</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>				\n									<h4>\n							TØMRERARBEJDE						\n					</h4>\n									<p>\n						Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:\n					</p>\n												<a href=\"https://mrarif.me/cpnordic/tomrerarbejde/\">\n									Lær mere\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>				\n									<h4>\n							TAGDÆKNING						\n					</h4>\n									<p>\n						Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.					</p>\n												<a href=\"https://mrarif.me/cpnordic/tagdaekning/\">\n									Lær mere\n					</a>', 'Tjenester', '', 'publish', 'closed', 'closed', '', 'tjenester', '', '', '2026-02-14 11:06:58', '2026-02-14 11:06:58', '', 0, 'https://mrarif.me/cpnordic/?page_id=12', 0, 'page', '', 0),
(13, 1, '2026-01-25 11:21:12', '2026-01-25 11:21:12', '', 'Tjenester', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-01-25 11:21:12', '2026-01-25 11:21:12', '', 12, 'https://mrarif.me/cpnordic/?p=13', 0, 'revision', '', 0),
(14, 1, '2026-01-25 11:39:30', '2026-01-25 11:39:30', '<h2>SPECIALLØSNINGER</h2>		<p>Vi har en særlig interesse for opgaver, der kræver noget ekstra. Når standardløsninger ikke passer, finder vi løsninger, der gør.</p>			<h5>Det kan være:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										teknisk krævende detaljer\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										specialtilpassede konstruktioner\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										samspil mellem flere materialer\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										løsninger, der kræver ekstra omtanke\n									</li>\n						</ul>\n				<p>Her kommer vores faglighed og erfaring virkelig i spil.</p>', 'Referencer', '', 'publish', 'closed', 'closed', '', 'referencer', '', '', '2026-01-26 14:19:31', '2026-01-26 14:19:31', '', 0, 'https://mrarif.me/cpnordic/?page_id=14', 0, 'page', '', 0),
(15, 1, '2026-01-25 11:39:30', '2026-01-25 11:39:30', '', 'Referencer', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-01-25 11:39:30', '2026-01-25 11:39:30', '', 14, 'https://mrarif.me/cpnordic/?p=15', 0, 'revision', '', 0),
(16, 1, '2026-01-25 11:39:40', '2026-01-25 11:39:40', '<h2>OM CP NORDIC ApS</h2>		<p>CP NORDIC ApS is run by two skilled craftsmen who completed their apprenticeships together in 2022. We are both 25 years old and share a strong passion for quality craftsmanship and long-lasting solutions.</p><p>We originally come from East Funen but are now based in Central Funen, from where we carry out work for both private and commercial clients. Our work ranges from carpentry and roofing to installation and specialized tasks, and we approach every project with professionalism, honesty, and attention to detail.</p><p>With us, there are no long decision-making processes or changing contact persons. You are in direct dialogue with the people carrying out the work, and we place great importance on clear agreements, good communication, and a finished result we can stand behind.</p><p>We cover all of Funen and also take on projects in the rest of Denmark by agreement.</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>', 'Om os', '', 'publish', 'closed', 'closed', '', 'om-os', '', '', '2026-02-14 11:52:39', '2026-02-14 11:52:39', '', 0, 'https://mrarif.me/cpnordic/?page_id=16', 0, 'page', '', 0),
(17, 1, '2026-01-25 11:39:40', '2026-01-25 11:39:40', '', 'Om os', '', 'inherit', 'closed', 'closed', '', '16-revision-v1', '', '', '2026-01-25 11:39:40', '2026-01-25 11:39:40', '', 16, 'https://mrarif.me/cpnordic/?p=17', 0, 'revision', '', 0),
(18, 1, '2026-01-25 11:39:51', '2026-01-25 11:39:51', '<h2>Kontaktoplysninger</h2>		Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid\nvelkommen til at kontakte os for en uforpligtende snak.					\n			<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>			\n							<h5>Placering</h5>							<ul>\n							<li>\n										Fyn, Denmark\n									</li>\n						</ul>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M358.57,0H153.43c-27.195,0-49.319,22.124-49.319,49.319v413.362h-0.001c0,27.195,22.124,49.319,49.319,49.319H358.57   c27.195,0,49.319-22.124,49.319-49.319V49.319C407.891,22.124,385.766,0,358.57,0z M124.508,49.319   c0-15.948,12.974-28.921,28.921-28.921H358.57c15.947,0,28.921,12.974,28.921,28.921v355.589H124.508V49.319z M387.493,462.681   L387.493,462.681c-0.001,15.947-12.975,28.921-28.922,28.921H153.43c-15.948,0-28.921-12.974-28.921-28.921v-37.374h262.984   V462.681z\"></path>	</g></g><g>	<g>		<path d=\"M270.789,34.677h-29.578c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h29.578   c5.632,0,10.199-4.566,10.199-10.199C280.988,39.243,276.421,34.677,270.789,34.677z\"></path>	</g></g><g>	<g>		<path d=\"M242.204,371.251h-91.255c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h91.255   c5.632,0,10.199-4.566,10.199-10.199C252.403,375.817,247.836,371.251,242.204,371.251z\"></path>	</g></g><g>	<g>		<path d=\"M282.518,371.251h-5.346c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h5.346   c5.632,0,10.199-4.566,10.199-10.199C292.717,375.817,288.15,371.251,282.518,371.251z\"></path>	</g></g><g>	<g>		<path d=\"M256,430.406c-14.903,0-27.028,12.125-27.028,27.028s12.125,27.028,27.028,27.028s27.028-12.125,27.028-27.028   S270.903,430.406,256,430.406z M256,464.064c-3.655,0-6.629-2.974-6.629-6.63s2.974-6.629,6.629-6.629s6.63,2.974,6.63,6.629   S259.655,464.064,256,464.064z\"></path>	</g></g><g>	<g>		<path d=\"M442.612,198.005c-3.984-3.983-10.44-3.983-14.425,0c-3.983,3.983-3.983,10.441,0,14.425   c23.463,23.462,23.463,61.639,0,85.1c-3.983,3.983-3.983,10.441,0,14.425c1.992,1.992,4.602,2.987,7.212,2.987   s5.22-0.995,7.212-2.987C474.027,280.539,474.027,229.421,442.612,198.005z\"></path>	</g></g><g>	<g>		<path d=\"M470.017,170.6c-3.984-3.983-10.44-3.983-14.425,0c-3.983,3.983-3.983,10.441,0,14.425   c18.686,18.686,28.977,43.53,28.977,69.955s-10.291,51.27-28.977,69.955c-3.983,3.983-3.983,10.441,0,14.425   c1.992,1.992,4.602,2.987,7.212,2.987c2.61,0,5.22-0.995,7.212-2.987C516.544,292.832,516.544,217.128,470.017,170.6z\"></path>	</g></g><g>	<g>		<path d=\"M83.812,212.43c3.984-3.984,3.984-10.442,0.001-14.425c-3.984-3.983-10.44-3.983-14.425,0   c-31.416,31.416-31.416,82.533,0,113.95c1.992,1.992,4.602,2.987,7.212,2.987s5.22-0.995,7.212-2.987   c3.983-3.983,3.983-10.441,0-14.425C60.349,274.068,60.349,235.891,83.812,212.43z\"></path>	</g></g><g>	<g>		<path d=\"M27.431,254.98c0-26.426,10.291-51.27,28.977-69.955c3.983-3.983,3.983-10.441,0-14.425   c-3.984-3.983-10.44-3.983-14.425,0c-46.527,46.528-46.527,122.232,0,168.76c1.992,1.992,4.602,2.987,7.212,2.987   s5.22-0.995,7.212-2.987c3.983-3.983,3.983-10.441,0-14.425C37.721,306.25,27.431,281.406,27.431,254.98z\"></path>	</g></g><g>	<g>		<path d=\"M358.06,280.099l-47.694-47.694c-2.619-2.618-6.45-3.613-10.015-2.595l-7.104,2.03c-1.015,0.291-1.98,0.736-2.859,1.323   l-14.669,9.788c-17.71-12.415-33.181-28.156-45.295-46.078l10.425-10.425c1.226-1.226,2.119-2.743,2.596-4.41l2.03-7.104   c1.018-3.562,0.023-7.394-2.595-10.015l-47.697-47.697c-2.827-2.827-7.048-3.742-10.793-2.338l-8.119,3.044   c-1.364,0.511-2.602,1.309-3.632,2.338c-1.938,1.939-3.804,4.028-5.546,6.207c-23.54,29.472-21.155,71.832,5.546,98.534   l77.633,77.632c14.404,14.405,33.363,21.733,52.398,21.732c16.254,0,32.564-5.343,46.138-16.187   c2.179-1.741,4.266-3.606,6.205-5.545c1.029-1.03,1.827-2.267,2.338-3.631l3.044-8.119   C361.802,287.147,360.888,282.927,358.06,280.099z M336.079,292.253c-21.345,17.05-52.032,15.315-71.379-4.034l-77.633-77.632   c-19.349-19.349-21.082-50.035-4.034-71.379c0.783-0.98,1.598-1.933,2.44-2.849l38.31,38.311l-13.591,13.592   c-3.331,3.331-3.947,8.51-1.491,12.531c15.402,25.2,36.656,46.986,61.469,63.005c3.415,2.204,7.81,2.17,11.194-0.085   l18.872-12.593l38.696,38.696C338.011,290.656,337.058,291.471,336.079,292.253z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>			\n							<h5>Ring til os</h5>							<ul>\n							<li>\n											<a href=\"tel:41600040\">\n											41 60 00 40\n											</a>\n									</li>\n						</ul>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M331.756,277.251l-42.881,43.026c-17.389,17.45-47.985,17.826-65.75,0l-42.883-43.026L26.226,431.767   C31.959,434.418,38.28,436,45,436h422c6.72,0,13.039-1.58,18.77-4.232L331.756,277.251z\"></path>	</g></g><g>	<g>		<path d=\"M467,76H45c-6.72,0-13.041,1.582-18.772,4.233l164.577,165.123c0.011,0.011,0.024,0.013,0.035,0.024   c0.011,0.011,0.013,0.026,0.013,0.026l53.513,53.69c5.684,5.684,17.586,5.684,23.27,0l53.502-53.681c0,0,0.013-0.024,0.024-0.035   c0,0,0.024-0.013,0.035-0.024L485.77,80.232C480.039,77.58,473.72,76,467,76z\"></path>	</g></g><g>	<g>		<path d=\"M4.786,101.212C1.82,107.21,0,113.868,0,121v270c0,7.132,1.818,13.79,4.785,19.788l154.283-154.783L4.786,101.212z\"></path>	</g></g><g>	<g>		<path d=\"M507.214,101.21L352.933,256.005L507.214,410.79C510.18,404.792,512,398.134,512,391V121   C512,113.866,510.18,107.208,507.214,101.21z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>			\n							<h5>Send os en email</h5>							<ul>\n							<li>\n											<a href=\"mailto:kontakt@cp-nordic.dk\">\n											kontakt@cp-nordic.dk\n											</a>\n									</li>\n						</ul>\n							<h2>KONTAKT OS</h2>		Vi dækker hele Fyn – og tager også gerne opgaver uden for området, når der er tale om spændende eller teknisk krævende løsninger.					\n					<a href=\"https://www.facebook.com/cpnordic/\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"https://www.instagram.com/cpnordic/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>', 'Kontakt', '', 'publish', 'closed', 'closed', '', 'kontakt', '', '', '2026-02-14 11:16:12', '2026-02-14 11:16:12', '', 0, 'https://mrarif.me/cpnordic/?page_id=18', 0, 'page', '', 0),
(19, 1, '2026-01-25 11:39:51', '2026-01-25 11:39:51', '', 'Kontakt', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-01-25 11:39:51', '2026-01-25 11:39:51', '', 18, 'https://mrarif.me/cpnordic/?p=19', 0, 'revision', '', 0),
(32, 1, '2026-01-25 12:03:47', '2026-01-25 12:03:47', '<ul>\n							<li>\n											<a href=\"tel:XXX-XXX-XXX\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										XXX-XXX-XXX\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@gmail.com\n											</a>\n									</li>\n						</ul>\n					<a href=\"https://www.facebook.com/modernhomecarehh/\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"https://www.instagram.com/modernhomecarellc?fbclid=IwZXh0bgNhZW0CMTAAAR2vcF8ghFhyPcka4WAqv2s18S8Bmgs7v24ryKWPZSfs1S7ukdm-Tlgyn2Y_aem_wYugYGBVO_28k3uF4EikcA\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n					<a href=\"https://www.youtube.com/@modernhomecare\" target=\"_blank\">\n						Youtube\n						<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z\"></path></svg>					</a>\n																	<img src=\"https://mrarif.me/cpnordic/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />																		<ul>\n							<li>\n											<a href=\"tel:XXX-XXX-XXX\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										XXX-XXX-XXX\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@gmail.com\n											</a>\n									</li>\n						</ul>\n					<a href=\"https://www.instagram.com/cffhealthcare/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n					<a href=\"https://twitter.com/cffhealthcare\" target=\"_blank\">\n						X-twitter\n						<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M389.2 48h70.6L305.6 224.2 487 464H345L233.7 318.6 106.5 464H35.8L200.7 275.5 26.8 48H172.4L272.9 180.9 389.2 48zM364.4 421.8h39.1L151.1 88h-42L364.4 421.8z\"></path></svg>					</a>\n					<a href=\"https://www.linkedin.com/cffhealthcare?_l=en_US\" target=\"_blank\">\n						Linkedin-in\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z\"></path></svg>					</a>\n					<a href=\"https://www.facebook.com/cffhealthcare\" target=\"_blank\">\n						Facebook\n						<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256C504 119 393 8 256 8S8 119 8 256c0 123.78 90.69 226.38 209.25 245V327.69h-63V256h63v-54.64c0-62.15 37-96.48 93.67-96.48 27.14 0 55.52 4.84 55.52 4.84v61h-31.28c-30.8 0-40.41 19.12-40.41 38.73V256h68.78l-11 71.69h-57.78V501C413.31 482.38 504 379.78 504 256z\"></path></svg>					</a>\n																	<img src=\"https://mrarif.me/cpnordic/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />																					<a role=\"button\">\n									Book Now \n					</a>\n						<p>Pharmaceutical, Medical Device, and Biotech life sciences consulting firm.</p>			<h5>Quick Links</h5>							<ul>\n							<li>\n										Home\n									</li>\n								<li>\n										About Us\n									</li>\n								<li>\n										Our Approach\n									</li>\n								<li>\n										Industries\n									</li>\n								<li>\n										Practice Areas\n									</li>\n								<li>\n										Resources\n									</li>\n								<li>\n										Free Checklists\n									</li>\n								<li>\n										Blog\n									</li>\n								<li>\n										Press\n									</li>\n						</ul>\n							<h5>Contact Info</h5>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										Location Here\n									</li>\n								<li>\n											<a href=\"tel:XXX-XXX-XXX\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										Direct:  XXX-XXX-XXX\n											</a>\n									</li>\n						</ul>\n					<a target=\"_blank\">\n						Linkedin-in\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z\"></path></svg>					</a>\n					<a target=\"_blank\">\n						Twitter\n						<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z\"></path></svg>					</a>\n					<a target=\"_blank\">\n						Youtube\n						<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z\"></path></svg>					</a>\n					<a target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n									<ul>\n							<li>\n										© Copyright 2024 all rights reserved\n									</li>\n						</ul>\n									<ul>\n							<li>\n										Privacy Statement\n									</li>\n								<li>\n										Accessibility Statement\n									</li>\n						</ul>', 'Common-Template-Update', '', 'inherit', 'closed', 'closed', '', '31-revision-v1', '', '', '2026-01-25 12:03:47', '2026-01-25 12:03:47', '', 31, 'https://mrarif.me/cpnordic/?p=32', 0, 'revision', '', 0),
(33, 1, '2026-01-25 12:04:14', '2026-01-25 12:04:14', '', 'Header', '', 'inherit', 'closed', 'closed', '', '30-revision-v1', '', '', '2026-01-25 12:04:14', '2026-01-25 12:04:14', '', 30, 'https://mrarif.me/cpnordic/?p=33', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(551, 1, '2026-01-26 13:50:23', '2026-01-26 13:50:23', '<h1>CP NORDIC ApS</h1>					<h4>Byggeri – Tømrerarbejde og tagdækning</h4>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>					\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle ANMELDELSER\n					</a>\n					<h2>HVORFOR VÆLGE CP NORDIC ApS?</h2>		<p>Når du vælger CP NORDIC ApS, får du:</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 450 450\" width=\"512\"><g><g><path d=\"m225 165.2c-25.9 0-48.9-18.8-53.3-45.2-2.4-14.2.9-28.6 9.3-40.3 8.4-11.8 20.9-19.5 35.1-21.9 29.4-4.9 57.3 15 62.2 44.5 4.9 29.4-15 57.3-44.4 62.2-3 .5-6 .7-8.9.7zm-7.6-99.8c-12.2 2-22.9 8.7-30.1 18.8s-10.1 22.4-8 34.6c3.8 22.7 23.5 38.8 45.7 38.8 2.5 0 5.1-.2 7.6-.6 25.2-4.2 42.3-28.1 38.1-53.4s-28.1-42.4-53.3-38.2z\"></path><path d=\"m255.2 115c-2.1 0-3.8-1.7-3.8-3.8 0-14.6-11.8-26.4-26.4-26.4-2.1 0-3.8-1.7-3.8-3.8s1.7-3.8 3.8-3.8c18.8 0 34.1 15.3 34.1 34.1 0 2-1.8 3.7-3.9 3.7z\"></path><path d=\"m236.1 203h-22.2c-2.1 0-3.8-1.7-3.8-3.8v-14.1c-3.1-.6-6.1-1.4-9.1-2.4l-7 12.2c-1.1 1.8-3.4 2.5-5.3 1.4l-19.2-11.1c-.9-.5-1.5-1.4-1.8-2.3-.3-1-.1-2 .4-2.9l7-12.1c-2.4-2.1-4.6-4.3-6.7-6.6l-12.1 7c-1.8 1.1-4.2.4-5.2-1.4l-11.1-19.2c-1.1-1.8-.4-4.2 1.4-5.2l11.9-6.8c-1-3-1.9-6.1-2.6-9.3h-13.7c-2.1 0-3.8-1.7-3.8-3.8v-22.2c0-2.1 1.7-3.8 3.8-3.8h13.4c.6-3.2 1.4-6.4 2.4-9.5l-11.5-6.6c-1.8-1.1-2.5-3.4-1.4-5.3l11.1-19.6c.5-.9 1.4-1.5 2.3-1.8s2-.1 2.9.4l11.3 6.6c2.2-2.5 4.5-4.8 7-7l-6.5-11.3c-.5-.9-.6-1.9-.4-2.9.3-1 .9-1.8 1.8-2.3l19.2-11.1c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l6.4 11.2c3.1-1.1 6.4-1.9 9.7-2.6v-13c0-2.1 1.7-3.8 3.8-3.8h22.2c2.1 0 3.8 1.7 3.8 3.8v12.8c3.3.7 6.5 1.5 9.7 2.6l6.5-11.2c.5-.9 1.4-1.5 2.3-1.8 1-.3 2-.1 2.9.4l19.2 11.1c.9.5 1.5 1.3 1.8 2.3s.1 2-.4 2.9l-6.5 11.3c2.5 2.2 4.8 4.5 7 7.1l11.3-6.6c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l11.1 19.2c1.1 1.8.4 4.2-1.4 5.3l-11.5 6.6c1 3.1 1.8 6.3 2.5 9.5h13.6c2.1 0 3.8 1.7 3.8 3.8v22.2c0 2.1-1.7 3.8-3.8 3.8h-13.6c-.6 3.1-1.5 6.2-2.5 9.3l11.9 6.8c1.8 1.1 2.5 3.4 1.4 5.2l-11.2 19.5c-1.1 1.8-3.4 2.5-5.2 1.4l-12-7c-2.1 2.4-4.4 4.6-6.7 6.6l7 12.1c.5.9.6 1.9.4 2.9s-.9 1.8-1.8 2.3l-19.2 11.1c-1.8 1.1-4.2.4-5.2-1.4l-7-12.2c-3 1-6 1.8-9.1 2.4v14.1c-.2 2.3-2 4-4.1 4zm-18.4-7.7h14.5v-13.5c0-1.9 1.4-3.5 3.3-3.8 4.7-.7 9.4-2 13.8-3.7 1.8-.7 3.8 0 4.7 1.7l6.7 11.6 12.6-7.3-6.7-11.6c-1-1.6-.5-3.7.9-4.9 3.7-3 7.2-6.4 10.2-10.1 1.2-1.5 3.3-1.8 4.9-.9l11.5 6.6 7.3-12.6-11.3-6.5c-1.6-.9-2.4-3-1.6-4.7 1.8-4.5 3.1-9.2 3.9-14 .3-1.9 1.9-3.2 3.8-3.2h13v-14.6h-12.8c-1.9 0-3.5-1.4-3.8-3.3-.7-4.8-2-9.6-3.7-14.2-.7-1.8 0-3.7 1.7-4.7l10.9-6.3-7.3-12.6-10.8 6.3c-1.6.9-3.7.6-4.9-.9-3.1-3.9-6.6-7.4-10.4-10.6-1.5-1.2-1.9-3.3-.9-4.9l6.2-10.7-12.6-7.3-6.1 10.6c-1 1.6-3 2.3-4.7 1.7-4.6-1.8-9.5-3.1-14.4-3.9-1.9-.3-3.3-1.9-3.3-3.8v-12.2h-14.5v12.3c0 1.9-1.4 3.5-3.3 3.8-5 .8-9.8 2.1-14.4 3.9-1.8.7-3.8 0-4.7-1.7l-6.1-10.6-12.6 7.3 6.2 10.7c.9 1.6.6 3.7-.9 4.9-3.9 3.1-7.4 6.7-10.4 10.6-1.2 1.5-3.3 1.9-4.9.9l-10.8-6.3-7.3 12.6 10.9 6.3c1.6.9 2.3 2.9 1.7 4.7-1.7 4.6-3 9.4-3.7 14.2-.3 1.9-1.9 3.3-3.8 3.3h-12.8v14.5h13c1.9 0 3.5 1.4 3.8 3.2.8 4.8 2.1 9.5 3.9 14 .7 1.8 0 3.8-1.6 4.7l-11.3 6.5 7.3 12.6 11.5-6.6c1.6-.9 3.7-.6 4.9.9 3 3.7 6.5 7.1 10.3 10.1 1.5 1.2 1.9 3.3.9 4.9l-6.7 11.6 12.6 7.3 6.7-11.6c.9-1.6 2.9-2.3 4.7-1.7 4.5 1.7 9.1 2.9 13.8 3.7 1.9.3 3.3 1.9 3.3 3.8z\"></path></g><g><g><g><path d=\"m45.3 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m153.9 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path></g><g><path d=\"m189.3 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.2c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c0 2.1-1.7 3.8-3.8 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m73.3 326.4c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m126 326.4c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m99.7 325.6c-.6 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4s4.1 1.1 4.4 3.2c2.4 16.5 12.3 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m50.2 266.6c-.1 0-.2 0-.3 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.7 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-8.9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.5 2.2zm81.8-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13.1-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.4-.7 2.3-.7z\"></path></g></g></g><g><g><path d=\"m296.1 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m404.7 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path></g><g><path d=\"m440 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.1c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c.2 2.1-1.6 3.8-3.7 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m324 326.3c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m376.7 326.3c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m350.4 325.6c-.5 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4 2.1-.3 4 1.1 4.4 3.2 2.4 16.5 12.4 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m301 266.6c-.1 0-.2 0-.4 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.6 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.4 2.2zm81.7-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.5-.7 2.3-.7z\"></path></g></g></g></g></g></svg>				\n									<h5>\n							et ungt og engageret team						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"496pt\" viewBox=\"0 0 496 496\" width=\"496pt\"><path d=\"m440 328h-28.207031c5.078125-6.703125 8.207031-14.960938 8.207031-24 0-8.824219-7.175781-16-16-16h-12v-19.960938c59.574219-14.445312 104-68.085937 104-132.039062 0-74.992188-61.007812-136-136-136s-136 61.007812-136 136c0 63.953125 44.425781 117.59375 104 132.039062v19.960938h-8.449219c-6.167969 0-12.359375 1.464844-17.886719 4.214844l-50.480468 25.25c-3.320313 1.664062-7.03125 2.535156-10.734375 2.535156h-40.449219v-16h-104v16h56v56h16v-56h16v128h-16v-56h-16v56h-56v16h104v-16h40.449219c3.703125 0 7.414062.871094 10.734375 2.527344l34.488281 17.25c5.519531 2.757812 11.710937 4.222656 17.878906 4.222656h24.449219v24h64v-24h48c13.230469 0 24-10.769531 24-24 0-6.167969-2.40625-11.742188-6.238281-16 3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16 0-13.230469-10.769531-24-24-24zm8 24c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm-208-280c0-66.167969 53.832031-120 120-120s120 53.832031 120 120-53.832031 120-120 120-120-53.832031-120-120zm104 134.976562c5.257812.617188 10.574219 1.023438 16 1.023438s10.742188-.40625 16-1.023438v17.023438h-32zm-40.449219 185.023438c-3.703125 0-7.414062-.871094-10.734375-2.527344l-34.488281-17.25c-5.519531-2.757812-11.710937-4.222656-17.878906-4.222656h-40.449219v-96h40.449219c6.167969 0 12.359375-1.464844 17.886719-4.214844l50.480468-25.25c3.320313-1.664062 7.03125-2.535156 10.734375-2.535156h84.449219c0 13.230469-10.769531 24-24 24h-48.28125l-23.863281 35.808594c-6.101563 9.160156-14.527344 16.589844-24.367188 21.503906-8.753906 4.375-18.542969 6.6875-28.320312 6.6875h-15.167969v16h15.167969c12.246093 0 24.519531-2.894531 35.472656-8.375 12.328125-6.160156 22.878906-15.480469 30.527344-26.945312l6.832031-10.253907v93.574219zm40.449219 24v-136h17.472656c-.898437 2.511719-1.472656 5.183594-1.472656 8 0 6.167969 2.40625 11.742188 6.238281 16-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16 0 10.414062 6.710938 19.214844 16 22.527344v9.472656zm96-24h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8s-3.59375 8-8 8zm0 0\"></path><path d=\"m394.878906 73.007812-7.757812 13.984376c17.816406 9.878906 28.878906 28.664062 28.878906 49.007812h16c0-26.160156-14.222656-50.296875-37.121094-62.992188zm0 0\"></path><path d=\"m360 80c4.734375 0 9.449219.59375 14.007812 1.769531l3.976563-15.503906c-5.855469-1.496094-11.90625-2.265625-17.984375-2.265625zm0 0\"></path><path d=\"m360 48c48.519531 0 88 39.480469 88 88 0 20.753906-7.398438 40.910156-20.832031 56.785156l12.207031 10.34375c15.882812-18.761718 24.625-42.601562 24.625-67.128906 0-57.34375-46.65625-104-104-104-24.527344 0-48.367188 8.753906-67.128906 24.632812l10.335937 12.199219c15.871094-13.433593 36.039063-20.832031 56.792969-20.832031zm0 0\"></path><path d=\"m427.128906 215.367188-10.335937-12.199219c-15.871094 13.433593-36.039063 20.832031-56.792969 20.832031-48.519531 0-88-39.480469-88-88 0-20.753906 7.398438-40.910156 20.832031-56.785156l-12.207031-10.34375c-15.882812 18.761718-24.625 42.601562-24.625 67.128906 0 57.34375 46.65625 104 104 104 24.527344 0 48.367188-8.753906 67.128906-24.632812zm0 0\"></path><path d=\"m121.214844 165.640625c4.953125-1.375 9.695312-3.34375 14.183594-5.878906l9.769531 4.886719 19.472656-19.480469-4.886719-9.769531c2.535156-4.496094 4.503906-9.230469 5.886719-14.183594l10.359375-3.445313v-27.53125l-10.351562-3.453125c-1.375-4.953125-3.34375-9.707031-5.886719-14.183594l4.886719-9.777343-19.472657-19.472657-9.769531 4.886719c-4.484375-2.535156-9.230469-4.503906-14.183594-5.878906l-3.453125-10.359375h-27.539062l-3.445313 10.359375c-4.953125 1.375-9.695312 3.34375-14.183594 5.878906l-9.777343-4.886719-19.472657 19.472657 4.886719 9.777343c-2.535156 4.488282-4.503906 9.230469-5.886719 14.183594l-10.351562 3.445313v27.53125l10.351562 3.453125c1.375 4.953125 3.34375 9.695312 5.886719 14.183594l-4.886719 9.769531 19.472657 19.480469 9.769531-4.886719c4.484375 2.535156 9.230469 4.503906 14.183594 5.878906l3.453125 10.359375h27.539062zm-12.304688-13.679687-2.679687 8.039062h-4.460938l-2.679687-8.039062-4.554688-.90625c-6.128906-1.222657-11.878906-3.605469-17.109375-7.09375l-3.867187-2.578126-7.574219 3.800782-3.160156-3.167969 3.792969-7.582031-2.578126-3.859375c-3.488281-5.222657-5.871093-10.980469-7.09375-17.109375l-.914062-4.554688-8.03125-2.679687v-4.46875l8.03125-2.671875.914062-4.554688c1.222657-6.136718 3.613282-11.886718 7.09375-17.109375l2.578126-3.859375-3.792969-7.589844 3.160156-3.160156 7.574219 3.800782 3.867187-2.578126c5.222657-3.488281 10.980469-5.863281 17.109375-7.09375l4.554688-.90625 2.679687-8.039062h4.460938l2.679687 8.039062 4.554688.90625c6.128906 1.222657 11.878906 3.605469 17.109375 7.09375l3.867187 2.578126 7.574219-3.800782 3.160156 3.160156-3.792969 7.589844 2.578126 3.859375c3.488281 5.214844 5.871093 10.972657 7.09375 17.109375l.914062 4.554688 8.03125 2.679687v4.46875l-8.03125 2.671875-.914062 4.554688c-1.222657 6.128906-3.613282 11.878906-7.09375 17.109375l-2.578126 3.859375 3.792969 7.582031-3.160156 3.167969-7.574219-3.800782-3.867187 2.578126c-5.222657 3.488281-10.980469 5.863281-17.109375 7.09375zm0 0\"></path><path d=\"m104 72c-17.648438 0-32 14.351562-32 32s14.351562 32 32 32 32-14.351562 32-32-14.351562-32-32-32zm0 48c-8.824219 0-16-7.175781-16-16s7.175781-16 16-16 16 7.175781 16 16-7.175781 16-16 16zm0 0\"></path><path d=\"m160 248v-40h48v-208h-208v208h106.664062zm-144-232h176v176h-48v24l-32-24h-96zm0 0\"></path><path d=\"m0 272h16v16h-16zm0 0\"></path><path d=\"m32 272h16v16h-16zm0 0\"></path><path d=\"m64 272h16v16h-16zm0 0\"></path><path d=\"m32 304h16v16h-16zm0 0\"></path><path d=\"m64 304h16v16h-16zm0 0\"></path><path d=\"m0 480h16v16h-16zm0 0\"></path><path d=\"m32 480h16v16h-16zm0 0\"></path><path d=\"m64 480h16v16h-16zm0 0\"></path><path d=\"m32 448h16v16h-16zm0 0\"></path><path d=\"m64 448h16v16h-16zm0 0\"></path></svg>				\n									<h5>\n							fokus på kvalitet og detaljer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m469.12 408.93-67.26-33.63v-22.13c10.71-7.69 18.6-19.07 21.78-32.27h5.28c8.81 0 15.98-7.17 15.98-15.98v-5.29c0-6.35-3.74-11.84-9.12-14.41 5.19-18.64-1.65-39.76-19.44-59.78-12.58-14.16-30.67-22.27-49.62-22.27-18.93 0-37.01 8.12-49.59 22.27-13.38 15.05-20.95 41.01-14.03 59.62-5.56 2.5-9.45 8.09-9.45 14.57v5.29c0 8.81 7.17 15.98 15.98 15.98h5.55c3.16 13.09 10.94 24.39 21.51 32.08v22.32l-67.26 33.63c-16.7 5.87-27.89 21.6-27.89 39.28v41.63c0 3.31 2.69 6 6 6h243.46c3.31 0 6-2.69 6-6v-41.63c0-17.68-11.19-33.41-27.88-39.28zm-62.24-17.7-15.83 27.66-13.29-13.29 19.29-19.29zm-37.61 5.88-20.59-20.58v-16.91c6.41 2.57 13.4 4.01 20.72 4.01 7.22 0 14.11-1.39 20.45-3.9v16.8zm63.63-97.48v5.29c0 2.16-1.82 3.98-3.98 3.98h-3.74c.01-.36.03-.71.03-1.07v-12.18h3.71c2.15-.01 3.98 1.82 3.98 3.98zm-119.29 8.2v1.07h-3.98c-2.16 0-3.98-1.82-3.98-3.98v-5.29c0-2.16 1.82-3.98 3.98-3.98l3.98.22zm1.95-24.19c-7.33-13.69-.89-37.39 10.53-50.24 10.31-11.6 25.12-18.25 40.63-18.25 15.52 0 30.34 6.65 40.65 18.25 8.43 9.48 21.3 27.59 17.4 46.39-5.66-.35-10.67-2.55-14.4-6.36-5.37-5.49-7.72-14-6.63-23.94.29-2.62-1.17-5.13-3.6-6.17s-5.25-.37-6.95 1.65c-19.33 22.92-45.95 36.76-73.9 38.68h-3.73zm10.05 24.19v-12.73c24.57-2.92 47.92-14.05 66.73-31.8 1.43 7.26 4.63 13.6 9.45 18.52 3.27 3.35 7.14 5.89 11.41 7.58v18.42c0 24.15-19.65 43.8-43.8 43.8s-43.79-19.64-43.79-43.79zm15.89 78.48 19.29 19.29-13.29 13.29-15.84-27.66zm3.22 97.53h-39.42v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.76v-35.63c0-12.68 8.1-23.95 20.15-28.05.26-.09.51-.19.75-.31l46.47-23.23 20.07 35.06c.93 1.62 2.56 2.72 4.41 2.97.27.04.53.05.79.05 1.58 0 3.11-.62 4.24-1.76l.14-.14zm12.08 0 7.41-64.69 5.06-5.06 4.84 4.84 7.86 64.92h-25.17zm128.2 0h-39.76v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.18l-6.2-51.17.25.25c1.13 1.13 2.66 1.76 4.24 1.76.26 0 .53-.02.79-.05 1.85-.25 3.48-1.34 4.41-2.97l20.07-35.06 46.47 23.23c.24.12.49.23.75.31 12.05 4.1 20.15 15.38 20.15 28.05v35.65zm-67.04-346.65h-10.84l28.38 39.84 28.38-39.84h-10.84c-3.31 0-6-2.69-6-6v-64.58h-98.7c-3.31 0-6-2.69-6-6s2.69-6 6-6h104.7c3.31 0 6 2.69 6 6v64.58h16.48c2.25 0 4.3 1.25 5.33 3.25s.86 4.4-.45 6.23l-40.02 56.18c-1.13 1.58-2.95 2.52-4.89 2.52s-3.76-.94-4.89-2.52l-40.02-56.18c-1.3-1.83-1.48-4.23-.45-6.23s3.09-3.25 5.33-3.25h16.48v-23.5h-65.38c-3.31 0-6-2.69-6-6s2.69-6 6-6h71.38c3.31 0 6 2.69 6 6v35.5c.02 3.31-2.67 6-5.98 6zm-118.44 50.65v-133.26c0-21.18-17.23-38.41-38.41-38.41h-207.7c-21.18-.01-38.41 17.23-38.41 38.41v133.26c0 21.18 17.23 38.41 38.41 38.41h105.8l64.8 55.11c1.11.94 2.49 1.43 3.89 1.43.85 0 1.71-.18 2.52-.55 2.12-.98 3.48-3.11 3.48-5.45v-50.54h27.21c21.18 0 38.41-17.23 38.41-38.41zm-71.62 26.41c-3.31 0-6 2.69-6 6v43.56l-56.59-48.13c-1.08-.92-2.46-1.43-3.89-1.43h-108.01c-14.56 0-26.41-11.85-26.41-26.41v-133.26c0-14.56 11.85-26.41 26.41-26.41h207.69c14.56 0 26.41 11.85 26.41 26.41v133.26c0 14.56-11.85 26.41-26.41 26.41zm-156.34-87.87h56.97c3.31 0 6-2.69 6-6v-39.2l8.55-8.55c2.34-2.34 2.34-6.14 0-8.49-2.34-2.34-6.14-2.34-8.48 0l-.7.7c-.98-1.97-3.01-3.32-5.36-3.32h-56.98c-3.31 0-6 2.69-6 6v52.85c0 3.32 2.69 6.01 6 6.01zm6-52.86h44.97v2.69l-18.16 18.16-8.84-8.84c-2.34-2.34-6.14-2.34-8.49 0-2.34 2.34-2.34 6.14 0 8.49l13.08 13.08c1.17 1.17 2.71 1.76 4.24 1.76s3.07-.59 4.24-1.76l13.92-13.92v21.2h-44.96zm173.62 3.08c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 31.92c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 36.52c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.68 5.99 6zm0 31.92c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.69 5.99 6zm-119.36 165.01h10.84l-28.38-39.84-28.38 39.84h10.84c3.31 0 6 2.69 6 6v64.58h98.7c3.31 0 6 2.69 6 6s-2.69 6-6 6h-104.69c-3.31 0-6-2.69-6-6v-64.58h-16.48c-2.25 0-4.3-1.25-5.33-3.25s-.86-4.4.45-6.23l40.02-56.18c1.13-1.58 2.95-2.52 4.89-2.52s3.76.94 4.89 2.52l40.02 56.18c1.3 1.83 1.48 4.23.45 6.23s-3.09 3.25-5.33 3.25h-16.48v23.5h65.38c3.31 0 6 2.69 6 6s-2.69 6-6 6h-71.38c-3.31 0-6-2.69-6-6v-35.5c-.03-3.31 2.66-6 5.97-6z\"></path></svg>				\n									<h5>\n							ærlig<br> rådgivning						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 510 510\"><path d=\"m192.036 385.845c-4.787-46.972-19.459-64.336-30.658-82.352-8.672-13.951-15.5-28.245-15.5-54.252 0-60.242 48.865-109.109 109.135-109.109 60.242 0 109.109 48.866 109.109 109.109 0 26.007-6.828 40.301-15.5 54.252-11.199 18.016-25.871 35.38-30.658 82.352 9.985 2.864 17.345 12.101 17.345 22.975v36.44c0 13.109-10.747 23.866-23.893 23.866h-10.334v9.945c0 12.588-10.341 22.929-22.93 22.929h-46.304c-12.589 0-22.93-10.341-22.93-22.929v-9.945h-10.334c-13.146 0-23.893-10.757-23.893-23.866v-36.44c0-10.874 7.36-20.111 17.345-22.975zm111.948-.917c4.199-42.194 15.78-62.332 26.488-79.049 10.147-15.842 19.65-28.207 19.65-56.638 0-52.513-42.597-95.109-95.109-95.109-52.537 0-95.135 42.596-95.135 95.109 0 28.431 9.503 40.796 19.65 56.638 10.708 16.717 22.289 36.855 26.488 79.049zm2.554-78.61c-1.175 13.701-11.985 24.191-24.783 24.191-13.527 0-24.862-12.086-24.862-26.673v-99.328c0-14.12 11.335-26.673 24.862-26.673 11.309 0 21.031 8.139 23.975 19.497 9.12 3.904 15.688 13.438 15.688 24.78 0 1.153-.068 2.289-.201 3.403 5.078 5.326 8.283 12.802 8.283 21.117 0 6.39-1.889 12.262-5.06 17.053 1.996 4.099 3.13 8.773 3.13 13.76 0 14.1-9.065 25.697-21.032 28.873zm-16.452-109.977c-1.964-2.729-4.916-4.506-8.331-4.506-6.192 0-10.862 6.21-10.862 12.673v99.328c0 6.677 4.67 12.673 10.862 12.673 5.516 0 9.822-4.614 10.717-10.425-4.709-1.416-8.923-4.144-12.279-7.814-2.607-2.852-2.409-7.283.443-9.89 2.851-2.607 7.282-2.408 9.889.443 2.416 2.642 5.72 4.356 9.402 4.356 7.733 0 13.643-7.218 13.643-15.734s-5.91-15.734-13.643-15.734c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7 5.352 0 10.388 1.655 14.658 4.533.593-1.743.915-3.634.915-5.612 0-2.11-.366-4.128-1.036-5.972-.769.858-1.588 1.66-2.453 2.397-2.94 2.507-7.361 2.156-9.869-.784-2.507-2.939-2.155-7.361.784-9.868 2.773-2.365 4.492-6.122 4.492-10.293 0-6.072-3.705-11.374-8.898-12.467-.154-.023-.307-.052-.458-.085-.499-.08-1.01-.121-1.532-.121-2.947 0-5.591 1.389-7.515 3.525-2.585 2.87-7.015 3.101-9.886.515-2.87-2.586-3.101-7.015-.515-9.886 3.111-3.453 7.059-5.988 11.472-7.252zm-104.526 67.344c-3.171-4.791-5.06-10.663-5.06-17.053 0-8.307 3.198-15.777 8.284-21.104-.133-1.118-.202-2.258-.202-3.416 0-11.354 6.582-20.897 15.717-24.792 2.948-11.354 12.67-19.485 23.946-19.485 13.56 0 24.888 12.555 24.888 26.673v99.328c0 14.585-11.328 26.673-24.888 26.673-12.765 0-23.578-10.484-24.757-24.184-11.98-3.166-21.058-14.769-21.058-28.88 0-4.987 1.134-9.661 3.13-13.76zm9.982-23.036c-.675 1.847-1.042 3.869-1.042 5.983 0 1.978.322 3.869.915 5.612 4.27-2.878 9.306-4.533 14.658-4.533 3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7-7.733 0-13.643 7.218-13.643 15.734s5.91 15.734 13.643 15.734c3.682 0 6.986-1.714 9.402-4.356 2.607-2.851 7.038-3.05 9.889-.443 2.852 2.607 3.05 7.038.443 9.89-3.35 3.664-7.556 6.389-12.255 7.807.891 5.813 5.192 10.432 10.693 10.432 6.21 0 10.888-5.993 10.888-12.673v-99.328c0-6.466-4.678-12.673-10.888-12.673-3.404 0-6.349 1.777-8.309 4.507 4.421 1.264 8.367 3.8 11.476 7.251 2.586 2.871 2.355 7.3-.516 9.886-2.87 2.586-7.3 2.355-9.886-.515-1.926-2.138-4.574-3.525-7.54-3.525-.493 0-.976.037-1.448.108-.196.045-.395.082-.596.11-5.165 1.118-8.844 6.404-8.844 12.455 0 1.243.153 2.45.442 3.594.101.284.183.572.246.862.748 2.326 2.071 4.346 3.814 5.823 2.947 2.498 3.311 6.919.813 9.866s-6.919 3.312-9.866.814c-.878-.745-1.71-1.554-2.489-2.422zm3.042 158.279c-5.442 0-9.893 4.451-9.893 9.892v36.44c0 5.423 4.454 9.866 9.893 9.866h17.334c3.866 0 7 3.134 7 7v16.945c0 4.902 4.027 8.929 8.93 8.929h46.304c4.903 0 8.93-4.027 8.93-8.929v-16.945c0-3.866 3.134-7 7-7h17.334c5.439 0 9.893-4.443 9.893-9.866v-36.44c0-5.441-4.451-9.892-9.893-9.892zm63.416-314.093 2.907-5.412c1.828-3.403 6.075-4.683 9.479-2.854 3.403 1.828 4.682 6.075 2.854 9.479l-16.073 29.925c-1.22 2.271-3.589 3.688-6.167 3.688s-4.947-1.417-6.167-3.688l-16.073-29.925c-1.828-3.404-.549-7.651 2.854-9.479 3.404-1.829 7.651-.549 9.479 2.854l2.907 5.412v-69.835c0-3.863 3.137-7 7-7s7 3.137 7 7zm-132.198 54.758-49.381-49.381c-2.732-2.731-2.732-7.167 0-9.899s7.168-2.732 9.9 0l49.38 49.38-1.771-5.881c-1.114-3.7.985-7.608 4.684-8.722 3.7-1.114 7.607.985 8.721 4.685l9.796 32.526c.743 2.468.069 5.145-1.753 6.968-1.823 1.823-4.5 2.496-6.969 1.753l-32.526-9.795c-3.699-1.114-5.798-5.022-4.684-8.721s5.022-5.798 8.721-4.684zm-44.859 122.299h-69.835c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7h69.835l-5.412-2.907c-3.403-1.828-4.682-6.076-2.854-9.479 1.828-3.404 6.075-4.683 9.479-2.855l29.926 16.074c2.271 1.22 3.688 3.589 3.688 6.167 0 2.577-1.417 4.947-3.688 6.166l-29.926 16.074c-3.404 1.828-7.651.549-9.479-2.855-1.828-3.403-.549-7.651 2.854-9.479zm54.758 118.198-49.38 49.38c-2.732 2.732-7.168 2.732-9.9 0s-2.732-7.167 0-9.899l49.381-49.381-5.882 1.772c-3.699 1.114-7.607-.985-8.721-4.685-1.114-3.699.985-7.607 4.684-8.721l32.526-9.795c2.469-.743 5.146-.07 6.969 1.753 1.822 1.823 2.496 4.5 1.753 6.968l-9.796 32.527c-1.114 3.699-5.021 5.798-8.721 4.684-3.699-1.114-5.798-5.022-4.684-8.721zm240.497-240.497 5.882-1.771c3.699-1.114 7.607.985 8.721 4.684s-.985 7.607-4.684 8.721l-32.526 9.795c-2.469.743-5.146.07-6.969-1.753-1.822-1.823-2.496-4.5-1.753-6.968l9.796-32.526c1.114-3.7 5.021-5.799 8.721-4.685 3.699 1.114 5.798 5.022 4.684 8.722l-1.771 5.881 49.38-49.38c2.732-2.732 7.168-2.732 9.9 0s2.732 7.168 0 9.899zm44.859 122.299 5.412 2.906c3.403 1.828 4.682 6.076 2.854 9.479-1.828 3.404-6.075 4.683-9.479 2.855l-29.926-16.074c-2.271-1.219-3.688-3.589-3.688-6.166 0-2.578 1.417-4.947 3.688-6.167l29.926-16.074c3.404-1.828 7.651-.549 9.479 2.855 1.828 3.403.549 7.651-2.854 9.479l-5.412 2.907h69.835c3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7zm-54.758 118.198 1.771 5.882c1.114 3.699-.985 7.607-4.684 8.721-3.7 1.114-7.607-.985-8.721-4.684l-9.796-32.527c-.743-2.468-.069-5.145 1.753-6.968 1.823-1.823 4.5-2.496 6.969-1.753l32.526 9.795c3.699 1.114 5.798 5.022 4.684 8.721-1.114 3.7-5.022 5.799-8.721 4.685l-5.882-1.772 49.381 49.381c2.732 2.732 2.732 7.167 0 9.899s-7.168 2.732-9.9 0z\"></path></svg>				\n									<h5>\n							gennemtænkte løsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"outline\"><path d=\"M486.41,144A28,28,0,0,0,472,92H349.123l5.457-21.828a48.513,48.513,0,0,0-12.848-46.153A41.035,41.035,0,0,0,312.609,12H308a8.009,8.009,0,0,0-8,8V47.413l-19.233,64.112A17.376,17.376,0,0,1,268,123.539V112a4,4,0,0,0-4-4H152a4,4,0,0,0-4,4v72a4,4,0,0,0,8,0V116h72V276H156V248a4,4,0,0,0-8,0v32a4,4,0,0,0,4,4H264a4,4,0,0,0,4-4V268.5h11.168A37.07,37.07,0,0,1,305.092,279a45.025,45.025,0,0,0,31.48,12.752L440,292a27.987,27.987,0,0,0,19.369-48.2,27.987,27.987,0,0,0,16-48A28,28,0,0,0,486.41,144ZM260,276H236V116h24Zm212-88H396a4,4,0,0,0,0,8h60a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h40a20,20,0,0,1,.01,40l-103.428-.25a37.07,37.07,0,0,1-25.924-10.5,45.031,45.031,0,0,0-31.49-12.752H268V131.686a25.317,25.317,0,0,0,20.429-17.862l19.4-64.675A4,4,0,0,0,308,48V20h4.609a33.082,33.082,0,0,1,23.481,9.69,40.507,40.507,0,0,1,10.728,38.541l-6.7,26.8A4,4,0,0,0,344,100H472a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h72a20,20,0,0,1,0,40Z\"></path><path d=\"M194.5,183.243l-1.9-.217a4,4,0,0,0-4.169,2.491L184.29,195.9H135.278l-3.539-9.317a4,4,0,0,0-7.478,2.84l2.459,6.477h-8.474L68.452,156.872a4,4,0,1,0-4.935,6.3L77.6,174.209,56.961,194.48l-6.636-5.491a4,4,0,1,0-5.1,6.163L87.219,229.9a44.1,44.1,0,0,0,28.05,10.1H212a8.009,8.009,0,0,0,8-8V203.9a8.009,8.009,0,0,0-8-8h-8v-2.01A10.708,10.708,0,0,0,194.5,183.243ZM212,203.9V232H115.269a36.081,36.081,0,0,1-22.951-8.264l-29.16-24.128,20.8-20.422L114.4,203.045a4,4,0,0,0,2.468.852H187a4,4,0,0,0,3.715-2.517l3.929-9.843a2.712,2.712,0,0,1,1.356,2.35v6.01a4,4,0,0,0,4,4Z\"></path><path d=\"M223.084,484.672,200.87,469.863V346.36A44.1,44.1,0,0,0,195.327,325l-17.183-30.94a4,4,0,0,0-7,3.884l17.184,30.94a36.073,36.073,0,0,1,4.537,17.478V468H164.333a4,4,0,1,0,0,8h31.321l12,8H152.865V352a4,4,0,0,0-.358-1.655l-25.454-56A4,4,0,0,0,123.411,292H114.2a4,4,0,0,0-3.945,4.658l8.862,53.175a36.016,36.016,0,0,1-1.951,18.949L78.642,468H48.333a4,4,0,1,0,0,8H80.377L92,484H32.088L76.63,361.366a4.017,4.017,0,0,0,.183-2.044L61.1,268H136a4,4,0,0,0,0-8H59.233L30.555,173.966A19.723,19.723,0,0,1,49.27,148H76a12,12,0,0,0,24,0h15.2a21.975,21.975,0,0,1,8.395,1.652l10.889,4.458a4,4,0,1,0,3.032-7.4L126.63,142.25A29.938,29.938,0,0,0,115.2,140H100v-4.527A16.014,16.014,0,0,0,112,120V103.473A16.014,16.014,0,0,0,124,88V80a4,4,0,0,0-4-4H90A22.025,22.025,0,0,0,68,98v18a12.02,12.02,0,0,0,8,11.314V140H49.27a27.723,27.723,0,0,0-26.305,36.5l29.493,88.482,16.29,94.655-46.128,127A4,4,0,0,0,26.38,492h78.485a4,4,0,0,0,2.268-7.3L86.3,470.368l38.318-98.69a44.018,44.018,0,0,0,2.385-23.16L118.921,300h1.914l24.03,52.867V488a4,4,0,0,0,4,4h72a4,4,0,0,0,2.219-7.328ZM76,98A14.015,14.015,0,0,1,90,84h26v4a8.009,8.009,0,0,1-8,8H92a4,4,0,0,0-4,4,11.962,11.962,0,0,1-1.53,5.881A12.044,12.044,0,0,0,76,104.686Zm4,14a3.981,3.981,0,0,1,3.407,1.9,4,4,0,0,0,5.956.975c.207-.171.7-.648.7-.648.032-.028.061-.057.09-.087A19.907,19.907,0,0,0,95.6,104H104v16a8.009,8.009,0,0,1-8,8,12.133,12.133,0,0,1-2.681-.3,4,4,0,1,0-1.775,7.8c.151.035.3.06.456.091V148a4,4,0,1,1-8,0V124a4,4,0,0,0-4-4,4,4,0,0,1,0-8Z\"></path></g></svg>				\n									<h5>\n							arbejde udført med ansvar						\n					</h5>\n				<p>Vi lover ikke mere, end vi kan holde – men vi holder det, vi lover.</p>			<h2>KONTAKT OS</h2>		<p>Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.</p>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 13:50:23', '2026-01-26 13:50:23', '', 10, 'https://mrarif.me/cpnordic/?p=551', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(48, 1, '2026-01-25 12:48:21', '2026-01-25 12:48:21', '<ul>\n							<li>\n											<a href=\"tel:XXX-XXX-XXX\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										XXX-XXX-XXX\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@gmail.com\n											</a>\n									</li>\n						</ul>\n					<a target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n					<a target=\"_blank\">\n						Youtube\n						<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z\"></path></svg>					</a>\n																	<img src=\"https://mrarif.me/cpnordic/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />																					<a role=\"button\">\n									Book Now \n					</a>', 'Header', '', 'inherit', 'closed', 'closed', '', '30-revision-v1', '', '', '2026-01-25 12:48:21', '2026-01-25 12:48:21', '', 30, 'https://mrarif.me/cpnordic/?p=48', 0, 'revision', '', 0),
(36, 1, '2026-01-25 12:12:08', '2026-01-25 12:12:08', '<ul>\n							<li>\n											<a href=\"tel:XXX-XXX-XXX\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										XXX-XXX-XXX\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@gmail.com\n											</a>\n									</li>\n						</ul>\n					<a href=\"https://www.facebook.com/modernhomecarehh/\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"https://www.instagram.com/modernhomecarellc?fbclid=IwZXh0bgNhZW0CMTAAAR2vcF8ghFhyPcka4WAqv2s18S8Bmgs7v24ryKWPZSfs1S7ukdm-Tlgyn2Y_aem_wYugYGBVO_28k3uF4EikcA\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n					<a href=\"https://www.youtube.com/@modernhomecare\" target=\"_blank\">\n						Youtube\n						<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z\"></path></svg>					</a>\n																	<img src=\"https://mrarif.me/cpnordic/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />																					<a role=\"button\">\n									Book Now \n					</a>', 'Header', '', 'inherit', 'closed', 'closed', '', '30-revision-v1', '', '', '2026-01-25 12:12:08', '2026-01-25 12:12:08', '', 30, 'https://mrarif.me/cpnordic/?p=36', 0, 'revision', '', 0),
(38, 1, '2026-01-25 12:24:24', '2026-01-25 12:24:24', '<ul>\n							<li>\n											<a href=\"tel:XXX-XXX-XXX\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										XXX-XXX-XXX\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@gmail.com\n											</a>\n									</li>\n						</ul>\n					<a href=\"https://www.facebook.com/modernhomecarehh/\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"https://www.instagram.com/modernhomecarellc?fbclid=IwZXh0bgNhZW0CMTAAAR2vcF8ghFhyPcka4WAqv2s18S8Bmgs7v24ryKWPZSfs1S7ukdm-Tlgyn2Y_aem_wYugYGBVO_28k3uF4EikcA\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n					<a href=\"https://www.youtube.com/@modernhomecare\" target=\"_blank\">\n						Youtube\n						<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z\"></path></svg>					</a>\n																	<img src=\"https://mrarif.me/cpnordic/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />																					<a role=\"button\">\n									Book Now \n					</a>', 'Header', '', 'inherit', 'closed', 'closed', '', '30-revision-v1', '', '', '2026-01-25 12:24:24', '2026-01-25 12:24:24', '', 30, 'https://mrarif.me/cpnordic/?p=38', 0, 'revision', '', 0),
(39, 1, '2026-01-25 12:24:49', '2026-01-25 12:24:49', '<ul>\n							<li>\n											<a href=\"tel:XXX-XXX-XXX\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										XXX-XXX-XXX\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@gmail.com\n											</a>\n									</li>\n						</ul>\n					<a href=\"https://www.facebook.com/modernhomecarehh/\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"https://www.instagram.com/modernhomecarellc?fbclid=IwZXh0bgNhZW0CMTAAAR2vcF8ghFhyPcka4WAqv2s18S8Bmgs7v24ryKWPZSfs1S7ukdm-Tlgyn2Y_aem_wYugYGBVO_28k3uF4EikcA\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n					<a href=\"https://www.youtube.com/@modernhomecare\" target=\"_blank\">\n						Youtube\n						<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z\"></path></svg>					</a>\n																	<img src=\"https://mrarif.me/cpnordic/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />																					<a role=\"button\">\n									Book Now \n					</a>', 'Header', '', 'inherit', 'closed', 'closed', '', '30-revision-v1', '', '', '2026-01-25 12:24:49', '2026-01-25 12:24:49', '', 30, 'https://mrarif.me/cpnordic/?p=39', 0, 'revision', '', 0),
(34, 1, '2026-01-25 12:04:15', '2026-01-25 12:04:15', '<ul>\n							<li>\n											<a href=\"tel:XXX-XXX-XXX\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										XXX-XXX-XXX\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@gmail.com\n											</a>\n									</li>\n						</ul>\n					<a href=\"https://www.facebook.com/modernhomecarehh/\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"https://www.instagram.com/modernhomecarellc?fbclid=IwZXh0bgNhZW0CMTAAAR2vcF8ghFhyPcka4WAqv2s18S8Bmgs7v24ryKWPZSfs1S7ukdm-Tlgyn2Y_aem_wYugYGBVO_28k3uF4EikcA\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n					<a href=\"https://www.youtube.com/@modernhomecare\" target=\"_blank\">\n						Youtube\n						<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z\"></path></svg>					</a>\n																	<img src=\"https://mrarif.me/cpnordic/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />																		<ul>\n							<li>\n											<a href=\"tel:XXX-XXX-XXX\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										XXX-XXX-XXX\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@gmail.com\n											</a>\n									</li>\n						</ul>\n					<a href=\"https://www.instagram.com/cffhealthcare/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n					<a href=\"https://twitter.com/cffhealthcare\" target=\"_blank\">\n						X-twitter\n						<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M389.2 48h70.6L305.6 224.2 487 464H345L233.7 318.6 106.5 464H35.8L200.7 275.5 26.8 48H172.4L272.9 180.9 389.2 48zM364.4 421.8h39.1L151.1 88h-42L364.4 421.8z\"></path></svg>					</a>\n					<a href=\"https://www.linkedin.com/cffhealthcare?_l=en_US\" target=\"_blank\">\n						Linkedin-in\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z\"></path></svg>					</a>\n					<a href=\"https://www.facebook.com/cffhealthcare\" target=\"_blank\">\n						Facebook\n						<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256C504 119 393 8 256 8S8 119 8 256c0 123.78 90.69 226.38 209.25 245V327.69h-63V256h63v-54.64c0-62.15 37-96.48 93.67-96.48 27.14 0 55.52 4.84 55.52 4.84v61h-31.28c-30.8 0-40.41 19.12-40.41 38.73V256h68.78l-11 71.69h-57.78V501C413.31 482.38 504 379.78 504 256z\"></path></svg>					</a>\n																	<img src=\"https://mrarif.me/cpnordic/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />																					<a role=\"button\">\n									Book Now \n					</a>\n						<p>Pharmaceutical, Medical Device, and Biotech life sciences consulting firm.</p>			<h5>Quick Links</h5>							<ul>\n							<li>\n										Home\n									</li>\n								<li>\n										About Us\n									</li>\n								<li>\n										Our Approach\n									</li>\n								<li>\n										Industries\n									</li>\n								<li>\n										Practice Areas\n									</li>\n								<li>\n										Resources\n									</li>\n								<li>\n										Free Checklists\n									</li>\n								<li>\n										Blog\n									</li>\n								<li>\n										Press\n									</li>\n						</ul>\n							<h5>Contact Info</h5>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										Location Here\n									</li>\n								<li>\n											<a href=\"tel:XXX-XXX-XXX\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										Direct:  XXX-XXX-XXX\n											</a>\n									</li>\n						</ul>\n					<a target=\"_blank\">\n						Linkedin-in\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z\"></path></svg>					</a>\n					<a target=\"_blank\">\n						Twitter\n						<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z\"></path></svg>					</a>\n					<a target=\"_blank\">\n						Youtube\n						<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z\"></path></svg>					</a>\n					<a target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n									<ul>\n							<li>\n										© Copyright 2024 all rights reserved\n									</li>\n						</ul>\n									<ul>\n							<li>\n										Privacy Statement\n									</li>\n								<li>\n										Accessibility Statement\n									</li>\n						</ul>', 'Header', '', 'inherit', 'closed', 'closed', '', '30-revision-v1', '', '', '2026-01-25 12:04:15', '2026-01-25 12:04:15', '', 30, 'https://mrarif.me/cpnordic/?p=34', 0, 'revision', '', 0),
(37, 1, '2026-01-25 12:23:27', '2026-01-25 12:23:27', '<ul>\n							<li>\n											<a href=\"tel:XXX-XXX-XXX\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										XXX-XXX-XXX\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@gmail.com\n											</a>\n									</li>\n						</ul>\n					<a href=\"https://www.facebook.com/modernhomecarehh/\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"https://www.instagram.com/modernhomecarellc?fbclid=IwZXh0bgNhZW0CMTAAAR2vcF8ghFhyPcka4WAqv2s18S8Bmgs7v24ryKWPZSfs1S7ukdm-Tlgyn2Y_aem_wYugYGBVO_28k3uF4EikcA\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n					<a href=\"https://www.youtube.com/@modernhomecare\" target=\"_blank\">\n						Youtube\n						<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z\"></path></svg>					</a>\n																	<img src=\"https://mrarif.me/cpnordic/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />																					<a role=\"button\">\n									Book Now \n					</a>', 'Header', '', 'inherit', 'closed', 'closed', '', '30-revision-v1', '', '', '2026-01-25 12:23:27', '2026-01-25 12:23:27', '', 30, 'https://mrarif.me/cpnordic/?p=37', 0, 'revision', '', 0),
(40, 1, '2026-01-25 12:25:30', '2026-01-25 12:25:30', '<ul>\n							<li>\n											<a href=\"tel:XXX-XXX-XXX\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										XXX-XXX-XXX\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@gmail.com\n											</a>\n									</li>\n						</ul>\n					<a href=\"https://www.facebook.com/modernhomecarehh/\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"https://www.instagram.com/modernhomecarellc?fbclid=IwZXh0bgNhZW0CMTAAAR2vcF8ghFhyPcka4WAqv2s18S8Bmgs7v24ryKWPZSfs1S7ukdm-Tlgyn2Y_aem_wYugYGBVO_28k3uF4EikcA\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n					<a href=\"https://www.youtube.com/@modernhomecare\" target=\"_blank\">\n						Youtube\n						<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z\"></path></svg>					</a>\n																	<img src=\"https://mrarif.me/cpnordic/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />																					<a role=\"button\">\n									Book Now \n					</a>', 'Header', '', 'inherit', 'closed', 'closed', '', '30-revision-v1', '', '', '2026-01-25 12:25:30', '2026-01-25 12:25:30', '', 30, 'https://mrarif.me/cpnordic/?p=40', 0, 'revision', '', 0),
(46, 1, '2026-01-25 12:35:57', '2026-01-25 12:35:57', '<h1>Add Your Heading Text Here</h1>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-25 12:35:57', '2026-01-25 12:35:57', '', 10, 'https://mrarif.me/cpnordic/?p=46', 0, 'revision', '', 0),
(42, 1, '2026-01-25 12:32:18', '2026-01-25 12:32:18', '', 'Default Kit', '', 'inherit', 'closed', 'closed', '', '26-revision-v1', '', '', '2026-01-25 12:32:18', '2026-01-25 12:32:18', '', 26, 'https://mrarif.me/cpnordic/?p=42', 0, 'revision', '', 0),
(43, 1, '2026-01-25 12:32:18', '2026-01-25 12:32:18', '', 'Default Kit', '', 'inherit', 'closed', 'closed', '', '26-revision-v1', '', '', '2026-01-25 12:32:18', '2026-01-25 12:32:18', '', 26, 'https://mrarif.me/cpnordic/?p=43', 0, 'revision', '', 0),
(44, 1, '2026-01-25 12:35:57', '2026-01-25 12:35:57', '', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-25 12:35:57', '2026-01-25 12:35:57', '', 10, 'https://mrarif.me/cpnordic/?p=44', 0, 'revision', '', 0),
(45, 1, '2026-01-25 12:35:57', '2026-01-25 12:35:57', '', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-25 12:35:57', '2026-01-25 12:35:57', '', 10, 'https://mrarif.me/cpnordic/?p=45', 0, 'revision', '', 0),
(49, 1, '2026-01-25 12:50:18', '2026-01-25 12:50:18', '', 'Transparent File-02', '', 'inherit', 'open', 'closed', '', 'transparent-file-02', '', '', '2026-01-25 12:50:18', '2026-01-25 12:50:18', '', 30, 'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02.png', 0, 'attachment', 'image/png', 0),
(50, 1, '2026-01-25 12:50:24', '2026-01-25 12:50:24', '', 'Transparent File-01', '', 'inherit', 'open', 'closed', '', 'transparent-file-01', '', '', '2026-01-25 12:50:24', '2026-01-25 12:50:24', '', 30, 'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-01.png', 0, 'attachment', 'image/png', 0),
(550, 1, '2026-01-26 13:43:56', '2026-01-26 13:43:56', '<img width=\"2560\" height=\"1157\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-scaled.png\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-scaled.png 2560w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-300x136.png 300w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-1024x463.png 1024w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-768x347.png 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-1536x694.png 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-2048x925.png 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />																					<a role=\"button\">\n									Kontakt\n					</a>', 'Header', '', 'inherit', 'closed', 'closed', '', '30-revision-v1', '', '', '2026-01-26 13:43:56', '2026-01-26 13:43:56', '', 30, 'https://mrarif.me/cpnordic/?p=550', 0, 'revision', '', 0),
(92, 1, '2026-01-25 13:28:06', '2026-01-25 13:28:06', '<ul>\n							<li>\n											<a href=\"tel:41600040\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										41 60 00 40\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:kontakt@cp-nordic.dk\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										kontakt@cp-nordic.dk\n											</a>\n									</li>\n						</ul>\n					<a href=\"https://www.facebook.com/cpnordic/\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"https://www.instagram.com/cpnordic/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n																	<img width=\"2560\" height=\"1157\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-01-scaled.png\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-01-scaled.png 2560w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-01-300x136.png 300w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-01-1024x463.png 1024w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-01-768x347.png 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-01-1536x694.png 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-01-2048x925.png 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />																					<a role=\"button\">\n									Kontakt\n					</a>', 'Header', '', 'inherit', 'closed', 'closed', '', '30-revision-v1', '', '', '2026-01-25 13:28:06', '2026-01-25 13:28:06', '', 30, 'https://mrarif.me/cpnordic/?p=92', 0, 'revision', '', 0),
(51, 1, '2026-01-25 12:55:26', '2026-01-25 12:55:26', '<ul>\n							<li>\n											<a href=\"tel:XXX-XXX-XXX\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										XXX-XXX-XXX\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@gmail.com\n											</a>\n									</li>\n						</ul>\n					<a target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n					<a target=\"_blank\">\n						Youtube\n						<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z\"></path></svg>					</a>\n																	<img width=\"2560\" height=\"1157\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-scaled.png\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-scaled.png 2560w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-300x136.png 300w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-1024x463.png 1024w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-768x347.png 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-1536x694.png 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-2048x925.png 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />																					<a role=\"button\">\n									Book Now \n					</a>', 'Header', '', 'inherit', 'closed', 'closed', '', '30-revision-v1', '', '', '2026-01-25 12:55:26', '2026-01-25 12:55:26', '', 30, 'https://mrarif.me/cpnordic/?p=51', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(52, 1, '2026-01-25 12:55:31', '2026-01-25 12:55:31', '<ul>\n							<li>\n											<a href=\"tel:XXX-XXX-XXX\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										XXX-XXX-XXX\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@gmail.com\n											</a>\n									</li>\n						</ul>\n					<a target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n					<a target=\"_blank\">\n						Youtube\n						<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z\"></path></svg>					</a>\n																	<img width=\"2560\" height=\"1157\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-scaled.png\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-scaled.png 2560w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-300x136.png 300w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-1024x463.png 1024w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-768x347.png 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-1536x694.png 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-2048x925.png 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />																					<a role=\"button\">\n									Book Now \n					</a>', 'Header', '', 'inherit', 'closed', 'closed', '', '30-revision-v1', '', '', '2026-01-25 12:55:31', '2026-01-25 12:55:31', '', 30, 'https://mrarif.me/cpnordic/?p=52', 0, 'revision', '', 0),
(53, 1, '2026-01-25 12:55:38', '2026-01-25 12:55:38', '<ul>\n							<li>\n											<a href=\"tel:XXX-XXX-XXX\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										XXX-XXX-XXX\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@gmail.com\n											</a>\n									</li>\n						</ul>\n					<a target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n					<a target=\"_blank\">\n						Youtube\n						<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z\"></path></svg>					</a>\n																	<img width=\"2560\" height=\"1157\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-01-scaled.png\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-01-scaled.png 2560w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-01-300x136.png 300w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-01-1024x463.png 1024w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-01-768x347.png 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-01-1536x694.png 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-01-2048x925.png 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />																					<a role=\"button\">\n									Book Now \n					</a>', 'Header', '', 'inherit', 'closed', 'closed', '', '30-revision-v1', '', '', '2026-01-25 12:55:38', '2026-01-25 12:55:38', '', 30, 'https://mrarif.me/cpnordic/?p=53', 0, 'revision', '', 0),
(54, 1, '2026-01-25 12:55:54', '2026-01-25 12:55:54', '<ul>\n							<li>\n											<a href=\"tel:XXX-XXX-XXX\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										XXX-XXX-XXX\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@gmail.com\n											</a>\n									</li>\n						</ul>\n					<a target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n					<a target=\"_blank\">\n						Youtube\n						<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z\"></path></svg>					</a>\n																	<img width=\"2560\" height=\"1157\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-01-scaled.png\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-01-scaled.png 2560w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-01-300x136.png 300w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-01-1024x463.png 1024w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-01-768x347.png 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-01-1536x694.png 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-01-2048x925.png 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />																					<a role=\"button\">\n									Kontakt\n					</a>', 'Header', '', 'inherit', 'closed', 'closed', '', '30-revision-v1', '', '', '2026-01-25 12:55:54', '2026-01-25 12:55:54', '', 30, 'https://mrarif.me/cpnordic/?p=54', 0, 'revision', '', 0),
(56, 1, '2026-01-25 13:05:29', '2026-01-25 13:05:29', '', '182_2-2-copyright', '', 'inherit', 'open', 'closed', '', '182_2-2-copyright', '', '', '2026-01-25 13:05:29', '2026-01-25 13:05:29', '', 0, 'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/182_2-2-copyright.jpg', 0, 'attachment', 'image/jpeg', 0),
(57, 1, '2026-01-25 13:05:34', '2026-01-25 13:05:34', '', '182_2-1-copyright', '', 'inherit', 'open', 'closed', '', '182_2-1-copyright', '', '', '2026-01-25 13:05:34', '2026-01-25 13:05:34', '', 0, 'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/182_2-1-copyright.jpg', 0, 'attachment', 'image/jpeg', 0),
(61, 1, '2026-01-25 13:08:06', '2026-01-25 13:08:06', '<h1>Add Your Heading Text Here</h1>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-25 13:08:06', '2026-01-25 13:08:06', '', 10, 'https://mrarif.me/cpnordic/?p=61', 0, 'revision', '', 0),
(59, 1, '2026-01-25 13:08:06', '2026-01-25 13:08:06', '<h1>Add Your Heading Text Here</h1>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-25 13:08:06', '2026-01-25 13:08:06', '', 10, 'https://mrarif.me/cpnordic/?p=59', 0, 'revision', '', 0),
(60, 1, '2026-01-25 13:08:06', '2026-01-25 13:08:06', '<h1>Add Your Heading Text Here</h1>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-25 13:08:06', '2026-01-25 13:08:06', '', 10, 'https://mrarif.me/cpnordic/?p=60', 0, 'revision', '', 0),
(62, 1, '2026-01-25 13:08:56', '2026-01-25 13:08:56', '<h1>Add Your Heading Text Here</h1>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-25 13:08:56', '2026-01-25 13:08:56', '', 10, 'https://mrarif.me/cpnordic/?p=62', 0, 'revision', '', 0),
(63, 1, '2026-01-25 13:08:57', '2026-01-25 13:08:57', '<h1>Add Your Heading Text Here</h1>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-25 13:08:57', '2026-01-25 13:08:57', '', 10, 'https://mrarif.me/cpnordic/?p=63', 0, 'revision', '', 0),
(64, 1, '2026-01-25 13:08:57', '2026-01-25 13:08:57', '<h1>Add Your Heading Text Here</h1>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-25 13:08:57', '2026-01-25 13:08:57', '', 10, 'https://mrarif.me/cpnordic/?p=64', 0, 'revision', '', 0),
(65, 1, '2026-01-25 13:10:29', '2026-01-25 13:10:29', '<ul>\n							<li>\n											<a href=\"tel:XXX-XXX-XXX\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										XXX-XXX-XXX\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@gmail.com\n											</a>\n									</li>\n						</ul>\n					<a target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n					<a target=\"_blank\">\n						Youtube\n						<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z\"></path></svg>					</a>\n																	<img width=\"2560\" height=\"1157\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-scaled.png\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-scaled.png 2560w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-300x136.png 300w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-1024x463.png 1024w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-768x347.png 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-1536x694.png 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-2048x925.png 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />																					<a role=\"button\">\n									Kontakt\n					</a>', 'Header', '', 'inherit', 'closed', 'closed', '', '30-revision-v1', '', '', '2026-01-25 13:10:29', '2026-01-25 13:10:29', '', 30, 'https://mrarif.me/cpnordic/?p=65', 0, 'revision', '', 0),
(66, 1, '2026-01-25 13:10:41', '2026-01-25 13:10:41', '<ul>\n							<li>\n											<a href=\"tel:XXX-XXX-XXX\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										XXX-XXX-XXX\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@gmail.com\n											</a>\n									</li>\n						</ul>\n					<a target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n					<a target=\"_blank\">\n						Youtube\n						<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z\"></path></svg>					</a>\n																	<img width=\"2560\" height=\"1157\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-scaled.png\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-scaled.png 2560w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-300x136.png 300w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-1024x463.png 1024w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-768x347.png 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-1536x694.png 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-2048x925.png 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />																					<a role=\"button\">\n									Kontakt\n					</a>', 'Header', '', 'inherit', 'closed', 'closed', '', '30-revision-v1', '', '', '2026-01-25 13:10:41', '2026-01-25 13:10:41', '', 30, 'https://mrarif.me/cpnordic/?p=66', 0, 'revision', '', 0),
(67, 1, '2026-01-25 13:13:23', '2026-01-25 13:13:23', '<ul>\n							<li>\n											<a href=\"tel:XXX-XXX-XXX\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										XXX-XXX-XXX\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@gmail.com\n											</a>\n									</li>\n						</ul>\n					<a target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n					<a target=\"_blank\">\n						Youtube\n						<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z\"></path></svg>					</a>\n																	<img width=\"2560\" height=\"1157\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-scaled.png\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-scaled.png 2560w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-300x136.png 300w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-1024x463.png 1024w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-768x347.png 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-1536x694.png 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-2048x925.png 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />																					<a role=\"button\">\n									Kontakt\n					</a>', 'Header', '', 'inherit', 'closed', 'closed', '', '30-revision-v1', '', '', '2026-01-25 13:13:23', '2026-01-25 13:13:23', '', 30, 'https://mrarif.me/cpnordic/?p=67', 0, 'revision', '', 0),
(68, 1, '2026-01-25 13:13:55', '2026-01-25 13:13:55', '<h1>Add Your Heading Text Here</h1>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-25 13:13:55', '2026-01-25 13:13:55', '', 10, 'https://mrarif.me/cpnordic/?p=68', 0, 'revision', '', 0),
(69, 1, '2026-01-25 13:13:55', '2026-01-25 13:13:55', '<h1>Add Your Heading Text Here</h1>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-25 13:13:55', '2026-01-25 13:13:55', '', 10, 'https://mrarif.me/cpnordic/?p=69', 0, 'revision', '', 0),
(70, 1, '2026-01-25 13:13:55', '2026-01-25 13:13:55', '<h1>Add Your Heading Text Here</h1>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-25 13:13:55', '2026-01-25 13:13:55', '', 10, 'https://mrarif.me/cpnordic/?p=70', 0, 'revision', '', 0),
(71, 1, '2026-01-25 13:14:15', '2026-01-25 13:14:15', '<ul>\n							<li>\n											<a href=\"tel:XXX-XXX-XXX\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										XXX-XXX-XXX\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@gmail.com\n											</a>\n									</li>\n						</ul>\n					<a target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n					<a target=\"_blank\">\n						Youtube\n						<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z\"></path></svg>					</a>\n																	<img width=\"2560\" height=\"1157\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-scaled.png\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-scaled.png 2560w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-300x136.png 300w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-1024x463.png 1024w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-768x347.png 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-1536x694.png 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-2048x925.png 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />																					<a role=\"button\">\n									Kontakt\n					</a>', 'Header', '', 'inherit', 'closed', 'closed', '', '30-revision-v1', '', '', '2026-01-25 13:14:15', '2026-01-25 13:14:15', '', 30, 'https://mrarif.me/cpnordic/?p=71', 0, 'revision', '', 0),
(72, 1, '2026-01-25 13:14:52', '2026-01-25 13:14:52', '<h1>Add Your Heading Text Here</h1>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-25 13:14:52', '2026-01-25 13:14:52', '', 10, 'https://mrarif.me/cpnordic/?p=72', 0, 'revision', '', 0),
(73, 1, '2026-01-25 13:14:52', '2026-01-25 13:14:52', '<h1>Add Your Heading Text Here</h1>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-25 13:14:52', '2026-01-25 13:14:52', '', 10, 'https://mrarif.me/cpnordic/?p=73', 0, 'revision', '', 0),
(74, 1, '2026-01-25 13:14:53', '2026-01-25 13:14:53', '<h1>CP-NORDIC</h1>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-25 13:14:53', '2026-01-25 13:14:53', '', 10, 'https://mrarif.me/cpnordic/?p=74', 0, 'revision', '', 0),
(77, 1, '2026-01-25 13:18:53', '2026-01-25 13:18:53', '<h1>CP-NORDIC</h1>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-25 13:18:53', '2026-01-25 13:18:53', '', 10, 'https://mrarif.me/cpnordic/?p=77', 0, 'revision', '', 0),
(78, 1, '2026-01-25 13:18:54', '2026-01-25 13:18:54', '<h1>CP-NORDIC</h1>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-25 13:18:54', '2026-01-25 13:18:54', '', 10, 'https://mrarif.me/cpnordic/?p=78', 0, 'revision', '', 0),
(79, 1, '2026-01-25 13:18:54', '2026-01-25 13:18:54', '<h1>CP NORDIC</h1>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-25 13:18:54', '2026-01-25 13:18:54', '', 10, 'https://mrarif.me/cpnordic/?p=79', 0, 'revision', '', 0),
(80, 1, '2026-01-25 13:20:32', '2026-01-25 13:20:32', '<h1>CP NORDIC</h1>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-25 13:20:32', '2026-01-25 13:20:32', '', 10, 'https://mrarif.me/cpnordic/?p=80', 0, 'revision', '', 0),
(81, 1, '2026-01-25 13:20:32', '2026-01-25 13:20:32', '<h1>CP NORDIC</h1>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-25 13:20:32', '2026-01-25 13:20:32', '', 10, 'https://mrarif.me/cpnordic/?p=81', 0, 'revision', '', 0),
(82, 1, '2026-01-25 13:20:32', '2026-01-25 13:20:32', '<h1>CP NORDIC</h1>					</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-25 13:20:32', '2026-01-25 13:20:32', '', 10, 'https://mrarif.me/cpnordic/?p=82', 0, 'revision', '', 0),
(83, 1, '2026-01-25 13:22:15', '2026-01-25 13:22:15', '<h1>CP NORDIC</h1>					</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-25 13:22:15', '2026-01-25 13:22:15', '', 10, 'https://mrarif.me/cpnordic/?p=83', 0, 'revision', '', 0),
(84, 1, '2026-01-25 13:22:15', '2026-01-25 13:22:15', '<h1>CP NORDIC</h1>					</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-25 13:22:15', '2026-01-25 13:22:15', '', 10, 'https://mrarif.me/cpnordic/?p=84', 0, 'revision', '', 0),
(85, 1, '2026-01-25 13:22:15', '2026-01-25 13:22:15', '<h1>CP NORDIC</h1>					</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-25 13:22:15', '2026-01-25 13:22:15', '', 10, 'https://mrarif.me/cpnordic/?p=85', 0, 'revision', '', 0),
(89, 1, '2026-01-25 13:24:18', '2026-01-25 13:24:18', '<ul>\n							<li>\n											<a href=\"tel:XXX-XXX-XXX\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										XXX-XXX-XXX\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@gmail.com\n											</a>\n									</li>\n						</ul>\n					<a target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n					<a target=\"_blank\">\n						Youtube\n						<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z\"></path></svg>					</a>\n																	<img width=\"2560\" height=\"1157\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-01-scaled.png\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-01-scaled.png 2560w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-01-300x136.png 300w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-01-1024x463.png 1024w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-01-768x347.png 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-01-1536x694.png 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-01-2048x925.png 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />																					<a role=\"button\">\n									Kontakt\n					</a>', 'Header', '', 'inherit', 'closed', 'closed', '', '30-revision-v1', '', '', '2026-01-25 13:24:18', '2026-01-25 13:24:18', '', 30, 'https://mrarif.me/cpnordic/?p=89', 0, 'revision', '', 0),
(90, 1, '2026-01-25 13:24:27', '2026-01-25 13:24:27', '<ul>\n							<li>\n											<a href=\"tel:XXX-XXX-XXX\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										XXX-XXX-XXX\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@gmail.com\n											</a>\n									</li>\n						</ul>\n					<a target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n					<a target=\"_blank\">\n						Youtube\n						<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z\"></path></svg>					</a>\n																	<img width=\"2560\" height=\"1157\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-01-scaled.png\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-01-scaled.png 2560w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-01-300x136.png 300w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-01-1024x463.png 1024w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-01-768x347.png 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-01-1536x694.png 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-01-2048x925.png 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />																					<a role=\"button\">\n									Kontakt\n					</a>', 'Header', '', 'inherit', 'closed', 'closed', '', '30-revision-v1', '', '', '2026-01-25 13:24:27', '2026-01-25 13:24:27', '', 30, 'https://mrarif.me/cpnordic/?p=90', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(93, 1, '2026-01-25 13:29:27', '2026-01-25 13:29:27', '<ul>\n							<li>\n											<a href=\"tel:41600040\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										41 60 00 40\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:kontakt@cp-nordic.dk\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										kontakt@cp-nordic.dk\n											</a>\n									</li>\n						</ul>\n					<a href=\"https://www.facebook.com/cpnordic/\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"https://www.instagram.com/cpnordic/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n																	<img width=\"2560\" height=\"1157\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-scaled.png\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-scaled.png 2560w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-300x136.png 300w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-1024x463.png 1024w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-768x347.png 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-1536x694.png 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-2048x925.png 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />																					<a role=\"button\">\n									Kontakt\n					</a>', 'Header', '', 'inherit', 'closed', 'closed', '', '30-revision-v1', '', '', '2026-01-25 13:29:27', '2026-01-25 13:29:27', '', 30, 'https://mrarif.me/cpnordic/?p=93', 0, 'revision', '', 0),
(94, 1, '2026-01-25 13:29:33', '2026-01-25 13:29:33', '<ul>\n							<li>\n											<a href=\"tel:41600040\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										41 60 00 40\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:kontakt@cp-nordic.dk\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										kontakt@cp-nordic.dk\n											</a>\n									</li>\n						</ul>\n					<a href=\"https://www.facebook.com/cpnordic/\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"https://www.instagram.com/cpnordic/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n																	<img width=\"2560\" height=\"1157\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-scaled.png\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-scaled.png 2560w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-300x136.png 300w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-1024x463.png 1024w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-768x347.png 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-1536x694.png 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-2048x925.png 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />																					<a role=\"button\">\n									Kontakt\n					</a>', 'Header', '', 'inherit', 'closed', 'closed', '', '30-revision-v1', '', '', '2026-01-25 13:29:33', '2026-01-25 13:29:33', '', 30, 'https://mrarif.me/cpnordic/?p=94', 0, 'revision', '', 0),
(95, 1, '2026-01-25 13:30:18', '2026-01-25 13:30:18', '<ul>\n							<li>\n											<a href=\"tel:41600040\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										41 60 00 40\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:kontakt@cp-nordic.dk\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										kontakt@cp-nordic.dk\n											</a>\n									</li>\n						</ul>\n					<a href=\"https://www.facebook.com/cpnordic/\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"https://www.instagram.com/cpnordic/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n																	<img width=\"2560\" height=\"1157\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-scaled.png\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-scaled.png 2560w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-300x136.png 300w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-1024x463.png 1024w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-768x347.png 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-1536x694.png 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-2048x925.png 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />																					<a role=\"button\">\n									Kontakt\n					</a>', 'Header', '', 'inherit', 'closed', 'closed', '', '30-revision-v1', '', '', '2026-01-25 13:30:18', '2026-01-25 13:30:18', '', 30, 'https://mrarif.me/cpnordic/?p=95', 0, 'revision', '', 0),
(96, 1, '2026-01-25 13:30:33', '2026-01-25 13:30:33', '<ul>\n							<li>\n											<a href=\"tel:41600040\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										41 60 00 40\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:kontakt@cp-nordic.dk\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										kontakt@cp-nordic.dk\n											</a>\n									</li>\n						</ul>\n					<a href=\"https://www.facebook.com/cpnordic/\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"https://www.instagram.com/cpnordic/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n																	<img width=\"2560\" height=\"1157\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-scaled.png\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-scaled.png 2560w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-300x136.png 300w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-1024x463.png 1024w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-768x347.png 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-1536x694.png 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-2048x925.png 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />																					<a role=\"button\">\n									Kontakt\n					</a>', 'Header', '', 'inherit', 'closed', 'closed', '', '30-revision-v1', '', '', '2026-01-25 13:30:33', '2026-01-25 13:30:33', '', 30, 'https://mrarif.me/cpnordic/?p=96', 0, 'revision', '', 0),
(97, 1, '2026-01-25 13:33:54', '2026-01-25 13:33:54', '<ul>\n							<li>\n											<a href=\"tel:41600040\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										41 60 00 40\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:kontakt@cp-nordic.dk\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										kontakt@cp-nordic.dk\n											</a>\n									</li>\n						</ul>\n					<a href=\"https://www.facebook.com/cpnordic/\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"https://www.instagram.com/cpnordic/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n																	<img width=\"2560\" height=\"1157\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-scaled.png\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-scaled.png 2560w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-300x136.png 300w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-1024x463.png 1024w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-768x347.png 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-1536x694.png 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-2048x925.png 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />																					<a role=\"button\">\n									Kontakt\n					</a>', 'Header', '', 'inherit', 'closed', 'closed', '', '30-revision-v1', '', '', '2026-01-25 13:33:54', '2026-01-25 13:33:54', '', 30, 'https://mrarif.me/cpnordic/?p=97', 0, 'revision', '', 0),
(98, 1, '2026-01-25 13:34:13', '2026-01-25 13:34:13', '<ul>\n							<li>\n											<a href=\"tel:41600040\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										41 60 00 40\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:kontakt@cp-nordic.dk\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										kontakt@cp-nordic.dk\n											</a>\n									</li>\n						</ul>\n					<a href=\"https://www.facebook.com/cpnordic/\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"https://www.instagram.com/cpnordic/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n																	<img width=\"2560\" height=\"1157\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-scaled.png\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-scaled.png 2560w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-300x136.png 300w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-1024x463.png 1024w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-768x347.png 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-1536x694.png 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-2048x925.png 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />																					<a role=\"button\">\n									Kontakt\n					</a>', 'Header', '', 'inherit', 'closed', 'closed', '', '30-revision-v1', '', '', '2026-01-25 13:34:13', '2026-01-25 13:34:13', '', 30, 'https://mrarif.me/cpnordic/?p=98', 0, 'revision', '', 0),
(99, 1, '2026-01-25 13:34:18', '2026-01-25 13:34:18', '<ul>\n							<li>\n											<a href=\"tel:41600040\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										41 60 00 40\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:kontakt@cp-nordic.dk\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										kontakt@cp-nordic.dk\n											</a>\n									</li>\n						</ul>\n					<a href=\"https://www.facebook.com/cpnordic/\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"https://www.instagram.com/cpnordic/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n																	<img width=\"2560\" height=\"1157\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-scaled.png\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-scaled.png 2560w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-300x136.png 300w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-1024x463.png 1024w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-768x347.png 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-1536x694.png 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-2048x925.png 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />																					<a role=\"button\">\n									Kontakt\n					</a>', 'Header', '', 'inherit', 'closed', 'closed', '', '30-revision-v1', '', '', '2026-01-25 13:34:18', '2026-01-25 13:34:18', '', 30, 'https://mrarif.me/cpnordic/?p=99', 0, 'revision', '', 0),
(101, 1, '2026-01-25 13:40:37', '2026-01-25 13:40:37', '', 'web-app-manifest-512x512', '', 'inherit', 'open', 'closed', '', 'web-app-manifest-512x512', '', '', '2026-01-25 13:40:37', '2026-01-25 13:40:37', '', 0, 'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/web-app-manifest-512x512-1.png', 0, 'attachment', 'image/png', 0),
(102, 1, '2026-01-25 13:40:39', '2026-01-25 13:40:39', 'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/cropped-web-app-manifest-512x512-1.png', 'web-app-manifest-512x512', '', 'inherit', 'open', 'closed', '', 'web-app-manifest-512x512-2', '', '', '2026-01-25 13:40:39', '2026-01-25 13:40:39', '', 101, 'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/cropped-web-app-manifest-512x512-1.png', 0, 'attachment', 'image/png', 0),
(104, 1, '2026-01-25 13:41:15', '2026-01-25 13:41:15', '<img width=\"2560\" height=\"1157\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-scaled.png\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-scaled.png 2560w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-300x136.png 300w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-1024x463.png 1024w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-768x347.png 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-1536x694.png 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-2048x925.png 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />													We cover all of Funen and also operate throughout Denmark by agreement.<br>\nCVR: 45458830			<h5>Quick Links</h5>							<ul>\n							<li>\n											<a href=\"https://mrarif.me/cpnordic/\">\n											Hjem\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/cpnordic/tjenester/\">\n											Tjenester\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/cpnordic/referencer/\">\n											Referencer\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/cpnordic/om-os/\">\n											Om os\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/cpnordic/kontakt/\">\n											Kontakt\n											</a>\n									</li>\n						</ul>\n							<h5>Contact Info</h5>							<ul>\n							<li>\n											<a href=\"https://maps.google.com/maps?ll=55.178036,10.52236&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=B%C3%B8jdenvejen%207%205772%20Kv%C3%A6rndrup%20Denmark\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										CP NORDIC ApS : Bøjdenvejen 7, 5772 Kværndrup\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:41600040\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										41 60 00 40\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:kontakt@cp-nordic.dk\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										kontakt@cp-nordic.dk\n											</a>\n									</li>\n						</ul>\n					<a href=\"https://www.facebook.com/cpnordic/\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"https://www.instagram.com/cpnordic/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=B%C3%B8jdenvejen%207%2C%205772%20Kv%C3%A6rndrup&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"Bøjdenvejen 7, 5772 Kværndrup\"\n					aria-label=\"Bøjdenvejen 7, 5772 Kværndrup\"\n			></iframe>\n									<ul>\n							<li>\n										© Copyright 2026 all rights reserved\n									</li>\n						</ul>', 'Footer', '', 'publish', 'closed', 'closed', '', 'footer', '', '', '2026-02-14 11:39:17', '2026-02-14 11:39:17', '', 0, 'https://mrarif.me/cpnordic/?post_type=elementor_library&#038;p=104', 0, 'elementor_library', '', 0),
(105, 1, '2026-01-25 13:42:11', '2026-01-25 13:42:11', '', 'Footer', '', 'inherit', 'closed', 'closed', '', '104-revision-v1', '', '', '2026-01-25 13:42:11', '2026-01-25 13:42:11', '', 104, 'https://mrarif.me/cpnordic/?p=105', 0, 'revision', '', 0),
(109, 1, '2026-01-25 13:46:33', '2026-01-25 13:46:33', '<img width=\"2560\" height=\"1157\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-scaled.png\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-scaled.png 2560w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-300x136.png 300w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-1024x463.png 1024w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-768x347.png 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-1536x694.png 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-2048x925.png 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />																<h5>Quick Links</h5>							<ul>\n							<li>\n										Home\n									</li>\n								<li>\n										About Us\n									</li>\n								<li>\n										Our Approach\n									</li>\n								<li>\n										Industries\n									</li>\n								<li>\n										Practice Areas\n									</li>\n								<li>\n										Resources\n									</li>\n								<li>\n										Free Checklists\n									</li>\n								<li>\n										Blog\n									</li>\n								<li>\n										Press\n									</li>\n						</ul>\n							<h5>Contact Info</h5>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										Location Here\n									</li>\n								<li>\n											<a href=\"tel:XXX-XXX-XXX\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										Direct:  XXX-XXX-XXX\n											</a>\n									</li>\n						</ul>\n					<a target=\"_blank\">\n						Linkedin-in\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z\"></path></svg>					</a>\n					<a target=\"_blank\">\n						Twitter\n						<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z\"></path></svg>					</a>\n					<a target=\"_blank\">\n						Youtube\n						<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z\"></path></svg>					</a>\n					<a target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n									<ul>\n							<li>\n										© Copyright 2026 all rights reserved\n									</li>\n						</ul>', 'Footer', '', 'inherit', 'closed', 'closed', '', '104-revision-v1', '', '', '2026-01-25 13:46:33', '2026-01-25 13:46:33', '', 104, 'https://mrarif.me/cpnordic/?p=109', 0, 'revision', '', 0),
(106, 1, '2026-01-25 13:42:12', '2026-01-25 13:42:12', '<img width=\"2560\" height=\"1157\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-scaled.png\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-scaled.png 2560w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-300x136.png 300w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-1024x463.png 1024w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-768x347.png 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-1536x694.png 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-2048x925.png 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />													<p>Pharmaceutical, Medical Device, and Biotech life sciences consulting firm.</p>			<h5>Quick Links</h5>							<ul>\n							<li>\n										Home\n									</li>\n								<li>\n										About Us\n									</li>\n								<li>\n										Our Approach\n									</li>\n								<li>\n										Industries\n									</li>\n								<li>\n										Practice Areas\n									</li>\n								<li>\n										Resources\n									</li>\n								<li>\n										Free Checklists\n									</li>\n								<li>\n										Blog\n									</li>\n								<li>\n										Press\n									</li>\n						</ul>\n							<h5>Contact Info</h5>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										Location Here\n									</li>\n								<li>\n											<a href=\"tel:XXX-XXX-XXX\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										Direct:  XXX-XXX-XXX\n											</a>\n									</li>\n						</ul>\n					<a target=\"_blank\">\n						Linkedin-in\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z\"></path></svg>					</a>\n					<a target=\"_blank\">\n						Twitter\n						<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z\"></path></svg>					</a>\n					<a target=\"_blank\">\n						Youtube\n						<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z\"></path></svg>					</a>\n					<a target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n									<ul>\n							<li>\n										© Copyright 2024 all rights reserved\n									</li>\n						</ul>\n									<ul>\n							<li>\n										Privacy Statement\n									</li>\n								<li>\n										Accessibility Statement\n									</li>\n						</ul>', 'Footer', '', 'inherit', 'closed', 'closed', '', '104-revision-v1', '', '', '2026-01-25 13:42:12', '2026-01-25 13:42:12', '', 104, 'https://mrarif.me/cpnordic/?p=106', 0, 'revision', '', 0),
(128, 1, '2026-01-25 14:46:04', '2026-01-25 14:46:04', '', 'AnyConv.com__Fontspring-DEMO-nekst-medium', '', 'inherit', 'open', 'closed', '', 'anyconv-com__fontspring-demo-nekst-medium-3', '', '', '2026-01-25 14:46:04', '2026-01-25 14:46:04', '', 117, 'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/AnyConv.com__Fontspring-DEMO-nekst-medium.ttf', 0, 'attachment', 'application/x-font-ttf', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(110, 1, '2026-01-25 14:12:19', '2026-01-25 14:12:19', '<img width=\"2560\" height=\"1157\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-scaled.png\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-scaled.png 2560w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-300x136.png 300w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-1024x463.png 1024w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-768x347.png 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-1536x694.png 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-2048x925.png 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />																<h5>Quick Links</h5>							<ul>\n							<li>\n											<a href=\"https://mrarif.me/cpnordic/\">\n											Hjem\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/cpnordic/tjenester/\">\n											Tjenester\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/cpnordic/referencer/\">\n											Referencer\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/cpnordic/om-os/\">\n											Om os\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/cpnordic/kontakt/\">\n											Kontakt\n											</a>\n									</li>\n						</ul>\n							<h5>Contact Info</h5>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										Location Here\n									</li>\n								<li>\n											<a href=\"tel:XXX-XXX-XXX\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										Direct:  XXX-XXX-XXX\n											</a>\n									</li>\n						</ul>\n					<a target=\"_blank\">\n						Linkedin-in\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z\"></path></svg>					</a>\n					<a target=\"_blank\">\n						Twitter\n						<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z\"></path></svg>					</a>\n					<a target=\"_blank\">\n						Youtube\n						<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z\"></path></svg>					</a>\n					<a target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n									<ul>\n							<li>\n										© Copyright 2026 all rights reserved\n									</li>\n						</ul>', 'Footer', '', 'inherit', 'closed', 'closed', '', '104-revision-v1', '', '', '2026-01-25 14:12:19', '2026-01-25 14:12:19', '', 104, 'https://mrarif.me/cpnordic/?p=110', 0, 'revision', '', 0),
(112, 1, '2026-01-25 14:18:56', '2026-01-25 14:18:56', '<img width=\"2560\" height=\"1157\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-scaled.png\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-scaled.png 2560w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-300x136.png 300w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-1024x463.png 1024w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-768x347.png 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-1536x694.png 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-2048x925.png 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />																<h5>Quick Links</h5>							<ul>\n							<li>\n											<a href=\"https://mrarif.me/cpnordic/\">\n											Hjem\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/cpnordic/tjenester/\">\n											Tjenester\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/cpnordic/referencer/\">\n											Referencer\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/cpnordic/om-os/\">\n											Om os\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/cpnordic/kontakt/\">\n											Kontakt\n											</a>\n									</li>\n						</ul>\n							<h5>Contact Info</h5>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										Location Here\n									</li>\n								<li>\n											<a href=\"tel:41600040\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										41 60 00 40\n											</a>\n									</li>\n						</ul>\n					<a target=\"_blank\">\n						Linkedin-in\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z\"></path></svg>					</a>\n					<a target=\"_blank\">\n						Twitter\n						<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z\"></path></svg>					</a>\n					<a target=\"_blank\">\n						Youtube\n						<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z\"></path></svg>					</a>\n					<a target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n									<ul>\n							<li>\n										© Copyright 2026 all rights reserved\n									</li>\n						</ul>', 'Footer', '', 'inherit', 'closed', 'closed', '', '104-revision-v1', '', '', '2026-01-25 14:18:56', '2026-01-25 14:18:56', '', 104, 'https://mrarif.me/cpnordic/?p=112', 0, 'revision', '', 0),
(116, 1, '2026-01-25 14:28:08', '2026-01-25 14:28:08', '<img width=\"2560\" height=\"1157\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-scaled.png\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-scaled.png 2560w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-300x136.png 300w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-1024x463.png 1024w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-768x347.png 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-1536x694.png 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-2048x925.png 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />																<h5>Quick Links</h5>							<ul>\n							<li>\n											<a href=\"https://mrarif.me/cpnordic/\">\n											Hjem\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/cpnordic/tjenester/\">\n											Tjenester\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/cpnordic/referencer/\">\n											Referencer\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/cpnordic/om-os/\">\n											Om os\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/cpnordic/kontakt/\">\n											Kontakt\n											</a>\n									</li>\n						</ul>\n							<h5>Contact Info</h5>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										Location Here\n									</li>\n								<li>\n											<a href=\"tel:41600040\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										41 60 00 40\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:kontakt@cp-nordic.dk\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										kontakt@cp-nordic.dk\n											</a>\n									</li>\n						</ul>\n					<a href=\"https://www.facebook.com/cpnordic/\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"https://www.instagram.com/cpnordic/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n									<ul>\n							<li>\n										© Copyright 2026 all rights reserved\n									</li>\n						</ul>', 'Footer', '', 'inherit', 'closed', 'closed', '', '104-revision-v1', '', '', '2026-01-25 14:28:08', '2026-01-25 14:28:08', '', 104, 'https://mrarif.me/cpnordic/?p=116', 0, 'revision', '', 0),
(113, 1, '2026-01-25 14:20:19', '2026-01-25 14:20:19', '<img width=\"2560\" height=\"1157\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-scaled.png\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-scaled.png 2560w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-300x136.png 300w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-1024x463.png 1024w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-768x347.png 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-1536x694.png 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-2048x925.png 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />																<h5>Quick Links</h5>							<ul>\n							<li>\n											<a href=\"https://mrarif.me/cpnordic/\">\n											Hjem\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/cpnordic/tjenester/\">\n											Tjenester\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/cpnordic/referencer/\">\n											Referencer\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/cpnordic/om-os/\">\n											Om os\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/cpnordic/kontakt/\">\n											Kontakt\n											</a>\n									</li>\n						</ul>\n							<h5>Contact Info</h5>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										Location Here\n									</li>\n								<li>\n											<a href=\"tel:41600040\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										41 60 00 40\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:kontakt@cp-nordic.dk\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										kontakt@cp-nordic.dk\n											</a>\n									</li>\n						</ul>\n					<a target=\"_blank\">\n						Linkedin-in\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z\"></path></svg>					</a>\n					<a target=\"_blank\">\n						Twitter\n						<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z\"></path></svg>					</a>\n					<a target=\"_blank\">\n						Youtube\n						<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z\"></path></svg>					</a>\n					<a target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n									<ul>\n							<li>\n										© Copyright 2026 all rights reserved\n									</li>\n						</ul>', 'Footer', '', 'inherit', 'closed', 'closed', '', '104-revision-v1', '', '', '2026-01-25 14:20:19', '2026-01-25 14:20:19', '', 104, 'https://mrarif.me/cpnordic/?p=113', 0, 'revision', '', 0),
(114, 1, '2026-01-25 14:20:27', '2026-01-25 14:20:27', '<img width=\"2560\" height=\"1157\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-scaled.png\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-scaled.png 2560w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-300x136.png 300w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-1024x463.png 1024w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-768x347.png 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-1536x694.png 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-2048x925.png 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />																<h5>Quick Links</h5>							<ul>\n							<li>\n											<a href=\"https://mrarif.me/cpnordic/\">\n											Hjem\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/cpnordic/tjenester/\">\n											Tjenester\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/cpnordic/referencer/\">\n											Referencer\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/cpnordic/om-os/\">\n											Om os\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/cpnordic/kontakt/\">\n											Kontakt\n											</a>\n									</li>\n						</ul>\n							<h5>Contact Info</h5>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										Location Here\n									</li>\n								<li>\n											<a href=\"tel:41600040\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										41 60 00 40\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:kontakt@cp-nordic.dk\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										kontakt@cp-nordic.dk\n											</a>\n									</li>\n						</ul>\n					<a target=\"_blank\">\n						Linkedin-in\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z\"></path></svg>					</a>\n					<a target=\"_blank\">\n						Twitter\n						<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z\"></path></svg>					</a>\n					<a target=\"_blank\">\n						Youtube\n						<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z\"></path></svg>					</a>\n					<a target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n									<ul>\n							<li>\n										© Copyright 2026 all rights reserved\n									</li>\n						</ul>', 'Footer', '', 'inherit', 'closed', 'closed', '', '104-revision-v1', '', '', '2026-01-25 14:20:27', '2026-01-25 14:20:27', '', 104, 'https://mrarif.me/cpnordic/?p=114', 0, 'revision', '', 0),
(117, 1, '2026-01-25 14:40:44', '2026-01-25 14:40:44', '', 'Nekst Black', '', 'publish', 'closed', 'closed', '', 'nekst-black', '', '', '2026-01-25 14:57:28', '2026-01-25 14:57:28', '', 0, 'https://mrarif.me/cpnordic/?post_type=elementor_font&#038;p=117', 0, 'elementor_font', '', 0),
(118, 1, '2026-01-25 14:36:06', '2026-01-25 14:36:06', '', 'AnyConv.com__Fontspring-DEMO-nekst-thin', '', 'inherit', 'open', 'closed', '', 'anyconv-com__fontspring-demo-nekst-thin', '', '', '2026-01-25 14:36:06', '2026-01-25 14:36:06', '', 117, 'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/AnyConv.com__Fontspring-DEMO-nekst-thin.woff', 0, 'attachment', 'font/woff', 0),
(119, 1, '2026-01-25 14:37:08', '2026-01-25 14:37:08', '', 'AnyConv.com__Fontspring-DEMO-nekst-semibold', '', 'inherit', 'open', 'closed', '', 'anyconv-com__fontspring-demo-nekst-semibold', '', '', '2026-01-25 14:37:08', '2026-01-25 14:37:08', '', 117, 'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/AnyConv.com__Fontspring-DEMO-nekst-semibold.woff2', 0, 'attachment', 'font/woff2', 0),
(120, 1, '2026-01-25 14:40:09', '2026-01-25 14:40:09', '', 'AnyConv.com__Fontspring-DEMO-nekst-semibold', '', 'inherit', 'open', 'closed', '', 'anyconv-com__fontspring-demo-nekst-semibold-2', '', '', '2026-01-25 14:40:09', '2026-01-25 14:40:09', '', 117, 'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/AnyConv.com__Fontspring-DEMO-nekst-semibold.ttf', 0, 'attachment', 'application/x-font-ttf', 0),
(121, 1, '2026-01-25 14:40:38', '2026-01-25 14:40:38', '', 'AnyConv.com__Fontspring-DEMO-nekst-semibold', '', 'inherit', 'open', 'closed', '', 'anyconv-com__fontspring-demo-nekst-semibold-3', '', '', '2026-01-25 14:40:38', '2026-01-25 14:40:38', '', 117, 'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/AnyConv.com__Fontspring-DEMO-nekst-semibold.eot', 0, 'attachment', 'application/vnd.ms-fontobject', 0),
(122, 1, '2026-01-25 14:41:38', '2026-01-25 14:41:38', '', 'AnyConv.com__Fontspring-DEMO-nekst-regular', '', 'inherit', 'open', 'closed', '', 'anyconv-com__fontspring-demo-nekst-regular', '', '', '2026-01-25 14:41:38', '2026-01-25 14:41:38', '', 117, 'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/AnyConv.com__Fontspring-DEMO-nekst-regular.woff', 0, 'attachment', 'font/woff', 0),
(123, 1, '2026-01-25 14:42:18', '2026-01-25 14:42:18', '', 'AnyConv.com__Fontspring-DEMO-nekst-regular', '', 'inherit', 'open', 'closed', '', 'anyconv-com__fontspring-demo-nekst-regular-2', '', '', '2026-01-25 14:42:18', '2026-01-25 14:42:18', '', 117, 'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/AnyConv.com__Fontspring-DEMO-nekst-regular.woff2', 0, 'attachment', 'font/woff2', 0),
(124, 1, '2026-01-25 14:43:30', '2026-01-25 14:43:30', '', 'AnyConv.com__Fontspring-DEMO-nekst-regular', '', 'inherit', 'open', 'closed', '', 'anyconv-com__fontspring-demo-nekst-regular-3', '', '', '2026-01-25 14:43:30', '2026-01-25 14:43:30', '', 117, 'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/AnyConv.com__Fontspring-DEMO-nekst-regular.ttf', 0, 'attachment', 'application/x-font-ttf', 0),
(125, 1, '2026-01-25 14:44:00', '2026-01-25 14:44:00', '', 'AnyConv.com__Fontspring-DEMO-nekst-regular', '', 'inherit', 'open', 'closed', '', 'anyconv-com__fontspring-demo-nekst-regular-4', '', '', '2026-01-25 14:44:00', '2026-01-25 14:44:00', '', 117, 'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/AnyConv.com__Fontspring-DEMO-nekst-regular.eot', 0, 'attachment', 'application/vnd.ms-fontobject', 0),
(126, 1, '2026-01-25 14:44:48', '2026-01-25 14:44:48', '', 'AnyConv.com__Fontspring-DEMO-nekst-medium', '', 'inherit', 'open', 'closed', '', 'anyconv-com__fontspring-demo-nekst-medium', '', '', '2026-01-25 14:44:48', '2026-01-25 14:44:48', '', 117, 'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/AnyConv.com__Fontspring-DEMO-nekst-medium.woff', 0, 'attachment', 'font/woff', 0),
(127, 1, '2026-01-25 14:45:17', '2026-01-25 14:45:17', '', 'AnyConv.com__Fontspring-DEMO-nekst-medium', '', 'inherit', 'open', 'closed', '', 'anyconv-com__fontspring-demo-nekst-medium-2', '', '', '2026-01-25 14:45:17', '2026-01-25 14:45:17', '', 117, 'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/AnyConv.com__Fontspring-DEMO-nekst-medium.woff2', 0, 'attachment', 'font/woff2', 0),
(129, 1, '2026-01-25 14:46:33', '2026-01-25 14:46:33', '', 'AnyConv.com__Fontspring-DEMO-nekst-medium', '', 'inherit', 'open', 'closed', '', 'anyconv-com__fontspring-demo-nekst-medium-4', '', '', '2026-01-25 14:46:33', '2026-01-25 14:46:33', '', 117, 'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/AnyConv.com__Fontspring-DEMO-nekst-medium.eot', 0, 'attachment', 'application/vnd.ms-fontobject', 0),
(130, 1, '2026-01-25 14:48:32', '2026-01-25 14:48:32', '', 'AnyConv.com__Fontspring-DEMO-nekst-bold', '', 'inherit', 'open', 'closed', '', 'anyconv-com__fontspring-demo-nekst-bold', '', '', '2026-01-25 14:48:32', '2026-01-25 14:48:32', '', 117, 'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/AnyConv.com__Fontspring-DEMO-nekst-bold.woff', 0, 'attachment', 'font/woff', 0),
(131, 1, '2026-01-25 14:49:16', '2026-01-25 14:49:16', '', 'AnyConv.com__Fontspring-DEMO-nekst-bold', '', 'inherit', 'open', 'closed', '', 'anyconv-com__fontspring-demo-nekst-bold-2', '', '', '2026-01-25 14:49:16', '2026-01-25 14:49:16', '', 117, 'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/AnyConv.com__Fontspring-DEMO-nekst-bold.woff2', 0, 'attachment', 'font/woff2', 0),
(132, 1, '2026-01-25 14:50:00', '2026-01-25 14:50:00', '', 'AnyConv.com__Fontspring-DEMO-nekst-bold', '', 'inherit', 'open', 'closed', '', 'anyconv-com__fontspring-demo-nekst-bold-3', '', '', '2026-01-25 14:50:00', '2026-01-25 14:50:00', '', 117, 'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/AnyConv.com__Fontspring-DEMO-nekst-bold.eot', 0, 'attachment', 'application/vnd.ms-fontobject', 0),
(133, 1, '2026-01-25 14:53:09', '2026-01-25 14:53:09', '', 'AnyConv.com__Fontspring-DEMO-nekst-bold', '', 'inherit', 'open', 'closed', '', 'anyconv-com__fontspring-demo-nekst-bold-4', '', '', '2026-01-25 14:53:09', '2026-01-25 14:53:09', '', 117, 'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/AnyConv.com__Fontspring-DEMO-nekst-bold.ttf', 0, 'attachment', 'application/x-font-ttf', 0),
(134, 1, '2026-01-25 14:54:11', '2026-01-25 14:54:11', '', 'AnyConv.com__Fontspring-DEMO-nekst-black', '', 'inherit', 'open', 'closed', '', 'anyconv-com__fontspring-demo-nekst-black', '', '', '2026-01-25 14:54:11', '2026-01-25 14:54:11', '', 117, 'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/AnyConv.com__Fontspring-DEMO-nekst-black.woff', 0, 'attachment', 'font/woff', 0),
(135, 1, '2026-01-25 14:55:09', '2026-01-25 14:55:09', '', 'AnyConv.com__Fontspring-DEMO-nekst-black', '', 'inherit', 'open', 'closed', '', 'anyconv-com__fontspring-demo-nekst-black-2', '', '', '2026-01-25 14:55:09', '2026-01-25 14:55:09', '', 117, 'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/AnyConv.com__Fontspring-DEMO-nekst-black.woff2', 0, 'attachment', 'font/woff2', 0),
(136, 1, '2026-01-25 14:55:36', '2026-01-25 14:55:36', '', 'AnyConv.com__Fontspring-DEMO-nekst-black', '', 'inherit', 'open', 'closed', '', 'anyconv-com__fontspring-demo-nekst-black-3', '', '', '2026-01-25 14:55:36', '2026-01-25 14:55:36', '', 117, 'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/AnyConv.com__Fontspring-DEMO-nekst-black.ttf', 0, 'attachment', 'application/x-font-ttf', 0),
(137, 1, '2026-01-25 14:56:46', '2026-01-25 14:56:46', '', 'AnyConv.com__Fontspring-DEMO-nekst-black', '', 'inherit', 'open', 'closed', '', 'anyconv-com__fontspring-demo-nekst-black-4', '', '', '2026-01-25 14:56:46', '2026-01-25 14:56:46', '', 117, 'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/AnyConv.com__Fontspring-DEMO-nekst-black.eot', 0, 'attachment', 'application/vnd.ms-fontobject', 0),
(138, 1, '2026-01-25 15:01:40', '2026-01-25 15:01:40', '', 'Default Kit', '', 'inherit', 'closed', 'closed', '', '26-revision-v1', '', '', '2026-01-25 15:01:40', '2026-01-25 15:01:40', '', 26, 'https://mrarif.me/cpnordic/?p=138', 0, 'revision', '', 0),
(139, 1, '2026-01-25 15:02:34', '2026-01-25 15:02:34', '', 'Default Kit', '', 'inherit', 'closed', 'closed', '', '26-revision-v1', '', '', '2026-01-25 15:02:34', '2026-01-25 15:02:34', '', 26, 'https://mrarif.me/cpnordic/?p=139', 0, 'revision', '', 0),
(141, 1, '2026-01-25 15:05:05', '2026-01-25 15:05:05', '<h1>CP NORDIC</h1>					</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-25 15:05:05', '2026-01-25 15:05:05', '', 10, 'https://mrarif.me/cpnordic/?p=141', 0, 'revision', '', 0),
(142, 1, '2026-01-25 15:05:05', '2026-01-25 15:05:05', '<h1>CP NORDIC</h1>					</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-25 15:05:05', '2026-01-25 15:05:05', '', 10, 'https://mrarif.me/cpnordic/?p=142', 0, 'revision', '', 0),
(143, 1, '2026-01-25 15:05:06', '2026-01-25 15:05:06', '<h1>CP NORDIC</h1>					</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-25 15:05:06', '2026-01-25 15:05:06', '', 10, 'https://mrarif.me/cpnordic/?p=143', 0, 'revision', '', 0),
(145, 1, '2026-01-25 15:06:45', '2026-01-25 15:06:45', '', 'Default Kit', '', 'inherit', 'closed', 'closed', '', '26-revision-v1', '', '', '2026-01-25 15:06:45', '2026-01-25 15:06:45', '', 26, 'https://mrarif.me/cpnordic/?p=145', 0, 'revision', '', 0),
(146, 1, '2026-01-25 15:07:15', '2026-01-25 15:07:15', '<h1>CP NORDIC</h1>					</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-25 15:07:15', '2026-01-25 15:07:15', '', 10, 'https://mrarif.me/cpnordic/?p=146', 0, 'revision', '', 0),
(147, 1, '2026-01-25 15:07:15', '2026-01-25 15:07:15', '<h1>CP NORDIC</h1>					</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-25 15:07:15', '2026-01-25 15:07:15', '', 10, 'https://mrarif.me/cpnordic/?p=147', 0, 'revision', '', 0),
(148, 1, '2026-01-25 15:07:16', '2026-01-25 15:07:16', '<h1>CP NORDIC</h1>					</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-25 15:07:16', '2026-01-25 15:07:16', '', 10, 'https://mrarif.me/cpnordic/?p=148', 0, 'revision', '', 0),
(149, 1, '2026-01-25 15:07:37', '2026-01-25 15:07:37', '<h1>CP NORDIC</h1>					</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-25 15:07:37', '2026-01-25 15:07:37', '', 10, 'https://mrarif.me/cpnordic/?p=149', 0, 'revision', '', 0),
(150, 1, '2026-01-25 15:07:37', '2026-01-25 15:07:37', '<h1>CP NORDIC</h1>					</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-25 15:07:37', '2026-01-25 15:07:37', '', 10, 'https://mrarif.me/cpnordic/?p=150', 0, 'revision', '', 0),
(151, 1, '2026-01-25 15:07:37', '2026-01-25 15:07:37', '<h1>CP NORDIC</h1>										<a href=\"#\">\n									Click here\n					</a>\n									</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-25 15:07:37', '2026-01-25 15:07:37', '', 10, 'https://mrarif.me/cpnordic/?p=151', 0, 'revision', '', 0),
(152, 1, '2026-01-25 15:07:47', '2026-01-25 15:07:47', '<h1>CP NORDIC</h1>										<a href=\"#\">\n									Click here\n					</a>\n									</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-25 15:07:47', '2026-01-25 15:07:47', '', 10, 'https://mrarif.me/cpnordic/?p=152', 0, 'revision', '', 0),
(153, 1, '2026-01-25 15:07:47', '2026-01-25 15:07:47', '<h1>CP NORDIC</h1>										<a href=\"#\">\n									Click here\n					</a>\n									</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-25 15:07:47', '2026-01-25 15:07:47', '', 10, 'https://mrarif.me/cpnordic/?p=153', 0, 'revision', '', 0),
(154, 1, '2026-01-25 15:07:48', '2026-01-25 15:07:48', '<h1>CP NORDIC</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n									</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-25 15:07:48', '2026-01-25 15:07:48', '', 10, 'https://mrarif.me/cpnordic/?p=154', 0, 'revision', '', 0),
(155, 1, '2026-01-25 15:08:43', '2026-01-25 15:08:43', '<h1>CP NORDIC</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n									</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-25 15:08:43', '2026-01-25 15:08:43', '', 10, 'https://mrarif.me/cpnordic/?p=155', 0, 'revision', '', 0),
(156, 1, '2026-01-25 15:08:43', '2026-01-25 15:08:43', '<h1>CP NORDIC</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n									</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-25 15:08:43', '2026-01-25 15:08:43', '', 10, 'https://mrarif.me/cpnordic/?p=156', 0, 'revision', '', 0),
(157, 1, '2026-01-25 15:08:43', '2026-01-25 15:08:43', '<h1>CP NORDIC</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n									</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-25 15:08:43', '2026-01-25 15:08:43', '', 10, 'https://mrarif.me/cpnordic/?p=157', 0, 'revision', '', 0),
(158, 1, '2026-01-25 15:09:38', '2026-01-25 15:09:38', '<h1>CP NORDIC</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n									</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-25 15:09:38', '2026-01-25 15:09:38', '', 10, 'https://mrarif.me/cpnordic/?p=158', 0, 'revision', '', 0),
(159, 1, '2026-01-25 15:09:39', '2026-01-25 15:09:39', '<h1>CP NORDIC</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n									</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-25 15:09:39', '2026-01-25 15:09:39', '', 10, 'https://mrarif.me/cpnordic/?p=159', 0, 'revision', '', 0),
(160, 1, '2026-01-25 15:09:39', '2026-01-25 15:09:39', '<h1>CP NORDIC</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n									</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-25 15:09:39', '2026-01-25 15:09:39', '', 10, 'https://mrarif.me/cpnordic/?p=160', 0, 'revision', '', 0),
(161, 1, '2026-01-25 15:11:30', '2026-01-25 15:11:30', '<h1>CP NORDIC</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n									</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-25 15:11:30', '2026-01-25 15:11:30', '', 10, 'https://mrarif.me/cpnordic/?p=161', 0, 'revision', '', 0),
(162, 1, '2026-01-25 15:11:30', '2026-01-25 15:11:30', '<h1>CP NORDIC</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n									</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-25 15:11:30', '2026-01-25 15:11:30', '', 10, 'https://mrarif.me/cpnordic/?p=162', 0, 'revision', '', 0),
(163, 1, '2026-01-25 15:11:30', '2026-01-25 15:11:30', '<h1>CP NORDIC</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n																			<img src=\"https://mrarif.me/cpnordic/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />																<h2>Carpentry</h2>					</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-25 15:11:30', '2026-01-25 15:11:30', '', 10, 'https://mrarif.me/cpnordic/?p=163', 0, 'revision', '', 0),
(164, 1, '2026-01-25 15:12:22', '2026-01-25 15:12:22', '', '616053345_122151193490928164_8199765515366368063_n', '', 'inherit', 'open', 'closed', '', '616053345_122151193490928164_8199765515366368063_n', '', '', '2026-01-25 15:12:22', '2026-01-25 15:12:22', '', 10, 'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg', 0, 'attachment', 'image/jpeg', 0),
(165, 1, '2026-01-25 15:13:57', '2026-01-25 15:13:57', '', 'restaurant_14493881', '', 'inherit', 'open', 'closed', '', 'restaurant_14493881', '', '', '2026-01-25 15:13:57', '2026-01-25 15:13:57', '', 10, 'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/restaurant_14493881.svg', 0, 'attachment', 'image/svg+xml', 0),
(166, 1, '2026-01-25 15:15:17', '2026-01-25 15:15:17', '', 'eco-home_4317441', '', 'inherit', 'open', 'closed', '', 'eco-home_4317441', '', '', '2026-01-25 15:15:17', '2026-01-25 15:15:17', '', 10, 'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/eco-home_4317441.svg', 0, 'attachment', 'image/svg+xml', 0),
(167, 1, '2026-01-25 15:16:12', '2026-01-25 15:16:12', '', 'jigsaw_3318186', '', 'inherit', 'open', 'closed', '', 'jigsaw_3318186', '', '', '2026-01-25 15:16:12', '2026-01-25 15:16:12', '', 10, 'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/jigsaw_3318186.svg', 0, 'attachment', 'image/svg+xml', 0),
(168, 1, '2026-01-25 15:16:55', '2026-01-25 15:16:55', '', 'garage-house_17118001', '', 'inherit', 'open', 'closed', '', 'garage-house_17118001', '', '', '2026-01-25 15:16:55', '2026-01-25 15:16:55', '', 10, 'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/garage-house_17118001.svg', 0, 'attachment', 'image/svg+xml', 0),
(169, 1, '2026-01-25 15:17:52', '2026-01-25 15:17:52', '', 'exit_14156757', '', 'inherit', 'open', 'closed', '', 'exit_14156757', '', '', '2026-01-25 15:17:52', '2026-01-25 15:17:52', '', 10, 'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/exit_14156757.svg', 0, 'attachment', 'image/svg+xml', 0),
(170, 1, '2026-01-25 15:18:03', '2026-01-25 15:18:03', '<h1>CP NORDIC</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n																			<img src=\"https://mrarif.me/cpnordic/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />																<h2>Carpentry</h2>					</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-25 15:18:03', '2026-01-25 15:18:03', '', 10, 'https://mrarif.me/cpnordic/?p=170', 0, 'revision', '', 0),
(171, 1, '2026-01-25 15:18:03', '2026-01-25 15:18:03', '<h1>CP NORDIC</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n																			<img src=\"https://mrarif.me/cpnordic/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />																<h2>Carpentry</h2>					</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-25 15:18:03', '2026-01-25 15:18:03', '', 10, 'https://mrarif.me/cpnordic/?p=171', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(172, 1, '2026-01-25 15:18:04', '2026-01-25 15:18:04', '<h1>CP NORDIC</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n																			<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>Carpentry</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-25 15:18:04', '2026-01-25 15:18:04', '', 10, 'https://mrarif.me/cpnordic/?p=172', 0, 'revision', '', 0),
(173, 1, '2026-01-25 15:18:13', '2026-01-25 15:18:13', '<h1>CP NORDIC</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n																			<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>Carpentry</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-25 15:18:13', '2026-01-25 15:18:13', '', 10, 'https://mrarif.me/cpnordic/?p=173', 0, 'revision', '', 0),
(174, 1, '2026-01-25 15:18:13', '2026-01-25 15:18:13', '<h1>CP NORDIC</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n																			<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>Carpentry</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-25 15:18:13', '2026-01-25 15:18:13', '', 10, 'https://mrarif.me/cpnordic/?p=174', 0, 'revision', '', 0),
(175, 1, '2026-01-25 15:18:13', '2026-01-25 15:18:13', '<h1>CP NORDIC</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n																			<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>Carpentry</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-25 15:18:13', '2026-01-25 15:18:13', '', 10, 'https://mrarif.me/cpnordic/?p=175', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(176, 1, '2026-01-25 15:18:34', '2026-01-25 15:18:34', '<h1>CP NORDIC</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n																			<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>Carpentry</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-25 15:18:34', '2026-01-25 15:18:34', '', 10, 'https://mrarif.me/cpnordic/?p=176', 0, 'revision', '', 0),
(177, 1, '2026-01-25 15:18:34', '2026-01-25 15:18:34', '<h1>CP NORDIC</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n																			<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>Carpentry</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-25 15:18:34', '2026-01-25 15:18:34', '', 10, 'https://mrarif.me/cpnordic/?p=177', 0, 'revision', '', 0),
(178, 1, '2026-01-25 15:18:34', '2026-01-25 15:18:34', '<h1>CP NORDIC</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n																			<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>Carpentry</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-25 15:18:34', '2026-01-25 15:18:34', '', 10, 'https://mrarif.me/cpnordic/?p=178', 0, 'revision', '', 0),
(180, 1, '2026-01-25 15:22:49', '2026-01-25 15:22:49', '', 'roof_18138482', '', 'inherit', 'open', 'closed', '', 'roof_18138482', '', '', '2026-01-25 15:22:49', '2026-01-25 15:22:49', '', 10, 'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/roof_18138482.svg', 0, 'attachment', 'image/svg+xml', 0),
(181, 1, '2026-01-25 15:24:54', '2026-01-25 15:24:54', '', 'money_16154843', '', 'inherit', 'open', 'closed', '', 'money_16154843', '', '', '2026-01-25 15:24:54', '2026-01-25 15:24:54', '', 10, 'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/money_16154843.svg', 0, 'attachment', 'image/svg+xml', 0),
(182, 1, '2026-01-25 15:25:40', '2026-01-25 15:25:40', '', 'roof-tiles_17257710', '', 'inherit', 'open', 'closed', '', 'roof-tiles_17257710', '', '', '2026-01-25 15:25:40', '2026-01-25 15:25:40', '', 10, 'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/roof-tiles_17257710.svg', 0, 'attachment', 'image/svg+xml', 0),
(183, 1, '2026-01-25 15:26:26', '2026-01-25 15:26:26', '', 'plant_13485754', '', 'inherit', 'open', 'closed', '', 'plant_13485754', '', '', '2026-01-25 15:26:26', '2026-01-25 15:26:26', '', 10, 'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/plant_13485754.svg', 0, 'attachment', 'image/svg+xml', 0),
(184, 1, '2026-01-25 15:27:06', '2026-01-25 15:27:06', '', 'solar-panel_3058086', '', 'inherit', 'open', 'closed', '', 'solar-panel_3058086', '', '', '2026-01-25 15:27:06', '2026-01-25 15:27:06', '', 10, 'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/solar-panel_3058086.svg', 0, 'attachment', 'image/svg+xml', 0),
(185, 1, '2026-01-25 15:27:10', '2026-01-25 15:27:10', '<h1>CP NORDIC</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n																			<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>Carpentry</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-25 15:27:10', '2026-01-25 15:27:10', '', 10, 'https://mrarif.me/cpnordic/?p=185', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(186, 1, '2026-01-25 15:27:10', '2026-01-25 15:27:10', '<h1>CP NORDIC</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n																			<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>Carpentry</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-25 15:27:10', '2026-01-25 15:27:10', '', 10, 'https://mrarif.me/cpnordic/?p=186', 0, 'revision', '', 0),
(187, 1, '2026-01-25 15:27:10', '2026-01-25 15:27:10', '<h1>CP NORDIC</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n																			<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>Carpentry</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-25 15:27:10', '2026-01-25 15:27:10', '', 10, 'https://mrarif.me/cpnordic/?p=187', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(188, 1, '2026-01-25 15:28:36', '2026-01-25 15:28:36', '<h1>CP NORDIC</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n																			<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>Carpentry</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-25 15:28:36', '2026-01-25 15:28:36', '', 10, 'https://mrarif.me/cpnordic/?p=188', 0, 'revision', '', 0),
(189, 1, '2026-01-25 15:28:36', '2026-01-25 15:28:36', '<h1>CP NORDIC</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n																			<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>Carpentry</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-25 15:28:36', '2026-01-25 15:28:36', '', 10, 'https://mrarif.me/cpnordic/?p=189', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(190, 1, '2026-01-25 15:28:37', '2026-01-25 15:28:37', '<h1>CP NORDIC</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n																			<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>Carpentry</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-25 15:28:37', '2026-01-25 15:28:37', '', 10, 'https://mrarif.me/cpnordic/?p=190', 0, 'revision', '', 0),
(191, 1, '2026-01-25 15:29:27', '2026-01-25 15:29:27', '<h1>CP NORDIC</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n																			<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>Carpentry</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-25 15:29:27', '2026-01-25 15:29:27', '', 10, 'https://mrarif.me/cpnordic/?p=191', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(192, 1, '2026-01-25 15:29:27', '2026-01-25 15:29:27', '<h1>CP NORDIC</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n																			<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>Carpentry</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-25 15:29:27', '2026-01-25 15:29:27', '', 10, 'https://mrarif.me/cpnordic/?p=192', 0, 'revision', '', 0),
(193, 1, '2026-01-25 15:29:27', '2026-01-25 15:29:27', '<h1>CP NORDIC</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n																			<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>Carpentry</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-25 15:29:27', '2026-01-25 15:29:27', '', 10, 'https://mrarif.me/cpnordic/?p=193', 0, 'revision', '', 0),
(194, 1, '2026-01-25 15:31:06', '2026-01-25 15:31:06', '<ul>\n							<li>\n											<a href=\"tel:41600040\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										41 60 00 40\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:kontakt@cp-nordic.dk\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										kontakt@cp-nordic.dk\n											</a>\n									</li>\n						</ul>\n					<a href=\"https://www.facebook.com/cpnordic/\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"https://www.instagram.com/cpnordic/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n																	<img width=\"2560\" height=\"1157\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-scaled.png\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-scaled.png 2560w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-300x136.png 300w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-1024x463.png 1024w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-768x347.png 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-1536x694.png 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-2048x925.png 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />																					<a role=\"button\">\n									Kontakt\n					</a>', 'Header', '', 'inherit', 'closed', 'closed', '', '30-revision-v1', '', '', '2026-01-25 15:31:06', '2026-01-25 15:31:06', '', 30, 'https://mrarif.me/cpnordic/?p=194', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(195, 1, '2026-01-25 15:32:15', '2026-01-25 15:32:15', '<h1>CP NORDIC</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n																			<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>Carpentry</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-25 15:32:15', '2026-01-25 15:32:15', '', 10, 'https://mrarif.me/cpnordic/?p=195', 0, 'revision', '', 0),
(196, 1, '2026-01-25 15:32:15', '2026-01-25 15:32:15', '<h1>CP NORDIC</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n																			<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>Carpentry</h2>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-25 15:32:15', '2026-01-25 15:32:15', '', 10, 'https://mrarif.me/cpnordic/?p=196', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(197, 1, '2026-01-25 15:32:16', '2026-01-25 15:32:16', '<h1>CP NORDIC</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n																			<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-25 15:32:16', '2026-01-25 15:32:16', '', 10, 'https://mrarif.me/cpnordic/?p=197', 0, 'revision', '', 0),
(198, 1, '2026-01-25 15:32:33', '2026-01-25 15:32:33', '<h1>CP NORDIC</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n																			<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-25 15:32:33', '2026-01-25 15:32:33', '', 10, 'https://mrarif.me/cpnordic/?p=198', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(199, 1, '2026-01-25 15:32:33', '2026-01-25 15:32:33', '<h1>CP NORDIC</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n																			<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-25 15:32:33', '2026-01-25 15:32:33', '', 10, 'https://mrarif.me/cpnordic/?p=199', 0, 'revision', '', 0),
(200, 1, '2026-01-25 15:32:33', '2026-01-25 15:32:33', '<h1>CP NORDIC</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n																			<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-25 15:32:33', '2026-01-25 15:32:33', '', 10, 'https://mrarif.me/cpnordic/?p=200', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(201, 1, '2026-01-26 05:31:40', '2026-01-26 05:31:40', '<h1>CP NORDIC</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n																			<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 05:31:40', '2026-01-26 05:31:40', '', 10, 'https://mrarif.me/cpnordic/?p=201', 0, 'revision', '', 0),
(202, 1, '2026-01-26 05:31:40', '2026-01-26 05:31:40', '<h1>CP NORDIC</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n																			<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 05:31:40', '2026-01-26 05:31:40', '', 10, 'https://mrarif.me/cpnordic/?p=202', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(203, 1, '2026-01-26 05:31:41', '2026-01-26 05:31:41', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n									<h2>OM CP NORDIC ApS</h2>		<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 05:31:41', '2026-01-26 05:31:41', '', 10, 'https://mrarif.me/cpnordic/?p=203', 0, 'revision', '', 0),
(204, 1, '2026-01-26 05:32:47', '2026-01-26 05:32:47', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n									<h2>OM CP NORDIC ApS</h2>		<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 05:32:47', '2026-01-26 05:32:47', '', 10, 'https://mrarif.me/cpnordic/?p=204', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(205, 1, '2026-01-26 05:32:47', '2026-01-26 05:32:47', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n									<h2>OM CP NORDIC ApS</h2>		<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 05:32:47', '2026-01-26 05:32:47', '', 10, 'https://mrarif.me/cpnordic/?p=205', 0, 'revision', '', 0),
(206, 1, '2026-01-26 05:32:47', '2026-01-26 05:32:47', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n									<h2>OM CP NORDIC ApS</h2>		<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 05:32:47', '2026-01-26 05:32:47', '', 10, 'https://mrarif.me/cpnordic/?p=206', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(207, 1, '2026-01-26 05:33:09', '2026-01-26 05:33:09', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n									<h2>OM CP NORDIC ApS</h2>		<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 05:33:09', '2026-01-26 05:33:09', '', 10, 'https://mrarif.me/cpnordic/?p=207', 0, 'revision', '', 0),
(208, 1, '2026-01-26 05:33:09', '2026-01-26 05:33:09', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n									<h2>OM CP NORDIC ApS</h2>		<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 05:33:09', '2026-01-26 05:33:09', '', 10, 'https://mrarif.me/cpnordic/?p=208', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(209, 1, '2026-01-26 05:33:10', '2026-01-26 05:33:10', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n									<h2>OM CP NORDIC ApS</h2>		<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 05:33:10', '2026-01-26 05:33:10', '', 10, 'https://mrarif.me/cpnordic/?p=209', 0, 'revision', '', 0),
(210, 1, '2026-01-26 05:34:37', '2026-01-26 05:34:37', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n									<h2>OM CP NORDIC ApS</h2>		<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 05:34:37', '2026-01-26 05:34:37', '', 10, 'https://mrarif.me/cpnordic/?p=210', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(211, 1, '2026-01-26 05:34:37', '2026-01-26 05:34:37', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n									<h2>OM CP NORDIC ApS</h2>		<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 05:34:37', '2026-01-26 05:34:37', '', 10, 'https://mrarif.me/cpnordic/?p=211', 0, 'revision', '', 0),
(212, 1, '2026-01-26 05:34:37', '2026-01-26 05:34:37', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n									<h2>OM CP NORDIC ApS</h2>		<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 05:34:37', '2026-01-26 05:34:37', '', 10, 'https://mrarif.me/cpnordic/?p=212', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(213, 1, '2026-01-26 05:35:18', '2026-01-26 05:35:18', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n									<h2>OM CP NORDIC ApS</h2>		<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 05:35:18', '2026-01-26 05:35:18', '', 10, 'https://mrarif.me/cpnordic/?p=213', 0, 'revision', '', 0),
(214, 1, '2026-01-26 05:35:18', '2026-01-26 05:35:18', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n									<h2>OM CP NORDIC ApS</h2>		<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 05:35:18', '2026-01-26 05:35:18', '', 10, 'https://mrarif.me/cpnordic/?p=214', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(215, 1, '2026-01-26 05:35:18', '2026-01-26 05:35:18', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>			<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 05:35:18', '2026-01-26 05:35:18', '', 10, 'https://mrarif.me/cpnordic/?p=215', 0, 'revision', '', 0),
(216, 1, '2026-01-26 05:36:46', '2026-01-26 05:36:46', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>			<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 05:36:46', '2026-01-26 05:36:46', '', 10, 'https://mrarif.me/cpnordic/?p=216', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(217, 1, '2026-01-26 05:36:46', '2026-01-26 05:36:46', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>			<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 05:36:46', '2026-01-26 05:36:46', '', 10, 'https://mrarif.me/cpnordic/?p=217', 0, 'revision', '', 0),
(218, 1, '2026-01-26 05:36:46', '2026-01-26 05:36:46', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>			<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 05:36:46', '2026-01-26 05:36:46', '', 10, 'https://mrarif.me/cpnordic/?p=218', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(219, 1, '2026-01-26 05:40:42', '2026-01-26 05:40:42', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>			<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 05:40:42', '2026-01-26 05:40:42', '', 10, 'https://mrarif.me/cpnordic/?p=219', 0, 'revision', '', 0),
(220, 1, '2026-01-26 05:40:42', '2026-01-26 05:40:42', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>			<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 05:40:42', '2026-01-26 05:40:42', '', 10, 'https://mrarif.me/cpnordic/?p=220', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(229, 1, '2026-01-26 05:46:12', '2026-01-26 05:46:12', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>			<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n																	<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 05:46:12', '2026-01-26 05:46:12', '', 10, 'https://mrarif.me/cpnordic/?p=229', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(221, 1, '2026-01-26 05:40:42', '2026-01-26 05:40:42', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>			<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n																	<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 05:40:42', '2026-01-26 05:40:42', '', 10, 'https://mrarif.me/cpnordic/?p=221', 0, 'revision', '', 0),
(222, 1, '2026-01-26 05:41:22', '2026-01-26 05:41:22', '', 'Default Kit', '', 'inherit', 'closed', 'closed', '', '26-revision-v1', '', '', '2026-01-26 05:41:22', '2026-01-26 05:41:22', '', 26, 'https://mrarif.me/cpnordic/?p=222', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(223, 1, '2026-01-26 05:42:19', '2026-01-26 05:42:19', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>			<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n																	<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 05:42:19', '2026-01-26 05:42:19', '', 10, 'https://mrarif.me/cpnordic/?p=223', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(224, 1, '2026-01-26 05:42:19', '2026-01-26 05:42:19', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>			<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n																	<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 05:42:19', '2026-01-26 05:42:19', '', 10, 'https://mrarif.me/cpnordic/?p=224', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(225, 1, '2026-01-26 05:42:19', '2026-01-26 05:42:19', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>			<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n																	<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 05:42:19', '2026-01-26 05:42:19', '', 10, 'https://mrarif.me/cpnordic/?p=225', 0, 'revision', '', 0),
(226, 1, '2026-01-26 05:44:44', '2026-01-26 05:44:44', '', 'check-mark_5290989 (7)', '', 'inherit', 'open', 'closed', '', 'check-mark_5290989-7', '', '', '2026-01-26 05:44:44', '2026-01-26 05:44:44', '', 10, 'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/check-mark_5290989-7.svg', 0, 'attachment', 'image/svg+xml', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(227, 1, '2026-01-26 05:46:11', '2026-01-26 05:46:11', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>			<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n																	<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 05:46:11', '2026-01-26 05:46:11', '', 10, 'https://mrarif.me/cpnordic/?p=227', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(228, 1, '2026-01-26 05:46:11', '2026-01-26 05:46:11', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>			<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n																	<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 05:46:11', '2026-01-26 05:46:11', '', 10, 'https://mrarif.me/cpnordic/?p=228', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(230, 1, '2026-01-26 05:46:37', '2026-01-26 05:46:37', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>			<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n																	<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 05:46:37', '2026-01-26 05:46:37', '', 10, 'https://mrarif.me/cpnordic/?p=230', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(231, 1, '2026-01-26 05:46:38', '2026-01-26 05:46:38', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>			<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n																	<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 05:46:38', '2026-01-26 05:46:38', '', 10, 'https://mrarif.me/cpnordic/?p=231', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(236, 1, '2026-01-26 05:50:27', '2026-01-26 05:50:27', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>			<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 05:50:27', '2026-01-26 05:50:27', '', 10, 'https://mrarif.me/cpnordic/?p=236', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(232, 1, '2026-01-26 05:46:38', '2026-01-26 05:46:38', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>			<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 05:46:38', '2026-01-26 05:46:38', '', 10, 'https://mrarif.me/cpnordic/?p=232', 0, 'revision', '', 0),
(233, 1, '2026-01-26 05:50:15', '2026-01-26 05:50:15', '', 'CP NORDIC ApS img-1', '', 'inherit', 'open', 'closed', '', 'cp-nordic-aps-img-1', '', '', '2026-01-26 05:50:15', '2026-01-26 05:50:15', '', 10, 'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg', 0, 'attachment', 'image/jpeg', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(234, 1, '2026-01-26 05:50:26', '2026-01-26 05:50:26', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>			<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 05:50:26', '2026-01-26 05:50:26', '', 10, 'https://mrarif.me/cpnordic/?p=234', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(235, 1, '2026-01-26 05:50:26', '2026-01-26 05:50:26', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>			<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 05:50:26', '2026-01-26 05:50:26', '', 10, 'https://mrarif.me/cpnordic/?p=235', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(237, 1, '2026-01-26 05:56:43', '2026-01-26 05:56:43', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>			<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 05:56:43', '2026-01-26 05:56:43', '', 10, 'https://mrarif.me/cpnordic/?p=237', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(238, 1, '2026-01-26 05:56:43', '2026-01-26 05:56:43', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>			<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 05:56:43', '2026-01-26 05:56:43', '', 10, 'https://mrarif.me/cpnordic/?p=238', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(248, 1, '2026-01-26 06:02:05', '2026-01-26 06:02:05', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>			<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 06:02:05', '2026-01-26 06:02:05', '', 10, 'https://mrarif.me/cpnordic/?p=248', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(239, 1, '2026-01-26 05:56:44', '2026-01-26 05:56:44', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>			<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Terrasser						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 05:56:44', '2026-01-26 05:56:44', '', 10, 'https://mrarif.me/cpnordic/?p=239', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(240, 1, '2026-01-26 05:58:42', '2026-01-26 05:58:42', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>			<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Terrasser						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 05:58:42', '2026-01-26 05:58:42', '', 10, 'https://mrarif.me/cpnordic/?p=240', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(241, 1, '2026-01-26 05:58:42', '2026-01-26 05:58:42', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>			<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Terrasser						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 05:58:42', '2026-01-26 05:58:42', '', 10, 'https://mrarif.me/cpnordic/?p=241', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(242, 1, '2026-01-26 05:58:42', '2026-01-26 05:58:42', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>			<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Terrasser						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 05:58:42', '2026-01-26 05:58:42', '', 10, 'https://mrarif.me/cpnordic/?p=242', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(243, 1, '2026-01-26 05:59:23', '2026-01-26 05:59:23', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>			<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Terrasser						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 05:59:23', '2026-01-26 05:59:23', '', 10, 'https://mrarif.me/cpnordic/?p=243', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(244, 1, '2026-01-26 05:59:23', '2026-01-26 05:59:23', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>			<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Terrasser						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 05:59:23', '2026-01-26 05:59:23', '', 10, 'https://mrarif.me/cpnordic/?p=244', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(245, 1, '2026-01-26 05:59:24', '2026-01-26 05:59:24', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>			<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Terrasser						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 05:59:24', '2026-01-26 05:59:24', '', 10, 'https://mrarif.me/cpnordic/?p=245', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(246, 1, '2026-01-26 06:02:05', '2026-01-26 06:02:05', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>			<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Terrasser						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 06:02:05', '2026-01-26 06:02:05', '', 10, 'https://mrarif.me/cpnordic/?p=246', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(247, 1, '2026-01-26 06:02:05', '2026-01-26 06:02:05', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>			<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Terrasser						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 06:02:05', '2026-01-26 06:02:05', '', 10, 'https://mrarif.me/cpnordic/?p=247', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(249, 1, '2026-01-26 06:03:19', '2026-01-26 06:03:19', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>			<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 06:03:19', '2026-01-26 06:03:19', '', 10, 'https://mrarif.me/cpnordic/?p=249', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(250, 1, '2026-01-26 06:03:20', '2026-01-26 06:03:20', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>			<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 06:03:20', '2026-01-26 06:03:20', '', 10, 'https://mrarif.me/cpnordic/?p=250', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(251, 1, '2026-01-26 06:03:20', '2026-01-26 06:03:20', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>			<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>		\n									<h2>\n						Terrasser					</h2>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 06:03:20', '2026-01-26 06:03:20', '', 10, 'https://mrarif.me/cpnordic/?p=251', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(252, 1, '2026-01-26 06:03:56', '2026-01-26 06:03:56', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>			<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>		\n									<h2>\n						Terrasser					</h2>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 06:03:56', '2026-01-26 06:03:56', '', 10, 'https://mrarif.me/cpnordic/?p=252', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(253, 1, '2026-01-26 06:03:56', '2026-01-26 06:03:56', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>			<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>		\n									<h2>\n						Terrasser					</h2>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 06:03:56', '2026-01-26 06:03:56', '', 10, 'https://mrarif.me/cpnordic/?p=253', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(254, 1, '2026-01-26 06:03:56', '2026-01-26 06:03:56', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>			<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>		\n									<h2>\n						Terrasser					</h2>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 06:03:56', '2026-01-26 06:03:56', '', 10, 'https://mrarif.me/cpnordic/?p=254', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(255, 1, '2026-01-26 06:04:12', '2026-01-26 06:04:12', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>			<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>		\n									<h2>\n						Terrasser					</h2>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 06:04:12', '2026-01-26 06:04:12', '', 10, 'https://mrarif.me/cpnordic/?p=255', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(256, 1, '2026-01-26 06:04:12', '2026-01-26 06:04:12', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>			<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>		\n									<h2>\n						Terrasser					</h2>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 06:04:12', '2026-01-26 06:04:12', '', 10, 'https://mrarif.me/cpnordic/?p=256', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(257, 1, '2026-01-26 06:04:12', '2026-01-26 06:04:12', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>			<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 06:04:12', '2026-01-26 06:04:12', '', 10, 'https://mrarif.me/cpnordic/?p=257', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(258, 1, '2026-01-26 06:04:16', '2026-01-26 06:04:16', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>			<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 06:04:16', '2026-01-26 06:04:16', '', 10, 'https://mrarif.me/cpnordic/?p=258', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(259, 1, '2026-01-26 06:04:16', '2026-01-26 06:04:16', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>			<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 06:04:16', '2026-01-26 06:04:16', '', 10, 'https://mrarif.me/cpnordic/?p=259', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(260, 1, '2026-01-26 06:04:16', '2026-01-26 06:04:16', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>			<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 06:04:16', '2026-01-26 06:04:16', '', 10, 'https://mrarif.me/cpnordic/?p=260', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(261, 1, '2026-01-26 06:04:22', '2026-01-26 06:04:22', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>			<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 06:04:22', '2026-01-26 06:04:22', '', 10, 'https://mrarif.me/cpnordic/?p=261', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(262, 1, '2026-01-26 06:04:22', '2026-01-26 06:04:22', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>			<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 06:04:22', '2026-01-26 06:04:22', '', 10, 'https://mrarif.me/cpnordic/?p=262', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(263, 1, '2026-01-26 06:04:23', '2026-01-26 06:04:23', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>			<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 06:04:23', '2026-01-26 06:04:23', '', 10, 'https://mrarif.me/cpnordic/?p=263', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(264, 1, '2026-01-26 06:05:01', '2026-01-26 06:05:01', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>			<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 06:05:01', '2026-01-26 06:05:01', '', 10, 'https://mrarif.me/cpnordic/?p=264', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(265, 1, '2026-01-26 06:05:01', '2026-01-26 06:05:01', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>			<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 06:05:01', '2026-01-26 06:05:01', '', 10, 'https://mrarif.me/cpnordic/?p=265', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(266, 1, '2026-01-26 06:05:02', '2026-01-26 06:05:02', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>			<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>		\n									<h3>\n						Terrasser					</h3>\n									<h3>\n						Terrasser					</h3>\n									<h3>\n						Terrasser					</h3>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 06:05:02', '2026-01-26 06:05:02', '', 10, 'https://mrarif.me/cpnordic/?p=266', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(267, 1, '2026-01-26 06:06:00', '2026-01-26 06:06:00', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>			<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>		\n									<h3>\n						Terrasser					</h3>\n									<h3>\n						Terrasser					</h3>\n									<h3>\n						Terrasser					</h3>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 06:06:00', '2026-01-26 06:06:00', '', 10, 'https://mrarif.me/cpnordic/?p=267', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(268, 1, '2026-01-26 06:06:00', '2026-01-26 06:06:00', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>			<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>		\n									<h3>\n						Terrasser					</h3>\n									<h3>\n						Terrasser					</h3>\n									<h3>\n						Terrasser					</h3>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 06:06:00', '2026-01-26 06:06:00', '', 10, 'https://mrarif.me/cpnordic/?p=268', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(269, 1, '2026-01-26 06:06:00', '2026-01-26 06:06:00', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>			<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>		\n									<h3>\n						Terrasser					</h3>\n									<h3>\n						Terrasser					</h3>\n									<h3>\n						Terrasser					</h3>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 06:06:00', '2026-01-26 06:06:00', '', 10, 'https://mrarif.me/cpnordic/?p=269', 0, 'revision', '', 0),
(270, 1, '2026-01-26 06:06:49', '2026-01-26 06:06:49', '', 'CP NORDIC ApS img-2', '', 'inherit', 'open', 'closed', '', 'cp-nordic-aps-img-2', '', '', '2026-01-26 06:06:49', '2026-01-26 06:06:49', '', 10, 'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-2.jpg', 0, 'attachment', 'image/jpeg', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(271, 1, '2026-01-26 06:07:00', '2026-01-26 06:07:00', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>			<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>		\n									<h3>\n						Terrasser					</h3>\n									<h3>\n						Terrasser					</h3>\n									<h3>\n						Terrasser					</h3>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 06:07:00', '2026-01-26 06:07:00', '', 10, 'https://mrarif.me/cpnordic/?p=271', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(272, 1, '2026-01-26 06:07:00', '2026-01-26 06:07:00', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>			<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>		\n									<h3>\n						Terrasser					</h3>\n									<h3>\n						Terrasser					</h3>\n									<h3>\n						Terrasser					</h3>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 06:07:00', '2026-01-26 06:07:00', '', 10, 'https://mrarif.me/cpnordic/?p=272', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(273, 1, '2026-01-26 06:07:01', '2026-01-26 06:07:01', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>			<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>		\n									<h3>\n						Terrasser					</h3>\n									<h3>\n						Terrasser					</h3>\n									<h3>\n						Terrasser					</h3>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 06:07:01', '2026-01-26 06:07:01', '', 10, 'https://mrarif.me/cpnordic/?p=273', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(274, 1, '2026-01-26 06:07:16', '2026-01-26 06:07:16', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>			<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>		\n									<h3>\n						Terrasser					</h3>\n									<h3>\n						Terrasser					</h3>\n									<h3>\n						Terrasser					</h3>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 06:07:16', '2026-01-26 06:07:16', '', 10, 'https://mrarif.me/cpnordic/?p=274', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(275, 1, '2026-01-26 06:07:16', '2026-01-26 06:07:16', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>			<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>		\n									<h3>\n						Terrasser					</h3>\n									<h3>\n						Terrasser					</h3>\n									<h3>\n						Terrasser					</h3>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 06:07:16', '2026-01-26 06:07:16', '', 10, 'https://mrarif.me/cpnordic/?p=275', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(276, 1, '2026-01-26 06:07:16', '2026-01-26 06:07:16', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>			<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>		\n									<h3>\n						Terrasser					</h3>\n									<h3>\n						Totalrenoveringer					</h3>\n									<h3>\n						Terrasser					</h3>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 06:07:16', '2026-01-26 06:07:16', '', 10, 'https://mrarif.me/cpnordic/?p=276', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(281, 1, '2026-01-26 06:08:56', '2026-01-26 06:08:56', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>			<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>		\n									<h3>\n						Terrasser					</h3>\n									<h3>\n						Totalrenoveringer					</h3>\n									<h3>\n						Tilbygninger					</h3>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 06:08:56', '2026-01-26 06:08:56', '', 10, 'https://mrarif.me/cpnordic/?p=281', 0, 'revision', '', 0),
(278, 1, '2026-01-26 06:08:48', '2026-01-26 06:08:48', '', 'CP NORDIC ApS img-3', '', 'inherit', 'open', 'closed', '', 'cp-nordic-aps-img-3', '', '', '2026-01-26 06:08:48', '2026-01-26 06:08:48', '', 10, 'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg', 0, 'attachment', 'image/jpeg', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(279, 1, '2026-01-26 06:08:56', '2026-01-26 06:08:56', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>			<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>		\n									<h3>\n						Terrasser					</h3>\n									<h3>\n						Totalrenoveringer					</h3>\n									<h3>\n						Terrasser					</h3>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 06:08:56', '2026-01-26 06:08:56', '', 10, 'https://mrarif.me/cpnordic/?p=279', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(280, 1, '2026-01-26 06:08:56', '2026-01-26 06:08:56', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>			<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>		\n									<h3>\n						Terrasser					</h3>\n									<h3>\n						Totalrenoveringer					</h3>\n									<h3>\n						Terrasser					</h3>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 06:08:56', '2026-01-26 06:08:56', '', 10, 'https://mrarif.me/cpnordic/?p=280', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(282, 1, '2026-01-26 06:10:55', '2026-01-26 06:10:55', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>			<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>		\n									<h3>\n						Terrasser					</h3>\n									<h3>\n						Totalrenoveringer					</h3>\n									<h3>\n						Tilbygninger					</h3>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 06:10:55', '2026-01-26 06:10:55', '', 10, 'https://mrarif.me/cpnordic/?p=282', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(283, 1, '2026-01-26 06:10:55', '2026-01-26 06:10:55', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>			<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>		\n									<h3>\n						Terrasser					</h3>\n									<h3>\n						Totalrenoveringer					</h3>\n									<h3>\n						Tilbygninger					</h3>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 06:10:55', '2026-01-26 06:10:55', '', 10, 'https://mrarif.me/cpnordic/?p=283', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(284, 1, '2026-01-26 06:10:56', '2026-01-26 06:10:56', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>			<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>		\n									<h3>\n						Terrasser					</h3>\n									<h3>\n						Totalrenoveringer					</h3>\n									<h3>\n						Tilbygninger					</h3>\n									<h3>\n						Tilbygninger					</h3>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 06:10:56', '2026-01-26 06:10:56', '', 10, 'https://mrarif.me/cpnordic/?p=284', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(285, 1, '2026-01-26 06:11:19', '2026-01-26 06:11:19', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>			<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>		\n									<h3>\n						Terrasser					</h3>\n									<h3>\n						Totalrenoveringer					</h3>\n									<h3>\n						Tilbygninger					</h3>\n									<h3>\n						Tilbygninger					</h3>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 06:11:19', '2026-01-26 06:11:19', '', 10, 'https://mrarif.me/cpnordic/?p=285', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(286, 1, '2026-01-26 06:11:19', '2026-01-26 06:11:19', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>			<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>		\n									<h3>\n						Terrasser					</h3>\n									<h3>\n						Totalrenoveringer					</h3>\n									<h3>\n						Tilbygninger					</h3>\n									<h3>\n						Tilbygninger					</h3>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 06:11:19', '2026-01-26 06:11:19', '', 10, 'https://mrarif.me/cpnordic/?p=286', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(287, 1, '2026-01-26 06:11:20', '2026-01-26 06:11:20', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>			<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>		\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Tilbygninger					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 06:11:20', '2026-01-26 06:11:20', '', 10, 'https://mrarif.me/cpnordic/?p=287', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(288, 1, '2026-01-26 06:12:53', '2026-01-26 06:12:53', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>			<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>		\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Tilbygninger					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 06:12:53', '2026-01-26 06:12:53', '', 10, 'https://mrarif.me/cpnordic/?p=288', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(289, 1, '2026-01-26 06:12:53', '2026-01-26 06:12:53', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>			<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>		\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Tilbygninger					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 06:12:53', '2026-01-26 06:12:53', '', 10, 'https://mrarif.me/cpnordic/?p=289', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(290, 1, '2026-01-26 06:12:53', '2026-01-26 06:12:53', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>			<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>		\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Tilbygninger					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 06:12:53', '2026-01-26 06:12:53', '', 10, 'https://mrarif.me/cpnordic/?p=290', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(291, 1, '2026-01-26 06:13:06', '2026-01-26 06:13:06', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>			<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>		\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Tilbygninger					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 06:13:06', '2026-01-26 06:13:06', '', 10, 'https://mrarif.me/cpnordic/?p=291', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(292, 1, '2026-01-26 06:13:06', '2026-01-26 06:13:06', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>			<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>		\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Tilbygninger					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 06:13:06', '2026-01-26 06:13:06', '', 10, 'https://mrarif.me/cpnordic/?p=292', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(293, 1, '2026-01-26 06:13:06', '2026-01-26 06:13:06', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>			<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>		\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Tilbygninger					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 06:13:06', '2026-01-26 06:13:06', '', 10, 'https://mrarif.me/cpnordic/?p=293', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(298, 1, '2026-01-26 06:16:28', '2026-01-26 06:16:28', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>			<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>		\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 06:16:28', '2026-01-26 06:16:28', '', 10, 'https://mrarif.me/cpnordic/?p=298', 0, 'revision', '', 0),
(295, 1, '2026-01-26 06:14:51', '2026-01-26 06:14:51', '', 'CP NORDIC ApS img-4', '', 'inherit', 'open', 'closed', '', 'cp-nordic-aps-img-4', '', '', '2026-01-26 06:14:51', '2026-01-26 06:14:51', '', 10, 'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-4.jpg', 0, 'attachment', 'image/jpeg', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(296, 1, '2026-01-26 06:16:27', '2026-01-26 06:16:27', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>			<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>		\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Tilbygninger					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 06:16:27', '2026-01-26 06:16:27', '', 10, 'https://mrarif.me/cpnordic/?p=296', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(297, 1, '2026-01-26 06:16:27', '2026-01-26 06:16:27', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>			<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>		\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Tilbygninger					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 06:16:27', '2026-01-26 06:16:27', '', 10, 'https://mrarif.me/cpnordic/?p=297', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(299, 1, '2026-01-26 06:17:29', '2026-01-26 06:17:29', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>			<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>		\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 06:17:29', '2026-01-26 06:17:29', '', 10, 'https://mrarif.me/cpnordic/?p=299', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(300, 1, '2026-01-26 06:17:29', '2026-01-26 06:17:29', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>			<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>		\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 06:17:29', '2026-01-26 06:17:29', '', 10, 'https://mrarif.me/cpnordic/?p=300', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(301, 1, '2026-01-26 06:17:29', '2026-01-26 06:17:29', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>			<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>		\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 06:17:29', '2026-01-26 06:17:29', '', 10, 'https://mrarif.me/cpnordic/?p=301', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(302, 1, '2026-01-26 06:22:16', '2026-01-26 06:22:16', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>			<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>		\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 06:22:16', '2026-01-26 06:22:16', '', 10, 'https://mrarif.me/cpnordic/?p=302', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(303, 1, '2026-01-26 06:22:16', '2026-01-26 06:22:16', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>			<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>		\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 06:22:16', '2026-01-26 06:22:16', '', 10, 'https://mrarif.me/cpnordic/?p=303', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(304, 1, '2026-01-26 06:22:16', '2026-01-26 06:22:16', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>			<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>		\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 06:22:16', '2026-01-26 06:22:16', '', 10, 'https://mrarif.me/cpnordic/?p=304', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(305, 1, '2026-01-26 06:23:42', '2026-01-26 06:23:42', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>			<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>		\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 06:23:42', '2026-01-26 06:23:42', '', 10, 'https://mrarif.me/cpnordic/?p=305', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(306, 1, '2026-01-26 06:23:42', '2026-01-26 06:23:42', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>			<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>		\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 06:23:42', '2026-01-26 06:23:42', '', 10, 'https://mrarif.me/cpnordic/?p=306', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(307, 1, '2026-01-26 06:23:42', '2026-01-26 06:23:42', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>			<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>		\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 06:23:42', '2026-01-26 06:23:42', '', 10, 'https://mrarif.me/cpnordic/?p=307', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(308, 1, '2026-01-26 06:39:59', '2026-01-26 06:39:59', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>			<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>		\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 06:39:59', '2026-01-26 06:39:59', '', 10, 'https://mrarif.me/cpnordic/?p=308', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(309, 1, '2026-01-26 06:40:00', '2026-01-26 06:40:00', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>			<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>		\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 06:40:00', '2026-01-26 06:40:00', '', 10, 'https://mrarif.me/cpnordic/?p=309', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(310, 1, '2026-01-26 06:40:00', '2026-01-26 06:40:00', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>			<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Click here\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 06:40:00', '2026-01-26 06:40:00', '', 10, 'https://mrarif.me/cpnordic/?p=310', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(311, 1, '2026-01-26 06:40:53', '2026-01-26 06:40:53', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>			<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Click here\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 06:40:53', '2026-01-26 06:40:53', '', 10, 'https://mrarif.me/cpnordic/?p=311', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(312, 1, '2026-01-26 06:40:53', '2026-01-26 06:40:53', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>			<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Click here\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 06:40:53', '2026-01-26 06:40:53', '', 10, 'https://mrarif.me/cpnordic/?p=312', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(313, 1, '2026-01-26 06:40:54', '2026-01-26 06:40:54', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>			<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 06:40:54', '2026-01-26 06:40:54', '', 10, 'https://mrarif.me/cpnordic/?p=313', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(314, 1, '2026-01-26 06:48:15', '2026-01-26 06:48:15', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>			<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 06:48:15', '2026-01-26 06:48:15', '', 10, 'https://mrarif.me/cpnordic/?p=314', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(315, 1, '2026-01-26 06:48:15', '2026-01-26 06:48:15', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>			<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 06:48:15', '2026-01-26 06:48:15', '', 10, 'https://mrarif.me/cpnordic/?p=315', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(316, 1, '2026-01-26 06:48:15', '2026-01-26 06:48:15', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>			<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 06:48:15', '2026-01-26 06:48:15', '', 10, 'https://mrarif.me/cpnordic/?p=316', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(317, 1, '2026-01-26 06:48:25', '2026-01-26 06:48:25', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>			<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 06:48:25', '2026-01-26 06:48:25', '', 10, 'https://mrarif.me/cpnordic/?p=317', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(318, 1, '2026-01-26 06:48:25', '2026-01-26 06:48:25', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>			<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 06:48:25', '2026-01-26 06:48:25', '', 10, 'https://mrarif.me/cpnordic/?p=318', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(319, 1, '2026-01-26 06:48:25', '2026-01-26 06:48:25', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>			<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 06:48:25', '2026-01-26 06:48:25', '', 10, 'https://mrarif.me/cpnordic/?p=319', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(320, 1, '2026-01-26 06:49:00', '2026-01-26 06:49:00', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>			<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 06:49:00', '2026-01-26 06:49:00', '', 10, 'https://mrarif.me/cpnordic/?p=320', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(321, 1, '2026-01-26 06:49:00', '2026-01-26 06:49:00', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>			<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 06:49:00', '2026-01-26 06:49:00', '', 10, 'https://mrarif.me/cpnordic/?p=321', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(322, 1, '2026-01-26 06:49:00', '2026-01-26 06:49:00', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>			<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 06:49:00', '2026-01-26 06:49:00', '', 10, 'https://mrarif.me/cpnordic/?p=322', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(323, 1, '2026-01-26 07:00:28', '2026-01-26 07:00:28', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>			<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 07:00:28', '2026-01-26 07:00:28', '', 10, 'https://mrarif.me/cpnordic/?p=323', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(324, 1, '2026-01-26 07:00:28', '2026-01-26 07:00:28', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>			<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 07:00:28', '2026-01-26 07:00:28', '', 10, 'https://mrarif.me/cpnordic/?p=324', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(334, 1, '2026-01-26 07:02:13', '2026-01-26 07:02:13', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 07:02:13', '2026-01-26 07:02:13', '', 10, 'https://mrarif.me/cpnordic/?p=334', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(325, 1, '2026-01-26 07:00:28', '2026-01-26 07:00:28', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>			<h2>OM CP NORDIC ApS</h2>										<a href=\"#\">\n									Click here\n					</a>\n																			<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 07:00:28', '2026-01-26 07:00:28', '', 10, 'https://mrarif.me/cpnordic/?p=325', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(326, 1, '2026-01-26 07:01:08', '2026-01-26 07:01:08', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>			<h2>OM CP NORDIC ApS</h2>										<a href=\"#\">\n									Click here\n					</a>\n																			<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 07:01:08', '2026-01-26 07:01:08', '', 10, 'https://mrarif.me/cpnordic/?p=326', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(327, 1, '2026-01-26 07:01:08', '2026-01-26 07:01:08', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>			<h2>OM CP NORDIC ApS</h2>										<a href=\"#\">\n									Click here\n					</a>\n																			<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 07:01:08', '2026-01-26 07:01:08', '', 10, 'https://mrarif.me/cpnordic/?p=327', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(328, 1, '2026-01-26 07:01:08', '2026-01-26 07:01:08', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>			<h2>OM CP NORDIC ApS</h2>										<a href=\"#\">\n									Lær mere\n					</a>\n																			<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 07:01:08', '2026-01-26 07:01:08', '', 10, 'https://mrarif.me/cpnordic/?p=328', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(329, 1, '2026-01-26 07:02:02', '2026-01-26 07:02:02', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>			<h2>OM CP NORDIC ApS</h2>										<a href=\"#\">\n									Lær mere\n					</a>\n																			<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 07:02:02', '2026-01-26 07:02:02', '', 10, 'https://mrarif.me/cpnordic/?p=329', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(330, 1, '2026-01-26 07:02:02', '2026-01-26 07:02:02', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>			<h2>OM CP NORDIC ApS</h2>										<a href=\"#\">\n									Lær mere\n					</a>\n																			<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 07:02:02', '2026-01-26 07:02:02', '', 10, 'https://mrarif.me/cpnordic/?p=330', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(331, 1, '2026-01-26 07:02:03', '2026-01-26 07:02:03', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 07:02:03', '2026-01-26 07:02:03', '', 10, 'https://mrarif.me/cpnordic/?p=331', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(332, 1, '2026-01-26 07:02:12', '2026-01-26 07:02:12', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 07:02:12', '2026-01-26 07:02:12', '', 10, 'https://mrarif.me/cpnordic/?p=332', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(333, 1, '2026-01-26 07:02:12', '2026-01-26 07:02:12', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 07:02:12', '2026-01-26 07:02:12', '', 10, 'https://mrarif.me/cpnordic/?p=333', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(335, 1, '2026-01-26 07:28:46', '2026-01-26 07:28:46', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 07:28:46', '2026-01-26 07:28:46', '', 10, 'https://mrarif.me/cpnordic/?p=335', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(336, 1, '2026-01-26 07:28:47', '2026-01-26 07:28:47', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 07:28:47', '2026-01-26 07:28:47', '', 10, 'https://mrarif.me/cpnordic/?p=336', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(340, 1, '2026-01-26 07:30:06', '2026-01-26 07:30:06', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 07:30:06', '2026-01-26 07:30:06', '', 10, 'https://mrarif.me/cpnordic/?p=340', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(337, 1, '2026-01-26 07:28:47', '2026-01-26 07:28:47', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 07:28:47', '2026-01-26 07:28:47', '', 10, 'https://mrarif.me/cpnordic/?p=337', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(338, 1, '2026-01-26 07:30:05', '2026-01-26 07:30:05', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 07:30:05', '2026-01-26 07:30:05', '', 10, 'https://mrarif.me/cpnordic/?p=338', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(339, 1, '2026-01-26 07:30:05', '2026-01-26 07:30:05', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 07:30:05', '2026-01-26 07:30:05', '', 10, 'https://mrarif.me/cpnordic/?p=339', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(341, 1, '2026-01-26 07:33:58', '2026-01-26 07:33:58', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 07:33:58', '2026-01-26 07:33:58', '', 10, 'https://mrarif.me/cpnordic/?p=341', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(342, 1, '2026-01-26 07:33:58', '2026-01-26 07:33:58', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 07:33:58', '2026-01-26 07:33:58', '', 10, 'https://mrarif.me/cpnordic/?p=342', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(343, 1, '2026-01-26 07:33:59', '2026-01-26 07:33:59', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 07:33:59', '2026-01-26 07:33:59', '', 10, 'https://mrarif.me/cpnordic/?p=343', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(344, 1, '2026-01-26 07:36:30', '2026-01-26 07:36:30', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 07:36:30', '2026-01-26 07:36:30', '', 10, 'https://mrarif.me/cpnordic/?p=344', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(345, 1, '2026-01-26 07:36:30', '2026-01-26 07:36:30', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 07:36:30', '2026-01-26 07:36:30', '', 10, 'https://mrarif.me/cpnordic/?p=345', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(349, 1, '2026-01-26 07:37:26', '2026-01-26 07:37:26', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 07:37:26', '2026-01-26 07:37:26', '', 10, 'https://mrarif.me/cpnordic/?p=349', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(346, 1, '2026-01-26 07:36:31', '2026-01-26 07:36:31', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 07:36:31', '2026-01-26 07:36:31', '', 10, 'https://mrarif.me/cpnordic/?p=346', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(347, 1, '2026-01-26 07:37:26', '2026-01-26 07:37:26', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 07:37:26', '2026-01-26 07:37:26', '', 10, 'https://mrarif.me/cpnordic/?p=347', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(348, 1, '2026-01-26 07:37:26', '2026-01-26 07:37:26', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 07:37:26', '2026-01-26 07:37:26', '', 10, 'https://mrarif.me/cpnordic/?p=348', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(350, 1, '2026-01-26 07:38:27', '2026-01-26 07:38:27', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 07:38:27', '2026-01-26 07:38:27', '', 10, 'https://mrarif.me/cpnordic/?p=350', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(351, 1, '2026-01-26 07:38:27', '2026-01-26 07:38:27', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 07:38:27', '2026-01-26 07:38:27', '', 10, 'https://mrarif.me/cpnordic/?p=351', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(352, 1, '2026-01-26 07:38:27', '2026-01-26 07:38:27', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 07:38:27', '2026-01-26 07:38:27', '', 10, 'https://mrarif.me/cpnordic/?p=352', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(353, 1, '2026-01-26 07:40:04', '2026-01-26 07:40:04', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 07:40:04', '2026-01-26 07:40:04', '', 10, 'https://mrarif.me/cpnordic/?p=353', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(354, 1, '2026-01-26 07:40:04', '2026-01-26 07:40:04', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 07:40:04', '2026-01-26 07:40:04', '', 10, 'https://mrarif.me/cpnordic/?p=354', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(364, 1, '2026-01-26 07:45:54', '2026-01-26 07:45:54', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Vores ydelser omfatter blandt andet:</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							2-lags tagpapløsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Listedækning på skrå flader						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tagpap klar til sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Foliearbejde						\n					</h5>\n																	<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 07:45:54', '2026-01-26 07:45:54', '', 10, 'https://mrarif.me/cpnordic/?p=364', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(355, 1, '2026-01-26 07:40:05', '2026-01-26 07:40:05', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Vores ydelser omfatter blandt andet:</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							2-lags tagpapløsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Listedækning på skrå flader						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tagpap klar til sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Foliearbejde						\n					</h5>\n																	<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 07:40:05', '2026-01-26 07:40:05', '', 10, 'https://mrarif.me/cpnordic/?p=355', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(356, 1, '2026-01-26 07:42:55', '2026-01-26 07:42:55', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Vores ydelser omfatter blandt andet:</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							2-lags tagpapløsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Listedækning på skrå flader						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tagpap klar til sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Foliearbejde						\n					</h5>\n																	<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 07:42:55', '2026-01-26 07:42:55', '', 10, 'https://mrarif.me/cpnordic/?p=356', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(357, 1, '2026-01-26 07:42:56', '2026-01-26 07:42:56', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Vores ydelser omfatter blandt andet:</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							2-lags tagpapløsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Listedækning på skrå flader						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tagpap klar til sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Foliearbejde						\n					</h5>\n																	<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 07:42:56', '2026-01-26 07:42:56', '', 10, 'https://mrarif.me/cpnordic/?p=357', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(358, 1, '2026-01-26 07:42:56', '2026-01-26 07:42:56', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Vores ydelser omfatter blandt andet:</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							2-lags tagpapløsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Listedækning på skrå flader						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tagpap klar til sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Foliearbejde						\n					</h5>\n																	<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 07:42:56', '2026-01-26 07:42:56', '', 10, 'https://mrarif.me/cpnordic/?p=358', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(359, 1, '2026-01-26 07:44:11', '2026-01-26 07:44:11', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Vores ydelser omfatter blandt andet:</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							2-lags tagpapløsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Listedækning på skrå flader						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tagpap klar til sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Foliearbejde						\n					</h5>\n																	<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 07:44:11', '2026-01-26 07:44:11', '', 10, 'https://mrarif.me/cpnordic/?p=359', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(360, 1, '2026-01-26 07:44:11', '2026-01-26 07:44:11', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Vores ydelser omfatter blandt andet:</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							2-lags tagpapløsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Listedækning på skrå flader						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tagpap klar til sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Foliearbejde						\n					</h5>\n																	<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 07:44:11', '2026-01-26 07:44:11', '', 10, 'https://mrarif.me/cpnordic/?p=360', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(361, 1, '2026-01-26 07:44:11', '2026-01-26 07:44:11', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Vores ydelser omfatter blandt andet:</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							2-lags tagpapløsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Listedækning på skrå flader						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tagpap klar til sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Foliearbejde						\n					</h5>\n																	<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 07:44:11', '2026-01-26 07:44:11', '', 10, 'https://mrarif.me/cpnordic/?p=361', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(362, 1, '2026-01-26 07:45:53', '2026-01-26 07:45:53', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Vores ydelser omfatter blandt andet:</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							2-lags tagpapløsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Listedækning på skrå flader						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tagpap klar til sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Foliearbejde						\n					</h5>\n																	<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 07:45:53', '2026-01-26 07:45:53', '', 10, 'https://mrarif.me/cpnordic/?p=362', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(363, 1, '2026-01-26 07:45:53', '2026-01-26 07:45:53', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Vores ydelser omfatter blandt andet:</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							2-lags tagpapløsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Listedækning på skrå flader						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tagpap klar til sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Foliearbejde						\n					</h5>\n																	<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 07:45:53', '2026-01-26 07:45:53', '', 10, 'https://mrarif.me/cpnordic/?p=363', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(365, 1, '2026-01-26 07:46:22', '2026-01-26 07:46:22', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Vores ydelser omfatter blandt andet:</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							2-lags tagpapløsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Listedækning på skrå flader						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tagpap klar til sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Foliearbejde						\n					</h5>\n																	<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 07:46:22', '2026-01-26 07:46:22', '', 10, 'https://mrarif.me/cpnordic/?p=365', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(366, 1, '2026-01-26 07:46:22', '2026-01-26 07:46:22', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Vores ydelser omfatter blandt andet:</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							2-lags tagpapløsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Listedækning på skrå flader						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tagpap klar til sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Foliearbejde						\n					</h5>\n																	<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 07:46:22', '2026-01-26 07:46:22', '', 10, 'https://mrarif.me/cpnordic/?p=366', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(367, 1, '2026-01-26 07:46:23', '2026-01-26 07:46:23', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Vores ydelser omfatter blandt andet:</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							2-lags tagpapløsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Listedækning på skrå flader						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tagpap klar til sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Foliearbejde						\n					</h5>\n																	<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 07:46:23', '2026-01-26 07:46:23', '', 10, 'https://mrarif.me/cpnordic/?p=367', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(368, 1, '2026-01-26 07:46:44', '2026-01-26 07:46:44', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Vores ydelser omfatter blandt andet:</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							2-lags tagpapløsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Listedækning på skrå flader						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tagpap klar til sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Foliearbejde						\n					</h5>\n																	<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 07:46:44', '2026-01-26 07:46:44', '', 10, 'https://mrarif.me/cpnordic/?p=368', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(369, 1, '2026-01-26 07:46:44', '2026-01-26 07:46:44', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Vores ydelser omfatter blandt andet:</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							2-lags tagpapløsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Listedækning på skrå flader						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tagpap klar til sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Foliearbejde						\n					</h5>\n																	<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 07:46:44', '2026-01-26 07:46:44', '', 10, 'https://mrarif.me/cpnordic/?p=369', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(370, 1, '2026-01-26 07:46:45', '2026-01-26 07:46:45', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Vores ydelser omfatter blandt andet:</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							2-lags tagpapløsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Listedækning på skrå flader						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tagpap klar til sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Foliearbejde						\n					</h5>\n																	<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 07:46:45', '2026-01-26 07:46:45', '', 10, 'https://mrarif.me/cpnordic/?p=370', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(371, 1, '2026-01-26 07:49:04', '2026-01-26 07:49:04', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Vores ydelser omfatter blandt andet:</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							2-lags tagpapløsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Listedækning på skrå flader						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tagpap klar til sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Foliearbejde						\n					</h5>\n																	<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 07:49:04', '2026-01-26 07:49:04', '', 10, 'https://mrarif.me/cpnordic/?p=371', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(372, 1, '2026-01-26 07:49:05', '2026-01-26 07:49:05', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Vores ydelser omfatter blandt andet:</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							2-lags tagpapløsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Listedækning på skrå flader						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tagpap klar til sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Foliearbejde						\n					</h5>\n																	<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 07:49:05', '2026-01-26 07:49:05', '', 10, 'https://mrarif.me/cpnordic/?p=372', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(373, 1, '2026-01-26 07:49:05', '2026-01-26 07:49:05', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Vores ydelser omfatter blandt andet:</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							2-lags tagpapløsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Listedækning på skrå flader						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tagpap klar til sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Foliearbejde						\n					</h5>\n																	<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 07:49:05', '2026-01-26 07:49:05', '', 10, 'https://mrarif.me/cpnordic/?p=373', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(374, 1, '2026-01-26 07:49:33', '2026-01-26 07:49:33', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Vores ydelser omfatter blandt andet:</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							2-lags tagpapløsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Listedækning på skrå flader						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tagpap klar til sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Foliearbejde						\n					</h5>\n																	<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 07:49:33', '2026-01-26 07:49:33', '', 10, 'https://mrarif.me/cpnordic/?p=374', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(375, 1, '2026-01-26 07:49:33', '2026-01-26 07:49:33', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Vores ydelser omfatter blandt andet:</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							2-lags tagpapløsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Listedækning på skrå flader						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tagpap klar til sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Foliearbejde						\n					</h5>\n																	<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 07:49:33', '2026-01-26 07:49:33', '', 10, 'https://mrarif.me/cpnordic/?p=375', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(376, 1, '2026-01-26 07:49:33', '2026-01-26 07:49:33', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Vores ydelser omfatter blandt andet:</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							2-lags tagpapløsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Listedækning på skrå flader						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tagpap klar til sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Foliearbejde						\n					</h5>\n																	<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 07:49:33', '2026-01-26 07:49:33', '', 10, 'https://mrarif.me/cpnordic/?p=376', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(377, 1, '2026-01-26 07:51:27', '2026-01-26 07:51:27', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Vores ydelser omfatter blandt andet:</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							2-lags tagpapløsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Listedækning på skrå flader						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tagpap klar til sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Foliearbejde						\n					</h5>\n																	<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 07:51:27', '2026-01-26 07:51:27', '', 10, 'https://mrarif.me/cpnordic/?p=377', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(378, 1, '2026-01-26 07:51:27', '2026-01-26 07:51:27', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Vores ydelser omfatter blandt andet:</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							2-lags tagpapløsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Listedækning på skrå flader						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tagpap klar til sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Foliearbejde						\n					</h5>\n																	<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 07:51:27', '2026-01-26 07:51:27', '', 10, 'https://mrarif.me/cpnordic/?p=378', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(379, 1, '2026-01-26 07:51:28', '2026-01-26 07:51:28', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Vores ydelser omfatter blandt andet:</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							2-lags tagpapløsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Listedækning på skrå flader						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tagpap klar til sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Foliearbejde						\n					</h5>\n																	<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 07:51:28', '2026-01-26 07:51:28', '', 10, 'https://mrarif.me/cpnordic/?p=379', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(380, 1, '2026-01-26 11:15:23', '2026-01-26 11:15:23', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Vores ydelser omfatter blandt andet:</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							2-lags tagpapløsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Listedækning på skrå flader						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tagpap klar til sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Foliearbejde						\n					</h5>\n																	<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 11:15:23', '2026-01-26 11:15:23', '', 10, 'https://mrarif.me/cpnordic/?p=380', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(381, 1, '2026-01-26 11:15:23', '2026-01-26 11:15:23', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Vores ydelser omfatter blandt andet:</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							2-lags tagpapløsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Listedækning på skrå flader						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tagpap klar til sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Foliearbejde						\n					</h5>\n																	<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 11:15:23', '2026-01-26 11:15:23', '', 10, 'https://mrarif.me/cpnordic/?p=381', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(382, 1, '2026-01-26 11:15:24', '2026-01-26 11:15:24', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Vores ydelser omfatter blandt andet:</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							2-lags tagpapløsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Listedækning på skrå flader						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tagpap klar til sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Foliearbejde						\n					</h5>\n																	<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 11:15:24', '2026-01-26 11:15:24', '', 10, 'https://mrarif.me/cpnordic/?p=382', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(383, 1, '2026-01-26 11:16:08', '2026-01-26 11:16:08', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Vores ydelser omfatter blandt andet:</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							2-lags tagpapløsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Listedækning på skrå flader						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tagpap klar til sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Foliearbejde						\n					</h5>\n																	<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 11:16:08', '2026-01-26 11:16:08', '', 10, 'https://mrarif.me/cpnordic/?p=383', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(384, 1, '2026-01-26 11:16:09', '2026-01-26 11:16:09', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Vores ydelser omfatter blandt andet:</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							2-lags tagpapløsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Listedækning på skrå flader						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tagpap klar til sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Foliearbejde						\n					</h5>\n																	<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 11:16:09', '2026-01-26 11:16:09', '', 10, 'https://mrarif.me/cpnordic/?p=384', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(385, 1, '2026-01-26 11:16:09', '2026-01-26 11:16:09', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Vores ydelser omfatter blandt andet:</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							2-lags tagpapløsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Listedækning på skrå flader						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tagpap klar til sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Foliearbejde						\n					</h5>\n																	<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 11:16:09', '2026-01-26 11:16:09', '', 10, 'https://mrarif.me/cpnordic/?p=385', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(386, 1, '2026-01-26 11:16:32', '2026-01-26 11:16:32', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Vores ydelser omfatter blandt andet:</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							2-lags tagpapløsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Listedækning på skrå flader						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tagpap klar til sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Foliearbejde						\n					</h5>\n																	<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 11:16:32', '2026-01-26 11:16:32', '', 10, 'https://mrarif.me/cpnordic/?p=386', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(387, 1, '2026-01-26 11:16:32', '2026-01-26 11:16:32', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Vores ydelser omfatter blandt andet:</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							2-lags tagpapløsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Listedækning på skrå flader						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tagpap klar til sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Foliearbejde						\n					</h5>\n																	<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 11:16:32', '2026-01-26 11:16:32', '', 10, 'https://mrarif.me/cpnordic/?p=387', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(388, 1, '2026-01-26 11:16:33', '2026-01-26 11:16:33', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Vores ydelser omfatter blandt andet:</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							2-lags tagpapløsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Listedækning på skrå flader						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tagpap klar til sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Foliearbejde						\n					</h5>\n																	<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 11:16:33', '2026-01-26 11:16:33', '', 10, 'https://mrarif.me/cpnordic/?p=388', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(389, 1, '2026-01-26 11:17:30', '2026-01-26 11:17:30', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Vores ydelser omfatter blandt andet:</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							2-lags tagpapløsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Listedækning på skrå flader						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tagpap klar til sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Foliearbejde						\n					</h5>\n																	<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 11:17:30', '2026-01-26 11:17:30', '', 10, 'https://mrarif.me/cpnordic/?p=389', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(390, 1, '2026-01-26 11:17:30', '2026-01-26 11:17:30', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Vores ydelser omfatter blandt andet:</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							2-lags tagpapløsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Listedækning på skrå flader						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tagpap klar til sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Foliearbejde						\n					</h5>\n																	<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 11:17:30', '2026-01-26 11:17:30', '', 10, 'https://mrarif.me/cpnordic/?p=390', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(391, 1, '2026-01-26 11:17:30', '2026-01-26 11:17:30', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Vores ydelser omfatter blandt andet:</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							2-lags tagpapløsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Listedækning på skrå flader						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tagpap klar til sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Foliearbejde						\n					</h5>\n																	<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 11:17:30', '2026-01-26 11:17:30', '', 10, 'https://mrarif.me/cpnordic/?p=391', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(395, 1, '2026-01-26 11:24:09', '2026-01-26 11:24:09', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Vores ydelser omfatter blandt andet:</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							2-lags tagpapløsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Listedækning på skrå flader						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tagpap klar til sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Foliearbejde						\n					</h5>\n							<h2>Galleri</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 11:24:09', '2026-01-26 11:24:09', '', 10, 'https://mrarif.me/cpnordic/?p=395', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(393, 1, '2026-01-26 11:24:08', '2026-01-26 11:24:08', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Vores ydelser omfatter blandt andet:</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							2-lags tagpapløsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Listedækning på skrå flader						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tagpap klar til sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Foliearbejde						\n					</h5>\n																	<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 11:24:08', '2026-01-26 11:24:08', '', 10, 'https://mrarif.me/cpnordic/?p=393', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(394, 1, '2026-01-26 11:24:08', '2026-01-26 11:24:08', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Vores ydelser omfatter blandt andet:</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							2-lags tagpapløsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Listedækning på skrå flader						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tagpap klar til sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Foliearbejde						\n					</h5>\n																	<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 11:24:08', '2026-01-26 11:24:08', '', 10, 'https://mrarif.me/cpnordic/?p=394', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(396, 1, '2026-01-26 11:24:25', '2026-01-26 11:24:25', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Vores ydelser omfatter blandt andet:</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							2-lags tagpapløsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Listedækning på skrå flader						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tagpap klar til sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Foliearbejde						\n					</h5>\n							<h2>Galleri</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 11:24:25', '2026-01-26 11:24:25', '', 10, 'https://mrarif.me/cpnordic/?p=396', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(397, 1, '2026-01-26 11:24:25', '2026-01-26 11:24:25', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Vores ydelser omfatter blandt andet:</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							2-lags tagpapløsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Listedækning på skrå flader						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tagpap klar til sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Foliearbejde						\n					</h5>\n							<h2>Galleri</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 11:24:25', '2026-01-26 11:24:25', '', 10, 'https://mrarif.me/cpnordic/?p=397', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(398, 1, '2026-01-26 11:24:26', '2026-01-26 11:24:26', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Vores ydelser omfatter blandt andet:</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							2-lags tagpapløsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Listedækning på skrå flader						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tagpap klar til sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Foliearbejde						\n					</h5>\n							<h2>Galleri</h2>				\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-4.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"868adb3\" data-elementor-lightbox-title=\"CP NORDIC ApS img-4\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjk1LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTQuanBnIiwic2xpZGVzaG93IjoiODY4YWRiMyJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"868adb3\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiODY4YWRiMyJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"868adb3\" data-elementor-lightbox-title=\"CP NORDIC ApS img-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTIuanBnIiwic2xpZGVzaG93IjoiODY4YWRiMyJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"868adb3\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiODY4YWRiMyJ9\">\n														</a>\n															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 11:24:26', '2026-01-26 11:24:26', '', 10, 'https://mrarif.me/cpnordic/?p=398', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(399, 1, '2026-01-26 11:29:18', '2026-01-26 11:29:18', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Vores ydelser omfatter blandt andet:</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							2-lags tagpapløsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Listedækning på skrå flader						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tagpap klar til sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Foliearbejde						\n					</h5>\n							<h2>Galleri</h2>				\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-4.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"868adb3\" data-elementor-lightbox-title=\"CP NORDIC ApS img-4\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjk1LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTQuanBnIiwic2xpZGVzaG93IjoiODY4YWRiMyJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"868adb3\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiODY4YWRiMyJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"868adb3\" data-elementor-lightbox-title=\"CP NORDIC ApS img-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTIuanBnIiwic2xpZGVzaG93IjoiODY4YWRiMyJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"868adb3\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiODY4YWRiMyJ9\">\n														</a>\n															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 11:29:18', '2026-01-26 11:29:18', '', 10, 'https://mrarif.me/cpnordic/?p=399', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(400, 1, '2026-01-26 11:29:18', '2026-01-26 11:29:18', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Vores ydelser omfatter blandt andet:</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							2-lags tagpapløsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Listedækning på skrå flader						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tagpap klar til sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Foliearbejde						\n					</h5>\n							<h2>Galleri</h2>				\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-4.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"868adb3\" data-elementor-lightbox-title=\"CP NORDIC ApS img-4\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjk1LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTQuanBnIiwic2xpZGVzaG93IjoiODY4YWRiMyJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"868adb3\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiODY4YWRiMyJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"868adb3\" data-elementor-lightbox-title=\"CP NORDIC ApS img-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTIuanBnIiwic2xpZGVzaG93IjoiODY4YWRiMyJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"868adb3\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiODY4YWRiMyJ9\">\n														</a>\n															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 11:29:18', '2026-01-26 11:29:18', '', 10, 'https://mrarif.me/cpnordic/?p=400', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(401, 1, '2026-01-26 11:29:19', '2026-01-26 11:29:19', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Vores ydelser omfatter blandt andet:</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							2-lags tagpapløsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Listedækning på skrå flader						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tagpap klar til sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Foliearbejde						\n					</h5>\n							<h2>Galleri</h2>							\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a5166a1\" data-elementor-lightbox-title=\"CP NORDIC ApS img-4\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjk1LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTQuanBnIiwic2xpZGVzaG93IjoiYTUxNjZhMSJ9\" href=\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-4.jpg\'><img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-4.jpg\" alt=\"\" decoding=\"async\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-4.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-4-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-4-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-4-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a5166a1\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYTUxNjZhMSJ9\" href=\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\'><img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" alt=\"\" decoding=\"async\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a5166a1\" data-elementor-lightbox-title=\"CP NORDIC ApS img-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTIuanBnIiwic2xpZGVzaG93IjoiYTUxNjZhMSJ9\" href=\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-2.jpg\'><img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-2.jpg\" alt=\"\" decoding=\"async\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-2.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-2-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-2-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-2-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a5166a1\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYTUxNjZhMSJ9\" href=\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\'><img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" decoding=\"async\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" /></a>\n			</figure>\n																	<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 11:29:19', '2026-01-26 11:29:19', '', 10, 'https://mrarif.me/cpnordic/?p=401', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(402, 1, '2026-01-26 11:29:29', '2026-01-26 11:29:29', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Vores ydelser omfatter blandt andet:</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							2-lags tagpapløsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Listedækning på skrå flader						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tagpap klar til sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Foliearbejde						\n					</h5>\n							<h2>Galleri</h2>							\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a5166a1\" data-elementor-lightbox-title=\"CP NORDIC ApS img-4\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjk1LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTQuanBnIiwic2xpZGVzaG93IjoiYTUxNjZhMSJ9\" href=\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-4.jpg\'><img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-4.jpg\" alt=\"\" decoding=\"async\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-4.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-4-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-4-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-4-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a5166a1\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYTUxNjZhMSJ9\" href=\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\'><img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" alt=\"\" decoding=\"async\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a5166a1\" data-elementor-lightbox-title=\"CP NORDIC ApS img-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTIuanBnIiwic2xpZGVzaG93IjoiYTUxNjZhMSJ9\" href=\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-2.jpg\'><img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-2.jpg\" alt=\"\" decoding=\"async\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-2.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-2-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-2-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-2-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a5166a1\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYTUxNjZhMSJ9\" href=\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\'><img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" decoding=\"async\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" /></a>\n			</figure>\n																	<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 11:29:29', '2026-01-26 11:29:29', '', 10, 'https://mrarif.me/cpnordic/?p=402', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(403, 1, '2026-01-26 11:29:29', '2026-01-26 11:29:29', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Vores ydelser omfatter blandt andet:</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							2-lags tagpapløsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Listedækning på skrå flader						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tagpap klar til sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Foliearbejde						\n					</h5>\n							<h2>Galleri</h2>							\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a5166a1\" data-elementor-lightbox-title=\"CP NORDIC ApS img-4\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjk1LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTQuanBnIiwic2xpZGVzaG93IjoiYTUxNjZhMSJ9\" href=\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-4.jpg\'><img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-4.jpg\" alt=\"\" decoding=\"async\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-4.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-4-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-4-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-4-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a5166a1\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYTUxNjZhMSJ9\" href=\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\'><img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" alt=\"\" decoding=\"async\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a5166a1\" data-elementor-lightbox-title=\"CP NORDIC ApS img-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTIuanBnIiwic2xpZGVzaG93IjoiYTUxNjZhMSJ9\" href=\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-2.jpg\'><img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-2.jpg\" alt=\"\" decoding=\"async\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-2.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-2-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-2-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-2-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a5166a1\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYTUxNjZhMSJ9\" href=\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\'><img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" decoding=\"async\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" /></a>\n			</figure>\n																	<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 11:29:29', '2026-01-26 11:29:29', '', 10, 'https://mrarif.me/cpnordic/?p=403', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(404, 1, '2026-01-26 11:29:29', '2026-01-26 11:29:29', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Vores ydelser omfatter blandt andet:</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							2-lags tagpapløsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Listedækning på skrå flader						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tagpap klar til sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Foliearbejde						\n					</h5>\n							<h2>Galleri</h2>							\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a5166a1\" data-elementor-lightbox-title=\"CP NORDIC ApS img-4\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjk1LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTQuanBnIiwic2xpZGVzaG93IjoiYTUxNjZhMSJ9\" href=\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-4.jpg\'><img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-4.jpg\" alt=\"\" decoding=\"async\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-4.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-4-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-4-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-4-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a5166a1\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYTUxNjZhMSJ9\" href=\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\'><img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" alt=\"\" decoding=\"async\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a5166a1\" data-elementor-lightbox-title=\"CP NORDIC ApS img-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTIuanBnIiwic2xpZGVzaG93IjoiYTUxNjZhMSJ9\" href=\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-2.jpg\'><img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-2.jpg\" alt=\"\" decoding=\"async\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-2.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-2-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-2-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-2-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a5166a1\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYTUxNjZhMSJ9\" href=\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\'><img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" decoding=\"async\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" /></a>\n			</figure>\n																	<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 11:29:29', '2026-01-26 11:29:29', '', 10, 'https://mrarif.me/cpnordic/?p=404', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(405, 1, '2026-01-26 11:42:07', '2026-01-26 11:42:07', '', 'CP NORDIC ApS item-3', '', 'inherit', 'open', 'closed', '', 'cp-nordic-aps-item-3', '', '', '2026-01-26 11:42:07', '2026-01-26 11:42:07', '', 10, 'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-3.jpg', 0, 'attachment', 'image/jpeg', 0),
(406, 1, '2026-01-26 11:42:11', '2026-01-26 11:42:11', '', 'CP NORDIC ApS item-4', '', 'inherit', 'open', 'closed', '', 'cp-nordic-aps-item-4', '', '', '2026-01-26 11:42:11', '2026-01-26 11:42:11', '', 10, 'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-4.jpg', 0, 'attachment', 'image/jpeg', 0),
(407, 1, '2026-01-26 11:42:15', '2026-01-26 11:42:15', '', 'CP NORDIC ApS item-5', '', 'inherit', 'open', 'closed', '', 'cp-nordic-aps-item-5', '', '', '2026-01-26 11:42:15', '2026-01-26 11:42:15', '', 10, 'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg', 0, 'attachment', 'image/jpeg', 0),
(408, 1, '2026-01-26 11:42:18', '2026-01-26 11:42:18', '', 'CP NORDIC ApS item-6', '', 'inherit', 'open', 'closed', '', 'cp-nordic-aps-item-6', '', '', '2026-01-26 11:42:18', '2026-01-26 11:42:18', '', 10, 'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg', 0, 'attachment', 'image/jpeg', 0),
(409, 1, '2026-01-26 11:42:22', '2026-01-26 11:42:22', '', 'CP NORDIC ApS item-7', '', 'inherit', 'open', 'closed', '', 'cp-nordic-aps-item-7', '', '', '2026-01-26 11:42:22', '2026-01-26 11:42:22', '', 10, 'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg', 0, 'attachment', 'image/jpeg', 0),
(410, 1, '2026-01-26 11:42:29', '2026-01-26 11:42:29', '', 'CP NORDIC ApS item-8', '', 'inherit', 'open', 'closed', '', 'cp-nordic-aps-item-8', '', '', '2026-01-26 11:42:29', '2026-01-26 11:42:29', '', 10, 'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg', 0, 'attachment', 'image/jpeg', 0),
(411, 1, '2026-01-26 11:42:34', '2026-01-26 11:42:34', '', 'CP NORDIC ApS item-9', '', 'inherit', 'open', 'closed', '', 'cp-nordic-aps-item-9', '', '', '2026-01-26 11:42:34', '2026-01-26 11:42:34', '', 10, 'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg', 0, 'attachment', 'image/jpeg', 0),
(412, 1, '2026-01-26 11:42:40', '2026-01-26 11:42:40', '', 'CP NORDIC ApS item-1', '', 'inherit', 'open', 'closed', '', 'cp-nordic-aps-item-1', '', '', '2026-01-26 11:42:40', '2026-01-26 11:42:40', '', 10, 'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg', 0, 'attachment', 'image/jpeg', 0),
(413, 1, '2026-01-26 11:42:44', '2026-01-26 11:42:44', '', 'CP NORDIC ApS item-2', '', 'inherit', 'open', 'closed', '', 'cp-nordic-aps-item-2', '', '', '2026-01-26 11:42:44', '2026-01-26 11:42:44', '', 10, 'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg', 0, 'attachment', 'image/jpeg', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(414, 1, '2026-01-26 11:43:58', '2026-01-26 11:43:58', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Vores ydelser omfatter blandt andet:</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							2-lags tagpapløsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Listedækning på skrå flader						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tagpap klar til sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Foliearbejde						\n					</h5>\n							<h2>Galleri</h2>							\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a5166a1\" data-elementor-lightbox-title=\"CP NORDIC ApS img-4\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjk1LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTQuanBnIiwic2xpZGVzaG93IjoiYTUxNjZhMSJ9\" href=\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-4.jpg\'><img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-4.jpg\" alt=\"\" decoding=\"async\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-4.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-4-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-4-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-4-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a5166a1\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYTUxNjZhMSJ9\" href=\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\'><img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" alt=\"\" decoding=\"async\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a5166a1\" data-elementor-lightbox-title=\"CP NORDIC ApS img-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTIuanBnIiwic2xpZGVzaG93IjoiYTUxNjZhMSJ9\" href=\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-2.jpg\'><img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-2.jpg\" alt=\"\" decoding=\"async\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-2.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-2-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-2-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-2-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a5166a1\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYTUxNjZhMSJ9\" href=\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\'><img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" decoding=\"async\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" /></a>\n			</figure>\n																	<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 11:43:58', '2026-01-26 11:43:58', '', 10, 'https://mrarif.me/cpnordic/?p=414', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(415, 1, '2026-01-26 11:43:59', '2026-01-26 11:43:59', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Vores ydelser omfatter blandt andet:</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							2-lags tagpapløsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Listedækning på skrå flader						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tagpap klar til sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Foliearbejde						\n					</h5>\n							<h2>Galleri</h2>							\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a5166a1\" data-elementor-lightbox-title=\"CP NORDIC ApS img-4\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjk1LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTQuanBnIiwic2xpZGVzaG93IjoiYTUxNjZhMSJ9\" href=\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-4.jpg\'><img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-4.jpg\" alt=\"\" decoding=\"async\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-4.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-4-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-4-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-4-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a5166a1\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYTUxNjZhMSJ9\" href=\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\'><img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" alt=\"\" decoding=\"async\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a5166a1\" data-elementor-lightbox-title=\"CP NORDIC ApS img-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTIuanBnIiwic2xpZGVzaG93IjoiYTUxNjZhMSJ9\" href=\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-2.jpg\'><img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-2.jpg\" alt=\"\" decoding=\"async\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-2.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-2-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-2-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-2-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a5166a1\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYTUxNjZhMSJ9\" href=\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\'><img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" decoding=\"async\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" /></a>\n			</figure>\n																	<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 11:43:59', '2026-01-26 11:43:59', '', 10, 'https://mrarif.me/cpnordic/?p=415', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(431, 1, '2026-01-26 11:49:16', '2026-01-26 11:49:16', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Vores ydelser omfatter blandt andet:</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							2-lags tagpapløsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Listedækning på skrå flader						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tagpap klar til sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Foliearbejde						\n					</h5>\n							<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>					\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 11:49:16', '2026-01-26 11:49:16', '', 10, 'https://mrarif.me/cpnordic/?p=431', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(416, 1, '2026-01-26 11:43:59', '2026-01-26 11:43:59', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Vores ydelser omfatter blandt andet:</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							2-lags tagpapløsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Listedækning på skrå flader						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tagpap klar til sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Foliearbejde						\n					</h5>\n							<h2>Galleri</h2>							\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a5166a1\" data-elementor-lightbox-title=\"CP NORDIC ApS item-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA1LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0zLmpwZyIsInNsaWRlc2hvdyI6ImE1MTY2YTEifQ%3D%3D\" href=\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-3.jpg\'><img width=\"1080\" height=\"1351\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-3.jpg\" alt=\"\" decoding=\"async\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-3.jpg 1080w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-3-240x300.jpg 240w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-3-819x1024.jpg 819w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-3-768x961.jpg 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a5166a1\" data-elementor-lightbox-title=\"CP NORDIC ApS item-4\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA2LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS00LmpwZyIsInNsaWRlc2hvdyI6ImE1MTY2YTEifQ%3D%3D\" href=\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-4.jpg\'><img width=\"1080\" height=\"1351\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-4.jpg\" alt=\"\" decoding=\"async\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-4.jpg 1080w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-4-240x300.jpg 240w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-4-819x1024.jpg 819w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-4-768x961.jpg 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a5166a1\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImE1MTY2YTEifQ%3D%3D\" href=\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\'><img width=\"1080\" height=\"1351\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" alt=\"\" decoding=\"async\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg 1080w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5-240x300.jpg 240w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5-819x1024.jpg 819w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5-768x961.jpg 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a5166a1\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImE1MTY2YTEifQ%3D%3D\" href=\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\'><img width=\"1080\" height=\"1351\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" alt=\"\" decoding=\"async\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg 1080w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6-240x300.jpg 240w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6-819x1024.jpg 819w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6-768x961.jpg 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a5166a1\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImE1MTY2YTEifQ%3D%3D\" href=\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\'><img width=\"1080\" height=\"1351\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" alt=\"\" decoding=\"async\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg 1080w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7-240x300.jpg 240w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7-819x1024.jpg 819w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7-768x961.jpg 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a5166a1\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImE1MTY2YTEifQ%3D%3D\" href=\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\'><img width=\"1536\" height=\"1920\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" alt=\"\" decoding=\"async\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8-240x300.jpg 240w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8-819x1024.jpg 819w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8-768x960.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8-1229x1536.jpg 1229w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a5166a1\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImE1MTY2YTEifQ%3D%3D\" href=\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\'><img width=\"1536\" height=\"1536\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" alt=\"\" decoding=\"async\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9-300x300.jpg 300w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9-1024x1024.jpg 1024w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9-150x150.jpg 150w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9-768x768.jpg 768w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a5166a1\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImE1MTY2YTEifQ%3D%3D\" href=\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\'><img width=\"1536\" height=\"1536\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" alt=\"\" decoding=\"async\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1-300x300.jpg 300w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1-1024x1024.jpg 1024w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1-150x150.jpg 150w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1-768x768.jpg 768w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a5166a1\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImE1MTY2YTEifQ%3D%3D\" href=\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\'><img width=\"1080\" height=\"1351\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" alt=\"\" decoding=\"async\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg 1080w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2-240x300.jpg 240w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2-819x1024.jpg 819w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2-768x961.jpg 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a5166a1\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYTUxNjZhMSJ9\" href=\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\'><img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" decoding=\"async\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a5166a1\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYTUxNjZhMSJ9\" href=\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\'><img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" alt=\"\" decoding=\"async\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" /></a>\n			</figure>\n																	<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 11:43:59', '2026-01-26 11:43:59', '', 10, 'https://mrarif.me/cpnordic/?p=416', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(417, 1, '2026-01-26 11:44:51', '2026-01-26 11:44:51', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Vores ydelser omfatter blandt andet:</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							2-lags tagpapløsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Listedækning på skrå flader						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tagpap klar til sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Foliearbejde						\n					</h5>\n							<h2>Galleri</h2>							\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a5166a1\" data-elementor-lightbox-title=\"CP NORDIC ApS item-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA1LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0zLmpwZyIsInNsaWRlc2hvdyI6ImE1MTY2YTEifQ%3D%3D\" href=\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-3.jpg\'><img width=\"1080\" height=\"1351\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-3.jpg\" alt=\"\" decoding=\"async\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-3.jpg 1080w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-3-240x300.jpg 240w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-3-819x1024.jpg 819w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-3-768x961.jpg 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a5166a1\" data-elementor-lightbox-title=\"CP NORDIC ApS item-4\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA2LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS00LmpwZyIsInNsaWRlc2hvdyI6ImE1MTY2YTEifQ%3D%3D\" href=\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-4.jpg\'><img width=\"1080\" height=\"1351\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-4.jpg\" alt=\"\" decoding=\"async\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-4.jpg 1080w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-4-240x300.jpg 240w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-4-819x1024.jpg 819w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-4-768x961.jpg 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a5166a1\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImE1MTY2YTEifQ%3D%3D\" href=\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\'><img width=\"1080\" height=\"1351\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" alt=\"\" decoding=\"async\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg 1080w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5-240x300.jpg 240w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5-819x1024.jpg 819w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5-768x961.jpg 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a5166a1\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImE1MTY2YTEifQ%3D%3D\" href=\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\'><img width=\"1080\" height=\"1351\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" alt=\"\" decoding=\"async\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg 1080w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6-240x300.jpg 240w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6-819x1024.jpg 819w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6-768x961.jpg 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a5166a1\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImE1MTY2YTEifQ%3D%3D\" href=\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\'><img width=\"1080\" height=\"1351\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" alt=\"\" decoding=\"async\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg 1080w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7-240x300.jpg 240w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7-819x1024.jpg 819w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7-768x961.jpg 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a5166a1\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImE1MTY2YTEifQ%3D%3D\" href=\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\'><img width=\"1536\" height=\"1920\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" alt=\"\" decoding=\"async\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8-240x300.jpg 240w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8-819x1024.jpg 819w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8-768x960.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8-1229x1536.jpg 1229w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a5166a1\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImE1MTY2YTEifQ%3D%3D\" href=\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\'><img width=\"1536\" height=\"1536\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" alt=\"\" decoding=\"async\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9-300x300.jpg 300w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9-1024x1024.jpg 1024w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9-150x150.jpg 150w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9-768x768.jpg 768w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a5166a1\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImE1MTY2YTEifQ%3D%3D\" href=\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\'><img width=\"1536\" height=\"1536\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" alt=\"\" decoding=\"async\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1-300x300.jpg 300w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1-1024x1024.jpg 1024w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1-150x150.jpg 150w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1-768x768.jpg 768w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a5166a1\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImE1MTY2YTEifQ%3D%3D\" href=\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\'><img width=\"1080\" height=\"1351\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" alt=\"\" decoding=\"async\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg 1080w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2-240x300.jpg 240w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2-819x1024.jpg 819w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2-768x961.jpg 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a5166a1\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYTUxNjZhMSJ9\" href=\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\'><img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" decoding=\"async\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a5166a1\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYTUxNjZhMSJ9\" href=\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\'><img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" alt=\"\" decoding=\"async\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" /></a>\n			</figure>\n																	<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 11:44:51', '2026-01-26 11:44:51', '', 10, 'https://mrarif.me/cpnordic/?p=417', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(418, 1, '2026-01-26 11:44:51', '2026-01-26 11:44:51', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Vores ydelser omfatter blandt andet:</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							2-lags tagpapløsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Listedækning på skrå flader						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tagpap klar til sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Foliearbejde						\n					</h5>\n							<h2>Galleri</h2>							\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a5166a1\" data-elementor-lightbox-title=\"CP NORDIC ApS item-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA1LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0zLmpwZyIsInNsaWRlc2hvdyI6ImE1MTY2YTEifQ%3D%3D\" href=\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-3.jpg\'><img width=\"1080\" height=\"1351\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-3.jpg\" alt=\"\" decoding=\"async\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-3.jpg 1080w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-3-240x300.jpg 240w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-3-819x1024.jpg 819w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-3-768x961.jpg 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a5166a1\" data-elementor-lightbox-title=\"CP NORDIC ApS item-4\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA2LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS00LmpwZyIsInNsaWRlc2hvdyI6ImE1MTY2YTEifQ%3D%3D\" href=\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-4.jpg\'><img width=\"1080\" height=\"1351\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-4.jpg\" alt=\"\" decoding=\"async\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-4.jpg 1080w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-4-240x300.jpg 240w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-4-819x1024.jpg 819w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-4-768x961.jpg 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a5166a1\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImE1MTY2YTEifQ%3D%3D\" href=\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\'><img width=\"1080\" height=\"1351\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" alt=\"\" decoding=\"async\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg 1080w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5-240x300.jpg 240w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5-819x1024.jpg 819w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5-768x961.jpg 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a5166a1\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImE1MTY2YTEifQ%3D%3D\" href=\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\'><img width=\"1080\" height=\"1351\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" alt=\"\" decoding=\"async\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg 1080w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6-240x300.jpg 240w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6-819x1024.jpg 819w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6-768x961.jpg 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a5166a1\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImE1MTY2YTEifQ%3D%3D\" href=\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\'><img width=\"1080\" height=\"1351\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" alt=\"\" decoding=\"async\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg 1080w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7-240x300.jpg 240w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7-819x1024.jpg 819w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7-768x961.jpg 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a5166a1\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImE1MTY2YTEifQ%3D%3D\" href=\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\'><img width=\"1536\" height=\"1920\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" alt=\"\" decoding=\"async\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8-240x300.jpg 240w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8-819x1024.jpg 819w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8-768x960.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8-1229x1536.jpg 1229w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a5166a1\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImE1MTY2YTEifQ%3D%3D\" href=\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\'><img width=\"1536\" height=\"1536\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" alt=\"\" decoding=\"async\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9-300x300.jpg 300w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9-1024x1024.jpg 1024w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9-150x150.jpg 150w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9-768x768.jpg 768w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a5166a1\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImE1MTY2YTEifQ%3D%3D\" href=\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\'><img width=\"1536\" height=\"1536\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" alt=\"\" decoding=\"async\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1-300x300.jpg 300w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1-1024x1024.jpg 1024w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1-150x150.jpg 150w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1-768x768.jpg 768w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a5166a1\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImE1MTY2YTEifQ%3D%3D\" href=\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\'><img width=\"1080\" height=\"1351\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" alt=\"\" decoding=\"async\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg 1080w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2-240x300.jpg 240w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2-819x1024.jpg 819w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2-768x961.jpg 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a5166a1\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYTUxNjZhMSJ9\" href=\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\'><img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" decoding=\"async\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a5166a1\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYTUxNjZhMSJ9\" href=\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\'><img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" alt=\"\" decoding=\"async\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" /></a>\n			</figure>\n																	<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 11:44:51', '2026-01-26 11:44:51', '', 10, 'https://mrarif.me/cpnordic/?p=418', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(422, 1, '2026-01-26 11:47:38', '2026-01-26 11:47:38', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Vores ydelser omfatter blandt andet:</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							2-lags tagpapløsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Listedækning på skrå flader						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tagpap klar til sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Foliearbejde						\n					</h5>\n							<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA1LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0zLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-4.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-4\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjk1LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTQuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTIuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>					\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 11:47:38', '2026-01-26 11:47:38', '', 10, 'https://mrarif.me/cpnordic/?p=422', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(419, 1, '2026-01-26 11:44:52', '2026-01-26 11:44:52', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Vores ydelser omfatter blandt andet:</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							2-lags tagpapløsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Listedækning på skrå flader						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tagpap klar til sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Foliearbejde						\n					</h5>\n							<h2>Galleri</h2>							\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a5166a1\" data-elementor-lightbox-title=\"CP NORDIC ApS item-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA1LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0zLmpwZyIsInNsaWRlc2hvdyI6ImE1MTY2YTEifQ%3D%3D\" href=\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-3.jpg\'><img width=\"1080\" height=\"1351\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-3.jpg\" alt=\"\" decoding=\"async\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-3.jpg 1080w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-3-240x300.jpg 240w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-3-819x1024.jpg 819w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-3-768x961.jpg 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a5166a1\" data-elementor-lightbox-title=\"CP NORDIC ApS item-4\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA2LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS00LmpwZyIsInNsaWRlc2hvdyI6ImE1MTY2YTEifQ%3D%3D\" href=\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-4.jpg\'><img width=\"1080\" height=\"1351\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-4.jpg\" alt=\"\" decoding=\"async\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-4.jpg 1080w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-4-240x300.jpg 240w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-4-819x1024.jpg 819w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-4-768x961.jpg 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a5166a1\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImE1MTY2YTEifQ%3D%3D\" href=\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\'><img width=\"1080\" height=\"1351\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" alt=\"\" decoding=\"async\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg 1080w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5-240x300.jpg 240w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5-819x1024.jpg 819w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5-768x961.jpg 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a5166a1\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImE1MTY2YTEifQ%3D%3D\" href=\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\'><img width=\"1080\" height=\"1351\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" alt=\"\" decoding=\"async\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg 1080w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6-240x300.jpg 240w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6-819x1024.jpg 819w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6-768x961.jpg 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a5166a1\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImE1MTY2YTEifQ%3D%3D\" href=\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\'><img width=\"1080\" height=\"1351\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" alt=\"\" decoding=\"async\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg 1080w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7-240x300.jpg 240w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7-819x1024.jpg 819w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7-768x961.jpg 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a5166a1\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImE1MTY2YTEifQ%3D%3D\" href=\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\'><img width=\"1536\" height=\"1920\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" alt=\"\" decoding=\"async\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8-240x300.jpg 240w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8-819x1024.jpg 819w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8-768x960.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8-1229x1536.jpg 1229w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a5166a1\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImE1MTY2YTEifQ%3D%3D\" href=\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\'><img width=\"1536\" height=\"1536\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" alt=\"\" decoding=\"async\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9-300x300.jpg 300w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9-1024x1024.jpg 1024w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9-150x150.jpg 150w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9-768x768.jpg 768w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a5166a1\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImE1MTY2YTEifQ%3D%3D\" href=\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\'><img width=\"1536\" height=\"1536\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" alt=\"\" decoding=\"async\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1-300x300.jpg 300w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1-1024x1024.jpg 1024w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1-150x150.jpg 150w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1-768x768.jpg 768w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a5166a1\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImE1MTY2YTEifQ%3D%3D\" href=\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\'><img width=\"1080\" height=\"1351\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" alt=\"\" decoding=\"async\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg 1080w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2-240x300.jpg 240w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2-819x1024.jpg 819w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2-768x961.jpg 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a5166a1\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYTUxNjZhMSJ9\" href=\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\'><img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" decoding=\"async\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a5166a1\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYTUxNjZhMSJ9\" href=\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\'><img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" alt=\"\" decoding=\"async\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" /></a>\n			</figure>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA1LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0zLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-4.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-4\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjk1LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTQuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTIuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 11:44:52', '2026-01-26 11:44:52', '', 10, 'https://mrarif.me/cpnordic/?p=419', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(420, 1, '2026-01-26 11:47:38', '2026-01-26 11:47:38', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Vores ydelser omfatter blandt andet:</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							2-lags tagpapløsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Listedækning på skrå flader						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tagpap klar til sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Foliearbejde						\n					</h5>\n							<h2>Galleri</h2>							\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a5166a1\" data-elementor-lightbox-title=\"CP NORDIC ApS item-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA1LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0zLmpwZyIsInNsaWRlc2hvdyI6ImE1MTY2YTEifQ%3D%3D\" href=\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-3.jpg\'><img width=\"1080\" height=\"1351\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-3.jpg\" alt=\"\" decoding=\"async\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-3.jpg 1080w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-3-240x300.jpg 240w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-3-819x1024.jpg 819w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-3-768x961.jpg 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a5166a1\" data-elementor-lightbox-title=\"CP NORDIC ApS item-4\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA2LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS00LmpwZyIsInNsaWRlc2hvdyI6ImE1MTY2YTEifQ%3D%3D\" href=\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-4.jpg\'><img width=\"1080\" height=\"1351\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-4.jpg\" alt=\"\" decoding=\"async\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-4.jpg 1080w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-4-240x300.jpg 240w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-4-819x1024.jpg 819w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-4-768x961.jpg 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a5166a1\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImE1MTY2YTEifQ%3D%3D\" href=\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\'><img width=\"1080\" height=\"1351\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" alt=\"\" decoding=\"async\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg 1080w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5-240x300.jpg 240w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5-819x1024.jpg 819w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5-768x961.jpg 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a5166a1\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImE1MTY2YTEifQ%3D%3D\" href=\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\'><img width=\"1080\" height=\"1351\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" alt=\"\" decoding=\"async\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg 1080w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6-240x300.jpg 240w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6-819x1024.jpg 819w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6-768x961.jpg 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a5166a1\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImE1MTY2YTEifQ%3D%3D\" href=\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\'><img width=\"1080\" height=\"1351\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" alt=\"\" decoding=\"async\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg 1080w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7-240x300.jpg 240w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7-819x1024.jpg 819w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7-768x961.jpg 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a5166a1\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImE1MTY2YTEifQ%3D%3D\" href=\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\'><img width=\"1536\" height=\"1920\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" alt=\"\" decoding=\"async\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8-240x300.jpg 240w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8-819x1024.jpg 819w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8-768x960.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8-1229x1536.jpg 1229w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a5166a1\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImE1MTY2YTEifQ%3D%3D\" href=\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\'><img width=\"1536\" height=\"1536\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" alt=\"\" decoding=\"async\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9-300x300.jpg 300w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9-1024x1024.jpg 1024w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9-150x150.jpg 150w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9-768x768.jpg 768w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a5166a1\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImE1MTY2YTEifQ%3D%3D\" href=\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\'><img width=\"1536\" height=\"1536\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" alt=\"\" decoding=\"async\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1-300x300.jpg 300w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1-1024x1024.jpg 1024w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1-150x150.jpg 150w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1-768x768.jpg 768w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a5166a1\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImE1MTY2YTEifQ%3D%3D\" href=\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\'><img width=\"1080\" height=\"1351\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" alt=\"\" decoding=\"async\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg 1080w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2-240x300.jpg 240w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2-819x1024.jpg 819w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2-768x961.jpg 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a5166a1\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYTUxNjZhMSJ9\" href=\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\'><img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" decoding=\"async\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a5166a1\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYTUxNjZhMSJ9\" href=\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\'><img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" alt=\"\" decoding=\"async\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" /></a>\n			</figure>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA1LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0zLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-4.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-4\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjk1LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTQuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTIuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 11:47:38', '2026-01-26 11:47:38', '', 10, 'https://mrarif.me/cpnordic/?p=420', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(421, 1, '2026-01-26 11:47:38', '2026-01-26 11:47:38', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n					<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Vores ydelser omfatter blandt andet:</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							2-lags tagpapløsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Listedækning på skrå flader						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tagpap klar til sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Foliearbejde						\n					</h5>\n							<h2>Galleri</h2>							\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a5166a1\" data-elementor-lightbox-title=\"CP NORDIC ApS item-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA1LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0zLmpwZyIsInNsaWRlc2hvdyI6ImE1MTY2YTEifQ%3D%3D\" href=\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-3.jpg\'><img width=\"1080\" height=\"1351\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-3.jpg\" alt=\"\" decoding=\"async\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-3.jpg 1080w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-3-240x300.jpg 240w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-3-819x1024.jpg 819w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-3-768x961.jpg 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a5166a1\" data-elementor-lightbox-title=\"CP NORDIC ApS item-4\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA2LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS00LmpwZyIsInNsaWRlc2hvdyI6ImE1MTY2YTEifQ%3D%3D\" href=\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-4.jpg\'><img width=\"1080\" height=\"1351\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-4.jpg\" alt=\"\" decoding=\"async\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-4.jpg 1080w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-4-240x300.jpg 240w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-4-819x1024.jpg 819w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-4-768x961.jpg 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a5166a1\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImE1MTY2YTEifQ%3D%3D\" href=\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\'><img width=\"1080\" height=\"1351\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" alt=\"\" decoding=\"async\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg 1080w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5-240x300.jpg 240w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5-819x1024.jpg 819w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5-768x961.jpg 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a5166a1\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImE1MTY2YTEifQ%3D%3D\" href=\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\'><img width=\"1080\" height=\"1351\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" alt=\"\" decoding=\"async\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg 1080w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6-240x300.jpg 240w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6-819x1024.jpg 819w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6-768x961.jpg 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a5166a1\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImE1MTY2YTEifQ%3D%3D\" href=\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\'><img width=\"1080\" height=\"1351\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" alt=\"\" decoding=\"async\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg 1080w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7-240x300.jpg 240w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7-819x1024.jpg 819w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7-768x961.jpg 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a5166a1\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImE1MTY2YTEifQ%3D%3D\" href=\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\'><img width=\"1536\" height=\"1920\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" alt=\"\" decoding=\"async\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8-240x300.jpg 240w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8-819x1024.jpg 819w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8-768x960.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8-1229x1536.jpg 1229w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a5166a1\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImE1MTY2YTEifQ%3D%3D\" href=\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\'><img width=\"1536\" height=\"1536\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" alt=\"\" decoding=\"async\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9-300x300.jpg 300w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9-1024x1024.jpg 1024w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9-150x150.jpg 150w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9-768x768.jpg 768w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a5166a1\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImE1MTY2YTEifQ%3D%3D\" href=\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\'><img width=\"1536\" height=\"1536\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" alt=\"\" decoding=\"async\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1-300x300.jpg 300w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1-1024x1024.jpg 1024w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1-150x150.jpg 150w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1-768x768.jpg 768w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a5166a1\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImE1MTY2YTEifQ%3D%3D\" href=\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\'><img width=\"1080\" height=\"1351\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" alt=\"\" decoding=\"async\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg 1080w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2-240x300.jpg 240w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2-819x1024.jpg 819w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2-768x961.jpg 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a5166a1\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYTUxNjZhMSJ9\" href=\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\'><img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" decoding=\"async\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"a5166a1\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYTUxNjZhMSJ9\" href=\'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\'><img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" alt=\"\" decoding=\"async\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" /></a>\n			</figure>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA1LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0zLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-4.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-4\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjk1LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTQuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTIuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>		\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 11:47:38', '2026-01-26 11:47:38', '', 10, 'https://mrarif.me/cpnordic/?p=421', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(423, 1, '2026-01-26 11:47:55', '2026-01-26 11:47:55', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Vores ydelser omfatter blandt andet:</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							2-lags tagpapløsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Listedækning på skrå flader						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tagpap klar til sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Foliearbejde						\n					</h5>\n							<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA1LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0zLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-4.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-4\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjk1LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTQuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTIuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>					\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 11:47:55', '2026-01-26 11:47:55', '', 10, 'https://mrarif.me/cpnordic/?p=423', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(424, 1, '2026-01-26 11:47:55', '2026-01-26 11:47:55', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Vores ydelser omfatter blandt andet:</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							2-lags tagpapløsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Listedækning på skrå flader						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tagpap klar til sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Foliearbejde						\n					</h5>\n							<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA1LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0zLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-4.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-4\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjk1LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTQuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTIuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>					\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 11:47:55', '2026-01-26 11:47:55', '', 10, 'https://mrarif.me/cpnordic/?p=424', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(425, 1, '2026-01-26 11:47:56', '2026-01-26 11:47:56', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Vores ydelser omfatter blandt andet:</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							2-lags tagpapløsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Listedækning på skrå flader						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tagpap klar til sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Foliearbejde						\n					</h5>\n							<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA1LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0zLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-4.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-4\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjk1LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTQuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTIuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>					\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 11:47:56', '2026-01-26 11:47:56', '', 10, 'https://mrarif.me/cpnordic/?p=425', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(426, 1, '2026-01-26 11:48:22', '2026-01-26 11:48:22', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Vores ydelser omfatter blandt andet:</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							2-lags tagpapløsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Listedækning på skrå flader						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tagpap klar til sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Foliearbejde						\n					</h5>\n							<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA1LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0zLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-4.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-4\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjk1LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTQuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTIuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>					\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 11:48:22', '2026-01-26 11:48:22', '', 10, 'https://mrarif.me/cpnordic/?p=426', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(427, 1, '2026-01-26 11:48:22', '2026-01-26 11:48:22', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Vores ydelser omfatter blandt andet:</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							2-lags tagpapløsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Listedækning på skrå flader						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tagpap klar til sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Foliearbejde						\n					</h5>\n							<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA1LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0zLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-4.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-4\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjk1LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTQuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTIuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>					\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 11:48:22', '2026-01-26 11:48:22', '', 10, 'https://mrarif.me/cpnordic/?p=427', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(428, 1, '2026-01-26 11:48:22', '2026-01-26 11:48:22', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Vores ydelser omfatter blandt andet:</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							2-lags tagpapløsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Listedækning på skrå flader						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tagpap klar til sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Foliearbejde						\n					</h5>\n							<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA1LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0zLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-4.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-4\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjk1LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTQuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTIuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>					\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 11:48:22', '2026-01-26 11:48:22', '', 10, 'https://mrarif.me/cpnordic/?p=428', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(429, 1, '2026-01-26 11:49:16', '2026-01-26 11:49:16', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Vores ydelser omfatter blandt andet:</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							2-lags tagpapløsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Listedækning på skrå flader						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tagpap klar til sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Foliearbejde						\n					</h5>\n							<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA1LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0zLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-4.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-4\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjk1LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTQuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTIuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>					\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 11:49:16', '2026-01-26 11:49:16', '', 10, 'https://mrarif.me/cpnordic/?p=429', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(430, 1, '2026-01-26 11:49:16', '2026-01-26 11:49:16', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Vores ydelser omfatter blandt andet:</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							2-lags tagpapløsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Listedækning på skrå flader						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tagpap klar til sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Foliearbejde						\n					</h5>\n							<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA1LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0zLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-4.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-4\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjk1LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTQuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjcwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTIuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>					\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 11:49:16', '2026-01-26 11:49:16', '', 10, 'https://mrarif.me/cpnordic/?p=430', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(432, 1, '2026-01-26 11:49:37', '2026-01-26 11:49:37', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Vores ydelser omfatter blandt andet:</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							2-lags tagpapløsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Listedækning på skrå flader						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tagpap klar til sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Foliearbejde						\n					</h5>\n							<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>					\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 11:49:37', '2026-01-26 11:49:37', '', 10, 'https://mrarif.me/cpnordic/?p=432', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(433, 1, '2026-01-26 11:49:38', '2026-01-26 11:49:38', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Vores ydelser omfatter blandt andet:</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							2-lags tagpapløsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Listedækning på skrå flader						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tagpap klar til sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Foliearbejde						\n					</h5>\n							<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>					\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 11:49:38', '2026-01-26 11:49:38', '', 10, 'https://mrarif.me/cpnordic/?p=433', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(434, 1, '2026-01-26 11:49:38', '2026-01-26 11:49:38', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Vores ydelser omfatter blandt andet:</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							2-lags tagpapløsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Listedækning på skrå flader						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tagpap klar til sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Foliearbejde						\n					</h5>\n							<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>					\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 11:49:38', '2026-01-26 11:49:38', '', 10, 'https://mrarif.me/cpnordic/?p=434', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(435, 1, '2026-01-26 12:04:47', '2026-01-26 12:04:47', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Vores ydelser omfatter blandt andet:</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							2-lags tagpapløsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Listedækning på skrå flader						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tagpap klar til sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Foliearbejde						\n					</h5>\n							<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>					\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 12:04:47', '2026-01-26 12:04:47', '', 10, 'https://mrarif.me/cpnordic/?p=435', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(436, 1, '2026-01-26 12:04:48', '2026-01-26 12:04:48', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Vores ydelser omfatter blandt andet:</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							2-lags tagpapløsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Listedækning på skrå flader						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tagpap klar til sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Foliearbejde						\n					</h5>\n							<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>					\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 12:04:48', '2026-01-26 12:04:48', '', 10, 'https://mrarif.me/cpnordic/?p=436', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(437, 1, '2026-01-26 12:04:48', '2026-01-26 12:04:48', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Vores ydelser omfatter blandt andet:</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							2-lags tagpapløsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Listedækning på skrå flader						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tagpap klar til sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Foliearbejde						\n					</h5>\n							<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>					\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 12:04:48', '2026-01-26 12:04:48', '', 10, 'https://mrarif.me/cpnordic/?p=437', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(438, 1, '2026-01-26 12:09:36', '2026-01-26 12:09:36', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Vores ydelser omfatter blandt andet:</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							2-lags tagpapløsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Listedækning på skrå flader						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tagpap klar til sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Foliearbejde						\n					</h5>\n							<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>					\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 12:09:36', '2026-01-26 12:09:36', '', 10, 'https://mrarif.me/cpnordic/?p=438', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(439, 1, '2026-01-26 12:09:37', '2026-01-26 12:09:37', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Vores ydelser omfatter blandt andet:</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							2-lags tagpapløsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Listedækning på skrå flader						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tagpap klar til sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Foliearbejde						\n					</h5>\n							<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>					\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 12:09:37', '2026-01-26 12:09:37', '', 10, 'https://mrarif.me/cpnordic/?p=439', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(440, 1, '2026-01-26 12:09:37', '2026-01-26 12:09:37', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Vores ydelser omfatter blandt andet:</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							2-lags tagpapløsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Listedækning på skrå flader						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tagpap klar til sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Foliearbejde						\n					</h5>\n							<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>					\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							<h2>ANMELDELSER</h2>					</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 12:09:37', '2026-01-26 12:09:37', '', 10, 'https://mrarif.me/cpnordic/?p=440', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(441, 1, '2026-01-26 12:14:16', '2026-01-26 12:14:16', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Vores ydelser omfatter blandt andet:</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							2-lags tagpapløsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Listedækning på skrå flader						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tagpap klar til sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Foliearbejde						\n					</h5>\n							<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>					\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							<h2>ANMELDELSER</h2>					</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 12:14:16', '2026-01-26 12:14:16', '', 10, 'https://mrarif.me/cpnordic/?p=441', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(442, 1, '2026-01-26 12:14:17', '2026-01-26 12:14:17', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Vores ydelser omfatter blandt andet:</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							2-lags tagpapløsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Listedækning på skrå flader						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tagpap klar til sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Foliearbejde						\n					</h5>\n							<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>					\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							<h2>ANMELDELSER</h2>					</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 12:14:17', '2026-01-26 12:14:17', '', 10, 'https://mrarif.me/cpnordic/?p=442', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(443, 1, '2026-01-26 12:14:17', '2026-01-26 12:14:17', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Vores ydelser omfatter blandt andet:</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							2-lags tagpapløsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Listedækning på skrå flader						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tagpap klar til sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Foliearbejde						\n					</h5>\n							<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>					\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							<h2>ANMELDELSER</h2>					</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 12:14:17', '2026-01-26 12:14:17', '', 10, 'https://mrarif.me/cpnordic/?p=443', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(444, 1, '2026-01-26 12:17:46', '2026-01-26 12:17:46', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Vores ydelser omfatter blandt andet:</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							2-lags tagpapløsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Listedækning på skrå flader						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tagpap klar til sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Foliearbejde						\n					</h5>\n							<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>					\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							<h2>ANMELDELSER</h2>					</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 12:17:46', '2026-01-26 12:17:46', '', 10, 'https://mrarif.me/cpnordic/?p=444', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(445, 1, '2026-01-26 12:17:46', '2026-01-26 12:17:46', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Vores ydelser omfatter blandt andet:</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							2-lags tagpapløsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Listedækning på skrå flader						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tagpap klar til sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Foliearbejde						\n					</h5>\n							<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>					\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							<h2>ANMELDELSER</h2>					</script>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 12:17:46', '2026-01-26 12:17:46', '', 10, 'https://mrarif.me/cpnordic/?p=445', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(446, 1, '2026-01-26 12:17:47', '2026-01-26 12:17:47', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Vores ydelser omfatter blandt andet:</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							2-lags tagpapløsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Listedækning på skrå flader						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tagpap klar til sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Foliearbejde						\n					</h5>\n							<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>					\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Click here\n					</a>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 12:17:47', '2026-01-26 12:17:47', '', 10, 'https://mrarif.me/cpnordic/?p=446', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(447, 1, '2026-01-26 12:18:02', '2026-01-26 12:18:02', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Vores ydelser omfatter blandt andet:</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							2-lags tagpapløsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Listedækning på skrå flader						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tagpap klar til sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Foliearbejde						\n					</h5>\n							<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>					\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Click here\n					</a>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 12:18:02', '2026-01-26 12:18:02', '', 10, 'https://mrarif.me/cpnordic/?p=447', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(448, 1, '2026-01-26 12:18:02', '2026-01-26 12:18:02', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Vores ydelser omfatter blandt andet:</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							2-lags tagpapløsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Listedækning på skrå flader						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tagpap klar til sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Foliearbejde						\n					</h5>\n							<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>					\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Click here\n					</a>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 12:18:02', '2026-01-26 12:18:02', '', 10, 'https://mrarif.me/cpnordic/?p=448', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(449, 1, '2026-01-26 12:18:03', '2026-01-26 12:18:03', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Vores ydelser omfatter blandt andet:</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							2-lags tagpapløsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Listedækning på skrå flader						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tagpap klar til sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Foliearbejde						\n					</h5>\n							<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>					\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle\n					</a>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 12:18:03', '2026-01-26 12:18:03', '', 10, 'https://mrarif.me/cpnordic/?p=449', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(450, 1, '2026-01-26 12:18:34', '2026-01-26 12:18:34', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Vores ydelser omfatter blandt andet:</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							2-lags tagpapløsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Listedækning på skrå flader						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tagpap klar til sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Foliearbejde						\n					</h5>\n							<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>					\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle\n					</a>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 12:18:34', '2026-01-26 12:18:34', '', 10, 'https://mrarif.me/cpnordic/?p=450', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(451, 1, '2026-01-26 12:18:34', '2026-01-26 12:18:34', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Vores ydelser omfatter blandt andet:</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							2-lags tagpapløsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Listedækning på skrå flader						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tagpap klar til sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Foliearbejde						\n					</h5>\n							<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>					\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle\n					</a>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 12:18:34', '2026-01-26 12:18:34', '', 10, 'https://mrarif.me/cpnordic/?p=451', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(452, 1, '2026-01-26 12:18:35', '2026-01-26 12:18:35', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Vores ydelser omfatter blandt andet:</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							2-lags tagpapløsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Listedækning på skrå flader						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tagpap klar til sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Foliearbejde						\n					</h5>\n							<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>					\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle ANMELDELSER\n					</a>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 12:18:35', '2026-01-26 12:18:35', '', 10, 'https://mrarif.me/cpnordic/?p=452', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(453, 1, '2026-01-26 12:19:09', '2026-01-26 12:19:09', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Vores ydelser omfatter blandt andet:</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							2-lags tagpapløsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Listedækning på skrå flader						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tagpap klar til sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Foliearbejde						\n					</h5>\n							<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>					\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle ANMELDELSER\n					</a>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 12:19:09', '2026-01-26 12:19:09', '', 10, 'https://mrarif.me/cpnordic/?p=453', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(454, 1, '2026-01-26 12:19:09', '2026-01-26 12:19:09', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Vores ydelser omfatter blandt andet:</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							2-lags tagpapløsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Listedækning på skrå flader						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tagpap klar til sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Foliearbejde						\n					</h5>\n							<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>					\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle ANMELDELSER\n					</a>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 12:19:09', '2026-01-26 12:19:09', '', 10, 'https://mrarif.me/cpnordic/?p=454', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(455, 1, '2026-01-26 12:19:09', '2026-01-26 12:19:09', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Vores ydelser omfatter blandt andet:</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							2-lags tagpapløsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Listedækning på skrå flader						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tagpap klar til sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Foliearbejde						\n					</h5>\n							<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>					\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle ANMELDELSER\n					</a>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 12:19:09', '2026-01-26 12:19:09', '', 10, 'https://mrarif.me/cpnordic/?p=455', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(456, 1, '2026-01-26 12:23:45', '2026-01-26 12:23:45', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Vores ydelser omfatter blandt andet:</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							2-lags tagpapløsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Listedækning på skrå flader						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tagpap klar til sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Foliearbejde						\n					</h5>\n							<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>					\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle ANMELDELSER\n					</a>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 12:23:45', '2026-01-26 12:23:45', '', 10, 'https://mrarif.me/cpnordic/?p=456', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(457, 1, '2026-01-26 12:23:45', '2026-01-26 12:23:45', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Vores ydelser omfatter blandt andet:</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							2-lags tagpapløsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Listedækning på skrå flader						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tagpap klar til sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Foliearbejde						\n					</h5>\n							<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>					\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle ANMELDELSER\n					</a>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 12:23:45', '2026-01-26 12:23:45', '', 10, 'https://mrarif.me/cpnordic/?p=457', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(458, 1, '2026-01-26 12:23:45', '2026-01-26 12:23:45', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Vores ydelser omfatter blandt andet:</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							2-lags tagpapløsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Listedækning på skrå flader						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tagpap klar til sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Foliearbejde						\n					</h5>\n							<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>					\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle ANMELDELSER\n					</a>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 12:23:45', '2026-01-26 12:23:45', '', 10, 'https://mrarif.me/cpnordic/?p=458', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(462, 1, '2026-01-26 12:29:15', '2026-01-26 12:29:15', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>					\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle ANMELDELSER\n					</a>\n					<h2>HVORFOR VÆLGE CP NORDIC ApS?</h2>		<p>Når du vælger CP NORDIC ApS, får du:</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h6>\n							et ungt og engageret team						\n					</h6>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h6>\n							fokus på kvalitet og detaljer						\n					</h6>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h6>\n							ærlig rådgivning						\n					</h6>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h6>\n							gennemtænkte løsninger						\n					</h6>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h6>\n							arbejde udført med ansvar						\n					</h6>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 12:29:15', '2026-01-26 12:29:15', '', 10, 'https://mrarif.me/cpnordic/?p=462', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(460, 1, '2026-01-26 12:29:14', '2026-01-26 12:29:14', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Vores ydelser omfatter blandt andet:</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							2-lags tagpapløsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Listedækning på skrå flader						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tagpap klar til sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Foliearbejde						\n					</h5>\n							<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>					\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle ANMELDELSER\n					</a>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 12:29:14', '2026-01-26 12:29:14', '', 10, 'https://mrarif.me/cpnordic/?p=460', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(461, 1, '2026-01-26 12:29:15', '2026-01-26 12:29:15', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Vores ydelser omfatter blandt andet:</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							2-lags tagpapløsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Listedækning på skrå flader						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tagpap klar til sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Foliearbejde						\n					</h5>\n							<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>					\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle ANMELDELSER\n					</a>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 12:29:15', '2026-01-26 12:29:15', '', 10, 'https://mrarif.me/cpnordic/?p=461', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(463, 1, '2026-01-26 12:34:07', '2026-01-26 12:34:07', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>					\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle ANMELDELSER\n					</a>\n					<h2>HVORFOR VÆLGE CP NORDIC ApS?</h2>		<p>Når du vælger CP NORDIC ApS, får du:</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h6>\n							et ungt og engageret team						\n					</h6>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h6>\n							fokus på kvalitet og detaljer						\n					</h6>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h6>\n							ærlig rådgivning						\n					</h6>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h6>\n							gennemtænkte løsninger						\n					</h6>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h6>\n							arbejde udført med ansvar						\n					</h6>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 12:34:07', '2026-01-26 12:34:07', '', 10, 'https://mrarif.me/cpnordic/?p=463', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(464, 1, '2026-01-26 12:34:07', '2026-01-26 12:34:07', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>					\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle ANMELDELSER\n					</a>\n					<h2>HVORFOR VÆLGE CP NORDIC ApS?</h2>		<p>Når du vælger CP NORDIC ApS, får du:</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h6>\n							et ungt og engageret team						\n					</h6>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h6>\n							fokus på kvalitet og detaljer						\n					</h6>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h6>\n							ærlig rådgivning						\n					</h6>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h6>\n							gennemtænkte løsninger						\n					</h6>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h6>\n							arbejde udført med ansvar						\n					</h6>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 12:34:07', '2026-01-26 12:34:07', '', 10, 'https://mrarif.me/cpnordic/?p=464', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(465, 1, '2026-01-26 12:34:07', '2026-01-26 12:34:07', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>					\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle ANMELDELSER\n					</a>\n					<h2>HVORFOR VÆLGE CP NORDIC ApS?</h2>		<p>Når du vælger CP NORDIC ApS, får du:</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							et ungt og engageret team						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							fokus på kvalitet og detaljer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							ærlig rådgivning						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							gennemtænkte løsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							arbejde udført med ansvar						\n					</h5>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 12:34:07', '2026-01-26 12:34:07', '', 10, 'https://mrarif.me/cpnordic/?p=465', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(466, 1, '2026-01-26 12:37:28', '2026-01-26 12:37:28', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>					\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle ANMELDELSER\n					</a>\n					<h2>HVORFOR VÆLGE CP NORDIC ApS?</h2>		<p>Når du vælger CP NORDIC ApS, får du:</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							et ungt og engageret team						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							fokus på kvalitet og detaljer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							ærlig rådgivning						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							gennemtænkte løsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							arbejde udført med ansvar						\n					</h5>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 12:37:28', '2026-01-26 12:37:28', '', 10, 'https://mrarif.me/cpnordic/?p=466', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(467, 1, '2026-01-26 12:37:28', '2026-01-26 12:37:28', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>					\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle ANMELDELSER\n					</a>\n					<h2>HVORFOR VÆLGE CP NORDIC ApS?</h2>		<p>Når du vælger CP NORDIC ApS, får du:</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							et ungt og engageret team						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							fokus på kvalitet og detaljer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							ærlig rådgivning						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							gennemtænkte løsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							arbejde udført med ansvar						\n					</h5>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 12:37:28', '2026-01-26 12:37:28', '', 10, 'https://mrarif.me/cpnordic/?p=467', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(468, 1, '2026-01-26 12:37:28', '2026-01-26 12:37:28', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>					\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle ANMELDELSER\n					</a>\n					<h2>HVORFOR VÆLGE CP NORDIC ApS?</h2>		<p>Når du vælger CP NORDIC ApS, får du:</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							et ungt og engageret team						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							fokus på kvalitet og detaljer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							ærlig rådgivning						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							gennemtænkte løsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							arbejde udført med ansvar						\n					</h5>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 12:37:28', '2026-01-26 12:37:28', '', 10, 'https://mrarif.me/cpnordic/?p=468', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(469, 1, '2026-01-26 12:37:50', '2026-01-26 12:37:50', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>					\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle ANMELDELSER\n					</a>\n					<h2>HVORFOR VÆLGE CP NORDIC ApS?</h2>		<p>Når du vælger CP NORDIC ApS, får du:</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							et ungt og engageret team						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							fokus på kvalitet og detaljer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							ærlig rådgivning						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							gennemtænkte løsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							arbejde udført med ansvar						\n					</h5>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 12:37:50', '2026-01-26 12:37:50', '', 10, 'https://mrarif.me/cpnordic/?p=469', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(470, 1, '2026-01-26 12:37:50', '2026-01-26 12:37:50', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>					\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle ANMELDELSER\n					</a>\n					<h2>HVORFOR VÆLGE CP NORDIC ApS?</h2>		<p>Når du vælger CP NORDIC ApS, får du:</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							et ungt og engageret team						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							fokus på kvalitet og detaljer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							ærlig rådgivning						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							gennemtænkte løsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							arbejde udført med ansvar						\n					</h5>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 12:37:50', '2026-01-26 12:37:50', '', 10, 'https://mrarif.me/cpnordic/?p=470', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(471, 1, '2026-01-26 12:37:51', '2026-01-26 12:37:51', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>					\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle ANMELDELSER\n					</a>\n					<h2>HVORFOR VÆLGE CP NORDIC ApS?</h2>		<p>Når du vælger CP NORDIC ApS, får du:</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							et ungt og engageret team						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							fokus på kvalitet og detaljer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							ærlig<br> rådgivning						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							gennemtænkte løsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							arbejde udført med ansvar						\n					</h5>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 12:37:51', '2026-01-26 12:37:51', '', 10, 'https://mrarif.me/cpnordic/?p=471', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(472, 1, '2026-01-26 12:40:30', '2026-01-26 12:40:30', '', 'teamwork_4546121', '', 'inherit', 'open', 'closed', '', 'teamwork_4546121', '', '', '2026-01-26 12:40:30', '2026-01-26 12:40:30', '', 10, 'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/teamwork_4546121.svg', 0, 'attachment', 'image/svg+xml', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(484, 1, '2026-01-26 12:46:50', '2026-01-26 12:46:50', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>					\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle ANMELDELSER\n					</a>\n					<h2>HVORFOR VÆLGE CP NORDIC ApS?</h2>		<p>Når du vælger CP NORDIC ApS, får du:</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 450 450\" width=\"512\"><g><g><path d=\"m225 165.2c-25.9 0-48.9-18.8-53.3-45.2-2.4-14.2.9-28.6 9.3-40.3 8.4-11.8 20.9-19.5 35.1-21.9 29.4-4.9 57.3 15 62.2 44.5 4.9 29.4-15 57.3-44.4 62.2-3 .5-6 .7-8.9.7zm-7.6-99.8c-12.2 2-22.9 8.7-30.1 18.8s-10.1 22.4-8 34.6c3.8 22.7 23.5 38.8 45.7 38.8 2.5 0 5.1-.2 7.6-.6 25.2-4.2 42.3-28.1 38.1-53.4s-28.1-42.4-53.3-38.2z\"></path><path d=\"m255.2 115c-2.1 0-3.8-1.7-3.8-3.8 0-14.6-11.8-26.4-26.4-26.4-2.1 0-3.8-1.7-3.8-3.8s1.7-3.8 3.8-3.8c18.8 0 34.1 15.3 34.1 34.1 0 2-1.8 3.7-3.9 3.7z\"></path><path d=\"m236.1 203h-22.2c-2.1 0-3.8-1.7-3.8-3.8v-14.1c-3.1-.6-6.1-1.4-9.1-2.4l-7 12.2c-1.1 1.8-3.4 2.5-5.3 1.4l-19.2-11.1c-.9-.5-1.5-1.4-1.8-2.3-.3-1-.1-2 .4-2.9l7-12.1c-2.4-2.1-4.6-4.3-6.7-6.6l-12.1 7c-1.8 1.1-4.2.4-5.2-1.4l-11.1-19.2c-1.1-1.8-.4-4.2 1.4-5.2l11.9-6.8c-1-3-1.9-6.1-2.6-9.3h-13.7c-2.1 0-3.8-1.7-3.8-3.8v-22.2c0-2.1 1.7-3.8 3.8-3.8h13.4c.6-3.2 1.4-6.4 2.4-9.5l-11.5-6.6c-1.8-1.1-2.5-3.4-1.4-5.3l11.1-19.6c.5-.9 1.4-1.5 2.3-1.8s2-.1 2.9.4l11.3 6.6c2.2-2.5 4.5-4.8 7-7l-6.5-11.3c-.5-.9-.6-1.9-.4-2.9.3-1 .9-1.8 1.8-2.3l19.2-11.1c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l6.4 11.2c3.1-1.1 6.4-1.9 9.7-2.6v-13c0-2.1 1.7-3.8 3.8-3.8h22.2c2.1 0 3.8 1.7 3.8 3.8v12.8c3.3.7 6.5 1.5 9.7 2.6l6.5-11.2c.5-.9 1.4-1.5 2.3-1.8 1-.3 2-.1 2.9.4l19.2 11.1c.9.5 1.5 1.3 1.8 2.3s.1 2-.4 2.9l-6.5 11.3c2.5 2.2 4.8 4.5 7 7.1l11.3-6.6c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l11.1 19.2c1.1 1.8.4 4.2-1.4 5.3l-11.5 6.6c1 3.1 1.8 6.3 2.5 9.5h13.6c2.1 0 3.8 1.7 3.8 3.8v22.2c0 2.1-1.7 3.8-3.8 3.8h-13.6c-.6 3.1-1.5 6.2-2.5 9.3l11.9 6.8c1.8 1.1 2.5 3.4 1.4 5.2l-11.2 19.5c-1.1 1.8-3.4 2.5-5.2 1.4l-12-7c-2.1 2.4-4.4 4.6-6.7 6.6l7 12.1c.5.9.6 1.9.4 2.9s-.9 1.8-1.8 2.3l-19.2 11.1c-1.8 1.1-4.2.4-5.2-1.4l-7-12.2c-3 1-6 1.8-9.1 2.4v14.1c-.2 2.3-2 4-4.1 4zm-18.4-7.7h14.5v-13.5c0-1.9 1.4-3.5 3.3-3.8 4.7-.7 9.4-2 13.8-3.7 1.8-.7 3.8 0 4.7 1.7l6.7 11.6 12.6-7.3-6.7-11.6c-1-1.6-.5-3.7.9-4.9 3.7-3 7.2-6.4 10.2-10.1 1.2-1.5 3.3-1.8 4.9-.9l11.5 6.6 7.3-12.6-11.3-6.5c-1.6-.9-2.4-3-1.6-4.7 1.8-4.5 3.1-9.2 3.9-14 .3-1.9 1.9-3.2 3.8-3.2h13v-14.6h-12.8c-1.9 0-3.5-1.4-3.8-3.3-.7-4.8-2-9.6-3.7-14.2-.7-1.8 0-3.7 1.7-4.7l10.9-6.3-7.3-12.6-10.8 6.3c-1.6.9-3.7.6-4.9-.9-3.1-3.9-6.6-7.4-10.4-10.6-1.5-1.2-1.9-3.3-.9-4.9l6.2-10.7-12.6-7.3-6.1 10.6c-1 1.6-3 2.3-4.7 1.7-4.6-1.8-9.5-3.1-14.4-3.9-1.9-.3-3.3-1.9-3.3-3.8v-12.2h-14.5v12.3c0 1.9-1.4 3.5-3.3 3.8-5 .8-9.8 2.1-14.4 3.9-1.8.7-3.8 0-4.7-1.7l-6.1-10.6-12.6 7.3 6.2 10.7c.9 1.6.6 3.7-.9 4.9-3.9 3.1-7.4 6.7-10.4 10.6-1.2 1.5-3.3 1.9-4.9.9l-10.8-6.3-7.3 12.6 10.9 6.3c1.6.9 2.3 2.9 1.7 4.7-1.7 4.6-3 9.4-3.7 14.2-.3 1.9-1.9 3.3-3.8 3.3h-12.8v14.5h13c1.9 0 3.5 1.4 3.8 3.2.8 4.8 2.1 9.5 3.9 14 .7 1.8 0 3.8-1.6 4.7l-11.3 6.5 7.3 12.6 11.5-6.6c1.6-.9 3.7-.6 4.9.9 3 3.7 6.5 7.1 10.3 10.1 1.5 1.2 1.9 3.3.9 4.9l-6.7 11.6 12.6 7.3 6.7-11.6c.9-1.6 2.9-2.3 4.7-1.7 4.5 1.7 9.1 2.9 13.8 3.7 1.9.3 3.3 1.9 3.3 3.8z\"></path></g><g><g><g><path d=\"m45.3 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m153.9 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path></g><g><path d=\"m189.3 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.2c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c0 2.1-1.7 3.8-3.8 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m73.3 326.4c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m126 326.4c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m99.7 325.6c-.6 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4s4.1 1.1 4.4 3.2c2.4 16.5 12.3 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m50.2 266.6c-.1 0-.2 0-.3 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.7 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-8.9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.5 2.2zm81.8-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13.1-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.4-.7 2.3-.7z\"></path></g></g></g><g><g><path d=\"m296.1 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m404.7 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path></g><g><path d=\"m440 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.1c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c.2 2.1-1.6 3.8-3.7 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m324 326.3c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m376.7 326.3c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m350.4 325.6c-.5 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4 2.1-.3 4 1.1 4.4 3.2 2.4 16.5 12.4 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m301 266.6c-.1 0-.2 0-.4 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.6 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.4 2.2zm81.7-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.5-.7 2.3-.7z\"></path></g></g></g></g></g></svg>				\n									<h5>\n							et ungt og engageret team						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"496pt\" viewBox=\"0 0 496 496\" width=\"496pt\"><path d=\"m440 328h-28.207031c5.078125-6.703125 8.207031-14.960938 8.207031-24 0-8.824219-7.175781-16-16-16h-12v-19.960938c59.574219-14.445312 104-68.085937 104-132.039062 0-74.992188-61.007812-136-136-136s-136 61.007812-136 136c0 63.953125 44.425781 117.59375 104 132.039062v19.960938h-8.449219c-6.167969 0-12.359375 1.464844-17.886719 4.214844l-50.480468 25.25c-3.320313 1.664062-7.03125 2.535156-10.734375 2.535156h-40.449219v-16h-104v16h56v56h16v-56h16v128h-16v-56h-16v56h-56v16h104v-16h40.449219c3.703125 0 7.414062.871094 10.734375 2.527344l34.488281 17.25c5.519531 2.757812 11.710937 4.222656 17.878906 4.222656h24.449219v24h64v-24h48c13.230469 0 24-10.769531 24-24 0-6.167969-2.40625-11.742188-6.238281-16 3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16 0-13.230469-10.769531-24-24-24zm8 24c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm-208-280c0-66.167969 53.832031-120 120-120s120 53.832031 120 120-53.832031 120-120 120-120-53.832031-120-120zm104 134.976562c5.257812.617188 10.574219 1.023438 16 1.023438s10.742188-.40625 16-1.023438v17.023438h-32zm-40.449219 185.023438c-3.703125 0-7.414062-.871094-10.734375-2.527344l-34.488281-17.25c-5.519531-2.757812-11.710937-4.222656-17.878906-4.222656h-40.449219v-96h40.449219c6.167969 0 12.359375-1.464844 17.886719-4.214844l50.480468-25.25c3.320313-1.664062 7.03125-2.535156 10.734375-2.535156h84.449219c0 13.230469-10.769531 24-24 24h-48.28125l-23.863281 35.808594c-6.101563 9.160156-14.527344 16.589844-24.367188 21.503906-8.753906 4.375-18.542969 6.6875-28.320312 6.6875h-15.167969v16h15.167969c12.246093 0 24.519531-2.894531 35.472656-8.375 12.328125-6.160156 22.878906-15.480469 30.527344-26.945312l6.832031-10.253907v93.574219zm40.449219 24v-136h17.472656c-.898437 2.511719-1.472656 5.183594-1.472656 8 0 6.167969 2.40625 11.742188 6.238281 16-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16 0 10.414062 6.710938 19.214844 16 22.527344v9.472656zm96-24h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8s-3.59375 8-8 8zm0 0\"></path><path d=\"m394.878906 73.007812-7.757812 13.984376c17.816406 9.878906 28.878906 28.664062 28.878906 49.007812h16c0-26.160156-14.222656-50.296875-37.121094-62.992188zm0 0\"></path><path d=\"m360 80c4.734375 0 9.449219.59375 14.007812 1.769531l3.976563-15.503906c-5.855469-1.496094-11.90625-2.265625-17.984375-2.265625zm0 0\"></path><path d=\"m360 48c48.519531 0 88 39.480469 88 88 0 20.753906-7.398438 40.910156-20.832031 56.785156l12.207031 10.34375c15.882812-18.761718 24.625-42.601562 24.625-67.128906 0-57.34375-46.65625-104-104-104-24.527344 0-48.367188 8.753906-67.128906 24.632812l10.335937 12.199219c15.871094-13.433593 36.039063-20.832031 56.792969-20.832031zm0 0\"></path><path d=\"m427.128906 215.367188-10.335937-12.199219c-15.871094 13.433593-36.039063 20.832031-56.792969 20.832031-48.519531 0-88-39.480469-88-88 0-20.753906 7.398438-40.910156 20.832031-56.785156l-12.207031-10.34375c-15.882812 18.761718-24.625 42.601562-24.625 67.128906 0 57.34375 46.65625 104 104 104 24.527344 0 48.367188-8.753906 67.128906-24.632812zm0 0\"></path><path d=\"m121.214844 165.640625c4.953125-1.375 9.695312-3.34375 14.183594-5.878906l9.769531 4.886719 19.472656-19.480469-4.886719-9.769531c2.535156-4.496094 4.503906-9.230469 5.886719-14.183594l10.359375-3.445313v-27.53125l-10.351562-3.453125c-1.375-4.953125-3.34375-9.707031-5.886719-14.183594l4.886719-9.777343-19.472657-19.472657-9.769531 4.886719c-4.484375-2.535156-9.230469-4.503906-14.183594-5.878906l-3.453125-10.359375h-27.539062l-3.445313 10.359375c-4.953125 1.375-9.695312 3.34375-14.183594 5.878906l-9.777343-4.886719-19.472657 19.472657 4.886719 9.777343c-2.535156 4.488282-4.503906 9.230469-5.886719 14.183594l-10.351562 3.445313v27.53125l10.351562 3.453125c1.375 4.953125 3.34375 9.695312 5.886719 14.183594l-4.886719 9.769531 19.472657 19.480469 9.769531-4.886719c4.484375 2.535156 9.230469 4.503906 14.183594 5.878906l3.453125 10.359375h27.539062zm-12.304688-13.679687-2.679687 8.039062h-4.460938l-2.679687-8.039062-4.554688-.90625c-6.128906-1.222657-11.878906-3.605469-17.109375-7.09375l-3.867187-2.578126-7.574219 3.800782-3.160156-3.167969 3.792969-7.582031-2.578126-3.859375c-3.488281-5.222657-5.871093-10.980469-7.09375-17.109375l-.914062-4.554688-8.03125-2.679687v-4.46875l8.03125-2.671875.914062-4.554688c1.222657-6.136718 3.613282-11.886718 7.09375-17.109375l2.578126-3.859375-3.792969-7.589844 3.160156-3.160156 7.574219 3.800782 3.867187-2.578126c5.222657-3.488281 10.980469-5.863281 17.109375-7.09375l4.554688-.90625 2.679687-8.039062h4.460938l2.679687 8.039062 4.554688.90625c6.128906 1.222657 11.878906 3.605469 17.109375 7.09375l3.867187 2.578126 7.574219-3.800782 3.160156 3.160156-3.792969 7.589844 2.578126 3.859375c3.488281 5.214844 5.871093 10.972657 7.09375 17.109375l.914062 4.554688 8.03125 2.679687v4.46875l-8.03125 2.671875-.914062 4.554688c-1.222657 6.128906-3.613282 11.878906-7.09375 17.109375l-2.578126 3.859375 3.792969 7.582031-3.160156 3.167969-7.574219-3.800782-3.867187 2.578126c-5.222657 3.488281-10.980469 5.863281-17.109375 7.09375zm0 0\"></path><path d=\"m104 72c-17.648438 0-32 14.351562-32 32s14.351562 32 32 32 32-14.351562 32-32-14.351562-32-32-32zm0 48c-8.824219 0-16-7.175781-16-16s7.175781-16 16-16 16 7.175781 16 16-7.175781 16-16 16zm0 0\"></path><path d=\"m160 248v-40h48v-208h-208v208h106.664062zm-144-232h176v176h-48v24l-32-24h-96zm0 0\"></path><path d=\"m0 272h16v16h-16zm0 0\"></path><path d=\"m32 272h16v16h-16zm0 0\"></path><path d=\"m64 272h16v16h-16zm0 0\"></path><path d=\"m32 304h16v16h-16zm0 0\"></path><path d=\"m64 304h16v16h-16zm0 0\"></path><path d=\"m0 480h16v16h-16zm0 0\"></path><path d=\"m32 480h16v16h-16zm0 0\"></path><path d=\"m64 480h16v16h-16zm0 0\"></path><path d=\"m32 448h16v16h-16zm0 0\"></path><path d=\"m64 448h16v16h-16zm0 0\"></path></svg>				\n									<h5>\n							fokus på kvalitet og detaljer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m469.12 408.93-67.26-33.63v-22.13c10.71-7.69 18.6-19.07 21.78-32.27h5.28c8.81 0 15.98-7.17 15.98-15.98v-5.29c0-6.35-3.74-11.84-9.12-14.41 5.19-18.64-1.65-39.76-19.44-59.78-12.58-14.16-30.67-22.27-49.62-22.27-18.93 0-37.01 8.12-49.59 22.27-13.38 15.05-20.95 41.01-14.03 59.62-5.56 2.5-9.45 8.09-9.45 14.57v5.29c0 8.81 7.17 15.98 15.98 15.98h5.55c3.16 13.09 10.94 24.39 21.51 32.08v22.32l-67.26 33.63c-16.7 5.87-27.89 21.6-27.89 39.28v41.63c0 3.31 2.69 6 6 6h243.46c3.31 0 6-2.69 6-6v-41.63c0-17.68-11.19-33.41-27.88-39.28zm-62.24-17.7-15.83 27.66-13.29-13.29 19.29-19.29zm-37.61 5.88-20.59-20.58v-16.91c6.41 2.57 13.4 4.01 20.72 4.01 7.22 0 14.11-1.39 20.45-3.9v16.8zm63.63-97.48v5.29c0 2.16-1.82 3.98-3.98 3.98h-3.74c.01-.36.03-.71.03-1.07v-12.18h3.71c2.15-.01 3.98 1.82 3.98 3.98zm-119.29 8.2v1.07h-3.98c-2.16 0-3.98-1.82-3.98-3.98v-5.29c0-2.16 1.82-3.98 3.98-3.98l3.98.22zm1.95-24.19c-7.33-13.69-.89-37.39 10.53-50.24 10.31-11.6 25.12-18.25 40.63-18.25 15.52 0 30.34 6.65 40.65 18.25 8.43 9.48 21.3 27.59 17.4 46.39-5.66-.35-10.67-2.55-14.4-6.36-5.37-5.49-7.72-14-6.63-23.94.29-2.62-1.17-5.13-3.6-6.17s-5.25-.37-6.95 1.65c-19.33 22.92-45.95 36.76-73.9 38.68h-3.73zm10.05 24.19v-12.73c24.57-2.92 47.92-14.05 66.73-31.8 1.43 7.26 4.63 13.6 9.45 18.52 3.27 3.35 7.14 5.89 11.41 7.58v18.42c0 24.15-19.65 43.8-43.8 43.8s-43.79-19.64-43.79-43.79zm15.89 78.48 19.29 19.29-13.29 13.29-15.84-27.66zm3.22 97.53h-39.42v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.76v-35.63c0-12.68 8.1-23.95 20.15-28.05.26-.09.51-.19.75-.31l46.47-23.23 20.07 35.06c.93 1.62 2.56 2.72 4.41 2.97.27.04.53.05.79.05 1.58 0 3.11-.62 4.24-1.76l.14-.14zm12.08 0 7.41-64.69 5.06-5.06 4.84 4.84 7.86 64.92h-25.17zm128.2 0h-39.76v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.18l-6.2-51.17.25.25c1.13 1.13 2.66 1.76 4.24 1.76.26 0 .53-.02.79-.05 1.85-.25 3.48-1.34 4.41-2.97l20.07-35.06 46.47 23.23c.24.12.49.23.75.31 12.05 4.1 20.15 15.38 20.15 28.05v35.65zm-67.04-346.65h-10.84l28.38 39.84 28.38-39.84h-10.84c-3.31 0-6-2.69-6-6v-64.58h-98.7c-3.31 0-6-2.69-6-6s2.69-6 6-6h104.7c3.31 0 6 2.69 6 6v64.58h16.48c2.25 0 4.3 1.25 5.33 3.25s.86 4.4-.45 6.23l-40.02 56.18c-1.13 1.58-2.95 2.52-4.89 2.52s-3.76-.94-4.89-2.52l-40.02-56.18c-1.3-1.83-1.48-4.23-.45-6.23s3.09-3.25 5.33-3.25h16.48v-23.5h-65.38c-3.31 0-6-2.69-6-6s2.69-6 6-6h71.38c3.31 0 6 2.69 6 6v35.5c.02 3.31-2.67 6-5.98 6zm-118.44 50.65v-133.26c0-21.18-17.23-38.41-38.41-38.41h-207.7c-21.18-.01-38.41 17.23-38.41 38.41v133.26c0 21.18 17.23 38.41 38.41 38.41h105.8l64.8 55.11c1.11.94 2.49 1.43 3.89 1.43.85 0 1.71-.18 2.52-.55 2.12-.98 3.48-3.11 3.48-5.45v-50.54h27.21c21.18 0 38.41-17.23 38.41-38.41zm-71.62 26.41c-3.31 0-6 2.69-6 6v43.56l-56.59-48.13c-1.08-.92-2.46-1.43-3.89-1.43h-108.01c-14.56 0-26.41-11.85-26.41-26.41v-133.26c0-14.56 11.85-26.41 26.41-26.41h207.69c14.56 0 26.41 11.85 26.41 26.41v133.26c0 14.56-11.85 26.41-26.41 26.41zm-156.34-87.87h56.97c3.31 0 6-2.69 6-6v-39.2l8.55-8.55c2.34-2.34 2.34-6.14 0-8.49-2.34-2.34-6.14-2.34-8.48 0l-.7.7c-.98-1.97-3.01-3.32-5.36-3.32h-56.98c-3.31 0-6 2.69-6 6v52.85c0 3.32 2.69 6.01 6 6.01zm6-52.86h44.97v2.69l-18.16 18.16-8.84-8.84c-2.34-2.34-6.14-2.34-8.49 0-2.34 2.34-2.34 6.14 0 8.49l13.08 13.08c1.17 1.17 2.71 1.76 4.24 1.76s3.07-.59 4.24-1.76l13.92-13.92v21.2h-44.96zm173.62 3.08c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 31.92c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 36.52c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.68 5.99 6zm0 31.92c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.69 5.99 6zm-119.36 165.01h10.84l-28.38-39.84-28.38 39.84h10.84c3.31 0 6 2.69 6 6v64.58h98.7c3.31 0 6 2.69 6 6s-2.69 6-6 6h-104.69c-3.31 0-6-2.69-6-6v-64.58h-16.48c-2.25 0-4.3-1.25-5.33-3.25s-.86-4.4.45-6.23l40.02-56.18c1.13-1.58 2.95-2.52 4.89-2.52s3.76.94 4.89 2.52l40.02 56.18c1.3 1.83 1.48 4.23.45 6.23s-3.09 3.25-5.33 3.25h-16.48v23.5h65.38c3.31 0 6 2.69 6 6s-2.69 6-6 6h-71.38c-3.31 0-6-2.69-6-6v-35.5c-.03-3.31 2.66-6 5.97-6z\"></path></svg>				\n									<h5>\n							ærlig<br> rådgivning						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 510 510\"><path d=\"m192.036 385.845c-4.787-46.972-19.459-64.336-30.658-82.352-8.672-13.951-15.5-28.245-15.5-54.252 0-60.242 48.865-109.109 109.135-109.109 60.242 0 109.109 48.866 109.109 109.109 0 26.007-6.828 40.301-15.5 54.252-11.199 18.016-25.871 35.38-30.658 82.352 9.985 2.864 17.345 12.101 17.345 22.975v36.44c0 13.109-10.747 23.866-23.893 23.866h-10.334v9.945c0 12.588-10.341 22.929-22.93 22.929h-46.304c-12.589 0-22.93-10.341-22.93-22.929v-9.945h-10.334c-13.146 0-23.893-10.757-23.893-23.866v-36.44c0-10.874 7.36-20.111 17.345-22.975zm111.948-.917c4.199-42.194 15.78-62.332 26.488-79.049 10.147-15.842 19.65-28.207 19.65-56.638 0-52.513-42.597-95.109-95.109-95.109-52.537 0-95.135 42.596-95.135 95.109 0 28.431 9.503 40.796 19.65 56.638 10.708 16.717 22.289 36.855 26.488 79.049zm2.554-78.61c-1.175 13.701-11.985 24.191-24.783 24.191-13.527 0-24.862-12.086-24.862-26.673v-99.328c0-14.12 11.335-26.673 24.862-26.673 11.309 0 21.031 8.139 23.975 19.497 9.12 3.904 15.688 13.438 15.688 24.78 0 1.153-.068 2.289-.201 3.403 5.078 5.326 8.283 12.802 8.283 21.117 0 6.39-1.889 12.262-5.06 17.053 1.996 4.099 3.13 8.773 3.13 13.76 0 14.1-9.065 25.697-21.032 28.873zm-16.452-109.977c-1.964-2.729-4.916-4.506-8.331-4.506-6.192 0-10.862 6.21-10.862 12.673v99.328c0 6.677 4.67 12.673 10.862 12.673 5.516 0 9.822-4.614 10.717-10.425-4.709-1.416-8.923-4.144-12.279-7.814-2.607-2.852-2.409-7.283.443-9.89 2.851-2.607 7.282-2.408 9.889.443 2.416 2.642 5.72 4.356 9.402 4.356 7.733 0 13.643-7.218 13.643-15.734s-5.91-15.734-13.643-15.734c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7 5.352 0 10.388 1.655 14.658 4.533.593-1.743.915-3.634.915-5.612 0-2.11-.366-4.128-1.036-5.972-.769.858-1.588 1.66-2.453 2.397-2.94 2.507-7.361 2.156-9.869-.784-2.507-2.939-2.155-7.361.784-9.868 2.773-2.365 4.492-6.122 4.492-10.293 0-6.072-3.705-11.374-8.898-12.467-.154-.023-.307-.052-.458-.085-.499-.08-1.01-.121-1.532-.121-2.947 0-5.591 1.389-7.515 3.525-2.585 2.87-7.015 3.101-9.886.515-2.87-2.586-3.101-7.015-.515-9.886 3.111-3.453 7.059-5.988 11.472-7.252zm-104.526 67.344c-3.171-4.791-5.06-10.663-5.06-17.053 0-8.307 3.198-15.777 8.284-21.104-.133-1.118-.202-2.258-.202-3.416 0-11.354 6.582-20.897 15.717-24.792 2.948-11.354 12.67-19.485 23.946-19.485 13.56 0 24.888 12.555 24.888 26.673v99.328c0 14.585-11.328 26.673-24.888 26.673-12.765 0-23.578-10.484-24.757-24.184-11.98-3.166-21.058-14.769-21.058-28.88 0-4.987 1.134-9.661 3.13-13.76zm9.982-23.036c-.675 1.847-1.042 3.869-1.042 5.983 0 1.978.322 3.869.915 5.612 4.27-2.878 9.306-4.533 14.658-4.533 3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7-7.733 0-13.643 7.218-13.643 15.734s5.91 15.734 13.643 15.734c3.682 0 6.986-1.714 9.402-4.356 2.607-2.851 7.038-3.05 9.889-.443 2.852 2.607 3.05 7.038.443 9.89-3.35 3.664-7.556 6.389-12.255 7.807.891 5.813 5.192 10.432 10.693 10.432 6.21 0 10.888-5.993 10.888-12.673v-99.328c0-6.466-4.678-12.673-10.888-12.673-3.404 0-6.349 1.777-8.309 4.507 4.421 1.264 8.367 3.8 11.476 7.251 2.586 2.871 2.355 7.3-.516 9.886-2.87 2.586-7.3 2.355-9.886-.515-1.926-2.138-4.574-3.525-7.54-3.525-.493 0-.976.037-1.448.108-.196.045-.395.082-.596.11-5.165 1.118-8.844 6.404-8.844 12.455 0 1.243.153 2.45.442 3.594.101.284.183.572.246.862.748 2.326 2.071 4.346 3.814 5.823 2.947 2.498 3.311 6.919.813 9.866s-6.919 3.312-9.866.814c-.878-.745-1.71-1.554-2.489-2.422zm3.042 158.279c-5.442 0-9.893 4.451-9.893 9.892v36.44c0 5.423 4.454 9.866 9.893 9.866h17.334c3.866 0 7 3.134 7 7v16.945c0 4.902 4.027 8.929 8.93 8.929h46.304c4.903 0 8.93-4.027 8.93-8.929v-16.945c0-3.866 3.134-7 7-7h17.334c5.439 0 9.893-4.443 9.893-9.866v-36.44c0-5.441-4.451-9.892-9.893-9.892zm63.416-314.093 2.907-5.412c1.828-3.403 6.075-4.683 9.479-2.854 3.403 1.828 4.682 6.075 2.854 9.479l-16.073 29.925c-1.22 2.271-3.589 3.688-6.167 3.688s-4.947-1.417-6.167-3.688l-16.073-29.925c-1.828-3.404-.549-7.651 2.854-9.479 3.404-1.829 7.651-.549 9.479 2.854l2.907 5.412v-69.835c0-3.863 3.137-7 7-7s7 3.137 7 7zm-132.198 54.758-49.381-49.381c-2.732-2.731-2.732-7.167 0-9.899s7.168-2.732 9.9 0l49.38 49.38-1.771-5.881c-1.114-3.7.985-7.608 4.684-8.722 3.7-1.114 7.607.985 8.721 4.685l9.796 32.526c.743 2.468.069 5.145-1.753 6.968-1.823 1.823-4.5 2.496-6.969 1.753l-32.526-9.795c-3.699-1.114-5.798-5.022-4.684-8.721s5.022-5.798 8.721-4.684zm-44.859 122.299h-69.835c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7h69.835l-5.412-2.907c-3.403-1.828-4.682-6.076-2.854-9.479 1.828-3.404 6.075-4.683 9.479-2.855l29.926 16.074c2.271 1.22 3.688 3.589 3.688 6.167 0 2.577-1.417 4.947-3.688 6.166l-29.926 16.074c-3.404 1.828-7.651.549-9.479-2.855-1.828-3.403-.549-7.651 2.854-9.479zm54.758 118.198-49.38 49.38c-2.732 2.732-7.168 2.732-9.9 0s-2.732-7.167 0-9.899l49.381-49.381-5.882 1.772c-3.699 1.114-7.607-.985-8.721-4.685-1.114-3.699.985-7.607 4.684-8.721l32.526-9.795c2.469-.743 5.146-.07 6.969 1.753 1.822 1.823 2.496 4.5 1.753 6.968l-9.796 32.527c-1.114 3.699-5.021 5.798-8.721 4.684-3.699-1.114-5.798-5.022-4.684-8.721zm240.497-240.497 5.882-1.771c3.699-1.114 7.607.985 8.721 4.684s-.985 7.607-4.684 8.721l-32.526 9.795c-2.469.743-5.146.07-6.969-1.753-1.822-1.823-2.496-4.5-1.753-6.968l9.796-32.526c1.114-3.7 5.021-5.799 8.721-4.685 3.699 1.114 5.798 5.022 4.684 8.722l-1.771 5.881 49.38-49.38c2.732-2.732 7.168-2.732 9.9 0s2.732 7.168 0 9.899zm44.859 122.299 5.412 2.906c3.403 1.828 4.682 6.076 2.854 9.479-1.828 3.404-6.075 4.683-9.479 2.855l-29.926-16.074c-2.271-1.219-3.688-3.589-3.688-6.166 0-2.578 1.417-4.947 3.688-6.167l29.926-16.074c3.404-1.828 7.651-.549 9.479 2.855 1.828 3.403.549 7.651-2.854 9.479l-5.412 2.907h69.835c3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7zm-54.758 118.198 1.771 5.882c1.114 3.699-.985 7.607-4.684 8.721-3.7 1.114-7.607-.985-8.721-4.684l-9.796-32.527c-.743-2.468-.069-5.145 1.753-6.968 1.823-1.823 4.5-2.496 6.969-1.753l32.526 9.795c3.699 1.114 5.798 5.022 4.684 8.721-1.114 3.7-5.022 5.799-8.721 4.685l-5.882-1.772 49.381 49.381c2.732 2.732 2.732 7.167 0 9.899s-7.168 2.732-9.9 0z\"></path></svg>				\n									<h5>\n							gennemtænkte løsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"outline\"><path d=\"M486.41,144A28,28,0,0,0,472,92H349.123l5.457-21.828a48.513,48.513,0,0,0-12.848-46.153A41.035,41.035,0,0,0,312.609,12H308a8.009,8.009,0,0,0-8,8V47.413l-19.233,64.112A17.376,17.376,0,0,1,268,123.539V112a4,4,0,0,0-4-4H152a4,4,0,0,0-4,4v72a4,4,0,0,0,8,0V116h72V276H156V248a4,4,0,0,0-8,0v32a4,4,0,0,0,4,4H264a4,4,0,0,0,4-4V268.5h11.168A37.07,37.07,0,0,1,305.092,279a45.025,45.025,0,0,0,31.48,12.752L440,292a27.987,27.987,0,0,0,19.369-48.2,27.987,27.987,0,0,0,16-48A28,28,0,0,0,486.41,144ZM260,276H236V116h24Zm212-88H396a4,4,0,0,0,0,8h60a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h40a20,20,0,0,1,.01,40l-103.428-.25a37.07,37.07,0,0,1-25.924-10.5,45.031,45.031,0,0,0-31.49-12.752H268V131.686a25.317,25.317,0,0,0,20.429-17.862l19.4-64.675A4,4,0,0,0,308,48V20h4.609a33.082,33.082,0,0,1,23.481,9.69,40.507,40.507,0,0,1,10.728,38.541l-6.7,26.8A4,4,0,0,0,344,100H472a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h72a20,20,0,0,1,0,40Z\"></path><path d=\"M194.5,183.243l-1.9-.217a4,4,0,0,0-4.169,2.491L184.29,195.9H135.278l-3.539-9.317a4,4,0,0,0-7.478,2.84l2.459,6.477h-8.474L68.452,156.872a4,4,0,1,0-4.935,6.3L77.6,174.209,56.961,194.48l-6.636-5.491a4,4,0,1,0-5.1,6.163L87.219,229.9a44.1,44.1,0,0,0,28.05,10.1H212a8.009,8.009,0,0,0,8-8V203.9a8.009,8.009,0,0,0-8-8h-8v-2.01A10.708,10.708,0,0,0,194.5,183.243ZM212,203.9V232H115.269a36.081,36.081,0,0,1-22.951-8.264l-29.16-24.128,20.8-20.422L114.4,203.045a4,4,0,0,0,2.468.852H187a4,4,0,0,0,3.715-2.517l3.929-9.843a2.712,2.712,0,0,1,1.356,2.35v6.01a4,4,0,0,0,4,4Z\"></path><path d=\"M223.084,484.672,200.87,469.863V346.36A44.1,44.1,0,0,0,195.327,325l-17.183-30.94a4,4,0,0,0-7,3.884l17.184,30.94a36.073,36.073,0,0,1,4.537,17.478V468H164.333a4,4,0,1,0,0,8h31.321l12,8H152.865V352a4,4,0,0,0-.358-1.655l-25.454-56A4,4,0,0,0,123.411,292H114.2a4,4,0,0,0-3.945,4.658l8.862,53.175a36.016,36.016,0,0,1-1.951,18.949L78.642,468H48.333a4,4,0,1,0,0,8H80.377L92,484H32.088L76.63,361.366a4.017,4.017,0,0,0,.183-2.044L61.1,268H136a4,4,0,0,0,0-8H59.233L30.555,173.966A19.723,19.723,0,0,1,49.27,148H76a12,12,0,0,0,24,0h15.2a21.975,21.975,0,0,1,8.395,1.652l10.889,4.458a4,4,0,1,0,3.032-7.4L126.63,142.25A29.938,29.938,0,0,0,115.2,140H100v-4.527A16.014,16.014,0,0,0,112,120V103.473A16.014,16.014,0,0,0,124,88V80a4,4,0,0,0-4-4H90A22.025,22.025,0,0,0,68,98v18a12.02,12.02,0,0,0,8,11.314V140H49.27a27.723,27.723,0,0,0-26.305,36.5l29.493,88.482,16.29,94.655-46.128,127A4,4,0,0,0,26.38,492h78.485a4,4,0,0,0,2.268-7.3L86.3,470.368l38.318-98.69a44.018,44.018,0,0,0,2.385-23.16L118.921,300h1.914l24.03,52.867V488a4,4,0,0,0,4,4h72a4,4,0,0,0,2.219-7.328ZM76,98A14.015,14.015,0,0,1,90,84h26v4a8.009,8.009,0,0,1-8,8H92a4,4,0,0,0-4,4,11.962,11.962,0,0,1-1.53,5.881A12.044,12.044,0,0,0,76,104.686Zm4,14a3.981,3.981,0,0,1,3.407,1.9,4,4,0,0,0,5.956.975c.207-.171.7-.648.7-.648.032-.028.061-.057.09-.087A19.907,19.907,0,0,0,95.6,104H104v16a8.009,8.009,0,0,1-8,8,12.133,12.133,0,0,1-2.681-.3,4,4,0,1,0-1.775,7.8c.151.035.3.06.456.091V148a4,4,0,1,1-8,0V124a4,4,0,0,0-4-4,4,4,0,0,1,0-8Z\"></path></g></svg>				\n									<h5>\n							arbejde udført med ansvar						\n					</h5>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 12:46:50', '2026-01-26 12:46:50', '', 10, 'https://mrarif.me/cpnordic/?p=484', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(474, 1, '2026-01-26 12:41:46', '2026-01-26 12:41:46', '', 'effective_1401921', '', 'inherit', 'open', 'closed', '', 'effective_1401921', '', '', '2026-01-26 12:41:46', '2026-01-26 12:41:46', '', 10, 'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/effective_1401921.svg', 0, 'attachment', 'image/svg+xml', 0),
(475, 1, '2026-01-26 12:42:27', '2026-01-26 12:42:27', '', 'discussion_8429360', '', 'inherit', 'open', 'closed', '', 'discussion_8429360', '', '', '2026-01-26 12:42:27', '2026-01-26 12:42:27', '', 10, 'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/discussion_8429360.svg', 0, 'attachment', 'image/svg+xml', 0),
(479, 1, '2026-01-26 12:45:36', '2026-01-26 12:45:36', '', 'communication_18765280', '', 'inherit', 'open', 'closed', '', 'communication_18765280', '', '', '2026-01-26 12:45:36', '2026-01-26 12:45:36', '', 10, 'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/communication_18765280.svg', 0, 'attachment', 'image/svg+xml', 0),
(480, 1, '2026-01-26 12:46:18', '2026-01-26 12:46:18', '', 'brainstorming_11663441', '', 'inherit', 'open', 'closed', '', 'brainstorming_11663441', '', '', '2026-01-26 12:46:18', '2026-01-26 12:46:18', '', 10, 'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/brainstorming_11663441.svg', 0, 'attachment', 'image/svg+xml', 0),
(481, 1, '2026-01-26 12:46:44', '2026-01-26 12:46:44', '', 'like_3941426', '', 'inherit', 'open', 'closed', '', 'like_3941426', '', '', '2026-01-26 12:46:44', '2026-01-26 12:46:44', '', 10, 'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/like_3941426.svg', 0, 'attachment', 'image/svg+xml', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(482, 1, '2026-01-26 12:46:49', '2026-01-26 12:46:49', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>					\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle ANMELDELSER\n					</a>\n					<h2>HVORFOR VÆLGE CP NORDIC ApS?</h2>		<p>Når du vælger CP NORDIC ApS, får du:</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							et ungt og engageret team						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							fokus på kvalitet og detaljer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							ærlig<br> rådgivning						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							gennemtænkte løsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							arbejde udført med ansvar						\n					</h5>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 12:46:49', '2026-01-26 12:46:49', '', 10, 'https://mrarif.me/cpnordic/?p=482', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(476, 1, '2026-01-26 12:43:31', '2026-01-26 12:43:31', '', 'application_11959109', '', 'inherit', 'open', 'closed', '', 'application_11959109', '', '', '2026-01-26 12:43:31', '2026-01-26 12:43:31', '', 10, 'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/application_11959109.svg', 0, 'attachment', 'image/svg+xml', 0),
(477, 1, '2026-01-26 12:44:00', '2026-01-26 12:44:00', '', 'mark_16520519', '', 'inherit', 'open', 'closed', '', 'mark_16520519', '', '', '2026-01-26 12:44:00', '2026-01-26 12:44:00', '', 10, 'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/mark_16520519.svg', 0, 'attachment', 'image/svg+xml', 0),
(478, 1, '2026-01-26 12:45:00', '2026-01-26 12:45:00', '', 'self-affirmation_18139297', '', 'inherit', 'open', 'closed', '', 'self-affirmation_18139297', '', '', '2026-01-26 12:45:00', '2026-01-26 12:45:00', '', 10, 'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/self-affirmation_18139297.svg', 0, 'attachment', 'image/svg+xml', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(483, 1, '2026-01-26 12:46:50', '2026-01-26 12:46:50', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>					\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle ANMELDELSER\n					</a>\n					<h2>HVORFOR VÆLGE CP NORDIC ApS?</h2>		<p>Når du vælger CP NORDIC ApS, får du:</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							et ungt og engageret team						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							fokus på kvalitet og detaljer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							ærlig<br> rådgivning						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							gennemtænkte løsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							arbejde udført med ansvar						\n					</h5>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 12:46:50', '2026-01-26 12:46:50', '', 10, 'https://mrarif.me/cpnordic/?p=483', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(485, 1, '2026-01-26 12:46:57', '2026-01-26 12:46:57', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>					\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle ANMELDELSER\n					</a>\n					<h2>HVORFOR VÆLGE CP NORDIC ApS?</h2>		<p>Når du vælger CP NORDIC ApS, får du:</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 450 450\" width=\"512\"><g><g><path d=\"m225 165.2c-25.9 0-48.9-18.8-53.3-45.2-2.4-14.2.9-28.6 9.3-40.3 8.4-11.8 20.9-19.5 35.1-21.9 29.4-4.9 57.3 15 62.2 44.5 4.9 29.4-15 57.3-44.4 62.2-3 .5-6 .7-8.9.7zm-7.6-99.8c-12.2 2-22.9 8.7-30.1 18.8s-10.1 22.4-8 34.6c3.8 22.7 23.5 38.8 45.7 38.8 2.5 0 5.1-.2 7.6-.6 25.2-4.2 42.3-28.1 38.1-53.4s-28.1-42.4-53.3-38.2z\"></path><path d=\"m255.2 115c-2.1 0-3.8-1.7-3.8-3.8 0-14.6-11.8-26.4-26.4-26.4-2.1 0-3.8-1.7-3.8-3.8s1.7-3.8 3.8-3.8c18.8 0 34.1 15.3 34.1 34.1 0 2-1.8 3.7-3.9 3.7z\"></path><path d=\"m236.1 203h-22.2c-2.1 0-3.8-1.7-3.8-3.8v-14.1c-3.1-.6-6.1-1.4-9.1-2.4l-7 12.2c-1.1 1.8-3.4 2.5-5.3 1.4l-19.2-11.1c-.9-.5-1.5-1.4-1.8-2.3-.3-1-.1-2 .4-2.9l7-12.1c-2.4-2.1-4.6-4.3-6.7-6.6l-12.1 7c-1.8 1.1-4.2.4-5.2-1.4l-11.1-19.2c-1.1-1.8-.4-4.2 1.4-5.2l11.9-6.8c-1-3-1.9-6.1-2.6-9.3h-13.7c-2.1 0-3.8-1.7-3.8-3.8v-22.2c0-2.1 1.7-3.8 3.8-3.8h13.4c.6-3.2 1.4-6.4 2.4-9.5l-11.5-6.6c-1.8-1.1-2.5-3.4-1.4-5.3l11.1-19.6c.5-.9 1.4-1.5 2.3-1.8s2-.1 2.9.4l11.3 6.6c2.2-2.5 4.5-4.8 7-7l-6.5-11.3c-.5-.9-.6-1.9-.4-2.9.3-1 .9-1.8 1.8-2.3l19.2-11.1c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l6.4 11.2c3.1-1.1 6.4-1.9 9.7-2.6v-13c0-2.1 1.7-3.8 3.8-3.8h22.2c2.1 0 3.8 1.7 3.8 3.8v12.8c3.3.7 6.5 1.5 9.7 2.6l6.5-11.2c.5-.9 1.4-1.5 2.3-1.8 1-.3 2-.1 2.9.4l19.2 11.1c.9.5 1.5 1.3 1.8 2.3s.1 2-.4 2.9l-6.5 11.3c2.5 2.2 4.8 4.5 7 7.1l11.3-6.6c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l11.1 19.2c1.1 1.8.4 4.2-1.4 5.3l-11.5 6.6c1 3.1 1.8 6.3 2.5 9.5h13.6c2.1 0 3.8 1.7 3.8 3.8v22.2c0 2.1-1.7 3.8-3.8 3.8h-13.6c-.6 3.1-1.5 6.2-2.5 9.3l11.9 6.8c1.8 1.1 2.5 3.4 1.4 5.2l-11.2 19.5c-1.1 1.8-3.4 2.5-5.2 1.4l-12-7c-2.1 2.4-4.4 4.6-6.7 6.6l7 12.1c.5.9.6 1.9.4 2.9s-.9 1.8-1.8 2.3l-19.2 11.1c-1.8 1.1-4.2.4-5.2-1.4l-7-12.2c-3 1-6 1.8-9.1 2.4v14.1c-.2 2.3-2 4-4.1 4zm-18.4-7.7h14.5v-13.5c0-1.9 1.4-3.5 3.3-3.8 4.7-.7 9.4-2 13.8-3.7 1.8-.7 3.8 0 4.7 1.7l6.7 11.6 12.6-7.3-6.7-11.6c-1-1.6-.5-3.7.9-4.9 3.7-3 7.2-6.4 10.2-10.1 1.2-1.5 3.3-1.8 4.9-.9l11.5 6.6 7.3-12.6-11.3-6.5c-1.6-.9-2.4-3-1.6-4.7 1.8-4.5 3.1-9.2 3.9-14 .3-1.9 1.9-3.2 3.8-3.2h13v-14.6h-12.8c-1.9 0-3.5-1.4-3.8-3.3-.7-4.8-2-9.6-3.7-14.2-.7-1.8 0-3.7 1.7-4.7l10.9-6.3-7.3-12.6-10.8 6.3c-1.6.9-3.7.6-4.9-.9-3.1-3.9-6.6-7.4-10.4-10.6-1.5-1.2-1.9-3.3-.9-4.9l6.2-10.7-12.6-7.3-6.1 10.6c-1 1.6-3 2.3-4.7 1.7-4.6-1.8-9.5-3.1-14.4-3.9-1.9-.3-3.3-1.9-3.3-3.8v-12.2h-14.5v12.3c0 1.9-1.4 3.5-3.3 3.8-5 .8-9.8 2.1-14.4 3.9-1.8.7-3.8 0-4.7-1.7l-6.1-10.6-12.6 7.3 6.2 10.7c.9 1.6.6 3.7-.9 4.9-3.9 3.1-7.4 6.7-10.4 10.6-1.2 1.5-3.3 1.9-4.9.9l-10.8-6.3-7.3 12.6 10.9 6.3c1.6.9 2.3 2.9 1.7 4.7-1.7 4.6-3 9.4-3.7 14.2-.3 1.9-1.9 3.3-3.8 3.3h-12.8v14.5h13c1.9 0 3.5 1.4 3.8 3.2.8 4.8 2.1 9.5 3.9 14 .7 1.8 0 3.8-1.6 4.7l-11.3 6.5 7.3 12.6 11.5-6.6c1.6-.9 3.7-.6 4.9.9 3 3.7 6.5 7.1 10.3 10.1 1.5 1.2 1.9 3.3.9 4.9l-6.7 11.6 12.6 7.3 6.7-11.6c.9-1.6 2.9-2.3 4.7-1.7 4.5 1.7 9.1 2.9 13.8 3.7 1.9.3 3.3 1.9 3.3 3.8z\"></path></g><g><g><g><path d=\"m45.3 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m153.9 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path></g><g><path d=\"m189.3 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.2c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c0 2.1-1.7 3.8-3.8 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m73.3 326.4c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m126 326.4c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m99.7 325.6c-.6 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4s4.1 1.1 4.4 3.2c2.4 16.5 12.3 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m50.2 266.6c-.1 0-.2 0-.3 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.7 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-8.9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.5 2.2zm81.8-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13.1-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.4-.7 2.3-.7z\"></path></g></g></g><g><g><path d=\"m296.1 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m404.7 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path></g><g><path d=\"m440 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.1c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c.2 2.1-1.6 3.8-3.7 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m324 326.3c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m376.7 326.3c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m350.4 325.6c-.5 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4 2.1-.3 4 1.1 4.4 3.2 2.4 16.5 12.4 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m301 266.6c-.1 0-.2 0-.4 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.6 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.4 2.2zm81.7-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.5-.7 2.3-.7z\"></path></g></g></g></g></g></svg>				\n									<h5>\n							et ungt og engageret team						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"496pt\" viewBox=\"0 0 496 496\" width=\"496pt\"><path d=\"m440 328h-28.207031c5.078125-6.703125 8.207031-14.960938 8.207031-24 0-8.824219-7.175781-16-16-16h-12v-19.960938c59.574219-14.445312 104-68.085937 104-132.039062 0-74.992188-61.007812-136-136-136s-136 61.007812-136 136c0 63.953125 44.425781 117.59375 104 132.039062v19.960938h-8.449219c-6.167969 0-12.359375 1.464844-17.886719 4.214844l-50.480468 25.25c-3.320313 1.664062-7.03125 2.535156-10.734375 2.535156h-40.449219v-16h-104v16h56v56h16v-56h16v128h-16v-56h-16v56h-56v16h104v-16h40.449219c3.703125 0 7.414062.871094 10.734375 2.527344l34.488281 17.25c5.519531 2.757812 11.710937 4.222656 17.878906 4.222656h24.449219v24h64v-24h48c13.230469 0 24-10.769531 24-24 0-6.167969-2.40625-11.742188-6.238281-16 3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16 0-13.230469-10.769531-24-24-24zm8 24c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm-208-280c0-66.167969 53.832031-120 120-120s120 53.832031 120 120-53.832031 120-120 120-120-53.832031-120-120zm104 134.976562c5.257812.617188 10.574219 1.023438 16 1.023438s10.742188-.40625 16-1.023438v17.023438h-32zm-40.449219 185.023438c-3.703125 0-7.414062-.871094-10.734375-2.527344l-34.488281-17.25c-5.519531-2.757812-11.710937-4.222656-17.878906-4.222656h-40.449219v-96h40.449219c6.167969 0 12.359375-1.464844 17.886719-4.214844l50.480468-25.25c3.320313-1.664062 7.03125-2.535156 10.734375-2.535156h84.449219c0 13.230469-10.769531 24-24 24h-48.28125l-23.863281 35.808594c-6.101563 9.160156-14.527344 16.589844-24.367188 21.503906-8.753906 4.375-18.542969 6.6875-28.320312 6.6875h-15.167969v16h15.167969c12.246093 0 24.519531-2.894531 35.472656-8.375 12.328125-6.160156 22.878906-15.480469 30.527344-26.945312l6.832031-10.253907v93.574219zm40.449219 24v-136h17.472656c-.898437 2.511719-1.472656 5.183594-1.472656 8 0 6.167969 2.40625 11.742188 6.238281 16-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16 0 10.414062 6.710938 19.214844 16 22.527344v9.472656zm96-24h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8s-3.59375 8-8 8zm0 0\"></path><path d=\"m394.878906 73.007812-7.757812 13.984376c17.816406 9.878906 28.878906 28.664062 28.878906 49.007812h16c0-26.160156-14.222656-50.296875-37.121094-62.992188zm0 0\"></path><path d=\"m360 80c4.734375 0 9.449219.59375 14.007812 1.769531l3.976563-15.503906c-5.855469-1.496094-11.90625-2.265625-17.984375-2.265625zm0 0\"></path><path d=\"m360 48c48.519531 0 88 39.480469 88 88 0 20.753906-7.398438 40.910156-20.832031 56.785156l12.207031 10.34375c15.882812-18.761718 24.625-42.601562 24.625-67.128906 0-57.34375-46.65625-104-104-104-24.527344 0-48.367188 8.753906-67.128906 24.632812l10.335937 12.199219c15.871094-13.433593 36.039063-20.832031 56.792969-20.832031zm0 0\"></path><path d=\"m427.128906 215.367188-10.335937-12.199219c-15.871094 13.433593-36.039063 20.832031-56.792969 20.832031-48.519531 0-88-39.480469-88-88 0-20.753906 7.398438-40.910156 20.832031-56.785156l-12.207031-10.34375c-15.882812 18.761718-24.625 42.601562-24.625 67.128906 0 57.34375 46.65625 104 104 104 24.527344 0 48.367188-8.753906 67.128906-24.632812zm0 0\"></path><path d=\"m121.214844 165.640625c4.953125-1.375 9.695312-3.34375 14.183594-5.878906l9.769531 4.886719 19.472656-19.480469-4.886719-9.769531c2.535156-4.496094 4.503906-9.230469 5.886719-14.183594l10.359375-3.445313v-27.53125l-10.351562-3.453125c-1.375-4.953125-3.34375-9.707031-5.886719-14.183594l4.886719-9.777343-19.472657-19.472657-9.769531 4.886719c-4.484375-2.535156-9.230469-4.503906-14.183594-5.878906l-3.453125-10.359375h-27.539062l-3.445313 10.359375c-4.953125 1.375-9.695312 3.34375-14.183594 5.878906l-9.777343-4.886719-19.472657 19.472657 4.886719 9.777343c-2.535156 4.488282-4.503906 9.230469-5.886719 14.183594l-10.351562 3.445313v27.53125l10.351562 3.453125c1.375 4.953125 3.34375 9.695312 5.886719 14.183594l-4.886719 9.769531 19.472657 19.480469 9.769531-4.886719c4.484375 2.535156 9.230469 4.503906 14.183594 5.878906l3.453125 10.359375h27.539062zm-12.304688-13.679687-2.679687 8.039062h-4.460938l-2.679687-8.039062-4.554688-.90625c-6.128906-1.222657-11.878906-3.605469-17.109375-7.09375l-3.867187-2.578126-7.574219 3.800782-3.160156-3.167969 3.792969-7.582031-2.578126-3.859375c-3.488281-5.222657-5.871093-10.980469-7.09375-17.109375l-.914062-4.554688-8.03125-2.679687v-4.46875l8.03125-2.671875.914062-4.554688c1.222657-6.136718 3.613282-11.886718 7.09375-17.109375l2.578126-3.859375-3.792969-7.589844 3.160156-3.160156 7.574219 3.800782 3.867187-2.578126c5.222657-3.488281 10.980469-5.863281 17.109375-7.09375l4.554688-.90625 2.679687-8.039062h4.460938l2.679687 8.039062 4.554688.90625c6.128906 1.222657 11.878906 3.605469 17.109375 7.09375l3.867187 2.578126 7.574219-3.800782 3.160156 3.160156-3.792969 7.589844 2.578126 3.859375c3.488281 5.214844 5.871093 10.972657 7.09375 17.109375l.914062 4.554688 8.03125 2.679687v4.46875l-8.03125 2.671875-.914062 4.554688c-1.222657 6.128906-3.613282 11.878906-7.09375 17.109375l-2.578126 3.859375 3.792969 7.582031-3.160156 3.167969-7.574219-3.800782-3.867187 2.578126c-5.222657 3.488281-10.980469 5.863281-17.109375 7.09375zm0 0\"></path><path d=\"m104 72c-17.648438 0-32 14.351562-32 32s14.351562 32 32 32 32-14.351562 32-32-14.351562-32-32-32zm0 48c-8.824219 0-16-7.175781-16-16s7.175781-16 16-16 16 7.175781 16 16-7.175781 16-16 16zm0 0\"></path><path d=\"m160 248v-40h48v-208h-208v208h106.664062zm-144-232h176v176h-48v24l-32-24h-96zm0 0\"></path><path d=\"m0 272h16v16h-16zm0 0\"></path><path d=\"m32 272h16v16h-16zm0 0\"></path><path d=\"m64 272h16v16h-16zm0 0\"></path><path d=\"m32 304h16v16h-16zm0 0\"></path><path d=\"m64 304h16v16h-16zm0 0\"></path><path d=\"m0 480h16v16h-16zm0 0\"></path><path d=\"m32 480h16v16h-16zm0 0\"></path><path d=\"m64 480h16v16h-16zm0 0\"></path><path d=\"m32 448h16v16h-16zm0 0\"></path><path d=\"m64 448h16v16h-16zm0 0\"></path></svg>				\n									<h5>\n							fokus på kvalitet og detaljer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m469.12 408.93-67.26-33.63v-22.13c10.71-7.69 18.6-19.07 21.78-32.27h5.28c8.81 0 15.98-7.17 15.98-15.98v-5.29c0-6.35-3.74-11.84-9.12-14.41 5.19-18.64-1.65-39.76-19.44-59.78-12.58-14.16-30.67-22.27-49.62-22.27-18.93 0-37.01 8.12-49.59 22.27-13.38 15.05-20.95 41.01-14.03 59.62-5.56 2.5-9.45 8.09-9.45 14.57v5.29c0 8.81 7.17 15.98 15.98 15.98h5.55c3.16 13.09 10.94 24.39 21.51 32.08v22.32l-67.26 33.63c-16.7 5.87-27.89 21.6-27.89 39.28v41.63c0 3.31 2.69 6 6 6h243.46c3.31 0 6-2.69 6-6v-41.63c0-17.68-11.19-33.41-27.88-39.28zm-62.24-17.7-15.83 27.66-13.29-13.29 19.29-19.29zm-37.61 5.88-20.59-20.58v-16.91c6.41 2.57 13.4 4.01 20.72 4.01 7.22 0 14.11-1.39 20.45-3.9v16.8zm63.63-97.48v5.29c0 2.16-1.82 3.98-3.98 3.98h-3.74c.01-.36.03-.71.03-1.07v-12.18h3.71c2.15-.01 3.98 1.82 3.98 3.98zm-119.29 8.2v1.07h-3.98c-2.16 0-3.98-1.82-3.98-3.98v-5.29c0-2.16 1.82-3.98 3.98-3.98l3.98.22zm1.95-24.19c-7.33-13.69-.89-37.39 10.53-50.24 10.31-11.6 25.12-18.25 40.63-18.25 15.52 0 30.34 6.65 40.65 18.25 8.43 9.48 21.3 27.59 17.4 46.39-5.66-.35-10.67-2.55-14.4-6.36-5.37-5.49-7.72-14-6.63-23.94.29-2.62-1.17-5.13-3.6-6.17s-5.25-.37-6.95 1.65c-19.33 22.92-45.95 36.76-73.9 38.68h-3.73zm10.05 24.19v-12.73c24.57-2.92 47.92-14.05 66.73-31.8 1.43 7.26 4.63 13.6 9.45 18.52 3.27 3.35 7.14 5.89 11.41 7.58v18.42c0 24.15-19.65 43.8-43.8 43.8s-43.79-19.64-43.79-43.79zm15.89 78.48 19.29 19.29-13.29 13.29-15.84-27.66zm3.22 97.53h-39.42v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.76v-35.63c0-12.68 8.1-23.95 20.15-28.05.26-.09.51-.19.75-.31l46.47-23.23 20.07 35.06c.93 1.62 2.56 2.72 4.41 2.97.27.04.53.05.79.05 1.58 0 3.11-.62 4.24-1.76l.14-.14zm12.08 0 7.41-64.69 5.06-5.06 4.84 4.84 7.86 64.92h-25.17zm128.2 0h-39.76v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.18l-6.2-51.17.25.25c1.13 1.13 2.66 1.76 4.24 1.76.26 0 .53-.02.79-.05 1.85-.25 3.48-1.34 4.41-2.97l20.07-35.06 46.47 23.23c.24.12.49.23.75.31 12.05 4.1 20.15 15.38 20.15 28.05v35.65zm-67.04-346.65h-10.84l28.38 39.84 28.38-39.84h-10.84c-3.31 0-6-2.69-6-6v-64.58h-98.7c-3.31 0-6-2.69-6-6s2.69-6 6-6h104.7c3.31 0 6 2.69 6 6v64.58h16.48c2.25 0 4.3 1.25 5.33 3.25s.86 4.4-.45 6.23l-40.02 56.18c-1.13 1.58-2.95 2.52-4.89 2.52s-3.76-.94-4.89-2.52l-40.02-56.18c-1.3-1.83-1.48-4.23-.45-6.23s3.09-3.25 5.33-3.25h16.48v-23.5h-65.38c-3.31 0-6-2.69-6-6s2.69-6 6-6h71.38c3.31 0 6 2.69 6 6v35.5c.02 3.31-2.67 6-5.98 6zm-118.44 50.65v-133.26c0-21.18-17.23-38.41-38.41-38.41h-207.7c-21.18-.01-38.41 17.23-38.41 38.41v133.26c0 21.18 17.23 38.41 38.41 38.41h105.8l64.8 55.11c1.11.94 2.49 1.43 3.89 1.43.85 0 1.71-.18 2.52-.55 2.12-.98 3.48-3.11 3.48-5.45v-50.54h27.21c21.18 0 38.41-17.23 38.41-38.41zm-71.62 26.41c-3.31 0-6 2.69-6 6v43.56l-56.59-48.13c-1.08-.92-2.46-1.43-3.89-1.43h-108.01c-14.56 0-26.41-11.85-26.41-26.41v-133.26c0-14.56 11.85-26.41 26.41-26.41h207.69c14.56 0 26.41 11.85 26.41 26.41v133.26c0 14.56-11.85 26.41-26.41 26.41zm-156.34-87.87h56.97c3.31 0 6-2.69 6-6v-39.2l8.55-8.55c2.34-2.34 2.34-6.14 0-8.49-2.34-2.34-6.14-2.34-8.48 0l-.7.7c-.98-1.97-3.01-3.32-5.36-3.32h-56.98c-3.31 0-6 2.69-6 6v52.85c0 3.32 2.69 6.01 6 6.01zm6-52.86h44.97v2.69l-18.16 18.16-8.84-8.84c-2.34-2.34-6.14-2.34-8.49 0-2.34 2.34-2.34 6.14 0 8.49l13.08 13.08c1.17 1.17 2.71 1.76 4.24 1.76s3.07-.59 4.24-1.76l13.92-13.92v21.2h-44.96zm173.62 3.08c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 31.92c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 36.52c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.68 5.99 6zm0 31.92c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.69 5.99 6zm-119.36 165.01h10.84l-28.38-39.84-28.38 39.84h10.84c3.31 0 6 2.69 6 6v64.58h98.7c3.31 0 6 2.69 6 6s-2.69 6-6 6h-104.69c-3.31 0-6-2.69-6-6v-64.58h-16.48c-2.25 0-4.3-1.25-5.33-3.25s-.86-4.4.45-6.23l40.02-56.18c1.13-1.58 2.95-2.52 4.89-2.52s3.76.94 4.89 2.52l40.02 56.18c1.3 1.83 1.48 4.23.45 6.23s-3.09 3.25-5.33 3.25h-16.48v23.5h65.38c3.31 0 6 2.69 6 6s-2.69 6-6 6h-71.38c-3.31 0-6-2.69-6-6v-35.5c-.03-3.31 2.66-6 5.97-6z\"></path></svg>				\n									<h5>\n							ærlig<br> rådgivning						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 510 510\"><path d=\"m192.036 385.845c-4.787-46.972-19.459-64.336-30.658-82.352-8.672-13.951-15.5-28.245-15.5-54.252 0-60.242 48.865-109.109 109.135-109.109 60.242 0 109.109 48.866 109.109 109.109 0 26.007-6.828 40.301-15.5 54.252-11.199 18.016-25.871 35.38-30.658 82.352 9.985 2.864 17.345 12.101 17.345 22.975v36.44c0 13.109-10.747 23.866-23.893 23.866h-10.334v9.945c0 12.588-10.341 22.929-22.93 22.929h-46.304c-12.589 0-22.93-10.341-22.93-22.929v-9.945h-10.334c-13.146 0-23.893-10.757-23.893-23.866v-36.44c0-10.874 7.36-20.111 17.345-22.975zm111.948-.917c4.199-42.194 15.78-62.332 26.488-79.049 10.147-15.842 19.65-28.207 19.65-56.638 0-52.513-42.597-95.109-95.109-95.109-52.537 0-95.135 42.596-95.135 95.109 0 28.431 9.503 40.796 19.65 56.638 10.708 16.717 22.289 36.855 26.488 79.049zm2.554-78.61c-1.175 13.701-11.985 24.191-24.783 24.191-13.527 0-24.862-12.086-24.862-26.673v-99.328c0-14.12 11.335-26.673 24.862-26.673 11.309 0 21.031 8.139 23.975 19.497 9.12 3.904 15.688 13.438 15.688 24.78 0 1.153-.068 2.289-.201 3.403 5.078 5.326 8.283 12.802 8.283 21.117 0 6.39-1.889 12.262-5.06 17.053 1.996 4.099 3.13 8.773 3.13 13.76 0 14.1-9.065 25.697-21.032 28.873zm-16.452-109.977c-1.964-2.729-4.916-4.506-8.331-4.506-6.192 0-10.862 6.21-10.862 12.673v99.328c0 6.677 4.67 12.673 10.862 12.673 5.516 0 9.822-4.614 10.717-10.425-4.709-1.416-8.923-4.144-12.279-7.814-2.607-2.852-2.409-7.283.443-9.89 2.851-2.607 7.282-2.408 9.889.443 2.416 2.642 5.72 4.356 9.402 4.356 7.733 0 13.643-7.218 13.643-15.734s-5.91-15.734-13.643-15.734c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7 5.352 0 10.388 1.655 14.658 4.533.593-1.743.915-3.634.915-5.612 0-2.11-.366-4.128-1.036-5.972-.769.858-1.588 1.66-2.453 2.397-2.94 2.507-7.361 2.156-9.869-.784-2.507-2.939-2.155-7.361.784-9.868 2.773-2.365 4.492-6.122 4.492-10.293 0-6.072-3.705-11.374-8.898-12.467-.154-.023-.307-.052-.458-.085-.499-.08-1.01-.121-1.532-.121-2.947 0-5.591 1.389-7.515 3.525-2.585 2.87-7.015 3.101-9.886.515-2.87-2.586-3.101-7.015-.515-9.886 3.111-3.453 7.059-5.988 11.472-7.252zm-104.526 67.344c-3.171-4.791-5.06-10.663-5.06-17.053 0-8.307 3.198-15.777 8.284-21.104-.133-1.118-.202-2.258-.202-3.416 0-11.354 6.582-20.897 15.717-24.792 2.948-11.354 12.67-19.485 23.946-19.485 13.56 0 24.888 12.555 24.888 26.673v99.328c0 14.585-11.328 26.673-24.888 26.673-12.765 0-23.578-10.484-24.757-24.184-11.98-3.166-21.058-14.769-21.058-28.88 0-4.987 1.134-9.661 3.13-13.76zm9.982-23.036c-.675 1.847-1.042 3.869-1.042 5.983 0 1.978.322 3.869.915 5.612 4.27-2.878 9.306-4.533 14.658-4.533 3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7-7.733 0-13.643 7.218-13.643 15.734s5.91 15.734 13.643 15.734c3.682 0 6.986-1.714 9.402-4.356 2.607-2.851 7.038-3.05 9.889-.443 2.852 2.607 3.05 7.038.443 9.89-3.35 3.664-7.556 6.389-12.255 7.807.891 5.813 5.192 10.432 10.693 10.432 6.21 0 10.888-5.993 10.888-12.673v-99.328c0-6.466-4.678-12.673-10.888-12.673-3.404 0-6.349 1.777-8.309 4.507 4.421 1.264 8.367 3.8 11.476 7.251 2.586 2.871 2.355 7.3-.516 9.886-2.87 2.586-7.3 2.355-9.886-.515-1.926-2.138-4.574-3.525-7.54-3.525-.493 0-.976.037-1.448.108-.196.045-.395.082-.596.11-5.165 1.118-8.844 6.404-8.844 12.455 0 1.243.153 2.45.442 3.594.101.284.183.572.246.862.748 2.326 2.071 4.346 3.814 5.823 2.947 2.498 3.311 6.919.813 9.866s-6.919 3.312-9.866.814c-.878-.745-1.71-1.554-2.489-2.422zm3.042 158.279c-5.442 0-9.893 4.451-9.893 9.892v36.44c0 5.423 4.454 9.866 9.893 9.866h17.334c3.866 0 7 3.134 7 7v16.945c0 4.902 4.027 8.929 8.93 8.929h46.304c4.903 0 8.93-4.027 8.93-8.929v-16.945c0-3.866 3.134-7 7-7h17.334c5.439 0 9.893-4.443 9.893-9.866v-36.44c0-5.441-4.451-9.892-9.893-9.892zm63.416-314.093 2.907-5.412c1.828-3.403 6.075-4.683 9.479-2.854 3.403 1.828 4.682 6.075 2.854 9.479l-16.073 29.925c-1.22 2.271-3.589 3.688-6.167 3.688s-4.947-1.417-6.167-3.688l-16.073-29.925c-1.828-3.404-.549-7.651 2.854-9.479 3.404-1.829 7.651-.549 9.479 2.854l2.907 5.412v-69.835c0-3.863 3.137-7 7-7s7 3.137 7 7zm-132.198 54.758-49.381-49.381c-2.732-2.731-2.732-7.167 0-9.899s7.168-2.732 9.9 0l49.38 49.38-1.771-5.881c-1.114-3.7.985-7.608 4.684-8.722 3.7-1.114 7.607.985 8.721 4.685l9.796 32.526c.743 2.468.069 5.145-1.753 6.968-1.823 1.823-4.5 2.496-6.969 1.753l-32.526-9.795c-3.699-1.114-5.798-5.022-4.684-8.721s5.022-5.798 8.721-4.684zm-44.859 122.299h-69.835c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7h69.835l-5.412-2.907c-3.403-1.828-4.682-6.076-2.854-9.479 1.828-3.404 6.075-4.683 9.479-2.855l29.926 16.074c2.271 1.22 3.688 3.589 3.688 6.167 0 2.577-1.417 4.947-3.688 6.166l-29.926 16.074c-3.404 1.828-7.651.549-9.479-2.855-1.828-3.403-.549-7.651 2.854-9.479zm54.758 118.198-49.38 49.38c-2.732 2.732-7.168 2.732-9.9 0s-2.732-7.167 0-9.899l49.381-49.381-5.882 1.772c-3.699 1.114-7.607-.985-8.721-4.685-1.114-3.699.985-7.607 4.684-8.721l32.526-9.795c2.469-.743 5.146-.07 6.969 1.753 1.822 1.823 2.496 4.5 1.753 6.968l-9.796 32.527c-1.114 3.699-5.021 5.798-8.721 4.684-3.699-1.114-5.798-5.022-4.684-8.721zm240.497-240.497 5.882-1.771c3.699-1.114 7.607.985 8.721 4.684s-.985 7.607-4.684 8.721l-32.526 9.795c-2.469.743-5.146.07-6.969-1.753-1.822-1.823-2.496-4.5-1.753-6.968l9.796-32.526c1.114-3.7 5.021-5.799 8.721-4.685 3.699 1.114 5.798 5.022 4.684 8.722l-1.771 5.881 49.38-49.38c2.732-2.732 7.168-2.732 9.9 0s2.732 7.168 0 9.899zm44.859 122.299 5.412 2.906c3.403 1.828 4.682 6.076 2.854 9.479-1.828 3.404-6.075 4.683-9.479 2.855l-29.926-16.074c-2.271-1.219-3.688-3.589-3.688-6.166 0-2.578 1.417-4.947 3.688-6.167l29.926-16.074c3.404-1.828 7.651-.549 9.479 2.855 1.828 3.403.549 7.651-2.854 9.479l-5.412 2.907h69.835c3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7zm-54.758 118.198 1.771 5.882c1.114 3.699-.985 7.607-4.684 8.721-3.7 1.114-7.607-.985-8.721-4.684l-9.796-32.527c-.743-2.468-.069-5.145 1.753-6.968 1.823-1.823 4.5-2.496 6.969-1.753l32.526 9.795c3.699 1.114 5.798 5.022 4.684 8.721-1.114 3.7-5.022 5.799-8.721 4.685l-5.882-1.772 49.381 49.381c2.732 2.732 2.732 7.167 0 9.899s-7.168 2.732-9.9 0z\"></path></svg>				\n									<h5>\n							gennemtænkte løsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"outline\"><path d=\"M486.41,144A28,28,0,0,0,472,92H349.123l5.457-21.828a48.513,48.513,0,0,0-12.848-46.153A41.035,41.035,0,0,0,312.609,12H308a8.009,8.009,0,0,0-8,8V47.413l-19.233,64.112A17.376,17.376,0,0,1,268,123.539V112a4,4,0,0,0-4-4H152a4,4,0,0,0-4,4v72a4,4,0,0,0,8,0V116h72V276H156V248a4,4,0,0,0-8,0v32a4,4,0,0,0,4,4H264a4,4,0,0,0,4-4V268.5h11.168A37.07,37.07,0,0,1,305.092,279a45.025,45.025,0,0,0,31.48,12.752L440,292a27.987,27.987,0,0,0,19.369-48.2,27.987,27.987,0,0,0,16-48A28,28,0,0,0,486.41,144ZM260,276H236V116h24Zm212-88H396a4,4,0,0,0,0,8h60a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h40a20,20,0,0,1,.01,40l-103.428-.25a37.07,37.07,0,0,1-25.924-10.5,45.031,45.031,0,0,0-31.49-12.752H268V131.686a25.317,25.317,0,0,0,20.429-17.862l19.4-64.675A4,4,0,0,0,308,48V20h4.609a33.082,33.082,0,0,1,23.481,9.69,40.507,40.507,0,0,1,10.728,38.541l-6.7,26.8A4,4,0,0,0,344,100H472a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h72a20,20,0,0,1,0,40Z\"></path><path d=\"M194.5,183.243l-1.9-.217a4,4,0,0,0-4.169,2.491L184.29,195.9H135.278l-3.539-9.317a4,4,0,0,0-7.478,2.84l2.459,6.477h-8.474L68.452,156.872a4,4,0,1,0-4.935,6.3L77.6,174.209,56.961,194.48l-6.636-5.491a4,4,0,1,0-5.1,6.163L87.219,229.9a44.1,44.1,0,0,0,28.05,10.1H212a8.009,8.009,0,0,0,8-8V203.9a8.009,8.009,0,0,0-8-8h-8v-2.01A10.708,10.708,0,0,0,194.5,183.243ZM212,203.9V232H115.269a36.081,36.081,0,0,1-22.951-8.264l-29.16-24.128,20.8-20.422L114.4,203.045a4,4,0,0,0,2.468.852H187a4,4,0,0,0,3.715-2.517l3.929-9.843a2.712,2.712,0,0,1,1.356,2.35v6.01a4,4,0,0,0,4,4Z\"></path><path d=\"M223.084,484.672,200.87,469.863V346.36A44.1,44.1,0,0,0,195.327,325l-17.183-30.94a4,4,0,0,0-7,3.884l17.184,30.94a36.073,36.073,0,0,1,4.537,17.478V468H164.333a4,4,0,1,0,0,8h31.321l12,8H152.865V352a4,4,0,0,0-.358-1.655l-25.454-56A4,4,0,0,0,123.411,292H114.2a4,4,0,0,0-3.945,4.658l8.862,53.175a36.016,36.016,0,0,1-1.951,18.949L78.642,468H48.333a4,4,0,1,0,0,8H80.377L92,484H32.088L76.63,361.366a4.017,4.017,0,0,0,.183-2.044L61.1,268H136a4,4,0,0,0,0-8H59.233L30.555,173.966A19.723,19.723,0,0,1,49.27,148H76a12,12,0,0,0,24,0h15.2a21.975,21.975,0,0,1,8.395,1.652l10.889,4.458a4,4,0,1,0,3.032-7.4L126.63,142.25A29.938,29.938,0,0,0,115.2,140H100v-4.527A16.014,16.014,0,0,0,112,120V103.473A16.014,16.014,0,0,0,124,88V80a4,4,0,0,0-4-4H90A22.025,22.025,0,0,0,68,98v18a12.02,12.02,0,0,0,8,11.314V140H49.27a27.723,27.723,0,0,0-26.305,36.5l29.493,88.482,16.29,94.655-46.128,127A4,4,0,0,0,26.38,492h78.485a4,4,0,0,0,2.268-7.3L86.3,470.368l38.318-98.69a44.018,44.018,0,0,0,2.385-23.16L118.921,300h1.914l24.03,52.867V488a4,4,0,0,0,4,4h72a4,4,0,0,0,2.219-7.328ZM76,98A14.015,14.015,0,0,1,90,84h26v4a8.009,8.009,0,0,1-8,8H92a4,4,0,0,0-4,4,11.962,11.962,0,0,1-1.53,5.881A12.044,12.044,0,0,0,76,104.686Zm4,14a3.981,3.981,0,0,1,3.407,1.9,4,4,0,0,0,5.956.975c.207-.171.7-.648.7-.648.032-.028.061-.057.09-.087A19.907,19.907,0,0,0,95.6,104H104v16a8.009,8.009,0,0,1-8,8,12.133,12.133,0,0,1-2.681-.3,4,4,0,1,0-1.775,7.8c.151.035.3.06.456.091V148a4,4,0,1,1-8,0V124a4,4,0,0,0-4-4,4,4,0,0,1,0-8Z\"></path></g></svg>				\n									<h5>\n							arbejde udført med ansvar						\n					</h5>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 12:46:57', '2026-01-26 12:46:57', '', 10, 'https://mrarif.me/cpnordic/?p=485', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(486, 1, '2026-01-26 12:46:58', '2026-01-26 12:46:58', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>					\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle ANMELDELSER\n					</a>\n					<h2>HVORFOR VÆLGE CP NORDIC ApS?</h2>		<p>Når du vælger CP NORDIC ApS, får du:</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 450 450\" width=\"512\"><g><g><path d=\"m225 165.2c-25.9 0-48.9-18.8-53.3-45.2-2.4-14.2.9-28.6 9.3-40.3 8.4-11.8 20.9-19.5 35.1-21.9 29.4-4.9 57.3 15 62.2 44.5 4.9 29.4-15 57.3-44.4 62.2-3 .5-6 .7-8.9.7zm-7.6-99.8c-12.2 2-22.9 8.7-30.1 18.8s-10.1 22.4-8 34.6c3.8 22.7 23.5 38.8 45.7 38.8 2.5 0 5.1-.2 7.6-.6 25.2-4.2 42.3-28.1 38.1-53.4s-28.1-42.4-53.3-38.2z\"></path><path d=\"m255.2 115c-2.1 0-3.8-1.7-3.8-3.8 0-14.6-11.8-26.4-26.4-26.4-2.1 0-3.8-1.7-3.8-3.8s1.7-3.8 3.8-3.8c18.8 0 34.1 15.3 34.1 34.1 0 2-1.8 3.7-3.9 3.7z\"></path><path d=\"m236.1 203h-22.2c-2.1 0-3.8-1.7-3.8-3.8v-14.1c-3.1-.6-6.1-1.4-9.1-2.4l-7 12.2c-1.1 1.8-3.4 2.5-5.3 1.4l-19.2-11.1c-.9-.5-1.5-1.4-1.8-2.3-.3-1-.1-2 .4-2.9l7-12.1c-2.4-2.1-4.6-4.3-6.7-6.6l-12.1 7c-1.8 1.1-4.2.4-5.2-1.4l-11.1-19.2c-1.1-1.8-.4-4.2 1.4-5.2l11.9-6.8c-1-3-1.9-6.1-2.6-9.3h-13.7c-2.1 0-3.8-1.7-3.8-3.8v-22.2c0-2.1 1.7-3.8 3.8-3.8h13.4c.6-3.2 1.4-6.4 2.4-9.5l-11.5-6.6c-1.8-1.1-2.5-3.4-1.4-5.3l11.1-19.6c.5-.9 1.4-1.5 2.3-1.8s2-.1 2.9.4l11.3 6.6c2.2-2.5 4.5-4.8 7-7l-6.5-11.3c-.5-.9-.6-1.9-.4-2.9.3-1 .9-1.8 1.8-2.3l19.2-11.1c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l6.4 11.2c3.1-1.1 6.4-1.9 9.7-2.6v-13c0-2.1 1.7-3.8 3.8-3.8h22.2c2.1 0 3.8 1.7 3.8 3.8v12.8c3.3.7 6.5 1.5 9.7 2.6l6.5-11.2c.5-.9 1.4-1.5 2.3-1.8 1-.3 2-.1 2.9.4l19.2 11.1c.9.5 1.5 1.3 1.8 2.3s.1 2-.4 2.9l-6.5 11.3c2.5 2.2 4.8 4.5 7 7.1l11.3-6.6c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l11.1 19.2c1.1 1.8.4 4.2-1.4 5.3l-11.5 6.6c1 3.1 1.8 6.3 2.5 9.5h13.6c2.1 0 3.8 1.7 3.8 3.8v22.2c0 2.1-1.7 3.8-3.8 3.8h-13.6c-.6 3.1-1.5 6.2-2.5 9.3l11.9 6.8c1.8 1.1 2.5 3.4 1.4 5.2l-11.2 19.5c-1.1 1.8-3.4 2.5-5.2 1.4l-12-7c-2.1 2.4-4.4 4.6-6.7 6.6l7 12.1c.5.9.6 1.9.4 2.9s-.9 1.8-1.8 2.3l-19.2 11.1c-1.8 1.1-4.2.4-5.2-1.4l-7-12.2c-3 1-6 1.8-9.1 2.4v14.1c-.2 2.3-2 4-4.1 4zm-18.4-7.7h14.5v-13.5c0-1.9 1.4-3.5 3.3-3.8 4.7-.7 9.4-2 13.8-3.7 1.8-.7 3.8 0 4.7 1.7l6.7 11.6 12.6-7.3-6.7-11.6c-1-1.6-.5-3.7.9-4.9 3.7-3 7.2-6.4 10.2-10.1 1.2-1.5 3.3-1.8 4.9-.9l11.5 6.6 7.3-12.6-11.3-6.5c-1.6-.9-2.4-3-1.6-4.7 1.8-4.5 3.1-9.2 3.9-14 .3-1.9 1.9-3.2 3.8-3.2h13v-14.6h-12.8c-1.9 0-3.5-1.4-3.8-3.3-.7-4.8-2-9.6-3.7-14.2-.7-1.8 0-3.7 1.7-4.7l10.9-6.3-7.3-12.6-10.8 6.3c-1.6.9-3.7.6-4.9-.9-3.1-3.9-6.6-7.4-10.4-10.6-1.5-1.2-1.9-3.3-.9-4.9l6.2-10.7-12.6-7.3-6.1 10.6c-1 1.6-3 2.3-4.7 1.7-4.6-1.8-9.5-3.1-14.4-3.9-1.9-.3-3.3-1.9-3.3-3.8v-12.2h-14.5v12.3c0 1.9-1.4 3.5-3.3 3.8-5 .8-9.8 2.1-14.4 3.9-1.8.7-3.8 0-4.7-1.7l-6.1-10.6-12.6 7.3 6.2 10.7c.9 1.6.6 3.7-.9 4.9-3.9 3.1-7.4 6.7-10.4 10.6-1.2 1.5-3.3 1.9-4.9.9l-10.8-6.3-7.3 12.6 10.9 6.3c1.6.9 2.3 2.9 1.7 4.7-1.7 4.6-3 9.4-3.7 14.2-.3 1.9-1.9 3.3-3.8 3.3h-12.8v14.5h13c1.9 0 3.5 1.4 3.8 3.2.8 4.8 2.1 9.5 3.9 14 .7 1.8 0 3.8-1.6 4.7l-11.3 6.5 7.3 12.6 11.5-6.6c1.6-.9 3.7-.6 4.9.9 3 3.7 6.5 7.1 10.3 10.1 1.5 1.2 1.9 3.3.9 4.9l-6.7 11.6 12.6 7.3 6.7-11.6c.9-1.6 2.9-2.3 4.7-1.7 4.5 1.7 9.1 2.9 13.8 3.7 1.9.3 3.3 1.9 3.3 3.8z\"></path></g><g><g><g><path d=\"m45.3 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m153.9 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path></g><g><path d=\"m189.3 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.2c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c0 2.1-1.7 3.8-3.8 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m73.3 326.4c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m126 326.4c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m99.7 325.6c-.6 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4s4.1 1.1 4.4 3.2c2.4 16.5 12.3 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m50.2 266.6c-.1 0-.2 0-.3 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.7 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-8.9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.5 2.2zm81.8-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13.1-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.4-.7 2.3-.7z\"></path></g></g></g><g><g><path d=\"m296.1 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m404.7 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path></g><g><path d=\"m440 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.1c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c.2 2.1-1.6 3.8-3.7 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m324 326.3c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m376.7 326.3c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m350.4 325.6c-.5 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4 2.1-.3 4 1.1 4.4 3.2 2.4 16.5 12.4 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m301 266.6c-.1 0-.2 0-.4 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.6 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.4 2.2zm81.7-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.5-.7 2.3-.7z\"></path></g></g></g></g></g></svg>				\n									<h5>\n							et ungt og engageret team						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"496pt\" viewBox=\"0 0 496 496\" width=\"496pt\"><path d=\"m440 328h-28.207031c5.078125-6.703125 8.207031-14.960938 8.207031-24 0-8.824219-7.175781-16-16-16h-12v-19.960938c59.574219-14.445312 104-68.085937 104-132.039062 0-74.992188-61.007812-136-136-136s-136 61.007812-136 136c0 63.953125 44.425781 117.59375 104 132.039062v19.960938h-8.449219c-6.167969 0-12.359375 1.464844-17.886719 4.214844l-50.480468 25.25c-3.320313 1.664062-7.03125 2.535156-10.734375 2.535156h-40.449219v-16h-104v16h56v56h16v-56h16v128h-16v-56h-16v56h-56v16h104v-16h40.449219c3.703125 0 7.414062.871094 10.734375 2.527344l34.488281 17.25c5.519531 2.757812 11.710937 4.222656 17.878906 4.222656h24.449219v24h64v-24h48c13.230469 0 24-10.769531 24-24 0-6.167969-2.40625-11.742188-6.238281-16 3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16 0-13.230469-10.769531-24-24-24zm8 24c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm-208-280c0-66.167969 53.832031-120 120-120s120 53.832031 120 120-53.832031 120-120 120-120-53.832031-120-120zm104 134.976562c5.257812.617188 10.574219 1.023438 16 1.023438s10.742188-.40625 16-1.023438v17.023438h-32zm-40.449219 185.023438c-3.703125 0-7.414062-.871094-10.734375-2.527344l-34.488281-17.25c-5.519531-2.757812-11.710937-4.222656-17.878906-4.222656h-40.449219v-96h40.449219c6.167969 0 12.359375-1.464844 17.886719-4.214844l50.480468-25.25c3.320313-1.664062 7.03125-2.535156 10.734375-2.535156h84.449219c0 13.230469-10.769531 24-24 24h-48.28125l-23.863281 35.808594c-6.101563 9.160156-14.527344 16.589844-24.367188 21.503906-8.753906 4.375-18.542969 6.6875-28.320312 6.6875h-15.167969v16h15.167969c12.246093 0 24.519531-2.894531 35.472656-8.375 12.328125-6.160156 22.878906-15.480469 30.527344-26.945312l6.832031-10.253907v93.574219zm40.449219 24v-136h17.472656c-.898437 2.511719-1.472656 5.183594-1.472656 8 0 6.167969 2.40625 11.742188 6.238281 16-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16 0 10.414062 6.710938 19.214844 16 22.527344v9.472656zm96-24h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8s-3.59375 8-8 8zm0 0\"></path><path d=\"m394.878906 73.007812-7.757812 13.984376c17.816406 9.878906 28.878906 28.664062 28.878906 49.007812h16c0-26.160156-14.222656-50.296875-37.121094-62.992188zm0 0\"></path><path d=\"m360 80c4.734375 0 9.449219.59375 14.007812 1.769531l3.976563-15.503906c-5.855469-1.496094-11.90625-2.265625-17.984375-2.265625zm0 0\"></path><path d=\"m360 48c48.519531 0 88 39.480469 88 88 0 20.753906-7.398438 40.910156-20.832031 56.785156l12.207031 10.34375c15.882812-18.761718 24.625-42.601562 24.625-67.128906 0-57.34375-46.65625-104-104-104-24.527344 0-48.367188 8.753906-67.128906 24.632812l10.335937 12.199219c15.871094-13.433593 36.039063-20.832031 56.792969-20.832031zm0 0\"></path><path d=\"m427.128906 215.367188-10.335937-12.199219c-15.871094 13.433593-36.039063 20.832031-56.792969 20.832031-48.519531 0-88-39.480469-88-88 0-20.753906 7.398438-40.910156 20.832031-56.785156l-12.207031-10.34375c-15.882812 18.761718-24.625 42.601562-24.625 67.128906 0 57.34375 46.65625 104 104 104 24.527344 0 48.367188-8.753906 67.128906-24.632812zm0 0\"></path><path d=\"m121.214844 165.640625c4.953125-1.375 9.695312-3.34375 14.183594-5.878906l9.769531 4.886719 19.472656-19.480469-4.886719-9.769531c2.535156-4.496094 4.503906-9.230469 5.886719-14.183594l10.359375-3.445313v-27.53125l-10.351562-3.453125c-1.375-4.953125-3.34375-9.707031-5.886719-14.183594l4.886719-9.777343-19.472657-19.472657-9.769531 4.886719c-4.484375-2.535156-9.230469-4.503906-14.183594-5.878906l-3.453125-10.359375h-27.539062l-3.445313 10.359375c-4.953125 1.375-9.695312 3.34375-14.183594 5.878906l-9.777343-4.886719-19.472657 19.472657 4.886719 9.777343c-2.535156 4.488282-4.503906 9.230469-5.886719 14.183594l-10.351562 3.445313v27.53125l10.351562 3.453125c1.375 4.953125 3.34375 9.695312 5.886719 14.183594l-4.886719 9.769531 19.472657 19.480469 9.769531-4.886719c4.484375 2.535156 9.230469 4.503906 14.183594 5.878906l3.453125 10.359375h27.539062zm-12.304688-13.679687-2.679687 8.039062h-4.460938l-2.679687-8.039062-4.554688-.90625c-6.128906-1.222657-11.878906-3.605469-17.109375-7.09375l-3.867187-2.578126-7.574219 3.800782-3.160156-3.167969 3.792969-7.582031-2.578126-3.859375c-3.488281-5.222657-5.871093-10.980469-7.09375-17.109375l-.914062-4.554688-8.03125-2.679687v-4.46875l8.03125-2.671875.914062-4.554688c1.222657-6.136718 3.613282-11.886718 7.09375-17.109375l2.578126-3.859375-3.792969-7.589844 3.160156-3.160156 7.574219 3.800782 3.867187-2.578126c5.222657-3.488281 10.980469-5.863281 17.109375-7.09375l4.554688-.90625 2.679687-8.039062h4.460938l2.679687 8.039062 4.554688.90625c6.128906 1.222657 11.878906 3.605469 17.109375 7.09375l3.867187 2.578126 7.574219-3.800782 3.160156 3.160156-3.792969 7.589844 2.578126 3.859375c3.488281 5.214844 5.871093 10.972657 7.09375 17.109375l.914062 4.554688 8.03125 2.679687v4.46875l-8.03125 2.671875-.914062 4.554688c-1.222657 6.128906-3.613282 11.878906-7.09375 17.109375l-2.578126 3.859375 3.792969 7.582031-3.160156 3.167969-7.574219-3.800782-3.867187 2.578126c-5.222657 3.488281-10.980469 5.863281-17.109375 7.09375zm0 0\"></path><path d=\"m104 72c-17.648438 0-32 14.351562-32 32s14.351562 32 32 32 32-14.351562 32-32-14.351562-32-32-32zm0 48c-8.824219 0-16-7.175781-16-16s7.175781-16 16-16 16 7.175781 16 16-7.175781 16-16 16zm0 0\"></path><path d=\"m160 248v-40h48v-208h-208v208h106.664062zm-144-232h176v176h-48v24l-32-24h-96zm0 0\"></path><path d=\"m0 272h16v16h-16zm0 0\"></path><path d=\"m32 272h16v16h-16zm0 0\"></path><path d=\"m64 272h16v16h-16zm0 0\"></path><path d=\"m32 304h16v16h-16zm0 0\"></path><path d=\"m64 304h16v16h-16zm0 0\"></path><path d=\"m0 480h16v16h-16zm0 0\"></path><path d=\"m32 480h16v16h-16zm0 0\"></path><path d=\"m64 480h16v16h-16zm0 0\"></path><path d=\"m32 448h16v16h-16zm0 0\"></path><path d=\"m64 448h16v16h-16zm0 0\"></path></svg>				\n									<h5>\n							fokus på kvalitet og detaljer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m469.12 408.93-67.26-33.63v-22.13c10.71-7.69 18.6-19.07 21.78-32.27h5.28c8.81 0 15.98-7.17 15.98-15.98v-5.29c0-6.35-3.74-11.84-9.12-14.41 5.19-18.64-1.65-39.76-19.44-59.78-12.58-14.16-30.67-22.27-49.62-22.27-18.93 0-37.01 8.12-49.59 22.27-13.38 15.05-20.95 41.01-14.03 59.62-5.56 2.5-9.45 8.09-9.45 14.57v5.29c0 8.81 7.17 15.98 15.98 15.98h5.55c3.16 13.09 10.94 24.39 21.51 32.08v22.32l-67.26 33.63c-16.7 5.87-27.89 21.6-27.89 39.28v41.63c0 3.31 2.69 6 6 6h243.46c3.31 0 6-2.69 6-6v-41.63c0-17.68-11.19-33.41-27.88-39.28zm-62.24-17.7-15.83 27.66-13.29-13.29 19.29-19.29zm-37.61 5.88-20.59-20.58v-16.91c6.41 2.57 13.4 4.01 20.72 4.01 7.22 0 14.11-1.39 20.45-3.9v16.8zm63.63-97.48v5.29c0 2.16-1.82 3.98-3.98 3.98h-3.74c.01-.36.03-.71.03-1.07v-12.18h3.71c2.15-.01 3.98 1.82 3.98 3.98zm-119.29 8.2v1.07h-3.98c-2.16 0-3.98-1.82-3.98-3.98v-5.29c0-2.16 1.82-3.98 3.98-3.98l3.98.22zm1.95-24.19c-7.33-13.69-.89-37.39 10.53-50.24 10.31-11.6 25.12-18.25 40.63-18.25 15.52 0 30.34 6.65 40.65 18.25 8.43 9.48 21.3 27.59 17.4 46.39-5.66-.35-10.67-2.55-14.4-6.36-5.37-5.49-7.72-14-6.63-23.94.29-2.62-1.17-5.13-3.6-6.17s-5.25-.37-6.95 1.65c-19.33 22.92-45.95 36.76-73.9 38.68h-3.73zm10.05 24.19v-12.73c24.57-2.92 47.92-14.05 66.73-31.8 1.43 7.26 4.63 13.6 9.45 18.52 3.27 3.35 7.14 5.89 11.41 7.58v18.42c0 24.15-19.65 43.8-43.8 43.8s-43.79-19.64-43.79-43.79zm15.89 78.48 19.29 19.29-13.29 13.29-15.84-27.66zm3.22 97.53h-39.42v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.76v-35.63c0-12.68 8.1-23.95 20.15-28.05.26-.09.51-.19.75-.31l46.47-23.23 20.07 35.06c.93 1.62 2.56 2.72 4.41 2.97.27.04.53.05.79.05 1.58 0 3.11-.62 4.24-1.76l.14-.14zm12.08 0 7.41-64.69 5.06-5.06 4.84 4.84 7.86 64.92h-25.17zm128.2 0h-39.76v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.18l-6.2-51.17.25.25c1.13 1.13 2.66 1.76 4.24 1.76.26 0 .53-.02.79-.05 1.85-.25 3.48-1.34 4.41-2.97l20.07-35.06 46.47 23.23c.24.12.49.23.75.31 12.05 4.1 20.15 15.38 20.15 28.05v35.65zm-67.04-346.65h-10.84l28.38 39.84 28.38-39.84h-10.84c-3.31 0-6-2.69-6-6v-64.58h-98.7c-3.31 0-6-2.69-6-6s2.69-6 6-6h104.7c3.31 0 6 2.69 6 6v64.58h16.48c2.25 0 4.3 1.25 5.33 3.25s.86 4.4-.45 6.23l-40.02 56.18c-1.13 1.58-2.95 2.52-4.89 2.52s-3.76-.94-4.89-2.52l-40.02-56.18c-1.3-1.83-1.48-4.23-.45-6.23s3.09-3.25 5.33-3.25h16.48v-23.5h-65.38c-3.31 0-6-2.69-6-6s2.69-6 6-6h71.38c3.31 0 6 2.69 6 6v35.5c.02 3.31-2.67 6-5.98 6zm-118.44 50.65v-133.26c0-21.18-17.23-38.41-38.41-38.41h-207.7c-21.18-.01-38.41 17.23-38.41 38.41v133.26c0 21.18 17.23 38.41 38.41 38.41h105.8l64.8 55.11c1.11.94 2.49 1.43 3.89 1.43.85 0 1.71-.18 2.52-.55 2.12-.98 3.48-3.11 3.48-5.45v-50.54h27.21c21.18 0 38.41-17.23 38.41-38.41zm-71.62 26.41c-3.31 0-6 2.69-6 6v43.56l-56.59-48.13c-1.08-.92-2.46-1.43-3.89-1.43h-108.01c-14.56 0-26.41-11.85-26.41-26.41v-133.26c0-14.56 11.85-26.41 26.41-26.41h207.69c14.56 0 26.41 11.85 26.41 26.41v133.26c0 14.56-11.85 26.41-26.41 26.41zm-156.34-87.87h56.97c3.31 0 6-2.69 6-6v-39.2l8.55-8.55c2.34-2.34 2.34-6.14 0-8.49-2.34-2.34-6.14-2.34-8.48 0l-.7.7c-.98-1.97-3.01-3.32-5.36-3.32h-56.98c-3.31 0-6 2.69-6 6v52.85c0 3.32 2.69 6.01 6 6.01zm6-52.86h44.97v2.69l-18.16 18.16-8.84-8.84c-2.34-2.34-6.14-2.34-8.49 0-2.34 2.34-2.34 6.14 0 8.49l13.08 13.08c1.17 1.17 2.71 1.76 4.24 1.76s3.07-.59 4.24-1.76l13.92-13.92v21.2h-44.96zm173.62 3.08c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 31.92c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 36.52c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.68 5.99 6zm0 31.92c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.69 5.99 6zm-119.36 165.01h10.84l-28.38-39.84-28.38 39.84h10.84c3.31 0 6 2.69 6 6v64.58h98.7c3.31 0 6 2.69 6 6s-2.69 6-6 6h-104.69c-3.31 0-6-2.69-6-6v-64.58h-16.48c-2.25 0-4.3-1.25-5.33-3.25s-.86-4.4.45-6.23l40.02-56.18c1.13-1.58 2.95-2.52 4.89-2.52s3.76.94 4.89 2.52l40.02 56.18c1.3 1.83 1.48 4.23.45 6.23s-3.09 3.25-5.33 3.25h-16.48v23.5h65.38c3.31 0 6 2.69 6 6s-2.69 6-6 6h-71.38c-3.31 0-6-2.69-6-6v-35.5c-.03-3.31 2.66-6 5.97-6z\"></path></svg>				\n									<h5>\n							ærlig<br> rådgivning						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 510 510\"><path d=\"m192.036 385.845c-4.787-46.972-19.459-64.336-30.658-82.352-8.672-13.951-15.5-28.245-15.5-54.252 0-60.242 48.865-109.109 109.135-109.109 60.242 0 109.109 48.866 109.109 109.109 0 26.007-6.828 40.301-15.5 54.252-11.199 18.016-25.871 35.38-30.658 82.352 9.985 2.864 17.345 12.101 17.345 22.975v36.44c0 13.109-10.747 23.866-23.893 23.866h-10.334v9.945c0 12.588-10.341 22.929-22.93 22.929h-46.304c-12.589 0-22.93-10.341-22.93-22.929v-9.945h-10.334c-13.146 0-23.893-10.757-23.893-23.866v-36.44c0-10.874 7.36-20.111 17.345-22.975zm111.948-.917c4.199-42.194 15.78-62.332 26.488-79.049 10.147-15.842 19.65-28.207 19.65-56.638 0-52.513-42.597-95.109-95.109-95.109-52.537 0-95.135 42.596-95.135 95.109 0 28.431 9.503 40.796 19.65 56.638 10.708 16.717 22.289 36.855 26.488 79.049zm2.554-78.61c-1.175 13.701-11.985 24.191-24.783 24.191-13.527 0-24.862-12.086-24.862-26.673v-99.328c0-14.12 11.335-26.673 24.862-26.673 11.309 0 21.031 8.139 23.975 19.497 9.12 3.904 15.688 13.438 15.688 24.78 0 1.153-.068 2.289-.201 3.403 5.078 5.326 8.283 12.802 8.283 21.117 0 6.39-1.889 12.262-5.06 17.053 1.996 4.099 3.13 8.773 3.13 13.76 0 14.1-9.065 25.697-21.032 28.873zm-16.452-109.977c-1.964-2.729-4.916-4.506-8.331-4.506-6.192 0-10.862 6.21-10.862 12.673v99.328c0 6.677 4.67 12.673 10.862 12.673 5.516 0 9.822-4.614 10.717-10.425-4.709-1.416-8.923-4.144-12.279-7.814-2.607-2.852-2.409-7.283.443-9.89 2.851-2.607 7.282-2.408 9.889.443 2.416 2.642 5.72 4.356 9.402 4.356 7.733 0 13.643-7.218 13.643-15.734s-5.91-15.734-13.643-15.734c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7 5.352 0 10.388 1.655 14.658 4.533.593-1.743.915-3.634.915-5.612 0-2.11-.366-4.128-1.036-5.972-.769.858-1.588 1.66-2.453 2.397-2.94 2.507-7.361 2.156-9.869-.784-2.507-2.939-2.155-7.361.784-9.868 2.773-2.365 4.492-6.122 4.492-10.293 0-6.072-3.705-11.374-8.898-12.467-.154-.023-.307-.052-.458-.085-.499-.08-1.01-.121-1.532-.121-2.947 0-5.591 1.389-7.515 3.525-2.585 2.87-7.015 3.101-9.886.515-2.87-2.586-3.101-7.015-.515-9.886 3.111-3.453 7.059-5.988 11.472-7.252zm-104.526 67.344c-3.171-4.791-5.06-10.663-5.06-17.053 0-8.307 3.198-15.777 8.284-21.104-.133-1.118-.202-2.258-.202-3.416 0-11.354 6.582-20.897 15.717-24.792 2.948-11.354 12.67-19.485 23.946-19.485 13.56 0 24.888 12.555 24.888 26.673v99.328c0 14.585-11.328 26.673-24.888 26.673-12.765 0-23.578-10.484-24.757-24.184-11.98-3.166-21.058-14.769-21.058-28.88 0-4.987 1.134-9.661 3.13-13.76zm9.982-23.036c-.675 1.847-1.042 3.869-1.042 5.983 0 1.978.322 3.869.915 5.612 4.27-2.878 9.306-4.533 14.658-4.533 3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7-7.733 0-13.643 7.218-13.643 15.734s5.91 15.734 13.643 15.734c3.682 0 6.986-1.714 9.402-4.356 2.607-2.851 7.038-3.05 9.889-.443 2.852 2.607 3.05 7.038.443 9.89-3.35 3.664-7.556 6.389-12.255 7.807.891 5.813 5.192 10.432 10.693 10.432 6.21 0 10.888-5.993 10.888-12.673v-99.328c0-6.466-4.678-12.673-10.888-12.673-3.404 0-6.349 1.777-8.309 4.507 4.421 1.264 8.367 3.8 11.476 7.251 2.586 2.871 2.355 7.3-.516 9.886-2.87 2.586-7.3 2.355-9.886-.515-1.926-2.138-4.574-3.525-7.54-3.525-.493 0-.976.037-1.448.108-.196.045-.395.082-.596.11-5.165 1.118-8.844 6.404-8.844 12.455 0 1.243.153 2.45.442 3.594.101.284.183.572.246.862.748 2.326 2.071 4.346 3.814 5.823 2.947 2.498 3.311 6.919.813 9.866s-6.919 3.312-9.866.814c-.878-.745-1.71-1.554-2.489-2.422zm3.042 158.279c-5.442 0-9.893 4.451-9.893 9.892v36.44c0 5.423 4.454 9.866 9.893 9.866h17.334c3.866 0 7 3.134 7 7v16.945c0 4.902 4.027 8.929 8.93 8.929h46.304c4.903 0 8.93-4.027 8.93-8.929v-16.945c0-3.866 3.134-7 7-7h17.334c5.439 0 9.893-4.443 9.893-9.866v-36.44c0-5.441-4.451-9.892-9.893-9.892zm63.416-314.093 2.907-5.412c1.828-3.403 6.075-4.683 9.479-2.854 3.403 1.828 4.682 6.075 2.854 9.479l-16.073 29.925c-1.22 2.271-3.589 3.688-6.167 3.688s-4.947-1.417-6.167-3.688l-16.073-29.925c-1.828-3.404-.549-7.651 2.854-9.479 3.404-1.829 7.651-.549 9.479 2.854l2.907 5.412v-69.835c0-3.863 3.137-7 7-7s7 3.137 7 7zm-132.198 54.758-49.381-49.381c-2.732-2.731-2.732-7.167 0-9.899s7.168-2.732 9.9 0l49.38 49.38-1.771-5.881c-1.114-3.7.985-7.608 4.684-8.722 3.7-1.114 7.607.985 8.721 4.685l9.796 32.526c.743 2.468.069 5.145-1.753 6.968-1.823 1.823-4.5 2.496-6.969 1.753l-32.526-9.795c-3.699-1.114-5.798-5.022-4.684-8.721s5.022-5.798 8.721-4.684zm-44.859 122.299h-69.835c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7h69.835l-5.412-2.907c-3.403-1.828-4.682-6.076-2.854-9.479 1.828-3.404 6.075-4.683 9.479-2.855l29.926 16.074c2.271 1.22 3.688 3.589 3.688 6.167 0 2.577-1.417 4.947-3.688 6.166l-29.926 16.074c-3.404 1.828-7.651.549-9.479-2.855-1.828-3.403-.549-7.651 2.854-9.479zm54.758 118.198-49.38 49.38c-2.732 2.732-7.168 2.732-9.9 0s-2.732-7.167 0-9.899l49.381-49.381-5.882 1.772c-3.699 1.114-7.607-.985-8.721-4.685-1.114-3.699.985-7.607 4.684-8.721l32.526-9.795c2.469-.743 5.146-.07 6.969 1.753 1.822 1.823 2.496 4.5 1.753 6.968l-9.796 32.527c-1.114 3.699-5.021 5.798-8.721 4.684-3.699-1.114-5.798-5.022-4.684-8.721zm240.497-240.497 5.882-1.771c3.699-1.114 7.607.985 8.721 4.684s-.985 7.607-4.684 8.721l-32.526 9.795c-2.469.743-5.146.07-6.969-1.753-1.822-1.823-2.496-4.5-1.753-6.968l9.796-32.526c1.114-3.7 5.021-5.799 8.721-4.685 3.699 1.114 5.798 5.022 4.684 8.722l-1.771 5.881 49.38-49.38c2.732-2.732 7.168-2.732 9.9 0s2.732 7.168 0 9.899zm44.859 122.299 5.412 2.906c3.403 1.828 4.682 6.076 2.854 9.479-1.828 3.404-6.075 4.683-9.479 2.855l-29.926-16.074c-2.271-1.219-3.688-3.589-3.688-6.166 0-2.578 1.417-4.947 3.688-6.167l29.926-16.074c3.404-1.828 7.651-.549 9.479 2.855 1.828 3.403.549 7.651-2.854 9.479l-5.412 2.907h69.835c3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7zm-54.758 118.198 1.771 5.882c1.114 3.699-.985 7.607-4.684 8.721-3.7 1.114-7.607-.985-8.721-4.684l-9.796-32.527c-.743-2.468-.069-5.145 1.753-6.968 1.823-1.823 4.5-2.496 6.969-1.753l32.526 9.795c3.699 1.114 5.798 5.022 4.684 8.721-1.114 3.7-5.022 5.799-8.721 4.685l-5.882-1.772 49.381 49.381c2.732 2.732 2.732 7.167 0 9.899s-7.168 2.732-9.9 0z\"></path></svg>				\n									<h5>\n							gennemtænkte løsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"outline\"><path d=\"M486.41,144A28,28,0,0,0,472,92H349.123l5.457-21.828a48.513,48.513,0,0,0-12.848-46.153A41.035,41.035,0,0,0,312.609,12H308a8.009,8.009,0,0,0-8,8V47.413l-19.233,64.112A17.376,17.376,0,0,1,268,123.539V112a4,4,0,0,0-4-4H152a4,4,0,0,0-4,4v72a4,4,0,0,0,8,0V116h72V276H156V248a4,4,0,0,0-8,0v32a4,4,0,0,0,4,4H264a4,4,0,0,0,4-4V268.5h11.168A37.07,37.07,0,0,1,305.092,279a45.025,45.025,0,0,0,31.48,12.752L440,292a27.987,27.987,0,0,0,19.369-48.2,27.987,27.987,0,0,0,16-48A28,28,0,0,0,486.41,144ZM260,276H236V116h24Zm212-88H396a4,4,0,0,0,0,8h60a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h40a20,20,0,0,1,.01,40l-103.428-.25a37.07,37.07,0,0,1-25.924-10.5,45.031,45.031,0,0,0-31.49-12.752H268V131.686a25.317,25.317,0,0,0,20.429-17.862l19.4-64.675A4,4,0,0,0,308,48V20h4.609a33.082,33.082,0,0,1,23.481,9.69,40.507,40.507,0,0,1,10.728,38.541l-6.7,26.8A4,4,0,0,0,344,100H472a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h72a20,20,0,0,1,0,40Z\"></path><path d=\"M194.5,183.243l-1.9-.217a4,4,0,0,0-4.169,2.491L184.29,195.9H135.278l-3.539-9.317a4,4,0,0,0-7.478,2.84l2.459,6.477h-8.474L68.452,156.872a4,4,0,1,0-4.935,6.3L77.6,174.209,56.961,194.48l-6.636-5.491a4,4,0,1,0-5.1,6.163L87.219,229.9a44.1,44.1,0,0,0,28.05,10.1H212a8.009,8.009,0,0,0,8-8V203.9a8.009,8.009,0,0,0-8-8h-8v-2.01A10.708,10.708,0,0,0,194.5,183.243ZM212,203.9V232H115.269a36.081,36.081,0,0,1-22.951-8.264l-29.16-24.128,20.8-20.422L114.4,203.045a4,4,0,0,0,2.468.852H187a4,4,0,0,0,3.715-2.517l3.929-9.843a2.712,2.712,0,0,1,1.356,2.35v6.01a4,4,0,0,0,4,4Z\"></path><path d=\"M223.084,484.672,200.87,469.863V346.36A44.1,44.1,0,0,0,195.327,325l-17.183-30.94a4,4,0,0,0-7,3.884l17.184,30.94a36.073,36.073,0,0,1,4.537,17.478V468H164.333a4,4,0,1,0,0,8h31.321l12,8H152.865V352a4,4,0,0,0-.358-1.655l-25.454-56A4,4,0,0,0,123.411,292H114.2a4,4,0,0,0-3.945,4.658l8.862,53.175a36.016,36.016,0,0,1-1.951,18.949L78.642,468H48.333a4,4,0,1,0,0,8H80.377L92,484H32.088L76.63,361.366a4.017,4.017,0,0,0,.183-2.044L61.1,268H136a4,4,0,0,0,0-8H59.233L30.555,173.966A19.723,19.723,0,0,1,49.27,148H76a12,12,0,0,0,24,0h15.2a21.975,21.975,0,0,1,8.395,1.652l10.889,4.458a4,4,0,1,0,3.032-7.4L126.63,142.25A29.938,29.938,0,0,0,115.2,140H100v-4.527A16.014,16.014,0,0,0,112,120V103.473A16.014,16.014,0,0,0,124,88V80a4,4,0,0,0-4-4H90A22.025,22.025,0,0,0,68,98v18a12.02,12.02,0,0,0,8,11.314V140H49.27a27.723,27.723,0,0,0-26.305,36.5l29.493,88.482,16.29,94.655-46.128,127A4,4,0,0,0,26.38,492h78.485a4,4,0,0,0,2.268-7.3L86.3,470.368l38.318-98.69a44.018,44.018,0,0,0,2.385-23.16L118.921,300h1.914l24.03,52.867V488a4,4,0,0,0,4,4h72a4,4,0,0,0,2.219-7.328ZM76,98A14.015,14.015,0,0,1,90,84h26v4a8.009,8.009,0,0,1-8,8H92a4,4,0,0,0-4,4,11.962,11.962,0,0,1-1.53,5.881A12.044,12.044,0,0,0,76,104.686Zm4,14a3.981,3.981,0,0,1,3.407,1.9,4,4,0,0,0,5.956.975c.207-.171.7-.648.7-.648.032-.028.061-.057.09-.087A19.907,19.907,0,0,0,95.6,104H104v16a8.009,8.009,0,0,1-8,8,12.133,12.133,0,0,1-2.681-.3,4,4,0,1,0-1.775,7.8c.151.035.3.06.456.091V148a4,4,0,1,1-8,0V124a4,4,0,0,0-4-4,4,4,0,0,1,0-8Z\"></path></g></svg>				\n									<h5>\n							arbejde udført med ansvar						\n					</h5>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 12:46:58', '2026-01-26 12:46:58', '', 10, 'https://mrarif.me/cpnordic/?p=486', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(487, 1, '2026-01-26 12:46:58', '2026-01-26 12:46:58', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>					\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle ANMELDELSER\n					</a>\n					<h2>HVORFOR VÆLGE CP NORDIC ApS?</h2>		<p>Når du vælger CP NORDIC ApS, får du:</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 450 450\" width=\"512\"><g><g><path d=\"m225 165.2c-25.9 0-48.9-18.8-53.3-45.2-2.4-14.2.9-28.6 9.3-40.3 8.4-11.8 20.9-19.5 35.1-21.9 29.4-4.9 57.3 15 62.2 44.5 4.9 29.4-15 57.3-44.4 62.2-3 .5-6 .7-8.9.7zm-7.6-99.8c-12.2 2-22.9 8.7-30.1 18.8s-10.1 22.4-8 34.6c3.8 22.7 23.5 38.8 45.7 38.8 2.5 0 5.1-.2 7.6-.6 25.2-4.2 42.3-28.1 38.1-53.4s-28.1-42.4-53.3-38.2z\"></path><path d=\"m255.2 115c-2.1 0-3.8-1.7-3.8-3.8 0-14.6-11.8-26.4-26.4-26.4-2.1 0-3.8-1.7-3.8-3.8s1.7-3.8 3.8-3.8c18.8 0 34.1 15.3 34.1 34.1 0 2-1.8 3.7-3.9 3.7z\"></path><path d=\"m236.1 203h-22.2c-2.1 0-3.8-1.7-3.8-3.8v-14.1c-3.1-.6-6.1-1.4-9.1-2.4l-7 12.2c-1.1 1.8-3.4 2.5-5.3 1.4l-19.2-11.1c-.9-.5-1.5-1.4-1.8-2.3-.3-1-.1-2 .4-2.9l7-12.1c-2.4-2.1-4.6-4.3-6.7-6.6l-12.1 7c-1.8 1.1-4.2.4-5.2-1.4l-11.1-19.2c-1.1-1.8-.4-4.2 1.4-5.2l11.9-6.8c-1-3-1.9-6.1-2.6-9.3h-13.7c-2.1 0-3.8-1.7-3.8-3.8v-22.2c0-2.1 1.7-3.8 3.8-3.8h13.4c.6-3.2 1.4-6.4 2.4-9.5l-11.5-6.6c-1.8-1.1-2.5-3.4-1.4-5.3l11.1-19.6c.5-.9 1.4-1.5 2.3-1.8s2-.1 2.9.4l11.3 6.6c2.2-2.5 4.5-4.8 7-7l-6.5-11.3c-.5-.9-.6-1.9-.4-2.9.3-1 .9-1.8 1.8-2.3l19.2-11.1c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l6.4 11.2c3.1-1.1 6.4-1.9 9.7-2.6v-13c0-2.1 1.7-3.8 3.8-3.8h22.2c2.1 0 3.8 1.7 3.8 3.8v12.8c3.3.7 6.5 1.5 9.7 2.6l6.5-11.2c.5-.9 1.4-1.5 2.3-1.8 1-.3 2-.1 2.9.4l19.2 11.1c.9.5 1.5 1.3 1.8 2.3s.1 2-.4 2.9l-6.5 11.3c2.5 2.2 4.8 4.5 7 7.1l11.3-6.6c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l11.1 19.2c1.1 1.8.4 4.2-1.4 5.3l-11.5 6.6c1 3.1 1.8 6.3 2.5 9.5h13.6c2.1 0 3.8 1.7 3.8 3.8v22.2c0 2.1-1.7 3.8-3.8 3.8h-13.6c-.6 3.1-1.5 6.2-2.5 9.3l11.9 6.8c1.8 1.1 2.5 3.4 1.4 5.2l-11.2 19.5c-1.1 1.8-3.4 2.5-5.2 1.4l-12-7c-2.1 2.4-4.4 4.6-6.7 6.6l7 12.1c.5.9.6 1.9.4 2.9s-.9 1.8-1.8 2.3l-19.2 11.1c-1.8 1.1-4.2.4-5.2-1.4l-7-12.2c-3 1-6 1.8-9.1 2.4v14.1c-.2 2.3-2 4-4.1 4zm-18.4-7.7h14.5v-13.5c0-1.9 1.4-3.5 3.3-3.8 4.7-.7 9.4-2 13.8-3.7 1.8-.7 3.8 0 4.7 1.7l6.7 11.6 12.6-7.3-6.7-11.6c-1-1.6-.5-3.7.9-4.9 3.7-3 7.2-6.4 10.2-10.1 1.2-1.5 3.3-1.8 4.9-.9l11.5 6.6 7.3-12.6-11.3-6.5c-1.6-.9-2.4-3-1.6-4.7 1.8-4.5 3.1-9.2 3.9-14 .3-1.9 1.9-3.2 3.8-3.2h13v-14.6h-12.8c-1.9 0-3.5-1.4-3.8-3.3-.7-4.8-2-9.6-3.7-14.2-.7-1.8 0-3.7 1.7-4.7l10.9-6.3-7.3-12.6-10.8 6.3c-1.6.9-3.7.6-4.9-.9-3.1-3.9-6.6-7.4-10.4-10.6-1.5-1.2-1.9-3.3-.9-4.9l6.2-10.7-12.6-7.3-6.1 10.6c-1 1.6-3 2.3-4.7 1.7-4.6-1.8-9.5-3.1-14.4-3.9-1.9-.3-3.3-1.9-3.3-3.8v-12.2h-14.5v12.3c0 1.9-1.4 3.5-3.3 3.8-5 .8-9.8 2.1-14.4 3.9-1.8.7-3.8 0-4.7-1.7l-6.1-10.6-12.6 7.3 6.2 10.7c.9 1.6.6 3.7-.9 4.9-3.9 3.1-7.4 6.7-10.4 10.6-1.2 1.5-3.3 1.9-4.9.9l-10.8-6.3-7.3 12.6 10.9 6.3c1.6.9 2.3 2.9 1.7 4.7-1.7 4.6-3 9.4-3.7 14.2-.3 1.9-1.9 3.3-3.8 3.3h-12.8v14.5h13c1.9 0 3.5 1.4 3.8 3.2.8 4.8 2.1 9.5 3.9 14 .7 1.8 0 3.8-1.6 4.7l-11.3 6.5 7.3 12.6 11.5-6.6c1.6-.9 3.7-.6 4.9.9 3 3.7 6.5 7.1 10.3 10.1 1.5 1.2 1.9 3.3.9 4.9l-6.7 11.6 12.6 7.3 6.7-11.6c.9-1.6 2.9-2.3 4.7-1.7 4.5 1.7 9.1 2.9 13.8 3.7 1.9.3 3.3 1.9 3.3 3.8z\"></path></g><g><g><g><path d=\"m45.3 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m153.9 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path></g><g><path d=\"m189.3 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.2c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c0 2.1-1.7 3.8-3.8 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m73.3 326.4c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m126 326.4c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m99.7 325.6c-.6 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4s4.1 1.1 4.4 3.2c2.4 16.5 12.3 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m50.2 266.6c-.1 0-.2 0-.3 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.7 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-8.9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.5 2.2zm81.8-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13.1-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.4-.7 2.3-.7z\"></path></g></g></g><g><g><path d=\"m296.1 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m404.7 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path></g><g><path d=\"m440 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.1c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c.2 2.1-1.6 3.8-3.7 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m324 326.3c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m376.7 326.3c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m350.4 325.6c-.5 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4 2.1-.3 4 1.1 4.4 3.2 2.4 16.5 12.4 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m301 266.6c-.1 0-.2 0-.4 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.6 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.4 2.2zm81.7-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.5-.7 2.3-.7z\"></path></g></g></g></g></g></svg>				\n									<h5>\n							et ungt og engageret team						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"496pt\" viewBox=\"0 0 496 496\" width=\"496pt\"><path d=\"m440 328h-28.207031c5.078125-6.703125 8.207031-14.960938 8.207031-24 0-8.824219-7.175781-16-16-16h-12v-19.960938c59.574219-14.445312 104-68.085937 104-132.039062 0-74.992188-61.007812-136-136-136s-136 61.007812-136 136c0 63.953125 44.425781 117.59375 104 132.039062v19.960938h-8.449219c-6.167969 0-12.359375 1.464844-17.886719 4.214844l-50.480468 25.25c-3.320313 1.664062-7.03125 2.535156-10.734375 2.535156h-40.449219v-16h-104v16h56v56h16v-56h16v128h-16v-56h-16v56h-56v16h104v-16h40.449219c3.703125 0 7.414062.871094 10.734375 2.527344l34.488281 17.25c5.519531 2.757812 11.710937 4.222656 17.878906 4.222656h24.449219v24h64v-24h48c13.230469 0 24-10.769531 24-24 0-6.167969-2.40625-11.742188-6.238281-16 3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16 0-13.230469-10.769531-24-24-24zm8 24c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm-208-280c0-66.167969 53.832031-120 120-120s120 53.832031 120 120-53.832031 120-120 120-120-53.832031-120-120zm104 134.976562c5.257812.617188 10.574219 1.023438 16 1.023438s10.742188-.40625 16-1.023438v17.023438h-32zm-40.449219 185.023438c-3.703125 0-7.414062-.871094-10.734375-2.527344l-34.488281-17.25c-5.519531-2.757812-11.710937-4.222656-17.878906-4.222656h-40.449219v-96h40.449219c6.167969 0 12.359375-1.464844 17.886719-4.214844l50.480468-25.25c3.320313-1.664062 7.03125-2.535156 10.734375-2.535156h84.449219c0 13.230469-10.769531 24-24 24h-48.28125l-23.863281 35.808594c-6.101563 9.160156-14.527344 16.589844-24.367188 21.503906-8.753906 4.375-18.542969 6.6875-28.320312 6.6875h-15.167969v16h15.167969c12.246093 0 24.519531-2.894531 35.472656-8.375 12.328125-6.160156 22.878906-15.480469 30.527344-26.945312l6.832031-10.253907v93.574219zm40.449219 24v-136h17.472656c-.898437 2.511719-1.472656 5.183594-1.472656 8 0 6.167969 2.40625 11.742188 6.238281 16-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16 0 10.414062 6.710938 19.214844 16 22.527344v9.472656zm96-24h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8s-3.59375 8-8 8zm0 0\"></path><path d=\"m394.878906 73.007812-7.757812 13.984376c17.816406 9.878906 28.878906 28.664062 28.878906 49.007812h16c0-26.160156-14.222656-50.296875-37.121094-62.992188zm0 0\"></path><path d=\"m360 80c4.734375 0 9.449219.59375 14.007812 1.769531l3.976563-15.503906c-5.855469-1.496094-11.90625-2.265625-17.984375-2.265625zm0 0\"></path><path d=\"m360 48c48.519531 0 88 39.480469 88 88 0 20.753906-7.398438 40.910156-20.832031 56.785156l12.207031 10.34375c15.882812-18.761718 24.625-42.601562 24.625-67.128906 0-57.34375-46.65625-104-104-104-24.527344 0-48.367188 8.753906-67.128906 24.632812l10.335937 12.199219c15.871094-13.433593 36.039063-20.832031 56.792969-20.832031zm0 0\"></path><path d=\"m427.128906 215.367188-10.335937-12.199219c-15.871094 13.433593-36.039063 20.832031-56.792969 20.832031-48.519531 0-88-39.480469-88-88 0-20.753906 7.398438-40.910156 20.832031-56.785156l-12.207031-10.34375c-15.882812 18.761718-24.625 42.601562-24.625 67.128906 0 57.34375 46.65625 104 104 104 24.527344 0 48.367188-8.753906 67.128906-24.632812zm0 0\"></path><path d=\"m121.214844 165.640625c4.953125-1.375 9.695312-3.34375 14.183594-5.878906l9.769531 4.886719 19.472656-19.480469-4.886719-9.769531c2.535156-4.496094 4.503906-9.230469 5.886719-14.183594l10.359375-3.445313v-27.53125l-10.351562-3.453125c-1.375-4.953125-3.34375-9.707031-5.886719-14.183594l4.886719-9.777343-19.472657-19.472657-9.769531 4.886719c-4.484375-2.535156-9.230469-4.503906-14.183594-5.878906l-3.453125-10.359375h-27.539062l-3.445313 10.359375c-4.953125 1.375-9.695312 3.34375-14.183594 5.878906l-9.777343-4.886719-19.472657 19.472657 4.886719 9.777343c-2.535156 4.488282-4.503906 9.230469-5.886719 14.183594l-10.351562 3.445313v27.53125l10.351562 3.453125c1.375 4.953125 3.34375 9.695312 5.886719 14.183594l-4.886719 9.769531 19.472657 19.480469 9.769531-4.886719c4.484375 2.535156 9.230469 4.503906 14.183594 5.878906l3.453125 10.359375h27.539062zm-12.304688-13.679687-2.679687 8.039062h-4.460938l-2.679687-8.039062-4.554688-.90625c-6.128906-1.222657-11.878906-3.605469-17.109375-7.09375l-3.867187-2.578126-7.574219 3.800782-3.160156-3.167969 3.792969-7.582031-2.578126-3.859375c-3.488281-5.222657-5.871093-10.980469-7.09375-17.109375l-.914062-4.554688-8.03125-2.679687v-4.46875l8.03125-2.671875.914062-4.554688c1.222657-6.136718 3.613282-11.886718 7.09375-17.109375l2.578126-3.859375-3.792969-7.589844 3.160156-3.160156 7.574219 3.800782 3.867187-2.578126c5.222657-3.488281 10.980469-5.863281 17.109375-7.09375l4.554688-.90625 2.679687-8.039062h4.460938l2.679687 8.039062 4.554688.90625c6.128906 1.222657 11.878906 3.605469 17.109375 7.09375l3.867187 2.578126 7.574219-3.800782 3.160156 3.160156-3.792969 7.589844 2.578126 3.859375c3.488281 5.214844 5.871093 10.972657 7.09375 17.109375l.914062 4.554688 8.03125 2.679687v4.46875l-8.03125 2.671875-.914062 4.554688c-1.222657 6.128906-3.613282 11.878906-7.09375 17.109375l-2.578126 3.859375 3.792969 7.582031-3.160156 3.167969-7.574219-3.800782-3.867187 2.578126c-5.222657 3.488281-10.980469 5.863281-17.109375 7.09375zm0 0\"></path><path d=\"m104 72c-17.648438 0-32 14.351562-32 32s14.351562 32 32 32 32-14.351562 32-32-14.351562-32-32-32zm0 48c-8.824219 0-16-7.175781-16-16s7.175781-16 16-16 16 7.175781 16 16-7.175781 16-16 16zm0 0\"></path><path d=\"m160 248v-40h48v-208h-208v208h106.664062zm-144-232h176v176h-48v24l-32-24h-96zm0 0\"></path><path d=\"m0 272h16v16h-16zm0 0\"></path><path d=\"m32 272h16v16h-16zm0 0\"></path><path d=\"m64 272h16v16h-16zm0 0\"></path><path d=\"m32 304h16v16h-16zm0 0\"></path><path d=\"m64 304h16v16h-16zm0 0\"></path><path d=\"m0 480h16v16h-16zm0 0\"></path><path d=\"m32 480h16v16h-16zm0 0\"></path><path d=\"m64 480h16v16h-16zm0 0\"></path><path d=\"m32 448h16v16h-16zm0 0\"></path><path d=\"m64 448h16v16h-16zm0 0\"></path></svg>				\n									<h5>\n							fokus på kvalitet og detaljer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m469.12 408.93-67.26-33.63v-22.13c10.71-7.69 18.6-19.07 21.78-32.27h5.28c8.81 0 15.98-7.17 15.98-15.98v-5.29c0-6.35-3.74-11.84-9.12-14.41 5.19-18.64-1.65-39.76-19.44-59.78-12.58-14.16-30.67-22.27-49.62-22.27-18.93 0-37.01 8.12-49.59 22.27-13.38 15.05-20.95 41.01-14.03 59.62-5.56 2.5-9.45 8.09-9.45 14.57v5.29c0 8.81 7.17 15.98 15.98 15.98h5.55c3.16 13.09 10.94 24.39 21.51 32.08v22.32l-67.26 33.63c-16.7 5.87-27.89 21.6-27.89 39.28v41.63c0 3.31 2.69 6 6 6h243.46c3.31 0 6-2.69 6-6v-41.63c0-17.68-11.19-33.41-27.88-39.28zm-62.24-17.7-15.83 27.66-13.29-13.29 19.29-19.29zm-37.61 5.88-20.59-20.58v-16.91c6.41 2.57 13.4 4.01 20.72 4.01 7.22 0 14.11-1.39 20.45-3.9v16.8zm63.63-97.48v5.29c0 2.16-1.82 3.98-3.98 3.98h-3.74c.01-.36.03-.71.03-1.07v-12.18h3.71c2.15-.01 3.98 1.82 3.98 3.98zm-119.29 8.2v1.07h-3.98c-2.16 0-3.98-1.82-3.98-3.98v-5.29c0-2.16 1.82-3.98 3.98-3.98l3.98.22zm1.95-24.19c-7.33-13.69-.89-37.39 10.53-50.24 10.31-11.6 25.12-18.25 40.63-18.25 15.52 0 30.34 6.65 40.65 18.25 8.43 9.48 21.3 27.59 17.4 46.39-5.66-.35-10.67-2.55-14.4-6.36-5.37-5.49-7.72-14-6.63-23.94.29-2.62-1.17-5.13-3.6-6.17s-5.25-.37-6.95 1.65c-19.33 22.92-45.95 36.76-73.9 38.68h-3.73zm10.05 24.19v-12.73c24.57-2.92 47.92-14.05 66.73-31.8 1.43 7.26 4.63 13.6 9.45 18.52 3.27 3.35 7.14 5.89 11.41 7.58v18.42c0 24.15-19.65 43.8-43.8 43.8s-43.79-19.64-43.79-43.79zm15.89 78.48 19.29 19.29-13.29 13.29-15.84-27.66zm3.22 97.53h-39.42v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.76v-35.63c0-12.68 8.1-23.95 20.15-28.05.26-.09.51-.19.75-.31l46.47-23.23 20.07 35.06c.93 1.62 2.56 2.72 4.41 2.97.27.04.53.05.79.05 1.58 0 3.11-.62 4.24-1.76l.14-.14zm12.08 0 7.41-64.69 5.06-5.06 4.84 4.84 7.86 64.92h-25.17zm128.2 0h-39.76v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.18l-6.2-51.17.25.25c1.13 1.13 2.66 1.76 4.24 1.76.26 0 .53-.02.79-.05 1.85-.25 3.48-1.34 4.41-2.97l20.07-35.06 46.47 23.23c.24.12.49.23.75.31 12.05 4.1 20.15 15.38 20.15 28.05v35.65zm-67.04-346.65h-10.84l28.38 39.84 28.38-39.84h-10.84c-3.31 0-6-2.69-6-6v-64.58h-98.7c-3.31 0-6-2.69-6-6s2.69-6 6-6h104.7c3.31 0 6 2.69 6 6v64.58h16.48c2.25 0 4.3 1.25 5.33 3.25s.86 4.4-.45 6.23l-40.02 56.18c-1.13 1.58-2.95 2.52-4.89 2.52s-3.76-.94-4.89-2.52l-40.02-56.18c-1.3-1.83-1.48-4.23-.45-6.23s3.09-3.25 5.33-3.25h16.48v-23.5h-65.38c-3.31 0-6-2.69-6-6s2.69-6 6-6h71.38c3.31 0 6 2.69 6 6v35.5c.02 3.31-2.67 6-5.98 6zm-118.44 50.65v-133.26c0-21.18-17.23-38.41-38.41-38.41h-207.7c-21.18-.01-38.41 17.23-38.41 38.41v133.26c0 21.18 17.23 38.41 38.41 38.41h105.8l64.8 55.11c1.11.94 2.49 1.43 3.89 1.43.85 0 1.71-.18 2.52-.55 2.12-.98 3.48-3.11 3.48-5.45v-50.54h27.21c21.18 0 38.41-17.23 38.41-38.41zm-71.62 26.41c-3.31 0-6 2.69-6 6v43.56l-56.59-48.13c-1.08-.92-2.46-1.43-3.89-1.43h-108.01c-14.56 0-26.41-11.85-26.41-26.41v-133.26c0-14.56 11.85-26.41 26.41-26.41h207.69c14.56 0 26.41 11.85 26.41 26.41v133.26c0 14.56-11.85 26.41-26.41 26.41zm-156.34-87.87h56.97c3.31 0 6-2.69 6-6v-39.2l8.55-8.55c2.34-2.34 2.34-6.14 0-8.49-2.34-2.34-6.14-2.34-8.48 0l-.7.7c-.98-1.97-3.01-3.32-5.36-3.32h-56.98c-3.31 0-6 2.69-6 6v52.85c0 3.32 2.69 6.01 6 6.01zm6-52.86h44.97v2.69l-18.16 18.16-8.84-8.84c-2.34-2.34-6.14-2.34-8.49 0-2.34 2.34-2.34 6.14 0 8.49l13.08 13.08c1.17 1.17 2.71 1.76 4.24 1.76s3.07-.59 4.24-1.76l13.92-13.92v21.2h-44.96zm173.62 3.08c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 31.92c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 36.52c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.68 5.99 6zm0 31.92c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.69 5.99 6zm-119.36 165.01h10.84l-28.38-39.84-28.38 39.84h10.84c3.31 0 6 2.69 6 6v64.58h98.7c3.31 0 6 2.69 6 6s-2.69 6-6 6h-104.69c-3.31 0-6-2.69-6-6v-64.58h-16.48c-2.25 0-4.3-1.25-5.33-3.25s-.86-4.4.45-6.23l40.02-56.18c1.13-1.58 2.95-2.52 4.89-2.52s3.76.94 4.89 2.52l40.02 56.18c1.3 1.83 1.48 4.23.45 6.23s-3.09 3.25-5.33 3.25h-16.48v23.5h65.38c3.31 0 6 2.69 6 6s-2.69 6-6 6h-71.38c-3.31 0-6-2.69-6-6v-35.5c-.03-3.31 2.66-6 5.97-6z\"></path></svg>				\n									<h5>\n							ærlig<br> rådgivning						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 510 510\"><path d=\"m192.036 385.845c-4.787-46.972-19.459-64.336-30.658-82.352-8.672-13.951-15.5-28.245-15.5-54.252 0-60.242 48.865-109.109 109.135-109.109 60.242 0 109.109 48.866 109.109 109.109 0 26.007-6.828 40.301-15.5 54.252-11.199 18.016-25.871 35.38-30.658 82.352 9.985 2.864 17.345 12.101 17.345 22.975v36.44c0 13.109-10.747 23.866-23.893 23.866h-10.334v9.945c0 12.588-10.341 22.929-22.93 22.929h-46.304c-12.589 0-22.93-10.341-22.93-22.929v-9.945h-10.334c-13.146 0-23.893-10.757-23.893-23.866v-36.44c0-10.874 7.36-20.111 17.345-22.975zm111.948-.917c4.199-42.194 15.78-62.332 26.488-79.049 10.147-15.842 19.65-28.207 19.65-56.638 0-52.513-42.597-95.109-95.109-95.109-52.537 0-95.135 42.596-95.135 95.109 0 28.431 9.503 40.796 19.65 56.638 10.708 16.717 22.289 36.855 26.488 79.049zm2.554-78.61c-1.175 13.701-11.985 24.191-24.783 24.191-13.527 0-24.862-12.086-24.862-26.673v-99.328c0-14.12 11.335-26.673 24.862-26.673 11.309 0 21.031 8.139 23.975 19.497 9.12 3.904 15.688 13.438 15.688 24.78 0 1.153-.068 2.289-.201 3.403 5.078 5.326 8.283 12.802 8.283 21.117 0 6.39-1.889 12.262-5.06 17.053 1.996 4.099 3.13 8.773 3.13 13.76 0 14.1-9.065 25.697-21.032 28.873zm-16.452-109.977c-1.964-2.729-4.916-4.506-8.331-4.506-6.192 0-10.862 6.21-10.862 12.673v99.328c0 6.677 4.67 12.673 10.862 12.673 5.516 0 9.822-4.614 10.717-10.425-4.709-1.416-8.923-4.144-12.279-7.814-2.607-2.852-2.409-7.283.443-9.89 2.851-2.607 7.282-2.408 9.889.443 2.416 2.642 5.72 4.356 9.402 4.356 7.733 0 13.643-7.218 13.643-15.734s-5.91-15.734-13.643-15.734c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7 5.352 0 10.388 1.655 14.658 4.533.593-1.743.915-3.634.915-5.612 0-2.11-.366-4.128-1.036-5.972-.769.858-1.588 1.66-2.453 2.397-2.94 2.507-7.361 2.156-9.869-.784-2.507-2.939-2.155-7.361.784-9.868 2.773-2.365 4.492-6.122 4.492-10.293 0-6.072-3.705-11.374-8.898-12.467-.154-.023-.307-.052-.458-.085-.499-.08-1.01-.121-1.532-.121-2.947 0-5.591 1.389-7.515 3.525-2.585 2.87-7.015 3.101-9.886.515-2.87-2.586-3.101-7.015-.515-9.886 3.111-3.453 7.059-5.988 11.472-7.252zm-104.526 67.344c-3.171-4.791-5.06-10.663-5.06-17.053 0-8.307 3.198-15.777 8.284-21.104-.133-1.118-.202-2.258-.202-3.416 0-11.354 6.582-20.897 15.717-24.792 2.948-11.354 12.67-19.485 23.946-19.485 13.56 0 24.888 12.555 24.888 26.673v99.328c0 14.585-11.328 26.673-24.888 26.673-12.765 0-23.578-10.484-24.757-24.184-11.98-3.166-21.058-14.769-21.058-28.88 0-4.987 1.134-9.661 3.13-13.76zm9.982-23.036c-.675 1.847-1.042 3.869-1.042 5.983 0 1.978.322 3.869.915 5.612 4.27-2.878 9.306-4.533 14.658-4.533 3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7-7.733 0-13.643 7.218-13.643 15.734s5.91 15.734 13.643 15.734c3.682 0 6.986-1.714 9.402-4.356 2.607-2.851 7.038-3.05 9.889-.443 2.852 2.607 3.05 7.038.443 9.89-3.35 3.664-7.556 6.389-12.255 7.807.891 5.813 5.192 10.432 10.693 10.432 6.21 0 10.888-5.993 10.888-12.673v-99.328c0-6.466-4.678-12.673-10.888-12.673-3.404 0-6.349 1.777-8.309 4.507 4.421 1.264 8.367 3.8 11.476 7.251 2.586 2.871 2.355 7.3-.516 9.886-2.87 2.586-7.3 2.355-9.886-.515-1.926-2.138-4.574-3.525-7.54-3.525-.493 0-.976.037-1.448.108-.196.045-.395.082-.596.11-5.165 1.118-8.844 6.404-8.844 12.455 0 1.243.153 2.45.442 3.594.101.284.183.572.246.862.748 2.326 2.071 4.346 3.814 5.823 2.947 2.498 3.311 6.919.813 9.866s-6.919 3.312-9.866.814c-.878-.745-1.71-1.554-2.489-2.422zm3.042 158.279c-5.442 0-9.893 4.451-9.893 9.892v36.44c0 5.423 4.454 9.866 9.893 9.866h17.334c3.866 0 7 3.134 7 7v16.945c0 4.902 4.027 8.929 8.93 8.929h46.304c4.903 0 8.93-4.027 8.93-8.929v-16.945c0-3.866 3.134-7 7-7h17.334c5.439 0 9.893-4.443 9.893-9.866v-36.44c0-5.441-4.451-9.892-9.893-9.892zm63.416-314.093 2.907-5.412c1.828-3.403 6.075-4.683 9.479-2.854 3.403 1.828 4.682 6.075 2.854 9.479l-16.073 29.925c-1.22 2.271-3.589 3.688-6.167 3.688s-4.947-1.417-6.167-3.688l-16.073-29.925c-1.828-3.404-.549-7.651 2.854-9.479 3.404-1.829 7.651-.549 9.479 2.854l2.907 5.412v-69.835c0-3.863 3.137-7 7-7s7 3.137 7 7zm-132.198 54.758-49.381-49.381c-2.732-2.731-2.732-7.167 0-9.899s7.168-2.732 9.9 0l49.38 49.38-1.771-5.881c-1.114-3.7.985-7.608 4.684-8.722 3.7-1.114 7.607.985 8.721 4.685l9.796 32.526c.743 2.468.069 5.145-1.753 6.968-1.823 1.823-4.5 2.496-6.969 1.753l-32.526-9.795c-3.699-1.114-5.798-5.022-4.684-8.721s5.022-5.798 8.721-4.684zm-44.859 122.299h-69.835c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7h69.835l-5.412-2.907c-3.403-1.828-4.682-6.076-2.854-9.479 1.828-3.404 6.075-4.683 9.479-2.855l29.926 16.074c2.271 1.22 3.688 3.589 3.688 6.167 0 2.577-1.417 4.947-3.688 6.166l-29.926 16.074c-3.404 1.828-7.651.549-9.479-2.855-1.828-3.403-.549-7.651 2.854-9.479zm54.758 118.198-49.38 49.38c-2.732 2.732-7.168 2.732-9.9 0s-2.732-7.167 0-9.899l49.381-49.381-5.882 1.772c-3.699 1.114-7.607-.985-8.721-4.685-1.114-3.699.985-7.607 4.684-8.721l32.526-9.795c2.469-.743 5.146-.07 6.969 1.753 1.822 1.823 2.496 4.5 1.753 6.968l-9.796 32.527c-1.114 3.699-5.021 5.798-8.721 4.684-3.699-1.114-5.798-5.022-4.684-8.721zm240.497-240.497 5.882-1.771c3.699-1.114 7.607.985 8.721 4.684s-.985 7.607-4.684 8.721l-32.526 9.795c-2.469.743-5.146.07-6.969-1.753-1.822-1.823-2.496-4.5-1.753-6.968l9.796-32.526c1.114-3.7 5.021-5.799 8.721-4.685 3.699 1.114 5.798 5.022 4.684 8.722l-1.771 5.881 49.38-49.38c2.732-2.732 7.168-2.732 9.9 0s2.732 7.168 0 9.899zm44.859 122.299 5.412 2.906c3.403 1.828 4.682 6.076 2.854 9.479-1.828 3.404-6.075 4.683-9.479 2.855l-29.926-16.074c-2.271-1.219-3.688-3.589-3.688-6.166 0-2.578 1.417-4.947 3.688-6.167l29.926-16.074c3.404-1.828 7.651-.549 9.479 2.855 1.828 3.403.549 7.651-2.854 9.479l-5.412 2.907h69.835c3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7zm-54.758 118.198 1.771 5.882c1.114 3.699-.985 7.607-4.684 8.721-3.7 1.114-7.607-.985-8.721-4.684l-9.796-32.527c-.743-2.468-.069-5.145 1.753-6.968 1.823-1.823 4.5-2.496 6.969-1.753l32.526 9.795c3.699 1.114 5.798 5.022 4.684 8.721-1.114 3.7-5.022 5.799-8.721 4.685l-5.882-1.772 49.381 49.381c2.732 2.732 2.732 7.167 0 9.899s-7.168 2.732-9.9 0z\"></path></svg>				\n									<h5>\n							gennemtænkte løsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"outline\"><path d=\"M486.41,144A28,28,0,0,0,472,92H349.123l5.457-21.828a48.513,48.513,0,0,0-12.848-46.153A41.035,41.035,0,0,0,312.609,12H308a8.009,8.009,0,0,0-8,8V47.413l-19.233,64.112A17.376,17.376,0,0,1,268,123.539V112a4,4,0,0,0-4-4H152a4,4,0,0,0-4,4v72a4,4,0,0,0,8,0V116h72V276H156V248a4,4,0,0,0-8,0v32a4,4,0,0,0,4,4H264a4,4,0,0,0,4-4V268.5h11.168A37.07,37.07,0,0,1,305.092,279a45.025,45.025,0,0,0,31.48,12.752L440,292a27.987,27.987,0,0,0,19.369-48.2,27.987,27.987,0,0,0,16-48A28,28,0,0,0,486.41,144ZM260,276H236V116h24Zm212-88H396a4,4,0,0,0,0,8h60a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h40a20,20,0,0,1,.01,40l-103.428-.25a37.07,37.07,0,0,1-25.924-10.5,45.031,45.031,0,0,0-31.49-12.752H268V131.686a25.317,25.317,0,0,0,20.429-17.862l19.4-64.675A4,4,0,0,0,308,48V20h4.609a33.082,33.082,0,0,1,23.481,9.69,40.507,40.507,0,0,1,10.728,38.541l-6.7,26.8A4,4,0,0,0,344,100H472a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h72a20,20,0,0,1,0,40Z\"></path><path d=\"M194.5,183.243l-1.9-.217a4,4,0,0,0-4.169,2.491L184.29,195.9H135.278l-3.539-9.317a4,4,0,0,0-7.478,2.84l2.459,6.477h-8.474L68.452,156.872a4,4,0,1,0-4.935,6.3L77.6,174.209,56.961,194.48l-6.636-5.491a4,4,0,1,0-5.1,6.163L87.219,229.9a44.1,44.1,0,0,0,28.05,10.1H212a8.009,8.009,0,0,0,8-8V203.9a8.009,8.009,0,0,0-8-8h-8v-2.01A10.708,10.708,0,0,0,194.5,183.243ZM212,203.9V232H115.269a36.081,36.081,0,0,1-22.951-8.264l-29.16-24.128,20.8-20.422L114.4,203.045a4,4,0,0,0,2.468.852H187a4,4,0,0,0,3.715-2.517l3.929-9.843a2.712,2.712,0,0,1,1.356,2.35v6.01a4,4,0,0,0,4,4Z\"></path><path d=\"M223.084,484.672,200.87,469.863V346.36A44.1,44.1,0,0,0,195.327,325l-17.183-30.94a4,4,0,0,0-7,3.884l17.184,30.94a36.073,36.073,0,0,1,4.537,17.478V468H164.333a4,4,0,1,0,0,8h31.321l12,8H152.865V352a4,4,0,0,0-.358-1.655l-25.454-56A4,4,0,0,0,123.411,292H114.2a4,4,0,0,0-3.945,4.658l8.862,53.175a36.016,36.016,0,0,1-1.951,18.949L78.642,468H48.333a4,4,0,1,0,0,8H80.377L92,484H32.088L76.63,361.366a4.017,4.017,0,0,0,.183-2.044L61.1,268H136a4,4,0,0,0,0-8H59.233L30.555,173.966A19.723,19.723,0,0,1,49.27,148H76a12,12,0,0,0,24,0h15.2a21.975,21.975,0,0,1,8.395,1.652l10.889,4.458a4,4,0,1,0,3.032-7.4L126.63,142.25A29.938,29.938,0,0,0,115.2,140H100v-4.527A16.014,16.014,0,0,0,112,120V103.473A16.014,16.014,0,0,0,124,88V80a4,4,0,0,0-4-4H90A22.025,22.025,0,0,0,68,98v18a12.02,12.02,0,0,0,8,11.314V140H49.27a27.723,27.723,0,0,0-26.305,36.5l29.493,88.482,16.29,94.655-46.128,127A4,4,0,0,0,26.38,492h78.485a4,4,0,0,0,2.268-7.3L86.3,470.368l38.318-98.69a44.018,44.018,0,0,0,2.385-23.16L118.921,300h1.914l24.03,52.867V488a4,4,0,0,0,4,4h72a4,4,0,0,0,2.219-7.328ZM76,98A14.015,14.015,0,0,1,90,84h26v4a8.009,8.009,0,0,1-8,8H92a4,4,0,0,0-4,4,11.962,11.962,0,0,1-1.53,5.881A12.044,12.044,0,0,0,76,104.686Zm4,14a3.981,3.981,0,0,1,3.407,1.9,4,4,0,0,0,5.956.975c.207-.171.7-.648.7-.648.032-.028.061-.057.09-.087A19.907,19.907,0,0,0,95.6,104H104v16a8.009,8.009,0,0,1-8,8,12.133,12.133,0,0,1-2.681-.3,4,4,0,1,0-1.775,7.8c.151.035.3.06.456.091V148a4,4,0,1,1-8,0V124a4,4,0,0,0-4-4,4,4,0,0,1,0-8Z\"></path></g></svg>				\n									<h5>\n							arbejde udført med ansvar						\n					</h5>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 12:46:58', '2026-01-26 12:46:58', '', 10, 'https://mrarif.me/cpnordic/?p=487', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(488, 1, '2026-01-26 12:47:12', '2026-01-26 12:47:12', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>					\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle ANMELDELSER\n					</a>\n					<h2>HVORFOR VÆLGE CP NORDIC ApS?</h2>		<p>Når du vælger CP NORDIC ApS, får du:</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 450 450\" width=\"512\"><g><g><path d=\"m225 165.2c-25.9 0-48.9-18.8-53.3-45.2-2.4-14.2.9-28.6 9.3-40.3 8.4-11.8 20.9-19.5 35.1-21.9 29.4-4.9 57.3 15 62.2 44.5 4.9 29.4-15 57.3-44.4 62.2-3 .5-6 .7-8.9.7zm-7.6-99.8c-12.2 2-22.9 8.7-30.1 18.8s-10.1 22.4-8 34.6c3.8 22.7 23.5 38.8 45.7 38.8 2.5 0 5.1-.2 7.6-.6 25.2-4.2 42.3-28.1 38.1-53.4s-28.1-42.4-53.3-38.2z\"></path><path d=\"m255.2 115c-2.1 0-3.8-1.7-3.8-3.8 0-14.6-11.8-26.4-26.4-26.4-2.1 0-3.8-1.7-3.8-3.8s1.7-3.8 3.8-3.8c18.8 0 34.1 15.3 34.1 34.1 0 2-1.8 3.7-3.9 3.7z\"></path><path d=\"m236.1 203h-22.2c-2.1 0-3.8-1.7-3.8-3.8v-14.1c-3.1-.6-6.1-1.4-9.1-2.4l-7 12.2c-1.1 1.8-3.4 2.5-5.3 1.4l-19.2-11.1c-.9-.5-1.5-1.4-1.8-2.3-.3-1-.1-2 .4-2.9l7-12.1c-2.4-2.1-4.6-4.3-6.7-6.6l-12.1 7c-1.8 1.1-4.2.4-5.2-1.4l-11.1-19.2c-1.1-1.8-.4-4.2 1.4-5.2l11.9-6.8c-1-3-1.9-6.1-2.6-9.3h-13.7c-2.1 0-3.8-1.7-3.8-3.8v-22.2c0-2.1 1.7-3.8 3.8-3.8h13.4c.6-3.2 1.4-6.4 2.4-9.5l-11.5-6.6c-1.8-1.1-2.5-3.4-1.4-5.3l11.1-19.6c.5-.9 1.4-1.5 2.3-1.8s2-.1 2.9.4l11.3 6.6c2.2-2.5 4.5-4.8 7-7l-6.5-11.3c-.5-.9-.6-1.9-.4-2.9.3-1 .9-1.8 1.8-2.3l19.2-11.1c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l6.4 11.2c3.1-1.1 6.4-1.9 9.7-2.6v-13c0-2.1 1.7-3.8 3.8-3.8h22.2c2.1 0 3.8 1.7 3.8 3.8v12.8c3.3.7 6.5 1.5 9.7 2.6l6.5-11.2c.5-.9 1.4-1.5 2.3-1.8 1-.3 2-.1 2.9.4l19.2 11.1c.9.5 1.5 1.3 1.8 2.3s.1 2-.4 2.9l-6.5 11.3c2.5 2.2 4.8 4.5 7 7.1l11.3-6.6c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l11.1 19.2c1.1 1.8.4 4.2-1.4 5.3l-11.5 6.6c1 3.1 1.8 6.3 2.5 9.5h13.6c2.1 0 3.8 1.7 3.8 3.8v22.2c0 2.1-1.7 3.8-3.8 3.8h-13.6c-.6 3.1-1.5 6.2-2.5 9.3l11.9 6.8c1.8 1.1 2.5 3.4 1.4 5.2l-11.2 19.5c-1.1 1.8-3.4 2.5-5.2 1.4l-12-7c-2.1 2.4-4.4 4.6-6.7 6.6l7 12.1c.5.9.6 1.9.4 2.9s-.9 1.8-1.8 2.3l-19.2 11.1c-1.8 1.1-4.2.4-5.2-1.4l-7-12.2c-3 1-6 1.8-9.1 2.4v14.1c-.2 2.3-2 4-4.1 4zm-18.4-7.7h14.5v-13.5c0-1.9 1.4-3.5 3.3-3.8 4.7-.7 9.4-2 13.8-3.7 1.8-.7 3.8 0 4.7 1.7l6.7 11.6 12.6-7.3-6.7-11.6c-1-1.6-.5-3.7.9-4.9 3.7-3 7.2-6.4 10.2-10.1 1.2-1.5 3.3-1.8 4.9-.9l11.5 6.6 7.3-12.6-11.3-6.5c-1.6-.9-2.4-3-1.6-4.7 1.8-4.5 3.1-9.2 3.9-14 .3-1.9 1.9-3.2 3.8-3.2h13v-14.6h-12.8c-1.9 0-3.5-1.4-3.8-3.3-.7-4.8-2-9.6-3.7-14.2-.7-1.8 0-3.7 1.7-4.7l10.9-6.3-7.3-12.6-10.8 6.3c-1.6.9-3.7.6-4.9-.9-3.1-3.9-6.6-7.4-10.4-10.6-1.5-1.2-1.9-3.3-.9-4.9l6.2-10.7-12.6-7.3-6.1 10.6c-1 1.6-3 2.3-4.7 1.7-4.6-1.8-9.5-3.1-14.4-3.9-1.9-.3-3.3-1.9-3.3-3.8v-12.2h-14.5v12.3c0 1.9-1.4 3.5-3.3 3.8-5 .8-9.8 2.1-14.4 3.9-1.8.7-3.8 0-4.7-1.7l-6.1-10.6-12.6 7.3 6.2 10.7c.9 1.6.6 3.7-.9 4.9-3.9 3.1-7.4 6.7-10.4 10.6-1.2 1.5-3.3 1.9-4.9.9l-10.8-6.3-7.3 12.6 10.9 6.3c1.6.9 2.3 2.9 1.7 4.7-1.7 4.6-3 9.4-3.7 14.2-.3 1.9-1.9 3.3-3.8 3.3h-12.8v14.5h13c1.9 0 3.5 1.4 3.8 3.2.8 4.8 2.1 9.5 3.9 14 .7 1.8 0 3.8-1.6 4.7l-11.3 6.5 7.3 12.6 11.5-6.6c1.6-.9 3.7-.6 4.9.9 3 3.7 6.5 7.1 10.3 10.1 1.5 1.2 1.9 3.3.9 4.9l-6.7 11.6 12.6 7.3 6.7-11.6c.9-1.6 2.9-2.3 4.7-1.7 4.5 1.7 9.1 2.9 13.8 3.7 1.9.3 3.3 1.9 3.3 3.8z\"></path></g><g><g><g><path d=\"m45.3 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m153.9 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path></g><g><path d=\"m189.3 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.2c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c0 2.1-1.7 3.8-3.8 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m73.3 326.4c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m126 326.4c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m99.7 325.6c-.6 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4s4.1 1.1 4.4 3.2c2.4 16.5 12.3 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m50.2 266.6c-.1 0-.2 0-.3 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.7 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-8.9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.5 2.2zm81.8-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13.1-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.4-.7 2.3-.7z\"></path></g></g></g><g><g><path d=\"m296.1 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m404.7 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path></g><g><path d=\"m440 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.1c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c.2 2.1-1.6 3.8-3.7 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m324 326.3c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m376.7 326.3c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m350.4 325.6c-.5 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4 2.1-.3 4 1.1 4.4 3.2 2.4 16.5 12.4 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m301 266.6c-.1 0-.2 0-.4 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.6 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.4 2.2zm81.7-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.5-.7 2.3-.7z\"></path></g></g></g></g></g></svg>				\n									<h5>\n							et ungt og engageret team						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"496pt\" viewBox=\"0 0 496 496\" width=\"496pt\"><path d=\"m440 328h-28.207031c5.078125-6.703125 8.207031-14.960938 8.207031-24 0-8.824219-7.175781-16-16-16h-12v-19.960938c59.574219-14.445312 104-68.085937 104-132.039062 0-74.992188-61.007812-136-136-136s-136 61.007812-136 136c0 63.953125 44.425781 117.59375 104 132.039062v19.960938h-8.449219c-6.167969 0-12.359375 1.464844-17.886719 4.214844l-50.480468 25.25c-3.320313 1.664062-7.03125 2.535156-10.734375 2.535156h-40.449219v-16h-104v16h56v56h16v-56h16v128h-16v-56h-16v56h-56v16h104v-16h40.449219c3.703125 0 7.414062.871094 10.734375 2.527344l34.488281 17.25c5.519531 2.757812 11.710937 4.222656 17.878906 4.222656h24.449219v24h64v-24h48c13.230469 0 24-10.769531 24-24 0-6.167969-2.40625-11.742188-6.238281-16 3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16 0-13.230469-10.769531-24-24-24zm8 24c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm-208-280c0-66.167969 53.832031-120 120-120s120 53.832031 120 120-53.832031 120-120 120-120-53.832031-120-120zm104 134.976562c5.257812.617188 10.574219 1.023438 16 1.023438s10.742188-.40625 16-1.023438v17.023438h-32zm-40.449219 185.023438c-3.703125 0-7.414062-.871094-10.734375-2.527344l-34.488281-17.25c-5.519531-2.757812-11.710937-4.222656-17.878906-4.222656h-40.449219v-96h40.449219c6.167969 0 12.359375-1.464844 17.886719-4.214844l50.480468-25.25c3.320313-1.664062 7.03125-2.535156 10.734375-2.535156h84.449219c0 13.230469-10.769531 24-24 24h-48.28125l-23.863281 35.808594c-6.101563 9.160156-14.527344 16.589844-24.367188 21.503906-8.753906 4.375-18.542969 6.6875-28.320312 6.6875h-15.167969v16h15.167969c12.246093 0 24.519531-2.894531 35.472656-8.375 12.328125-6.160156 22.878906-15.480469 30.527344-26.945312l6.832031-10.253907v93.574219zm40.449219 24v-136h17.472656c-.898437 2.511719-1.472656 5.183594-1.472656 8 0 6.167969 2.40625 11.742188 6.238281 16-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16 0 10.414062 6.710938 19.214844 16 22.527344v9.472656zm96-24h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8s-3.59375 8-8 8zm0 0\"></path><path d=\"m394.878906 73.007812-7.757812 13.984376c17.816406 9.878906 28.878906 28.664062 28.878906 49.007812h16c0-26.160156-14.222656-50.296875-37.121094-62.992188zm0 0\"></path><path d=\"m360 80c4.734375 0 9.449219.59375 14.007812 1.769531l3.976563-15.503906c-5.855469-1.496094-11.90625-2.265625-17.984375-2.265625zm0 0\"></path><path d=\"m360 48c48.519531 0 88 39.480469 88 88 0 20.753906-7.398438 40.910156-20.832031 56.785156l12.207031 10.34375c15.882812-18.761718 24.625-42.601562 24.625-67.128906 0-57.34375-46.65625-104-104-104-24.527344 0-48.367188 8.753906-67.128906 24.632812l10.335937 12.199219c15.871094-13.433593 36.039063-20.832031 56.792969-20.832031zm0 0\"></path><path d=\"m427.128906 215.367188-10.335937-12.199219c-15.871094 13.433593-36.039063 20.832031-56.792969 20.832031-48.519531 0-88-39.480469-88-88 0-20.753906 7.398438-40.910156 20.832031-56.785156l-12.207031-10.34375c-15.882812 18.761718-24.625 42.601562-24.625 67.128906 0 57.34375 46.65625 104 104 104 24.527344 0 48.367188-8.753906 67.128906-24.632812zm0 0\"></path><path d=\"m121.214844 165.640625c4.953125-1.375 9.695312-3.34375 14.183594-5.878906l9.769531 4.886719 19.472656-19.480469-4.886719-9.769531c2.535156-4.496094 4.503906-9.230469 5.886719-14.183594l10.359375-3.445313v-27.53125l-10.351562-3.453125c-1.375-4.953125-3.34375-9.707031-5.886719-14.183594l4.886719-9.777343-19.472657-19.472657-9.769531 4.886719c-4.484375-2.535156-9.230469-4.503906-14.183594-5.878906l-3.453125-10.359375h-27.539062l-3.445313 10.359375c-4.953125 1.375-9.695312 3.34375-14.183594 5.878906l-9.777343-4.886719-19.472657 19.472657 4.886719 9.777343c-2.535156 4.488282-4.503906 9.230469-5.886719 14.183594l-10.351562 3.445313v27.53125l10.351562 3.453125c1.375 4.953125 3.34375 9.695312 5.886719 14.183594l-4.886719 9.769531 19.472657 19.480469 9.769531-4.886719c4.484375 2.535156 9.230469 4.503906 14.183594 5.878906l3.453125 10.359375h27.539062zm-12.304688-13.679687-2.679687 8.039062h-4.460938l-2.679687-8.039062-4.554688-.90625c-6.128906-1.222657-11.878906-3.605469-17.109375-7.09375l-3.867187-2.578126-7.574219 3.800782-3.160156-3.167969 3.792969-7.582031-2.578126-3.859375c-3.488281-5.222657-5.871093-10.980469-7.09375-17.109375l-.914062-4.554688-8.03125-2.679687v-4.46875l8.03125-2.671875.914062-4.554688c1.222657-6.136718 3.613282-11.886718 7.09375-17.109375l2.578126-3.859375-3.792969-7.589844 3.160156-3.160156 7.574219 3.800782 3.867187-2.578126c5.222657-3.488281 10.980469-5.863281 17.109375-7.09375l4.554688-.90625 2.679687-8.039062h4.460938l2.679687 8.039062 4.554688.90625c6.128906 1.222657 11.878906 3.605469 17.109375 7.09375l3.867187 2.578126 7.574219-3.800782 3.160156 3.160156-3.792969 7.589844 2.578126 3.859375c3.488281 5.214844 5.871093 10.972657 7.09375 17.109375l.914062 4.554688 8.03125 2.679687v4.46875l-8.03125 2.671875-.914062 4.554688c-1.222657 6.128906-3.613282 11.878906-7.09375 17.109375l-2.578126 3.859375 3.792969 7.582031-3.160156 3.167969-7.574219-3.800782-3.867187 2.578126c-5.222657 3.488281-10.980469 5.863281-17.109375 7.09375zm0 0\"></path><path d=\"m104 72c-17.648438 0-32 14.351562-32 32s14.351562 32 32 32 32-14.351562 32-32-14.351562-32-32-32zm0 48c-8.824219 0-16-7.175781-16-16s7.175781-16 16-16 16 7.175781 16 16-7.175781 16-16 16zm0 0\"></path><path d=\"m160 248v-40h48v-208h-208v208h106.664062zm-144-232h176v176h-48v24l-32-24h-96zm0 0\"></path><path d=\"m0 272h16v16h-16zm0 0\"></path><path d=\"m32 272h16v16h-16zm0 0\"></path><path d=\"m64 272h16v16h-16zm0 0\"></path><path d=\"m32 304h16v16h-16zm0 0\"></path><path d=\"m64 304h16v16h-16zm0 0\"></path><path d=\"m0 480h16v16h-16zm0 0\"></path><path d=\"m32 480h16v16h-16zm0 0\"></path><path d=\"m64 480h16v16h-16zm0 0\"></path><path d=\"m32 448h16v16h-16zm0 0\"></path><path d=\"m64 448h16v16h-16zm0 0\"></path></svg>				\n									<h5>\n							fokus på kvalitet og detaljer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m469.12 408.93-67.26-33.63v-22.13c10.71-7.69 18.6-19.07 21.78-32.27h5.28c8.81 0 15.98-7.17 15.98-15.98v-5.29c0-6.35-3.74-11.84-9.12-14.41 5.19-18.64-1.65-39.76-19.44-59.78-12.58-14.16-30.67-22.27-49.62-22.27-18.93 0-37.01 8.12-49.59 22.27-13.38 15.05-20.95 41.01-14.03 59.62-5.56 2.5-9.45 8.09-9.45 14.57v5.29c0 8.81 7.17 15.98 15.98 15.98h5.55c3.16 13.09 10.94 24.39 21.51 32.08v22.32l-67.26 33.63c-16.7 5.87-27.89 21.6-27.89 39.28v41.63c0 3.31 2.69 6 6 6h243.46c3.31 0 6-2.69 6-6v-41.63c0-17.68-11.19-33.41-27.88-39.28zm-62.24-17.7-15.83 27.66-13.29-13.29 19.29-19.29zm-37.61 5.88-20.59-20.58v-16.91c6.41 2.57 13.4 4.01 20.72 4.01 7.22 0 14.11-1.39 20.45-3.9v16.8zm63.63-97.48v5.29c0 2.16-1.82 3.98-3.98 3.98h-3.74c.01-.36.03-.71.03-1.07v-12.18h3.71c2.15-.01 3.98 1.82 3.98 3.98zm-119.29 8.2v1.07h-3.98c-2.16 0-3.98-1.82-3.98-3.98v-5.29c0-2.16 1.82-3.98 3.98-3.98l3.98.22zm1.95-24.19c-7.33-13.69-.89-37.39 10.53-50.24 10.31-11.6 25.12-18.25 40.63-18.25 15.52 0 30.34 6.65 40.65 18.25 8.43 9.48 21.3 27.59 17.4 46.39-5.66-.35-10.67-2.55-14.4-6.36-5.37-5.49-7.72-14-6.63-23.94.29-2.62-1.17-5.13-3.6-6.17s-5.25-.37-6.95 1.65c-19.33 22.92-45.95 36.76-73.9 38.68h-3.73zm10.05 24.19v-12.73c24.57-2.92 47.92-14.05 66.73-31.8 1.43 7.26 4.63 13.6 9.45 18.52 3.27 3.35 7.14 5.89 11.41 7.58v18.42c0 24.15-19.65 43.8-43.8 43.8s-43.79-19.64-43.79-43.79zm15.89 78.48 19.29 19.29-13.29 13.29-15.84-27.66zm3.22 97.53h-39.42v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.76v-35.63c0-12.68 8.1-23.95 20.15-28.05.26-.09.51-.19.75-.31l46.47-23.23 20.07 35.06c.93 1.62 2.56 2.72 4.41 2.97.27.04.53.05.79.05 1.58 0 3.11-.62 4.24-1.76l.14-.14zm12.08 0 7.41-64.69 5.06-5.06 4.84 4.84 7.86 64.92h-25.17zm128.2 0h-39.76v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.18l-6.2-51.17.25.25c1.13 1.13 2.66 1.76 4.24 1.76.26 0 .53-.02.79-.05 1.85-.25 3.48-1.34 4.41-2.97l20.07-35.06 46.47 23.23c.24.12.49.23.75.31 12.05 4.1 20.15 15.38 20.15 28.05v35.65zm-67.04-346.65h-10.84l28.38 39.84 28.38-39.84h-10.84c-3.31 0-6-2.69-6-6v-64.58h-98.7c-3.31 0-6-2.69-6-6s2.69-6 6-6h104.7c3.31 0 6 2.69 6 6v64.58h16.48c2.25 0 4.3 1.25 5.33 3.25s.86 4.4-.45 6.23l-40.02 56.18c-1.13 1.58-2.95 2.52-4.89 2.52s-3.76-.94-4.89-2.52l-40.02-56.18c-1.3-1.83-1.48-4.23-.45-6.23s3.09-3.25 5.33-3.25h16.48v-23.5h-65.38c-3.31 0-6-2.69-6-6s2.69-6 6-6h71.38c3.31 0 6 2.69 6 6v35.5c.02 3.31-2.67 6-5.98 6zm-118.44 50.65v-133.26c0-21.18-17.23-38.41-38.41-38.41h-207.7c-21.18-.01-38.41 17.23-38.41 38.41v133.26c0 21.18 17.23 38.41 38.41 38.41h105.8l64.8 55.11c1.11.94 2.49 1.43 3.89 1.43.85 0 1.71-.18 2.52-.55 2.12-.98 3.48-3.11 3.48-5.45v-50.54h27.21c21.18 0 38.41-17.23 38.41-38.41zm-71.62 26.41c-3.31 0-6 2.69-6 6v43.56l-56.59-48.13c-1.08-.92-2.46-1.43-3.89-1.43h-108.01c-14.56 0-26.41-11.85-26.41-26.41v-133.26c0-14.56 11.85-26.41 26.41-26.41h207.69c14.56 0 26.41 11.85 26.41 26.41v133.26c0 14.56-11.85 26.41-26.41 26.41zm-156.34-87.87h56.97c3.31 0 6-2.69 6-6v-39.2l8.55-8.55c2.34-2.34 2.34-6.14 0-8.49-2.34-2.34-6.14-2.34-8.48 0l-.7.7c-.98-1.97-3.01-3.32-5.36-3.32h-56.98c-3.31 0-6 2.69-6 6v52.85c0 3.32 2.69 6.01 6 6.01zm6-52.86h44.97v2.69l-18.16 18.16-8.84-8.84c-2.34-2.34-6.14-2.34-8.49 0-2.34 2.34-2.34 6.14 0 8.49l13.08 13.08c1.17 1.17 2.71 1.76 4.24 1.76s3.07-.59 4.24-1.76l13.92-13.92v21.2h-44.96zm173.62 3.08c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 31.92c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 36.52c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.68 5.99 6zm0 31.92c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.69 5.99 6zm-119.36 165.01h10.84l-28.38-39.84-28.38 39.84h10.84c3.31 0 6 2.69 6 6v64.58h98.7c3.31 0 6 2.69 6 6s-2.69 6-6 6h-104.69c-3.31 0-6-2.69-6-6v-64.58h-16.48c-2.25 0-4.3-1.25-5.33-3.25s-.86-4.4.45-6.23l40.02-56.18c1.13-1.58 2.95-2.52 4.89-2.52s3.76.94 4.89 2.52l40.02 56.18c1.3 1.83 1.48 4.23.45 6.23s-3.09 3.25-5.33 3.25h-16.48v23.5h65.38c3.31 0 6 2.69 6 6s-2.69 6-6 6h-71.38c-3.31 0-6-2.69-6-6v-35.5c-.03-3.31 2.66-6 5.97-6z\"></path></svg>				\n									<h5>\n							ærlig<br> rådgivning						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 510 510\"><path d=\"m192.036 385.845c-4.787-46.972-19.459-64.336-30.658-82.352-8.672-13.951-15.5-28.245-15.5-54.252 0-60.242 48.865-109.109 109.135-109.109 60.242 0 109.109 48.866 109.109 109.109 0 26.007-6.828 40.301-15.5 54.252-11.199 18.016-25.871 35.38-30.658 82.352 9.985 2.864 17.345 12.101 17.345 22.975v36.44c0 13.109-10.747 23.866-23.893 23.866h-10.334v9.945c0 12.588-10.341 22.929-22.93 22.929h-46.304c-12.589 0-22.93-10.341-22.93-22.929v-9.945h-10.334c-13.146 0-23.893-10.757-23.893-23.866v-36.44c0-10.874 7.36-20.111 17.345-22.975zm111.948-.917c4.199-42.194 15.78-62.332 26.488-79.049 10.147-15.842 19.65-28.207 19.65-56.638 0-52.513-42.597-95.109-95.109-95.109-52.537 0-95.135 42.596-95.135 95.109 0 28.431 9.503 40.796 19.65 56.638 10.708 16.717 22.289 36.855 26.488 79.049zm2.554-78.61c-1.175 13.701-11.985 24.191-24.783 24.191-13.527 0-24.862-12.086-24.862-26.673v-99.328c0-14.12 11.335-26.673 24.862-26.673 11.309 0 21.031 8.139 23.975 19.497 9.12 3.904 15.688 13.438 15.688 24.78 0 1.153-.068 2.289-.201 3.403 5.078 5.326 8.283 12.802 8.283 21.117 0 6.39-1.889 12.262-5.06 17.053 1.996 4.099 3.13 8.773 3.13 13.76 0 14.1-9.065 25.697-21.032 28.873zm-16.452-109.977c-1.964-2.729-4.916-4.506-8.331-4.506-6.192 0-10.862 6.21-10.862 12.673v99.328c0 6.677 4.67 12.673 10.862 12.673 5.516 0 9.822-4.614 10.717-10.425-4.709-1.416-8.923-4.144-12.279-7.814-2.607-2.852-2.409-7.283.443-9.89 2.851-2.607 7.282-2.408 9.889.443 2.416 2.642 5.72 4.356 9.402 4.356 7.733 0 13.643-7.218 13.643-15.734s-5.91-15.734-13.643-15.734c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7 5.352 0 10.388 1.655 14.658 4.533.593-1.743.915-3.634.915-5.612 0-2.11-.366-4.128-1.036-5.972-.769.858-1.588 1.66-2.453 2.397-2.94 2.507-7.361 2.156-9.869-.784-2.507-2.939-2.155-7.361.784-9.868 2.773-2.365 4.492-6.122 4.492-10.293 0-6.072-3.705-11.374-8.898-12.467-.154-.023-.307-.052-.458-.085-.499-.08-1.01-.121-1.532-.121-2.947 0-5.591 1.389-7.515 3.525-2.585 2.87-7.015 3.101-9.886.515-2.87-2.586-3.101-7.015-.515-9.886 3.111-3.453 7.059-5.988 11.472-7.252zm-104.526 67.344c-3.171-4.791-5.06-10.663-5.06-17.053 0-8.307 3.198-15.777 8.284-21.104-.133-1.118-.202-2.258-.202-3.416 0-11.354 6.582-20.897 15.717-24.792 2.948-11.354 12.67-19.485 23.946-19.485 13.56 0 24.888 12.555 24.888 26.673v99.328c0 14.585-11.328 26.673-24.888 26.673-12.765 0-23.578-10.484-24.757-24.184-11.98-3.166-21.058-14.769-21.058-28.88 0-4.987 1.134-9.661 3.13-13.76zm9.982-23.036c-.675 1.847-1.042 3.869-1.042 5.983 0 1.978.322 3.869.915 5.612 4.27-2.878 9.306-4.533 14.658-4.533 3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7-7.733 0-13.643 7.218-13.643 15.734s5.91 15.734 13.643 15.734c3.682 0 6.986-1.714 9.402-4.356 2.607-2.851 7.038-3.05 9.889-.443 2.852 2.607 3.05 7.038.443 9.89-3.35 3.664-7.556 6.389-12.255 7.807.891 5.813 5.192 10.432 10.693 10.432 6.21 0 10.888-5.993 10.888-12.673v-99.328c0-6.466-4.678-12.673-10.888-12.673-3.404 0-6.349 1.777-8.309 4.507 4.421 1.264 8.367 3.8 11.476 7.251 2.586 2.871 2.355 7.3-.516 9.886-2.87 2.586-7.3 2.355-9.886-.515-1.926-2.138-4.574-3.525-7.54-3.525-.493 0-.976.037-1.448.108-.196.045-.395.082-.596.11-5.165 1.118-8.844 6.404-8.844 12.455 0 1.243.153 2.45.442 3.594.101.284.183.572.246.862.748 2.326 2.071 4.346 3.814 5.823 2.947 2.498 3.311 6.919.813 9.866s-6.919 3.312-9.866.814c-.878-.745-1.71-1.554-2.489-2.422zm3.042 158.279c-5.442 0-9.893 4.451-9.893 9.892v36.44c0 5.423 4.454 9.866 9.893 9.866h17.334c3.866 0 7 3.134 7 7v16.945c0 4.902 4.027 8.929 8.93 8.929h46.304c4.903 0 8.93-4.027 8.93-8.929v-16.945c0-3.866 3.134-7 7-7h17.334c5.439 0 9.893-4.443 9.893-9.866v-36.44c0-5.441-4.451-9.892-9.893-9.892zm63.416-314.093 2.907-5.412c1.828-3.403 6.075-4.683 9.479-2.854 3.403 1.828 4.682 6.075 2.854 9.479l-16.073 29.925c-1.22 2.271-3.589 3.688-6.167 3.688s-4.947-1.417-6.167-3.688l-16.073-29.925c-1.828-3.404-.549-7.651 2.854-9.479 3.404-1.829 7.651-.549 9.479 2.854l2.907 5.412v-69.835c0-3.863 3.137-7 7-7s7 3.137 7 7zm-132.198 54.758-49.381-49.381c-2.732-2.731-2.732-7.167 0-9.899s7.168-2.732 9.9 0l49.38 49.38-1.771-5.881c-1.114-3.7.985-7.608 4.684-8.722 3.7-1.114 7.607.985 8.721 4.685l9.796 32.526c.743 2.468.069 5.145-1.753 6.968-1.823 1.823-4.5 2.496-6.969 1.753l-32.526-9.795c-3.699-1.114-5.798-5.022-4.684-8.721s5.022-5.798 8.721-4.684zm-44.859 122.299h-69.835c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7h69.835l-5.412-2.907c-3.403-1.828-4.682-6.076-2.854-9.479 1.828-3.404 6.075-4.683 9.479-2.855l29.926 16.074c2.271 1.22 3.688 3.589 3.688 6.167 0 2.577-1.417 4.947-3.688 6.166l-29.926 16.074c-3.404 1.828-7.651.549-9.479-2.855-1.828-3.403-.549-7.651 2.854-9.479zm54.758 118.198-49.38 49.38c-2.732 2.732-7.168 2.732-9.9 0s-2.732-7.167 0-9.899l49.381-49.381-5.882 1.772c-3.699 1.114-7.607-.985-8.721-4.685-1.114-3.699.985-7.607 4.684-8.721l32.526-9.795c2.469-.743 5.146-.07 6.969 1.753 1.822 1.823 2.496 4.5 1.753 6.968l-9.796 32.527c-1.114 3.699-5.021 5.798-8.721 4.684-3.699-1.114-5.798-5.022-4.684-8.721zm240.497-240.497 5.882-1.771c3.699-1.114 7.607.985 8.721 4.684s-.985 7.607-4.684 8.721l-32.526 9.795c-2.469.743-5.146.07-6.969-1.753-1.822-1.823-2.496-4.5-1.753-6.968l9.796-32.526c1.114-3.7 5.021-5.799 8.721-4.685 3.699 1.114 5.798 5.022 4.684 8.722l-1.771 5.881 49.38-49.38c2.732-2.732 7.168-2.732 9.9 0s2.732 7.168 0 9.899zm44.859 122.299 5.412 2.906c3.403 1.828 4.682 6.076 2.854 9.479-1.828 3.404-6.075 4.683-9.479 2.855l-29.926-16.074c-2.271-1.219-3.688-3.589-3.688-6.166 0-2.578 1.417-4.947 3.688-6.167l29.926-16.074c3.404-1.828 7.651-.549 9.479 2.855 1.828 3.403.549 7.651-2.854 9.479l-5.412 2.907h69.835c3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7zm-54.758 118.198 1.771 5.882c1.114 3.699-.985 7.607-4.684 8.721-3.7 1.114-7.607-.985-8.721-4.684l-9.796-32.527c-.743-2.468-.069-5.145 1.753-6.968 1.823-1.823 4.5-2.496 6.969-1.753l32.526 9.795c3.699 1.114 5.798 5.022 4.684 8.721-1.114 3.7-5.022 5.799-8.721 4.685l-5.882-1.772 49.381 49.381c2.732 2.732 2.732 7.167 0 9.899s-7.168 2.732-9.9 0z\"></path></svg>				\n									<h5>\n							gennemtænkte løsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"outline\"><path d=\"M486.41,144A28,28,0,0,0,472,92H349.123l5.457-21.828a48.513,48.513,0,0,0-12.848-46.153A41.035,41.035,0,0,0,312.609,12H308a8.009,8.009,0,0,0-8,8V47.413l-19.233,64.112A17.376,17.376,0,0,1,268,123.539V112a4,4,0,0,0-4-4H152a4,4,0,0,0-4,4v72a4,4,0,0,0,8,0V116h72V276H156V248a4,4,0,0,0-8,0v32a4,4,0,0,0,4,4H264a4,4,0,0,0,4-4V268.5h11.168A37.07,37.07,0,0,1,305.092,279a45.025,45.025,0,0,0,31.48,12.752L440,292a27.987,27.987,0,0,0,19.369-48.2,27.987,27.987,0,0,0,16-48A28,28,0,0,0,486.41,144ZM260,276H236V116h24Zm212-88H396a4,4,0,0,0,0,8h60a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h40a20,20,0,0,1,.01,40l-103.428-.25a37.07,37.07,0,0,1-25.924-10.5,45.031,45.031,0,0,0-31.49-12.752H268V131.686a25.317,25.317,0,0,0,20.429-17.862l19.4-64.675A4,4,0,0,0,308,48V20h4.609a33.082,33.082,0,0,1,23.481,9.69,40.507,40.507,0,0,1,10.728,38.541l-6.7,26.8A4,4,0,0,0,344,100H472a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h72a20,20,0,0,1,0,40Z\"></path><path d=\"M194.5,183.243l-1.9-.217a4,4,0,0,0-4.169,2.491L184.29,195.9H135.278l-3.539-9.317a4,4,0,0,0-7.478,2.84l2.459,6.477h-8.474L68.452,156.872a4,4,0,1,0-4.935,6.3L77.6,174.209,56.961,194.48l-6.636-5.491a4,4,0,1,0-5.1,6.163L87.219,229.9a44.1,44.1,0,0,0,28.05,10.1H212a8.009,8.009,0,0,0,8-8V203.9a8.009,8.009,0,0,0-8-8h-8v-2.01A10.708,10.708,0,0,0,194.5,183.243ZM212,203.9V232H115.269a36.081,36.081,0,0,1-22.951-8.264l-29.16-24.128,20.8-20.422L114.4,203.045a4,4,0,0,0,2.468.852H187a4,4,0,0,0,3.715-2.517l3.929-9.843a2.712,2.712,0,0,1,1.356,2.35v6.01a4,4,0,0,0,4,4Z\"></path><path d=\"M223.084,484.672,200.87,469.863V346.36A44.1,44.1,0,0,0,195.327,325l-17.183-30.94a4,4,0,0,0-7,3.884l17.184,30.94a36.073,36.073,0,0,1,4.537,17.478V468H164.333a4,4,0,1,0,0,8h31.321l12,8H152.865V352a4,4,0,0,0-.358-1.655l-25.454-56A4,4,0,0,0,123.411,292H114.2a4,4,0,0,0-3.945,4.658l8.862,53.175a36.016,36.016,0,0,1-1.951,18.949L78.642,468H48.333a4,4,0,1,0,0,8H80.377L92,484H32.088L76.63,361.366a4.017,4.017,0,0,0,.183-2.044L61.1,268H136a4,4,0,0,0,0-8H59.233L30.555,173.966A19.723,19.723,0,0,1,49.27,148H76a12,12,0,0,0,24,0h15.2a21.975,21.975,0,0,1,8.395,1.652l10.889,4.458a4,4,0,1,0,3.032-7.4L126.63,142.25A29.938,29.938,0,0,0,115.2,140H100v-4.527A16.014,16.014,0,0,0,112,120V103.473A16.014,16.014,0,0,0,124,88V80a4,4,0,0,0-4-4H90A22.025,22.025,0,0,0,68,98v18a12.02,12.02,0,0,0,8,11.314V140H49.27a27.723,27.723,0,0,0-26.305,36.5l29.493,88.482,16.29,94.655-46.128,127A4,4,0,0,0,26.38,492h78.485a4,4,0,0,0,2.268-7.3L86.3,470.368l38.318-98.69a44.018,44.018,0,0,0,2.385-23.16L118.921,300h1.914l24.03,52.867V488a4,4,0,0,0,4,4h72a4,4,0,0,0,2.219-7.328ZM76,98A14.015,14.015,0,0,1,90,84h26v4a8.009,8.009,0,0,1-8,8H92a4,4,0,0,0-4,4,11.962,11.962,0,0,1-1.53,5.881A12.044,12.044,0,0,0,76,104.686Zm4,14a3.981,3.981,0,0,1,3.407,1.9,4,4,0,0,0,5.956.975c.207-.171.7-.648.7-.648.032-.028.061-.057.09-.087A19.907,19.907,0,0,0,95.6,104H104v16a8.009,8.009,0,0,1-8,8,12.133,12.133,0,0,1-2.681-.3,4,4,0,1,0-1.775,7.8c.151.035.3.06.456.091V148a4,4,0,1,1-8,0V124a4,4,0,0,0-4-4,4,4,0,0,1,0-8Z\"></path></g></svg>				\n									<h5>\n							arbejde udført med ansvar						\n					</h5>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 12:47:12', '2026-01-26 12:47:12', '', 10, 'https://mrarif.me/cpnordic/?p=488', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(489, 1, '2026-01-26 12:47:12', '2026-01-26 12:47:12', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>					\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle ANMELDELSER\n					</a>\n					<h2>HVORFOR VÆLGE CP NORDIC ApS?</h2>		<p>Når du vælger CP NORDIC ApS, får du:</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 450 450\" width=\"512\"><g><g><path d=\"m225 165.2c-25.9 0-48.9-18.8-53.3-45.2-2.4-14.2.9-28.6 9.3-40.3 8.4-11.8 20.9-19.5 35.1-21.9 29.4-4.9 57.3 15 62.2 44.5 4.9 29.4-15 57.3-44.4 62.2-3 .5-6 .7-8.9.7zm-7.6-99.8c-12.2 2-22.9 8.7-30.1 18.8s-10.1 22.4-8 34.6c3.8 22.7 23.5 38.8 45.7 38.8 2.5 0 5.1-.2 7.6-.6 25.2-4.2 42.3-28.1 38.1-53.4s-28.1-42.4-53.3-38.2z\"></path><path d=\"m255.2 115c-2.1 0-3.8-1.7-3.8-3.8 0-14.6-11.8-26.4-26.4-26.4-2.1 0-3.8-1.7-3.8-3.8s1.7-3.8 3.8-3.8c18.8 0 34.1 15.3 34.1 34.1 0 2-1.8 3.7-3.9 3.7z\"></path><path d=\"m236.1 203h-22.2c-2.1 0-3.8-1.7-3.8-3.8v-14.1c-3.1-.6-6.1-1.4-9.1-2.4l-7 12.2c-1.1 1.8-3.4 2.5-5.3 1.4l-19.2-11.1c-.9-.5-1.5-1.4-1.8-2.3-.3-1-.1-2 .4-2.9l7-12.1c-2.4-2.1-4.6-4.3-6.7-6.6l-12.1 7c-1.8 1.1-4.2.4-5.2-1.4l-11.1-19.2c-1.1-1.8-.4-4.2 1.4-5.2l11.9-6.8c-1-3-1.9-6.1-2.6-9.3h-13.7c-2.1 0-3.8-1.7-3.8-3.8v-22.2c0-2.1 1.7-3.8 3.8-3.8h13.4c.6-3.2 1.4-6.4 2.4-9.5l-11.5-6.6c-1.8-1.1-2.5-3.4-1.4-5.3l11.1-19.6c.5-.9 1.4-1.5 2.3-1.8s2-.1 2.9.4l11.3 6.6c2.2-2.5 4.5-4.8 7-7l-6.5-11.3c-.5-.9-.6-1.9-.4-2.9.3-1 .9-1.8 1.8-2.3l19.2-11.1c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l6.4 11.2c3.1-1.1 6.4-1.9 9.7-2.6v-13c0-2.1 1.7-3.8 3.8-3.8h22.2c2.1 0 3.8 1.7 3.8 3.8v12.8c3.3.7 6.5 1.5 9.7 2.6l6.5-11.2c.5-.9 1.4-1.5 2.3-1.8 1-.3 2-.1 2.9.4l19.2 11.1c.9.5 1.5 1.3 1.8 2.3s.1 2-.4 2.9l-6.5 11.3c2.5 2.2 4.8 4.5 7 7.1l11.3-6.6c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l11.1 19.2c1.1 1.8.4 4.2-1.4 5.3l-11.5 6.6c1 3.1 1.8 6.3 2.5 9.5h13.6c2.1 0 3.8 1.7 3.8 3.8v22.2c0 2.1-1.7 3.8-3.8 3.8h-13.6c-.6 3.1-1.5 6.2-2.5 9.3l11.9 6.8c1.8 1.1 2.5 3.4 1.4 5.2l-11.2 19.5c-1.1 1.8-3.4 2.5-5.2 1.4l-12-7c-2.1 2.4-4.4 4.6-6.7 6.6l7 12.1c.5.9.6 1.9.4 2.9s-.9 1.8-1.8 2.3l-19.2 11.1c-1.8 1.1-4.2.4-5.2-1.4l-7-12.2c-3 1-6 1.8-9.1 2.4v14.1c-.2 2.3-2 4-4.1 4zm-18.4-7.7h14.5v-13.5c0-1.9 1.4-3.5 3.3-3.8 4.7-.7 9.4-2 13.8-3.7 1.8-.7 3.8 0 4.7 1.7l6.7 11.6 12.6-7.3-6.7-11.6c-1-1.6-.5-3.7.9-4.9 3.7-3 7.2-6.4 10.2-10.1 1.2-1.5 3.3-1.8 4.9-.9l11.5 6.6 7.3-12.6-11.3-6.5c-1.6-.9-2.4-3-1.6-4.7 1.8-4.5 3.1-9.2 3.9-14 .3-1.9 1.9-3.2 3.8-3.2h13v-14.6h-12.8c-1.9 0-3.5-1.4-3.8-3.3-.7-4.8-2-9.6-3.7-14.2-.7-1.8 0-3.7 1.7-4.7l10.9-6.3-7.3-12.6-10.8 6.3c-1.6.9-3.7.6-4.9-.9-3.1-3.9-6.6-7.4-10.4-10.6-1.5-1.2-1.9-3.3-.9-4.9l6.2-10.7-12.6-7.3-6.1 10.6c-1 1.6-3 2.3-4.7 1.7-4.6-1.8-9.5-3.1-14.4-3.9-1.9-.3-3.3-1.9-3.3-3.8v-12.2h-14.5v12.3c0 1.9-1.4 3.5-3.3 3.8-5 .8-9.8 2.1-14.4 3.9-1.8.7-3.8 0-4.7-1.7l-6.1-10.6-12.6 7.3 6.2 10.7c.9 1.6.6 3.7-.9 4.9-3.9 3.1-7.4 6.7-10.4 10.6-1.2 1.5-3.3 1.9-4.9.9l-10.8-6.3-7.3 12.6 10.9 6.3c1.6.9 2.3 2.9 1.7 4.7-1.7 4.6-3 9.4-3.7 14.2-.3 1.9-1.9 3.3-3.8 3.3h-12.8v14.5h13c1.9 0 3.5 1.4 3.8 3.2.8 4.8 2.1 9.5 3.9 14 .7 1.8 0 3.8-1.6 4.7l-11.3 6.5 7.3 12.6 11.5-6.6c1.6-.9 3.7-.6 4.9.9 3 3.7 6.5 7.1 10.3 10.1 1.5 1.2 1.9 3.3.9 4.9l-6.7 11.6 12.6 7.3 6.7-11.6c.9-1.6 2.9-2.3 4.7-1.7 4.5 1.7 9.1 2.9 13.8 3.7 1.9.3 3.3 1.9 3.3 3.8z\"></path></g><g><g><g><path d=\"m45.3 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m153.9 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path></g><g><path d=\"m189.3 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.2c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c0 2.1-1.7 3.8-3.8 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m73.3 326.4c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m126 326.4c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m99.7 325.6c-.6 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4s4.1 1.1 4.4 3.2c2.4 16.5 12.3 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m50.2 266.6c-.1 0-.2 0-.3 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.7 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-8.9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.5 2.2zm81.8-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13.1-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.4-.7 2.3-.7z\"></path></g></g></g><g><g><path d=\"m296.1 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m404.7 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path></g><g><path d=\"m440 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.1c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c.2 2.1-1.6 3.8-3.7 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m324 326.3c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m376.7 326.3c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m350.4 325.6c-.5 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4 2.1-.3 4 1.1 4.4 3.2 2.4 16.5 12.4 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m301 266.6c-.1 0-.2 0-.4 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.6 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.4 2.2zm81.7-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.5-.7 2.3-.7z\"></path></g></g></g></g></g></svg>				\n									<h5>\n							et ungt og engageret team						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"496pt\" viewBox=\"0 0 496 496\" width=\"496pt\"><path d=\"m440 328h-28.207031c5.078125-6.703125 8.207031-14.960938 8.207031-24 0-8.824219-7.175781-16-16-16h-12v-19.960938c59.574219-14.445312 104-68.085937 104-132.039062 0-74.992188-61.007812-136-136-136s-136 61.007812-136 136c0 63.953125 44.425781 117.59375 104 132.039062v19.960938h-8.449219c-6.167969 0-12.359375 1.464844-17.886719 4.214844l-50.480468 25.25c-3.320313 1.664062-7.03125 2.535156-10.734375 2.535156h-40.449219v-16h-104v16h56v56h16v-56h16v128h-16v-56h-16v56h-56v16h104v-16h40.449219c3.703125 0 7.414062.871094 10.734375 2.527344l34.488281 17.25c5.519531 2.757812 11.710937 4.222656 17.878906 4.222656h24.449219v24h64v-24h48c13.230469 0 24-10.769531 24-24 0-6.167969-2.40625-11.742188-6.238281-16 3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16 0-13.230469-10.769531-24-24-24zm8 24c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm-208-280c0-66.167969 53.832031-120 120-120s120 53.832031 120 120-53.832031 120-120 120-120-53.832031-120-120zm104 134.976562c5.257812.617188 10.574219 1.023438 16 1.023438s10.742188-.40625 16-1.023438v17.023438h-32zm-40.449219 185.023438c-3.703125 0-7.414062-.871094-10.734375-2.527344l-34.488281-17.25c-5.519531-2.757812-11.710937-4.222656-17.878906-4.222656h-40.449219v-96h40.449219c6.167969 0 12.359375-1.464844 17.886719-4.214844l50.480468-25.25c3.320313-1.664062 7.03125-2.535156 10.734375-2.535156h84.449219c0 13.230469-10.769531 24-24 24h-48.28125l-23.863281 35.808594c-6.101563 9.160156-14.527344 16.589844-24.367188 21.503906-8.753906 4.375-18.542969 6.6875-28.320312 6.6875h-15.167969v16h15.167969c12.246093 0 24.519531-2.894531 35.472656-8.375 12.328125-6.160156 22.878906-15.480469 30.527344-26.945312l6.832031-10.253907v93.574219zm40.449219 24v-136h17.472656c-.898437 2.511719-1.472656 5.183594-1.472656 8 0 6.167969 2.40625 11.742188 6.238281 16-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16 0 10.414062 6.710938 19.214844 16 22.527344v9.472656zm96-24h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8s-3.59375 8-8 8zm0 0\"></path><path d=\"m394.878906 73.007812-7.757812 13.984376c17.816406 9.878906 28.878906 28.664062 28.878906 49.007812h16c0-26.160156-14.222656-50.296875-37.121094-62.992188zm0 0\"></path><path d=\"m360 80c4.734375 0 9.449219.59375 14.007812 1.769531l3.976563-15.503906c-5.855469-1.496094-11.90625-2.265625-17.984375-2.265625zm0 0\"></path><path d=\"m360 48c48.519531 0 88 39.480469 88 88 0 20.753906-7.398438 40.910156-20.832031 56.785156l12.207031 10.34375c15.882812-18.761718 24.625-42.601562 24.625-67.128906 0-57.34375-46.65625-104-104-104-24.527344 0-48.367188 8.753906-67.128906 24.632812l10.335937 12.199219c15.871094-13.433593 36.039063-20.832031 56.792969-20.832031zm0 0\"></path><path d=\"m427.128906 215.367188-10.335937-12.199219c-15.871094 13.433593-36.039063 20.832031-56.792969 20.832031-48.519531 0-88-39.480469-88-88 0-20.753906 7.398438-40.910156 20.832031-56.785156l-12.207031-10.34375c-15.882812 18.761718-24.625 42.601562-24.625 67.128906 0 57.34375 46.65625 104 104 104 24.527344 0 48.367188-8.753906 67.128906-24.632812zm0 0\"></path><path d=\"m121.214844 165.640625c4.953125-1.375 9.695312-3.34375 14.183594-5.878906l9.769531 4.886719 19.472656-19.480469-4.886719-9.769531c2.535156-4.496094 4.503906-9.230469 5.886719-14.183594l10.359375-3.445313v-27.53125l-10.351562-3.453125c-1.375-4.953125-3.34375-9.707031-5.886719-14.183594l4.886719-9.777343-19.472657-19.472657-9.769531 4.886719c-4.484375-2.535156-9.230469-4.503906-14.183594-5.878906l-3.453125-10.359375h-27.539062l-3.445313 10.359375c-4.953125 1.375-9.695312 3.34375-14.183594 5.878906l-9.777343-4.886719-19.472657 19.472657 4.886719 9.777343c-2.535156 4.488282-4.503906 9.230469-5.886719 14.183594l-10.351562 3.445313v27.53125l10.351562 3.453125c1.375 4.953125 3.34375 9.695312 5.886719 14.183594l-4.886719 9.769531 19.472657 19.480469 9.769531-4.886719c4.484375 2.535156 9.230469 4.503906 14.183594 5.878906l3.453125 10.359375h27.539062zm-12.304688-13.679687-2.679687 8.039062h-4.460938l-2.679687-8.039062-4.554688-.90625c-6.128906-1.222657-11.878906-3.605469-17.109375-7.09375l-3.867187-2.578126-7.574219 3.800782-3.160156-3.167969 3.792969-7.582031-2.578126-3.859375c-3.488281-5.222657-5.871093-10.980469-7.09375-17.109375l-.914062-4.554688-8.03125-2.679687v-4.46875l8.03125-2.671875.914062-4.554688c1.222657-6.136718 3.613282-11.886718 7.09375-17.109375l2.578126-3.859375-3.792969-7.589844 3.160156-3.160156 7.574219 3.800782 3.867187-2.578126c5.222657-3.488281 10.980469-5.863281 17.109375-7.09375l4.554688-.90625 2.679687-8.039062h4.460938l2.679687 8.039062 4.554688.90625c6.128906 1.222657 11.878906 3.605469 17.109375 7.09375l3.867187 2.578126 7.574219-3.800782 3.160156 3.160156-3.792969 7.589844 2.578126 3.859375c3.488281 5.214844 5.871093 10.972657 7.09375 17.109375l.914062 4.554688 8.03125 2.679687v4.46875l-8.03125 2.671875-.914062 4.554688c-1.222657 6.128906-3.613282 11.878906-7.09375 17.109375l-2.578126 3.859375 3.792969 7.582031-3.160156 3.167969-7.574219-3.800782-3.867187 2.578126c-5.222657 3.488281-10.980469 5.863281-17.109375 7.09375zm0 0\"></path><path d=\"m104 72c-17.648438 0-32 14.351562-32 32s14.351562 32 32 32 32-14.351562 32-32-14.351562-32-32-32zm0 48c-8.824219 0-16-7.175781-16-16s7.175781-16 16-16 16 7.175781 16 16-7.175781 16-16 16zm0 0\"></path><path d=\"m160 248v-40h48v-208h-208v208h106.664062zm-144-232h176v176h-48v24l-32-24h-96zm0 0\"></path><path d=\"m0 272h16v16h-16zm0 0\"></path><path d=\"m32 272h16v16h-16zm0 0\"></path><path d=\"m64 272h16v16h-16zm0 0\"></path><path d=\"m32 304h16v16h-16zm0 0\"></path><path d=\"m64 304h16v16h-16zm0 0\"></path><path d=\"m0 480h16v16h-16zm0 0\"></path><path d=\"m32 480h16v16h-16zm0 0\"></path><path d=\"m64 480h16v16h-16zm0 0\"></path><path d=\"m32 448h16v16h-16zm0 0\"></path><path d=\"m64 448h16v16h-16zm0 0\"></path></svg>				\n									<h5>\n							fokus på kvalitet og detaljer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m469.12 408.93-67.26-33.63v-22.13c10.71-7.69 18.6-19.07 21.78-32.27h5.28c8.81 0 15.98-7.17 15.98-15.98v-5.29c0-6.35-3.74-11.84-9.12-14.41 5.19-18.64-1.65-39.76-19.44-59.78-12.58-14.16-30.67-22.27-49.62-22.27-18.93 0-37.01 8.12-49.59 22.27-13.38 15.05-20.95 41.01-14.03 59.62-5.56 2.5-9.45 8.09-9.45 14.57v5.29c0 8.81 7.17 15.98 15.98 15.98h5.55c3.16 13.09 10.94 24.39 21.51 32.08v22.32l-67.26 33.63c-16.7 5.87-27.89 21.6-27.89 39.28v41.63c0 3.31 2.69 6 6 6h243.46c3.31 0 6-2.69 6-6v-41.63c0-17.68-11.19-33.41-27.88-39.28zm-62.24-17.7-15.83 27.66-13.29-13.29 19.29-19.29zm-37.61 5.88-20.59-20.58v-16.91c6.41 2.57 13.4 4.01 20.72 4.01 7.22 0 14.11-1.39 20.45-3.9v16.8zm63.63-97.48v5.29c0 2.16-1.82 3.98-3.98 3.98h-3.74c.01-.36.03-.71.03-1.07v-12.18h3.71c2.15-.01 3.98 1.82 3.98 3.98zm-119.29 8.2v1.07h-3.98c-2.16 0-3.98-1.82-3.98-3.98v-5.29c0-2.16 1.82-3.98 3.98-3.98l3.98.22zm1.95-24.19c-7.33-13.69-.89-37.39 10.53-50.24 10.31-11.6 25.12-18.25 40.63-18.25 15.52 0 30.34 6.65 40.65 18.25 8.43 9.48 21.3 27.59 17.4 46.39-5.66-.35-10.67-2.55-14.4-6.36-5.37-5.49-7.72-14-6.63-23.94.29-2.62-1.17-5.13-3.6-6.17s-5.25-.37-6.95 1.65c-19.33 22.92-45.95 36.76-73.9 38.68h-3.73zm10.05 24.19v-12.73c24.57-2.92 47.92-14.05 66.73-31.8 1.43 7.26 4.63 13.6 9.45 18.52 3.27 3.35 7.14 5.89 11.41 7.58v18.42c0 24.15-19.65 43.8-43.8 43.8s-43.79-19.64-43.79-43.79zm15.89 78.48 19.29 19.29-13.29 13.29-15.84-27.66zm3.22 97.53h-39.42v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.76v-35.63c0-12.68 8.1-23.95 20.15-28.05.26-.09.51-.19.75-.31l46.47-23.23 20.07 35.06c.93 1.62 2.56 2.72 4.41 2.97.27.04.53.05.79.05 1.58 0 3.11-.62 4.24-1.76l.14-.14zm12.08 0 7.41-64.69 5.06-5.06 4.84 4.84 7.86 64.92h-25.17zm128.2 0h-39.76v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.18l-6.2-51.17.25.25c1.13 1.13 2.66 1.76 4.24 1.76.26 0 .53-.02.79-.05 1.85-.25 3.48-1.34 4.41-2.97l20.07-35.06 46.47 23.23c.24.12.49.23.75.31 12.05 4.1 20.15 15.38 20.15 28.05v35.65zm-67.04-346.65h-10.84l28.38 39.84 28.38-39.84h-10.84c-3.31 0-6-2.69-6-6v-64.58h-98.7c-3.31 0-6-2.69-6-6s2.69-6 6-6h104.7c3.31 0 6 2.69 6 6v64.58h16.48c2.25 0 4.3 1.25 5.33 3.25s.86 4.4-.45 6.23l-40.02 56.18c-1.13 1.58-2.95 2.52-4.89 2.52s-3.76-.94-4.89-2.52l-40.02-56.18c-1.3-1.83-1.48-4.23-.45-6.23s3.09-3.25 5.33-3.25h16.48v-23.5h-65.38c-3.31 0-6-2.69-6-6s2.69-6 6-6h71.38c3.31 0 6 2.69 6 6v35.5c.02 3.31-2.67 6-5.98 6zm-118.44 50.65v-133.26c0-21.18-17.23-38.41-38.41-38.41h-207.7c-21.18-.01-38.41 17.23-38.41 38.41v133.26c0 21.18 17.23 38.41 38.41 38.41h105.8l64.8 55.11c1.11.94 2.49 1.43 3.89 1.43.85 0 1.71-.18 2.52-.55 2.12-.98 3.48-3.11 3.48-5.45v-50.54h27.21c21.18 0 38.41-17.23 38.41-38.41zm-71.62 26.41c-3.31 0-6 2.69-6 6v43.56l-56.59-48.13c-1.08-.92-2.46-1.43-3.89-1.43h-108.01c-14.56 0-26.41-11.85-26.41-26.41v-133.26c0-14.56 11.85-26.41 26.41-26.41h207.69c14.56 0 26.41 11.85 26.41 26.41v133.26c0 14.56-11.85 26.41-26.41 26.41zm-156.34-87.87h56.97c3.31 0 6-2.69 6-6v-39.2l8.55-8.55c2.34-2.34 2.34-6.14 0-8.49-2.34-2.34-6.14-2.34-8.48 0l-.7.7c-.98-1.97-3.01-3.32-5.36-3.32h-56.98c-3.31 0-6 2.69-6 6v52.85c0 3.32 2.69 6.01 6 6.01zm6-52.86h44.97v2.69l-18.16 18.16-8.84-8.84c-2.34-2.34-6.14-2.34-8.49 0-2.34 2.34-2.34 6.14 0 8.49l13.08 13.08c1.17 1.17 2.71 1.76 4.24 1.76s3.07-.59 4.24-1.76l13.92-13.92v21.2h-44.96zm173.62 3.08c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 31.92c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 36.52c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.68 5.99 6zm0 31.92c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.69 5.99 6zm-119.36 165.01h10.84l-28.38-39.84-28.38 39.84h10.84c3.31 0 6 2.69 6 6v64.58h98.7c3.31 0 6 2.69 6 6s-2.69 6-6 6h-104.69c-3.31 0-6-2.69-6-6v-64.58h-16.48c-2.25 0-4.3-1.25-5.33-3.25s-.86-4.4.45-6.23l40.02-56.18c1.13-1.58 2.95-2.52 4.89-2.52s3.76.94 4.89 2.52l40.02 56.18c1.3 1.83 1.48 4.23.45 6.23s-3.09 3.25-5.33 3.25h-16.48v23.5h65.38c3.31 0 6 2.69 6 6s-2.69 6-6 6h-71.38c-3.31 0-6-2.69-6-6v-35.5c-.03-3.31 2.66-6 5.97-6z\"></path></svg>				\n									<h5>\n							ærlig<br> rådgivning						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 510 510\"><path d=\"m192.036 385.845c-4.787-46.972-19.459-64.336-30.658-82.352-8.672-13.951-15.5-28.245-15.5-54.252 0-60.242 48.865-109.109 109.135-109.109 60.242 0 109.109 48.866 109.109 109.109 0 26.007-6.828 40.301-15.5 54.252-11.199 18.016-25.871 35.38-30.658 82.352 9.985 2.864 17.345 12.101 17.345 22.975v36.44c0 13.109-10.747 23.866-23.893 23.866h-10.334v9.945c0 12.588-10.341 22.929-22.93 22.929h-46.304c-12.589 0-22.93-10.341-22.93-22.929v-9.945h-10.334c-13.146 0-23.893-10.757-23.893-23.866v-36.44c0-10.874 7.36-20.111 17.345-22.975zm111.948-.917c4.199-42.194 15.78-62.332 26.488-79.049 10.147-15.842 19.65-28.207 19.65-56.638 0-52.513-42.597-95.109-95.109-95.109-52.537 0-95.135 42.596-95.135 95.109 0 28.431 9.503 40.796 19.65 56.638 10.708 16.717 22.289 36.855 26.488 79.049zm2.554-78.61c-1.175 13.701-11.985 24.191-24.783 24.191-13.527 0-24.862-12.086-24.862-26.673v-99.328c0-14.12 11.335-26.673 24.862-26.673 11.309 0 21.031 8.139 23.975 19.497 9.12 3.904 15.688 13.438 15.688 24.78 0 1.153-.068 2.289-.201 3.403 5.078 5.326 8.283 12.802 8.283 21.117 0 6.39-1.889 12.262-5.06 17.053 1.996 4.099 3.13 8.773 3.13 13.76 0 14.1-9.065 25.697-21.032 28.873zm-16.452-109.977c-1.964-2.729-4.916-4.506-8.331-4.506-6.192 0-10.862 6.21-10.862 12.673v99.328c0 6.677 4.67 12.673 10.862 12.673 5.516 0 9.822-4.614 10.717-10.425-4.709-1.416-8.923-4.144-12.279-7.814-2.607-2.852-2.409-7.283.443-9.89 2.851-2.607 7.282-2.408 9.889.443 2.416 2.642 5.72 4.356 9.402 4.356 7.733 0 13.643-7.218 13.643-15.734s-5.91-15.734-13.643-15.734c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7 5.352 0 10.388 1.655 14.658 4.533.593-1.743.915-3.634.915-5.612 0-2.11-.366-4.128-1.036-5.972-.769.858-1.588 1.66-2.453 2.397-2.94 2.507-7.361 2.156-9.869-.784-2.507-2.939-2.155-7.361.784-9.868 2.773-2.365 4.492-6.122 4.492-10.293 0-6.072-3.705-11.374-8.898-12.467-.154-.023-.307-.052-.458-.085-.499-.08-1.01-.121-1.532-.121-2.947 0-5.591 1.389-7.515 3.525-2.585 2.87-7.015 3.101-9.886.515-2.87-2.586-3.101-7.015-.515-9.886 3.111-3.453 7.059-5.988 11.472-7.252zm-104.526 67.344c-3.171-4.791-5.06-10.663-5.06-17.053 0-8.307 3.198-15.777 8.284-21.104-.133-1.118-.202-2.258-.202-3.416 0-11.354 6.582-20.897 15.717-24.792 2.948-11.354 12.67-19.485 23.946-19.485 13.56 0 24.888 12.555 24.888 26.673v99.328c0 14.585-11.328 26.673-24.888 26.673-12.765 0-23.578-10.484-24.757-24.184-11.98-3.166-21.058-14.769-21.058-28.88 0-4.987 1.134-9.661 3.13-13.76zm9.982-23.036c-.675 1.847-1.042 3.869-1.042 5.983 0 1.978.322 3.869.915 5.612 4.27-2.878 9.306-4.533 14.658-4.533 3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7-7.733 0-13.643 7.218-13.643 15.734s5.91 15.734 13.643 15.734c3.682 0 6.986-1.714 9.402-4.356 2.607-2.851 7.038-3.05 9.889-.443 2.852 2.607 3.05 7.038.443 9.89-3.35 3.664-7.556 6.389-12.255 7.807.891 5.813 5.192 10.432 10.693 10.432 6.21 0 10.888-5.993 10.888-12.673v-99.328c0-6.466-4.678-12.673-10.888-12.673-3.404 0-6.349 1.777-8.309 4.507 4.421 1.264 8.367 3.8 11.476 7.251 2.586 2.871 2.355 7.3-.516 9.886-2.87 2.586-7.3 2.355-9.886-.515-1.926-2.138-4.574-3.525-7.54-3.525-.493 0-.976.037-1.448.108-.196.045-.395.082-.596.11-5.165 1.118-8.844 6.404-8.844 12.455 0 1.243.153 2.45.442 3.594.101.284.183.572.246.862.748 2.326 2.071 4.346 3.814 5.823 2.947 2.498 3.311 6.919.813 9.866s-6.919 3.312-9.866.814c-.878-.745-1.71-1.554-2.489-2.422zm3.042 158.279c-5.442 0-9.893 4.451-9.893 9.892v36.44c0 5.423 4.454 9.866 9.893 9.866h17.334c3.866 0 7 3.134 7 7v16.945c0 4.902 4.027 8.929 8.93 8.929h46.304c4.903 0 8.93-4.027 8.93-8.929v-16.945c0-3.866 3.134-7 7-7h17.334c5.439 0 9.893-4.443 9.893-9.866v-36.44c0-5.441-4.451-9.892-9.893-9.892zm63.416-314.093 2.907-5.412c1.828-3.403 6.075-4.683 9.479-2.854 3.403 1.828 4.682 6.075 2.854 9.479l-16.073 29.925c-1.22 2.271-3.589 3.688-6.167 3.688s-4.947-1.417-6.167-3.688l-16.073-29.925c-1.828-3.404-.549-7.651 2.854-9.479 3.404-1.829 7.651-.549 9.479 2.854l2.907 5.412v-69.835c0-3.863 3.137-7 7-7s7 3.137 7 7zm-132.198 54.758-49.381-49.381c-2.732-2.731-2.732-7.167 0-9.899s7.168-2.732 9.9 0l49.38 49.38-1.771-5.881c-1.114-3.7.985-7.608 4.684-8.722 3.7-1.114 7.607.985 8.721 4.685l9.796 32.526c.743 2.468.069 5.145-1.753 6.968-1.823 1.823-4.5 2.496-6.969 1.753l-32.526-9.795c-3.699-1.114-5.798-5.022-4.684-8.721s5.022-5.798 8.721-4.684zm-44.859 122.299h-69.835c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7h69.835l-5.412-2.907c-3.403-1.828-4.682-6.076-2.854-9.479 1.828-3.404 6.075-4.683 9.479-2.855l29.926 16.074c2.271 1.22 3.688 3.589 3.688 6.167 0 2.577-1.417 4.947-3.688 6.166l-29.926 16.074c-3.404 1.828-7.651.549-9.479-2.855-1.828-3.403-.549-7.651 2.854-9.479zm54.758 118.198-49.38 49.38c-2.732 2.732-7.168 2.732-9.9 0s-2.732-7.167 0-9.899l49.381-49.381-5.882 1.772c-3.699 1.114-7.607-.985-8.721-4.685-1.114-3.699.985-7.607 4.684-8.721l32.526-9.795c2.469-.743 5.146-.07 6.969 1.753 1.822 1.823 2.496 4.5 1.753 6.968l-9.796 32.527c-1.114 3.699-5.021 5.798-8.721 4.684-3.699-1.114-5.798-5.022-4.684-8.721zm240.497-240.497 5.882-1.771c3.699-1.114 7.607.985 8.721 4.684s-.985 7.607-4.684 8.721l-32.526 9.795c-2.469.743-5.146.07-6.969-1.753-1.822-1.823-2.496-4.5-1.753-6.968l9.796-32.526c1.114-3.7 5.021-5.799 8.721-4.685 3.699 1.114 5.798 5.022 4.684 8.722l-1.771 5.881 49.38-49.38c2.732-2.732 7.168-2.732 9.9 0s2.732 7.168 0 9.899zm44.859 122.299 5.412 2.906c3.403 1.828 4.682 6.076 2.854 9.479-1.828 3.404-6.075 4.683-9.479 2.855l-29.926-16.074c-2.271-1.219-3.688-3.589-3.688-6.166 0-2.578 1.417-4.947 3.688-6.167l29.926-16.074c3.404-1.828 7.651-.549 9.479 2.855 1.828 3.403.549 7.651-2.854 9.479l-5.412 2.907h69.835c3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7zm-54.758 118.198 1.771 5.882c1.114 3.699-.985 7.607-4.684 8.721-3.7 1.114-7.607-.985-8.721-4.684l-9.796-32.527c-.743-2.468-.069-5.145 1.753-6.968 1.823-1.823 4.5-2.496 6.969-1.753l32.526 9.795c3.699 1.114 5.798 5.022 4.684 8.721-1.114 3.7-5.022 5.799-8.721 4.685l-5.882-1.772 49.381 49.381c2.732 2.732 2.732 7.167 0 9.899s-7.168 2.732-9.9 0z\"></path></svg>				\n									<h5>\n							gennemtænkte løsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"outline\"><path d=\"M486.41,144A28,28,0,0,0,472,92H349.123l5.457-21.828a48.513,48.513,0,0,0-12.848-46.153A41.035,41.035,0,0,0,312.609,12H308a8.009,8.009,0,0,0-8,8V47.413l-19.233,64.112A17.376,17.376,0,0,1,268,123.539V112a4,4,0,0,0-4-4H152a4,4,0,0,0-4,4v72a4,4,0,0,0,8,0V116h72V276H156V248a4,4,0,0,0-8,0v32a4,4,0,0,0,4,4H264a4,4,0,0,0,4-4V268.5h11.168A37.07,37.07,0,0,1,305.092,279a45.025,45.025,0,0,0,31.48,12.752L440,292a27.987,27.987,0,0,0,19.369-48.2,27.987,27.987,0,0,0,16-48A28,28,0,0,0,486.41,144ZM260,276H236V116h24Zm212-88H396a4,4,0,0,0,0,8h60a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h40a20,20,0,0,1,.01,40l-103.428-.25a37.07,37.07,0,0,1-25.924-10.5,45.031,45.031,0,0,0-31.49-12.752H268V131.686a25.317,25.317,0,0,0,20.429-17.862l19.4-64.675A4,4,0,0,0,308,48V20h4.609a33.082,33.082,0,0,1,23.481,9.69,40.507,40.507,0,0,1,10.728,38.541l-6.7,26.8A4,4,0,0,0,344,100H472a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h72a20,20,0,0,1,0,40Z\"></path><path d=\"M194.5,183.243l-1.9-.217a4,4,0,0,0-4.169,2.491L184.29,195.9H135.278l-3.539-9.317a4,4,0,0,0-7.478,2.84l2.459,6.477h-8.474L68.452,156.872a4,4,0,1,0-4.935,6.3L77.6,174.209,56.961,194.48l-6.636-5.491a4,4,0,1,0-5.1,6.163L87.219,229.9a44.1,44.1,0,0,0,28.05,10.1H212a8.009,8.009,0,0,0,8-8V203.9a8.009,8.009,0,0,0-8-8h-8v-2.01A10.708,10.708,0,0,0,194.5,183.243ZM212,203.9V232H115.269a36.081,36.081,0,0,1-22.951-8.264l-29.16-24.128,20.8-20.422L114.4,203.045a4,4,0,0,0,2.468.852H187a4,4,0,0,0,3.715-2.517l3.929-9.843a2.712,2.712,0,0,1,1.356,2.35v6.01a4,4,0,0,0,4,4Z\"></path><path d=\"M223.084,484.672,200.87,469.863V346.36A44.1,44.1,0,0,0,195.327,325l-17.183-30.94a4,4,0,0,0-7,3.884l17.184,30.94a36.073,36.073,0,0,1,4.537,17.478V468H164.333a4,4,0,1,0,0,8h31.321l12,8H152.865V352a4,4,0,0,0-.358-1.655l-25.454-56A4,4,0,0,0,123.411,292H114.2a4,4,0,0,0-3.945,4.658l8.862,53.175a36.016,36.016,0,0,1-1.951,18.949L78.642,468H48.333a4,4,0,1,0,0,8H80.377L92,484H32.088L76.63,361.366a4.017,4.017,0,0,0,.183-2.044L61.1,268H136a4,4,0,0,0,0-8H59.233L30.555,173.966A19.723,19.723,0,0,1,49.27,148H76a12,12,0,0,0,24,0h15.2a21.975,21.975,0,0,1,8.395,1.652l10.889,4.458a4,4,0,1,0,3.032-7.4L126.63,142.25A29.938,29.938,0,0,0,115.2,140H100v-4.527A16.014,16.014,0,0,0,112,120V103.473A16.014,16.014,0,0,0,124,88V80a4,4,0,0,0-4-4H90A22.025,22.025,0,0,0,68,98v18a12.02,12.02,0,0,0,8,11.314V140H49.27a27.723,27.723,0,0,0-26.305,36.5l29.493,88.482,16.29,94.655-46.128,127A4,4,0,0,0,26.38,492h78.485a4,4,0,0,0,2.268-7.3L86.3,470.368l38.318-98.69a44.018,44.018,0,0,0,2.385-23.16L118.921,300h1.914l24.03,52.867V488a4,4,0,0,0,4,4h72a4,4,0,0,0,2.219-7.328ZM76,98A14.015,14.015,0,0,1,90,84h26v4a8.009,8.009,0,0,1-8,8H92a4,4,0,0,0-4,4,11.962,11.962,0,0,1-1.53,5.881A12.044,12.044,0,0,0,76,104.686Zm4,14a3.981,3.981,0,0,1,3.407,1.9,4,4,0,0,0,5.956.975c.207-.171.7-.648.7-.648.032-.028.061-.057.09-.087A19.907,19.907,0,0,0,95.6,104H104v16a8.009,8.009,0,0,1-8,8,12.133,12.133,0,0,1-2.681-.3,4,4,0,1,0-1.775,7.8c.151.035.3.06.456.091V148a4,4,0,1,1-8,0V124a4,4,0,0,0-4-4,4,4,0,0,1,0-8Z\"></path></g></svg>				\n									<h5>\n							arbejde udført med ansvar						\n					</h5>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 12:47:12', '2026-01-26 12:47:12', '', 10, 'https://mrarif.me/cpnordic/?p=489', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(490, 1, '2026-01-26 12:47:13', '2026-01-26 12:47:13', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>					\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle ANMELDELSER\n					</a>\n					<h2>HVORFOR VÆLGE CP NORDIC ApS?</h2>		<p>Når du vælger CP NORDIC ApS, får du:</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 450 450\" width=\"512\"><g><g><path d=\"m225 165.2c-25.9 0-48.9-18.8-53.3-45.2-2.4-14.2.9-28.6 9.3-40.3 8.4-11.8 20.9-19.5 35.1-21.9 29.4-4.9 57.3 15 62.2 44.5 4.9 29.4-15 57.3-44.4 62.2-3 .5-6 .7-8.9.7zm-7.6-99.8c-12.2 2-22.9 8.7-30.1 18.8s-10.1 22.4-8 34.6c3.8 22.7 23.5 38.8 45.7 38.8 2.5 0 5.1-.2 7.6-.6 25.2-4.2 42.3-28.1 38.1-53.4s-28.1-42.4-53.3-38.2z\"></path><path d=\"m255.2 115c-2.1 0-3.8-1.7-3.8-3.8 0-14.6-11.8-26.4-26.4-26.4-2.1 0-3.8-1.7-3.8-3.8s1.7-3.8 3.8-3.8c18.8 0 34.1 15.3 34.1 34.1 0 2-1.8 3.7-3.9 3.7z\"></path><path d=\"m236.1 203h-22.2c-2.1 0-3.8-1.7-3.8-3.8v-14.1c-3.1-.6-6.1-1.4-9.1-2.4l-7 12.2c-1.1 1.8-3.4 2.5-5.3 1.4l-19.2-11.1c-.9-.5-1.5-1.4-1.8-2.3-.3-1-.1-2 .4-2.9l7-12.1c-2.4-2.1-4.6-4.3-6.7-6.6l-12.1 7c-1.8 1.1-4.2.4-5.2-1.4l-11.1-19.2c-1.1-1.8-.4-4.2 1.4-5.2l11.9-6.8c-1-3-1.9-6.1-2.6-9.3h-13.7c-2.1 0-3.8-1.7-3.8-3.8v-22.2c0-2.1 1.7-3.8 3.8-3.8h13.4c.6-3.2 1.4-6.4 2.4-9.5l-11.5-6.6c-1.8-1.1-2.5-3.4-1.4-5.3l11.1-19.6c.5-.9 1.4-1.5 2.3-1.8s2-.1 2.9.4l11.3 6.6c2.2-2.5 4.5-4.8 7-7l-6.5-11.3c-.5-.9-.6-1.9-.4-2.9.3-1 .9-1.8 1.8-2.3l19.2-11.1c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l6.4 11.2c3.1-1.1 6.4-1.9 9.7-2.6v-13c0-2.1 1.7-3.8 3.8-3.8h22.2c2.1 0 3.8 1.7 3.8 3.8v12.8c3.3.7 6.5 1.5 9.7 2.6l6.5-11.2c.5-.9 1.4-1.5 2.3-1.8 1-.3 2-.1 2.9.4l19.2 11.1c.9.5 1.5 1.3 1.8 2.3s.1 2-.4 2.9l-6.5 11.3c2.5 2.2 4.8 4.5 7 7.1l11.3-6.6c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l11.1 19.2c1.1 1.8.4 4.2-1.4 5.3l-11.5 6.6c1 3.1 1.8 6.3 2.5 9.5h13.6c2.1 0 3.8 1.7 3.8 3.8v22.2c0 2.1-1.7 3.8-3.8 3.8h-13.6c-.6 3.1-1.5 6.2-2.5 9.3l11.9 6.8c1.8 1.1 2.5 3.4 1.4 5.2l-11.2 19.5c-1.1 1.8-3.4 2.5-5.2 1.4l-12-7c-2.1 2.4-4.4 4.6-6.7 6.6l7 12.1c.5.9.6 1.9.4 2.9s-.9 1.8-1.8 2.3l-19.2 11.1c-1.8 1.1-4.2.4-5.2-1.4l-7-12.2c-3 1-6 1.8-9.1 2.4v14.1c-.2 2.3-2 4-4.1 4zm-18.4-7.7h14.5v-13.5c0-1.9 1.4-3.5 3.3-3.8 4.7-.7 9.4-2 13.8-3.7 1.8-.7 3.8 0 4.7 1.7l6.7 11.6 12.6-7.3-6.7-11.6c-1-1.6-.5-3.7.9-4.9 3.7-3 7.2-6.4 10.2-10.1 1.2-1.5 3.3-1.8 4.9-.9l11.5 6.6 7.3-12.6-11.3-6.5c-1.6-.9-2.4-3-1.6-4.7 1.8-4.5 3.1-9.2 3.9-14 .3-1.9 1.9-3.2 3.8-3.2h13v-14.6h-12.8c-1.9 0-3.5-1.4-3.8-3.3-.7-4.8-2-9.6-3.7-14.2-.7-1.8 0-3.7 1.7-4.7l10.9-6.3-7.3-12.6-10.8 6.3c-1.6.9-3.7.6-4.9-.9-3.1-3.9-6.6-7.4-10.4-10.6-1.5-1.2-1.9-3.3-.9-4.9l6.2-10.7-12.6-7.3-6.1 10.6c-1 1.6-3 2.3-4.7 1.7-4.6-1.8-9.5-3.1-14.4-3.9-1.9-.3-3.3-1.9-3.3-3.8v-12.2h-14.5v12.3c0 1.9-1.4 3.5-3.3 3.8-5 .8-9.8 2.1-14.4 3.9-1.8.7-3.8 0-4.7-1.7l-6.1-10.6-12.6 7.3 6.2 10.7c.9 1.6.6 3.7-.9 4.9-3.9 3.1-7.4 6.7-10.4 10.6-1.2 1.5-3.3 1.9-4.9.9l-10.8-6.3-7.3 12.6 10.9 6.3c1.6.9 2.3 2.9 1.7 4.7-1.7 4.6-3 9.4-3.7 14.2-.3 1.9-1.9 3.3-3.8 3.3h-12.8v14.5h13c1.9 0 3.5 1.4 3.8 3.2.8 4.8 2.1 9.5 3.9 14 .7 1.8 0 3.8-1.6 4.7l-11.3 6.5 7.3 12.6 11.5-6.6c1.6-.9 3.7-.6 4.9.9 3 3.7 6.5 7.1 10.3 10.1 1.5 1.2 1.9 3.3.9 4.9l-6.7 11.6 12.6 7.3 6.7-11.6c.9-1.6 2.9-2.3 4.7-1.7 4.5 1.7 9.1 2.9 13.8 3.7 1.9.3 3.3 1.9 3.3 3.8z\"></path></g><g><g><g><path d=\"m45.3 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m153.9 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path></g><g><path d=\"m189.3 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.2c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c0 2.1-1.7 3.8-3.8 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m73.3 326.4c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m126 326.4c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m99.7 325.6c-.6 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4s4.1 1.1 4.4 3.2c2.4 16.5 12.3 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m50.2 266.6c-.1 0-.2 0-.3 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.7 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-8.9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.5 2.2zm81.8-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13.1-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.4-.7 2.3-.7z\"></path></g></g></g><g><g><path d=\"m296.1 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m404.7 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path></g><g><path d=\"m440 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.1c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c.2 2.1-1.6 3.8-3.7 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m324 326.3c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m376.7 326.3c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m350.4 325.6c-.5 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4 2.1-.3 4 1.1 4.4 3.2 2.4 16.5 12.4 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m301 266.6c-.1 0-.2 0-.4 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.6 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.4 2.2zm81.7-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.5-.7 2.3-.7z\"></path></g></g></g></g></g></svg>				\n									<h5>\n							et ungt og engageret team						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"496pt\" viewBox=\"0 0 496 496\" width=\"496pt\"><path d=\"m440 328h-28.207031c5.078125-6.703125 8.207031-14.960938 8.207031-24 0-8.824219-7.175781-16-16-16h-12v-19.960938c59.574219-14.445312 104-68.085937 104-132.039062 0-74.992188-61.007812-136-136-136s-136 61.007812-136 136c0 63.953125 44.425781 117.59375 104 132.039062v19.960938h-8.449219c-6.167969 0-12.359375 1.464844-17.886719 4.214844l-50.480468 25.25c-3.320313 1.664062-7.03125 2.535156-10.734375 2.535156h-40.449219v-16h-104v16h56v56h16v-56h16v128h-16v-56h-16v56h-56v16h104v-16h40.449219c3.703125 0 7.414062.871094 10.734375 2.527344l34.488281 17.25c5.519531 2.757812 11.710937 4.222656 17.878906 4.222656h24.449219v24h64v-24h48c13.230469 0 24-10.769531 24-24 0-6.167969-2.40625-11.742188-6.238281-16 3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16 0-13.230469-10.769531-24-24-24zm8 24c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm-208-280c0-66.167969 53.832031-120 120-120s120 53.832031 120 120-53.832031 120-120 120-120-53.832031-120-120zm104 134.976562c5.257812.617188 10.574219 1.023438 16 1.023438s10.742188-.40625 16-1.023438v17.023438h-32zm-40.449219 185.023438c-3.703125 0-7.414062-.871094-10.734375-2.527344l-34.488281-17.25c-5.519531-2.757812-11.710937-4.222656-17.878906-4.222656h-40.449219v-96h40.449219c6.167969 0 12.359375-1.464844 17.886719-4.214844l50.480468-25.25c3.320313-1.664062 7.03125-2.535156 10.734375-2.535156h84.449219c0 13.230469-10.769531 24-24 24h-48.28125l-23.863281 35.808594c-6.101563 9.160156-14.527344 16.589844-24.367188 21.503906-8.753906 4.375-18.542969 6.6875-28.320312 6.6875h-15.167969v16h15.167969c12.246093 0 24.519531-2.894531 35.472656-8.375 12.328125-6.160156 22.878906-15.480469 30.527344-26.945312l6.832031-10.253907v93.574219zm40.449219 24v-136h17.472656c-.898437 2.511719-1.472656 5.183594-1.472656 8 0 6.167969 2.40625 11.742188 6.238281 16-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16 0 10.414062 6.710938 19.214844 16 22.527344v9.472656zm96-24h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8s-3.59375 8-8 8zm0 0\"></path><path d=\"m394.878906 73.007812-7.757812 13.984376c17.816406 9.878906 28.878906 28.664062 28.878906 49.007812h16c0-26.160156-14.222656-50.296875-37.121094-62.992188zm0 0\"></path><path d=\"m360 80c4.734375 0 9.449219.59375 14.007812 1.769531l3.976563-15.503906c-5.855469-1.496094-11.90625-2.265625-17.984375-2.265625zm0 0\"></path><path d=\"m360 48c48.519531 0 88 39.480469 88 88 0 20.753906-7.398438 40.910156-20.832031 56.785156l12.207031 10.34375c15.882812-18.761718 24.625-42.601562 24.625-67.128906 0-57.34375-46.65625-104-104-104-24.527344 0-48.367188 8.753906-67.128906 24.632812l10.335937 12.199219c15.871094-13.433593 36.039063-20.832031 56.792969-20.832031zm0 0\"></path><path d=\"m427.128906 215.367188-10.335937-12.199219c-15.871094 13.433593-36.039063 20.832031-56.792969 20.832031-48.519531 0-88-39.480469-88-88 0-20.753906 7.398438-40.910156 20.832031-56.785156l-12.207031-10.34375c-15.882812 18.761718-24.625 42.601562-24.625 67.128906 0 57.34375 46.65625 104 104 104 24.527344 0 48.367188-8.753906 67.128906-24.632812zm0 0\"></path><path d=\"m121.214844 165.640625c4.953125-1.375 9.695312-3.34375 14.183594-5.878906l9.769531 4.886719 19.472656-19.480469-4.886719-9.769531c2.535156-4.496094 4.503906-9.230469 5.886719-14.183594l10.359375-3.445313v-27.53125l-10.351562-3.453125c-1.375-4.953125-3.34375-9.707031-5.886719-14.183594l4.886719-9.777343-19.472657-19.472657-9.769531 4.886719c-4.484375-2.535156-9.230469-4.503906-14.183594-5.878906l-3.453125-10.359375h-27.539062l-3.445313 10.359375c-4.953125 1.375-9.695312 3.34375-14.183594 5.878906l-9.777343-4.886719-19.472657 19.472657 4.886719 9.777343c-2.535156 4.488282-4.503906 9.230469-5.886719 14.183594l-10.351562 3.445313v27.53125l10.351562 3.453125c1.375 4.953125 3.34375 9.695312 5.886719 14.183594l-4.886719 9.769531 19.472657 19.480469 9.769531-4.886719c4.484375 2.535156 9.230469 4.503906 14.183594 5.878906l3.453125 10.359375h27.539062zm-12.304688-13.679687-2.679687 8.039062h-4.460938l-2.679687-8.039062-4.554688-.90625c-6.128906-1.222657-11.878906-3.605469-17.109375-7.09375l-3.867187-2.578126-7.574219 3.800782-3.160156-3.167969 3.792969-7.582031-2.578126-3.859375c-3.488281-5.222657-5.871093-10.980469-7.09375-17.109375l-.914062-4.554688-8.03125-2.679687v-4.46875l8.03125-2.671875.914062-4.554688c1.222657-6.136718 3.613282-11.886718 7.09375-17.109375l2.578126-3.859375-3.792969-7.589844 3.160156-3.160156 7.574219 3.800782 3.867187-2.578126c5.222657-3.488281 10.980469-5.863281 17.109375-7.09375l4.554688-.90625 2.679687-8.039062h4.460938l2.679687 8.039062 4.554688.90625c6.128906 1.222657 11.878906 3.605469 17.109375 7.09375l3.867187 2.578126 7.574219-3.800782 3.160156 3.160156-3.792969 7.589844 2.578126 3.859375c3.488281 5.214844 5.871093 10.972657 7.09375 17.109375l.914062 4.554688 8.03125 2.679687v4.46875l-8.03125 2.671875-.914062 4.554688c-1.222657 6.128906-3.613282 11.878906-7.09375 17.109375l-2.578126 3.859375 3.792969 7.582031-3.160156 3.167969-7.574219-3.800782-3.867187 2.578126c-5.222657 3.488281-10.980469 5.863281-17.109375 7.09375zm0 0\"></path><path d=\"m104 72c-17.648438 0-32 14.351562-32 32s14.351562 32 32 32 32-14.351562 32-32-14.351562-32-32-32zm0 48c-8.824219 0-16-7.175781-16-16s7.175781-16 16-16 16 7.175781 16 16-7.175781 16-16 16zm0 0\"></path><path d=\"m160 248v-40h48v-208h-208v208h106.664062zm-144-232h176v176h-48v24l-32-24h-96zm0 0\"></path><path d=\"m0 272h16v16h-16zm0 0\"></path><path d=\"m32 272h16v16h-16zm0 0\"></path><path d=\"m64 272h16v16h-16zm0 0\"></path><path d=\"m32 304h16v16h-16zm0 0\"></path><path d=\"m64 304h16v16h-16zm0 0\"></path><path d=\"m0 480h16v16h-16zm0 0\"></path><path d=\"m32 480h16v16h-16zm0 0\"></path><path d=\"m64 480h16v16h-16zm0 0\"></path><path d=\"m32 448h16v16h-16zm0 0\"></path><path d=\"m64 448h16v16h-16zm0 0\"></path></svg>				\n									<h5>\n							fokus på kvalitet og detaljer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m469.12 408.93-67.26-33.63v-22.13c10.71-7.69 18.6-19.07 21.78-32.27h5.28c8.81 0 15.98-7.17 15.98-15.98v-5.29c0-6.35-3.74-11.84-9.12-14.41 5.19-18.64-1.65-39.76-19.44-59.78-12.58-14.16-30.67-22.27-49.62-22.27-18.93 0-37.01 8.12-49.59 22.27-13.38 15.05-20.95 41.01-14.03 59.62-5.56 2.5-9.45 8.09-9.45 14.57v5.29c0 8.81 7.17 15.98 15.98 15.98h5.55c3.16 13.09 10.94 24.39 21.51 32.08v22.32l-67.26 33.63c-16.7 5.87-27.89 21.6-27.89 39.28v41.63c0 3.31 2.69 6 6 6h243.46c3.31 0 6-2.69 6-6v-41.63c0-17.68-11.19-33.41-27.88-39.28zm-62.24-17.7-15.83 27.66-13.29-13.29 19.29-19.29zm-37.61 5.88-20.59-20.58v-16.91c6.41 2.57 13.4 4.01 20.72 4.01 7.22 0 14.11-1.39 20.45-3.9v16.8zm63.63-97.48v5.29c0 2.16-1.82 3.98-3.98 3.98h-3.74c.01-.36.03-.71.03-1.07v-12.18h3.71c2.15-.01 3.98 1.82 3.98 3.98zm-119.29 8.2v1.07h-3.98c-2.16 0-3.98-1.82-3.98-3.98v-5.29c0-2.16 1.82-3.98 3.98-3.98l3.98.22zm1.95-24.19c-7.33-13.69-.89-37.39 10.53-50.24 10.31-11.6 25.12-18.25 40.63-18.25 15.52 0 30.34 6.65 40.65 18.25 8.43 9.48 21.3 27.59 17.4 46.39-5.66-.35-10.67-2.55-14.4-6.36-5.37-5.49-7.72-14-6.63-23.94.29-2.62-1.17-5.13-3.6-6.17s-5.25-.37-6.95 1.65c-19.33 22.92-45.95 36.76-73.9 38.68h-3.73zm10.05 24.19v-12.73c24.57-2.92 47.92-14.05 66.73-31.8 1.43 7.26 4.63 13.6 9.45 18.52 3.27 3.35 7.14 5.89 11.41 7.58v18.42c0 24.15-19.65 43.8-43.8 43.8s-43.79-19.64-43.79-43.79zm15.89 78.48 19.29 19.29-13.29 13.29-15.84-27.66zm3.22 97.53h-39.42v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.76v-35.63c0-12.68 8.1-23.95 20.15-28.05.26-.09.51-.19.75-.31l46.47-23.23 20.07 35.06c.93 1.62 2.56 2.72 4.41 2.97.27.04.53.05.79.05 1.58 0 3.11-.62 4.24-1.76l.14-.14zm12.08 0 7.41-64.69 5.06-5.06 4.84 4.84 7.86 64.92h-25.17zm128.2 0h-39.76v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.18l-6.2-51.17.25.25c1.13 1.13 2.66 1.76 4.24 1.76.26 0 .53-.02.79-.05 1.85-.25 3.48-1.34 4.41-2.97l20.07-35.06 46.47 23.23c.24.12.49.23.75.31 12.05 4.1 20.15 15.38 20.15 28.05v35.65zm-67.04-346.65h-10.84l28.38 39.84 28.38-39.84h-10.84c-3.31 0-6-2.69-6-6v-64.58h-98.7c-3.31 0-6-2.69-6-6s2.69-6 6-6h104.7c3.31 0 6 2.69 6 6v64.58h16.48c2.25 0 4.3 1.25 5.33 3.25s.86 4.4-.45 6.23l-40.02 56.18c-1.13 1.58-2.95 2.52-4.89 2.52s-3.76-.94-4.89-2.52l-40.02-56.18c-1.3-1.83-1.48-4.23-.45-6.23s3.09-3.25 5.33-3.25h16.48v-23.5h-65.38c-3.31 0-6-2.69-6-6s2.69-6 6-6h71.38c3.31 0 6 2.69 6 6v35.5c.02 3.31-2.67 6-5.98 6zm-118.44 50.65v-133.26c0-21.18-17.23-38.41-38.41-38.41h-207.7c-21.18-.01-38.41 17.23-38.41 38.41v133.26c0 21.18 17.23 38.41 38.41 38.41h105.8l64.8 55.11c1.11.94 2.49 1.43 3.89 1.43.85 0 1.71-.18 2.52-.55 2.12-.98 3.48-3.11 3.48-5.45v-50.54h27.21c21.18 0 38.41-17.23 38.41-38.41zm-71.62 26.41c-3.31 0-6 2.69-6 6v43.56l-56.59-48.13c-1.08-.92-2.46-1.43-3.89-1.43h-108.01c-14.56 0-26.41-11.85-26.41-26.41v-133.26c0-14.56 11.85-26.41 26.41-26.41h207.69c14.56 0 26.41 11.85 26.41 26.41v133.26c0 14.56-11.85 26.41-26.41 26.41zm-156.34-87.87h56.97c3.31 0 6-2.69 6-6v-39.2l8.55-8.55c2.34-2.34 2.34-6.14 0-8.49-2.34-2.34-6.14-2.34-8.48 0l-.7.7c-.98-1.97-3.01-3.32-5.36-3.32h-56.98c-3.31 0-6 2.69-6 6v52.85c0 3.32 2.69 6.01 6 6.01zm6-52.86h44.97v2.69l-18.16 18.16-8.84-8.84c-2.34-2.34-6.14-2.34-8.49 0-2.34 2.34-2.34 6.14 0 8.49l13.08 13.08c1.17 1.17 2.71 1.76 4.24 1.76s3.07-.59 4.24-1.76l13.92-13.92v21.2h-44.96zm173.62 3.08c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 31.92c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 36.52c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.68 5.99 6zm0 31.92c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.69 5.99 6zm-119.36 165.01h10.84l-28.38-39.84-28.38 39.84h10.84c3.31 0 6 2.69 6 6v64.58h98.7c3.31 0 6 2.69 6 6s-2.69 6-6 6h-104.69c-3.31 0-6-2.69-6-6v-64.58h-16.48c-2.25 0-4.3-1.25-5.33-3.25s-.86-4.4.45-6.23l40.02-56.18c1.13-1.58 2.95-2.52 4.89-2.52s3.76.94 4.89 2.52l40.02 56.18c1.3 1.83 1.48 4.23.45 6.23s-3.09 3.25-5.33 3.25h-16.48v23.5h65.38c3.31 0 6 2.69 6 6s-2.69 6-6 6h-71.38c-3.31 0-6-2.69-6-6v-35.5c-.03-3.31 2.66-6 5.97-6z\"></path></svg>				\n									<h5>\n							ærlig<br> rådgivning						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 510 510\"><path d=\"m192.036 385.845c-4.787-46.972-19.459-64.336-30.658-82.352-8.672-13.951-15.5-28.245-15.5-54.252 0-60.242 48.865-109.109 109.135-109.109 60.242 0 109.109 48.866 109.109 109.109 0 26.007-6.828 40.301-15.5 54.252-11.199 18.016-25.871 35.38-30.658 82.352 9.985 2.864 17.345 12.101 17.345 22.975v36.44c0 13.109-10.747 23.866-23.893 23.866h-10.334v9.945c0 12.588-10.341 22.929-22.93 22.929h-46.304c-12.589 0-22.93-10.341-22.93-22.929v-9.945h-10.334c-13.146 0-23.893-10.757-23.893-23.866v-36.44c0-10.874 7.36-20.111 17.345-22.975zm111.948-.917c4.199-42.194 15.78-62.332 26.488-79.049 10.147-15.842 19.65-28.207 19.65-56.638 0-52.513-42.597-95.109-95.109-95.109-52.537 0-95.135 42.596-95.135 95.109 0 28.431 9.503 40.796 19.65 56.638 10.708 16.717 22.289 36.855 26.488 79.049zm2.554-78.61c-1.175 13.701-11.985 24.191-24.783 24.191-13.527 0-24.862-12.086-24.862-26.673v-99.328c0-14.12 11.335-26.673 24.862-26.673 11.309 0 21.031 8.139 23.975 19.497 9.12 3.904 15.688 13.438 15.688 24.78 0 1.153-.068 2.289-.201 3.403 5.078 5.326 8.283 12.802 8.283 21.117 0 6.39-1.889 12.262-5.06 17.053 1.996 4.099 3.13 8.773 3.13 13.76 0 14.1-9.065 25.697-21.032 28.873zm-16.452-109.977c-1.964-2.729-4.916-4.506-8.331-4.506-6.192 0-10.862 6.21-10.862 12.673v99.328c0 6.677 4.67 12.673 10.862 12.673 5.516 0 9.822-4.614 10.717-10.425-4.709-1.416-8.923-4.144-12.279-7.814-2.607-2.852-2.409-7.283.443-9.89 2.851-2.607 7.282-2.408 9.889.443 2.416 2.642 5.72 4.356 9.402 4.356 7.733 0 13.643-7.218 13.643-15.734s-5.91-15.734-13.643-15.734c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7 5.352 0 10.388 1.655 14.658 4.533.593-1.743.915-3.634.915-5.612 0-2.11-.366-4.128-1.036-5.972-.769.858-1.588 1.66-2.453 2.397-2.94 2.507-7.361 2.156-9.869-.784-2.507-2.939-2.155-7.361.784-9.868 2.773-2.365 4.492-6.122 4.492-10.293 0-6.072-3.705-11.374-8.898-12.467-.154-.023-.307-.052-.458-.085-.499-.08-1.01-.121-1.532-.121-2.947 0-5.591 1.389-7.515 3.525-2.585 2.87-7.015 3.101-9.886.515-2.87-2.586-3.101-7.015-.515-9.886 3.111-3.453 7.059-5.988 11.472-7.252zm-104.526 67.344c-3.171-4.791-5.06-10.663-5.06-17.053 0-8.307 3.198-15.777 8.284-21.104-.133-1.118-.202-2.258-.202-3.416 0-11.354 6.582-20.897 15.717-24.792 2.948-11.354 12.67-19.485 23.946-19.485 13.56 0 24.888 12.555 24.888 26.673v99.328c0 14.585-11.328 26.673-24.888 26.673-12.765 0-23.578-10.484-24.757-24.184-11.98-3.166-21.058-14.769-21.058-28.88 0-4.987 1.134-9.661 3.13-13.76zm9.982-23.036c-.675 1.847-1.042 3.869-1.042 5.983 0 1.978.322 3.869.915 5.612 4.27-2.878 9.306-4.533 14.658-4.533 3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7-7.733 0-13.643 7.218-13.643 15.734s5.91 15.734 13.643 15.734c3.682 0 6.986-1.714 9.402-4.356 2.607-2.851 7.038-3.05 9.889-.443 2.852 2.607 3.05 7.038.443 9.89-3.35 3.664-7.556 6.389-12.255 7.807.891 5.813 5.192 10.432 10.693 10.432 6.21 0 10.888-5.993 10.888-12.673v-99.328c0-6.466-4.678-12.673-10.888-12.673-3.404 0-6.349 1.777-8.309 4.507 4.421 1.264 8.367 3.8 11.476 7.251 2.586 2.871 2.355 7.3-.516 9.886-2.87 2.586-7.3 2.355-9.886-.515-1.926-2.138-4.574-3.525-7.54-3.525-.493 0-.976.037-1.448.108-.196.045-.395.082-.596.11-5.165 1.118-8.844 6.404-8.844 12.455 0 1.243.153 2.45.442 3.594.101.284.183.572.246.862.748 2.326 2.071 4.346 3.814 5.823 2.947 2.498 3.311 6.919.813 9.866s-6.919 3.312-9.866.814c-.878-.745-1.71-1.554-2.489-2.422zm3.042 158.279c-5.442 0-9.893 4.451-9.893 9.892v36.44c0 5.423 4.454 9.866 9.893 9.866h17.334c3.866 0 7 3.134 7 7v16.945c0 4.902 4.027 8.929 8.93 8.929h46.304c4.903 0 8.93-4.027 8.93-8.929v-16.945c0-3.866 3.134-7 7-7h17.334c5.439 0 9.893-4.443 9.893-9.866v-36.44c0-5.441-4.451-9.892-9.893-9.892zm63.416-314.093 2.907-5.412c1.828-3.403 6.075-4.683 9.479-2.854 3.403 1.828 4.682 6.075 2.854 9.479l-16.073 29.925c-1.22 2.271-3.589 3.688-6.167 3.688s-4.947-1.417-6.167-3.688l-16.073-29.925c-1.828-3.404-.549-7.651 2.854-9.479 3.404-1.829 7.651-.549 9.479 2.854l2.907 5.412v-69.835c0-3.863 3.137-7 7-7s7 3.137 7 7zm-132.198 54.758-49.381-49.381c-2.732-2.731-2.732-7.167 0-9.899s7.168-2.732 9.9 0l49.38 49.38-1.771-5.881c-1.114-3.7.985-7.608 4.684-8.722 3.7-1.114 7.607.985 8.721 4.685l9.796 32.526c.743 2.468.069 5.145-1.753 6.968-1.823 1.823-4.5 2.496-6.969 1.753l-32.526-9.795c-3.699-1.114-5.798-5.022-4.684-8.721s5.022-5.798 8.721-4.684zm-44.859 122.299h-69.835c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7h69.835l-5.412-2.907c-3.403-1.828-4.682-6.076-2.854-9.479 1.828-3.404 6.075-4.683 9.479-2.855l29.926 16.074c2.271 1.22 3.688 3.589 3.688 6.167 0 2.577-1.417 4.947-3.688 6.166l-29.926 16.074c-3.404 1.828-7.651.549-9.479-2.855-1.828-3.403-.549-7.651 2.854-9.479zm54.758 118.198-49.38 49.38c-2.732 2.732-7.168 2.732-9.9 0s-2.732-7.167 0-9.899l49.381-49.381-5.882 1.772c-3.699 1.114-7.607-.985-8.721-4.685-1.114-3.699.985-7.607 4.684-8.721l32.526-9.795c2.469-.743 5.146-.07 6.969 1.753 1.822 1.823 2.496 4.5 1.753 6.968l-9.796 32.527c-1.114 3.699-5.021 5.798-8.721 4.684-3.699-1.114-5.798-5.022-4.684-8.721zm240.497-240.497 5.882-1.771c3.699-1.114 7.607.985 8.721 4.684s-.985 7.607-4.684 8.721l-32.526 9.795c-2.469.743-5.146.07-6.969-1.753-1.822-1.823-2.496-4.5-1.753-6.968l9.796-32.526c1.114-3.7 5.021-5.799 8.721-4.685 3.699 1.114 5.798 5.022 4.684 8.722l-1.771 5.881 49.38-49.38c2.732-2.732 7.168-2.732 9.9 0s2.732 7.168 0 9.899zm44.859 122.299 5.412 2.906c3.403 1.828 4.682 6.076 2.854 9.479-1.828 3.404-6.075 4.683-9.479 2.855l-29.926-16.074c-2.271-1.219-3.688-3.589-3.688-6.166 0-2.578 1.417-4.947 3.688-6.167l29.926-16.074c3.404-1.828 7.651-.549 9.479 2.855 1.828 3.403.549 7.651-2.854 9.479l-5.412 2.907h69.835c3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7zm-54.758 118.198 1.771 5.882c1.114 3.699-.985 7.607-4.684 8.721-3.7 1.114-7.607-.985-8.721-4.684l-9.796-32.527c-.743-2.468-.069-5.145 1.753-6.968 1.823-1.823 4.5-2.496 6.969-1.753l32.526 9.795c3.699 1.114 5.798 5.022 4.684 8.721-1.114 3.7-5.022 5.799-8.721 4.685l-5.882-1.772 49.381 49.381c2.732 2.732 2.732 7.167 0 9.899s-7.168 2.732-9.9 0z\"></path></svg>				\n									<h5>\n							gennemtænkte løsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"outline\"><path d=\"M486.41,144A28,28,0,0,0,472,92H349.123l5.457-21.828a48.513,48.513,0,0,0-12.848-46.153A41.035,41.035,0,0,0,312.609,12H308a8.009,8.009,0,0,0-8,8V47.413l-19.233,64.112A17.376,17.376,0,0,1,268,123.539V112a4,4,0,0,0-4-4H152a4,4,0,0,0-4,4v72a4,4,0,0,0,8,0V116h72V276H156V248a4,4,0,0,0-8,0v32a4,4,0,0,0,4,4H264a4,4,0,0,0,4-4V268.5h11.168A37.07,37.07,0,0,1,305.092,279a45.025,45.025,0,0,0,31.48,12.752L440,292a27.987,27.987,0,0,0,19.369-48.2,27.987,27.987,0,0,0,16-48A28,28,0,0,0,486.41,144ZM260,276H236V116h24Zm212-88H396a4,4,0,0,0,0,8h60a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h40a20,20,0,0,1,.01,40l-103.428-.25a37.07,37.07,0,0,1-25.924-10.5,45.031,45.031,0,0,0-31.49-12.752H268V131.686a25.317,25.317,0,0,0,20.429-17.862l19.4-64.675A4,4,0,0,0,308,48V20h4.609a33.082,33.082,0,0,1,23.481,9.69,40.507,40.507,0,0,1,10.728,38.541l-6.7,26.8A4,4,0,0,0,344,100H472a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h72a20,20,0,0,1,0,40Z\"></path><path d=\"M194.5,183.243l-1.9-.217a4,4,0,0,0-4.169,2.491L184.29,195.9H135.278l-3.539-9.317a4,4,0,0,0-7.478,2.84l2.459,6.477h-8.474L68.452,156.872a4,4,0,1,0-4.935,6.3L77.6,174.209,56.961,194.48l-6.636-5.491a4,4,0,1,0-5.1,6.163L87.219,229.9a44.1,44.1,0,0,0,28.05,10.1H212a8.009,8.009,0,0,0,8-8V203.9a8.009,8.009,0,0,0-8-8h-8v-2.01A10.708,10.708,0,0,0,194.5,183.243ZM212,203.9V232H115.269a36.081,36.081,0,0,1-22.951-8.264l-29.16-24.128,20.8-20.422L114.4,203.045a4,4,0,0,0,2.468.852H187a4,4,0,0,0,3.715-2.517l3.929-9.843a2.712,2.712,0,0,1,1.356,2.35v6.01a4,4,0,0,0,4,4Z\"></path><path d=\"M223.084,484.672,200.87,469.863V346.36A44.1,44.1,0,0,0,195.327,325l-17.183-30.94a4,4,0,0,0-7,3.884l17.184,30.94a36.073,36.073,0,0,1,4.537,17.478V468H164.333a4,4,0,1,0,0,8h31.321l12,8H152.865V352a4,4,0,0,0-.358-1.655l-25.454-56A4,4,0,0,0,123.411,292H114.2a4,4,0,0,0-3.945,4.658l8.862,53.175a36.016,36.016,0,0,1-1.951,18.949L78.642,468H48.333a4,4,0,1,0,0,8H80.377L92,484H32.088L76.63,361.366a4.017,4.017,0,0,0,.183-2.044L61.1,268H136a4,4,0,0,0,0-8H59.233L30.555,173.966A19.723,19.723,0,0,1,49.27,148H76a12,12,0,0,0,24,0h15.2a21.975,21.975,0,0,1,8.395,1.652l10.889,4.458a4,4,0,1,0,3.032-7.4L126.63,142.25A29.938,29.938,0,0,0,115.2,140H100v-4.527A16.014,16.014,0,0,0,112,120V103.473A16.014,16.014,0,0,0,124,88V80a4,4,0,0,0-4-4H90A22.025,22.025,0,0,0,68,98v18a12.02,12.02,0,0,0,8,11.314V140H49.27a27.723,27.723,0,0,0-26.305,36.5l29.493,88.482,16.29,94.655-46.128,127A4,4,0,0,0,26.38,492h78.485a4,4,0,0,0,2.268-7.3L86.3,470.368l38.318-98.69a44.018,44.018,0,0,0,2.385-23.16L118.921,300h1.914l24.03,52.867V488a4,4,0,0,0,4,4h72a4,4,0,0,0,2.219-7.328ZM76,98A14.015,14.015,0,0,1,90,84h26v4a8.009,8.009,0,0,1-8,8H92a4,4,0,0,0-4,4,11.962,11.962,0,0,1-1.53,5.881A12.044,12.044,0,0,0,76,104.686Zm4,14a3.981,3.981,0,0,1,3.407,1.9,4,4,0,0,0,5.956.975c.207-.171.7-.648.7-.648.032-.028.061-.057.09-.087A19.907,19.907,0,0,0,95.6,104H104v16a8.009,8.009,0,0,1-8,8,12.133,12.133,0,0,1-2.681-.3,4,4,0,1,0-1.775,7.8c.151.035.3.06.456.091V148a4,4,0,1,1-8,0V124a4,4,0,0,0-4-4,4,4,0,0,1,0-8Z\"></path></g></svg>				\n									<h5>\n							arbejde udført med ansvar						\n					</h5>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 12:47:13', '2026-01-26 12:47:13', '', 10, 'https://mrarif.me/cpnordic/?p=490', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(491, 1, '2026-01-26 12:47:54', '2026-01-26 12:47:54', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>					\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle ANMELDELSER\n					</a>\n					<h2>HVORFOR VÆLGE CP NORDIC ApS?</h2>		<p>Når du vælger CP NORDIC ApS, får du:</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 450 450\" width=\"512\"><g><g><path d=\"m225 165.2c-25.9 0-48.9-18.8-53.3-45.2-2.4-14.2.9-28.6 9.3-40.3 8.4-11.8 20.9-19.5 35.1-21.9 29.4-4.9 57.3 15 62.2 44.5 4.9 29.4-15 57.3-44.4 62.2-3 .5-6 .7-8.9.7zm-7.6-99.8c-12.2 2-22.9 8.7-30.1 18.8s-10.1 22.4-8 34.6c3.8 22.7 23.5 38.8 45.7 38.8 2.5 0 5.1-.2 7.6-.6 25.2-4.2 42.3-28.1 38.1-53.4s-28.1-42.4-53.3-38.2z\"></path><path d=\"m255.2 115c-2.1 0-3.8-1.7-3.8-3.8 0-14.6-11.8-26.4-26.4-26.4-2.1 0-3.8-1.7-3.8-3.8s1.7-3.8 3.8-3.8c18.8 0 34.1 15.3 34.1 34.1 0 2-1.8 3.7-3.9 3.7z\"></path><path d=\"m236.1 203h-22.2c-2.1 0-3.8-1.7-3.8-3.8v-14.1c-3.1-.6-6.1-1.4-9.1-2.4l-7 12.2c-1.1 1.8-3.4 2.5-5.3 1.4l-19.2-11.1c-.9-.5-1.5-1.4-1.8-2.3-.3-1-.1-2 .4-2.9l7-12.1c-2.4-2.1-4.6-4.3-6.7-6.6l-12.1 7c-1.8 1.1-4.2.4-5.2-1.4l-11.1-19.2c-1.1-1.8-.4-4.2 1.4-5.2l11.9-6.8c-1-3-1.9-6.1-2.6-9.3h-13.7c-2.1 0-3.8-1.7-3.8-3.8v-22.2c0-2.1 1.7-3.8 3.8-3.8h13.4c.6-3.2 1.4-6.4 2.4-9.5l-11.5-6.6c-1.8-1.1-2.5-3.4-1.4-5.3l11.1-19.6c.5-.9 1.4-1.5 2.3-1.8s2-.1 2.9.4l11.3 6.6c2.2-2.5 4.5-4.8 7-7l-6.5-11.3c-.5-.9-.6-1.9-.4-2.9.3-1 .9-1.8 1.8-2.3l19.2-11.1c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l6.4 11.2c3.1-1.1 6.4-1.9 9.7-2.6v-13c0-2.1 1.7-3.8 3.8-3.8h22.2c2.1 0 3.8 1.7 3.8 3.8v12.8c3.3.7 6.5 1.5 9.7 2.6l6.5-11.2c.5-.9 1.4-1.5 2.3-1.8 1-.3 2-.1 2.9.4l19.2 11.1c.9.5 1.5 1.3 1.8 2.3s.1 2-.4 2.9l-6.5 11.3c2.5 2.2 4.8 4.5 7 7.1l11.3-6.6c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l11.1 19.2c1.1 1.8.4 4.2-1.4 5.3l-11.5 6.6c1 3.1 1.8 6.3 2.5 9.5h13.6c2.1 0 3.8 1.7 3.8 3.8v22.2c0 2.1-1.7 3.8-3.8 3.8h-13.6c-.6 3.1-1.5 6.2-2.5 9.3l11.9 6.8c1.8 1.1 2.5 3.4 1.4 5.2l-11.2 19.5c-1.1 1.8-3.4 2.5-5.2 1.4l-12-7c-2.1 2.4-4.4 4.6-6.7 6.6l7 12.1c.5.9.6 1.9.4 2.9s-.9 1.8-1.8 2.3l-19.2 11.1c-1.8 1.1-4.2.4-5.2-1.4l-7-12.2c-3 1-6 1.8-9.1 2.4v14.1c-.2 2.3-2 4-4.1 4zm-18.4-7.7h14.5v-13.5c0-1.9 1.4-3.5 3.3-3.8 4.7-.7 9.4-2 13.8-3.7 1.8-.7 3.8 0 4.7 1.7l6.7 11.6 12.6-7.3-6.7-11.6c-1-1.6-.5-3.7.9-4.9 3.7-3 7.2-6.4 10.2-10.1 1.2-1.5 3.3-1.8 4.9-.9l11.5 6.6 7.3-12.6-11.3-6.5c-1.6-.9-2.4-3-1.6-4.7 1.8-4.5 3.1-9.2 3.9-14 .3-1.9 1.9-3.2 3.8-3.2h13v-14.6h-12.8c-1.9 0-3.5-1.4-3.8-3.3-.7-4.8-2-9.6-3.7-14.2-.7-1.8 0-3.7 1.7-4.7l10.9-6.3-7.3-12.6-10.8 6.3c-1.6.9-3.7.6-4.9-.9-3.1-3.9-6.6-7.4-10.4-10.6-1.5-1.2-1.9-3.3-.9-4.9l6.2-10.7-12.6-7.3-6.1 10.6c-1 1.6-3 2.3-4.7 1.7-4.6-1.8-9.5-3.1-14.4-3.9-1.9-.3-3.3-1.9-3.3-3.8v-12.2h-14.5v12.3c0 1.9-1.4 3.5-3.3 3.8-5 .8-9.8 2.1-14.4 3.9-1.8.7-3.8 0-4.7-1.7l-6.1-10.6-12.6 7.3 6.2 10.7c.9 1.6.6 3.7-.9 4.9-3.9 3.1-7.4 6.7-10.4 10.6-1.2 1.5-3.3 1.9-4.9.9l-10.8-6.3-7.3 12.6 10.9 6.3c1.6.9 2.3 2.9 1.7 4.7-1.7 4.6-3 9.4-3.7 14.2-.3 1.9-1.9 3.3-3.8 3.3h-12.8v14.5h13c1.9 0 3.5 1.4 3.8 3.2.8 4.8 2.1 9.5 3.9 14 .7 1.8 0 3.8-1.6 4.7l-11.3 6.5 7.3 12.6 11.5-6.6c1.6-.9 3.7-.6 4.9.9 3 3.7 6.5 7.1 10.3 10.1 1.5 1.2 1.9 3.3.9 4.9l-6.7 11.6 12.6 7.3 6.7-11.6c.9-1.6 2.9-2.3 4.7-1.7 4.5 1.7 9.1 2.9 13.8 3.7 1.9.3 3.3 1.9 3.3 3.8z\"></path></g><g><g><g><path d=\"m45.3 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m153.9 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path></g><g><path d=\"m189.3 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.2c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c0 2.1-1.7 3.8-3.8 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m73.3 326.4c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m126 326.4c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m99.7 325.6c-.6 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4s4.1 1.1 4.4 3.2c2.4 16.5 12.3 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m50.2 266.6c-.1 0-.2 0-.3 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.7 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-8.9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.5 2.2zm81.8-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13.1-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.4-.7 2.3-.7z\"></path></g></g></g><g><g><path d=\"m296.1 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m404.7 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path></g><g><path d=\"m440 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.1c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c.2 2.1-1.6 3.8-3.7 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m324 326.3c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m376.7 326.3c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m350.4 325.6c-.5 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4 2.1-.3 4 1.1 4.4 3.2 2.4 16.5 12.4 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m301 266.6c-.1 0-.2 0-.4 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.6 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.4 2.2zm81.7-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.5-.7 2.3-.7z\"></path></g></g></g></g></g></svg>				\n									<h5>\n							et ungt og engageret team						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"496pt\" viewBox=\"0 0 496 496\" width=\"496pt\"><path d=\"m440 328h-28.207031c5.078125-6.703125 8.207031-14.960938 8.207031-24 0-8.824219-7.175781-16-16-16h-12v-19.960938c59.574219-14.445312 104-68.085937 104-132.039062 0-74.992188-61.007812-136-136-136s-136 61.007812-136 136c0 63.953125 44.425781 117.59375 104 132.039062v19.960938h-8.449219c-6.167969 0-12.359375 1.464844-17.886719 4.214844l-50.480468 25.25c-3.320313 1.664062-7.03125 2.535156-10.734375 2.535156h-40.449219v-16h-104v16h56v56h16v-56h16v128h-16v-56h-16v56h-56v16h104v-16h40.449219c3.703125 0 7.414062.871094 10.734375 2.527344l34.488281 17.25c5.519531 2.757812 11.710937 4.222656 17.878906 4.222656h24.449219v24h64v-24h48c13.230469 0 24-10.769531 24-24 0-6.167969-2.40625-11.742188-6.238281-16 3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16 0-13.230469-10.769531-24-24-24zm8 24c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm-208-280c0-66.167969 53.832031-120 120-120s120 53.832031 120 120-53.832031 120-120 120-120-53.832031-120-120zm104 134.976562c5.257812.617188 10.574219 1.023438 16 1.023438s10.742188-.40625 16-1.023438v17.023438h-32zm-40.449219 185.023438c-3.703125 0-7.414062-.871094-10.734375-2.527344l-34.488281-17.25c-5.519531-2.757812-11.710937-4.222656-17.878906-4.222656h-40.449219v-96h40.449219c6.167969 0 12.359375-1.464844 17.886719-4.214844l50.480468-25.25c3.320313-1.664062 7.03125-2.535156 10.734375-2.535156h84.449219c0 13.230469-10.769531 24-24 24h-48.28125l-23.863281 35.808594c-6.101563 9.160156-14.527344 16.589844-24.367188 21.503906-8.753906 4.375-18.542969 6.6875-28.320312 6.6875h-15.167969v16h15.167969c12.246093 0 24.519531-2.894531 35.472656-8.375 12.328125-6.160156 22.878906-15.480469 30.527344-26.945312l6.832031-10.253907v93.574219zm40.449219 24v-136h17.472656c-.898437 2.511719-1.472656 5.183594-1.472656 8 0 6.167969 2.40625 11.742188 6.238281 16-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16 0 10.414062 6.710938 19.214844 16 22.527344v9.472656zm96-24h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8s-3.59375 8-8 8zm0 0\"></path><path d=\"m394.878906 73.007812-7.757812 13.984376c17.816406 9.878906 28.878906 28.664062 28.878906 49.007812h16c0-26.160156-14.222656-50.296875-37.121094-62.992188zm0 0\"></path><path d=\"m360 80c4.734375 0 9.449219.59375 14.007812 1.769531l3.976563-15.503906c-5.855469-1.496094-11.90625-2.265625-17.984375-2.265625zm0 0\"></path><path d=\"m360 48c48.519531 0 88 39.480469 88 88 0 20.753906-7.398438 40.910156-20.832031 56.785156l12.207031 10.34375c15.882812-18.761718 24.625-42.601562 24.625-67.128906 0-57.34375-46.65625-104-104-104-24.527344 0-48.367188 8.753906-67.128906 24.632812l10.335937 12.199219c15.871094-13.433593 36.039063-20.832031 56.792969-20.832031zm0 0\"></path><path d=\"m427.128906 215.367188-10.335937-12.199219c-15.871094 13.433593-36.039063 20.832031-56.792969 20.832031-48.519531 0-88-39.480469-88-88 0-20.753906 7.398438-40.910156 20.832031-56.785156l-12.207031-10.34375c-15.882812 18.761718-24.625 42.601562-24.625 67.128906 0 57.34375 46.65625 104 104 104 24.527344 0 48.367188-8.753906 67.128906-24.632812zm0 0\"></path><path d=\"m121.214844 165.640625c4.953125-1.375 9.695312-3.34375 14.183594-5.878906l9.769531 4.886719 19.472656-19.480469-4.886719-9.769531c2.535156-4.496094 4.503906-9.230469 5.886719-14.183594l10.359375-3.445313v-27.53125l-10.351562-3.453125c-1.375-4.953125-3.34375-9.707031-5.886719-14.183594l4.886719-9.777343-19.472657-19.472657-9.769531 4.886719c-4.484375-2.535156-9.230469-4.503906-14.183594-5.878906l-3.453125-10.359375h-27.539062l-3.445313 10.359375c-4.953125 1.375-9.695312 3.34375-14.183594 5.878906l-9.777343-4.886719-19.472657 19.472657 4.886719 9.777343c-2.535156 4.488282-4.503906 9.230469-5.886719 14.183594l-10.351562 3.445313v27.53125l10.351562 3.453125c1.375 4.953125 3.34375 9.695312 5.886719 14.183594l-4.886719 9.769531 19.472657 19.480469 9.769531-4.886719c4.484375 2.535156 9.230469 4.503906 14.183594 5.878906l3.453125 10.359375h27.539062zm-12.304688-13.679687-2.679687 8.039062h-4.460938l-2.679687-8.039062-4.554688-.90625c-6.128906-1.222657-11.878906-3.605469-17.109375-7.09375l-3.867187-2.578126-7.574219 3.800782-3.160156-3.167969 3.792969-7.582031-2.578126-3.859375c-3.488281-5.222657-5.871093-10.980469-7.09375-17.109375l-.914062-4.554688-8.03125-2.679687v-4.46875l8.03125-2.671875.914062-4.554688c1.222657-6.136718 3.613282-11.886718 7.09375-17.109375l2.578126-3.859375-3.792969-7.589844 3.160156-3.160156 7.574219 3.800782 3.867187-2.578126c5.222657-3.488281 10.980469-5.863281 17.109375-7.09375l4.554688-.90625 2.679687-8.039062h4.460938l2.679687 8.039062 4.554688.90625c6.128906 1.222657 11.878906 3.605469 17.109375 7.09375l3.867187 2.578126 7.574219-3.800782 3.160156 3.160156-3.792969 7.589844 2.578126 3.859375c3.488281 5.214844 5.871093 10.972657 7.09375 17.109375l.914062 4.554688 8.03125 2.679687v4.46875l-8.03125 2.671875-.914062 4.554688c-1.222657 6.128906-3.613282 11.878906-7.09375 17.109375l-2.578126 3.859375 3.792969 7.582031-3.160156 3.167969-7.574219-3.800782-3.867187 2.578126c-5.222657 3.488281-10.980469 5.863281-17.109375 7.09375zm0 0\"></path><path d=\"m104 72c-17.648438 0-32 14.351562-32 32s14.351562 32 32 32 32-14.351562 32-32-14.351562-32-32-32zm0 48c-8.824219 0-16-7.175781-16-16s7.175781-16 16-16 16 7.175781 16 16-7.175781 16-16 16zm0 0\"></path><path d=\"m160 248v-40h48v-208h-208v208h106.664062zm-144-232h176v176h-48v24l-32-24h-96zm0 0\"></path><path d=\"m0 272h16v16h-16zm0 0\"></path><path d=\"m32 272h16v16h-16zm0 0\"></path><path d=\"m64 272h16v16h-16zm0 0\"></path><path d=\"m32 304h16v16h-16zm0 0\"></path><path d=\"m64 304h16v16h-16zm0 0\"></path><path d=\"m0 480h16v16h-16zm0 0\"></path><path d=\"m32 480h16v16h-16zm0 0\"></path><path d=\"m64 480h16v16h-16zm0 0\"></path><path d=\"m32 448h16v16h-16zm0 0\"></path><path d=\"m64 448h16v16h-16zm0 0\"></path></svg>				\n									<h5>\n							fokus på kvalitet og detaljer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m469.12 408.93-67.26-33.63v-22.13c10.71-7.69 18.6-19.07 21.78-32.27h5.28c8.81 0 15.98-7.17 15.98-15.98v-5.29c0-6.35-3.74-11.84-9.12-14.41 5.19-18.64-1.65-39.76-19.44-59.78-12.58-14.16-30.67-22.27-49.62-22.27-18.93 0-37.01 8.12-49.59 22.27-13.38 15.05-20.95 41.01-14.03 59.62-5.56 2.5-9.45 8.09-9.45 14.57v5.29c0 8.81 7.17 15.98 15.98 15.98h5.55c3.16 13.09 10.94 24.39 21.51 32.08v22.32l-67.26 33.63c-16.7 5.87-27.89 21.6-27.89 39.28v41.63c0 3.31 2.69 6 6 6h243.46c3.31 0 6-2.69 6-6v-41.63c0-17.68-11.19-33.41-27.88-39.28zm-62.24-17.7-15.83 27.66-13.29-13.29 19.29-19.29zm-37.61 5.88-20.59-20.58v-16.91c6.41 2.57 13.4 4.01 20.72 4.01 7.22 0 14.11-1.39 20.45-3.9v16.8zm63.63-97.48v5.29c0 2.16-1.82 3.98-3.98 3.98h-3.74c.01-.36.03-.71.03-1.07v-12.18h3.71c2.15-.01 3.98 1.82 3.98 3.98zm-119.29 8.2v1.07h-3.98c-2.16 0-3.98-1.82-3.98-3.98v-5.29c0-2.16 1.82-3.98 3.98-3.98l3.98.22zm1.95-24.19c-7.33-13.69-.89-37.39 10.53-50.24 10.31-11.6 25.12-18.25 40.63-18.25 15.52 0 30.34 6.65 40.65 18.25 8.43 9.48 21.3 27.59 17.4 46.39-5.66-.35-10.67-2.55-14.4-6.36-5.37-5.49-7.72-14-6.63-23.94.29-2.62-1.17-5.13-3.6-6.17s-5.25-.37-6.95 1.65c-19.33 22.92-45.95 36.76-73.9 38.68h-3.73zm10.05 24.19v-12.73c24.57-2.92 47.92-14.05 66.73-31.8 1.43 7.26 4.63 13.6 9.45 18.52 3.27 3.35 7.14 5.89 11.41 7.58v18.42c0 24.15-19.65 43.8-43.8 43.8s-43.79-19.64-43.79-43.79zm15.89 78.48 19.29 19.29-13.29 13.29-15.84-27.66zm3.22 97.53h-39.42v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.76v-35.63c0-12.68 8.1-23.95 20.15-28.05.26-.09.51-.19.75-.31l46.47-23.23 20.07 35.06c.93 1.62 2.56 2.72 4.41 2.97.27.04.53.05.79.05 1.58 0 3.11-.62 4.24-1.76l.14-.14zm12.08 0 7.41-64.69 5.06-5.06 4.84 4.84 7.86 64.92h-25.17zm128.2 0h-39.76v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.18l-6.2-51.17.25.25c1.13 1.13 2.66 1.76 4.24 1.76.26 0 .53-.02.79-.05 1.85-.25 3.48-1.34 4.41-2.97l20.07-35.06 46.47 23.23c.24.12.49.23.75.31 12.05 4.1 20.15 15.38 20.15 28.05v35.65zm-67.04-346.65h-10.84l28.38 39.84 28.38-39.84h-10.84c-3.31 0-6-2.69-6-6v-64.58h-98.7c-3.31 0-6-2.69-6-6s2.69-6 6-6h104.7c3.31 0 6 2.69 6 6v64.58h16.48c2.25 0 4.3 1.25 5.33 3.25s.86 4.4-.45 6.23l-40.02 56.18c-1.13 1.58-2.95 2.52-4.89 2.52s-3.76-.94-4.89-2.52l-40.02-56.18c-1.3-1.83-1.48-4.23-.45-6.23s3.09-3.25 5.33-3.25h16.48v-23.5h-65.38c-3.31 0-6-2.69-6-6s2.69-6 6-6h71.38c3.31 0 6 2.69 6 6v35.5c.02 3.31-2.67 6-5.98 6zm-118.44 50.65v-133.26c0-21.18-17.23-38.41-38.41-38.41h-207.7c-21.18-.01-38.41 17.23-38.41 38.41v133.26c0 21.18 17.23 38.41 38.41 38.41h105.8l64.8 55.11c1.11.94 2.49 1.43 3.89 1.43.85 0 1.71-.18 2.52-.55 2.12-.98 3.48-3.11 3.48-5.45v-50.54h27.21c21.18 0 38.41-17.23 38.41-38.41zm-71.62 26.41c-3.31 0-6 2.69-6 6v43.56l-56.59-48.13c-1.08-.92-2.46-1.43-3.89-1.43h-108.01c-14.56 0-26.41-11.85-26.41-26.41v-133.26c0-14.56 11.85-26.41 26.41-26.41h207.69c14.56 0 26.41 11.85 26.41 26.41v133.26c0 14.56-11.85 26.41-26.41 26.41zm-156.34-87.87h56.97c3.31 0 6-2.69 6-6v-39.2l8.55-8.55c2.34-2.34 2.34-6.14 0-8.49-2.34-2.34-6.14-2.34-8.48 0l-.7.7c-.98-1.97-3.01-3.32-5.36-3.32h-56.98c-3.31 0-6 2.69-6 6v52.85c0 3.32 2.69 6.01 6 6.01zm6-52.86h44.97v2.69l-18.16 18.16-8.84-8.84c-2.34-2.34-6.14-2.34-8.49 0-2.34 2.34-2.34 6.14 0 8.49l13.08 13.08c1.17 1.17 2.71 1.76 4.24 1.76s3.07-.59 4.24-1.76l13.92-13.92v21.2h-44.96zm173.62 3.08c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 31.92c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 36.52c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.68 5.99 6zm0 31.92c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.69 5.99 6zm-119.36 165.01h10.84l-28.38-39.84-28.38 39.84h10.84c3.31 0 6 2.69 6 6v64.58h98.7c3.31 0 6 2.69 6 6s-2.69 6-6 6h-104.69c-3.31 0-6-2.69-6-6v-64.58h-16.48c-2.25 0-4.3-1.25-5.33-3.25s-.86-4.4.45-6.23l40.02-56.18c1.13-1.58 2.95-2.52 4.89-2.52s3.76.94 4.89 2.52l40.02 56.18c1.3 1.83 1.48 4.23.45 6.23s-3.09 3.25-5.33 3.25h-16.48v23.5h65.38c3.31 0 6 2.69 6 6s-2.69 6-6 6h-71.38c-3.31 0-6-2.69-6-6v-35.5c-.03-3.31 2.66-6 5.97-6z\"></path></svg>				\n									<h5>\n							ærlig<br> rådgivning						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 510 510\"><path d=\"m192.036 385.845c-4.787-46.972-19.459-64.336-30.658-82.352-8.672-13.951-15.5-28.245-15.5-54.252 0-60.242 48.865-109.109 109.135-109.109 60.242 0 109.109 48.866 109.109 109.109 0 26.007-6.828 40.301-15.5 54.252-11.199 18.016-25.871 35.38-30.658 82.352 9.985 2.864 17.345 12.101 17.345 22.975v36.44c0 13.109-10.747 23.866-23.893 23.866h-10.334v9.945c0 12.588-10.341 22.929-22.93 22.929h-46.304c-12.589 0-22.93-10.341-22.93-22.929v-9.945h-10.334c-13.146 0-23.893-10.757-23.893-23.866v-36.44c0-10.874 7.36-20.111 17.345-22.975zm111.948-.917c4.199-42.194 15.78-62.332 26.488-79.049 10.147-15.842 19.65-28.207 19.65-56.638 0-52.513-42.597-95.109-95.109-95.109-52.537 0-95.135 42.596-95.135 95.109 0 28.431 9.503 40.796 19.65 56.638 10.708 16.717 22.289 36.855 26.488 79.049zm2.554-78.61c-1.175 13.701-11.985 24.191-24.783 24.191-13.527 0-24.862-12.086-24.862-26.673v-99.328c0-14.12 11.335-26.673 24.862-26.673 11.309 0 21.031 8.139 23.975 19.497 9.12 3.904 15.688 13.438 15.688 24.78 0 1.153-.068 2.289-.201 3.403 5.078 5.326 8.283 12.802 8.283 21.117 0 6.39-1.889 12.262-5.06 17.053 1.996 4.099 3.13 8.773 3.13 13.76 0 14.1-9.065 25.697-21.032 28.873zm-16.452-109.977c-1.964-2.729-4.916-4.506-8.331-4.506-6.192 0-10.862 6.21-10.862 12.673v99.328c0 6.677 4.67 12.673 10.862 12.673 5.516 0 9.822-4.614 10.717-10.425-4.709-1.416-8.923-4.144-12.279-7.814-2.607-2.852-2.409-7.283.443-9.89 2.851-2.607 7.282-2.408 9.889.443 2.416 2.642 5.72 4.356 9.402 4.356 7.733 0 13.643-7.218 13.643-15.734s-5.91-15.734-13.643-15.734c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7 5.352 0 10.388 1.655 14.658 4.533.593-1.743.915-3.634.915-5.612 0-2.11-.366-4.128-1.036-5.972-.769.858-1.588 1.66-2.453 2.397-2.94 2.507-7.361 2.156-9.869-.784-2.507-2.939-2.155-7.361.784-9.868 2.773-2.365 4.492-6.122 4.492-10.293 0-6.072-3.705-11.374-8.898-12.467-.154-.023-.307-.052-.458-.085-.499-.08-1.01-.121-1.532-.121-2.947 0-5.591 1.389-7.515 3.525-2.585 2.87-7.015 3.101-9.886.515-2.87-2.586-3.101-7.015-.515-9.886 3.111-3.453 7.059-5.988 11.472-7.252zm-104.526 67.344c-3.171-4.791-5.06-10.663-5.06-17.053 0-8.307 3.198-15.777 8.284-21.104-.133-1.118-.202-2.258-.202-3.416 0-11.354 6.582-20.897 15.717-24.792 2.948-11.354 12.67-19.485 23.946-19.485 13.56 0 24.888 12.555 24.888 26.673v99.328c0 14.585-11.328 26.673-24.888 26.673-12.765 0-23.578-10.484-24.757-24.184-11.98-3.166-21.058-14.769-21.058-28.88 0-4.987 1.134-9.661 3.13-13.76zm9.982-23.036c-.675 1.847-1.042 3.869-1.042 5.983 0 1.978.322 3.869.915 5.612 4.27-2.878 9.306-4.533 14.658-4.533 3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7-7.733 0-13.643 7.218-13.643 15.734s5.91 15.734 13.643 15.734c3.682 0 6.986-1.714 9.402-4.356 2.607-2.851 7.038-3.05 9.889-.443 2.852 2.607 3.05 7.038.443 9.89-3.35 3.664-7.556 6.389-12.255 7.807.891 5.813 5.192 10.432 10.693 10.432 6.21 0 10.888-5.993 10.888-12.673v-99.328c0-6.466-4.678-12.673-10.888-12.673-3.404 0-6.349 1.777-8.309 4.507 4.421 1.264 8.367 3.8 11.476 7.251 2.586 2.871 2.355 7.3-.516 9.886-2.87 2.586-7.3 2.355-9.886-.515-1.926-2.138-4.574-3.525-7.54-3.525-.493 0-.976.037-1.448.108-.196.045-.395.082-.596.11-5.165 1.118-8.844 6.404-8.844 12.455 0 1.243.153 2.45.442 3.594.101.284.183.572.246.862.748 2.326 2.071 4.346 3.814 5.823 2.947 2.498 3.311 6.919.813 9.866s-6.919 3.312-9.866.814c-.878-.745-1.71-1.554-2.489-2.422zm3.042 158.279c-5.442 0-9.893 4.451-9.893 9.892v36.44c0 5.423 4.454 9.866 9.893 9.866h17.334c3.866 0 7 3.134 7 7v16.945c0 4.902 4.027 8.929 8.93 8.929h46.304c4.903 0 8.93-4.027 8.93-8.929v-16.945c0-3.866 3.134-7 7-7h17.334c5.439 0 9.893-4.443 9.893-9.866v-36.44c0-5.441-4.451-9.892-9.893-9.892zm63.416-314.093 2.907-5.412c1.828-3.403 6.075-4.683 9.479-2.854 3.403 1.828 4.682 6.075 2.854 9.479l-16.073 29.925c-1.22 2.271-3.589 3.688-6.167 3.688s-4.947-1.417-6.167-3.688l-16.073-29.925c-1.828-3.404-.549-7.651 2.854-9.479 3.404-1.829 7.651-.549 9.479 2.854l2.907 5.412v-69.835c0-3.863 3.137-7 7-7s7 3.137 7 7zm-132.198 54.758-49.381-49.381c-2.732-2.731-2.732-7.167 0-9.899s7.168-2.732 9.9 0l49.38 49.38-1.771-5.881c-1.114-3.7.985-7.608 4.684-8.722 3.7-1.114 7.607.985 8.721 4.685l9.796 32.526c.743 2.468.069 5.145-1.753 6.968-1.823 1.823-4.5 2.496-6.969 1.753l-32.526-9.795c-3.699-1.114-5.798-5.022-4.684-8.721s5.022-5.798 8.721-4.684zm-44.859 122.299h-69.835c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7h69.835l-5.412-2.907c-3.403-1.828-4.682-6.076-2.854-9.479 1.828-3.404 6.075-4.683 9.479-2.855l29.926 16.074c2.271 1.22 3.688 3.589 3.688 6.167 0 2.577-1.417 4.947-3.688 6.166l-29.926 16.074c-3.404 1.828-7.651.549-9.479-2.855-1.828-3.403-.549-7.651 2.854-9.479zm54.758 118.198-49.38 49.38c-2.732 2.732-7.168 2.732-9.9 0s-2.732-7.167 0-9.899l49.381-49.381-5.882 1.772c-3.699 1.114-7.607-.985-8.721-4.685-1.114-3.699.985-7.607 4.684-8.721l32.526-9.795c2.469-.743 5.146-.07 6.969 1.753 1.822 1.823 2.496 4.5 1.753 6.968l-9.796 32.527c-1.114 3.699-5.021 5.798-8.721 4.684-3.699-1.114-5.798-5.022-4.684-8.721zm240.497-240.497 5.882-1.771c3.699-1.114 7.607.985 8.721 4.684s-.985 7.607-4.684 8.721l-32.526 9.795c-2.469.743-5.146.07-6.969-1.753-1.822-1.823-2.496-4.5-1.753-6.968l9.796-32.526c1.114-3.7 5.021-5.799 8.721-4.685 3.699 1.114 5.798 5.022 4.684 8.722l-1.771 5.881 49.38-49.38c2.732-2.732 7.168-2.732 9.9 0s2.732 7.168 0 9.899zm44.859 122.299 5.412 2.906c3.403 1.828 4.682 6.076 2.854 9.479-1.828 3.404-6.075 4.683-9.479 2.855l-29.926-16.074c-2.271-1.219-3.688-3.589-3.688-6.166 0-2.578 1.417-4.947 3.688-6.167l29.926-16.074c3.404-1.828 7.651-.549 9.479 2.855 1.828 3.403.549 7.651-2.854 9.479l-5.412 2.907h69.835c3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7zm-54.758 118.198 1.771 5.882c1.114 3.699-.985 7.607-4.684 8.721-3.7 1.114-7.607-.985-8.721-4.684l-9.796-32.527c-.743-2.468-.069-5.145 1.753-6.968 1.823-1.823 4.5-2.496 6.969-1.753l32.526 9.795c3.699 1.114 5.798 5.022 4.684 8.721-1.114 3.7-5.022 5.799-8.721 4.685l-5.882-1.772 49.381 49.381c2.732 2.732 2.732 7.167 0 9.899s-7.168 2.732-9.9 0z\"></path></svg>				\n									<h5>\n							gennemtænkte løsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"outline\"><path d=\"M486.41,144A28,28,0,0,0,472,92H349.123l5.457-21.828a48.513,48.513,0,0,0-12.848-46.153A41.035,41.035,0,0,0,312.609,12H308a8.009,8.009,0,0,0-8,8V47.413l-19.233,64.112A17.376,17.376,0,0,1,268,123.539V112a4,4,0,0,0-4-4H152a4,4,0,0,0-4,4v72a4,4,0,0,0,8,0V116h72V276H156V248a4,4,0,0,0-8,0v32a4,4,0,0,0,4,4H264a4,4,0,0,0,4-4V268.5h11.168A37.07,37.07,0,0,1,305.092,279a45.025,45.025,0,0,0,31.48,12.752L440,292a27.987,27.987,0,0,0,19.369-48.2,27.987,27.987,0,0,0,16-48A28,28,0,0,0,486.41,144ZM260,276H236V116h24Zm212-88H396a4,4,0,0,0,0,8h60a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h40a20,20,0,0,1,.01,40l-103.428-.25a37.07,37.07,0,0,1-25.924-10.5,45.031,45.031,0,0,0-31.49-12.752H268V131.686a25.317,25.317,0,0,0,20.429-17.862l19.4-64.675A4,4,0,0,0,308,48V20h4.609a33.082,33.082,0,0,1,23.481,9.69,40.507,40.507,0,0,1,10.728,38.541l-6.7,26.8A4,4,0,0,0,344,100H472a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h72a20,20,0,0,1,0,40Z\"></path><path d=\"M194.5,183.243l-1.9-.217a4,4,0,0,0-4.169,2.491L184.29,195.9H135.278l-3.539-9.317a4,4,0,0,0-7.478,2.84l2.459,6.477h-8.474L68.452,156.872a4,4,0,1,0-4.935,6.3L77.6,174.209,56.961,194.48l-6.636-5.491a4,4,0,1,0-5.1,6.163L87.219,229.9a44.1,44.1,0,0,0,28.05,10.1H212a8.009,8.009,0,0,0,8-8V203.9a8.009,8.009,0,0,0-8-8h-8v-2.01A10.708,10.708,0,0,0,194.5,183.243ZM212,203.9V232H115.269a36.081,36.081,0,0,1-22.951-8.264l-29.16-24.128,20.8-20.422L114.4,203.045a4,4,0,0,0,2.468.852H187a4,4,0,0,0,3.715-2.517l3.929-9.843a2.712,2.712,0,0,1,1.356,2.35v6.01a4,4,0,0,0,4,4Z\"></path><path d=\"M223.084,484.672,200.87,469.863V346.36A44.1,44.1,0,0,0,195.327,325l-17.183-30.94a4,4,0,0,0-7,3.884l17.184,30.94a36.073,36.073,0,0,1,4.537,17.478V468H164.333a4,4,0,1,0,0,8h31.321l12,8H152.865V352a4,4,0,0,0-.358-1.655l-25.454-56A4,4,0,0,0,123.411,292H114.2a4,4,0,0,0-3.945,4.658l8.862,53.175a36.016,36.016,0,0,1-1.951,18.949L78.642,468H48.333a4,4,0,1,0,0,8H80.377L92,484H32.088L76.63,361.366a4.017,4.017,0,0,0,.183-2.044L61.1,268H136a4,4,0,0,0,0-8H59.233L30.555,173.966A19.723,19.723,0,0,1,49.27,148H76a12,12,0,0,0,24,0h15.2a21.975,21.975,0,0,1,8.395,1.652l10.889,4.458a4,4,0,1,0,3.032-7.4L126.63,142.25A29.938,29.938,0,0,0,115.2,140H100v-4.527A16.014,16.014,0,0,0,112,120V103.473A16.014,16.014,0,0,0,124,88V80a4,4,0,0,0-4-4H90A22.025,22.025,0,0,0,68,98v18a12.02,12.02,0,0,0,8,11.314V140H49.27a27.723,27.723,0,0,0-26.305,36.5l29.493,88.482,16.29,94.655-46.128,127A4,4,0,0,0,26.38,492h78.485a4,4,0,0,0,2.268-7.3L86.3,470.368l38.318-98.69a44.018,44.018,0,0,0,2.385-23.16L118.921,300h1.914l24.03,52.867V488a4,4,0,0,0,4,4h72a4,4,0,0,0,2.219-7.328ZM76,98A14.015,14.015,0,0,1,90,84h26v4a8.009,8.009,0,0,1-8,8H92a4,4,0,0,0-4,4,11.962,11.962,0,0,1-1.53,5.881A12.044,12.044,0,0,0,76,104.686Zm4,14a3.981,3.981,0,0,1,3.407,1.9,4,4,0,0,0,5.956.975c.207-.171.7-.648.7-.648.032-.028.061-.057.09-.087A19.907,19.907,0,0,0,95.6,104H104v16a8.009,8.009,0,0,1-8,8,12.133,12.133,0,0,1-2.681-.3,4,4,0,1,0-1.775,7.8c.151.035.3.06.456.091V148a4,4,0,1,1-8,0V124a4,4,0,0,0-4-4,4,4,0,0,1,0-8Z\"></path></g></svg>				\n									<h5>\n							arbejde udført med ansvar						\n					</h5>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 12:47:54', '2026-01-26 12:47:54', '', 10, 'https://mrarif.me/cpnordic/?p=491', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(492, 1, '2026-01-26 12:47:54', '2026-01-26 12:47:54', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>					\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle ANMELDELSER\n					</a>\n					<h2>HVORFOR VÆLGE CP NORDIC ApS?</h2>		<p>Når du vælger CP NORDIC ApS, får du:</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 450 450\" width=\"512\"><g><g><path d=\"m225 165.2c-25.9 0-48.9-18.8-53.3-45.2-2.4-14.2.9-28.6 9.3-40.3 8.4-11.8 20.9-19.5 35.1-21.9 29.4-4.9 57.3 15 62.2 44.5 4.9 29.4-15 57.3-44.4 62.2-3 .5-6 .7-8.9.7zm-7.6-99.8c-12.2 2-22.9 8.7-30.1 18.8s-10.1 22.4-8 34.6c3.8 22.7 23.5 38.8 45.7 38.8 2.5 0 5.1-.2 7.6-.6 25.2-4.2 42.3-28.1 38.1-53.4s-28.1-42.4-53.3-38.2z\"></path><path d=\"m255.2 115c-2.1 0-3.8-1.7-3.8-3.8 0-14.6-11.8-26.4-26.4-26.4-2.1 0-3.8-1.7-3.8-3.8s1.7-3.8 3.8-3.8c18.8 0 34.1 15.3 34.1 34.1 0 2-1.8 3.7-3.9 3.7z\"></path><path d=\"m236.1 203h-22.2c-2.1 0-3.8-1.7-3.8-3.8v-14.1c-3.1-.6-6.1-1.4-9.1-2.4l-7 12.2c-1.1 1.8-3.4 2.5-5.3 1.4l-19.2-11.1c-.9-.5-1.5-1.4-1.8-2.3-.3-1-.1-2 .4-2.9l7-12.1c-2.4-2.1-4.6-4.3-6.7-6.6l-12.1 7c-1.8 1.1-4.2.4-5.2-1.4l-11.1-19.2c-1.1-1.8-.4-4.2 1.4-5.2l11.9-6.8c-1-3-1.9-6.1-2.6-9.3h-13.7c-2.1 0-3.8-1.7-3.8-3.8v-22.2c0-2.1 1.7-3.8 3.8-3.8h13.4c.6-3.2 1.4-6.4 2.4-9.5l-11.5-6.6c-1.8-1.1-2.5-3.4-1.4-5.3l11.1-19.6c.5-.9 1.4-1.5 2.3-1.8s2-.1 2.9.4l11.3 6.6c2.2-2.5 4.5-4.8 7-7l-6.5-11.3c-.5-.9-.6-1.9-.4-2.9.3-1 .9-1.8 1.8-2.3l19.2-11.1c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l6.4 11.2c3.1-1.1 6.4-1.9 9.7-2.6v-13c0-2.1 1.7-3.8 3.8-3.8h22.2c2.1 0 3.8 1.7 3.8 3.8v12.8c3.3.7 6.5 1.5 9.7 2.6l6.5-11.2c.5-.9 1.4-1.5 2.3-1.8 1-.3 2-.1 2.9.4l19.2 11.1c.9.5 1.5 1.3 1.8 2.3s.1 2-.4 2.9l-6.5 11.3c2.5 2.2 4.8 4.5 7 7.1l11.3-6.6c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l11.1 19.2c1.1 1.8.4 4.2-1.4 5.3l-11.5 6.6c1 3.1 1.8 6.3 2.5 9.5h13.6c2.1 0 3.8 1.7 3.8 3.8v22.2c0 2.1-1.7 3.8-3.8 3.8h-13.6c-.6 3.1-1.5 6.2-2.5 9.3l11.9 6.8c1.8 1.1 2.5 3.4 1.4 5.2l-11.2 19.5c-1.1 1.8-3.4 2.5-5.2 1.4l-12-7c-2.1 2.4-4.4 4.6-6.7 6.6l7 12.1c.5.9.6 1.9.4 2.9s-.9 1.8-1.8 2.3l-19.2 11.1c-1.8 1.1-4.2.4-5.2-1.4l-7-12.2c-3 1-6 1.8-9.1 2.4v14.1c-.2 2.3-2 4-4.1 4zm-18.4-7.7h14.5v-13.5c0-1.9 1.4-3.5 3.3-3.8 4.7-.7 9.4-2 13.8-3.7 1.8-.7 3.8 0 4.7 1.7l6.7 11.6 12.6-7.3-6.7-11.6c-1-1.6-.5-3.7.9-4.9 3.7-3 7.2-6.4 10.2-10.1 1.2-1.5 3.3-1.8 4.9-.9l11.5 6.6 7.3-12.6-11.3-6.5c-1.6-.9-2.4-3-1.6-4.7 1.8-4.5 3.1-9.2 3.9-14 .3-1.9 1.9-3.2 3.8-3.2h13v-14.6h-12.8c-1.9 0-3.5-1.4-3.8-3.3-.7-4.8-2-9.6-3.7-14.2-.7-1.8 0-3.7 1.7-4.7l10.9-6.3-7.3-12.6-10.8 6.3c-1.6.9-3.7.6-4.9-.9-3.1-3.9-6.6-7.4-10.4-10.6-1.5-1.2-1.9-3.3-.9-4.9l6.2-10.7-12.6-7.3-6.1 10.6c-1 1.6-3 2.3-4.7 1.7-4.6-1.8-9.5-3.1-14.4-3.9-1.9-.3-3.3-1.9-3.3-3.8v-12.2h-14.5v12.3c0 1.9-1.4 3.5-3.3 3.8-5 .8-9.8 2.1-14.4 3.9-1.8.7-3.8 0-4.7-1.7l-6.1-10.6-12.6 7.3 6.2 10.7c.9 1.6.6 3.7-.9 4.9-3.9 3.1-7.4 6.7-10.4 10.6-1.2 1.5-3.3 1.9-4.9.9l-10.8-6.3-7.3 12.6 10.9 6.3c1.6.9 2.3 2.9 1.7 4.7-1.7 4.6-3 9.4-3.7 14.2-.3 1.9-1.9 3.3-3.8 3.3h-12.8v14.5h13c1.9 0 3.5 1.4 3.8 3.2.8 4.8 2.1 9.5 3.9 14 .7 1.8 0 3.8-1.6 4.7l-11.3 6.5 7.3 12.6 11.5-6.6c1.6-.9 3.7-.6 4.9.9 3 3.7 6.5 7.1 10.3 10.1 1.5 1.2 1.9 3.3.9 4.9l-6.7 11.6 12.6 7.3 6.7-11.6c.9-1.6 2.9-2.3 4.7-1.7 4.5 1.7 9.1 2.9 13.8 3.7 1.9.3 3.3 1.9 3.3 3.8z\"></path></g><g><g><g><path d=\"m45.3 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m153.9 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path></g><g><path d=\"m189.3 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.2c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c0 2.1-1.7 3.8-3.8 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m73.3 326.4c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m126 326.4c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m99.7 325.6c-.6 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4s4.1 1.1 4.4 3.2c2.4 16.5 12.3 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m50.2 266.6c-.1 0-.2 0-.3 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.7 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-8.9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.5 2.2zm81.8-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13.1-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.4-.7 2.3-.7z\"></path></g></g></g><g><g><path d=\"m296.1 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m404.7 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path></g><g><path d=\"m440 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.1c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c.2 2.1-1.6 3.8-3.7 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m324 326.3c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m376.7 326.3c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m350.4 325.6c-.5 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4 2.1-.3 4 1.1 4.4 3.2 2.4 16.5 12.4 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m301 266.6c-.1 0-.2 0-.4 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.6 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.4 2.2zm81.7-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.5-.7 2.3-.7z\"></path></g></g></g></g></g></svg>				\n									<h5>\n							et ungt og engageret team						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"496pt\" viewBox=\"0 0 496 496\" width=\"496pt\"><path d=\"m440 328h-28.207031c5.078125-6.703125 8.207031-14.960938 8.207031-24 0-8.824219-7.175781-16-16-16h-12v-19.960938c59.574219-14.445312 104-68.085937 104-132.039062 0-74.992188-61.007812-136-136-136s-136 61.007812-136 136c0 63.953125 44.425781 117.59375 104 132.039062v19.960938h-8.449219c-6.167969 0-12.359375 1.464844-17.886719 4.214844l-50.480468 25.25c-3.320313 1.664062-7.03125 2.535156-10.734375 2.535156h-40.449219v-16h-104v16h56v56h16v-56h16v128h-16v-56h-16v56h-56v16h104v-16h40.449219c3.703125 0 7.414062.871094 10.734375 2.527344l34.488281 17.25c5.519531 2.757812 11.710937 4.222656 17.878906 4.222656h24.449219v24h64v-24h48c13.230469 0 24-10.769531 24-24 0-6.167969-2.40625-11.742188-6.238281-16 3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16 0-13.230469-10.769531-24-24-24zm8 24c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm-208-280c0-66.167969 53.832031-120 120-120s120 53.832031 120 120-53.832031 120-120 120-120-53.832031-120-120zm104 134.976562c5.257812.617188 10.574219 1.023438 16 1.023438s10.742188-.40625 16-1.023438v17.023438h-32zm-40.449219 185.023438c-3.703125 0-7.414062-.871094-10.734375-2.527344l-34.488281-17.25c-5.519531-2.757812-11.710937-4.222656-17.878906-4.222656h-40.449219v-96h40.449219c6.167969 0 12.359375-1.464844 17.886719-4.214844l50.480468-25.25c3.320313-1.664062 7.03125-2.535156 10.734375-2.535156h84.449219c0 13.230469-10.769531 24-24 24h-48.28125l-23.863281 35.808594c-6.101563 9.160156-14.527344 16.589844-24.367188 21.503906-8.753906 4.375-18.542969 6.6875-28.320312 6.6875h-15.167969v16h15.167969c12.246093 0 24.519531-2.894531 35.472656-8.375 12.328125-6.160156 22.878906-15.480469 30.527344-26.945312l6.832031-10.253907v93.574219zm40.449219 24v-136h17.472656c-.898437 2.511719-1.472656 5.183594-1.472656 8 0 6.167969 2.40625 11.742188 6.238281 16-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16 0 10.414062 6.710938 19.214844 16 22.527344v9.472656zm96-24h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8s-3.59375 8-8 8zm0 0\"></path><path d=\"m394.878906 73.007812-7.757812 13.984376c17.816406 9.878906 28.878906 28.664062 28.878906 49.007812h16c0-26.160156-14.222656-50.296875-37.121094-62.992188zm0 0\"></path><path d=\"m360 80c4.734375 0 9.449219.59375 14.007812 1.769531l3.976563-15.503906c-5.855469-1.496094-11.90625-2.265625-17.984375-2.265625zm0 0\"></path><path d=\"m360 48c48.519531 0 88 39.480469 88 88 0 20.753906-7.398438 40.910156-20.832031 56.785156l12.207031 10.34375c15.882812-18.761718 24.625-42.601562 24.625-67.128906 0-57.34375-46.65625-104-104-104-24.527344 0-48.367188 8.753906-67.128906 24.632812l10.335937 12.199219c15.871094-13.433593 36.039063-20.832031 56.792969-20.832031zm0 0\"></path><path d=\"m427.128906 215.367188-10.335937-12.199219c-15.871094 13.433593-36.039063 20.832031-56.792969 20.832031-48.519531 0-88-39.480469-88-88 0-20.753906 7.398438-40.910156 20.832031-56.785156l-12.207031-10.34375c-15.882812 18.761718-24.625 42.601562-24.625 67.128906 0 57.34375 46.65625 104 104 104 24.527344 0 48.367188-8.753906 67.128906-24.632812zm0 0\"></path><path d=\"m121.214844 165.640625c4.953125-1.375 9.695312-3.34375 14.183594-5.878906l9.769531 4.886719 19.472656-19.480469-4.886719-9.769531c2.535156-4.496094 4.503906-9.230469 5.886719-14.183594l10.359375-3.445313v-27.53125l-10.351562-3.453125c-1.375-4.953125-3.34375-9.707031-5.886719-14.183594l4.886719-9.777343-19.472657-19.472657-9.769531 4.886719c-4.484375-2.535156-9.230469-4.503906-14.183594-5.878906l-3.453125-10.359375h-27.539062l-3.445313 10.359375c-4.953125 1.375-9.695312 3.34375-14.183594 5.878906l-9.777343-4.886719-19.472657 19.472657 4.886719 9.777343c-2.535156 4.488282-4.503906 9.230469-5.886719 14.183594l-10.351562 3.445313v27.53125l10.351562 3.453125c1.375 4.953125 3.34375 9.695312 5.886719 14.183594l-4.886719 9.769531 19.472657 19.480469 9.769531-4.886719c4.484375 2.535156 9.230469 4.503906 14.183594 5.878906l3.453125 10.359375h27.539062zm-12.304688-13.679687-2.679687 8.039062h-4.460938l-2.679687-8.039062-4.554688-.90625c-6.128906-1.222657-11.878906-3.605469-17.109375-7.09375l-3.867187-2.578126-7.574219 3.800782-3.160156-3.167969 3.792969-7.582031-2.578126-3.859375c-3.488281-5.222657-5.871093-10.980469-7.09375-17.109375l-.914062-4.554688-8.03125-2.679687v-4.46875l8.03125-2.671875.914062-4.554688c1.222657-6.136718 3.613282-11.886718 7.09375-17.109375l2.578126-3.859375-3.792969-7.589844 3.160156-3.160156 7.574219 3.800782 3.867187-2.578126c5.222657-3.488281 10.980469-5.863281 17.109375-7.09375l4.554688-.90625 2.679687-8.039062h4.460938l2.679687 8.039062 4.554688.90625c6.128906 1.222657 11.878906 3.605469 17.109375 7.09375l3.867187 2.578126 7.574219-3.800782 3.160156 3.160156-3.792969 7.589844 2.578126 3.859375c3.488281 5.214844 5.871093 10.972657 7.09375 17.109375l.914062 4.554688 8.03125 2.679687v4.46875l-8.03125 2.671875-.914062 4.554688c-1.222657 6.128906-3.613282 11.878906-7.09375 17.109375l-2.578126 3.859375 3.792969 7.582031-3.160156 3.167969-7.574219-3.800782-3.867187 2.578126c-5.222657 3.488281-10.980469 5.863281-17.109375 7.09375zm0 0\"></path><path d=\"m104 72c-17.648438 0-32 14.351562-32 32s14.351562 32 32 32 32-14.351562 32-32-14.351562-32-32-32zm0 48c-8.824219 0-16-7.175781-16-16s7.175781-16 16-16 16 7.175781 16 16-7.175781 16-16 16zm0 0\"></path><path d=\"m160 248v-40h48v-208h-208v208h106.664062zm-144-232h176v176h-48v24l-32-24h-96zm0 0\"></path><path d=\"m0 272h16v16h-16zm0 0\"></path><path d=\"m32 272h16v16h-16zm0 0\"></path><path d=\"m64 272h16v16h-16zm0 0\"></path><path d=\"m32 304h16v16h-16zm0 0\"></path><path d=\"m64 304h16v16h-16zm0 0\"></path><path d=\"m0 480h16v16h-16zm0 0\"></path><path d=\"m32 480h16v16h-16zm0 0\"></path><path d=\"m64 480h16v16h-16zm0 0\"></path><path d=\"m32 448h16v16h-16zm0 0\"></path><path d=\"m64 448h16v16h-16zm0 0\"></path></svg>				\n									<h5>\n							fokus på kvalitet og detaljer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m469.12 408.93-67.26-33.63v-22.13c10.71-7.69 18.6-19.07 21.78-32.27h5.28c8.81 0 15.98-7.17 15.98-15.98v-5.29c0-6.35-3.74-11.84-9.12-14.41 5.19-18.64-1.65-39.76-19.44-59.78-12.58-14.16-30.67-22.27-49.62-22.27-18.93 0-37.01 8.12-49.59 22.27-13.38 15.05-20.95 41.01-14.03 59.62-5.56 2.5-9.45 8.09-9.45 14.57v5.29c0 8.81 7.17 15.98 15.98 15.98h5.55c3.16 13.09 10.94 24.39 21.51 32.08v22.32l-67.26 33.63c-16.7 5.87-27.89 21.6-27.89 39.28v41.63c0 3.31 2.69 6 6 6h243.46c3.31 0 6-2.69 6-6v-41.63c0-17.68-11.19-33.41-27.88-39.28zm-62.24-17.7-15.83 27.66-13.29-13.29 19.29-19.29zm-37.61 5.88-20.59-20.58v-16.91c6.41 2.57 13.4 4.01 20.72 4.01 7.22 0 14.11-1.39 20.45-3.9v16.8zm63.63-97.48v5.29c0 2.16-1.82 3.98-3.98 3.98h-3.74c.01-.36.03-.71.03-1.07v-12.18h3.71c2.15-.01 3.98 1.82 3.98 3.98zm-119.29 8.2v1.07h-3.98c-2.16 0-3.98-1.82-3.98-3.98v-5.29c0-2.16 1.82-3.98 3.98-3.98l3.98.22zm1.95-24.19c-7.33-13.69-.89-37.39 10.53-50.24 10.31-11.6 25.12-18.25 40.63-18.25 15.52 0 30.34 6.65 40.65 18.25 8.43 9.48 21.3 27.59 17.4 46.39-5.66-.35-10.67-2.55-14.4-6.36-5.37-5.49-7.72-14-6.63-23.94.29-2.62-1.17-5.13-3.6-6.17s-5.25-.37-6.95 1.65c-19.33 22.92-45.95 36.76-73.9 38.68h-3.73zm10.05 24.19v-12.73c24.57-2.92 47.92-14.05 66.73-31.8 1.43 7.26 4.63 13.6 9.45 18.52 3.27 3.35 7.14 5.89 11.41 7.58v18.42c0 24.15-19.65 43.8-43.8 43.8s-43.79-19.64-43.79-43.79zm15.89 78.48 19.29 19.29-13.29 13.29-15.84-27.66zm3.22 97.53h-39.42v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.76v-35.63c0-12.68 8.1-23.95 20.15-28.05.26-.09.51-.19.75-.31l46.47-23.23 20.07 35.06c.93 1.62 2.56 2.72 4.41 2.97.27.04.53.05.79.05 1.58 0 3.11-.62 4.24-1.76l.14-.14zm12.08 0 7.41-64.69 5.06-5.06 4.84 4.84 7.86 64.92h-25.17zm128.2 0h-39.76v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.18l-6.2-51.17.25.25c1.13 1.13 2.66 1.76 4.24 1.76.26 0 .53-.02.79-.05 1.85-.25 3.48-1.34 4.41-2.97l20.07-35.06 46.47 23.23c.24.12.49.23.75.31 12.05 4.1 20.15 15.38 20.15 28.05v35.65zm-67.04-346.65h-10.84l28.38 39.84 28.38-39.84h-10.84c-3.31 0-6-2.69-6-6v-64.58h-98.7c-3.31 0-6-2.69-6-6s2.69-6 6-6h104.7c3.31 0 6 2.69 6 6v64.58h16.48c2.25 0 4.3 1.25 5.33 3.25s.86 4.4-.45 6.23l-40.02 56.18c-1.13 1.58-2.95 2.52-4.89 2.52s-3.76-.94-4.89-2.52l-40.02-56.18c-1.3-1.83-1.48-4.23-.45-6.23s3.09-3.25 5.33-3.25h16.48v-23.5h-65.38c-3.31 0-6-2.69-6-6s2.69-6 6-6h71.38c3.31 0 6 2.69 6 6v35.5c.02 3.31-2.67 6-5.98 6zm-118.44 50.65v-133.26c0-21.18-17.23-38.41-38.41-38.41h-207.7c-21.18-.01-38.41 17.23-38.41 38.41v133.26c0 21.18 17.23 38.41 38.41 38.41h105.8l64.8 55.11c1.11.94 2.49 1.43 3.89 1.43.85 0 1.71-.18 2.52-.55 2.12-.98 3.48-3.11 3.48-5.45v-50.54h27.21c21.18 0 38.41-17.23 38.41-38.41zm-71.62 26.41c-3.31 0-6 2.69-6 6v43.56l-56.59-48.13c-1.08-.92-2.46-1.43-3.89-1.43h-108.01c-14.56 0-26.41-11.85-26.41-26.41v-133.26c0-14.56 11.85-26.41 26.41-26.41h207.69c14.56 0 26.41 11.85 26.41 26.41v133.26c0 14.56-11.85 26.41-26.41 26.41zm-156.34-87.87h56.97c3.31 0 6-2.69 6-6v-39.2l8.55-8.55c2.34-2.34 2.34-6.14 0-8.49-2.34-2.34-6.14-2.34-8.48 0l-.7.7c-.98-1.97-3.01-3.32-5.36-3.32h-56.98c-3.31 0-6 2.69-6 6v52.85c0 3.32 2.69 6.01 6 6.01zm6-52.86h44.97v2.69l-18.16 18.16-8.84-8.84c-2.34-2.34-6.14-2.34-8.49 0-2.34 2.34-2.34 6.14 0 8.49l13.08 13.08c1.17 1.17 2.71 1.76 4.24 1.76s3.07-.59 4.24-1.76l13.92-13.92v21.2h-44.96zm173.62 3.08c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 31.92c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 36.52c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.68 5.99 6zm0 31.92c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.69 5.99 6zm-119.36 165.01h10.84l-28.38-39.84-28.38 39.84h10.84c3.31 0 6 2.69 6 6v64.58h98.7c3.31 0 6 2.69 6 6s-2.69 6-6 6h-104.69c-3.31 0-6-2.69-6-6v-64.58h-16.48c-2.25 0-4.3-1.25-5.33-3.25s-.86-4.4.45-6.23l40.02-56.18c1.13-1.58 2.95-2.52 4.89-2.52s3.76.94 4.89 2.52l40.02 56.18c1.3 1.83 1.48 4.23.45 6.23s-3.09 3.25-5.33 3.25h-16.48v23.5h65.38c3.31 0 6 2.69 6 6s-2.69 6-6 6h-71.38c-3.31 0-6-2.69-6-6v-35.5c-.03-3.31 2.66-6 5.97-6z\"></path></svg>				\n									<h5>\n							ærlig<br> rådgivning						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 510 510\"><path d=\"m192.036 385.845c-4.787-46.972-19.459-64.336-30.658-82.352-8.672-13.951-15.5-28.245-15.5-54.252 0-60.242 48.865-109.109 109.135-109.109 60.242 0 109.109 48.866 109.109 109.109 0 26.007-6.828 40.301-15.5 54.252-11.199 18.016-25.871 35.38-30.658 82.352 9.985 2.864 17.345 12.101 17.345 22.975v36.44c0 13.109-10.747 23.866-23.893 23.866h-10.334v9.945c0 12.588-10.341 22.929-22.93 22.929h-46.304c-12.589 0-22.93-10.341-22.93-22.929v-9.945h-10.334c-13.146 0-23.893-10.757-23.893-23.866v-36.44c0-10.874 7.36-20.111 17.345-22.975zm111.948-.917c4.199-42.194 15.78-62.332 26.488-79.049 10.147-15.842 19.65-28.207 19.65-56.638 0-52.513-42.597-95.109-95.109-95.109-52.537 0-95.135 42.596-95.135 95.109 0 28.431 9.503 40.796 19.65 56.638 10.708 16.717 22.289 36.855 26.488 79.049zm2.554-78.61c-1.175 13.701-11.985 24.191-24.783 24.191-13.527 0-24.862-12.086-24.862-26.673v-99.328c0-14.12 11.335-26.673 24.862-26.673 11.309 0 21.031 8.139 23.975 19.497 9.12 3.904 15.688 13.438 15.688 24.78 0 1.153-.068 2.289-.201 3.403 5.078 5.326 8.283 12.802 8.283 21.117 0 6.39-1.889 12.262-5.06 17.053 1.996 4.099 3.13 8.773 3.13 13.76 0 14.1-9.065 25.697-21.032 28.873zm-16.452-109.977c-1.964-2.729-4.916-4.506-8.331-4.506-6.192 0-10.862 6.21-10.862 12.673v99.328c0 6.677 4.67 12.673 10.862 12.673 5.516 0 9.822-4.614 10.717-10.425-4.709-1.416-8.923-4.144-12.279-7.814-2.607-2.852-2.409-7.283.443-9.89 2.851-2.607 7.282-2.408 9.889.443 2.416 2.642 5.72 4.356 9.402 4.356 7.733 0 13.643-7.218 13.643-15.734s-5.91-15.734-13.643-15.734c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7 5.352 0 10.388 1.655 14.658 4.533.593-1.743.915-3.634.915-5.612 0-2.11-.366-4.128-1.036-5.972-.769.858-1.588 1.66-2.453 2.397-2.94 2.507-7.361 2.156-9.869-.784-2.507-2.939-2.155-7.361.784-9.868 2.773-2.365 4.492-6.122 4.492-10.293 0-6.072-3.705-11.374-8.898-12.467-.154-.023-.307-.052-.458-.085-.499-.08-1.01-.121-1.532-.121-2.947 0-5.591 1.389-7.515 3.525-2.585 2.87-7.015 3.101-9.886.515-2.87-2.586-3.101-7.015-.515-9.886 3.111-3.453 7.059-5.988 11.472-7.252zm-104.526 67.344c-3.171-4.791-5.06-10.663-5.06-17.053 0-8.307 3.198-15.777 8.284-21.104-.133-1.118-.202-2.258-.202-3.416 0-11.354 6.582-20.897 15.717-24.792 2.948-11.354 12.67-19.485 23.946-19.485 13.56 0 24.888 12.555 24.888 26.673v99.328c0 14.585-11.328 26.673-24.888 26.673-12.765 0-23.578-10.484-24.757-24.184-11.98-3.166-21.058-14.769-21.058-28.88 0-4.987 1.134-9.661 3.13-13.76zm9.982-23.036c-.675 1.847-1.042 3.869-1.042 5.983 0 1.978.322 3.869.915 5.612 4.27-2.878 9.306-4.533 14.658-4.533 3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7-7.733 0-13.643 7.218-13.643 15.734s5.91 15.734 13.643 15.734c3.682 0 6.986-1.714 9.402-4.356 2.607-2.851 7.038-3.05 9.889-.443 2.852 2.607 3.05 7.038.443 9.89-3.35 3.664-7.556 6.389-12.255 7.807.891 5.813 5.192 10.432 10.693 10.432 6.21 0 10.888-5.993 10.888-12.673v-99.328c0-6.466-4.678-12.673-10.888-12.673-3.404 0-6.349 1.777-8.309 4.507 4.421 1.264 8.367 3.8 11.476 7.251 2.586 2.871 2.355 7.3-.516 9.886-2.87 2.586-7.3 2.355-9.886-.515-1.926-2.138-4.574-3.525-7.54-3.525-.493 0-.976.037-1.448.108-.196.045-.395.082-.596.11-5.165 1.118-8.844 6.404-8.844 12.455 0 1.243.153 2.45.442 3.594.101.284.183.572.246.862.748 2.326 2.071 4.346 3.814 5.823 2.947 2.498 3.311 6.919.813 9.866s-6.919 3.312-9.866.814c-.878-.745-1.71-1.554-2.489-2.422zm3.042 158.279c-5.442 0-9.893 4.451-9.893 9.892v36.44c0 5.423 4.454 9.866 9.893 9.866h17.334c3.866 0 7 3.134 7 7v16.945c0 4.902 4.027 8.929 8.93 8.929h46.304c4.903 0 8.93-4.027 8.93-8.929v-16.945c0-3.866 3.134-7 7-7h17.334c5.439 0 9.893-4.443 9.893-9.866v-36.44c0-5.441-4.451-9.892-9.893-9.892zm63.416-314.093 2.907-5.412c1.828-3.403 6.075-4.683 9.479-2.854 3.403 1.828 4.682 6.075 2.854 9.479l-16.073 29.925c-1.22 2.271-3.589 3.688-6.167 3.688s-4.947-1.417-6.167-3.688l-16.073-29.925c-1.828-3.404-.549-7.651 2.854-9.479 3.404-1.829 7.651-.549 9.479 2.854l2.907 5.412v-69.835c0-3.863 3.137-7 7-7s7 3.137 7 7zm-132.198 54.758-49.381-49.381c-2.732-2.731-2.732-7.167 0-9.899s7.168-2.732 9.9 0l49.38 49.38-1.771-5.881c-1.114-3.7.985-7.608 4.684-8.722 3.7-1.114 7.607.985 8.721 4.685l9.796 32.526c.743 2.468.069 5.145-1.753 6.968-1.823 1.823-4.5 2.496-6.969 1.753l-32.526-9.795c-3.699-1.114-5.798-5.022-4.684-8.721s5.022-5.798 8.721-4.684zm-44.859 122.299h-69.835c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7h69.835l-5.412-2.907c-3.403-1.828-4.682-6.076-2.854-9.479 1.828-3.404 6.075-4.683 9.479-2.855l29.926 16.074c2.271 1.22 3.688 3.589 3.688 6.167 0 2.577-1.417 4.947-3.688 6.166l-29.926 16.074c-3.404 1.828-7.651.549-9.479-2.855-1.828-3.403-.549-7.651 2.854-9.479zm54.758 118.198-49.38 49.38c-2.732 2.732-7.168 2.732-9.9 0s-2.732-7.167 0-9.899l49.381-49.381-5.882 1.772c-3.699 1.114-7.607-.985-8.721-4.685-1.114-3.699.985-7.607 4.684-8.721l32.526-9.795c2.469-.743 5.146-.07 6.969 1.753 1.822 1.823 2.496 4.5 1.753 6.968l-9.796 32.527c-1.114 3.699-5.021 5.798-8.721 4.684-3.699-1.114-5.798-5.022-4.684-8.721zm240.497-240.497 5.882-1.771c3.699-1.114 7.607.985 8.721 4.684s-.985 7.607-4.684 8.721l-32.526 9.795c-2.469.743-5.146.07-6.969-1.753-1.822-1.823-2.496-4.5-1.753-6.968l9.796-32.526c1.114-3.7 5.021-5.799 8.721-4.685 3.699 1.114 5.798 5.022 4.684 8.722l-1.771 5.881 49.38-49.38c2.732-2.732 7.168-2.732 9.9 0s2.732 7.168 0 9.899zm44.859 122.299 5.412 2.906c3.403 1.828 4.682 6.076 2.854 9.479-1.828 3.404-6.075 4.683-9.479 2.855l-29.926-16.074c-2.271-1.219-3.688-3.589-3.688-6.166 0-2.578 1.417-4.947 3.688-6.167l29.926-16.074c3.404-1.828 7.651-.549 9.479 2.855 1.828 3.403.549 7.651-2.854 9.479l-5.412 2.907h69.835c3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7zm-54.758 118.198 1.771 5.882c1.114 3.699-.985 7.607-4.684 8.721-3.7 1.114-7.607-.985-8.721-4.684l-9.796-32.527c-.743-2.468-.069-5.145 1.753-6.968 1.823-1.823 4.5-2.496 6.969-1.753l32.526 9.795c3.699 1.114 5.798 5.022 4.684 8.721-1.114 3.7-5.022 5.799-8.721 4.685l-5.882-1.772 49.381 49.381c2.732 2.732 2.732 7.167 0 9.899s-7.168 2.732-9.9 0z\"></path></svg>				\n									<h5>\n							gennemtænkte løsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"outline\"><path d=\"M486.41,144A28,28,0,0,0,472,92H349.123l5.457-21.828a48.513,48.513,0,0,0-12.848-46.153A41.035,41.035,0,0,0,312.609,12H308a8.009,8.009,0,0,0-8,8V47.413l-19.233,64.112A17.376,17.376,0,0,1,268,123.539V112a4,4,0,0,0-4-4H152a4,4,0,0,0-4,4v72a4,4,0,0,0,8,0V116h72V276H156V248a4,4,0,0,0-8,0v32a4,4,0,0,0,4,4H264a4,4,0,0,0,4-4V268.5h11.168A37.07,37.07,0,0,1,305.092,279a45.025,45.025,0,0,0,31.48,12.752L440,292a27.987,27.987,0,0,0,19.369-48.2,27.987,27.987,0,0,0,16-48A28,28,0,0,0,486.41,144ZM260,276H236V116h24Zm212-88H396a4,4,0,0,0,0,8h60a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h40a20,20,0,0,1,.01,40l-103.428-.25a37.07,37.07,0,0,1-25.924-10.5,45.031,45.031,0,0,0-31.49-12.752H268V131.686a25.317,25.317,0,0,0,20.429-17.862l19.4-64.675A4,4,0,0,0,308,48V20h4.609a33.082,33.082,0,0,1,23.481,9.69,40.507,40.507,0,0,1,10.728,38.541l-6.7,26.8A4,4,0,0,0,344,100H472a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h72a20,20,0,0,1,0,40Z\"></path><path d=\"M194.5,183.243l-1.9-.217a4,4,0,0,0-4.169,2.491L184.29,195.9H135.278l-3.539-9.317a4,4,0,0,0-7.478,2.84l2.459,6.477h-8.474L68.452,156.872a4,4,0,1,0-4.935,6.3L77.6,174.209,56.961,194.48l-6.636-5.491a4,4,0,1,0-5.1,6.163L87.219,229.9a44.1,44.1,0,0,0,28.05,10.1H212a8.009,8.009,0,0,0,8-8V203.9a8.009,8.009,0,0,0-8-8h-8v-2.01A10.708,10.708,0,0,0,194.5,183.243ZM212,203.9V232H115.269a36.081,36.081,0,0,1-22.951-8.264l-29.16-24.128,20.8-20.422L114.4,203.045a4,4,0,0,0,2.468.852H187a4,4,0,0,0,3.715-2.517l3.929-9.843a2.712,2.712,0,0,1,1.356,2.35v6.01a4,4,0,0,0,4,4Z\"></path><path d=\"M223.084,484.672,200.87,469.863V346.36A44.1,44.1,0,0,0,195.327,325l-17.183-30.94a4,4,0,0,0-7,3.884l17.184,30.94a36.073,36.073,0,0,1,4.537,17.478V468H164.333a4,4,0,1,0,0,8h31.321l12,8H152.865V352a4,4,0,0,0-.358-1.655l-25.454-56A4,4,0,0,0,123.411,292H114.2a4,4,0,0,0-3.945,4.658l8.862,53.175a36.016,36.016,0,0,1-1.951,18.949L78.642,468H48.333a4,4,0,1,0,0,8H80.377L92,484H32.088L76.63,361.366a4.017,4.017,0,0,0,.183-2.044L61.1,268H136a4,4,0,0,0,0-8H59.233L30.555,173.966A19.723,19.723,0,0,1,49.27,148H76a12,12,0,0,0,24,0h15.2a21.975,21.975,0,0,1,8.395,1.652l10.889,4.458a4,4,0,1,0,3.032-7.4L126.63,142.25A29.938,29.938,0,0,0,115.2,140H100v-4.527A16.014,16.014,0,0,0,112,120V103.473A16.014,16.014,0,0,0,124,88V80a4,4,0,0,0-4-4H90A22.025,22.025,0,0,0,68,98v18a12.02,12.02,0,0,0,8,11.314V140H49.27a27.723,27.723,0,0,0-26.305,36.5l29.493,88.482,16.29,94.655-46.128,127A4,4,0,0,0,26.38,492h78.485a4,4,0,0,0,2.268-7.3L86.3,470.368l38.318-98.69a44.018,44.018,0,0,0,2.385-23.16L118.921,300h1.914l24.03,52.867V488a4,4,0,0,0,4,4h72a4,4,0,0,0,2.219-7.328ZM76,98A14.015,14.015,0,0,1,90,84h26v4a8.009,8.009,0,0,1-8,8H92a4,4,0,0,0-4,4,11.962,11.962,0,0,1-1.53,5.881A12.044,12.044,0,0,0,76,104.686Zm4,14a3.981,3.981,0,0,1,3.407,1.9,4,4,0,0,0,5.956.975c.207-.171.7-.648.7-.648.032-.028.061-.057.09-.087A19.907,19.907,0,0,0,95.6,104H104v16a8.009,8.009,0,0,1-8,8,12.133,12.133,0,0,1-2.681-.3,4,4,0,1,0-1.775,7.8c.151.035.3.06.456.091V148a4,4,0,1,1-8,0V124a4,4,0,0,0-4-4,4,4,0,0,1,0-8Z\"></path></g></svg>				\n									<h5>\n							arbejde udført med ansvar						\n					</h5>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 12:47:54', '2026-01-26 12:47:54', '', 10, 'https://mrarif.me/cpnordic/?p=492', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(493, 1, '2026-01-26 12:47:55', '2026-01-26 12:47:55', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>					\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle ANMELDELSER\n					</a>\n					<h2>HVORFOR VÆLGE CP NORDIC ApS?</h2>		<p>Når du vælger CP NORDIC ApS, får du:</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 450 450\" width=\"512\"><g><g><path d=\"m225 165.2c-25.9 0-48.9-18.8-53.3-45.2-2.4-14.2.9-28.6 9.3-40.3 8.4-11.8 20.9-19.5 35.1-21.9 29.4-4.9 57.3 15 62.2 44.5 4.9 29.4-15 57.3-44.4 62.2-3 .5-6 .7-8.9.7zm-7.6-99.8c-12.2 2-22.9 8.7-30.1 18.8s-10.1 22.4-8 34.6c3.8 22.7 23.5 38.8 45.7 38.8 2.5 0 5.1-.2 7.6-.6 25.2-4.2 42.3-28.1 38.1-53.4s-28.1-42.4-53.3-38.2z\"></path><path d=\"m255.2 115c-2.1 0-3.8-1.7-3.8-3.8 0-14.6-11.8-26.4-26.4-26.4-2.1 0-3.8-1.7-3.8-3.8s1.7-3.8 3.8-3.8c18.8 0 34.1 15.3 34.1 34.1 0 2-1.8 3.7-3.9 3.7z\"></path><path d=\"m236.1 203h-22.2c-2.1 0-3.8-1.7-3.8-3.8v-14.1c-3.1-.6-6.1-1.4-9.1-2.4l-7 12.2c-1.1 1.8-3.4 2.5-5.3 1.4l-19.2-11.1c-.9-.5-1.5-1.4-1.8-2.3-.3-1-.1-2 .4-2.9l7-12.1c-2.4-2.1-4.6-4.3-6.7-6.6l-12.1 7c-1.8 1.1-4.2.4-5.2-1.4l-11.1-19.2c-1.1-1.8-.4-4.2 1.4-5.2l11.9-6.8c-1-3-1.9-6.1-2.6-9.3h-13.7c-2.1 0-3.8-1.7-3.8-3.8v-22.2c0-2.1 1.7-3.8 3.8-3.8h13.4c.6-3.2 1.4-6.4 2.4-9.5l-11.5-6.6c-1.8-1.1-2.5-3.4-1.4-5.3l11.1-19.6c.5-.9 1.4-1.5 2.3-1.8s2-.1 2.9.4l11.3 6.6c2.2-2.5 4.5-4.8 7-7l-6.5-11.3c-.5-.9-.6-1.9-.4-2.9.3-1 .9-1.8 1.8-2.3l19.2-11.1c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l6.4 11.2c3.1-1.1 6.4-1.9 9.7-2.6v-13c0-2.1 1.7-3.8 3.8-3.8h22.2c2.1 0 3.8 1.7 3.8 3.8v12.8c3.3.7 6.5 1.5 9.7 2.6l6.5-11.2c.5-.9 1.4-1.5 2.3-1.8 1-.3 2-.1 2.9.4l19.2 11.1c.9.5 1.5 1.3 1.8 2.3s.1 2-.4 2.9l-6.5 11.3c2.5 2.2 4.8 4.5 7 7.1l11.3-6.6c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l11.1 19.2c1.1 1.8.4 4.2-1.4 5.3l-11.5 6.6c1 3.1 1.8 6.3 2.5 9.5h13.6c2.1 0 3.8 1.7 3.8 3.8v22.2c0 2.1-1.7 3.8-3.8 3.8h-13.6c-.6 3.1-1.5 6.2-2.5 9.3l11.9 6.8c1.8 1.1 2.5 3.4 1.4 5.2l-11.2 19.5c-1.1 1.8-3.4 2.5-5.2 1.4l-12-7c-2.1 2.4-4.4 4.6-6.7 6.6l7 12.1c.5.9.6 1.9.4 2.9s-.9 1.8-1.8 2.3l-19.2 11.1c-1.8 1.1-4.2.4-5.2-1.4l-7-12.2c-3 1-6 1.8-9.1 2.4v14.1c-.2 2.3-2 4-4.1 4zm-18.4-7.7h14.5v-13.5c0-1.9 1.4-3.5 3.3-3.8 4.7-.7 9.4-2 13.8-3.7 1.8-.7 3.8 0 4.7 1.7l6.7 11.6 12.6-7.3-6.7-11.6c-1-1.6-.5-3.7.9-4.9 3.7-3 7.2-6.4 10.2-10.1 1.2-1.5 3.3-1.8 4.9-.9l11.5 6.6 7.3-12.6-11.3-6.5c-1.6-.9-2.4-3-1.6-4.7 1.8-4.5 3.1-9.2 3.9-14 .3-1.9 1.9-3.2 3.8-3.2h13v-14.6h-12.8c-1.9 0-3.5-1.4-3.8-3.3-.7-4.8-2-9.6-3.7-14.2-.7-1.8 0-3.7 1.7-4.7l10.9-6.3-7.3-12.6-10.8 6.3c-1.6.9-3.7.6-4.9-.9-3.1-3.9-6.6-7.4-10.4-10.6-1.5-1.2-1.9-3.3-.9-4.9l6.2-10.7-12.6-7.3-6.1 10.6c-1 1.6-3 2.3-4.7 1.7-4.6-1.8-9.5-3.1-14.4-3.9-1.9-.3-3.3-1.9-3.3-3.8v-12.2h-14.5v12.3c0 1.9-1.4 3.5-3.3 3.8-5 .8-9.8 2.1-14.4 3.9-1.8.7-3.8 0-4.7-1.7l-6.1-10.6-12.6 7.3 6.2 10.7c.9 1.6.6 3.7-.9 4.9-3.9 3.1-7.4 6.7-10.4 10.6-1.2 1.5-3.3 1.9-4.9.9l-10.8-6.3-7.3 12.6 10.9 6.3c1.6.9 2.3 2.9 1.7 4.7-1.7 4.6-3 9.4-3.7 14.2-.3 1.9-1.9 3.3-3.8 3.3h-12.8v14.5h13c1.9 0 3.5 1.4 3.8 3.2.8 4.8 2.1 9.5 3.9 14 .7 1.8 0 3.8-1.6 4.7l-11.3 6.5 7.3 12.6 11.5-6.6c1.6-.9 3.7-.6 4.9.9 3 3.7 6.5 7.1 10.3 10.1 1.5 1.2 1.9 3.3.9 4.9l-6.7 11.6 12.6 7.3 6.7-11.6c.9-1.6 2.9-2.3 4.7-1.7 4.5 1.7 9.1 2.9 13.8 3.7 1.9.3 3.3 1.9 3.3 3.8z\"></path></g><g><g><g><path d=\"m45.3 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m153.9 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path></g><g><path d=\"m189.3 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.2c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c0 2.1-1.7 3.8-3.8 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m73.3 326.4c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m126 326.4c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m99.7 325.6c-.6 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4s4.1 1.1 4.4 3.2c2.4 16.5 12.3 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m50.2 266.6c-.1 0-.2 0-.3 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.7 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-8.9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.5 2.2zm81.8-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13.1-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.4-.7 2.3-.7z\"></path></g></g></g><g><g><path d=\"m296.1 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m404.7 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path></g><g><path d=\"m440 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.1c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c.2 2.1-1.6 3.8-3.7 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m324 326.3c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m376.7 326.3c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m350.4 325.6c-.5 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4 2.1-.3 4 1.1 4.4 3.2 2.4 16.5 12.4 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m301 266.6c-.1 0-.2 0-.4 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.6 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.4 2.2zm81.7-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.5-.7 2.3-.7z\"></path></g></g></g></g></g></svg>				\n									<h5>\n							et ungt og engageret team						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"496pt\" viewBox=\"0 0 496 496\" width=\"496pt\"><path d=\"m440 328h-28.207031c5.078125-6.703125 8.207031-14.960938 8.207031-24 0-8.824219-7.175781-16-16-16h-12v-19.960938c59.574219-14.445312 104-68.085937 104-132.039062 0-74.992188-61.007812-136-136-136s-136 61.007812-136 136c0 63.953125 44.425781 117.59375 104 132.039062v19.960938h-8.449219c-6.167969 0-12.359375 1.464844-17.886719 4.214844l-50.480468 25.25c-3.320313 1.664062-7.03125 2.535156-10.734375 2.535156h-40.449219v-16h-104v16h56v56h16v-56h16v128h-16v-56h-16v56h-56v16h104v-16h40.449219c3.703125 0 7.414062.871094 10.734375 2.527344l34.488281 17.25c5.519531 2.757812 11.710937 4.222656 17.878906 4.222656h24.449219v24h64v-24h48c13.230469 0 24-10.769531 24-24 0-6.167969-2.40625-11.742188-6.238281-16 3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16 0-13.230469-10.769531-24-24-24zm8 24c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm-208-280c0-66.167969 53.832031-120 120-120s120 53.832031 120 120-53.832031 120-120 120-120-53.832031-120-120zm104 134.976562c5.257812.617188 10.574219 1.023438 16 1.023438s10.742188-.40625 16-1.023438v17.023438h-32zm-40.449219 185.023438c-3.703125 0-7.414062-.871094-10.734375-2.527344l-34.488281-17.25c-5.519531-2.757812-11.710937-4.222656-17.878906-4.222656h-40.449219v-96h40.449219c6.167969 0 12.359375-1.464844 17.886719-4.214844l50.480468-25.25c3.320313-1.664062 7.03125-2.535156 10.734375-2.535156h84.449219c0 13.230469-10.769531 24-24 24h-48.28125l-23.863281 35.808594c-6.101563 9.160156-14.527344 16.589844-24.367188 21.503906-8.753906 4.375-18.542969 6.6875-28.320312 6.6875h-15.167969v16h15.167969c12.246093 0 24.519531-2.894531 35.472656-8.375 12.328125-6.160156 22.878906-15.480469 30.527344-26.945312l6.832031-10.253907v93.574219zm40.449219 24v-136h17.472656c-.898437 2.511719-1.472656 5.183594-1.472656 8 0 6.167969 2.40625 11.742188 6.238281 16-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16 0 10.414062 6.710938 19.214844 16 22.527344v9.472656zm96-24h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8s-3.59375 8-8 8zm0 0\"></path><path d=\"m394.878906 73.007812-7.757812 13.984376c17.816406 9.878906 28.878906 28.664062 28.878906 49.007812h16c0-26.160156-14.222656-50.296875-37.121094-62.992188zm0 0\"></path><path d=\"m360 80c4.734375 0 9.449219.59375 14.007812 1.769531l3.976563-15.503906c-5.855469-1.496094-11.90625-2.265625-17.984375-2.265625zm0 0\"></path><path d=\"m360 48c48.519531 0 88 39.480469 88 88 0 20.753906-7.398438 40.910156-20.832031 56.785156l12.207031 10.34375c15.882812-18.761718 24.625-42.601562 24.625-67.128906 0-57.34375-46.65625-104-104-104-24.527344 0-48.367188 8.753906-67.128906 24.632812l10.335937 12.199219c15.871094-13.433593 36.039063-20.832031 56.792969-20.832031zm0 0\"></path><path d=\"m427.128906 215.367188-10.335937-12.199219c-15.871094 13.433593-36.039063 20.832031-56.792969 20.832031-48.519531 0-88-39.480469-88-88 0-20.753906 7.398438-40.910156 20.832031-56.785156l-12.207031-10.34375c-15.882812 18.761718-24.625 42.601562-24.625 67.128906 0 57.34375 46.65625 104 104 104 24.527344 0 48.367188-8.753906 67.128906-24.632812zm0 0\"></path><path d=\"m121.214844 165.640625c4.953125-1.375 9.695312-3.34375 14.183594-5.878906l9.769531 4.886719 19.472656-19.480469-4.886719-9.769531c2.535156-4.496094 4.503906-9.230469 5.886719-14.183594l10.359375-3.445313v-27.53125l-10.351562-3.453125c-1.375-4.953125-3.34375-9.707031-5.886719-14.183594l4.886719-9.777343-19.472657-19.472657-9.769531 4.886719c-4.484375-2.535156-9.230469-4.503906-14.183594-5.878906l-3.453125-10.359375h-27.539062l-3.445313 10.359375c-4.953125 1.375-9.695312 3.34375-14.183594 5.878906l-9.777343-4.886719-19.472657 19.472657 4.886719 9.777343c-2.535156 4.488282-4.503906 9.230469-5.886719 14.183594l-10.351562 3.445313v27.53125l10.351562 3.453125c1.375 4.953125 3.34375 9.695312 5.886719 14.183594l-4.886719 9.769531 19.472657 19.480469 9.769531-4.886719c4.484375 2.535156 9.230469 4.503906 14.183594 5.878906l3.453125 10.359375h27.539062zm-12.304688-13.679687-2.679687 8.039062h-4.460938l-2.679687-8.039062-4.554688-.90625c-6.128906-1.222657-11.878906-3.605469-17.109375-7.09375l-3.867187-2.578126-7.574219 3.800782-3.160156-3.167969 3.792969-7.582031-2.578126-3.859375c-3.488281-5.222657-5.871093-10.980469-7.09375-17.109375l-.914062-4.554688-8.03125-2.679687v-4.46875l8.03125-2.671875.914062-4.554688c1.222657-6.136718 3.613282-11.886718 7.09375-17.109375l2.578126-3.859375-3.792969-7.589844 3.160156-3.160156 7.574219 3.800782 3.867187-2.578126c5.222657-3.488281 10.980469-5.863281 17.109375-7.09375l4.554688-.90625 2.679687-8.039062h4.460938l2.679687 8.039062 4.554688.90625c6.128906 1.222657 11.878906 3.605469 17.109375 7.09375l3.867187 2.578126 7.574219-3.800782 3.160156 3.160156-3.792969 7.589844 2.578126 3.859375c3.488281 5.214844 5.871093 10.972657 7.09375 17.109375l.914062 4.554688 8.03125 2.679687v4.46875l-8.03125 2.671875-.914062 4.554688c-1.222657 6.128906-3.613282 11.878906-7.09375 17.109375l-2.578126 3.859375 3.792969 7.582031-3.160156 3.167969-7.574219-3.800782-3.867187 2.578126c-5.222657 3.488281-10.980469 5.863281-17.109375 7.09375zm0 0\"></path><path d=\"m104 72c-17.648438 0-32 14.351562-32 32s14.351562 32 32 32 32-14.351562 32-32-14.351562-32-32-32zm0 48c-8.824219 0-16-7.175781-16-16s7.175781-16 16-16 16 7.175781 16 16-7.175781 16-16 16zm0 0\"></path><path d=\"m160 248v-40h48v-208h-208v208h106.664062zm-144-232h176v176h-48v24l-32-24h-96zm0 0\"></path><path d=\"m0 272h16v16h-16zm0 0\"></path><path d=\"m32 272h16v16h-16zm0 0\"></path><path d=\"m64 272h16v16h-16zm0 0\"></path><path d=\"m32 304h16v16h-16zm0 0\"></path><path d=\"m64 304h16v16h-16zm0 0\"></path><path d=\"m0 480h16v16h-16zm0 0\"></path><path d=\"m32 480h16v16h-16zm0 0\"></path><path d=\"m64 480h16v16h-16zm0 0\"></path><path d=\"m32 448h16v16h-16zm0 0\"></path><path d=\"m64 448h16v16h-16zm0 0\"></path></svg>				\n									<h5>\n							fokus på kvalitet og detaljer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m469.12 408.93-67.26-33.63v-22.13c10.71-7.69 18.6-19.07 21.78-32.27h5.28c8.81 0 15.98-7.17 15.98-15.98v-5.29c0-6.35-3.74-11.84-9.12-14.41 5.19-18.64-1.65-39.76-19.44-59.78-12.58-14.16-30.67-22.27-49.62-22.27-18.93 0-37.01 8.12-49.59 22.27-13.38 15.05-20.95 41.01-14.03 59.62-5.56 2.5-9.45 8.09-9.45 14.57v5.29c0 8.81 7.17 15.98 15.98 15.98h5.55c3.16 13.09 10.94 24.39 21.51 32.08v22.32l-67.26 33.63c-16.7 5.87-27.89 21.6-27.89 39.28v41.63c0 3.31 2.69 6 6 6h243.46c3.31 0 6-2.69 6-6v-41.63c0-17.68-11.19-33.41-27.88-39.28zm-62.24-17.7-15.83 27.66-13.29-13.29 19.29-19.29zm-37.61 5.88-20.59-20.58v-16.91c6.41 2.57 13.4 4.01 20.72 4.01 7.22 0 14.11-1.39 20.45-3.9v16.8zm63.63-97.48v5.29c0 2.16-1.82 3.98-3.98 3.98h-3.74c.01-.36.03-.71.03-1.07v-12.18h3.71c2.15-.01 3.98 1.82 3.98 3.98zm-119.29 8.2v1.07h-3.98c-2.16 0-3.98-1.82-3.98-3.98v-5.29c0-2.16 1.82-3.98 3.98-3.98l3.98.22zm1.95-24.19c-7.33-13.69-.89-37.39 10.53-50.24 10.31-11.6 25.12-18.25 40.63-18.25 15.52 0 30.34 6.65 40.65 18.25 8.43 9.48 21.3 27.59 17.4 46.39-5.66-.35-10.67-2.55-14.4-6.36-5.37-5.49-7.72-14-6.63-23.94.29-2.62-1.17-5.13-3.6-6.17s-5.25-.37-6.95 1.65c-19.33 22.92-45.95 36.76-73.9 38.68h-3.73zm10.05 24.19v-12.73c24.57-2.92 47.92-14.05 66.73-31.8 1.43 7.26 4.63 13.6 9.45 18.52 3.27 3.35 7.14 5.89 11.41 7.58v18.42c0 24.15-19.65 43.8-43.8 43.8s-43.79-19.64-43.79-43.79zm15.89 78.48 19.29 19.29-13.29 13.29-15.84-27.66zm3.22 97.53h-39.42v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.76v-35.63c0-12.68 8.1-23.95 20.15-28.05.26-.09.51-.19.75-.31l46.47-23.23 20.07 35.06c.93 1.62 2.56 2.72 4.41 2.97.27.04.53.05.79.05 1.58 0 3.11-.62 4.24-1.76l.14-.14zm12.08 0 7.41-64.69 5.06-5.06 4.84 4.84 7.86 64.92h-25.17zm128.2 0h-39.76v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.18l-6.2-51.17.25.25c1.13 1.13 2.66 1.76 4.24 1.76.26 0 .53-.02.79-.05 1.85-.25 3.48-1.34 4.41-2.97l20.07-35.06 46.47 23.23c.24.12.49.23.75.31 12.05 4.1 20.15 15.38 20.15 28.05v35.65zm-67.04-346.65h-10.84l28.38 39.84 28.38-39.84h-10.84c-3.31 0-6-2.69-6-6v-64.58h-98.7c-3.31 0-6-2.69-6-6s2.69-6 6-6h104.7c3.31 0 6 2.69 6 6v64.58h16.48c2.25 0 4.3 1.25 5.33 3.25s.86 4.4-.45 6.23l-40.02 56.18c-1.13 1.58-2.95 2.52-4.89 2.52s-3.76-.94-4.89-2.52l-40.02-56.18c-1.3-1.83-1.48-4.23-.45-6.23s3.09-3.25 5.33-3.25h16.48v-23.5h-65.38c-3.31 0-6-2.69-6-6s2.69-6 6-6h71.38c3.31 0 6 2.69 6 6v35.5c.02 3.31-2.67 6-5.98 6zm-118.44 50.65v-133.26c0-21.18-17.23-38.41-38.41-38.41h-207.7c-21.18-.01-38.41 17.23-38.41 38.41v133.26c0 21.18 17.23 38.41 38.41 38.41h105.8l64.8 55.11c1.11.94 2.49 1.43 3.89 1.43.85 0 1.71-.18 2.52-.55 2.12-.98 3.48-3.11 3.48-5.45v-50.54h27.21c21.18 0 38.41-17.23 38.41-38.41zm-71.62 26.41c-3.31 0-6 2.69-6 6v43.56l-56.59-48.13c-1.08-.92-2.46-1.43-3.89-1.43h-108.01c-14.56 0-26.41-11.85-26.41-26.41v-133.26c0-14.56 11.85-26.41 26.41-26.41h207.69c14.56 0 26.41 11.85 26.41 26.41v133.26c0 14.56-11.85 26.41-26.41 26.41zm-156.34-87.87h56.97c3.31 0 6-2.69 6-6v-39.2l8.55-8.55c2.34-2.34 2.34-6.14 0-8.49-2.34-2.34-6.14-2.34-8.48 0l-.7.7c-.98-1.97-3.01-3.32-5.36-3.32h-56.98c-3.31 0-6 2.69-6 6v52.85c0 3.32 2.69 6.01 6 6.01zm6-52.86h44.97v2.69l-18.16 18.16-8.84-8.84c-2.34-2.34-6.14-2.34-8.49 0-2.34 2.34-2.34 6.14 0 8.49l13.08 13.08c1.17 1.17 2.71 1.76 4.24 1.76s3.07-.59 4.24-1.76l13.92-13.92v21.2h-44.96zm173.62 3.08c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 31.92c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 36.52c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.68 5.99 6zm0 31.92c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.69 5.99 6zm-119.36 165.01h10.84l-28.38-39.84-28.38 39.84h10.84c3.31 0 6 2.69 6 6v64.58h98.7c3.31 0 6 2.69 6 6s-2.69 6-6 6h-104.69c-3.31 0-6-2.69-6-6v-64.58h-16.48c-2.25 0-4.3-1.25-5.33-3.25s-.86-4.4.45-6.23l40.02-56.18c1.13-1.58 2.95-2.52 4.89-2.52s3.76.94 4.89 2.52l40.02 56.18c1.3 1.83 1.48 4.23.45 6.23s-3.09 3.25-5.33 3.25h-16.48v23.5h65.38c3.31 0 6 2.69 6 6s-2.69 6-6 6h-71.38c-3.31 0-6-2.69-6-6v-35.5c-.03-3.31 2.66-6 5.97-6z\"></path></svg>				\n									<h5>\n							ærlig<br> rådgivning						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 510 510\"><path d=\"m192.036 385.845c-4.787-46.972-19.459-64.336-30.658-82.352-8.672-13.951-15.5-28.245-15.5-54.252 0-60.242 48.865-109.109 109.135-109.109 60.242 0 109.109 48.866 109.109 109.109 0 26.007-6.828 40.301-15.5 54.252-11.199 18.016-25.871 35.38-30.658 82.352 9.985 2.864 17.345 12.101 17.345 22.975v36.44c0 13.109-10.747 23.866-23.893 23.866h-10.334v9.945c0 12.588-10.341 22.929-22.93 22.929h-46.304c-12.589 0-22.93-10.341-22.93-22.929v-9.945h-10.334c-13.146 0-23.893-10.757-23.893-23.866v-36.44c0-10.874 7.36-20.111 17.345-22.975zm111.948-.917c4.199-42.194 15.78-62.332 26.488-79.049 10.147-15.842 19.65-28.207 19.65-56.638 0-52.513-42.597-95.109-95.109-95.109-52.537 0-95.135 42.596-95.135 95.109 0 28.431 9.503 40.796 19.65 56.638 10.708 16.717 22.289 36.855 26.488 79.049zm2.554-78.61c-1.175 13.701-11.985 24.191-24.783 24.191-13.527 0-24.862-12.086-24.862-26.673v-99.328c0-14.12 11.335-26.673 24.862-26.673 11.309 0 21.031 8.139 23.975 19.497 9.12 3.904 15.688 13.438 15.688 24.78 0 1.153-.068 2.289-.201 3.403 5.078 5.326 8.283 12.802 8.283 21.117 0 6.39-1.889 12.262-5.06 17.053 1.996 4.099 3.13 8.773 3.13 13.76 0 14.1-9.065 25.697-21.032 28.873zm-16.452-109.977c-1.964-2.729-4.916-4.506-8.331-4.506-6.192 0-10.862 6.21-10.862 12.673v99.328c0 6.677 4.67 12.673 10.862 12.673 5.516 0 9.822-4.614 10.717-10.425-4.709-1.416-8.923-4.144-12.279-7.814-2.607-2.852-2.409-7.283.443-9.89 2.851-2.607 7.282-2.408 9.889.443 2.416 2.642 5.72 4.356 9.402 4.356 7.733 0 13.643-7.218 13.643-15.734s-5.91-15.734-13.643-15.734c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7 5.352 0 10.388 1.655 14.658 4.533.593-1.743.915-3.634.915-5.612 0-2.11-.366-4.128-1.036-5.972-.769.858-1.588 1.66-2.453 2.397-2.94 2.507-7.361 2.156-9.869-.784-2.507-2.939-2.155-7.361.784-9.868 2.773-2.365 4.492-6.122 4.492-10.293 0-6.072-3.705-11.374-8.898-12.467-.154-.023-.307-.052-.458-.085-.499-.08-1.01-.121-1.532-.121-2.947 0-5.591 1.389-7.515 3.525-2.585 2.87-7.015 3.101-9.886.515-2.87-2.586-3.101-7.015-.515-9.886 3.111-3.453 7.059-5.988 11.472-7.252zm-104.526 67.344c-3.171-4.791-5.06-10.663-5.06-17.053 0-8.307 3.198-15.777 8.284-21.104-.133-1.118-.202-2.258-.202-3.416 0-11.354 6.582-20.897 15.717-24.792 2.948-11.354 12.67-19.485 23.946-19.485 13.56 0 24.888 12.555 24.888 26.673v99.328c0 14.585-11.328 26.673-24.888 26.673-12.765 0-23.578-10.484-24.757-24.184-11.98-3.166-21.058-14.769-21.058-28.88 0-4.987 1.134-9.661 3.13-13.76zm9.982-23.036c-.675 1.847-1.042 3.869-1.042 5.983 0 1.978.322 3.869.915 5.612 4.27-2.878 9.306-4.533 14.658-4.533 3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7-7.733 0-13.643 7.218-13.643 15.734s5.91 15.734 13.643 15.734c3.682 0 6.986-1.714 9.402-4.356 2.607-2.851 7.038-3.05 9.889-.443 2.852 2.607 3.05 7.038.443 9.89-3.35 3.664-7.556 6.389-12.255 7.807.891 5.813 5.192 10.432 10.693 10.432 6.21 0 10.888-5.993 10.888-12.673v-99.328c0-6.466-4.678-12.673-10.888-12.673-3.404 0-6.349 1.777-8.309 4.507 4.421 1.264 8.367 3.8 11.476 7.251 2.586 2.871 2.355 7.3-.516 9.886-2.87 2.586-7.3 2.355-9.886-.515-1.926-2.138-4.574-3.525-7.54-3.525-.493 0-.976.037-1.448.108-.196.045-.395.082-.596.11-5.165 1.118-8.844 6.404-8.844 12.455 0 1.243.153 2.45.442 3.594.101.284.183.572.246.862.748 2.326 2.071 4.346 3.814 5.823 2.947 2.498 3.311 6.919.813 9.866s-6.919 3.312-9.866.814c-.878-.745-1.71-1.554-2.489-2.422zm3.042 158.279c-5.442 0-9.893 4.451-9.893 9.892v36.44c0 5.423 4.454 9.866 9.893 9.866h17.334c3.866 0 7 3.134 7 7v16.945c0 4.902 4.027 8.929 8.93 8.929h46.304c4.903 0 8.93-4.027 8.93-8.929v-16.945c0-3.866 3.134-7 7-7h17.334c5.439 0 9.893-4.443 9.893-9.866v-36.44c0-5.441-4.451-9.892-9.893-9.892zm63.416-314.093 2.907-5.412c1.828-3.403 6.075-4.683 9.479-2.854 3.403 1.828 4.682 6.075 2.854 9.479l-16.073 29.925c-1.22 2.271-3.589 3.688-6.167 3.688s-4.947-1.417-6.167-3.688l-16.073-29.925c-1.828-3.404-.549-7.651 2.854-9.479 3.404-1.829 7.651-.549 9.479 2.854l2.907 5.412v-69.835c0-3.863 3.137-7 7-7s7 3.137 7 7zm-132.198 54.758-49.381-49.381c-2.732-2.731-2.732-7.167 0-9.899s7.168-2.732 9.9 0l49.38 49.38-1.771-5.881c-1.114-3.7.985-7.608 4.684-8.722 3.7-1.114 7.607.985 8.721 4.685l9.796 32.526c.743 2.468.069 5.145-1.753 6.968-1.823 1.823-4.5 2.496-6.969 1.753l-32.526-9.795c-3.699-1.114-5.798-5.022-4.684-8.721s5.022-5.798 8.721-4.684zm-44.859 122.299h-69.835c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7h69.835l-5.412-2.907c-3.403-1.828-4.682-6.076-2.854-9.479 1.828-3.404 6.075-4.683 9.479-2.855l29.926 16.074c2.271 1.22 3.688 3.589 3.688 6.167 0 2.577-1.417 4.947-3.688 6.166l-29.926 16.074c-3.404 1.828-7.651.549-9.479-2.855-1.828-3.403-.549-7.651 2.854-9.479zm54.758 118.198-49.38 49.38c-2.732 2.732-7.168 2.732-9.9 0s-2.732-7.167 0-9.899l49.381-49.381-5.882 1.772c-3.699 1.114-7.607-.985-8.721-4.685-1.114-3.699.985-7.607 4.684-8.721l32.526-9.795c2.469-.743 5.146-.07 6.969 1.753 1.822 1.823 2.496 4.5 1.753 6.968l-9.796 32.527c-1.114 3.699-5.021 5.798-8.721 4.684-3.699-1.114-5.798-5.022-4.684-8.721zm240.497-240.497 5.882-1.771c3.699-1.114 7.607.985 8.721 4.684s-.985 7.607-4.684 8.721l-32.526 9.795c-2.469.743-5.146.07-6.969-1.753-1.822-1.823-2.496-4.5-1.753-6.968l9.796-32.526c1.114-3.7 5.021-5.799 8.721-4.685 3.699 1.114 5.798 5.022 4.684 8.722l-1.771 5.881 49.38-49.38c2.732-2.732 7.168-2.732 9.9 0s2.732 7.168 0 9.899zm44.859 122.299 5.412 2.906c3.403 1.828 4.682 6.076 2.854 9.479-1.828 3.404-6.075 4.683-9.479 2.855l-29.926-16.074c-2.271-1.219-3.688-3.589-3.688-6.166 0-2.578 1.417-4.947 3.688-6.167l29.926-16.074c3.404-1.828 7.651-.549 9.479 2.855 1.828 3.403.549 7.651-2.854 9.479l-5.412 2.907h69.835c3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7zm-54.758 118.198 1.771 5.882c1.114 3.699-.985 7.607-4.684 8.721-3.7 1.114-7.607-.985-8.721-4.684l-9.796-32.527c-.743-2.468-.069-5.145 1.753-6.968 1.823-1.823 4.5-2.496 6.969-1.753l32.526 9.795c3.699 1.114 5.798 5.022 4.684 8.721-1.114 3.7-5.022 5.799-8.721 4.685l-5.882-1.772 49.381 49.381c2.732 2.732 2.732 7.167 0 9.899s-7.168 2.732-9.9 0z\"></path></svg>				\n									<h5>\n							gennemtænkte løsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"outline\"><path d=\"M486.41,144A28,28,0,0,0,472,92H349.123l5.457-21.828a48.513,48.513,0,0,0-12.848-46.153A41.035,41.035,0,0,0,312.609,12H308a8.009,8.009,0,0,0-8,8V47.413l-19.233,64.112A17.376,17.376,0,0,1,268,123.539V112a4,4,0,0,0-4-4H152a4,4,0,0,0-4,4v72a4,4,0,0,0,8,0V116h72V276H156V248a4,4,0,0,0-8,0v32a4,4,0,0,0,4,4H264a4,4,0,0,0,4-4V268.5h11.168A37.07,37.07,0,0,1,305.092,279a45.025,45.025,0,0,0,31.48,12.752L440,292a27.987,27.987,0,0,0,19.369-48.2,27.987,27.987,0,0,0,16-48A28,28,0,0,0,486.41,144ZM260,276H236V116h24Zm212-88H396a4,4,0,0,0,0,8h60a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h40a20,20,0,0,1,.01,40l-103.428-.25a37.07,37.07,0,0,1-25.924-10.5,45.031,45.031,0,0,0-31.49-12.752H268V131.686a25.317,25.317,0,0,0,20.429-17.862l19.4-64.675A4,4,0,0,0,308,48V20h4.609a33.082,33.082,0,0,1,23.481,9.69,40.507,40.507,0,0,1,10.728,38.541l-6.7,26.8A4,4,0,0,0,344,100H472a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h72a20,20,0,0,1,0,40Z\"></path><path d=\"M194.5,183.243l-1.9-.217a4,4,0,0,0-4.169,2.491L184.29,195.9H135.278l-3.539-9.317a4,4,0,0,0-7.478,2.84l2.459,6.477h-8.474L68.452,156.872a4,4,0,1,0-4.935,6.3L77.6,174.209,56.961,194.48l-6.636-5.491a4,4,0,1,0-5.1,6.163L87.219,229.9a44.1,44.1,0,0,0,28.05,10.1H212a8.009,8.009,0,0,0,8-8V203.9a8.009,8.009,0,0,0-8-8h-8v-2.01A10.708,10.708,0,0,0,194.5,183.243ZM212,203.9V232H115.269a36.081,36.081,0,0,1-22.951-8.264l-29.16-24.128,20.8-20.422L114.4,203.045a4,4,0,0,0,2.468.852H187a4,4,0,0,0,3.715-2.517l3.929-9.843a2.712,2.712,0,0,1,1.356,2.35v6.01a4,4,0,0,0,4,4Z\"></path><path d=\"M223.084,484.672,200.87,469.863V346.36A44.1,44.1,0,0,0,195.327,325l-17.183-30.94a4,4,0,0,0-7,3.884l17.184,30.94a36.073,36.073,0,0,1,4.537,17.478V468H164.333a4,4,0,1,0,0,8h31.321l12,8H152.865V352a4,4,0,0,0-.358-1.655l-25.454-56A4,4,0,0,0,123.411,292H114.2a4,4,0,0,0-3.945,4.658l8.862,53.175a36.016,36.016,0,0,1-1.951,18.949L78.642,468H48.333a4,4,0,1,0,0,8H80.377L92,484H32.088L76.63,361.366a4.017,4.017,0,0,0,.183-2.044L61.1,268H136a4,4,0,0,0,0-8H59.233L30.555,173.966A19.723,19.723,0,0,1,49.27,148H76a12,12,0,0,0,24,0h15.2a21.975,21.975,0,0,1,8.395,1.652l10.889,4.458a4,4,0,1,0,3.032-7.4L126.63,142.25A29.938,29.938,0,0,0,115.2,140H100v-4.527A16.014,16.014,0,0,0,112,120V103.473A16.014,16.014,0,0,0,124,88V80a4,4,0,0,0-4-4H90A22.025,22.025,0,0,0,68,98v18a12.02,12.02,0,0,0,8,11.314V140H49.27a27.723,27.723,0,0,0-26.305,36.5l29.493,88.482,16.29,94.655-46.128,127A4,4,0,0,0,26.38,492h78.485a4,4,0,0,0,2.268-7.3L86.3,470.368l38.318-98.69a44.018,44.018,0,0,0,2.385-23.16L118.921,300h1.914l24.03,52.867V488a4,4,0,0,0,4,4h72a4,4,0,0,0,2.219-7.328ZM76,98A14.015,14.015,0,0,1,90,84h26v4a8.009,8.009,0,0,1-8,8H92a4,4,0,0,0-4,4,11.962,11.962,0,0,1-1.53,5.881A12.044,12.044,0,0,0,76,104.686Zm4,14a3.981,3.981,0,0,1,3.407,1.9,4,4,0,0,0,5.956.975c.207-.171.7-.648.7-.648.032-.028.061-.057.09-.087A19.907,19.907,0,0,0,95.6,104H104v16a8.009,8.009,0,0,1-8,8,12.133,12.133,0,0,1-2.681-.3,4,4,0,1,0-1.775,7.8c.151.035.3.06.456.091V148a4,4,0,1,1-8,0V124a4,4,0,0,0-4-4,4,4,0,0,1,0-8Z\"></path></g></svg>				\n									<h5>\n							arbejde udført med ansvar						\n					</h5>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 12:47:55', '2026-01-26 12:47:55', '', 10, 'https://mrarif.me/cpnordic/?p=493', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(494, 1, '2026-01-26 12:49:18', '2026-01-26 12:49:18', '', 'social_14518127', '', 'inherit', 'open', 'closed', '', 'social_14518127', '', '', '2026-01-26 12:49:18', '2026-01-26 12:49:18', '', 10, 'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/social_14518127.svg', 0, 'attachment', 'image/svg+xml', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(495, 1, '2026-01-26 12:50:25', '2026-01-26 12:50:25', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>					\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle ANMELDELSER\n					</a>\n					<h2>HVORFOR VÆLGE CP NORDIC ApS?</h2>		<p>Når du vælger CP NORDIC ApS, får du:</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 450 450\" width=\"512\"><g><g><path d=\"m225 165.2c-25.9 0-48.9-18.8-53.3-45.2-2.4-14.2.9-28.6 9.3-40.3 8.4-11.8 20.9-19.5 35.1-21.9 29.4-4.9 57.3 15 62.2 44.5 4.9 29.4-15 57.3-44.4 62.2-3 .5-6 .7-8.9.7zm-7.6-99.8c-12.2 2-22.9 8.7-30.1 18.8s-10.1 22.4-8 34.6c3.8 22.7 23.5 38.8 45.7 38.8 2.5 0 5.1-.2 7.6-.6 25.2-4.2 42.3-28.1 38.1-53.4s-28.1-42.4-53.3-38.2z\"></path><path d=\"m255.2 115c-2.1 0-3.8-1.7-3.8-3.8 0-14.6-11.8-26.4-26.4-26.4-2.1 0-3.8-1.7-3.8-3.8s1.7-3.8 3.8-3.8c18.8 0 34.1 15.3 34.1 34.1 0 2-1.8 3.7-3.9 3.7z\"></path><path d=\"m236.1 203h-22.2c-2.1 0-3.8-1.7-3.8-3.8v-14.1c-3.1-.6-6.1-1.4-9.1-2.4l-7 12.2c-1.1 1.8-3.4 2.5-5.3 1.4l-19.2-11.1c-.9-.5-1.5-1.4-1.8-2.3-.3-1-.1-2 .4-2.9l7-12.1c-2.4-2.1-4.6-4.3-6.7-6.6l-12.1 7c-1.8 1.1-4.2.4-5.2-1.4l-11.1-19.2c-1.1-1.8-.4-4.2 1.4-5.2l11.9-6.8c-1-3-1.9-6.1-2.6-9.3h-13.7c-2.1 0-3.8-1.7-3.8-3.8v-22.2c0-2.1 1.7-3.8 3.8-3.8h13.4c.6-3.2 1.4-6.4 2.4-9.5l-11.5-6.6c-1.8-1.1-2.5-3.4-1.4-5.3l11.1-19.6c.5-.9 1.4-1.5 2.3-1.8s2-.1 2.9.4l11.3 6.6c2.2-2.5 4.5-4.8 7-7l-6.5-11.3c-.5-.9-.6-1.9-.4-2.9.3-1 .9-1.8 1.8-2.3l19.2-11.1c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l6.4 11.2c3.1-1.1 6.4-1.9 9.7-2.6v-13c0-2.1 1.7-3.8 3.8-3.8h22.2c2.1 0 3.8 1.7 3.8 3.8v12.8c3.3.7 6.5 1.5 9.7 2.6l6.5-11.2c.5-.9 1.4-1.5 2.3-1.8 1-.3 2-.1 2.9.4l19.2 11.1c.9.5 1.5 1.3 1.8 2.3s.1 2-.4 2.9l-6.5 11.3c2.5 2.2 4.8 4.5 7 7.1l11.3-6.6c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l11.1 19.2c1.1 1.8.4 4.2-1.4 5.3l-11.5 6.6c1 3.1 1.8 6.3 2.5 9.5h13.6c2.1 0 3.8 1.7 3.8 3.8v22.2c0 2.1-1.7 3.8-3.8 3.8h-13.6c-.6 3.1-1.5 6.2-2.5 9.3l11.9 6.8c1.8 1.1 2.5 3.4 1.4 5.2l-11.2 19.5c-1.1 1.8-3.4 2.5-5.2 1.4l-12-7c-2.1 2.4-4.4 4.6-6.7 6.6l7 12.1c.5.9.6 1.9.4 2.9s-.9 1.8-1.8 2.3l-19.2 11.1c-1.8 1.1-4.2.4-5.2-1.4l-7-12.2c-3 1-6 1.8-9.1 2.4v14.1c-.2 2.3-2 4-4.1 4zm-18.4-7.7h14.5v-13.5c0-1.9 1.4-3.5 3.3-3.8 4.7-.7 9.4-2 13.8-3.7 1.8-.7 3.8 0 4.7 1.7l6.7 11.6 12.6-7.3-6.7-11.6c-1-1.6-.5-3.7.9-4.9 3.7-3 7.2-6.4 10.2-10.1 1.2-1.5 3.3-1.8 4.9-.9l11.5 6.6 7.3-12.6-11.3-6.5c-1.6-.9-2.4-3-1.6-4.7 1.8-4.5 3.1-9.2 3.9-14 .3-1.9 1.9-3.2 3.8-3.2h13v-14.6h-12.8c-1.9 0-3.5-1.4-3.8-3.3-.7-4.8-2-9.6-3.7-14.2-.7-1.8 0-3.7 1.7-4.7l10.9-6.3-7.3-12.6-10.8 6.3c-1.6.9-3.7.6-4.9-.9-3.1-3.9-6.6-7.4-10.4-10.6-1.5-1.2-1.9-3.3-.9-4.9l6.2-10.7-12.6-7.3-6.1 10.6c-1 1.6-3 2.3-4.7 1.7-4.6-1.8-9.5-3.1-14.4-3.9-1.9-.3-3.3-1.9-3.3-3.8v-12.2h-14.5v12.3c0 1.9-1.4 3.5-3.3 3.8-5 .8-9.8 2.1-14.4 3.9-1.8.7-3.8 0-4.7-1.7l-6.1-10.6-12.6 7.3 6.2 10.7c.9 1.6.6 3.7-.9 4.9-3.9 3.1-7.4 6.7-10.4 10.6-1.2 1.5-3.3 1.9-4.9.9l-10.8-6.3-7.3 12.6 10.9 6.3c1.6.9 2.3 2.9 1.7 4.7-1.7 4.6-3 9.4-3.7 14.2-.3 1.9-1.9 3.3-3.8 3.3h-12.8v14.5h13c1.9 0 3.5 1.4 3.8 3.2.8 4.8 2.1 9.5 3.9 14 .7 1.8 0 3.8-1.6 4.7l-11.3 6.5 7.3 12.6 11.5-6.6c1.6-.9 3.7-.6 4.9.9 3 3.7 6.5 7.1 10.3 10.1 1.5 1.2 1.9 3.3.9 4.9l-6.7 11.6 12.6 7.3 6.7-11.6c.9-1.6 2.9-2.3 4.7-1.7 4.5 1.7 9.1 2.9 13.8 3.7 1.9.3 3.3 1.9 3.3 3.8z\"></path></g><g><g><g><path d=\"m45.3 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m153.9 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path></g><g><path d=\"m189.3 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.2c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c0 2.1-1.7 3.8-3.8 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m73.3 326.4c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m126 326.4c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m99.7 325.6c-.6 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4s4.1 1.1 4.4 3.2c2.4 16.5 12.3 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m50.2 266.6c-.1 0-.2 0-.3 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.7 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-8.9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.5 2.2zm81.8-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13.1-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.4-.7 2.3-.7z\"></path></g></g></g><g><g><path d=\"m296.1 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m404.7 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path></g><g><path d=\"m440 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.1c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c.2 2.1-1.6 3.8-3.7 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m324 326.3c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m376.7 326.3c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m350.4 325.6c-.5 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4 2.1-.3 4 1.1 4.4 3.2 2.4 16.5 12.4 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m301 266.6c-.1 0-.2 0-.4 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.6 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.4 2.2zm81.7-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.5-.7 2.3-.7z\"></path></g></g></g></g></g></svg>				\n									<h5>\n							et ungt og engageret team						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"496pt\" viewBox=\"0 0 496 496\" width=\"496pt\"><path d=\"m440 328h-28.207031c5.078125-6.703125 8.207031-14.960938 8.207031-24 0-8.824219-7.175781-16-16-16h-12v-19.960938c59.574219-14.445312 104-68.085937 104-132.039062 0-74.992188-61.007812-136-136-136s-136 61.007812-136 136c0 63.953125 44.425781 117.59375 104 132.039062v19.960938h-8.449219c-6.167969 0-12.359375 1.464844-17.886719 4.214844l-50.480468 25.25c-3.320313 1.664062-7.03125 2.535156-10.734375 2.535156h-40.449219v-16h-104v16h56v56h16v-56h16v128h-16v-56h-16v56h-56v16h104v-16h40.449219c3.703125 0 7.414062.871094 10.734375 2.527344l34.488281 17.25c5.519531 2.757812 11.710937 4.222656 17.878906 4.222656h24.449219v24h64v-24h48c13.230469 0 24-10.769531 24-24 0-6.167969-2.40625-11.742188-6.238281-16 3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16 0-13.230469-10.769531-24-24-24zm8 24c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm-208-280c0-66.167969 53.832031-120 120-120s120 53.832031 120 120-53.832031 120-120 120-120-53.832031-120-120zm104 134.976562c5.257812.617188 10.574219 1.023438 16 1.023438s10.742188-.40625 16-1.023438v17.023438h-32zm-40.449219 185.023438c-3.703125 0-7.414062-.871094-10.734375-2.527344l-34.488281-17.25c-5.519531-2.757812-11.710937-4.222656-17.878906-4.222656h-40.449219v-96h40.449219c6.167969 0 12.359375-1.464844 17.886719-4.214844l50.480468-25.25c3.320313-1.664062 7.03125-2.535156 10.734375-2.535156h84.449219c0 13.230469-10.769531 24-24 24h-48.28125l-23.863281 35.808594c-6.101563 9.160156-14.527344 16.589844-24.367188 21.503906-8.753906 4.375-18.542969 6.6875-28.320312 6.6875h-15.167969v16h15.167969c12.246093 0 24.519531-2.894531 35.472656-8.375 12.328125-6.160156 22.878906-15.480469 30.527344-26.945312l6.832031-10.253907v93.574219zm40.449219 24v-136h17.472656c-.898437 2.511719-1.472656 5.183594-1.472656 8 0 6.167969 2.40625 11.742188 6.238281 16-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16 0 10.414062 6.710938 19.214844 16 22.527344v9.472656zm96-24h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8s-3.59375 8-8 8zm0 0\"></path><path d=\"m394.878906 73.007812-7.757812 13.984376c17.816406 9.878906 28.878906 28.664062 28.878906 49.007812h16c0-26.160156-14.222656-50.296875-37.121094-62.992188zm0 0\"></path><path d=\"m360 80c4.734375 0 9.449219.59375 14.007812 1.769531l3.976563-15.503906c-5.855469-1.496094-11.90625-2.265625-17.984375-2.265625zm0 0\"></path><path d=\"m360 48c48.519531 0 88 39.480469 88 88 0 20.753906-7.398438 40.910156-20.832031 56.785156l12.207031 10.34375c15.882812-18.761718 24.625-42.601562 24.625-67.128906 0-57.34375-46.65625-104-104-104-24.527344 0-48.367188 8.753906-67.128906 24.632812l10.335937 12.199219c15.871094-13.433593 36.039063-20.832031 56.792969-20.832031zm0 0\"></path><path d=\"m427.128906 215.367188-10.335937-12.199219c-15.871094 13.433593-36.039063 20.832031-56.792969 20.832031-48.519531 0-88-39.480469-88-88 0-20.753906 7.398438-40.910156 20.832031-56.785156l-12.207031-10.34375c-15.882812 18.761718-24.625 42.601562-24.625 67.128906 0 57.34375 46.65625 104 104 104 24.527344 0 48.367188-8.753906 67.128906-24.632812zm0 0\"></path><path d=\"m121.214844 165.640625c4.953125-1.375 9.695312-3.34375 14.183594-5.878906l9.769531 4.886719 19.472656-19.480469-4.886719-9.769531c2.535156-4.496094 4.503906-9.230469 5.886719-14.183594l10.359375-3.445313v-27.53125l-10.351562-3.453125c-1.375-4.953125-3.34375-9.707031-5.886719-14.183594l4.886719-9.777343-19.472657-19.472657-9.769531 4.886719c-4.484375-2.535156-9.230469-4.503906-14.183594-5.878906l-3.453125-10.359375h-27.539062l-3.445313 10.359375c-4.953125 1.375-9.695312 3.34375-14.183594 5.878906l-9.777343-4.886719-19.472657 19.472657 4.886719 9.777343c-2.535156 4.488282-4.503906 9.230469-5.886719 14.183594l-10.351562 3.445313v27.53125l10.351562 3.453125c1.375 4.953125 3.34375 9.695312 5.886719 14.183594l-4.886719 9.769531 19.472657 19.480469 9.769531-4.886719c4.484375 2.535156 9.230469 4.503906 14.183594 5.878906l3.453125 10.359375h27.539062zm-12.304688-13.679687-2.679687 8.039062h-4.460938l-2.679687-8.039062-4.554688-.90625c-6.128906-1.222657-11.878906-3.605469-17.109375-7.09375l-3.867187-2.578126-7.574219 3.800782-3.160156-3.167969 3.792969-7.582031-2.578126-3.859375c-3.488281-5.222657-5.871093-10.980469-7.09375-17.109375l-.914062-4.554688-8.03125-2.679687v-4.46875l8.03125-2.671875.914062-4.554688c1.222657-6.136718 3.613282-11.886718 7.09375-17.109375l2.578126-3.859375-3.792969-7.589844 3.160156-3.160156 7.574219 3.800782 3.867187-2.578126c5.222657-3.488281 10.980469-5.863281 17.109375-7.09375l4.554688-.90625 2.679687-8.039062h4.460938l2.679687 8.039062 4.554688.90625c6.128906 1.222657 11.878906 3.605469 17.109375 7.09375l3.867187 2.578126 7.574219-3.800782 3.160156 3.160156-3.792969 7.589844 2.578126 3.859375c3.488281 5.214844 5.871093 10.972657 7.09375 17.109375l.914062 4.554688 8.03125 2.679687v4.46875l-8.03125 2.671875-.914062 4.554688c-1.222657 6.128906-3.613282 11.878906-7.09375 17.109375l-2.578126 3.859375 3.792969 7.582031-3.160156 3.167969-7.574219-3.800782-3.867187 2.578126c-5.222657 3.488281-10.980469 5.863281-17.109375 7.09375zm0 0\"></path><path d=\"m104 72c-17.648438 0-32 14.351562-32 32s14.351562 32 32 32 32-14.351562 32-32-14.351562-32-32-32zm0 48c-8.824219 0-16-7.175781-16-16s7.175781-16 16-16 16 7.175781 16 16-7.175781 16-16 16zm0 0\"></path><path d=\"m160 248v-40h48v-208h-208v208h106.664062zm-144-232h176v176h-48v24l-32-24h-96zm0 0\"></path><path d=\"m0 272h16v16h-16zm0 0\"></path><path d=\"m32 272h16v16h-16zm0 0\"></path><path d=\"m64 272h16v16h-16zm0 0\"></path><path d=\"m32 304h16v16h-16zm0 0\"></path><path d=\"m64 304h16v16h-16zm0 0\"></path><path d=\"m0 480h16v16h-16zm0 0\"></path><path d=\"m32 480h16v16h-16zm0 0\"></path><path d=\"m64 480h16v16h-16zm0 0\"></path><path d=\"m32 448h16v16h-16zm0 0\"></path><path d=\"m64 448h16v16h-16zm0 0\"></path></svg>				\n									<h5>\n							fokus på kvalitet og detaljer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m469.12 408.93-67.26-33.63v-22.13c10.71-7.69 18.6-19.07 21.78-32.27h5.28c8.81 0 15.98-7.17 15.98-15.98v-5.29c0-6.35-3.74-11.84-9.12-14.41 5.19-18.64-1.65-39.76-19.44-59.78-12.58-14.16-30.67-22.27-49.62-22.27-18.93 0-37.01 8.12-49.59 22.27-13.38 15.05-20.95 41.01-14.03 59.62-5.56 2.5-9.45 8.09-9.45 14.57v5.29c0 8.81 7.17 15.98 15.98 15.98h5.55c3.16 13.09 10.94 24.39 21.51 32.08v22.32l-67.26 33.63c-16.7 5.87-27.89 21.6-27.89 39.28v41.63c0 3.31 2.69 6 6 6h243.46c3.31 0 6-2.69 6-6v-41.63c0-17.68-11.19-33.41-27.88-39.28zm-62.24-17.7-15.83 27.66-13.29-13.29 19.29-19.29zm-37.61 5.88-20.59-20.58v-16.91c6.41 2.57 13.4 4.01 20.72 4.01 7.22 0 14.11-1.39 20.45-3.9v16.8zm63.63-97.48v5.29c0 2.16-1.82 3.98-3.98 3.98h-3.74c.01-.36.03-.71.03-1.07v-12.18h3.71c2.15-.01 3.98 1.82 3.98 3.98zm-119.29 8.2v1.07h-3.98c-2.16 0-3.98-1.82-3.98-3.98v-5.29c0-2.16 1.82-3.98 3.98-3.98l3.98.22zm1.95-24.19c-7.33-13.69-.89-37.39 10.53-50.24 10.31-11.6 25.12-18.25 40.63-18.25 15.52 0 30.34 6.65 40.65 18.25 8.43 9.48 21.3 27.59 17.4 46.39-5.66-.35-10.67-2.55-14.4-6.36-5.37-5.49-7.72-14-6.63-23.94.29-2.62-1.17-5.13-3.6-6.17s-5.25-.37-6.95 1.65c-19.33 22.92-45.95 36.76-73.9 38.68h-3.73zm10.05 24.19v-12.73c24.57-2.92 47.92-14.05 66.73-31.8 1.43 7.26 4.63 13.6 9.45 18.52 3.27 3.35 7.14 5.89 11.41 7.58v18.42c0 24.15-19.65 43.8-43.8 43.8s-43.79-19.64-43.79-43.79zm15.89 78.48 19.29 19.29-13.29 13.29-15.84-27.66zm3.22 97.53h-39.42v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.76v-35.63c0-12.68 8.1-23.95 20.15-28.05.26-.09.51-.19.75-.31l46.47-23.23 20.07 35.06c.93 1.62 2.56 2.72 4.41 2.97.27.04.53.05.79.05 1.58 0 3.11-.62 4.24-1.76l.14-.14zm12.08 0 7.41-64.69 5.06-5.06 4.84 4.84 7.86 64.92h-25.17zm128.2 0h-39.76v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.18l-6.2-51.17.25.25c1.13 1.13 2.66 1.76 4.24 1.76.26 0 .53-.02.79-.05 1.85-.25 3.48-1.34 4.41-2.97l20.07-35.06 46.47 23.23c.24.12.49.23.75.31 12.05 4.1 20.15 15.38 20.15 28.05v35.65zm-67.04-346.65h-10.84l28.38 39.84 28.38-39.84h-10.84c-3.31 0-6-2.69-6-6v-64.58h-98.7c-3.31 0-6-2.69-6-6s2.69-6 6-6h104.7c3.31 0 6 2.69 6 6v64.58h16.48c2.25 0 4.3 1.25 5.33 3.25s.86 4.4-.45 6.23l-40.02 56.18c-1.13 1.58-2.95 2.52-4.89 2.52s-3.76-.94-4.89-2.52l-40.02-56.18c-1.3-1.83-1.48-4.23-.45-6.23s3.09-3.25 5.33-3.25h16.48v-23.5h-65.38c-3.31 0-6-2.69-6-6s2.69-6 6-6h71.38c3.31 0 6 2.69 6 6v35.5c.02 3.31-2.67 6-5.98 6zm-118.44 50.65v-133.26c0-21.18-17.23-38.41-38.41-38.41h-207.7c-21.18-.01-38.41 17.23-38.41 38.41v133.26c0 21.18 17.23 38.41 38.41 38.41h105.8l64.8 55.11c1.11.94 2.49 1.43 3.89 1.43.85 0 1.71-.18 2.52-.55 2.12-.98 3.48-3.11 3.48-5.45v-50.54h27.21c21.18 0 38.41-17.23 38.41-38.41zm-71.62 26.41c-3.31 0-6 2.69-6 6v43.56l-56.59-48.13c-1.08-.92-2.46-1.43-3.89-1.43h-108.01c-14.56 0-26.41-11.85-26.41-26.41v-133.26c0-14.56 11.85-26.41 26.41-26.41h207.69c14.56 0 26.41 11.85 26.41 26.41v133.26c0 14.56-11.85 26.41-26.41 26.41zm-156.34-87.87h56.97c3.31 0 6-2.69 6-6v-39.2l8.55-8.55c2.34-2.34 2.34-6.14 0-8.49-2.34-2.34-6.14-2.34-8.48 0l-.7.7c-.98-1.97-3.01-3.32-5.36-3.32h-56.98c-3.31 0-6 2.69-6 6v52.85c0 3.32 2.69 6.01 6 6.01zm6-52.86h44.97v2.69l-18.16 18.16-8.84-8.84c-2.34-2.34-6.14-2.34-8.49 0-2.34 2.34-2.34 6.14 0 8.49l13.08 13.08c1.17 1.17 2.71 1.76 4.24 1.76s3.07-.59 4.24-1.76l13.92-13.92v21.2h-44.96zm173.62 3.08c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 31.92c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 36.52c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.68 5.99 6zm0 31.92c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.69 5.99 6zm-119.36 165.01h10.84l-28.38-39.84-28.38 39.84h10.84c3.31 0 6 2.69 6 6v64.58h98.7c3.31 0 6 2.69 6 6s-2.69 6-6 6h-104.69c-3.31 0-6-2.69-6-6v-64.58h-16.48c-2.25 0-4.3-1.25-5.33-3.25s-.86-4.4.45-6.23l40.02-56.18c1.13-1.58 2.95-2.52 4.89-2.52s3.76.94 4.89 2.52l40.02 56.18c1.3 1.83 1.48 4.23.45 6.23s-3.09 3.25-5.33 3.25h-16.48v23.5h65.38c3.31 0 6 2.69 6 6s-2.69 6-6 6h-71.38c-3.31 0-6-2.69-6-6v-35.5c-.03-3.31 2.66-6 5.97-6z\"></path></svg>				\n									<h5>\n							ærlig<br> rådgivning						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 510 510\"><path d=\"m192.036 385.845c-4.787-46.972-19.459-64.336-30.658-82.352-8.672-13.951-15.5-28.245-15.5-54.252 0-60.242 48.865-109.109 109.135-109.109 60.242 0 109.109 48.866 109.109 109.109 0 26.007-6.828 40.301-15.5 54.252-11.199 18.016-25.871 35.38-30.658 82.352 9.985 2.864 17.345 12.101 17.345 22.975v36.44c0 13.109-10.747 23.866-23.893 23.866h-10.334v9.945c0 12.588-10.341 22.929-22.93 22.929h-46.304c-12.589 0-22.93-10.341-22.93-22.929v-9.945h-10.334c-13.146 0-23.893-10.757-23.893-23.866v-36.44c0-10.874 7.36-20.111 17.345-22.975zm111.948-.917c4.199-42.194 15.78-62.332 26.488-79.049 10.147-15.842 19.65-28.207 19.65-56.638 0-52.513-42.597-95.109-95.109-95.109-52.537 0-95.135 42.596-95.135 95.109 0 28.431 9.503 40.796 19.65 56.638 10.708 16.717 22.289 36.855 26.488 79.049zm2.554-78.61c-1.175 13.701-11.985 24.191-24.783 24.191-13.527 0-24.862-12.086-24.862-26.673v-99.328c0-14.12 11.335-26.673 24.862-26.673 11.309 0 21.031 8.139 23.975 19.497 9.12 3.904 15.688 13.438 15.688 24.78 0 1.153-.068 2.289-.201 3.403 5.078 5.326 8.283 12.802 8.283 21.117 0 6.39-1.889 12.262-5.06 17.053 1.996 4.099 3.13 8.773 3.13 13.76 0 14.1-9.065 25.697-21.032 28.873zm-16.452-109.977c-1.964-2.729-4.916-4.506-8.331-4.506-6.192 0-10.862 6.21-10.862 12.673v99.328c0 6.677 4.67 12.673 10.862 12.673 5.516 0 9.822-4.614 10.717-10.425-4.709-1.416-8.923-4.144-12.279-7.814-2.607-2.852-2.409-7.283.443-9.89 2.851-2.607 7.282-2.408 9.889.443 2.416 2.642 5.72 4.356 9.402 4.356 7.733 0 13.643-7.218 13.643-15.734s-5.91-15.734-13.643-15.734c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7 5.352 0 10.388 1.655 14.658 4.533.593-1.743.915-3.634.915-5.612 0-2.11-.366-4.128-1.036-5.972-.769.858-1.588 1.66-2.453 2.397-2.94 2.507-7.361 2.156-9.869-.784-2.507-2.939-2.155-7.361.784-9.868 2.773-2.365 4.492-6.122 4.492-10.293 0-6.072-3.705-11.374-8.898-12.467-.154-.023-.307-.052-.458-.085-.499-.08-1.01-.121-1.532-.121-2.947 0-5.591 1.389-7.515 3.525-2.585 2.87-7.015 3.101-9.886.515-2.87-2.586-3.101-7.015-.515-9.886 3.111-3.453 7.059-5.988 11.472-7.252zm-104.526 67.344c-3.171-4.791-5.06-10.663-5.06-17.053 0-8.307 3.198-15.777 8.284-21.104-.133-1.118-.202-2.258-.202-3.416 0-11.354 6.582-20.897 15.717-24.792 2.948-11.354 12.67-19.485 23.946-19.485 13.56 0 24.888 12.555 24.888 26.673v99.328c0 14.585-11.328 26.673-24.888 26.673-12.765 0-23.578-10.484-24.757-24.184-11.98-3.166-21.058-14.769-21.058-28.88 0-4.987 1.134-9.661 3.13-13.76zm9.982-23.036c-.675 1.847-1.042 3.869-1.042 5.983 0 1.978.322 3.869.915 5.612 4.27-2.878 9.306-4.533 14.658-4.533 3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7-7.733 0-13.643 7.218-13.643 15.734s5.91 15.734 13.643 15.734c3.682 0 6.986-1.714 9.402-4.356 2.607-2.851 7.038-3.05 9.889-.443 2.852 2.607 3.05 7.038.443 9.89-3.35 3.664-7.556 6.389-12.255 7.807.891 5.813 5.192 10.432 10.693 10.432 6.21 0 10.888-5.993 10.888-12.673v-99.328c0-6.466-4.678-12.673-10.888-12.673-3.404 0-6.349 1.777-8.309 4.507 4.421 1.264 8.367 3.8 11.476 7.251 2.586 2.871 2.355 7.3-.516 9.886-2.87 2.586-7.3 2.355-9.886-.515-1.926-2.138-4.574-3.525-7.54-3.525-.493 0-.976.037-1.448.108-.196.045-.395.082-.596.11-5.165 1.118-8.844 6.404-8.844 12.455 0 1.243.153 2.45.442 3.594.101.284.183.572.246.862.748 2.326 2.071 4.346 3.814 5.823 2.947 2.498 3.311 6.919.813 9.866s-6.919 3.312-9.866.814c-.878-.745-1.71-1.554-2.489-2.422zm3.042 158.279c-5.442 0-9.893 4.451-9.893 9.892v36.44c0 5.423 4.454 9.866 9.893 9.866h17.334c3.866 0 7 3.134 7 7v16.945c0 4.902 4.027 8.929 8.93 8.929h46.304c4.903 0 8.93-4.027 8.93-8.929v-16.945c0-3.866 3.134-7 7-7h17.334c5.439 0 9.893-4.443 9.893-9.866v-36.44c0-5.441-4.451-9.892-9.893-9.892zm63.416-314.093 2.907-5.412c1.828-3.403 6.075-4.683 9.479-2.854 3.403 1.828 4.682 6.075 2.854 9.479l-16.073 29.925c-1.22 2.271-3.589 3.688-6.167 3.688s-4.947-1.417-6.167-3.688l-16.073-29.925c-1.828-3.404-.549-7.651 2.854-9.479 3.404-1.829 7.651-.549 9.479 2.854l2.907 5.412v-69.835c0-3.863 3.137-7 7-7s7 3.137 7 7zm-132.198 54.758-49.381-49.381c-2.732-2.731-2.732-7.167 0-9.899s7.168-2.732 9.9 0l49.38 49.38-1.771-5.881c-1.114-3.7.985-7.608 4.684-8.722 3.7-1.114 7.607.985 8.721 4.685l9.796 32.526c.743 2.468.069 5.145-1.753 6.968-1.823 1.823-4.5 2.496-6.969 1.753l-32.526-9.795c-3.699-1.114-5.798-5.022-4.684-8.721s5.022-5.798 8.721-4.684zm-44.859 122.299h-69.835c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7h69.835l-5.412-2.907c-3.403-1.828-4.682-6.076-2.854-9.479 1.828-3.404 6.075-4.683 9.479-2.855l29.926 16.074c2.271 1.22 3.688 3.589 3.688 6.167 0 2.577-1.417 4.947-3.688 6.166l-29.926 16.074c-3.404 1.828-7.651.549-9.479-2.855-1.828-3.403-.549-7.651 2.854-9.479zm54.758 118.198-49.38 49.38c-2.732 2.732-7.168 2.732-9.9 0s-2.732-7.167 0-9.899l49.381-49.381-5.882 1.772c-3.699 1.114-7.607-.985-8.721-4.685-1.114-3.699.985-7.607 4.684-8.721l32.526-9.795c2.469-.743 5.146-.07 6.969 1.753 1.822 1.823 2.496 4.5 1.753 6.968l-9.796 32.527c-1.114 3.699-5.021 5.798-8.721 4.684-3.699-1.114-5.798-5.022-4.684-8.721zm240.497-240.497 5.882-1.771c3.699-1.114 7.607.985 8.721 4.684s-.985 7.607-4.684 8.721l-32.526 9.795c-2.469.743-5.146.07-6.969-1.753-1.822-1.823-2.496-4.5-1.753-6.968l9.796-32.526c1.114-3.7 5.021-5.799 8.721-4.685 3.699 1.114 5.798 5.022 4.684 8.722l-1.771 5.881 49.38-49.38c2.732-2.732 7.168-2.732 9.9 0s2.732 7.168 0 9.899zm44.859 122.299 5.412 2.906c3.403 1.828 4.682 6.076 2.854 9.479-1.828 3.404-6.075 4.683-9.479 2.855l-29.926-16.074c-2.271-1.219-3.688-3.589-3.688-6.166 0-2.578 1.417-4.947 3.688-6.167l29.926-16.074c3.404-1.828 7.651-.549 9.479 2.855 1.828 3.403.549 7.651-2.854 9.479l-5.412 2.907h69.835c3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7zm-54.758 118.198 1.771 5.882c1.114 3.699-.985 7.607-4.684 8.721-3.7 1.114-7.607-.985-8.721-4.684l-9.796-32.527c-.743-2.468-.069-5.145 1.753-6.968 1.823-1.823 4.5-2.496 6.969-1.753l32.526 9.795c3.699 1.114 5.798 5.022 4.684 8.721-1.114 3.7-5.022 5.799-8.721 4.685l-5.882-1.772 49.381 49.381c2.732 2.732 2.732 7.167 0 9.899s-7.168 2.732-9.9 0z\"></path></svg>				\n									<h5>\n							gennemtænkte løsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"outline\"><path d=\"M486.41,144A28,28,0,0,0,472,92H349.123l5.457-21.828a48.513,48.513,0,0,0-12.848-46.153A41.035,41.035,0,0,0,312.609,12H308a8.009,8.009,0,0,0-8,8V47.413l-19.233,64.112A17.376,17.376,0,0,1,268,123.539V112a4,4,0,0,0-4-4H152a4,4,0,0,0-4,4v72a4,4,0,0,0,8,0V116h72V276H156V248a4,4,0,0,0-8,0v32a4,4,0,0,0,4,4H264a4,4,0,0,0,4-4V268.5h11.168A37.07,37.07,0,0,1,305.092,279a45.025,45.025,0,0,0,31.48,12.752L440,292a27.987,27.987,0,0,0,19.369-48.2,27.987,27.987,0,0,0,16-48A28,28,0,0,0,486.41,144ZM260,276H236V116h24Zm212-88H396a4,4,0,0,0,0,8h60a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h40a20,20,0,0,1,.01,40l-103.428-.25a37.07,37.07,0,0,1-25.924-10.5,45.031,45.031,0,0,0-31.49-12.752H268V131.686a25.317,25.317,0,0,0,20.429-17.862l19.4-64.675A4,4,0,0,0,308,48V20h4.609a33.082,33.082,0,0,1,23.481,9.69,40.507,40.507,0,0,1,10.728,38.541l-6.7,26.8A4,4,0,0,0,344,100H472a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h72a20,20,0,0,1,0,40Z\"></path><path d=\"M194.5,183.243l-1.9-.217a4,4,0,0,0-4.169,2.491L184.29,195.9H135.278l-3.539-9.317a4,4,0,0,0-7.478,2.84l2.459,6.477h-8.474L68.452,156.872a4,4,0,1,0-4.935,6.3L77.6,174.209,56.961,194.48l-6.636-5.491a4,4,0,1,0-5.1,6.163L87.219,229.9a44.1,44.1,0,0,0,28.05,10.1H212a8.009,8.009,0,0,0,8-8V203.9a8.009,8.009,0,0,0-8-8h-8v-2.01A10.708,10.708,0,0,0,194.5,183.243ZM212,203.9V232H115.269a36.081,36.081,0,0,1-22.951-8.264l-29.16-24.128,20.8-20.422L114.4,203.045a4,4,0,0,0,2.468.852H187a4,4,0,0,0,3.715-2.517l3.929-9.843a2.712,2.712,0,0,1,1.356,2.35v6.01a4,4,0,0,0,4,4Z\"></path><path d=\"M223.084,484.672,200.87,469.863V346.36A44.1,44.1,0,0,0,195.327,325l-17.183-30.94a4,4,0,0,0-7,3.884l17.184,30.94a36.073,36.073,0,0,1,4.537,17.478V468H164.333a4,4,0,1,0,0,8h31.321l12,8H152.865V352a4,4,0,0,0-.358-1.655l-25.454-56A4,4,0,0,0,123.411,292H114.2a4,4,0,0,0-3.945,4.658l8.862,53.175a36.016,36.016,0,0,1-1.951,18.949L78.642,468H48.333a4,4,0,1,0,0,8H80.377L92,484H32.088L76.63,361.366a4.017,4.017,0,0,0,.183-2.044L61.1,268H136a4,4,0,0,0,0-8H59.233L30.555,173.966A19.723,19.723,0,0,1,49.27,148H76a12,12,0,0,0,24,0h15.2a21.975,21.975,0,0,1,8.395,1.652l10.889,4.458a4,4,0,1,0,3.032-7.4L126.63,142.25A29.938,29.938,0,0,0,115.2,140H100v-4.527A16.014,16.014,0,0,0,112,120V103.473A16.014,16.014,0,0,0,124,88V80a4,4,0,0,0-4-4H90A22.025,22.025,0,0,0,68,98v18a12.02,12.02,0,0,0,8,11.314V140H49.27a27.723,27.723,0,0,0-26.305,36.5l29.493,88.482,16.29,94.655-46.128,127A4,4,0,0,0,26.38,492h78.485a4,4,0,0,0,2.268-7.3L86.3,470.368l38.318-98.69a44.018,44.018,0,0,0,2.385-23.16L118.921,300h1.914l24.03,52.867V488a4,4,0,0,0,4,4h72a4,4,0,0,0,2.219-7.328ZM76,98A14.015,14.015,0,0,1,90,84h26v4a8.009,8.009,0,0,1-8,8H92a4,4,0,0,0-4,4,11.962,11.962,0,0,1-1.53,5.881A12.044,12.044,0,0,0,76,104.686Zm4,14a3.981,3.981,0,0,1,3.407,1.9,4,4,0,0,0,5.956.975c.207-.171.7-.648.7-.648.032-.028.061-.057.09-.087A19.907,19.907,0,0,0,95.6,104H104v16a8.009,8.009,0,0,1-8,8,12.133,12.133,0,0,1-2.681-.3,4,4,0,1,0-1.775,7.8c.151.035.3.06.456.091V148a4,4,0,1,1-8,0V124a4,4,0,0,0-4-4,4,4,0,0,1,0-8Z\"></path></g></svg>				\n									<h5>\n							arbejde udført med ansvar						\n					</h5>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 12:50:25', '2026-01-26 12:50:25', '', 10, 'https://mrarif.me/cpnordic/?p=495', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(496, 1, '2026-01-26 12:50:25', '2026-01-26 12:50:25', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>					\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle ANMELDELSER\n					</a>\n					<h2>HVORFOR VÆLGE CP NORDIC ApS?</h2>		<p>Når du vælger CP NORDIC ApS, får du:</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 450 450\" width=\"512\"><g><g><path d=\"m225 165.2c-25.9 0-48.9-18.8-53.3-45.2-2.4-14.2.9-28.6 9.3-40.3 8.4-11.8 20.9-19.5 35.1-21.9 29.4-4.9 57.3 15 62.2 44.5 4.9 29.4-15 57.3-44.4 62.2-3 .5-6 .7-8.9.7zm-7.6-99.8c-12.2 2-22.9 8.7-30.1 18.8s-10.1 22.4-8 34.6c3.8 22.7 23.5 38.8 45.7 38.8 2.5 0 5.1-.2 7.6-.6 25.2-4.2 42.3-28.1 38.1-53.4s-28.1-42.4-53.3-38.2z\"></path><path d=\"m255.2 115c-2.1 0-3.8-1.7-3.8-3.8 0-14.6-11.8-26.4-26.4-26.4-2.1 0-3.8-1.7-3.8-3.8s1.7-3.8 3.8-3.8c18.8 0 34.1 15.3 34.1 34.1 0 2-1.8 3.7-3.9 3.7z\"></path><path d=\"m236.1 203h-22.2c-2.1 0-3.8-1.7-3.8-3.8v-14.1c-3.1-.6-6.1-1.4-9.1-2.4l-7 12.2c-1.1 1.8-3.4 2.5-5.3 1.4l-19.2-11.1c-.9-.5-1.5-1.4-1.8-2.3-.3-1-.1-2 .4-2.9l7-12.1c-2.4-2.1-4.6-4.3-6.7-6.6l-12.1 7c-1.8 1.1-4.2.4-5.2-1.4l-11.1-19.2c-1.1-1.8-.4-4.2 1.4-5.2l11.9-6.8c-1-3-1.9-6.1-2.6-9.3h-13.7c-2.1 0-3.8-1.7-3.8-3.8v-22.2c0-2.1 1.7-3.8 3.8-3.8h13.4c.6-3.2 1.4-6.4 2.4-9.5l-11.5-6.6c-1.8-1.1-2.5-3.4-1.4-5.3l11.1-19.6c.5-.9 1.4-1.5 2.3-1.8s2-.1 2.9.4l11.3 6.6c2.2-2.5 4.5-4.8 7-7l-6.5-11.3c-.5-.9-.6-1.9-.4-2.9.3-1 .9-1.8 1.8-2.3l19.2-11.1c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l6.4 11.2c3.1-1.1 6.4-1.9 9.7-2.6v-13c0-2.1 1.7-3.8 3.8-3.8h22.2c2.1 0 3.8 1.7 3.8 3.8v12.8c3.3.7 6.5 1.5 9.7 2.6l6.5-11.2c.5-.9 1.4-1.5 2.3-1.8 1-.3 2-.1 2.9.4l19.2 11.1c.9.5 1.5 1.3 1.8 2.3s.1 2-.4 2.9l-6.5 11.3c2.5 2.2 4.8 4.5 7 7.1l11.3-6.6c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l11.1 19.2c1.1 1.8.4 4.2-1.4 5.3l-11.5 6.6c1 3.1 1.8 6.3 2.5 9.5h13.6c2.1 0 3.8 1.7 3.8 3.8v22.2c0 2.1-1.7 3.8-3.8 3.8h-13.6c-.6 3.1-1.5 6.2-2.5 9.3l11.9 6.8c1.8 1.1 2.5 3.4 1.4 5.2l-11.2 19.5c-1.1 1.8-3.4 2.5-5.2 1.4l-12-7c-2.1 2.4-4.4 4.6-6.7 6.6l7 12.1c.5.9.6 1.9.4 2.9s-.9 1.8-1.8 2.3l-19.2 11.1c-1.8 1.1-4.2.4-5.2-1.4l-7-12.2c-3 1-6 1.8-9.1 2.4v14.1c-.2 2.3-2 4-4.1 4zm-18.4-7.7h14.5v-13.5c0-1.9 1.4-3.5 3.3-3.8 4.7-.7 9.4-2 13.8-3.7 1.8-.7 3.8 0 4.7 1.7l6.7 11.6 12.6-7.3-6.7-11.6c-1-1.6-.5-3.7.9-4.9 3.7-3 7.2-6.4 10.2-10.1 1.2-1.5 3.3-1.8 4.9-.9l11.5 6.6 7.3-12.6-11.3-6.5c-1.6-.9-2.4-3-1.6-4.7 1.8-4.5 3.1-9.2 3.9-14 .3-1.9 1.9-3.2 3.8-3.2h13v-14.6h-12.8c-1.9 0-3.5-1.4-3.8-3.3-.7-4.8-2-9.6-3.7-14.2-.7-1.8 0-3.7 1.7-4.7l10.9-6.3-7.3-12.6-10.8 6.3c-1.6.9-3.7.6-4.9-.9-3.1-3.9-6.6-7.4-10.4-10.6-1.5-1.2-1.9-3.3-.9-4.9l6.2-10.7-12.6-7.3-6.1 10.6c-1 1.6-3 2.3-4.7 1.7-4.6-1.8-9.5-3.1-14.4-3.9-1.9-.3-3.3-1.9-3.3-3.8v-12.2h-14.5v12.3c0 1.9-1.4 3.5-3.3 3.8-5 .8-9.8 2.1-14.4 3.9-1.8.7-3.8 0-4.7-1.7l-6.1-10.6-12.6 7.3 6.2 10.7c.9 1.6.6 3.7-.9 4.9-3.9 3.1-7.4 6.7-10.4 10.6-1.2 1.5-3.3 1.9-4.9.9l-10.8-6.3-7.3 12.6 10.9 6.3c1.6.9 2.3 2.9 1.7 4.7-1.7 4.6-3 9.4-3.7 14.2-.3 1.9-1.9 3.3-3.8 3.3h-12.8v14.5h13c1.9 0 3.5 1.4 3.8 3.2.8 4.8 2.1 9.5 3.9 14 .7 1.8 0 3.8-1.6 4.7l-11.3 6.5 7.3 12.6 11.5-6.6c1.6-.9 3.7-.6 4.9.9 3 3.7 6.5 7.1 10.3 10.1 1.5 1.2 1.9 3.3.9 4.9l-6.7 11.6 12.6 7.3 6.7-11.6c.9-1.6 2.9-2.3 4.7-1.7 4.5 1.7 9.1 2.9 13.8 3.7 1.9.3 3.3 1.9 3.3 3.8z\"></path></g><g><g><g><path d=\"m45.3 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m153.9 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path></g><g><path d=\"m189.3 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.2c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c0 2.1-1.7 3.8-3.8 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m73.3 326.4c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m126 326.4c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m99.7 325.6c-.6 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4s4.1 1.1 4.4 3.2c2.4 16.5 12.3 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m50.2 266.6c-.1 0-.2 0-.3 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.7 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-8.9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.5 2.2zm81.8-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13.1-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.4-.7 2.3-.7z\"></path></g></g></g><g><g><path d=\"m296.1 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m404.7 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path></g><g><path d=\"m440 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.1c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c.2 2.1-1.6 3.8-3.7 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m324 326.3c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m376.7 326.3c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m350.4 325.6c-.5 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4 2.1-.3 4 1.1 4.4 3.2 2.4 16.5 12.4 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m301 266.6c-.1 0-.2 0-.4 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.6 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.4 2.2zm81.7-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.5-.7 2.3-.7z\"></path></g></g></g></g></g></svg>				\n									<h5>\n							et ungt og engageret team						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"496pt\" viewBox=\"0 0 496 496\" width=\"496pt\"><path d=\"m440 328h-28.207031c5.078125-6.703125 8.207031-14.960938 8.207031-24 0-8.824219-7.175781-16-16-16h-12v-19.960938c59.574219-14.445312 104-68.085937 104-132.039062 0-74.992188-61.007812-136-136-136s-136 61.007812-136 136c0 63.953125 44.425781 117.59375 104 132.039062v19.960938h-8.449219c-6.167969 0-12.359375 1.464844-17.886719 4.214844l-50.480468 25.25c-3.320313 1.664062-7.03125 2.535156-10.734375 2.535156h-40.449219v-16h-104v16h56v56h16v-56h16v128h-16v-56h-16v56h-56v16h104v-16h40.449219c3.703125 0 7.414062.871094 10.734375 2.527344l34.488281 17.25c5.519531 2.757812 11.710937 4.222656 17.878906 4.222656h24.449219v24h64v-24h48c13.230469 0 24-10.769531 24-24 0-6.167969-2.40625-11.742188-6.238281-16 3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16 0-13.230469-10.769531-24-24-24zm8 24c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm-208-280c0-66.167969 53.832031-120 120-120s120 53.832031 120 120-53.832031 120-120 120-120-53.832031-120-120zm104 134.976562c5.257812.617188 10.574219 1.023438 16 1.023438s10.742188-.40625 16-1.023438v17.023438h-32zm-40.449219 185.023438c-3.703125 0-7.414062-.871094-10.734375-2.527344l-34.488281-17.25c-5.519531-2.757812-11.710937-4.222656-17.878906-4.222656h-40.449219v-96h40.449219c6.167969 0 12.359375-1.464844 17.886719-4.214844l50.480468-25.25c3.320313-1.664062 7.03125-2.535156 10.734375-2.535156h84.449219c0 13.230469-10.769531 24-24 24h-48.28125l-23.863281 35.808594c-6.101563 9.160156-14.527344 16.589844-24.367188 21.503906-8.753906 4.375-18.542969 6.6875-28.320312 6.6875h-15.167969v16h15.167969c12.246093 0 24.519531-2.894531 35.472656-8.375 12.328125-6.160156 22.878906-15.480469 30.527344-26.945312l6.832031-10.253907v93.574219zm40.449219 24v-136h17.472656c-.898437 2.511719-1.472656 5.183594-1.472656 8 0 6.167969 2.40625 11.742188 6.238281 16-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16 0 10.414062 6.710938 19.214844 16 22.527344v9.472656zm96-24h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8s-3.59375 8-8 8zm0 0\"></path><path d=\"m394.878906 73.007812-7.757812 13.984376c17.816406 9.878906 28.878906 28.664062 28.878906 49.007812h16c0-26.160156-14.222656-50.296875-37.121094-62.992188zm0 0\"></path><path d=\"m360 80c4.734375 0 9.449219.59375 14.007812 1.769531l3.976563-15.503906c-5.855469-1.496094-11.90625-2.265625-17.984375-2.265625zm0 0\"></path><path d=\"m360 48c48.519531 0 88 39.480469 88 88 0 20.753906-7.398438 40.910156-20.832031 56.785156l12.207031 10.34375c15.882812-18.761718 24.625-42.601562 24.625-67.128906 0-57.34375-46.65625-104-104-104-24.527344 0-48.367188 8.753906-67.128906 24.632812l10.335937 12.199219c15.871094-13.433593 36.039063-20.832031 56.792969-20.832031zm0 0\"></path><path d=\"m427.128906 215.367188-10.335937-12.199219c-15.871094 13.433593-36.039063 20.832031-56.792969 20.832031-48.519531 0-88-39.480469-88-88 0-20.753906 7.398438-40.910156 20.832031-56.785156l-12.207031-10.34375c-15.882812 18.761718-24.625 42.601562-24.625 67.128906 0 57.34375 46.65625 104 104 104 24.527344 0 48.367188-8.753906 67.128906-24.632812zm0 0\"></path><path d=\"m121.214844 165.640625c4.953125-1.375 9.695312-3.34375 14.183594-5.878906l9.769531 4.886719 19.472656-19.480469-4.886719-9.769531c2.535156-4.496094 4.503906-9.230469 5.886719-14.183594l10.359375-3.445313v-27.53125l-10.351562-3.453125c-1.375-4.953125-3.34375-9.707031-5.886719-14.183594l4.886719-9.777343-19.472657-19.472657-9.769531 4.886719c-4.484375-2.535156-9.230469-4.503906-14.183594-5.878906l-3.453125-10.359375h-27.539062l-3.445313 10.359375c-4.953125 1.375-9.695312 3.34375-14.183594 5.878906l-9.777343-4.886719-19.472657 19.472657 4.886719 9.777343c-2.535156 4.488282-4.503906 9.230469-5.886719 14.183594l-10.351562 3.445313v27.53125l10.351562 3.453125c1.375 4.953125 3.34375 9.695312 5.886719 14.183594l-4.886719 9.769531 19.472657 19.480469 9.769531-4.886719c4.484375 2.535156 9.230469 4.503906 14.183594 5.878906l3.453125 10.359375h27.539062zm-12.304688-13.679687-2.679687 8.039062h-4.460938l-2.679687-8.039062-4.554688-.90625c-6.128906-1.222657-11.878906-3.605469-17.109375-7.09375l-3.867187-2.578126-7.574219 3.800782-3.160156-3.167969 3.792969-7.582031-2.578126-3.859375c-3.488281-5.222657-5.871093-10.980469-7.09375-17.109375l-.914062-4.554688-8.03125-2.679687v-4.46875l8.03125-2.671875.914062-4.554688c1.222657-6.136718 3.613282-11.886718 7.09375-17.109375l2.578126-3.859375-3.792969-7.589844 3.160156-3.160156 7.574219 3.800782 3.867187-2.578126c5.222657-3.488281 10.980469-5.863281 17.109375-7.09375l4.554688-.90625 2.679687-8.039062h4.460938l2.679687 8.039062 4.554688.90625c6.128906 1.222657 11.878906 3.605469 17.109375 7.09375l3.867187 2.578126 7.574219-3.800782 3.160156 3.160156-3.792969 7.589844 2.578126 3.859375c3.488281 5.214844 5.871093 10.972657 7.09375 17.109375l.914062 4.554688 8.03125 2.679687v4.46875l-8.03125 2.671875-.914062 4.554688c-1.222657 6.128906-3.613282 11.878906-7.09375 17.109375l-2.578126 3.859375 3.792969 7.582031-3.160156 3.167969-7.574219-3.800782-3.867187 2.578126c-5.222657 3.488281-10.980469 5.863281-17.109375 7.09375zm0 0\"></path><path d=\"m104 72c-17.648438 0-32 14.351562-32 32s14.351562 32 32 32 32-14.351562 32-32-14.351562-32-32-32zm0 48c-8.824219 0-16-7.175781-16-16s7.175781-16 16-16 16 7.175781 16 16-7.175781 16-16 16zm0 0\"></path><path d=\"m160 248v-40h48v-208h-208v208h106.664062zm-144-232h176v176h-48v24l-32-24h-96zm0 0\"></path><path d=\"m0 272h16v16h-16zm0 0\"></path><path d=\"m32 272h16v16h-16zm0 0\"></path><path d=\"m64 272h16v16h-16zm0 0\"></path><path d=\"m32 304h16v16h-16zm0 0\"></path><path d=\"m64 304h16v16h-16zm0 0\"></path><path d=\"m0 480h16v16h-16zm0 0\"></path><path d=\"m32 480h16v16h-16zm0 0\"></path><path d=\"m64 480h16v16h-16zm0 0\"></path><path d=\"m32 448h16v16h-16zm0 0\"></path><path d=\"m64 448h16v16h-16zm0 0\"></path></svg>				\n									<h5>\n							fokus på kvalitet og detaljer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m469.12 408.93-67.26-33.63v-22.13c10.71-7.69 18.6-19.07 21.78-32.27h5.28c8.81 0 15.98-7.17 15.98-15.98v-5.29c0-6.35-3.74-11.84-9.12-14.41 5.19-18.64-1.65-39.76-19.44-59.78-12.58-14.16-30.67-22.27-49.62-22.27-18.93 0-37.01 8.12-49.59 22.27-13.38 15.05-20.95 41.01-14.03 59.62-5.56 2.5-9.45 8.09-9.45 14.57v5.29c0 8.81 7.17 15.98 15.98 15.98h5.55c3.16 13.09 10.94 24.39 21.51 32.08v22.32l-67.26 33.63c-16.7 5.87-27.89 21.6-27.89 39.28v41.63c0 3.31 2.69 6 6 6h243.46c3.31 0 6-2.69 6-6v-41.63c0-17.68-11.19-33.41-27.88-39.28zm-62.24-17.7-15.83 27.66-13.29-13.29 19.29-19.29zm-37.61 5.88-20.59-20.58v-16.91c6.41 2.57 13.4 4.01 20.72 4.01 7.22 0 14.11-1.39 20.45-3.9v16.8zm63.63-97.48v5.29c0 2.16-1.82 3.98-3.98 3.98h-3.74c.01-.36.03-.71.03-1.07v-12.18h3.71c2.15-.01 3.98 1.82 3.98 3.98zm-119.29 8.2v1.07h-3.98c-2.16 0-3.98-1.82-3.98-3.98v-5.29c0-2.16 1.82-3.98 3.98-3.98l3.98.22zm1.95-24.19c-7.33-13.69-.89-37.39 10.53-50.24 10.31-11.6 25.12-18.25 40.63-18.25 15.52 0 30.34 6.65 40.65 18.25 8.43 9.48 21.3 27.59 17.4 46.39-5.66-.35-10.67-2.55-14.4-6.36-5.37-5.49-7.72-14-6.63-23.94.29-2.62-1.17-5.13-3.6-6.17s-5.25-.37-6.95 1.65c-19.33 22.92-45.95 36.76-73.9 38.68h-3.73zm10.05 24.19v-12.73c24.57-2.92 47.92-14.05 66.73-31.8 1.43 7.26 4.63 13.6 9.45 18.52 3.27 3.35 7.14 5.89 11.41 7.58v18.42c0 24.15-19.65 43.8-43.8 43.8s-43.79-19.64-43.79-43.79zm15.89 78.48 19.29 19.29-13.29 13.29-15.84-27.66zm3.22 97.53h-39.42v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.76v-35.63c0-12.68 8.1-23.95 20.15-28.05.26-.09.51-.19.75-.31l46.47-23.23 20.07 35.06c.93 1.62 2.56 2.72 4.41 2.97.27.04.53.05.79.05 1.58 0 3.11-.62 4.24-1.76l.14-.14zm12.08 0 7.41-64.69 5.06-5.06 4.84 4.84 7.86 64.92h-25.17zm128.2 0h-39.76v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.18l-6.2-51.17.25.25c1.13 1.13 2.66 1.76 4.24 1.76.26 0 .53-.02.79-.05 1.85-.25 3.48-1.34 4.41-2.97l20.07-35.06 46.47 23.23c.24.12.49.23.75.31 12.05 4.1 20.15 15.38 20.15 28.05v35.65zm-67.04-346.65h-10.84l28.38 39.84 28.38-39.84h-10.84c-3.31 0-6-2.69-6-6v-64.58h-98.7c-3.31 0-6-2.69-6-6s2.69-6 6-6h104.7c3.31 0 6 2.69 6 6v64.58h16.48c2.25 0 4.3 1.25 5.33 3.25s.86 4.4-.45 6.23l-40.02 56.18c-1.13 1.58-2.95 2.52-4.89 2.52s-3.76-.94-4.89-2.52l-40.02-56.18c-1.3-1.83-1.48-4.23-.45-6.23s3.09-3.25 5.33-3.25h16.48v-23.5h-65.38c-3.31 0-6-2.69-6-6s2.69-6 6-6h71.38c3.31 0 6 2.69 6 6v35.5c.02 3.31-2.67 6-5.98 6zm-118.44 50.65v-133.26c0-21.18-17.23-38.41-38.41-38.41h-207.7c-21.18-.01-38.41 17.23-38.41 38.41v133.26c0 21.18 17.23 38.41 38.41 38.41h105.8l64.8 55.11c1.11.94 2.49 1.43 3.89 1.43.85 0 1.71-.18 2.52-.55 2.12-.98 3.48-3.11 3.48-5.45v-50.54h27.21c21.18 0 38.41-17.23 38.41-38.41zm-71.62 26.41c-3.31 0-6 2.69-6 6v43.56l-56.59-48.13c-1.08-.92-2.46-1.43-3.89-1.43h-108.01c-14.56 0-26.41-11.85-26.41-26.41v-133.26c0-14.56 11.85-26.41 26.41-26.41h207.69c14.56 0 26.41 11.85 26.41 26.41v133.26c0 14.56-11.85 26.41-26.41 26.41zm-156.34-87.87h56.97c3.31 0 6-2.69 6-6v-39.2l8.55-8.55c2.34-2.34 2.34-6.14 0-8.49-2.34-2.34-6.14-2.34-8.48 0l-.7.7c-.98-1.97-3.01-3.32-5.36-3.32h-56.98c-3.31 0-6 2.69-6 6v52.85c0 3.32 2.69 6.01 6 6.01zm6-52.86h44.97v2.69l-18.16 18.16-8.84-8.84c-2.34-2.34-6.14-2.34-8.49 0-2.34 2.34-2.34 6.14 0 8.49l13.08 13.08c1.17 1.17 2.71 1.76 4.24 1.76s3.07-.59 4.24-1.76l13.92-13.92v21.2h-44.96zm173.62 3.08c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 31.92c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 36.52c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.68 5.99 6zm0 31.92c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.69 5.99 6zm-119.36 165.01h10.84l-28.38-39.84-28.38 39.84h10.84c3.31 0 6 2.69 6 6v64.58h98.7c3.31 0 6 2.69 6 6s-2.69 6-6 6h-104.69c-3.31 0-6-2.69-6-6v-64.58h-16.48c-2.25 0-4.3-1.25-5.33-3.25s-.86-4.4.45-6.23l40.02-56.18c1.13-1.58 2.95-2.52 4.89-2.52s3.76.94 4.89 2.52l40.02 56.18c1.3 1.83 1.48 4.23.45 6.23s-3.09 3.25-5.33 3.25h-16.48v23.5h65.38c3.31 0 6 2.69 6 6s-2.69 6-6 6h-71.38c-3.31 0-6-2.69-6-6v-35.5c-.03-3.31 2.66-6 5.97-6z\"></path></svg>				\n									<h5>\n							ærlig<br> rådgivning						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 510 510\"><path d=\"m192.036 385.845c-4.787-46.972-19.459-64.336-30.658-82.352-8.672-13.951-15.5-28.245-15.5-54.252 0-60.242 48.865-109.109 109.135-109.109 60.242 0 109.109 48.866 109.109 109.109 0 26.007-6.828 40.301-15.5 54.252-11.199 18.016-25.871 35.38-30.658 82.352 9.985 2.864 17.345 12.101 17.345 22.975v36.44c0 13.109-10.747 23.866-23.893 23.866h-10.334v9.945c0 12.588-10.341 22.929-22.93 22.929h-46.304c-12.589 0-22.93-10.341-22.93-22.929v-9.945h-10.334c-13.146 0-23.893-10.757-23.893-23.866v-36.44c0-10.874 7.36-20.111 17.345-22.975zm111.948-.917c4.199-42.194 15.78-62.332 26.488-79.049 10.147-15.842 19.65-28.207 19.65-56.638 0-52.513-42.597-95.109-95.109-95.109-52.537 0-95.135 42.596-95.135 95.109 0 28.431 9.503 40.796 19.65 56.638 10.708 16.717 22.289 36.855 26.488 79.049zm2.554-78.61c-1.175 13.701-11.985 24.191-24.783 24.191-13.527 0-24.862-12.086-24.862-26.673v-99.328c0-14.12 11.335-26.673 24.862-26.673 11.309 0 21.031 8.139 23.975 19.497 9.12 3.904 15.688 13.438 15.688 24.78 0 1.153-.068 2.289-.201 3.403 5.078 5.326 8.283 12.802 8.283 21.117 0 6.39-1.889 12.262-5.06 17.053 1.996 4.099 3.13 8.773 3.13 13.76 0 14.1-9.065 25.697-21.032 28.873zm-16.452-109.977c-1.964-2.729-4.916-4.506-8.331-4.506-6.192 0-10.862 6.21-10.862 12.673v99.328c0 6.677 4.67 12.673 10.862 12.673 5.516 0 9.822-4.614 10.717-10.425-4.709-1.416-8.923-4.144-12.279-7.814-2.607-2.852-2.409-7.283.443-9.89 2.851-2.607 7.282-2.408 9.889.443 2.416 2.642 5.72 4.356 9.402 4.356 7.733 0 13.643-7.218 13.643-15.734s-5.91-15.734-13.643-15.734c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7 5.352 0 10.388 1.655 14.658 4.533.593-1.743.915-3.634.915-5.612 0-2.11-.366-4.128-1.036-5.972-.769.858-1.588 1.66-2.453 2.397-2.94 2.507-7.361 2.156-9.869-.784-2.507-2.939-2.155-7.361.784-9.868 2.773-2.365 4.492-6.122 4.492-10.293 0-6.072-3.705-11.374-8.898-12.467-.154-.023-.307-.052-.458-.085-.499-.08-1.01-.121-1.532-.121-2.947 0-5.591 1.389-7.515 3.525-2.585 2.87-7.015 3.101-9.886.515-2.87-2.586-3.101-7.015-.515-9.886 3.111-3.453 7.059-5.988 11.472-7.252zm-104.526 67.344c-3.171-4.791-5.06-10.663-5.06-17.053 0-8.307 3.198-15.777 8.284-21.104-.133-1.118-.202-2.258-.202-3.416 0-11.354 6.582-20.897 15.717-24.792 2.948-11.354 12.67-19.485 23.946-19.485 13.56 0 24.888 12.555 24.888 26.673v99.328c0 14.585-11.328 26.673-24.888 26.673-12.765 0-23.578-10.484-24.757-24.184-11.98-3.166-21.058-14.769-21.058-28.88 0-4.987 1.134-9.661 3.13-13.76zm9.982-23.036c-.675 1.847-1.042 3.869-1.042 5.983 0 1.978.322 3.869.915 5.612 4.27-2.878 9.306-4.533 14.658-4.533 3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7-7.733 0-13.643 7.218-13.643 15.734s5.91 15.734 13.643 15.734c3.682 0 6.986-1.714 9.402-4.356 2.607-2.851 7.038-3.05 9.889-.443 2.852 2.607 3.05 7.038.443 9.89-3.35 3.664-7.556 6.389-12.255 7.807.891 5.813 5.192 10.432 10.693 10.432 6.21 0 10.888-5.993 10.888-12.673v-99.328c0-6.466-4.678-12.673-10.888-12.673-3.404 0-6.349 1.777-8.309 4.507 4.421 1.264 8.367 3.8 11.476 7.251 2.586 2.871 2.355 7.3-.516 9.886-2.87 2.586-7.3 2.355-9.886-.515-1.926-2.138-4.574-3.525-7.54-3.525-.493 0-.976.037-1.448.108-.196.045-.395.082-.596.11-5.165 1.118-8.844 6.404-8.844 12.455 0 1.243.153 2.45.442 3.594.101.284.183.572.246.862.748 2.326 2.071 4.346 3.814 5.823 2.947 2.498 3.311 6.919.813 9.866s-6.919 3.312-9.866.814c-.878-.745-1.71-1.554-2.489-2.422zm3.042 158.279c-5.442 0-9.893 4.451-9.893 9.892v36.44c0 5.423 4.454 9.866 9.893 9.866h17.334c3.866 0 7 3.134 7 7v16.945c0 4.902 4.027 8.929 8.93 8.929h46.304c4.903 0 8.93-4.027 8.93-8.929v-16.945c0-3.866 3.134-7 7-7h17.334c5.439 0 9.893-4.443 9.893-9.866v-36.44c0-5.441-4.451-9.892-9.893-9.892zm63.416-314.093 2.907-5.412c1.828-3.403 6.075-4.683 9.479-2.854 3.403 1.828 4.682 6.075 2.854 9.479l-16.073 29.925c-1.22 2.271-3.589 3.688-6.167 3.688s-4.947-1.417-6.167-3.688l-16.073-29.925c-1.828-3.404-.549-7.651 2.854-9.479 3.404-1.829 7.651-.549 9.479 2.854l2.907 5.412v-69.835c0-3.863 3.137-7 7-7s7 3.137 7 7zm-132.198 54.758-49.381-49.381c-2.732-2.731-2.732-7.167 0-9.899s7.168-2.732 9.9 0l49.38 49.38-1.771-5.881c-1.114-3.7.985-7.608 4.684-8.722 3.7-1.114 7.607.985 8.721 4.685l9.796 32.526c.743 2.468.069 5.145-1.753 6.968-1.823 1.823-4.5 2.496-6.969 1.753l-32.526-9.795c-3.699-1.114-5.798-5.022-4.684-8.721s5.022-5.798 8.721-4.684zm-44.859 122.299h-69.835c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7h69.835l-5.412-2.907c-3.403-1.828-4.682-6.076-2.854-9.479 1.828-3.404 6.075-4.683 9.479-2.855l29.926 16.074c2.271 1.22 3.688 3.589 3.688 6.167 0 2.577-1.417 4.947-3.688 6.166l-29.926 16.074c-3.404 1.828-7.651.549-9.479-2.855-1.828-3.403-.549-7.651 2.854-9.479zm54.758 118.198-49.38 49.38c-2.732 2.732-7.168 2.732-9.9 0s-2.732-7.167 0-9.899l49.381-49.381-5.882 1.772c-3.699 1.114-7.607-.985-8.721-4.685-1.114-3.699.985-7.607 4.684-8.721l32.526-9.795c2.469-.743 5.146-.07 6.969 1.753 1.822 1.823 2.496 4.5 1.753 6.968l-9.796 32.527c-1.114 3.699-5.021 5.798-8.721 4.684-3.699-1.114-5.798-5.022-4.684-8.721zm240.497-240.497 5.882-1.771c3.699-1.114 7.607.985 8.721 4.684s-.985 7.607-4.684 8.721l-32.526 9.795c-2.469.743-5.146.07-6.969-1.753-1.822-1.823-2.496-4.5-1.753-6.968l9.796-32.526c1.114-3.7 5.021-5.799 8.721-4.685 3.699 1.114 5.798 5.022 4.684 8.722l-1.771 5.881 49.38-49.38c2.732-2.732 7.168-2.732 9.9 0s2.732 7.168 0 9.899zm44.859 122.299 5.412 2.906c3.403 1.828 4.682 6.076 2.854 9.479-1.828 3.404-6.075 4.683-9.479 2.855l-29.926-16.074c-2.271-1.219-3.688-3.589-3.688-6.166 0-2.578 1.417-4.947 3.688-6.167l29.926-16.074c3.404-1.828 7.651-.549 9.479 2.855 1.828 3.403.549 7.651-2.854 9.479l-5.412 2.907h69.835c3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7zm-54.758 118.198 1.771 5.882c1.114 3.699-.985 7.607-4.684 8.721-3.7 1.114-7.607-.985-8.721-4.684l-9.796-32.527c-.743-2.468-.069-5.145 1.753-6.968 1.823-1.823 4.5-2.496 6.969-1.753l32.526 9.795c3.699 1.114 5.798 5.022 4.684 8.721-1.114 3.7-5.022 5.799-8.721 4.685l-5.882-1.772 49.381 49.381c2.732 2.732 2.732 7.167 0 9.899s-7.168 2.732-9.9 0z\"></path></svg>				\n									<h5>\n							gennemtænkte løsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"outline\"><path d=\"M486.41,144A28,28,0,0,0,472,92H349.123l5.457-21.828a48.513,48.513,0,0,0-12.848-46.153A41.035,41.035,0,0,0,312.609,12H308a8.009,8.009,0,0,0-8,8V47.413l-19.233,64.112A17.376,17.376,0,0,1,268,123.539V112a4,4,0,0,0-4-4H152a4,4,0,0,0-4,4v72a4,4,0,0,0,8,0V116h72V276H156V248a4,4,0,0,0-8,0v32a4,4,0,0,0,4,4H264a4,4,0,0,0,4-4V268.5h11.168A37.07,37.07,0,0,1,305.092,279a45.025,45.025,0,0,0,31.48,12.752L440,292a27.987,27.987,0,0,0,19.369-48.2,27.987,27.987,0,0,0,16-48A28,28,0,0,0,486.41,144ZM260,276H236V116h24Zm212-88H396a4,4,0,0,0,0,8h60a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h40a20,20,0,0,1,.01,40l-103.428-.25a37.07,37.07,0,0,1-25.924-10.5,45.031,45.031,0,0,0-31.49-12.752H268V131.686a25.317,25.317,0,0,0,20.429-17.862l19.4-64.675A4,4,0,0,0,308,48V20h4.609a33.082,33.082,0,0,1,23.481,9.69,40.507,40.507,0,0,1,10.728,38.541l-6.7,26.8A4,4,0,0,0,344,100H472a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h72a20,20,0,0,1,0,40Z\"></path><path d=\"M194.5,183.243l-1.9-.217a4,4,0,0,0-4.169,2.491L184.29,195.9H135.278l-3.539-9.317a4,4,0,0,0-7.478,2.84l2.459,6.477h-8.474L68.452,156.872a4,4,0,1,0-4.935,6.3L77.6,174.209,56.961,194.48l-6.636-5.491a4,4,0,1,0-5.1,6.163L87.219,229.9a44.1,44.1,0,0,0,28.05,10.1H212a8.009,8.009,0,0,0,8-8V203.9a8.009,8.009,0,0,0-8-8h-8v-2.01A10.708,10.708,0,0,0,194.5,183.243ZM212,203.9V232H115.269a36.081,36.081,0,0,1-22.951-8.264l-29.16-24.128,20.8-20.422L114.4,203.045a4,4,0,0,0,2.468.852H187a4,4,0,0,0,3.715-2.517l3.929-9.843a2.712,2.712,0,0,1,1.356,2.35v6.01a4,4,0,0,0,4,4Z\"></path><path d=\"M223.084,484.672,200.87,469.863V346.36A44.1,44.1,0,0,0,195.327,325l-17.183-30.94a4,4,0,0,0-7,3.884l17.184,30.94a36.073,36.073,0,0,1,4.537,17.478V468H164.333a4,4,0,1,0,0,8h31.321l12,8H152.865V352a4,4,0,0,0-.358-1.655l-25.454-56A4,4,0,0,0,123.411,292H114.2a4,4,0,0,0-3.945,4.658l8.862,53.175a36.016,36.016,0,0,1-1.951,18.949L78.642,468H48.333a4,4,0,1,0,0,8H80.377L92,484H32.088L76.63,361.366a4.017,4.017,0,0,0,.183-2.044L61.1,268H136a4,4,0,0,0,0-8H59.233L30.555,173.966A19.723,19.723,0,0,1,49.27,148H76a12,12,0,0,0,24,0h15.2a21.975,21.975,0,0,1,8.395,1.652l10.889,4.458a4,4,0,1,0,3.032-7.4L126.63,142.25A29.938,29.938,0,0,0,115.2,140H100v-4.527A16.014,16.014,0,0,0,112,120V103.473A16.014,16.014,0,0,0,124,88V80a4,4,0,0,0-4-4H90A22.025,22.025,0,0,0,68,98v18a12.02,12.02,0,0,0,8,11.314V140H49.27a27.723,27.723,0,0,0-26.305,36.5l29.493,88.482,16.29,94.655-46.128,127A4,4,0,0,0,26.38,492h78.485a4,4,0,0,0,2.268-7.3L86.3,470.368l38.318-98.69a44.018,44.018,0,0,0,2.385-23.16L118.921,300h1.914l24.03,52.867V488a4,4,0,0,0,4,4h72a4,4,0,0,0,2.219-7.328ZM76,98A14.015,14.015,0,0,1,90,84h26v4a8.009,8.009,0,0,1-8,8H92a4,4,0,0,0-4,4,11.962,11.962,0,0,1-1.53,5.881A12.044,12.044,0,0,0,76,104.686Zm4,14a3.981,3.981,0,0,1,3.407,1.9,4,4,0,0,0,5.956.975c.207-.171.7-.648.7-.648.032-.028.061-.057.09-.087A19.907,19.907,0,0,0,95.6,104H104v16a8.009,8.009,0,0,1-8,8,12.133,12.133,0,0,1-2.681-.3,4,4,0,1,0-1.775,7.8c.151.035.3.06.456.091V148a4,4,0,1,1-8,0V124a4,4,0,0,0-4-4,4,4,0,0,1,0-8Z\"></path></g></svg>				\n									<h5>\n							arbejde udført med ansvar						\n					</h5>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 12:50:25', '2026-01-26 12:50:25', '', 10, 'https://mrarif.me/cpnordic/?p=496', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(497, 1, '2026-01-26 12:50:26', '2026-01-26 12:50:26', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>					\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle ANMELDELSER\n					</a>\n					<h2>HVORFOR VÆLGE CP NORDIC ApS?</h2>		<p>Når du vælger CP NORDIC ApS, får du:</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 450 450\" width=\"512\"><g><g><path d=\"m225 165.2c-25.9 0-48.9-18.8-53.3-45.2-2.4-14.2.9-28.6 9.3-40.3 8.4-11.8 20.9-19.5 35.1-21.9 29.4-4.9 57.3 15 62.2 44.5 4.9 29.4-15 57.3-44.4 62.2-3 .5-6 .7-8.9.7zm-7.6-99.8c-12.2 2-22.9 8.7-30.1 18.8s-10.1 22.4-8 34.6c3.8 22.7 23.5 38.8 45.7 38.8 2.5 0 5.1-.2 7.6-.6 25.2-4.2 42.3-28.1 38.1-53.4s-28.1-42.4-53.3-38.2z\"></path><path d=\"m255.2 115c-2.1 0-3.8-1.7-3.8-3.8 0-14.6-11.8-26.4-26.4-26.4-2.1 0-3.8-1.7-3.8-3.8s1.7-3.8 3.8-3.8c18.8 0 34.1 15.3 34.1 34.1 0 2-1.8 3.7-3.9 3.7z\"></path><path d=\"m236.1 203h-22.2c-2.1 0-3.8-1.7-3.8-3.8v-14.1c-3.1-.6-6.1-1.4-9.1-2.4l-7 12.2c-1.1 1.8-3.4 2.5-5.3 1.4l-19.2-11.1c-.9-.5-1.5-1.4-1.8-2.3-.3-1-.1-2 .4-2.9l7-12.1c-2.4-2.1-4.6-4.3-6.7-6.6l-12.1 7c-1.8 1.1-4.2.4-5.2-1.4l-11.1-19.2c-1.1-1.8-.4-4.2 1.4-5.2l11.9-6.8c-1-3-1.9-6.1-2.6-9.3h-13.7c-2.1 0-3.8-1.7-3.8-3.8v-22.2c0-2.1 1.7-3.8 3.8-3.8h13.4c.6-3.2 1.4-6.4 2.4-9.5l-11.5-6.6c-1.8-1.1-2.5-3.4-1.4-5.3l11.1-19.6c.5-.9 1.4-1.5 2.3-1.8s2-.1 2.9.4l11.3 6.6c2.2-2.5 4.5-4.8 7-7l-6.5-11.3c-.5-.9-.6-1.9-.4-2.9.3-1 .9-1.8 1.8-2.3l19.2-11.1c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l6.4 11.2c3.1-1.1 6.4-1.9 9.7-2.6v-13c0-2.1 1.7-3.8 3.8-3.8h22.2c2.1 0 3.8 1.7 3.8 3.8v12.8c3.3.7 6.5 1.5 9.7 2.6l6.5-11.2c.5-.9 1.4-1.5 2.3-1.8 1-.3 2-.1 2.9.4l19.2 11.1c.9.5 1.5 1.3 1.8 2.3s.1 2-.4 2.9l-6.5 11.3c2.5 2.2 4.8 4.5 7 7.1l11.3-6.6c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l11.1 19.2c1.1 1.8.4 4.2-1.4 5.3l-11.5 6.6c1 3.1 1.8 6.3 2.5 9.5h13.6c2.1 0 3.8 1.7 3.8 3.8v22.2c0 2.1-1.7 3.8-3.8 3.8h-13.6c-.6 3.1-1.5 6.2-2.5 9.3l11.9 6.8c1.8 1.1 2.5 3.4 1.4 5.2l-11.2 19.5c-1.1 1.8-3.4 2.5-5.2 1.4l-12-7c-2.1 2.4-4.4 4.6-6.7 6.6l7 12.1c.5.9.6 1.9.4 2.9s-.9 1.8-1.8 2.3l-19.2 11.1c-1.8 1.1-4.2.4-5.2-1.4l-7-12.2c-3 1-6 1.8-9.1 2.4v14.1c-.2 2.3-2 4-4.1 4zm-18.4-7.7h14.5v-13.5c0-1.9 1.4-3.5 3.3-3.8 4.7-.7 9.4-2 13.8-3.7 1.8-.7 3.8 0 4.7 1.7l6.7 11.6 12.6-7.3-6.7-11.6c-1-1.6-.5-3.7.9-4.9 3.7-3 7.2-6.4 10.2-10.1 1.2-1.5 3.3-1.8 4.9-.9l11.5 6.6 7.3-12.6-11.3-6.5c-1.6-.9-2.4-3-1.6-4.7 1.8-4.5 3.1-9.2 3.9-14 .3-1.9 1.9-3.2 3.8-3.2h13v-14.6h-12.8c-1.9 0-3.5-1.4-3.8-3.3-.7-4.8-2-9.6-3.7-14.2-.7-1.8 0-3.7 1.7-4.7l10.9-6.3-7.3-12.6-10.8 6.3c-1.6.9-3.7.6-4.9-.9-3.1-3.9-6.6-7.4-10.4-10.6-1.5-1.2-1.9-3.3-.9-4.9l6.2-10.7-12.6-7.3-6.1 10.6c-1 1.6-3 2.3-4.7 1.7-4.6-1.8-9.5-3.1-14.4-3.9-1.9-.3-3.3-1.9-3.3-3.8v-12.2h-14.5v12.3c0 1.9-1.4 3.5-3.3 3.8-5 .8-9.8 2.1-14.4 3.9-1.8.7-3.8 0-4.7-1.7l-6.1-10.6-12.6 7.3 6.2 10.7c.9 1.6.6 3.7-.9 4.9-3.9 3.1-7.4 6.7-10.4 10.6-1.2 1.5-3.3 1.9-4.9.9l-10.8-6.3-7.3 12.6 10.9 6.3c1.6.9 2.3 2.9 1.7 4.7-1.7 4.6-3 9.4-3.7 14.2-.3 1.9-1.9 3.3-3.8 3.3h-12.8v14.5h13c1.9 0 3.5 1.4 3.8 3.2.8 4.8 2.1 9.5 3.9 14 .7 1.8 0 3.8-1.6 4.7l-11.3 6.5 7.3 12.6 11.5-6.6c1.6-.9 3.7-.6 4.9.9 3 3.7 6.5 7.1 10.3 10.1 1.5 1.2 1.9 3.3.9 4.9l-6.7 11.6 12.6 7.3 6.7-11.6c.9-1.6 2.9-2.3 4.7-1.7 4.5 1.7 9.1 2.9 13.8 3.7 1.9.3 3.3 1.9 3.3 3.8z\"></path></g><g><g><g><path d=\"m45.3 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m153.9 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path></g><g><path d=\"m189.3 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.2c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c0 2.1-1.7 3.8-3.8 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m73.3 326.4c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m126 326.4c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m99.7 325.6c-.6 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4s4.1 1.1 4.4 3.2c2.4 16.5 12.3 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m50.2 266.6c-.1 0-.2 0-.3 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.7 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-8.9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.5 2.2zm81.8-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13.1-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.4-.7 2.3-.7z\"></path></g></g></g><g><g><path d=\"m296.1 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m404.7 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path></g><g><path d=\"m440 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.1c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c.2 2.1-1.6 3.8-3.7 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m324 326.3c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m376.7 326.3c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m350.4 325.6c-.5 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4 2.1-.3 4 1.1 4.4 3.2 2.4 16.5 12.4 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m301 266.6c-.1 0-.2 0-.4 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.6 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.4 2.2zm81.7-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.5-.7 2.3-.7z\"></path></g></g></g></g></g></svg>				\n									<h5>\n							et ungt og engageret team						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"496pt\" viewBox=\"0 0 496 496\" width=\"496pt\"><path d=\"m440 328h-28.207031c5.078125-6.703125 8.207031-14.960938 8.207031-24 0-8.824219-7.175781-16-16-16h-12v-19.960938c59.574219-14.445312 104-68.085937 104-132.039062 0-74.992188-61.007812-136-136-136s-136 61.007812-136 136c0 63.953125 44.425781 117.59375 104 132.039062v19.960938h-8.449219c-6.167969 0-12.359375 1.464844-17.886719 4.214844l-50.480468 25.25c-3.320313 1.664062-7.03125 2.535156-10.734375 2.535156h-40.449219v-16h-104v16h56v56h16v-56h16v128h-16v-56h-16v56h-56v16h104v-16h40.449219c3.703125 0 7.414062.871094 10.734375 2.527344l34.488281 17.25c5.519531 2.757812 11.710937 4.222656 17.878906 4.222656h24.449219v24h64v-24h48c13.230469 0 24-10.769531 24-24 0-6.167969-2.40625-11.742188-6.238281-16 3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16 0-13.230469-10.769531-24-24-24zm8 24c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm-208-280c0-66.167969 53.832031-120 120-120s120 53.832031 120 120-53.832031 120-120 120-120-53.832031-120-120zm104 134.976562c5.257812.617188 10.574219 1.023438 16 1.023438s10.742188-.40625 16-1.023438v17.023438h-32zm-40.449219 185.023438c-3.703125 0-7.414062-.871094-10.734375-2.527344l-34.488281-17.25c-5.519531-2.757812-11.710937-4.222656-17.878906-4.222656h-40.449219v-96h40.449219c6.167969 0 12.359375-1.464844 17.886719-4.214844l50.480468-25.25c3.320313-1.664062 7.03125-2.535156 10.734375-2.535156h84.449219c0 13.230469-10.769531 24-24 24h-48.28125l-23.863281 35.808594c-6.101563 9.160156-14.527344 16.589844-24.367188 21.503906-8.753906 4.375-18.542969 6.6875-28.320312 6.6875h-15.167969v16h15.167969c12.246093 0 24.519531-2.894531 35.472656-8.375 12.328125-6.160156 22.878906-15.480469 30.527344-26.945312l6.832031-10.253907v93.574219zm40.449219 24v-136h17.472656c-.898437 2.511719-1.472656 5.183594-1.472656 8 0 6.167969 2.40625 11.742188 6.238281 16-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16 0 10.414062 6.710938 19.214844 16 22.527344v9.472656zm96-24h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8s-3.59375 8-8 8zm0 0\"></path><path d=\"m394.878906 73.007812-7.757812 13.984376c17.816406 9.878906 28.878906 28.664062 28.878906 49.007812h16c0-26.160156-14.222656-50.296875-37.121094-62.992188zm0 0\"></path><path d=\"m360 80c4.734375 0 9.449219.59375 14.007812 1.769531l3.976563-15.503906c-5.855469-1.496094-11.90625-2.265625-17.984375-2.265625zm0 0\"></path><path d=\"m360 48c48.519531 0 88 39.480469 88 88 0 20.753906-7.398438 40.910156-20.832031 56.785156l12.207031 10.34375c15.882812-18.761718 24.625-42.601562 24.625-67.128906 0-57.34375-46.65625-104-104-104-24.527344 0-48.367188 8.753906-67.128906 24.632812l10.335937 12.199219c15.871094-13.433593 36.039063-20.832031 56.792969-20.832031zm0 0\"></path><path d=\"m427.128906 215.367188-10.335937-12.199219c-15.871094 13.433593-36.039063 20.832031-56.792969 20.832031-48.519531 0-88-39.480469-88-88 0-20.753906 7.398438-40.910156 20.832031-56.785156l-12.207031-10.34375c-15.882812 18.761718-24.625 42.601562-24.625 67.128906 0 57.34375 46.65625 104 104 104 24.527344 0 48.367188-8.753906 67.128906-24.632812zm0 0\"></path><path d=\"m121.214844 165.640625c4.953125-1.375 9.695312-3.34375 14.183594-5.878906l9.769531 4.886719 19.472656-19.480469-4.886719-9.769531c2.535156-4.496094 4.503906-9.230469 5.886719-14.183594l10.359375-3.445313v-27.53125l-10.351562-3.453125c-1.375-4.953125-3.34375-9.707031-5.886719-14.183594l4.886719-9.777343-19.472657-19.472657-9.769531 4.886719c-4.484375-2.535156-9.230469-4.503906-14.183594-5.878906l-3.453125-10.359375h-27.539062l-3.445313 10.359375c-4.953125 1.375-9.695312 3.34375-14.183594 5.878906l-9.777343-4.886719-19.472657 19.472657 4.886719 9.777343c-2.535156 4.488282-4.503906 9.230469-5.886719 14.183594l-10.351562 3.445313v27.53125l10.351562 3.453125c1.375 4.953125 3.34375 9.695312 5.886719 14.183594l-4.886719 9.769531 19.472657 19.480469 9.769531-4.886719c4.484375 2.535156 9.230469 4.503906 14.183594 5.878906l3.453125 10.359375h27.539062zm-12.304688-13.679687-2.679687 8.039062h-4.460938l-2.679687-8.039062-4.554688-.90625c-6.128906-1.222657-11.878906-3.605469-17.109375-7.09375l-3.867187-2.578126-7.574219 3.800782-3.160156-3.167969 3.792969-7.582031-2.578126-3.859375c-3.488281-5.222657-5.871093-10.980469-7.09375-17.109375l-.914062-4.554688-8.03125-2.679687v-4.46875l8.03125-2.671875.914062-4.554688c1.222657-6.136718 3.613282-11.886718 7.09375-17.109375l2.578126-3.859375-3.792969-7.589844 3.160156-3.160156 7.574219 3.800782 3.867187-2.578126c5.222657-3.488281 10.980469-5.863281 17.109375-7.09375l4.554688-.90625 2.679687-8.039062h4.460938l2.679687 8.039062 4.554688.90625c6.128906 1.222657 11.878906 3.605469 17.109375 7.09375l3.867187 2.578126 7.574219-3.800782 3.160156 3.160156-3.792969 7.589844 2.578126 3.859375c3.488281 5.214844 5.871093 10.972657 7.09375 17.109375l.914062 4.554688 8.03125 2.679687v4.46875l-8.03125 2.671875-.914062 4.554688c-1.222657 6.128906-3.613282 11.878906-7.09375 17.109375l-2.578126 3.859375 3.792969 7.582031-3.160156 3.167969-7.574219-3.800782-3.867187 2.578126c-5.222657 3.488281-10.980469 5.863281-17.109375 7.09375zm0 0\"></path><path d=\"m104 72c-17.648438 0-32 14.351562-32 32s14.351562 32 32 32 32-14.351562 32-32-14.351562-32-32-32zm0 48c-8.824219 0-16-7.175781-16-16s7.175781-16 16-16 16 7.175781 16 16-7.175781 16-16 16zm0 0\"></path><path d=\"m160 248v-40h48v-208h-208v208h106.664062zm-144-232h176v176h-48v24l-32-24h-96zm0 0\"></path><path d=\"m0 272h16v16h-16zm0 0\"></path><path d=\"m32 272h16v16h-16zm0 0\"></path><path d=\"m64 272h16v16h-16zm0 0\"></path><path d=\"m32 304h16v16h-16zm0 0\"></path><path d=\"m64 304h16v16h-16zm0 0\"></path><path d=\"m0 480h16v16h-16zm0 0\"></path><path d=\"m32 480h16v16h-16zm0 0\"></path><path d=\"m64 480h16v16h-16zm0 0\"></path><path d=\"m32 448h16v16h-16zm0 0\"></path><path d=\"m64 448h16v16h-16zm0 0\"></path></svg>				\n									<h5>\n							fokus på kvalitet og detaljer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m469.12 408.93-67.26-33.63v-22.13c10.71-7.69 18.6-19.07 21.78-32.27h5.28c8.81 0 15.98-7.17 15.98-15.98v-5.29c0-6.35-3.74-11.84-9.12-14.41 5.19-18.64-1.65-39.76-19.44-59.78-12.58-14.16-30.67-22.27-49.62-22.27-18.93 0-37.01 8.12-49.59 22.27-13.38 15.05-20.95 41.01-14.03 59.62-5.56 2.5-9.45 8.09-9.45 14.57v5.29c0 8.81 7.17 15.98 15.98 15.98h5.55c3.16 13.09 10.94 24.39 21.51 32.08v22.32l-67.26 33.63c-16.7 5.87-27.89 21.6-27.89 39.28v41.63c0 3.31 2.69 6 6 6h243.46c3.31 0 6-2.69 6-6v-41.63c0-17.68-11.19-33.41-27.88-39.28zm-62.24-17.7-15.83 27.66-13.29-13.29 19.29-19.29zm-37.61 5.88-20.59-20.58v-16.91c6.41 2.57 13.4 4.01 20.72 4.01 7.22 0 14.11-1.39 20.45-3.9v16.8zm63.63-97.48v5.29c0 2.16-1.82 3.98-3.98 3.98h-3.74c.01-.36.03-.71.03-1.07v-12.18h3.71c2.15-.01 3.98 1.82 3.98 3.98zm-119.29 8.2v1.07h-3.98c-2.16 0-3.98-1.82-3.98-3.98v-5.29c0-2.16 1.82-3.98 3.98-3.98l3.98.22zm1.95-24.19c-7.33-13.69-.89-37.39 10.53-50.24 10.31-11.6 25.12-18.25 40.63-18.25 15.52 0 30.34 6.65 40.65 18.25 8.43 9.48 21.3 27.59 17.4 46.39-5.66-.35-10.67-2.55-14.4-6.36-5.37-5.49-7.72-14-6.63-23.94.29-2.62-1.17-5.13-3.6-6.17s-5.25-.37-6.95 1.65c-19.33 22.92-45.95 36.76-73.9 38.68h-3.73zm10.05 24.19v-12.73c24.57-2.92 47.92-14.05 66.73-31.8 1.43 7.26 4.63 13.6 9.45 18.52 3.27 3.35 7.14 5.89 11.41 7.58v18.42c0 24.15-19.65 43.8-43.8 43.8s-43.79-19.64-43.79-43.79zm15.89 78.48 19.29 19.29-13.29 13.29-15.84-27.66zm3.22 97.53h-39.42v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.76v-35.63c0-12.68 8.1-23.95 20.15-28.05.26-.09.51-.19.75-.31l46.47-23.23 20.07 35.06c.93 1.62 2.56 2.72 4.41 2.97.27.04.53.05.79.05 1.58 0 3.11-.62 4.24-1.76l.14-.14zm12.08 0 7.41-64.69 5.06-5.06 4.84 4.84 7.86 64.92h-25.17zm128.2 0h-39.76v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.18l-6.2-51.17.25.25c1.13 1.13 2.66 1.76 4.24 1.76.26 0 .53-.02.79-.05 1.85-.25 3.48-1.34 4.41-2.97l20.07-35.06 46.47 23.23c.24.12.49.23.75.31 12.05 4.1 20.15 15.38 20.15 28.05v35.65zm-67.04-346.65h-10.84l28.38 39.84 28.38-39.84h-10.84c-3.31 0-6-2.69-6-6v-64.58h-98.7c-3.31 0-6-2.69-6-6s2.69-6 6-6h104.7c3.31 0 6 2.69 6 6v64.58h16.48c2.25 0 4.3 1.25 5.33 3.25s.86 4.4-.45 6.23l-40.02 56.18c-1.13 1.58-2.95 2.52-4.89 2.52s-3.76-.94-4.89-2.52l-40.02-56.18c-1.3-1.83-1.48-4.23-.45-6.23s3.09-3.25 5.33-3.25h16.48v-23.5h-65.38c-3.31 0-6-2.69-6-6s2.69-6 6-6h71.38c3.31 0 6 2.69 6 6v35.5c.02 3.31-2.67 6-5.98 6zm-118.44 50.65v-133.26c0-21.18-17.23-38.41-38.41-38.41h-207.7c-21.18-.01-38.41 17.23-38.41 38.41v133.26c0 21.18 17.23 38.41 38.41 38.41h105.8l64.8 55.11c1.11.94 2.49 1.43 3.89 1.43.85 0 1.71-.18 2.52-.55 2.12-.98 3.48-3.11 3.48-5.45v-50.54h27.21c21.18 0 38.41-17.23 38.41-38.41zm-71.62 26.41c-3.31 0-6 2.69-6 6v43.56l-56.59-48.13c-1.08-.92-2.46-1.43-3.89-1.43h-108.01c-14.56 0-26.41-11.85-26.41-26.41v-133.26c0-14.56 11.85-26.41 26.41-26.41h207.69c14.56 0 26.41 11.85 26.41 26.41v133.26c0 14.56-11.85 26.41-26.41 26.41zm-156.34-87.87h56.97c3.31 0 6-2.69 6-6v-39.2l8.55-8.55c2.34-2.34 2.34-6.14 0-8.49-2.34-2.34-6.14-2.34-8.48 0l-.7.7c-.98-1.97-3.01-3.32-5.36-3.32h-56.98c-3.31 0-6 2.69-6 6v52.85c0 3.32 2.69 6.01 6 6.01zm6-52.86h44.97v2.69l-18.16 18.16-8.84-8.84c-2.34-2.34-6.14-2.34-8.49 0-2.34 2.34-2.34 6.14 0 8.49l13.08 13.08c1.17 1.17 2.71 1.76 4.24 1.76s3.07-.59 4.24-1.76l13.92-13.92v21.2h-44.96zm173.62 3.08c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 31.92c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 36.52c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.68 5.99 6zm0 31.92c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.69 5.99 6zm-119.36 165.01h10.84l-28.38-39.84-28.38 39.84h10.84c3.31 0 6 2.69 6 6v64.58h98.7c3.31 0 6 2.69 6 6s-2.69 6-6 6h-104.69c-3.31 0-6-2.69-6-6v-64.58h-16.48c-2.25 0-4.3-1.25-5.33-3.25s-.86-4.4.45-6.23l40.02-56.18c1.13-1.58 2.95-2.52 4.89-2.52s3.76.94 4.89 2.52l40.02 56.18c1.3 1.83 1.48 4.23.45 6.23s-3.09 3.25-5.33 3.25h-16.48v23.5h65.38c3.31 0 6 2.69 6 6s-2.69 6-6 6h-71.38c-3.31 0-6-2.69-6-6v-35.5c-.03-3.31 2.66-6 5.97-6z\"></path></svg>				\n									<h5>\n							ærlig<br> rådgivning						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 510 510\"><path d=\"m192.036 385.845c-4.787-46.972-19.459-64.336-30.658-82.352-8.672-13.951-15.5-28.245-15.5-54.252 0-60.242 48.865-109.109 109.135-109.109 60.242 0 109.109 48.866 109.109 109.109 0 26.007-6.828 40.301-15.5 54.252-11.199 18.016-25.871 35.38-30.658 82.352 9.985 2.864 17.345 12.101 17.345 22.975v36.44c0 13.109-10.747 23.866-23.893 23.866h-10.334v9.945c0 12.588-10.341 22.929-22.93 22.929h-46.304c-12.589 0-22.93-10.341-22.93-22.929v-9.945h-10.334c-13.146 0-23.893-10.757-23.893-23.866v-36.44c0-10.874 7.36-20.111 17.345-22.975zm111.948-.917c4.199-42.194 15.78-62.332 26.488-79.049 10.147-15.842 19.65-28.207 19.65-56.638 0-52.513-42.597-95.109-95.109-95.109-52.537 0-95.135 42.596-95.135 95.109 0 28.431 9.503 40.796 19.65 56.638 10.708 16.717 22.289 36.855 26.488 79.049zm2.554-78.61c-1.175 13.701-11.985 24.191-24.783 24.191-13.527 0-24.862-12.086-24.862-26.673v-99.328c0-14.12 11.335-26.673 24.862-26.673 11.309 0 21.031 8.139 23.975 19.497 9.12 3.904 15.688 13.438 15.688 24.78 0 1.153-.068 2.289-.201 3.403 5.078 5.326 8.283 12.802 8.283 21.117 0 6.39-1.889 12.262-5.06 17.053 1.996 4.099 3.13 8.773 3.13 13.76 0 14.1-9.065 25.697-21.032 28.873zm-16.452-109.977c-1.964-2.729-4.916-4.506-8.331-4.506-6.192 0-10.862 6.21-10.862 12.673v99.328c0 6.677 4.67 12.673 10.862 12.673 5.516 0 9.822-4.614 10.717-10.425-4.709-1.416-8.923-4.144-12.279-7.814-2.607-2.852-2.409-7.283.443-9.89 2.851-2.607 7.282-2.408 9.889.443 2.416 2.642 5.72 4.356 9.402 4.356 7.733 0 13.643-7.218 13.643-15.734s-5.91-15.734-13.643-15.734c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7 5.352 0 10.388 1.655 14.658 4.533.593-1.743.915-3.634.915-5.612 0-2.11-.366-4.128-1.036-5.972-.769.858-1.588 1.66-2.453 2.397-2.94 2.507-7.361 2.156-9.869-.784-2.507-2.939-2.155-7.361.784-9.868 2.773-2.365 4.492-6.122 4.492-10.293 0-6.072-3.705-11.374-8.898-12.467-.154-.023-.307-.052-.458-.085-.499-.08-1.01-.121-1.532-.121-2.947 0-5.591 1.389-7.515 3.525-2.585 2.87-7.015 3.101-9.886.515-2.87-2.586-3.101-7.015-.515-9.886 3.111-3.453 7.059-5.988 11.472-7.252zm-104.526 67.344c-3.171-4.791-5.06-10.663-5.06-17.053 0-8.307 3.198-15.777 8.284-21.104-.133-1.118-.202-2.258-.202-3.416 0-11.354 6.582-20.897 15.717-24.792 2.948-11.354 12.67-19.485 23.946-19.485 13.56 0 24.888 12.555 24.888 26.673v99.328c0 14.585-11.328 26.673-24.888 26.673-12.765 0-23.578-10.484-24.757-24.184-11.98-3.166-21.058-14.769-21.058-28.88 0-4.987 1.134-9.661 3.13-13.76zm9.982-23.036c-.675 1.847-1.042 3.869-1.042 5.983 0 1.978.322 3.869.915 5.612 4.27-2.878 9.306-4.533 14.658-4.533 3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7-7.733 0-13.643 7.218-13.643 15.734s5.91 15.734 13.643 15.734c3.682 0 6.986-1.714 9.402-4.356 2.607-2.851 7.038-3.05 9.889-.443 2.852 2.607 3.05 7.038.443 9.89-3.35 3.664-7.556 6.389-12.255 7.807.891 5.813 5.192 10.432 10.693 10.432 6.21 0 10.888-5.993 10.888-12.673v-99.328c0-6.466-4.678-12.673-10.888-12.673-3.404 0-6.349 1.777-8.309 4.507 4.421 1.264 8.367 3.8 11.476 7.251 2.586 2.871 2.355 7.3-.516 9.886-2.87 2.586-7.3 2.355-9.886-.515-1.926-2.138-4.574-3.525-7.54-3.525-.493 0-.976.037-1.448.108-.196.045-.395.082-.596.11-5.165 1.118-8.844 6.404-8.844 12.455 0 1.243.153 2.45.442 3.594.101.284.183.572.246.862.748 2.326 2.071 4.346 3.814 5.823 2.947 2.498 3.311 6.919.813 9.866s-6.919 3.312-9.866.814c-.878-.745-1.71-1.554-2.489-2.422zm3.042 158.279c-5.442 0-9.893 4.451-9.893 9.892v36.44c0 5.423 4.454 9.866 9.893 9.866h17.334c3.866 0 7 3.134 7 7v16.945c0 4.902 4.027 8.929 8.93 8.929h46.304c4.903 0 8.93-4.027 8.93-8.929v-16.945c0-3.866 3.134-7 7-7h17.334c5.439 0 9.893-4.443 9.893-9.866v-36.44c0-5.441-4.451-9.892-9.893-9.892zm63.416-314.093 2.907-5.412c1.828-3.403 6.075-4.683 9.479-2.854 3.403 1.828 4.682 6.075 2.854 9.479l-16.073 29.925c-1.22 2.271-3.589 3.688-6.167 3.688s-4.947-1.417-6.167-3.688l-16.073-29.925c-1.828-3.404-.549-7.651 2.854-9.479 3.404-1.829 7.651-.549 9.479 2.854l2.907 5.412v-69.835c0-3.863 3.137-7 7-7s7 3.137 7 7zm-132.198 54.758-49.381-49.381c-2.732-2.731-2.732-7.167 0-9.899s7.168-2.732 9.9 0l49.38 49.38-1.771-5.881c-1.114-3.7.985-7.608 4.684-8.722 3.7-1.114 7.607.985 8.721 4.685l9.796 32.526c.743 2.468.069 5.145-1.753 6.968-1.823 1.823-4.5 2.496-6.969 1.753l-32.526-9.795c-3.699-1.114-5.798-5.022-4.684-8.721s5.022-5.798 8.721-4.684zm-44.859 122.299h-69.835c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7h69.835l-5.412-2.907c-3.403-1.828-4.682-6.076-2.854-9.479 1.828-3.404 6.075-4.683 9.479-2.855l29.926 16.074c2.271 1.22 3.688 3.589 3.688 6.167 0 2.577-1.417 4.947-3.688 6.166l-29.926 16.074c-3.404 1.828-7.651.549-9.479-2.855-1.828-3.403-.549-7.651 2.854-9.479zm54.758 118.198-49.38 49.38c-2.732 2.732-7.168 2.732-9.9 0s-2.732-7.167 0-9.899l49.381-49.381-5.882 1.772c-3.699 1.114-7.607-.985-8.721-4.685-1.114-3.699.985-7.607 4.684-8.721l32.526-9.795c2.469-.743 5.146-.07 6.969 1.753 1.822 1.823 2.496 4.5 1.753 6.968l-9.796 32.527c-1.114 3.699-5.021 5.798-8.721 4.684-3.699-1.114-5.798-5.022-4.684-8.721zm240.497-240.497 5.882-1.771c3.699-1.114 7.607.985 8.721 4.684s-.985 7.607-4.684 8.721l-32.526 9.795c-2.469.743-5.146.07-6.969-1.753-1.822-1.823-2.496-4.5-1.753-6.968l9.796-32.526c1.114-3.7 5.021-5.799 8.721-4.685 3.699 1.114 5.798 5.022 4.684 8.722l-1.771 5.881 49.38-49.38c2.732-2.732 7.168-2.732 9.9 0s2.732 7.168 0 9.899zm44.859 122.299 5.412 2.906c3.403 1.828 4.682 6.076 2.854 9.479-1.828 3.404-6.075 4.683-9.479 2.855l-29.926-16.074c-2.271-1.219-3.688-3.589-3.688-6.166 0-2.578 1.417-4.947 3.688-6.167l29.926-16.074c3.404-1.828 7.651-.549 9.479 2.855 1.828 3.403.549 7.651-2.854 9.479l-5.412 2.907h69.835c3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7zm-54.758 118.198 1.771 5.882c1.114 3.699-.985 7.607-4.684 8.721-3.7 1.114-7.607-.985-8.721-4.684l-9.796-32.527c-.743-2.468-.069-5.145 1.753-6.968 1.823-1.823 4.5-2.496 6.969-1.753l32.526 9.795c3.699 1.114 5.798 5.022 4.684 8.721-1.114 3.7-5.022 5.799-8.721 4.685l-5.882-1.772 49.381 49.381c2.732 2.732 2.732 7.167 0 9.899s-7.168 2.732-9.9 0z\"></path></svg>				\n									<h5>\n							gennemtænkte løsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"outline\"><path d=\"M486.41,144A28,28,0,0,0,472,92H349.123l5.457-21.828a48.513,48.513,0,0,0-12.848-46.153A41.035,41.035,0,0,0,312.609,12H308a8.009,8.009,0,0,0-8,8V47.413l-19.233,64.112A17.376,17.376,0,0,1,268,123.539V112a4,4,0,0,0-4-4H152a4,4,0,0,0-4,4v72a4,4,0,0,0,8,0V116h72V276H156V248a4,4,0,0,0-8,0v32a4,4,0,0,0,4,4H264a4,4,0,0,0,4-4V268.5h11.168A37.07,37.07,0,0,1,305.092,279a45.025,45.025,0,0,0,31.48,12.752L440,292a27.987,27.987,0,0,0,19.369-48.2,27.987,27.987,0,0,0,16-48A28,28,0,0,0,486.41,144ZM260,276H236V116h24Zm212-88H396a4,4,0,0,0,0,8h60a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h40a20,20,0,0,1,.01,40l-103.428-.25a37.07,37.07,0,0,1-25.924-10.5,45.031,45.031,0,0,0-31.49-12.752H268V131.686a25.317,25.317,0,0,0,20.429-17.862l19.4-64.675A4,4,0,0,0,308,48V20h4.609a33.082,33.082,0,0,1,23.481,9.69,40.507,40.507,0,0,1,10.728,38.541l-6.7,26.8A4,4,0,0,0,344,100H472a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h72a20,20,0,0,1,0,40Z\"></path><path d=\"M194.5,183.243l-1.9-.217a4,4,0,0,0-4.169,2.491L184.29,195.9H135.278l-3.539-9.317a4,4,0,0,0-7.478,2.84l2.459,6.477h-8.474L68.452,156.872a4,4,0,1,0-4.935,6.3L77.6,174.209,56.961,194.48l-6.636-5.491a4,4,0,1,0-5.1,6.163L87.219,229.9a44.1,44.1,0,0,0,28.05,10.1H212a8.009,8.009,0,0,0,8-8V203.9a8.009,8.009,0,0,0-8-8h-8v-2.01A10.708,10.708,0,0,0,194.5,183.243ZM212,203.9V232H115.269a36.081,36.081,0,0,1-22.951-8.264l-29.16-24.128,20.8-20.422L114.4,203.045a4,4,0,0,0,2.468.852H187a4,4,0,0,0,3.715-2.517l3.929-9.843a2.712,2.712,0,0,1,1.356,2.35v6.01a4,4,0,0,0,4,4Z\"></path><path d=\"M223.084,484.672,200.87,469.863V346.36A44.1,44.1,0,0,0,195.327,325l-17.183-30.94a4,4,0,0,0-7,3.884l17.184,30.94a36.073,36.073,0,0,1,4.537,17.478V468H164.333a4,4,0,1,0,0,8h31.321l12,8H152.865V352a4,4,0,0,0-.358-1.655l-25.454-56A4,4,0,0,0,123.411,292H114.2a4,4,0,0,0-3.945,4.658l8.862,53.175a36.016,36.016,0,0,1-1.951,18.949L78.642,468H48.333a4,4,0,1,0,0,8H80.377L92,484H32.088L76.63,361.366a4.017,4.017,0,0,0,.183-2.044L61.1,268H136a4,4,0,0,0,0-8H59.233L30.555,173.966A19.723,19.723,0,0,1,49.27,148H76a12,12,0,0,0,24,0h15.2a21.975,21.975,0,0,1,8.395,1.652l10.889,4.458a4,4,0,1,0,3.032-7.4L126.63,142.25A29.938,29.938,0,0,0,115.2,140H100v-4.527A16.014,16.014,0,0,0,112,120V103.473A16.014,16.014,0,0,0,124,88V80a4,4,0,0,0-4-4H90A22.025,22.025,0,0,0,68,98v18a12.02,12.02,0,0,0,8,11.314V140H49.27a27.723,27.723,0,0,0-26.305,36.5l29.493,88.482,16.29,94.655-46.128,127A4,4,0,0,0,26.38,492h78.485a4,4,0,0,0,2.268-7.3L86.3,470.368l38.318-98.69a44.018,44.018,0,0,0,2.385-23.16L118.921,300h1.914l24.03,52.867V488a4,4,0,0,0,4,4h72a4,4,0,0,0,2.219-7.328ZM76,98A14.015,14.015,0,0,1,90,84h26v4a8.009,8.009,0,0,1-8,8H92a4,4,0,0,0-4,4,11.962,11.962,0,0,1-1.53,5.881A12.044,12.044,0,0,0,76,104.686Zm4,14a3.981,3.981,0,0,1,3.407,1.9,4,4,0,0,0,5.956.975c.207-.171.7-.648.7-.648.032-.028.061-.057.09-.087A19.907,19.907,0,0,0,95.6,104H104v16a8.009,8.009,0,0,1-8,8,12.133,12.133,0,0,1-2.681-.3,4,4,0,1,0-1.775,7.8c.151.035.3.06.456.091V148a4,4,0,1,1-8,0V124a4,4,0,0,0-4-4,4,4,0,0,1,0-8Z\"></path></g></svg>				\n									<h5>\n							arbejde udført med ansvar						\n					</h5>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 12:50:26', '2026-01-26 12:50:26', '', 10, 'https://mrarif.me/cpnordic/?p=497', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(498, 1, '2026-01-26 12:51:03', '2026-01-26 12:51:03', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>					\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle ANMELDELSER\n					</a>\n					<h2>HVORFOR VÆLGE CP NORDIC ApS?</h2>		<p>Når du vælger CP NORDIC ApS, får du:</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 450 450\" width=\"512\"><g><g><path d=\"m225 165.2c-25.9 0-48.9-18.8-53.3-45.2-2.4-14.2.9-28.6 9.3-40.3 8.4-11.8 20.9-19.5 35.1-21.9 29.4-4.9 57.3 15 62.2 44.5 4.9 29.4-15 57.3-44.4 62.2-3 .5-6 .7-8.9.7zm-7.6-99.8c-12.2 2-22.9 8.7-30.1 18.8s-10.1 22.4-8 34.6c3.8 22.7 23.5 38.8 45.7 38.8 2.5 0 5.1-.2 7.6-.6 25.2-4.2 42.3-28.1 38.1-53.4s-28.1-42.4-53.3-38.2z\"></path><path d=\"m255.2 115c-2.1 0-3.8-1.7-3.8-3.8 0-14.6-11.8-26.4-26.4-26.4-2.1 0-3.8-1.7-3.8-3.8s1.7-3.8 3.8-3.8c18.8 0 34.1 15.3 34.1 34.1 0 2-1.8 3.7-3.9 3.7z\"></path><path d=\"m236.1 203h-22.2c-2.1 0-3.8-1.7-3.8-3.8v-14.1c-3.1-.6-6.1-1.4-9.1-2.4l-7 12.2c-1.1 1.8-3.4 2.5-5.3 1.4l-19.2-11.1c-.9-.5-1.5-1.4-1.8-2.3-.3-1-.1-2 .4-2.9l7-12.1c-2.4-2.1-4.6-4.3-6.7-6.6l-12.1 7c-1.8 1.1-4.2.4-5.2-1.4l-11.1-19.2c-1.1-1.8-.4-4.2 1.4-5.2l11.9-6.8c-1-3-1.9-6.1-2.6-9.3h-13.7c-2.1 0-3.8-1.7-3.8-3.8v-22.2c0-2.1 1.7-3.8 3.8-3.8h13.4c.6-3.2 1.4-6.4 2.4-9.5l-11.5-6.6c-1.8-1.1-2.5-3.4-1.4-5.3l11.1-19.6c.5-.9 1.4-1.5 2.3-1.8s2-.1 2.9.4l11.3 6.6c2.2-2.5 4.5-4.8 7-7l-6.5-11.3c-.5-.9-.6-1.9-.4-2.9.3-1 .9-1.8 1.8-2.3l19.2-11.1c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l6.4 11.2c3.1-1.1 6.4-1.9 9.7-2.6v-13c0-2.1 1.7-3.8 3.8-3.8h22.2c2.1 0 3.8 1.7 3.8 3.8v12.8c3.3.7 6.5 1.5 9.7 2.6l6.5-11.2c.5-.9 1.4-1.5 2.3-1.8 1-.3 2-.1 2.9.4l19.2 11.1c.9.5 1.5 1.3 1.8 2.3s.1 2-.4 2.9l-6.5 11.3c2.5 2.2 4.8 4.5 7 7.1l11.3-6.6c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l11.1 19.2c1.1 1.8.4 4.2-1.4 5.3l-11.5 6.6c1 3.1 1.8 6.3 2.5 9.5h13.6c2.1 0 3.8 1.7 3.8 3.8v22.2c0 2.1-1.7 3.8-3.8 3.8h-13.6c-.6 3.1-1.5 6.2-2.5 9.3l11.9 6.8c1.8 1.1 2.5 3.4 1.4 5.2l-11.2 19.5c-1.1 1.8-3.4 2.5-5.2 1.4l-12-7c-2.1 2.4-4.4 4.6-6.7 6.6l7 12.1c.5.9.6 1.9.4 2.9s-.9 1.8-1.8 2.3l-19.2 11.1c-1.8 1.1-4.2.4-5.2-1.4l-7-12.2c-3 1-6 1.8-9.1 2.4v14.1c-.2 2.3-2 4-4.1 4zm-18.4-7.7h14.5v-13.5c0-1.9 1.4-3.5 3.3-3.8 4.7-.7 9.4-2 13.8-3.7 1.8-.7 3.8 0 4.7 1.7l6.7 11.6 12.6-7.3-6.7-11.6c-1-1.6-.5-3.7.9-4.9 3.7-3 7.2-6.4 10.2-10.1 1.2-1.5 3.3-1.8 4.9-.9l11.5 6.6 7.3-12.6-11.3-6.5c-1.6-.9-2.4-3-1.6-4.7 1.8-4.5 3.1-9.2 3.9-14 .3-1.9 1.9-3.2 3.8-3.2h13v-14.6h-12.8c-1.9 0-3.5-1.4-3.8-3.3-.7-4.8-2-9.6-3.7-14.2-.7-1.8 0-3.7 1.7-4.7l10.9-6.3-7.3-12.6-10.8 6.3c-1.6.9-3.7.6-4.9-.9-3.1-3.9-6.6-7.4-10.4-10.6-1.5-1.2-1.9-3.3-.9-4.9l6.2-10.7-12.6-7.3-6.1 10.6c-1 1.6-3 2.3-4.7 1.7-4.6-1.8-9.5-3.1-14.4-3.9-1.9-.3-3.3-1.9-3.3-3.8v-12.2h-14.5v12.3c0 1.9-1.4 3.5-3.3 3.8-5 .8-9.8 2.1-14.4 3.9-1.8.7-3.8 0-4.7-1.7l-6.1-10.6-12.6 7.3 6.2 10.7c.9 1.6.6 3.7-.9 4.9-3.9 3.1-7.4 6.7-10.4 10.6-1.2 1.5-3.3 1.9-4.9.9l-10.8-6.3-7.3 12.6 10.9 6.3c1.6.9 2.3 2.9 1.7 4.7-1.7 4.6-3 9.4-3.7 14.2-.3 1.9-1.9 3.3-3.8 3.3h-12.8v14.5h13c1.9 0 3.5 1.4 3.8 3.2.8 4.8 2.1 9.5 3.9 14 .7 1.8 0 3.8-1.6 4.7l-11.3 6.5 7.3 12.6 11.5-6.6c1.6-.9 3.7-.6 4.9.9 3 3.7 6.5 7.1 10.3 10.1 1.5 1.2 1.9 3.3.9 4.9l-6.7 11.6 12.6 7.3 6.7-11.6c.9-1.6 2.9-2.3 4.7-1.7 4.5 1.7 9.1 2.9 13.8 3.7 1.9.3 3.3 1.9 3.3 3.8z\"></path></g><g><g><g><path d=\"m45.3 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m153.9 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path></g><g><path d=\"m189.3 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.2c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c0 2.1-1.7 3.8-3.8 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m73.3 326.4c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m126 326.4c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m99.7 325.6c-.6 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4s4.1 1.1 4.4 3.2c2.4 16.5 12.3 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m50.2 266.6c-.1 0-.2 0-.3 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.7 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-8.9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.5 2.2zm81.8-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13.1-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.4-.7 2.3-.7z\"></path></g></g></g><g><g><path d=\"m296.1 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m404.7 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path></g><g><path d=\"m440 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.1c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c.2 2.1-1.6 3.8-3.7 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m324 326.3c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m376.7 326.3c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m350.4 325.6c-.5 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4 2.1-.3 4 1.1 4.4 3.2 2.4 16.5 12.4 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m301 266.6c-.1 0-.2 0-.4 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.6 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.4 2.2zm81.7-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.5-.7 2.3-.7z\"></path></g></g></g></g></g></svg>				\n									<h5>\n							et ungt og engageret team						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"496pt\" viewBox=\"0 0 496 496\" width=\"496pt\"><path d=\"m440 328h-28.207031c5.078125-6.703125 8.207031-14.960938 8.207031-24 0-8.824219-7.175781-16-16-16h-12v-19.960938c59.574219-14.445312 104-68.085937 104-132.039062 0-74.992188-61.007812-136-136-136s-136 61.007812-136 136c0 63.953125 44.425781 117.59375 104 132.039062v19.960938h-8.449219c-6.167969 0-12.359375 1.464844-17.886719 4.214844l-50.480468 25.25c-3.320313 1.664062-7.03125 2.535156-10.734375 2.535156h-40.449219v-16h-104v16h56v56h16v-56h16v128h-16v-56h-16v56h-56v16h104v-16h40.449219c3.703125 0 7.414062.871094 10.734375 2.527344l34.488281 17.25c5.519531 2.757812 11.710937 4.222656 17.878906 4.222656h24.449219v24h64v-24h48c13.230469 0 24-10.769531 24-24 0-6.167969-2.40625-11.742188-6.238281-16 3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16 0-13.230469-10.769531-24-24-24zm8 24c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm-208-280c0-66.167969 53.832031-120 120-120s120 53.832031 120 120-53.832031 120-120 120-120-53.832031-120-120zm104 134.976562c5.257812.617188 10.574219 1.023438 16 1.023438s10.742188-.40625 16-1.023438v17.023438h-32zm-40.449219 185.023438c-3.703125 0-7.414062-.871094-10.734375-2.527344l-34.488281-17.25c-5.519531-2.757812-11.710937-4.222656-17.878906-4.222656h-40.449219v-96h40.449219c6.167969 0 12.359375-1.464844 17.886719-4.214844l50.480468-25.25c3.320313-1.664062 7.03125-2.535156 10.734375-2.535156h84.449219c0 13.230469-10.769531 24-24 24h-48.28125l-23.863281 35.808594c-6.101563 9.160156-14.527344 16.589844-24.367188 21.503906-8.753906 4.375-18.542969 6.6875-28.320312 6.6875h-15.167969v16h15.167969c12.246093 0 24.519531-2.894531 35.472656-8.375 12.328125-6.160156 22.878906-15.480469 30.527344-26.945312l6.832031-10.253907v93.574219zm40.449219 24v-136h17.472656c-.898437 2.511719-1.472656 5.183594-1.472656 8 0 6.167969 2.40625 11.742188 6.238281 16-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16 0 10.414062 6.710938 19.214844 16 22.527344v9.472656zm96-24h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8s-3.59375 8-8 8zm0 0\"></path><path d=\"m394.878906 73.007812-7.757812 13.984376c17.816406 9.878906 28.878906 28.664062 28.878906 49.007812h16c0-26.160156-14.222656-50.296875-37.121094-62.992188zm0 0\"></path><path d=\"m360 80c4.734375 0 9.449219.59375 14.007812 1.769531l3.976563-15.503906c-5.855469-1.496094-11.90625-2.265625-17.984375-2.265625zm0 0\"></path><path d=\"m360 48c48.519531 0 88 39.480469 88 88 0 20.753906-7.398438 40.910156-20.832031 56.785156l12.207031 10.34375c15.882812-18.761718 24.625-42.601562 24.625-67.128906 0-57.34375-46.65625-104-104-104-24.527344 0-48.367188 8.753906-67.128906 24.632812l10.335937 12.199219c15.871094-13.433593 36.039063-20.832031 56.792969-20.832031zm0 0\"></path><path d=\"m427.128906 215.367188-10.335937-12.199219c-15.871094 13.433593-36.039063 20.832031-56.792969 20.832031-48.519531 0-88-39.480469-88-88 0-20.753906 7.398438-40.910156 20.832031-56.785156l-12.207031-10.34375c-15.882812 18.761718-24.625 42.601562-24.625 67.128906 0 57.34375 46.65625 104 104 104 24.527344 0 48.367188-8.753906 67.128906-24.632812zm0 0\"></path><path d=\"m121.214844 165.640625c4.953125-1.375 9.695312-3.34375 14.183594-5.878906l9.769531 4.886719 19.472656-19.480469-4.886719-9.769531c2.535156-4.496094 4.503906-9.230469 5.886719-14.183594l10.359375-3.445313v-27.53125l-10.351562-3.453125c-1.375-4.953125-3.34375-9.707031-5.886719-14.183594l4.886719-9.777343-19.472657-19.472657-9.769531 4.886719c-4.484375-2.535156-9.230469-4.503906-14.183594-5.878906l-3.453125-10.359375h-27.539062l-3.445313 10.359375c-4.953125 1.375-9.695312 3.34375-14.183594 5.878906l-9.777343-4.886719-19.472657 19.472657 4.886719 9.777343c-2.535156 4.488282-4.503906 9.230469-5.886719 14.183594l-10.351562 3.445313v27.53125l10.351562 3.453125c1.375 4.953125 3.34375 9.695312 5.886719 14.183594l-4.886719 9.769531 19.472657 19.480469 9.769531-4.886719c4.484375 2.535156 9.230469 4.503906 14.183594 5.878906l3.453125 10.359375h27.539062zm-12.304688-13.679687-2.679687 8.039062h-4.460938l-2.679687-8.039062-4.554688-.90625c-6.128906-1.222657-11.878906-3.605469-17.109375-7.09375l-3.867187-2.578126-7.574219 3.800782-3.160156-3.167969 3.792969-7.582031-2.578126-3.859375c-3.488281-5.222657-5.871093-10.980469-7.09375-17.109375l-.914062-4.554688-8.03125-2.679687v-4.46875l8.03125-2.671875.914062-4.554688c1.222657-6.136718 3.613282-11.886718 7.09375-17.109375l2.578126-3.859375-3.792969-7.589844 3.160156-3.160156 7.574219 3.800782 3.867187-2.578126c5.222657-3.488281 10.980469-5.863281 17.109375-7.09375l4.554688-.90625 2.679687-8.039062h4.460938l2.679687 8.039062 4.554688.90625c6.128906 1.222657 11.878906 3.605469 17.109375 7.09375l3.867187 2.578126 7.574219-3.800782 3.160156 3.160156-3.792969 7.589844 2.578126 3.859375c3.488281 5.214844 5.871093 10.972657 7.09375 17.109375l.914062 4.554688 8.03125 2.679687v4.46875l-8.03125 2.671875-.914062 4.554688c-1.222657 6.128906-3.613282 11.878906-7.09375 17.109375l-2.578126 3.859375 3.792969 7.582031-3.160156 3.167969-7.574219-3.800782-3.867187 2.578126c-5.222657 3.488281-10.980469 5.863281-17.109375 7.09375zm0 0\"></path><path d=\"m104 72c-17.648438 0-32 14.351562-32 32s14.351562 32 32 32 32-14.351562 32-32-14.351562-32-32-32zm0 48c-8.824219 0-16-7.175781-16-16s7.175781-16 16-16 16 7.175781 16 16-7.175781 16-16 16zm0 0\"></path><path d=\"m160 248v-40h48v-208h-208v208h106.664062zm-144-232h176v176h-48v24l-32-24h-96zm0 0\"></path><path d=\"m0 272h16v16h-16zm0 0\"></path><path d=\"m32 272h16v16h-16zm0 0\"></path><path d=\"m64 272h16v16h-16zm0 0\"></path><path d=\"m32 304h16v16h-16zm0 0\"></path><path d=\"m64 304h16v16h-16zm0 0\"></path><path d=\"m0 480h16v16h-16zm0 0\"></path><path d=\"m32 480h16v16h-16zm0 0\"></path><path d=\"m64 480h16v16h-16zm0 0\"></path><path d=\"m32 448h16v16h-16zm0 0\"></path><path d=\"m64 448h16v16h-16zm0 0\"></path></svg>				\n									<h5>\n							fokus på kvalitet og detaljer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m469.12 408.93-67.26-33.63v-22.13c10.71-7.69 18.6-19.07 21.78-32.27h5.28c8.81 0 15.98-7.17 15.98-15.98v-5.29c0-6.35-3.74-11.84-9.12-14.41 5.19-18.64-1.65-39.76-19.44-59.78-12.58-14.16-30.67-22.27-49.62-22.27-18.93 0-37.01 8.12-49.59 22.27-13.38 15.05-20.95 41.01-14.03 59.62-5.56 2.5-9.45 8.09-9.45 14.57v5.29c0 8.81 7.17 15.98 15.98 15.98h5.55c3.16 13.09 10.94 24.39 21.51 32.08v22.32l-67.26 33.63c-16.7 5.87-27.89 21.6-27.89 39.28v41.63c0 3.31 2.69 6 6 6h243.46c3.31 0 6-2.69 6-6v-41.63c0-17.68-11.19-33.41-27.88-39.28zm-62.24-17.7-15.83 27.66-13.29-13.29 19.29-19.29zm-37.61 5.88-20.59-20.58v-16.91c6.41 2.57 13.4 4.01 20.72 4.01 7.22 0 14.11-1.39 20.45-3.9v16.8zm63.63-97.48v5.29c0 2.16-1.82 3.98-3.98 3.98h-3.74c.01-.36.03-.71.03-1.07v-12.18h3.71c2.15-.01 3.98 1.82 3.98 3.98zm-119.29 8.2v1.07h-3.98c-2.16 0-3.98-1.82-3.98-3.98v-5.29c0-2.16 1.82-3.98 3.98-3.98l3.98.22zm1.95-24.19c-7.33-13.69-.89-37.39 10.53-50.24 10.31-11.6 25.12-18.25 40.63-18.25 15.52 0 30.34 6.65 40.65 18.25 8.43 9.48 21.3 27.59 17.4 46.39-5.66-.35-10.67-2.55-14.4-6.36-5.37-5.49-7.72-14-6.63-23.94.29-2.62-1.17-5.13-3.6-6.17s-5.25-.37-6.95 1.65c-19.33 22.92-45.95 36.76-73.9 38.68h-3.73zm10.05 24.19v-12.73c24.57-2.92 47.92-14.05 66.73-31.8 1.43 7.26 4.63 13.6 9.45 18.52 3.27 3.35 7.14 5.89 11.41 7.58v18.42c0 24.15-19.65 43.8-43.8 43.8s-43.79-19.64-43.79-43.79zm15.89 78.48 19.29 19.29-13.29 13.29-15.84-27.66zm3.22 97.53h-39.42v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.76v-35.63c0-12.68 8.1-23.95 20.15-28.05.26-.09.51-.19.75-.31l46.47-23.23 20.07 35.06c.93 1.62 2.56 2.72 4.41 2.97.27.04.53.05.79.05 1.58 0 3.11-.62 4.24-1.76l.14-.14zm12.08 0 7.41-64.69 5.06-5.06 4.84 4.84 7.86 64.92h-25.17zm128.2 0h-39.76v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.18l-6.2-51.17.25.25c1.13 1.13 2.66 1.76 4.24 1.76.26 0 .53-.02.79-.05 1.85-.25 3.48-1.34 4.41-2.97l20.07-35.06 46.47 23.23c.24.12.49.23.75.31 12.05 4.1 20.15 15.38 20.15 28.05v35.65zm-67.04-346.65h-10.84l28.38 39.84 28.38-39.84h-10.84c-3.31 0-6-2.69-6-6v-64.58h-98.7c-3.31 0-6-2.69-6-6s2.69-6 6-6h104.7c3.31 0 6 2.69 6 6v64.58h16.48c2.25 0 4.3 1.25 5.33 3.25s.86 4.4-.45 6.23l-40.02 56.18c-1.13 1.58-2.95 2.52-4.89 2.52s-3.76-.94-4.89-2.52l-40.02-56.18c-1.3-1.83-1.48-4.23-.45-6.23s3.09-3.25 5.33-3.25h16.48v-23.5h-65.38c-3.31 0-6-2.69-6-6s2.69-6 6-6h71.38c3.31 0 6 2.69 6 6v35.5c.02 3.31-2.67 6-5.98 6zm-118.44 50.65v-133.26c0-21.18-17.23-38.41-38.41-38.41h-207.7c-21.18-.01-38.41 17.23-38.41 38.41v133.26c0 21.18 17.23 38.41 38.41 38.41h105.8l64.8 55.11c1.11.94 2.49 1.43 3.89 1.43.85 0 1.71-.18 2.52-.55 2.12-.98 3.48-3.11 3.48-5.45v-50.54h27.21c21.18 0 38.41-17.23 38.41-38.41zm-71.62 26.41c-3.31 0-6 2.69-6 6v43.56l-56.59-48.13c-1.08-.92-2.46-1.43-3.89-1.43h-108.01c-14.56 0-26.41-11.85-26.41-26.41v-133.26c0-14.56 11.85-26.41 26.41-26.41h207.69c14.56 0 26.41 11.85 26.41 26.41v133.26c0 14.56-11.85 26.41-26.41 26.41zm-156.34-87.87h56.97c3.31 0 6-2.69 6-6v-39.2l8.55-8.55c2.34-2.34 2.34-6.14 0-8.49-2.34-2.34-6.14-2.34-8.48 0l-.7.7c-.98-1.97-3.01-3.32-5.36-3.32h-56.98c-3.31 0-6 2.69-6 6v52.85c0 3.32 2.69 6.01 6 6.01zm6-52.86h44.97v2.69l-18.16 18.16-8.84-8.84c-2.34-2.34-6.14-2.34-8.49 0-2.34 2.34-2.34 6.14 0 8.49l13.08 13.08c1.17 1.17 2.71 1.76 4.24 1.76s3.07-.59 4.24-1.76l13.92-13.92v21.2h-44.96zm173.62 3.08c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 31.92c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 36.52c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.68 5.99 6zm0 31.92c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.69 5.99 6zm-119.36 165.01h10.84l-28.38-39.84-28.38 39.84h10.84c3.31 0 6 2.69 6 6v64.58h98.7c3.31 0 6 2.69 6 6s-2.69 6-6 6h-104.69c-3.31 0-6-2.69-6-6v-64.58h-16.48c-2.25 0-4.3-1.25-5.33-3.25s-.86-4.4.45-6.23l40.02-56.18c1.13-1.58 2.95-2.52 4.89-2.52s3.76.94 4.89 2.52l40.02 56.18c1.3 1.83 1.48 4.23.45 6.23s-3.09 3.25-5.33 3.25h-16.48v23.5h65.38c3.31 0 6 2.69 6 6s-2.69 6-6 6h-71.38c-3.31 0-6-2.69-6-6v-35.5c-.03-3.31 2.66-6 5.97-6z\"></path></svg>				\n									<h5>\n							ærlig<br> rådgivning						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 510 510\"><path d=\"m192.036 385.845c-4.787-46.972-19.459-64.336-30.658-82.352-8.672-13.951-15.5-28.245-15.5-54.252 0-60.242 48.865-109.109 109.135-109.109 60.242 0 109.109 48.866 109.109 109.109 0 26.007-6.828 40.301-15.5 54.252-11.199 18.016-25.871 35.38-30.658 82.352 9.985 2.864 17.345 12.101 17.345 22.975v36.44c0 13.109-10.747 23.866-23.893 23.866h-10.334v9.945c0 12.588-10.341 22.929-22.93 22.929h-46.304c-12.589 0-22.93-10.341-22.93-22.929v-9.945h-10.334c-13.146 0-23.893-10.757-23.893-23.866v-36.44c0-10.874 7.36-20.111 17.345-22.975zm111.948-.917c4.199-42.194 15.78-62.332 26.488-79.049 10.147-15.842 19.65-28.207 19.65-56.638 0-52.513-42.597-95.109-95.109-95.109-52.537 0-95.135 42.596-95.135 95.109 0 28.431 9.503 40.796 19.65 56.638 10.708 16.717 22.289 36.855 26.488 79.049zm2.554-78.61c-1.175 13.701-11.985 24.191-24.783 24.191-13.527 0-24.862-12.086-24.862-26.673v-99.328c0-14.12 11.335-26.673 24.862-26.673 11.309 0 21.031 8.139 23.975 19.497 9.12 3.904 15.688 13.438 15.688 24.78 0 1.153-.068 2.289-.201 3.403 5.078 5.326 8.283 12.802 8.283 21.117 0 6.39-1.889 12.262-5.06 17.053 1.996 4.099 3.13 8.773 3.13 13.76 0 14.1-9.065 25.697-21.032 28.873zm-16.452-109.977c-1.964-2.729-4.916-4.506-8.331-4.506-6.192 0-10.862 6.21-10.862 12.673v99.328c0 6.677 4.67 12.673 10.862 12.673 5.516 0 9.822-4.614 10.717-10.425-4.709-1.416-8.923-4.144-12.279-7.814-2.607-2.852-2.409-7.283.443-9.89 2.851-2.607 7.282-2.408 9.889.443 2.416 2.642 5.72 4.356 9.402 4.356 7.733 0 13.643-7.218 13.643-15.734s-5.91-15.734-13.643-15.734c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7 5.352 0 10.388 1.655 14.658 4.533.593-1.743.915-3.634.915-5.612 0-2.11-.366-4.128-1.036-5.972-.769.858-1.588 1.66-2.453 2.397-2.94 2.507-7.361 2.156-9.869-.784-2.507-2.939-2.155-7.361.784-9.868 2.773-2.365 4.492-6.122 4.492-10.293 0-6.072-3.705-11.374-8.898-12.467-.154-.023-.307-.052-.458-.085-.499-.08-1.01-.121-1.532-.121-2.947 0-5.591 1.389-7.515 3.525-2.585 2.87-7.015 3.101-9.886.515-2.87-2.586-3.101-7.015-.515-9.886 3.111-3.453 7.059-5.988 11.472-7.252zm-104.526 67.344c-3.171-4.791-5.06-10.663-5.06-17.053 0-8.307 3.198-15.777 8.284-21.104-.133-1.118-.202-2.258-.202-3.416 0-11.354 6.582-20.897 15.717-24.792 2.948-11.354 12.67-19.485 23.946-19.485 13.56 0 24.888 12.555 24.888 26.673v99.328c0 14.585-11.328 26.673-24.888 26.673-12.765 0-23.578-10.484-24.757-24.184-11.98-3.166-21.058-14.769-21.058-28.88 0-4.987 1.134-9.661 3.13-13.76zm9.982-23.036c-.675 1.847-1.042 3.869-1.042 5.983 0 1.978.322 3.869.915 5.612 4.27-2.878 9.306-4.533 14.658-4.533 3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7-7.733 0-13.643 7.218-13.643 15.734s5.91 15.734 13.643 15.734c3.682 0 6.986-1.714 9.402-4.356 2.607-2.851 7.038-3.05 9.889-.443 2.852 2.607 3.05 7.038.443 9.89-3.35 3.664-7.556 6.389-12.255 7.807.891 5.813 5.192 10.432 10.693 10.432 6.21 0 10.888-5.993 10.888-12.673v-99.328c0-6.466-4.678-12.673-10.888-12.673-3.404 0-6.349 1.777-8.309 4.507 4.421 1.264 8.367 3.8 11.476 7.251 2.586 2.871 2.355 7.3-.516 9.886-2.87 2.586-7.3 2.355-9.886-.515-1.926-2.138-4.574-3.525-7.54-3.525-.493 0-.976.037-1.448.108-.196.045-.395.082-.596.11-5.165 1.118-8.844 6.404-8.844 12.455 0 1.243.153 2.45.442 3.594.101.284.183.572.246.862.748 2.326 2.071 4.346 3.814 5.823 2.947 2.498 3.311 6.919.813 9.866s-6.919 3.312-9.866.814c-.878-.745-1.71-1.554-2.489-2.422zm3.042 158.279c-5.442 0-9.893 4.451-9.893 9.892v36.44c0 5.423 4.454 9.866 9.893 9.866h17.334c3.866 0 7 3.134 7 7v16.945c0 4.902 4.027 8.929 8.93 8.929h46.304c4.903 0 8.93-4.027 8.93-8.929v-16.945c0-3.866 3.134-7 7-7h17.334c5.439 0 9.893-4.443 9.893-9.866v-36.44c0-5.441-4.451-9.892-9.893-9.892zm63.416-314.093 2.907-5.412c1.828-3.403 6.075-4.683 9.479-2.854 3.403 1.828 4.682 6.075 2.854 9.479l-16.073 29.925c-1.22 2.271-3.589 3.688-6.167 3.688s-4.947-1.417-6.167-3.688l-16.073-29.925c-1.828-3.404-.549-7.651 2.854-9.479 3.404-1.829 7.651-.549 9.479 2.854l2.907 5.412v-69.835c0-3.863 3.137-7 7-7s7 3.137 7 7zm-132.198 54.758-49.381-49.381c-2.732-2.731-2.732-7.167 0-9.899s7.168-2.732 9.9 0l49.38 49.38-1.771-5.881c-1.114-3.7.985-7.608 4.684-8.722 3.7-1.114 7.607.985 8.721 4.685l9.796 32.526c.743 2.468.069 5.145-1.753 6.968-1.823 1.823-4.5 2.496-6.969 1.753l-32.526-9.795c-3.699-1.114-5.798-5.022-4.684-8.721s5.022-5.798 8.721-4.684zm-44.859 122.299h-69.835c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7h69.835l-5.412-2.907c-3.403-1.828-4.682-6.076-2.854-9.479 1.828-3.404 6.075-4.683 9.479-2.855l29.926 16.074c2.271 1.22 3.688 3.589 3.688 6.167 0 2.577-1.417 4.947-3.688 6.166l-29.926 16.074c-3.404 1.828-7.651.549-9.479-2.855-1.828-3.403-.549-7.651 2.854-9.479zm54.758 118.198-49.38 49.38c-2.732 2.732-7.168 2.732-9.9 0s-2.732-7.167 0-9.899l49.381-49.381-5.882 1.772c-3.699 1.114-7.607-.985-8.721-4.685-1.114-3.699.985-7.607 4.684-8.721l32.526-9.795c2.469-.743 5.146-.07 6.969 1.753 1.822 1.823 2.496 4.5 1.753 6.968l-9.796 32.527c-1.114 3.699-5.021 5.798-8.721 4.684-3.699-1.114-5.798-5.022-4.684-8.721zm240.497-240.497 5.882-1.771c3.699-1.114 7.607.985 8.721 4.684s-.985 7.607-4.684 8.721l-32.526 9.795c-2.469.743-5.146.07-6.969-1.753-1.822-1.823-2.496-4.5-1.753-6.968l9.796-32.526c1.114-3.7 5.021-5.799 8.721-4.685 3.699 1.114 5.798 5.022 4.684 8.722l-1.771 5.881 49.38-49.38c2.732-2.732 7.168-2.732 9.9 0s2.732 7.168 0 9.899zm44.859 122.299 5.412 2.906c3.403 1.828 4.682 6.076 2.854 9.479-1.828 3.404-6.075 4.683-9.479 2.855l-29.926-16.074c-2.271-1.219-3.688-3.589-3.688-6.166 0-2.578 1.417-4.947 3.688-6.167l29.926-16.074c3.404-1.828 7.651-.549 9.479 2.855 1.828 3.403.549 7.651-2.854 9.479l-5.412 2.907h69.835c3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7zm-54.758 118.198 1.771 5.882c1.114 3.699-.985 7.607-4.684 8.721-3.7 1.114-7.607-.985-8.721-4.684l-9.796-32.527c-.743-2.468-.069-5.145 1.753-6.968 1.823-1.823 4.5-2.496 6.969-1.753l32.526 9.795c3.699 1.114 5.798 5.022 4.684 8.721-1.114 3.7-5.022 5.799-8.721 4.685l-5.882-1.772 49.381 49.381c2.732 2.732 2.732 7.167 0 9.899s-7.168 2.732-9.9 0z\"></path></svg>				\n									<h5>\n							gennemtænkte løsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"outline\"><path d=\"M486.41,144A28,28,0,0,0,472,92H349.123l5.457-21.828a48.513,48.513,0,0,0-12.848-46.153A41.035,41.035,0,0,0,312.609,12H308a8.009,8.009,0,0,0-8,8V47.413l-19.233,64.112A17.376,17.376,0,0,1,268,123.539V112a4,4,0,0,0-4-4H152a4,4,0,0,0-4,4v72a4,4,0,0,0,8,0V116h72V276H156V248a4,4,0,0,0-8,0v32a4,4,0,0,0,4,4H264a4,4,0,0,0,4-4V268.5h11.168A37.07,37.07,0,0,1,305.092,279a45.025,45.025,0,0,0,31.48,12.752L440,292a27.987,27.987,0,0,0,19.369-48.2,27.987,27.987,0,0,0,16-48A28,28,0,0,0,486.41,144ZM260,276H236V116h24Zm212-88H396a4,4,0,0,0,0,8h60a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h40a20,20,0,0,1,.01,40l-103.428-.25a37.07,37.07,0,0,1-25.924-10.5,45.031,45.031,0,0,0-31.49-12.752H268V131.686a25.317,25.317,0,0,0,20.429-17.862l19.4-64.675A4,4,0,0,0,308,48V20h4.609a33.082,33.082,0,0,1,23.481,9.69,40.507,40.507,0,0,1,10.728,38.541l-6.7,26.8A4,4,0,0,0,344,100H472a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h72a20,20,0,0,1,0,40Z\"></path><path d=\"M194.5,183.243l-1.9-.217a4,4,0,0,0-4.169,2.491L184.29,195.9H135.278l-3.539-9.317a4,4,0,0,0-7.478,2.84l2.459,6.477h-8.474L68.452,156.872a4,4,0,1,0-4.935,6.3L77.6,174.209,56.961,194.48l-6.636-5.491a4,4,0,1,0-5.1,6.163L87.219,229.9a44.1,44.1,0,0,0,28.05,10.1H212a8.009,8.009,0,0,0,8-8V203.9a8.009,8.009,0,0,0-8-8h-8v-2.01A10.708,10.708,0,0,0,194.5,183.243ZM212,203.9V232H115.269a36.081,36.081,0,0,1-22.951-8.264l-29.16-24.128,20.8-20.422L114.4,203.045a4,4,0,0,0,2.468.852H187a4,4,0,0,0,3.715-2.517l3.929-9.843a2.712,2.712,0,0,1,1.356,2.35v6.01a4,4,0,0,0,4,4Z\"></path><path d=\"M223.084,484.672,200.87,469.863V346.36A44.1,44.1,0,0,0,195.327,325l-17.183-30.94a4,4,0,0,0-7,3.884l17.184,30.94a36.073,36.073,0,0,1,4.537,17.478V468H164.333a4,4,0,1,0,0,8h31.321l12,8H152.865V352a4,4,0,0,0-.358-1.655l-25.454-56A4,4,0,0,0,123.411,292H114.2a4,4,0,0,0-3.945,4.658l8.862,53.175a36.016,36.016,0,0,1-1.951,18.949L78.642,468H48.333a4,4,0,1,0,0,8H80.377L92,484H32.088L76.63,361.366a4.017,4.017,0,0,0,.183-2.044L61.1,268H136a4,4,0,0,0,0-8H59.233L30.555,173.966A19.723,19.723,0,0,1,49.27,148H76a12,12,0,0,0,24,0h15.2a21.975,21.975,0,0,1,8.395,1.652l10.889,4.458a4,4,0,1,0,3.032-7.4L126.63,142.25A29.938,29.938,0,0,0,115.2,140H100v-4.527A16.014,16.014,0,0,0,112,120V103.473A16.014,16.014,0,0,0,124,88V80a4,4,0,0,0-4-4H90A22.025,22.025,0,0,0,68,98v18a12.02,12.02,0,0,0,8,11.314V140H49.27a27.723,27.723,0,0,0-26.305,36.5l29.493,88.482,16.29,94.655-46.128,127A4,4,0,0,0,26.38,492h78.485a4,4,0,0,0,2.268-7.3L86.3,470.368l38.318-98.69a44.018,44.018,0,0,0,2.385-23.16L118.921,300h1.914l24.03,52.867V488a4,4,0,0,0,4,4h72a4,4,0,0,0,2.219-7.328ZM76,98A14.015,14.015,0,0,1,90,84h26v4a8.009,8.009,0,0,1-8,8H92a4,4,0,0,0-4,4,11.962,11.962,0,0,1-1.53,5.881A12.044,12.044,0,0,0,76,104.686Zm4,14a3.981,3.981,0,0,1,3.407,1.9,4,4,0,0,0,5.956.975c.207-.171.7-.648.7-.648.032-.028.061-.057.09-.087A19.907,19.907,0,0,0,95.6,104H104v16a8.009,8.009,0,0,1-8,8,12.133,12.133,0,0,1-2.681-.3,4,4,0,1,0-1.775,7.8c.151.035.3.06.456.091V148a4,4,0,1,1-8,0V124a4,4,0,0,0-4-4,4,4,0,0,1,0-8Z\"></path></g></svg>				\n									<h5>\n							arbejde udført med ansvar						\n					</h5>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 12:51:03', '2026-01-26 12:51:03', '', 10, 'https://mrarif.me/cpnordic/?p=498', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(499, 1, '2026-01-26 12:51:03', '2026-01-26 12:51:03', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>					\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle ANMELDELSER\n					</a>\n					<h2>HVORFOR VÆLGE CP NORDIC ApS?</h2>		<p>Når du vælger CP NORDIC ApS, får du:</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 450 450\" width=\"512\"><g><g><path d=\"m225 165.2c-25.9 0-48.9-18.8-53.3-45.2-2.4-14.2.9-28.6 9.3-40.3 8.4-11.8 20.9-19.5 35.1-21.9 29.4-4.9 57.3 15 62.2 44.5 4.9 29.4-15 57.3-44.4 62.2-3 .5-6 .7-8.9.7zm-7.6-99.8c-12.2 2-22.9 8.7-30.1 18.8s-10.1 22.4-8 34.6c3.8 22.7 23.5 38.8 45.7 38.8 2.5 0 5.1-.2 7.6-.6 25.2-4.2 42.3-28.1 38.1-53.4s-28.1-42.4-53.3-38.2z\"></path><path d=\"m255.2 115c-2.1 0-3.8-1.7-3.8-3.8 0-14.6-11.8-26.4-26.4-26.4-2.1 0-3.8-1.7-3.8-3.8s1.7-3.8 3.8-3.8c18.8 0 34.1 15.3 34.1 34.1 0 2-1.8 3.7-3.9 3.7z\"></path><path d=\"m236.1 203h-22.2c-2.1 0-3.8-1.7-3.8-3.8v-14.1c-3.1-.6-6.1-1.4-9.1-2.4l-7 12.2c-1.1 1.8-3.4 2.5-5.3 1.4l-19.2-11.1c-.9-.5-1.5-1.4-1.8-2.3-.3-1-.1-2 .4-2.9l7-12.1c-2.4-2.1-4.6-4.3-6.7-6.6l-12.1 7c-1.8 1.1-4.2.4-5.2-1.4l-11.1-19.2c-1.1-1.8-.4-4.2 1.4-5.2l11.9-6.8c-1-3-1.9-6.1-2.6-9.3h-13.7c-2.1 0-3.8-1.7-3.8-3.8v-22.2c0-2.1 1.7-3.8 3.8-3.8h13.4c.6-3.2 1.4-6.4 2.4-9.5l-11.5-6.6c-1.8-1.1-2.5-3.4-1.4-5.3l11.1-19.6c.5-.9 1.4-1.5 2.3-1.8s2-.1 2.9.4l11.3 6.6c2.2-2.5 4.5-4.8 7-7l-6.5-11.3c-.5-.9-.6-1.9-.4-2.9.3-1 .9-1.8 1.8-2.3l19.2-11.1c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l6.4 11.2c3.1-1.1 6.4-1.9 9.7-2.6v-13c0-2.1 1.7-3.8 3.8-3.8h22.2c2.1 0 3.8 1.7 3.8 3.8v12.8c3.3.7 6.5 1.5 9.7 2.6l6.5-11.2c.5-.9 1.4-1.5 2.3-1.8 1-.3 2-.1 2.9.4l19.2 11.1c.9.5 1.5 1.3 1.8 2.3s.1 2-.4 2.9l-6.5 11.3c2.5 2.2 4.8 4.5 7 7.1l11.3-6.6c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l11.1 19.2c1.1 1.8.4 4.2-1.4 5.3l-11.5 6.6c1 3.1 1.8 6.3 2.5 9.5h13.6c2.1 0 3.8 1.7 3.8 3.8v22.2c0 2.1-1.7 3.8-3.8 3.8h-13.6c-.6 3.1-1.5 6.2-2.5 9.3l11.9 6.8c1.8 1.1 2.5 3.4 1.4 5.2l-11.2 19.5c-1.1 1.8-3.4 2.5-5.2 1.4l-12-7c-2.1 2.4-4.4 4.6-6.7 6.6l7 12.1c.5.9.6 1.9.4 2.9s-.9 1.8-1.8 2.3l-19.2 11.1c-1.8 1.1-4.2.4-5.2-1.4l-7-12.2c-3 1-6 1.8-9.1 2.4v14.1c-.2 2.3-2 4-4.1 4zm-18.4-7.7h14.5v-13.5c0-1.9 1.4-3.5 3.3-3.8 4.7-.7 9.4-2 13.8-3.7 1.8-.7 3.8 0 4.7 1.7l6.7 11.6 12.6-7.3-6.7-11.6c-1-1.6-.5-3.7.9-4.9 3.7-3 7.2-6.4 10.2-10.1 1.2-1.5 3.3-1.8 4.9-.9l11.5 6.6 7.3-12.6-11.3-6.5c-1.6-.9-2.4-3-1.6-4.7 1.8-4.5 3.1-9.2 3.9-14 .3-1.9 1.9-3.2 3.8-3.2h13v-14.6h-12.8c-1.9 0-3.5-1.4-3.8-3.3-.7-4.8-2-9.6-3.7-14.2-.7-1.8 0-3.7 1.7-4.7l10.9-6.3-7.3-12.6-10.8 6.3c-1.6.9-3.7.6-4.9-.9-3.1-3.9-6.6-7.4-10.4-10.6-1.5-1.2-1.9-3.3-.9-4.9l6.2-10.7-12.6-7.3-6.1 10.6c-1 1.6-3 2.3-4.7 1.7-4.6-1.8-9.5-3.1-14.4-3.9-1.9-.3-3.3-1.9-3.3-3.8v-12.2h-14.5v12.3c0 1.9-1.4 3.5-3.3 3.8-5 .8-9.8 2.1-14.4 3.9-1.8.7-3.8 0-4.7-1.7l-6.1-10.6-12.6 7.3 6.2 10.7c.9 1.6.6 3.7-.9 4.9-3.9 3.1-7.4 6.7-10.4 10.6-1.2 1.5-3.3 1.9-4.9.9l-10.8-6.3-7.3 12.6 10.9 6.3c1.6.9 2.3 2.9 1.7 4.7-1.7 4.6-3 9.4-3.7 14.2-.3 1.9-1.9 3.3-3.8 3.3h-12.8v14.5h13c1.9 0 3.5 1.4 3.8 3.2.8 4.8 2.1 9.5 3.9 14 .7 1.8 0 3.8-1.6 4.7l-11.3 6.5 7.3 12.6 11.5-6.6c1.6-.9 3.7-.6 4.9.9 3 3.7 6.5 7.1 10.3 10.1 1.5 1.2 1.9 3.3.9 4.9l-6.7 11.6 12.6 7.3 6.7-11.6c.9-1.6 2.9-2.3 4.7-1.7 4.5 1.7 9.1 2.9 13.8 3.7 1.9.3 3.3 1.9 3.3 3.8z\"></path></g><g><g><g><path d=\"m45.3 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m153.9 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path></g><g><path d=\"m189.3 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.2c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c0 2.1-1.7 3.8-3.8 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m73.3 326.4c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m126 326.4c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m99.7 325.6c-.6 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4s4.1 1.1 4.4 3.2c2.4 16.5 12.3 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m50.2 266.6c-.1 0-.2 0-.3 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.7 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-8.9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.5 2.2zm81.8-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13.1-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.4-.7 2.3-.7z\"></path></g></g></g><g><g><path d=\"m296.1 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m404.7 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path></g><g><path d=\"m440 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.1c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c.2 2.1-1.6 3.8-3.7 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m324 326.3c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m376.7 326.3c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m350.4 325.6c-.5 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4 2.1-.3 4 1.1 4.4 3.2 2.4 16.5 12.4 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m301 266.6c-.1 0-.2 0-.4 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.6 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.4 2.2zm81.7-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.5-.7 2.3-.7z\"></path></g></g></g></g></g></svg>				\n									<h5>\n							et ungt og engageret team						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"496pt\" viewBox=\"0 0 496 496\" width=\"496pt\"><path d=\"m440 328h-28.207031c5.078125-6.703125 8.207031-14.960938 8.207031-24 0-8.824219-7.175781-16-16-16h-12v-19.960938c59.574219-14.445312 104-68.085937 104-132.039062 0-74.992188-61.007812-136-136-136s-136 61.007812-136 136c0 63.953125 44.425781 117.59375 104 132.039062v19.960938h-8.449219c-6.167969 0-12.359375 1.464844-17.886719 4.214844l-50.480468 25.25c-3.320313 1.664062-7.03125 2.535156-10.734375 2.535156h-40.449219v-16h-104v16h56v56h16v-56h16v128h-16v-56h-16v56h-56v16h104v-16h40.449219c3.703125 0 7.414062.871094 10.734375 2.527344l34.488281 17.25c5.519531 2.757812 11.710937 4.222656 17.878906 4.222656h24.449219v24h64v-24h48c13.230469 0 24-10.769531 24-24 0-6.167969-2.40625-11.742188-6.238281-16 3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16 0-13.230469-10.769531-24-24-24zm8 24c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm-208-280c0-66.167969 53.832031-120 120-120s120 53.832031 120 120-53.832031 120-120 120-120-53.832031-120-120zm104 134.976562c5.257812.617188 10.574219 1.023438 16 1.023438s10.742188-.40625 16-1.023438v17.023438h-32zm-40.449219 185.023438c-3.703125 0-7.414062-.871094-10.734375-2.527344l-34.488281-17.25c-5.519531-2.757812-11.710937-4.222656-17.878906-4.222656h-40.449219v-96h40.449219c6.167969 0 12.359375-1.464844 17.886719-4.214844l50.480468-25.25c3.320313-1.664062 7.03125-2.535156 10.734375-2.535156h84.449219c0 13.230469-10.769531 24-24 24h-48.28125l-23.863281 35.808594c-6.101563 9.160156-14.527344 16.589844-24.367188 21.503906-8.753906 4.375-18.542969 6.6875-28.320312 6.6875h-15.167969v16h15.167969c12.246093 0 24.519531-2.894531 35.472656-8.375 12.328125-6.160156 22.878906-15.480469 30.527344-26.945312l6.832031-10.253907v93.574219zm40.449219 24v-136h17.472656c-.898437 2.511719-1.472656 5.183594-1.472656 8 0 6.167969 2.40625 11.742188 6.238281 16-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16 0 10.414062 6.710938 19.214844 16 22.527344v9.472656zm96-24h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8s-3.59375 8-8 8zm0 0\"></path><path d=\"m394.878906 73.007812-7.757812 13.984376c17.816406 9.878906 28.878906 28.664062 28.878906 49.007812h16c0-26.160156-14.222656-50.296875-37.121094-62.992188zm0 0\"></path><path d=\"m360 80c4.734375 0 9.449219.59375 14.007812 1.769531l3.976563-15.503906c-5.855469-1.496094-11.90625-2.265625-17.984375-2.265625zm0 0\"></path><path d=\"m360 48c48.519531 0 88 39.480469 88 88 0 20.753906-7.398438 40.910156-20.832031 56.785156l12.207031 10.34375c15.882812-18.761718 24.625-42.601562 24.625-67.128906 0-57.34375-46.65625-104-104-104-24.527344 0-48.367188 8.753906-67.128906 24.632812l10.335937 12.199219c15.871094-13.433593 36.039063-20.832031 56.792969-20.832031zm0 0\"></path><path d=\"m427.128906 215.367188-10.335937-12.199219c-15.871094 13.433593-36.039063 20.832031-56.792969 20.832031-48.519531 0-88-39.480469-88-88 0-20.753906 7.398438-40.910156 20.832031-56.785156l-12.207031-10.34375c-15.882812 18.761718-24.625 42.601562-24.625 67.128906 0 57.34375 46.65625 104 104 104 24.527344 0 48.367188-8.753906 67.128906-24.632812zm0 0\"></path><path d=\"m121.214844 165.640625c4.953125-1.375 9.695312-3.34375 14.183594-5.878906l9.769531 4.886719 19.472656-19.480469-4.886719-9.769531c2.535156-4.496094 4.503906-9.230469 5.886719-14.183594l10.359375-3.445313v-27.53125l-10.351562-3.453125c-1.375-4.953125-3.34375-9.707031-5.886719-14.183594l4.886719-9.777343-19.472657-19.472657-9.769531 4.886719c-4.484375-2.535156-9.230469-4.503906-14.183594-5.878906l-3.453125-10.359375h-27.539062l-3.445313 10.359375c-4.953125 1.375-9.695312 3.34375-14.183594 5.878906l-9.777343-4.886719-19.472657 19.472657 4.886719 9.777343c-2.535156 4.488282-4.503906 9.230469-5.886719 14.183594l-10.351562 3.445313v27.53125l10.351562 3.453125c1.375 4.953125 3.34375 9.695312 5.886719 14.183594l-4.886719 9.769531 19.472657 19.480469 9.769531-4.886719c4.484375 2.535156 9.230469 4.503906 14.183594 5.878906l3.453125 10.359375h27.539062zm-12.304688-13.679687-2.679687 8.039062h-4.460938l-2.679687-8.039062-4.554688-.90625c-6.128906-1.222657-11.878906-3.605469-17.109375-7.09375l-3.867187-2.578126-7.574219 3.800782-3.160156-3.167969 3.792969-7.582031-2.578126-3.859375c-3.488281-5.222657-5.871093-10.980469-7.09375-17.109375l-.914062-4.554688-8.03125-2.679687v-4.46875l8.03125-2.671875.914062-4.554688c1.222657-6.136718 3.613282-11.886718 7.09375-17.109375l2.578126-3.859375-3.792969-7.589844 3.160156-3.160156 7.574219 3.800782 3.867187-2.578126c5.222657-3.488281 10.980469-5.863281 17.109375-7.09375l4.554688-.90625 2.679687-8.039062h4.460938l2.679687 8.039062 4.554688.90625c6.128906 1.222657 11.878906 3.605469 17.109375 7.09375l3.867187 2.578126 7.574219-3.800782 3.160156 3.160156-3.792969 7.589844 2.578126 3.859375c3.488281 5.214844 5.871093 10.972657 7.09375 17.109375l.914062 4.554688 8.03125 2.679687v4.46875l-8.03125 2.671875-.914062 4.554688c-1.222657 6.128906-3.613282 11.878906-7.09375 17.109375l-2.578126 3.859375 3.792969 7.582031-3.160156 3.167969-7.574219-3.800782-3.867187 2.578126c-5.222657 3.488281-10.980469 5.863281-17.109375 7.09375zm0 0\"></path><path d=\"m104 72c-17.648438 0-32 14.351562-32 32s14.351562 32 32 32 32-14.351562 32-32-14.351562-32-32-32zm0 48c-8.824219 0-16-7.175781-16-16s7.175781-16 16-16 16 7.175781 16 16-7.175781 16-16 16zm0 0\"></path><path d=\"m160 248v-40h48v-208h-208v208h106.664062zm-144-232h176v176h-48v24l-32-24h-96zm0 0\"></path><path d=\"m0 272h16v16h-16zm0 0\"></path><path d=\"m32 272h16v16h-16zm0 0\"></path><path d=\"m64 272h16v16h-16zm0 0\"></path><path d=\"m32 304h16v16h-16zm0 0\"></path><path d=\"m64 304h16v16h-16zm0 0\"></path><path d=\"m0 480h16v16h-16zm0 0\"></path><path d=\"m32 480h16v16h-16zm0 0\"></path><path d=\"m64 480h16v16h-16zm0 0\"></path><path d=\"m32 448h16v16h-16zm0 0\"></path><path d=\"m64 448h16v16h-16zm0 0\"></path></svg>				\n									<h5>\n							fokus på kvalitet og detaljer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m469.12 408.93-67.26-33.63v-22.13c10.71-7.69 18.6-19.07 21.78-32.27h5.28c8.81 0 15.98-7.17 15.98-15.98v-5.29c0-6.35-3.74-11.84-9.12-14.41 5.19-18.64-1.65-39.76-19.44-59.78-12.58-14.16-30.67-22.27-49.62-22.27-18.93 0-37.01 8.12-49.59 22.27-13.38 15.05-20.95 41.01-14.03 59.62-5.56 2.5-9.45 8.09-9.45 14.57v5.29c0 8.81 7.17 15.98 15.98 15.98h5.55c3.16 13.09 10.94 24.39 21.51 32.08v22.32l-67.26 33.63c-16.7 5.87-27.89 21.6-27.89 39.28v41.63c0 3.31 2.69 6 6 6h243.46c3.31 0 6-2.69 6-6v-41.63c0-17.68-11.19-33.41-27.88-39.28zm-62.24-17.7-15.83 27.66-13.29-13.29 19.29-19.29zm-37.61 5.88-20.59-20.58v-16.91c6.41 2.57 13.4 4.01 20.72 4.01 7.22 0 14.11-1.39 20.45-3.9v16.8zm63.63-97.48v5.29c0 2.16-1.82 3.98-3.98 3.98h-3.74c.01-.36.03-.71.03-1.07v-12.18h3.71c2.15-.01 3.98 1.82 3.98 3.98zm-119.29 8.2v1.07h-3.98c-2.16 0-3.98-1.82-3.98-3.98v-5.29c0-2.16 1.82-3.98 3.98-3.98l3.98.22zm1.95-24.19c-7.33-13.69-.89-37.39 10.53-50.24 10.31-11.6 25.12-18.25 40.63-18.25 15.52 0 30.34 6.65 40.65 18.25 8.43 9.48 21.3 27.59 17.4 46.39-5.66-.35-10.67-2.55-14.4-6.36-5.37-5.49-7.72-14-6.63-23.94.29-2.62-1.17-5.13-3.6-6.17s-5.25-.37-6.95 1.65c-19.33 22.92-45.95 36.76-73.9 38.68h-3.73zm10.05 24.19v-12.73c24.57-2.92 47.92-14.05 66.73-31.8 1.43 7.26 4.63 13.6 9.45 18.52 3.27 3.35 7.14 5.89 11.41 7.58v18.42c0 24.15-19.65 43.8-43.8 43.8s-43.79-19.64-43.79-43.79zm15.89 78.48 19.29 19.29-13.29 13.29-15.84-27.66zm3.22 97.53h-39.42v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.76v-35.63c0-12.68 8.1-23.95 20.15-28.05.26-.09.51-.19.75-.31l46.47-23.23 20.07 35.06c.93 1.62 2.56 2.72 4.41 2.97.27.04.53.05.79.05 1.58 0 3.11-.62 4.24-1.76l.14-.14zm12.08 0 7.41-64.69 5.06-5.06 4.84 4.84 7.86 64.92h-25.17zm128.2 0h-39.76v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.18l-6.2-51.17.25.25c1.13 1.13 2.66 1.76 4.24 1.76.26 0 .53-.02.79-.05 1.85-.25 3.48-1.34 4.41-2.97l20.07-35.06 46.47 23.23c.24.12.49.23.75.31 12.05 4.1 20.15 15.38 20.15 28.05v35.65zm-67.04-346.65h-10.84l28.38 39.84 28.38-39.84h-10.84c-3.31 0-6-2.69-6-6v-64.58h-98.7c-3.31 0-6-2.69-6-6s2.69-6 6-6h104.7c3.31 0 6 2.69 6 6v64.58h16.48c2.25 0 4.3 1.25 5.33 3.25s.86 4.4-.45 6.23l-40.02 56.18c-1.13 1.58-2.95 2.52-4.89 2.52s-3.76-.94-4.89-2.52l-40.02-56.18c-1.3-1.83-1.48-4.23-.45-6.23s3.09-3.25 5.33-3.25h16.48v-23.5h-65.38c-3.31 0-6-2.69-6-6s2.69-6 6-6h71.38c3.31 0 6 2.69 6 6v35.5c.02 3.31-2.67 6-5.98 6zm-118.44 50.65v-133.26c0-21.18-17.23-38.41-38.41-38.41h-207.7c-21.18-.01-38.41 17.23-38.41 38.41v133.26c0 21.18 17.23 38.41 38.41 38.41h105.8l64.8 55.11c1.11.94 2.49 1.43 3.89 1.43.85 0 1.71-.18 2.52-.55 2.12-.98 3.48-3.11 3.48-5.45v-50.54h27.21c21.18 0 38.41-17.23 38.41-38.41zm-71.62 26.41c-3.31 0-6 2.69-6 6v43.56l-56.59-48.13c-1.08-.92-2.46-1.43-3.89-1.43h-108.01c-14.56 0-26.41-11.85-26.41-26.41v-133.26c0-14.56 11.85-26.41 26.41-26.41h207.69c14.56 0 26.41 11.85 26.41 26.41v133.26c0 14.56-11.85 26.41-26.41 26.41zm-156.34-87.87h56.97c3.31 0 6-2.69 6-6v-39.2l8.55-8.55c2.34-2.34 2.34-6.14 0-8.49-2.34-2.34-6.14-2.34-8.48 0l-.7.7c-.98-1.97-3.01-3.32-5.36-3.32h-56.98c-3.31 0-6 2.69-6 6v52.85c0 3.32 2.69 6.01 6 6.01zm6-52.86h44.97v2.69l-18.16 18.16-8.84-8.84c-2.34-2.34-6.14-2.34-8.49 0-2.34 2.34-2.34 6.14 0 8.49l13.08 13.08c1.17 1.17 2.71 1.76 4.24 1.76s3.07-.59 4.24-1.76l13.92-13.92v21.2h-44.96zm173.62 3.08c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 31.92c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 36.52c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.68 5.99 6zm0 31.92c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.69 5.99 6zm-119.36 165.01h10.84l-28.38-39.84-28.38 39.84h10.84c3.31 0 6 2.69 6 6v64.58h98.7c3.31 0 6 2.69 6 6s-2.69 6-6 6h-104.69c-3.31 0-6-2.69-6-6v-64.58h-16.48c-2.25 0-4.3-1.25-5.33-3.25s-.86-4.4.45-6.23l40.02-56.18c1.13-1.58 2.95-2.52 4.89-2.52s3.76.94 4.89 2.52l40.02 56.18c1.3 1.83 1.48 4.23.45 6.23s-3.09 3.25-5.33 3.25h-16.48v23.5h65.38c3.31 0 6 2.69 6 6s-2.69 6-6 6h-71.38c-3.31 0-6-2.69-6-6v-35.5c-.03-3.31 2.66-6 5.97-6z\"></path></svg>				\n									<h5>\n							ærlig<br> rådgivning						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 510 510\"><path d=\"m192.036 385.845c-4.787-46.972-19.459-64.336-30.658-82.352-8.672-13.951-15.5-28.245-15.5-54.252 0-60.242 48.865-109.109 109.135-109.109 60.242 0 109.109 48.866 109.109 109.109 0 26.007-6.828 40.301-15.5 54.252-11.199 18.016-25.871 35.38-30.658 82.352 9.985 2.864 17.345 12.101 17.345 22.975v36.44c0 13.109-10.747 23.866-23.893 23.866h-10.334v9.945c0 12.588-10.341 22.929-22.93 22.929h-46.304c-12.589 0-22.93-10.341-22.93-22.929v-9.945h-10.334c-13.146 0-23.893-10.757-23.893-23.866v-36.44c0-10.874 7.36-20.111 17.345-22.975zm111.948-.917c4.199-42.194 15.78-62.332 26.488-79.049 10.147-15.842 19.65-28.207 19.65-56.638 0-52.513-42.597-95.109-95.109-95.109-52.537 0-95.135 42.596-95.135 95.109 0 28.431 9.503 40.796 19.65 56.638 10.708 16.717 22.289 36.855 26.488 79.049zm2.554-78.61c-1.175 13.701-11.985 24.191-24.783 24.191-13.527 0-24.862-12.086-24.862-26.673v-99.328c0-14.12 11.335-26.673 24.862-26.673 11.309 0 21.031 8.139 23.975 19.497 9.12 3.904 15.688 13.438 15.688 24.78 0 1.153-.068 2.289-.201 3.403 5.078 5.326 8.283 12.802 8.283 21.117 0 6.39-1.889 12.262-5.06 17.053 1.996 4.099 3.13 8.773 3.13 13.76 0 14.1-9.065 25.697-21.032 28.873zm-16.452-109.977c-1.964-2.729-4.916-4.506-8.331-4.506-6.192 0-10.862 6.21-10.862 12.673v99.328c0 6.677 4.67 12.673 10.862 12.673 5.516 0 9.822-4.614 10.717-10.425-4.709-1.416-8.923-4.144-12.279-7.814-2.607-2.852-2.409-7.283.443-9.89 2.851-2.607 7.282-2.408 9.889.443 2.416 2.642 5.72 4.356 9.402 4.356 7.733 0 13.643-7.218 13.643-15.734s-5.91-15.734-13.643-15.734c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7 5.352 0 10.388 1.655 14.658 4.533.593-1.743.915-3.634.915-5.612 0-2.11-.366-4.128-1.036-5.972-.769.858-1.588 1.66-2.453 2.397-2.94 2.507-7.361 2.156-9.869-.784-2.507-2.939-2.155-7.361.784-9.868 2.773-2.365 4.492-6.122 4.492-10.293 0-6.072-3.705-11.374-8.898-12.467-.154-.023-.307-.052-.458-.085-.499-.08-1.01-.121-1.532-.121-2.947 0-5.591 1.389-7.515 3.525-2.585 2.87-7.015 3.101-9.886.515-2.87-2.586-3.101-7.015-.515-9.886 3.111-3.453 7.059-5.988 11.472-7.252zm-104.526 67.344c-3.171-4.791-5.06-10.663-5.06-17.053 0-8.307 3.198-15.777 8.284-21.104-.133-1.118-.202-2.258-.202-3.416 0-11.354 6.582-20.897 15.717-24.792 2.948-11.354 12.67-19.485 23.946-19.485 13.56 0 24.888 12.555 24.888 26.673v99.328c0 14.585-11.328 26.673-24.888 26.673-12.765 0-23.578-10.484-24.757-24.184-11.98-3.166-21.058-14.769-21.058-28.88 0-4.987 1.134-9.661 3.13-13.76zm9.982-23.036c-.675 1.847-1.042 3.869-1.042 5.983 0 1.978.322 3.869.915 5.612 4.27-2.878 9.306-4.533 14.658-4.533 3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7-7.733 0-13.643 7.218-13.643 15.734s5.91 15.734 13.643 15.734c3.682 0 6.986-1.714 9.402-4.356 2.607-2.851 7.038-3.05 9.889-.443 2.852 2.607 3.05 7.038.443 9.89-3.35 3.664-7.556 6.389-12.255 7.807.891 5.813 5.192 10.432 10.693 10.432 6.21 0 10.888-5.993 10.888-12.673v-99.328c0-6.466-4.678-12.673-10.888-12.673-3.404 0-6.349 1.777-8.309 4.507 4.421 1.264 8.367 3.8 11.476 7.251 2.586 2.871 2.355 7.3-.516 9.886-2.87 2.586-7.3 2.355-9.886-.515-1.926-2.138-4.574-3.525-7.54-3.525-.493 0-.976.037-1.448.108-.196.045-.395.082-.596.11-5.165 1.118-8.844 6.404-8.844 12.455 0 1.243.153 2.45.442 3.594.101.284.183.572.246.862.748 2.326 2.071 4.346 3.814 5.823 2.947 2.498 3.311 6.919.813 9.866s-6.919 3.312-9.866.814c-.878-.745-1.71-1.554-2.489-2.422zm3.042 158.279c-5.442 0-9.893 4.451-9.893 9.892v36.44c0 5.423 4.454 9.866 9.893 9.866h17.334c3.866 0 7 3.134 7 7v16.945c0 4.902 4.027 8.929 8.93 8.929h46.304c4.903 0 8.93-4.027 8.93-8.929v-16.945c0-3.866 3.134-7 7-7h17.334c5.439 0 9.893-4.443 9.893-9.866v-36.44c0-5.441-4.451-9.892-9.893-9.892zm63.416-314.093 2.907-5.412c1.828-3.403 6.075-4.683 9.479-2.854 3.403 1.828 4.682 6.075 2.854 9.479l-16.073 29.925c-1.22 2.271-3.589 3.688-6.167 3.688s-4.947-1.417-6.167-3.688l-16.073-29.925c-1.828-3.404-.549-7.651 2.854-9.479 3.404-1.829 7.651-.549 9.479 2.854l2.907 5.412v-69.835c0-3.863 3.137-7 7-7s7 3.137 7 7zm-132.198 54.758-49.381-49.381c-2.732-2.731-2.732-7.167 0-9.899s7.168-2.732 9.9 0l49.38 49.38-1.771-5.881c-1.114-3.7.985-7.608 4.684-8.722 3.7-1.114 7.607.985 8.721 4.685l9.796 32.526c.743 2.468.069 5.145-1.753 6.968-1.823 1.823-4.5 2.496-6.969 1.753l-32.526-9.795c-3.699-1.114-5.798-5.022-4.684-8.721s5.022-5.798 8.721-4.684zm-44.859 122.299h-69.835c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7h69.835l-5.412-2.907c-3.403-1.828-4.682-6.076-2.854-9.479 1.828-3.404 6.075-4.683 9.479-2.855l29.926 16.074c2.271 1.22 3.688 3.589 3.688 6.167 0 2.577-1.417 4.947-3.688 6.166l-29.926 16.074c-3.404 1.828-7.651.549-9.479-2.855-1.828-3.403-.549-7.651 2.854-9.479zm54.758 118.198-49.38 49.38c-2.732 2.732-7.168 2.732-9.9 0s-2.732-7.167 0-9.899l49.381-49.381-5.882 1.772c-3.699 1.114-7.607-.985-8.721-4.685-1.114-3.699.985-7.607 4.684-8.721l32.526-9.795c2.469-.743 5.146-.07 6.969 1.753 1.822 1.823 2.496 4.5 1.753 6.968l-9.796 32.527c-1.114 3.699-5.021 5.798-8.721 4.684-3.699-1.114-5.798-5.022-4.684-8.721zm240.497-240.497 5.882-1.771c3.699-1.114 7.607.985 8.721 4.684s-.985 7.607-4.684 8.721l-32.526 9.795c-2.469.743-5.146.07-6.969-1.753-1.822-1.823-2.496-4.5-1.753-6.968l9.796-32.526c1.114-3.7 5.021-5.799 8.721-4.685 3.699 1.114 5.798 5.022 4.684 8.722l-1.771 5.881 49.38-49.38c2.732-2.732 7.168-2.732 9.9 0s2.732 7.168 0 9.899zm44.859 122.299 5.412 2.906c3.403 1.828 4.682 6.076 2.854 9.479-1.828 3.404-6.075 4.683-9.479 2.855l-29.926-16.074c-2.271-1.219-3.688-3.589-3.688-6.166 0-2.578 1.417-4.947 3.688-6.167l29.926-16.074c3.404-1.828 7.651-.549 9.479 2.855 1.828 3.403.549 7.651-2.854 9.479l-5.412 2.907h69.835c3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7zm-54.758 118.198 1.771 5.882c1.114 3.699-.985 7.607-4.684 8.721-3.7 1.114-7.607-.985-8.721-4.684l-9.796-32.527c-.743-2.468-.069-5.145 1.753-6.968 1.823-1.823 4.5-2.496 6.969-1.753l32.526 9.795c3.699 1.114 5.798 5.022 4.684 8.721-1.114 3.7-5.022 5.799-8.721 4.685l-5.882-1.772 49.381 49.381c2.732 2.732 2.732 7.167 0 9.899s-7.168 2.732-9.9 0z\"></path></svg>				\n									<h5>\n							gennemtænkte løsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"outline\"><path d=\"M486.41,144A28,28,0,0,0,472,92H349.123l5.457-21.828a48.513,48.513,0,0,0-12.848-46.153A41.035,41.035,0,0,0,312.609,12H308a8.009,8.009,0,0,0-8,8V47.413l-19.233,64.112A17.376,17.376,0,0,1,268,123.539V112a4,4,0,0,0-4-4H152a4,4,0,0,0-4,4v72a4,4,0,0,0,8,0V116h72V276H156V248a4,4,0,0,0-8,0v32a4,4,0,0,0,4,4H264a4,4,0,0,0,4-4V268.5h11.168A37.07,37.07,0,0,1,305.092,279a45.025,45.025,0,0,0,31.48,12.752L440,292a27.987,27.987,0,0,0,19.369-48.2,27.987,27.987,0,0,0,16-48A28,28,0,0,0,486.41,144ZM260,276H236V116h24Zm212-88H396a4,4,0,0,0,0,8h60a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h40a20,20,0,0,1,.01,40l-103.428-.25a37.07,37.07,0,0,1-25.924-10.5,45.031,45.031,0,0,0-31.49-12.752H268V131.686a25.317,25.317,0,0,0,20.429-17.862l19.4-64.675A4,4,0,0,0,308,48V20h4.609a33.082,33.082,0,0,1,23.481,9.69,40.507,40.507,0,0,1,10.728,38.541l-6.7,26.8A4,4,0,0,0,344,100H472a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h72a20,20,0,0,1,0,40Z\"></path><path d=\"M194.5,183.243l-1.9-.217a4,4,0,0,0-4.169,2.491L184.29,195.9H135.278l-3.539-9.317a4,4,0,0,0-7.478,2.84l2.459,6.477h-8.474L68.452,156.872a4,4,0,1,0-4.935,6.3L77.6,174.209,56.961,194.48l-6.636-5.491a4,4,0,1,0-5.1,6.163L87.219,229.9a44.1,44.1,0,0,0,28.05,10.1H212a8.009,8.009,0,0,0,8-8V203.9a8.009,8.009,0,0,0-8-8h-8v-2.01A10.708,10.708,0,0,0,194.5,183.243ZM212,203.9V232H115.269a36.081,36.081,0,0,1-22.951-8.264l-29.16-24.128,20.8-20.422L114.4,203.045a4,4,0,0,0,2.468.852H187a4,4,0,0,0,3.715-2.517l3.929-9.843a2.712,2.712,0,0,1,1.356,2.35v6.01a4,4,0,0,0,4,4Z\"></path><path d=\"M223.084,484.672,200.87,469.863V346.36A44.1,44.1,0,0,0,195.327,325l-17.183-30.94a4,4,0,0,0-7,3.884l17.184,30.94a36.073,36.073,0,0,1,4.537,17.478V468H164.333a4,4,0,1,0,0,8h31.321l12,8H152.865V352a4,4,0,0,0-.358-1.655l-25.454-56A4,4,0,0,0,123.411,292H114.2a4,4,0,0,0-3.945,4.658l8.862,53.175a36.016,36.016,0,0,1-1.951,18.949L78.642,468H48.333a4,4,0,1,0,0,8H80.377L92,484H32.088L76.63,361.366a4.017,4.017,0,0,0,.183-2.044L61.1,268H136a4,4,0,0,0,0-8H59.233L30.555,173.966A19.723,19.723,0,0,1,49.27,148H76a12,12,0,0,0,24,0h15.2a21.975,21.975,0,0,1,8.395,1.652l10.889,4.458a4,4,0,1,0,3.032-7.4L126.63,142.25A29.938,29.938,0,0,0,115.2,140H100v-4.527A16.014,16.014,0,0,0,112,120V103.473A16.014,16.014,0,0,0,124,88V80a4,4,0,0,0-4-4H90A22.025,22.025,0,0,0,68,98v18a12.02,12.02,0,0,0,8,11.314V140H49.27a27.723,27.723,0,0,0-26.305,36.5l29.493,88.482,16.29,94.655-46.128,127A4,4,0,0,0,26.38,492h78.485a4,4,0,0,0,2.268-7.3L86.3,470.368l38.318-98.69a44.018,44.018,0,0,0,2.385-23.16L118.921,300h1.914l24.03,52.867V488a4,4,0,0,0,4,4h72a4,4,0,0,0,2.219-7.328ZM76,98A14.015,14.015,0,0,1,90,84h26v4a8.009,8.009,0,0,1-8,8H92a4,4,0,0,0-4,4,11.962,11.962,0,0,1-1.53,5.881A12.044,12.044,0,0,0,76,104.686Zm4,14a3.981,3.981,0,0,1,3.407,1.9,4,4,0,0,0,5.956.975c.207-.171.7-.648.7-.648.032-.028.061-.057.09-.087A19.907,19.907,0,0,0,95.6,104H104v16a8.009,8.009,0,0,1-8,8,12.133,12.133,0,0,1-2.681-.3,4,4,0,1,0-1.775,7.8c.151.035.3.06.456.091V148a4,4,0,1,1-8,0V124a4,4,0,0,0-4-4,4,4,0,0,1,0-8Z\"></path></g></svg>				\n									<h5>\n							arbejde udført med ansvar						\n					</h5>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 12:51:03', '2026-01-26 12:51:03', '', 10, 'https://mrarif.me/cpnordic/?p=499', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(500, 1, '2026-01-26 12:51:04', '2026-01-26 12:51:04', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>					\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle ANMELDELSER\n					</a>\n					<h2>HVORFOR VÆLGE CP NORDIC ApS?</h2>		<p>Når du vælger CP NORDIC ApS, får du:</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 450 450\" width=\"512\"><g><g><path d=\"m225 165.2c-25.9 0-48.9-18.8-53.3-45.2-2.4-14.2.9-28.6 9.3-40.3 8.4-11.8 20.9-19.5 35.1-21.9 29.4-4.9 57.3 15 62.2 44.5 4.9 29.4-15 57.3-44.4 62.2-3 .5-6 .7-8.9.7zm-7.6-99.8c-12.2 2-22.9 8.7-30.1 18.8s-10.1 22.4-8 34.6c3.8 22.7 23.5 38.8 45.7 38.8 2.5 0 5.1-.2 7.6-.6 25.2-4.2 42.3-28.1 38.1-53.4s-28.1-42.4-53.3-38.2z\"></path><path d=\"m255.2 115c-2.1 0-3.8-1.7-3.8-3.8 0-14.6-11.8-26.4-26.4-26.4-2.1 0-3.8-1.7-3.8-3.8s1.7-3.8 3.8-3.8c18.8 0 34.1 15.3 34.1 34.1 0 2-1.8 3.7-3.9 3.7z\"></path><path d=\"m236.1 203h-22.2c-2.1 0-3.8-1.7-3.8-3.8v-14.1c-3.1-.6-6.1-1.4-9.1-2.4l-7 12.2c-1.1 1.8-3.4 2.5-5.3 1.4l-19.2-11.1c-.9-.5-1.5-1.4-1.8-2.3-.3-1-.1-2 .4-2.9l7-12.1c-2.4-2.1-4.6-4.3-6.7-6.6l-12.1 7c-1.8 1.1-4.2.4-5.2-1.4l-11.1-19.2c-1.1-1.8-.4-4.2 1.4-5.2l11.9-6.8c-1-3-1.9-6.1-2.6-9.3h-13.7c-2.1 0-3.8-1.7-3.8-3.8v-22.2c0-2.1 1.7-3.8 3.8-3.8h13.4c.6-3.2 1.4-6.4 2.4-9.5l-11.5-6.6c-1.8-1.1-2.5-3.4-1.4-5.3l11.1-19.6c.5-.9 1.4-1.5 2.3-1.8s2-.1 2.9.4l11.3 6.6c2.2-2.5 4.5-4.8 7-7l-6.5-11.3c-.5-.9-.6-1.9-.4-2.9.3-1 .9-1.8 1.8-2.3l19.2-11.1c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l6.4 11.2c3.1-1.1 6.4-1.9 9.7-2.6v-13c0-2.1 1.7-3.8 3.8-3.8h22.2c2.1 0 3.8 1.7 3.8 3.8v12.8c3.3.7 6.5 1.5 9.7 2.6l6.5-11.2c.5-.9 1.4-1.5 2.3-1.8 1-.3 2-.1 2.9.4l19.2 11.1c.9.5 1.5 1.3 1.8 2.3s.1 2-.4 2.9l-6.5 11.3c2.5 2.2 4.8 4.5 7 7.1l11.3-6.6c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l11.1 19.2c1.1 1.8.4 4.2-1.4 5.3l-11.5 6.6c1 3.1 1.8 6.3 2.5 9.5h13.6c2.1 0 3.8 1.7 3.8 3.8v22.2c0 2.1-1.7 3.8-3.8 3.8h-13.6c-.6 3.1-1.5 6.2-2.5 9.3l11.9 6.8c1.8 1.1 2.5 3.4 1.4 5.2l-11.2 19.5c-1.1 1.8-3.4 2.5-5.2 1.4l-12-7c-2.1 2.4-4.4 4.6-6.7 6.6l7 12.1c.5.9.6 1.9.4 2.9s-.9 1.8-1.8 2.3l-19.2 11.1c-1.8 1.1-4.2.4-5.2-1.4l-7-12.2c-3 1-6 1.8-9.1 2.4v14.1c-.2 2.3-2 4-4.1 4zm-18.4-7.7h14.5v-13.5c0-1.9 1.4-3.5 3.3-3.8 4.7-.7 9.4-2 13.8-3.7 1.8-.7 3.8 0 4.7 1.7l6.7 11.6 12.6-7.3-6.7-11.6c-1-1.6-.5-3.7.9-4.9 3.7-3 7.2-6.4 10.2-10.1 1.2-1.5 3.3-1.8 4.9-.9l11.5 6.6 7.3-12.6-11.3-6.5c-1.6-.9-2.4-3-1.6-4.7 1.8-4.5 3.1-9.2 3.9-14 .3-1.9 1.9-3.2 3.8-3.2h13v-14.6h-12.8c-1.9 0-3.5-1.4-3.8-3.3-.7-4.8-2-9.6-3.7-14.2-.7-1.8 0-3.7 1.7-4.7l10.9-6.3-7.3-12.6-10.8 6.3c-1.6.9-3.7.6-4.9-.9-3.1-3.9-6.6-7.4-10.4-10.6-1.5-1.2-1.9-3.3-.9-4.9l6.2-10.7-12.6-7.3-6.1 10.6c-1 1.6-3 2.3-4.7 1.7-4.6-1.8-9.5-3.1-14.4-3.9-1.9-.3-3.3-1.9-3.3-3.8v-12.2h-14.5v12.3c0 1.9-1.4 3.5-3.3 3.8-5 .8-9.8 2.1-14.4 3.9-1.8.7-3.8 0-4.7-1.7l-6.1-10.6-12.6 7.3 6.2 10.7c.9 1.6.6 3.7-.9 4.9-3.9 3.1-7.4 6.7-10.4 10.6-1.2 1.5-3.3 1.9-4.9.9l-10.8-6.3-7.3 12.6 10.9 6.3c1.6.9 2.3 2.9 1.7 4.7-1.7 4.6-3 9.4-3.7 14.2-.3 1.9-1.9 3.3-3.8 3.3h-12.8v14.5h13c1.9 0 3.5 1.4 3.8 3.2.8 4.8 2.1 9.5 3.9 14 .7 1.8 0 3.8-1.6 4.7l-11.3 6.5 7.3 12.6 11.5-6.6c1.6-.9 3.7-.6 4.9.9 3 3.7 6.5 7.1 10.3 10.1 1.5 1.2 1.9 3.3.9 4.9l-6.7 11.6 12.6 7.3 6.7-11.6c.9-1.6 2.9-2.3 4.7-1.7 4.5 1.7 9.1 2.9 13.8 3.7 1.9.3 3.3 1.9 3.3 3.8z\"></path></g><g><g><g><path d=\"m45.3 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m153.9 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path></g><g><path d=\"m189.3 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.2c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c0 2.1-1.7 3.8-3.8 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m73.3 326.4c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m126 326.4c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m99.7 325.6c-.6 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4s4.1 1.1 4.4 3.2c2.4 16.5 12.3 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m50.2 266.6c-.1 0-.2 0-.3 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.7 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-8.9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.5 2.2zm81.8-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13.1-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.4-.7 2.3-.7z\"></path></g></g></g><g><g><path d=\"m296.1 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m404.7 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path></g><g><path d=\"m440 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.1c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c.2 2.1-1.6 3.8-3.7 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m324 326.3c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m376.7 326.3c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m350.4 325.6c-.5 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4 2.1-.3 4 1.1 4.4 3.2 2.4 16.5 12.4 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m301 266.6c-.1 0-.2 0-.4 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.6 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.4 2.2zm81.7-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.5-.7 2.3-.7z\"></path></g></g></g></g></g></svg>				\n									<h5>\n							et ungt og engageret team						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"496pt\" viewBox=\"0 0 496 496\" width=\"496pt\"><path d=\"m440 328h-28.207031c5.078125-6.703125 8.207031-14.960938 8.207031-24 0-8.824219-7.175781-16-16-16h-12v-19.960938c59.574219-14.445312 104-68.085937 104-132.039062 0-74.992188-61.007812-136-136-136s-136 61.007812-136 136c0 63.953125 44.425781 117.59375 104 132.039062v19.960938h-8.449219c-6.167969 0-12.359375 1.464844-17.886719 4.214844l-50.480468 25.25c-3.320313 1.664062-7.03125 2.535156-10.734375 2.535156h-40.449219v-16h-104v16h56v56h16v-56h16v128h-16v-56h-16v56h-56v16h104v-16h40.449219c3.703125 0 7.414062.871094 10.734375 2.527344l34.488281 17.25c5.519531 2.757812 11.710937 4.222656 17.878906 4.222656h24.449219v24h64v-24h48c13.230469 0 24-10.769531 24-24 0-6.167969-2.40625-11.742188-6.238281-16 3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16 0-13.230469-10.769531-24-24-24zm8 24c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm-208-280c0-66.167969 53.832031-120 120-120s120 53.832031 120 120-53.832031 120-120 120-120-53.832031-120-120zm104 134.976562c5.257812.617188 10.574219 1.023438 16 1.023438s10.742188-.40625 16-1.023438v17.023438h-32zm-40.449219 185.023438c-3.703125 0-7.414062-.871094-10.734375-2.527344l-34.488281-17.25c-5.519531-2.757812-11.710937-4.222656-17.878906-4.222656h-40.449219v-96h40.449219c6.167969 0 12.359375-1.464844 17.886719-4.214844l50.480468-25.25c3.320313-1.664062 7.03125-2.535156 10.734375-2.535156h84.449219c0 13.230469-10.769531 24-24 24h-48.28125l-23.863281 35.808594c-6.101563 9.160156-14.527344 16.589844-24.367188 21.503906-8.753906 4.375-18.542969 6.6875-28.320312 6.6875h-15.167969v16h15.167969c12.246093 0 24.519531-2.894531 35.472656-8.375 12.328125-6.160156 22.878906-15.480469 30.527344-26.945312l6.832031-10.253907v93.574219zm40.449219 24v-136h17.472656c-.898437 2.511719-1.472656 5.183594-1.472656 8 0 6.167969 2.40625 11.742188 6.238281 16-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16 0 10.414062 6.710938 19.214844 16 22.527344v9.472656zm96-24h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8s-3.59375 8-8 8zm0 0\"></path><path d=\"m394.878906 73.007812-7.757812 13.984376c17.816406 9.878906 28.878906 28.664062 28.878906 49.007812h16c0-26.160156-14.222656-50.296875-37.121094-62.992188zm0 0\"></path><path d=\"m360 80c4.734375 0 9.449219.59375 14.007812 1.769531l3.976563-15.503906c-5.855469-1.496094-11.90625-2.265625-17.984375-2.265625zm0 0\"></path><path d=\"m360 48c48.519531 0 88 39.480469 88 88 0 20.753906-7.398438 40.910156-20.832031 56.785156l12.207031 10.34375c15.882812-18.761718 24.625-42.601562 24.625-67.128906 0-57.34375-46.65625-104-104-104-24.527344 0-48.367188 8.753906-67.128906 24.632812l10.335937 12.199219c15.871094-13.433593 36.039063-20.832031 56.792969-20.832031zm0 0\"></path><path d=\"m427.128906 215.367188-10.335937-12.199219c-15.871094 13.433593-36.039063 20.832031-56.792969 20.832031-48.519531 0-88-39.480469-88-88 0-20.753906 7.398438-40.910156 20.832031-56.785156l-12.207031-10.34375c-15.882812 18.761718-24.625 42.601562-24.625 67.128906 0 57.34375 46.65625 104 104 104 24.527344 0 48.367188-8.753906 67.128906-24.632812zm0 0\"></path><path d=\"m121.214844 165.640625c4.953125-1.375 9.695312-3.34375 14.183594-5.878906l9.769531 4.886719 19.472656-19.480469-4.886719-9.769531c2.535156-4.496094 4.503906-9.230469 5.886719-14.183594l10.359375-3.445313v-27.53125l-10.351562-3.453125c-1.375-4.953125-3.34375-9.707031-5.886719-14.183594l4.886719-9.777343-19.472657-19.472657-9.769531 4.886719c-4.484375-2.535156-9.230469-4.503906-14.183594-5.878906l-3.453125-10.359375h-27.539062l-3.445313 10.359375c-4.953125 1.375-9.695312 3.34375-14.183594 5.878906l-9.777343-4.886719-19.472657 19.472657 4.886719 9.777343c-2.535156 4.488282-4.503906 9.230469-5.886719 14.183594l-10.351562 3.445313v27.53125l10.351562 3.453125c1.375 4.953125 3.34375 9.695312 5.886719 14.183594l-4.886719 9.769531 19.472657 19.480469 9.769531-4.886719c4.484375 2.535156 9.230469 4.503906 14.183594 5.878906l3.453125 10.359375h27.539062zm-12.304688-13.679687-2.679687 8.039062h-4.460938l-2.679687-8.039062-4.554688-.90625c-6.128906-1.222657-11.878906-3.605469-17.109375-7.09375l-3.867187-2.578126-7.574219 3.800782-3.160156-3.167969 3.792969-7.582031-2.578126-3.859375c-3.488281-5.222657-5.871093-10.980469-7.09375-17.109375l-.914062-4.554688-8.03125-2.679687v-4.46875l8.03125-2.671875.914062-4.554688c1.222657-6.136718 3.613282-11.886718 7.09375-17.109375l2.578126-3.859375-3.792969-7.589844 3.160156-3.160156 7.574219 3.800782 3.867187-2.578126c5.222657-3.488281 10.980469-5.863281 17.109375-7.09375l4.554688-.90625 2.679687-8.039062h4.460938l2.679687 8.039062 4.554688.90625c6.128906 1.222657 11.878906 3.605469 17.109375 7.09375l3.867187 2.578126 7.574219-3.800782 3.160156 3.160156-3.792969 7.589844 2.578126 3.859375c3.488281 5.214844 5.871093 10.972657 7.09375 17.109375l.914062 4.554688 8.03125 2.679687v4.46875l-8.03125 2.671875-.914062 4.554688c-1.222657 6.128906-3.613282 11.878906-7.09375 17.109375l-2.578126 3.859375 3.792969 7.582031-3.160156 3.167969-7.574219-3.800782-3.867187 2.578126c-5.222657 3.488281-10.980469 5.863281-17.109375 7.09375zm0 0\"></path><path d=\"m104 72c-17.648438 0-32 14.351562-32 32s14.351562 32 32 32 32-14.351562 32-32-14.351562-32-32-32zm0 48c-8.824219 0-16-7.175781-16-16s7.175781-16 16-16 16 7.175781 16 16-7.175781 16-16 16zm0 0\"></path><path d=\"m160 248v-40h48v-208h-208v208h106.664062zm-144-232h176v176h-48v24l-32-24h-96zm0 0\"></path><path d=\"m0 272h16v16h-16zm0 0\"></path><path d=\"m32 272h16v16h-16zm0 0\"></path><path d=\"m64 272h16v16h-16zm0 0\"></path><path d=\"m32 304h16v16h-16zm0 0\"></path><path d=\"m64 304h16v16h-16zm0 0\"></path><path d=\"m0 480h16v16h-16zm0 0\"></path><path d=\"m32 480h16v16h-16zm0 0\"></path><path d=\"m64 480h16v16h-16zm0 0\"></path><path d=\"m32 448h16v16h-16zm0 0\"></path><path d=\"m64 448h16v16h-16zm0 0\"></path></svg>				\n									<h5>\n							fokus på kvalitet og detaljer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m469.12 408.93-67.26-33.63v-22.13c10.71-7.69 18.6-19.07 21.78-32.27h5.28c8.81 0 15.98-7.17 15.98-15.98v-5.29c0-6.35-3.74-11.84-9.12-14.41 5.19-18.64-1.65-39.76-19.44-59.78-12.58-14.16-30.67-22.27-49.62-22.27-18.93 0-37.01 8.12-49.59 22.27-13.38 15.05-20.95 41.01-14.03 59.62-5.56 2.5-9.45 8.09-9.45 14.57v5.29c0 8.81 7.17 15.98 15.98 15.98h5.55c3.16 13.09 10.94 24.39 21.51 32.08v22.32l-67.26 33.63c-16.7 5.87-27.89 21.6-27.89 39.28v41.63c0 3.31 2.69 6 6 6h243.46c3.31 0 6-2.69 6-6v-41.63c0-17.68-11.19-33.41-27.88-39.28zm-62.24-17.7-15.83 27.66-13.29-13.29 19.29-19.29zm-37.61 5.88-20.59-20.58v-16.91c6.41 2.57 13.4 4.01 20.72 4.01 7.22 0 14.11-1.39 20.45-3.9v16.8zm63.63-97.48v5.29c0 2.16-1.82 3.98-3.98 3.98h-3.74c.01-.36.03-.71.03-1.07v-12.18h3.71c2.15-.01 3.98 1.82 3.98 3.98zm-119.29 8.2v1.07h-3.98c-2.16 0-3.98-1.82-3.98-3.98v-5.29c0-2.16 1.82-3.98 3.98-3.98l3.98.22zm1.95-24.19c-7.33-13.69-.89-37.39 10.53-50.24 10.31-11.6 25.12-18.25 40.63-18.25 15.52 0 30.34 6.65 40.65 18.25 8.43 9.48 21.3 27.59 17.4 46.39-5.66-.35-10.67-2.55-14.4-6.36-5.37-5.49-7.72-14-6.63-23.94.29-2.62-1.17-5.13-3.6-6.17s-5.25-.37-6.95 1.65c-19.33 22.92-45.95 36.76-73.9 38.68h-3.73zm10.05 24.19v-12.73c24.57-2.92 47.92-14.05 66.73-31.8 1.43 7.26 4.63 13.6 9.45 18.52 3.27 3.35 7.14 5.89 11.41 7.58v18.42c0 24.15-19.65 43.8-43.8 43.8s-43.79-19.64-43.79-43.79zm15.89 78.48 19.29 19.29-13.29 13.29-15.84-27.66zm3.22 97.53h-39.42v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.76v-35.63c0-12.68 8.1-23.95 20.15-28.05.26-.09.51-.19.75-.31l46.47-23.23 20.07 35.06c.93 1.62 2.56 2.72 4.41 2.97.27.04.53.05.79.05 1.58 0 3.11-.62 4.24-1.76l.14-.14zm12.08 0 7.41-64.69 5.06-5.06 4.84 4.84 7.86 64.92h-25.17zm128.2 0h-39.76v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.18l-6.2-51.17.25.25c1.13 1.13 2.66 1.76 4.24 1.76.26 0 .53-.02.79-.05 1.85-.25 3.48-1.34 4.41-2.97l20.07-35.06 46.47 23.23c.24.12.49.23.75.31 12.05 4.1 20.15 15.38 20.15 28.05v35.65zm-67.04-346.65h-10.84l28.38 39.84 28.38-39.84h-10.84c-3.31 0-6-2.69-6-6v-64.58h-98.7c-3.31 0-6-2.69-6-6s2.69-6 6-6h104.7c3.31 0 6 2.69 6 6v64.58h16.48c2.25 0 4.3 1.25 5.33 3.25s.86 4.4-.45 6.23l-40.02 56.18c-1.13 1.58-2.95 2.52-4.89 2.52s-3.76-.94-4.89-2.52l-40.02-56.18c-1.3-1.83-1.48-4.23-.45-6.23s3.09-3.25 5.33-3.25h16.48v-23.5h-65.38c-3.31 0-6-2.69-6-6s2.69-6 6-6h71.38c3.31 0 6 2.69 6 6v35.5c.02 3.31-2.67 6-5.98 6zm-118.44 50.65v-133.26c0-21.18-17.23-38.41-38.41-38.41h-207.7c-21.18-.01-38.41 17.23-38.41 38.41v133.26c0 21.18 17.23 38.41 38.41 38.41h105.8l64.8 55.11c1.11.94 2.49 1.43 3.89 1.43.85 0 1.71-.18 2.52-.55 2.12-.98 3.48-3.11 3.48-5.45v-50.54h27.21c21.18 0 38.41-17.23 38.41-38.41zm-71.62 26.41c-3.31 0-6 2.69-6 6v43.56l-56.59-48.13c-1.08-.92-2.46-1.43-3.89-1.43h-108.01c-14.56 0-26.41-11.85-26.41-26.41v-133.26c0-14.56 11.85-26.41 26.41-26.41h207.69c14.56 0 26.41 11.85 26.41 26.41v133.26c0 14.56-11.85 26.41-26.41 26.41zm-156.34-87.87h56.97c3.31 0 6-2.69 6-6v-39.2l8.55-8.55c2.34-2.34 2.34-6.14 0-8.49-2.34-2.34-6.14-2.34-8.48 0l-.7.7c-.98-1.97-3.01-3.32-5.36-3.32h-56.98c-3.31 0-6 2.69-6 6v52.85c0 3.32 2.69 6.01 6 6.01zm6-52.86h44.97v2.69l-18.16 18.16-8.84-8.84c-2.34-2.34-6.14-2.34-8.49 0-2.34 2.34-2.34 6.14 0 8.49l13.08 13.08c1.17 1.17 2.71 1.76 4.24 1.76s3.07-.59 4.24-1.76l13.92-13.92v21.2h-44.96zm173.62 3.08c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 31.92c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 36.52c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.68 5.99 6zm0 31.92c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.69 5.99 6zm-119.36 165.01h10.84l-28.38-39.84-28.38 39.84h10.84c3.31 0 6 2.69 6 6v64.58h98.7c3.31 0 6 2.69 6 6s-2.69 6-6 6h-104.69c-3.31 0-6-2.69-6-6v-64.58h-16.48c-2.25 0-4.3-1.25-5.33-3.25s-.86-4.4.45-6.23l40.02-56.18c1.13-1.58 2.95-2.52 4.89-2.52s3.76.94 4.89 2.52l40.02 56.18c1.3 1.83 1.48 4.23.45 6.23s-3.09 3.25-5.33 3.25h-16.48v23.5h65.38c3.31 0 6 2.69 6 6s-2.69 6-6 6h-71.38c-3.31 0-6-2.69-6-6v-35.5c-.03-3.31 2.66-6 5.97-6z\"></path></svg>				\n									<h5>\n							ærlig<br> rådgivning						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 510 510\"><path d=\"m192.036 385.845c-4.787-46.972-19.459-64.336-30.658-82.352-8.672-13.951-15.5-28.245-15.5-54.252 0-60.242 48.865-109.109 109.135-109.109 60.242 0 109.109 48.866 109.109 109.109 0 26.007-6.828 40.301-15.5 54.252-11.199 18.016-25.871 35.38-30.658 82.352 9.985 2.864 17.345 12.101 17.345 22.975v36.44c0 13.109-10.747 23.866-23.893 23.866h-10.334v9.945c0 12.588-10.341 22.929-22.93 22.929h-46.304c-12.589 0-22.93-10.341-22.93-22.929v-9.945h-10.334c-13.146 0-23.893-10.757-23.893-23.866v-36.44c0-10.874 7.36-20.111 17.345-22.975zm111.948-.917c4.199-42.194 15.78-62.332 26.488-79.049 10.147-15.842 19.65-28.207 19.65-56.638 0-52.513-42.597-95.109-95.109-95.109-52.537 0-95.135 42.596-95.135 95.109 0 28.431 9.503 40.796 19.65 56.638 10.708 16.717 22.289 36.855 26.488 79.049zm2.554-78.61c-1.175 13.701-11.985 24.191-24.783 24.191-13.527 0-24.862-12.086-24.862-26.673v-99.328c0-14.12 11.335-26.673 24.862-26.673 11.309 0 21.031 8.139 23.975 19.497 9.12 3.904 15.688 13.438 15.688 24.78 0 1.153-.068 2.289-.201 3.403 5.078 5.326 8.283 12.802 8.283 21.117 0 6.39-1.889 12.262-5.06 17.053 1.996 4.099 3.13 8.773 3.13 13.76 0 14.1-9.065 25.697-21.032 28.873zm-16.452-109.977c-1.964-2.729-4.916-4.506-8.331-4.506-6.192 0-10.862 6.21-10.862 12.673v99.328c0 6.677 4.67 12.673 10.862 12.673 5.516 0 9.822-4.614 10.717-10.425-4.709-1.416-8.923-4.144-12.279-7.814-2.607-2.852-2.409-7.283.443-9.89 2.851-2.607 7.282-2.408 9.889.443 2.416 2.642 5.72 4.356 9.402 4.356 7.733 0 13.643-7.218 13.643-15.734s-5.91-15.734-13.643-15.734c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7 5.352 0 10.388 1.655 14.658 4.533.593-1.743.915-3.634.915-5.612 0-2.11-.366-4.128-1.036-5.972-.769.858-1.588 1.66-2.453 2.397-2.94 2.507-7.361 2.156-9.869-.784-2.507-2.939-2.155-7.361.784-9.868 2.773-2.365 4.492-6.122 4.492-10.293 0-6.072-3.705-11.374-8.898-12.467-.154-.023-.307-.052-.458-.085-.499-.08-1.01-.121-1.532-.121-2.947 0-5.591 1.389-7.515 3.525-2.585 2.87-7.015 3.101-9.886.515-2.87-2.586-3.101-7.015-.515-9.886 3.111-3.453 7.059-5.988 11.472-7.252zm-104.526 67.344c-3.171-4.791-5.06-10.663-5.06-17.053 0-8.307 3.198-15.777 8.284-21.104-.133-1.118-.202-2.258-.202-3.416 0-11.354 6.582-20.897 15.717-24.792 2.948-11.354 12.67-19.485 23.946-19.485 13.56 0 24.888 12.555 24.888 26.673v99.328c0 14.585-11.328 26.673-24.888 26.673-12.765 0-23.578-10.484-24.757-24.184-11.98-3.166-21.058-14.769-21.058-28.88 0-4.987 1.134-9.661 3.13-13.76zm9.982-23.036c-.675 1.847-1.042 3.869-1.042 5.983 0 1.978.322 3.869.915 5.612 4.27-2.878 9.306-4.533 14.658-4.533 3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7-7.733 0-13.643 7.218-13.643 15.734s5.91 15.734 13.643 15.734c3.682 0 6.986-1.714 9.402-4.356 2.607-2.851 7.038-3.05 9.889-.443 2.852 2.607 3.05 7.038.443 9.89-3.35 3.664-7.556 6.389-12.255 7.807.891 5.813 5.192 10.432 10.693 10.432 6.21 0 10.888-5.993 10.888-12.673v-99.328c0-6.466-4.678-12.673-10.888-12.673-3.404 0-6.349 1.777-8.309 4.507 4.421 1.264 8.367 3.8 11.476 7.251 2.586 2.871 2.355 7.3-.516 9.886-2.87 2.586-7.3 2.355-9.886-.515-1.926-2.138-4.574-3.525-7.54-3.525-.493 0-.976.037-1.448.108-.196.045-.395.082-.596.11-5.165 1.118-8.844 6.404-8.844 12.455 0 1.243.153 2.45.442 3.594.101.284.183.572.246.862.748 2.326 2.071 4.346 3.814 5.823 2.947 2.498 3.311 6.919.813 9.866s-6.919 3.312-9.866.814c-.878-.745-1.71-1.554-2.489-2.422zm3.042 158.279c-5.442 0-9.893 4.451-9.893 9.892v36.44c0 5.423 4.454 9.866 9.893 9.866h17.334c3.866 0 7 3.134 7 7v16.945c0 4.902 4.027 8.929 8.93 8.929h46.304c4.903 0 8.93-4.027 8.93-8.929v-16.945c0-3.866 3.134-7 7-7h17.334c5.439 0 9.893-4.443 9.893-9.866v-36.44c0-5.441-4.451-9.892-9.893-9.892zm63.416-314.093 2.907-5.412c1.828-3.403 6.075-4.683 9.479-2.854 3.403 1.828 4.682 6.075 2.854 9.479l-16.073 29.925c-1.22 2.271-3.589 3.688-6.167 3.688s-4.947-1.417-6.167-3.688l-16.073-29.925c-1.828-3.404-.549-7.651 2.854-9.479 3.404-1.829 7.651-.549 9.479 2.854l2.907 5.412v-69.835c0-3.863 3.137-7 7-7s7 3.137 7 7zm-132.198 54.758-49.381-49.381c-2.732-2.731-2.732-7.167 0-9.899s7.168-2.732 9.9 0l49.38 49.38-1.771-5.881c-1.114-3.7.985-7.608 4.684-8.722 3.7-1.114 7.607.985 8.721 4.685l9.796 32.526c.743 2.468.069 5.145-1.753 6.968-1.823 1.823-4.5 2.496-6.969 1.753l-32.526-9.795c-3.699-1.114-5.798-5.022-4.684-8.721s5.022-5.798 8.721-4.684zm-44.859 122.299h-69.835c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7h69.835l-5.412-2.907c-3.403-1.828-4.682-6.076-2.854-9.479 1.828-3.404 6.075-4.683 9.479-2.855l29.926 16.074c2.271 1.22 3.688 3.589 3.688 6.167 0 2.577-1.417 4.947-3.688 6.166l-29.926 16.074c-3.404 1.828-7.651.549-9.479-2.855-1.828-3.403-.549-7.651 2.854-9.479zm54.758 118.198-49.38 49.38c-2.732 2.732-7.168 2.732-9.9 0s-2.732-7.167 0-9.899l49.381-49.381-5.882 1.772c-3.699 1.114-7.607-.985-8.721-4.685-1.114-3.699.985-7.607 4.684-8.721l32.526-9.795c2.469-.743 5.146-.07 6.969 1.753 1.822 1.823 2.496 4.5 1.753 6.968l-9.796 32.527c-1.114 3.699-5.021 5.798-8.721 4.684-3.699-1.114-5.798-5.022-4.684-8.721zm240.497-240.497 5.882-1.771c3.699-1.114 7.607.985 8.721 4.684s-.985 7.607-4.684 8.721l-32.526 9.795c-2.469.743-5.146.07-6.969-1.753-1.822-1.823-2.496-4.5-1.753-6.968l9.796-32.526c1.114-3.7 5.021-5.799 8.721-4.685 3.699 1.114 5.798 5.022 4.684 8.722l-1.771 5.881 49.38-49.38c2.732-2.732 7.168-2.732 9.9 0s2.732 7.168 0 9.899zm44.859 122.299 5.412 2.906c3.403 1.828 4.682 6.076 2.854 9.479-1.828 3.404-6.075 4.683-9.479 2.855l-29.926-16.074c-2.271-1.219-3.688-3.589-3.688-6.166 0-2.578 1.417-4.947 3.688-6.167l29.926-16.074c3.404-1.828 7.651-.549 9.479 2.855 1.828 3.403.549 7.651-2.854 9.479l-5.412 2.907h69.835c3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7zm-54.758 118.198 1.771 5.882c1.114 3.699-.985 7.607-4.684 8.721-3.7 1.114-7.607-.985-8.721-4.684l-9.796-32.527c-.743-2.468-.069-5.145 1.753-6.968 1.823-1.823 4.5-2.496 6.969-1.753l32.526 9.795c3.699 1.114 5.798 5.022 4.684 8.721-1.114 3.7-5.022 5.799-8.721 4.685l-5.882-1.772 49.381 49.381c2.732 2.732 2.732 7.167 0 9.899s-7.168 2.732-9.9 0z\"></path></svg>				\n									<h5>\n							gennemtænkte løsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"outline\"><path d=\"M486.41,144A28,28,0,0,0,472,92H349.123l5.457-21.828a48.513,48.513,0,0,0-12.848-46.153A41.035,41.035,0,0,0,312.609,12H308a8.009,8.009,0,0,0-8,8V47.413l-19.233,64.112A17.376,17.376,0,0,1,268,123.539V112a4,4,0,0,0-4-4H152a4,4,0,0,0-4,4v72a4,4,0,0,0,8,0V116h72V276H156V248a4,4,0,0,0-8,0v32a4,4,0,0,0,4,4H264a4,4,0,0,0,4-4V268.5h11.168A37.07,37.07,0,0,1,305.092,279a45.025,45.025,0,0,0,31.48,12.752L440,292a27.987,27.987,0,0,0,19.369-48.2,27.987,27.987,0,0,0,16-48A28,28,0,0,0,486.41,144ZM260,276H236V116h24Zm212-88H396a4,4,0,0,0,0,8h60a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h40a20,20,0,0,1,.01,40l-103.428-.25a37.07,37.07,0,0,1-25.924-10.5,45.031,45.031,0,0,0-31.49-12.752H268V131.686a25.317,25.317,0,0,0,20.429-17.862l19.4-64.675A4,4,0,0,0,308,48V20h4.609a33.082,33.082,0,0,1,23.481,9.69,40.507,40.507,0,0,1,10.728,38.541l-6.7,26.8A4,4,0,0,0,344,100H472a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h72a20,20,0,0,1,0,40Z\"></path><path d=\"M194.5,183.243l-1.9-.217a4,4,0,0,0-4.169,2.491L184.29,195.9H135.278l-3.539-9.317a4,4,0,0,0-7.478,2.84l2.459,6.477h-8.474L68.452,156.872a4,4,0,1,0-4.935,6.3L77.6,174.209,56.961,194.48l-6.636-5.491a4,4,0,1,0-5.1,6.163L87.219,229.9a44.1,44.1,0,0,0,28.05,10.1H212a8.009,8.009,0,0,0,8-8V203.9a8.009,8.009,0,0,0-8-8h-8v-2.01A10.708,10.708,0,0,0,194.5,183.243ZM212,203.9V232H115.269a36.081,36.081,0,0,1-22.951-8.264l-29.16-24.128,20.8-20.422L114.4,203.045a4,4,0,0,0,2.468.852H187a4,4,0,0,0,3.715-2.517l3.929-9.843a2.712,2.712,0,0,1,1.356,2.35v6.01a4,4,0,0,0,4,4Z\"></path><path d=\"M223.084,484.672,200.87,469.863V346.36A44.1,44.1,0,0,0,195.327,325l-17.183-30.94a4,4,0,0,0-7,3.884l17.184,30.94a36.073,36.073,0,0,1,4.537,17.478V468H164.333a4,4,0,1,0,0,8h31.321l12,8H152.865V352a4,4,0,0,0-.358-1.655l-25.454-56A4,4,0,0,0,123.411,292H114.2a4,4,0,0,0-3.945,4.658l8.862,53.175a36.016,36.016,0,0,1-1.951,18.949L78.642,468H48.333a4,4,0,1,0,0,8H80.377L92,484H32.088L76.63,361.366a4.017,4.017,0,0,0,.183-2.044L61.1,268H136a4,4,0,0,0,0-8H59.233L30.555,173.966A19.723,19.723,0,0,1,49.27,148H76a12,12,0,0,0,24,0h15.2a21.975,21.975,0,0,1,8.395,1.652l10.889,4.458a4,4,0,1,0,3.032-7.4L126.63,142.25A29.938,29.938,0,0,0,115.2,140H100v-4.527A16.014,16.014,0,0,0,112,120V103.473A16.014,16.014,0,0,0,124,88V80a4,4,0,0,0-4-4H90A22.025,22.025,0,0,0,68,98v18a12.02,12.02,0,0,0,8,11.314V140H49.27a27.723,27.723,0,0,0-26.305,36.5l29.493,88.482,16.29,94.655-46.128,127A4,4,0,0,0,26.38,492h78.485a4,4,0,0,0,2.268-7.3L86.3,470.368l38.318-98.69a44.018,44.018,0,0,0,2.385-23.16L118.921,300h1.914l24.03,52.867V488a4,4,0,0,0,4,4h72a4,4,0,0,0,2.219-7.328ZM76,98A14.015,14.015,0,0,1,90,84h26v4a8.009,8.009,0,0,1-8,8H92a4,4,0,0,0-4,4,11.962,11.962,0,0,1-1.53,5.881A12.044,12.044,0,0,0,76,104.686Zm4,14a3.981,3.981,0,0,1,3.407,1.9,4,4,0,0,0,5.956.975c.207-.171.7-.648.7-.648.032-.028.061-.057.09-.087A19.907,19.907,0,0,0,95.6,104H104v16a8.009,8.009,0,0,1-8,8,12.133,12.133,0,0,1-2.681-.3,4,4,0,1,0-1.775,7.8c.151.035.3.06.456.091V148a4,4,0,1,1-8,0V124a4,4,0,0,0-4-4,4,4,0,0,1,0-8Z\"></path></g></svg>				\n									<h5>\n							arbejde udført med ansvar						\n					</h5>\n				<p>Vi lover ikke mere, end vi kan holde – men vi holder det, vi lover.</p>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 12:51:04', '2026-01-26 12:51:04', '', 10, 'https://mrarif.me/cpnordic/?p=500', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(513, 1, '2026-01-26 13:20:26', '2026-01-26 13:20:26', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>					\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle ANMELDELSER\n					</a>\n					<h2>HVORFOR VÆLGE CP NORDIC ApS?</h2>		<p>Når du vælger CP NORDIC ApS, får du:</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 450 450\" width=\"512\"><g><g><path d=\"m225 165.2c-25.9 0-48.9-18.8-53.3-45.2-2.4-14.2.9-28.6 9.3-40.3 8.4-11.8 20.9-19.5 35.1-21.9 29.4-4.9 57.3 15 62.2 44.5 4.9 29.4-15 57.3-44.4 62.2-3 .5-6 .7-8.9.7zm-7.6-99.8c-12.2 2-22.9 8.7-30.1 18.8s-10.1 22.4-8 34.6c3.8 22.7 23.5 38.8 45.7 38.8 2.5 0 5.1-.2 7.6-.6 25.2-4.2 42.3-28.1 38.1-53.4s-28.1-42.4-53.3-38.2z\"></path><path d=\"m255.2 115c-2.1 0-3.8-1.7-3.8-3.8 0-14.6-11.8-26.4-26.4-26.4-2.1 0-3.8-1.7-3.8-3.8s1.7-3.8 3.8-3.8c18.8 0 34.1 15.3 34.1 34.1 0 2-1.8 3.7-3.9 3.7z\"></path><path d=\"m236.1 203h-22.2c-2.1 0-3.8-1.7-3.8-3.8v-14.1c-3.1-.6-6.1-1.4-9.1-2.4l-7 12.2c-1.1 1.8-3.4 2.5-5.3 1.4l-19.2-11.1c-.9-.5-1.5-1.4-1.8-2.3-.3-1-.1-2 .4-2.9l7-12.1c-2.4-2.1-4.6-4.3-6.7-6.6l-12.1 7c-1.8 1.1-4.2.4-5.2-1.4l-11.1-19.2c-1.1-1.8-.4-4.2 1.4-5.2l11.9-6.8c-1-3-1.9-6.1-2.6-9.3h-13.7c-2.1 0-3.8-1.7-3.8-3.8v-22.2c0-2.1 1.7-3.8 3.8-3.8h13.4c.6-3.2 1.4-6.4 2.4-9.5l-11.5-6.6c-1.8-1.1-2.5-3.4-1.4-5.3l11.1-19.6c.5-.9 1.4-1.5 2.3-1.8s2-.1 2.9.4l11.3 6.6c2.2-2.5 4.5-4.8 7-7l-6.5-11.3c-.5-.9-.6-1.9-.4-2.9.3-1 .9-1.8 1.8-2.3l19.2-11.1c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l6.4 11.2c3.1-1.1 6.4-1.9 9.7-2.6v-13c0-2.1 1.7-3.8 3.8-3.8h22.2c2.1 0 3.8 1.7 3.8 3.8v12.8c3.3.7 6.5 1.5 9.7 2.6l6.5-11.2c.5-.9 1.4-1.5 2.3-1.8 1-.3 2-.1 2.9.4l19.2 11.1c.9.5 1.5 1.3 1.8 2.3s.1 2-.4 2.9l-6.5 11.3c2.5 2.2 4.8 4.5 7 7.1l11.3-6.6c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l11.1 19.2c1.1 1.8.4 4.2-1.4 5.3l-11.5 6.6c1 3.1 1.8 6.3 2.5 9.5h13.6c2.1 0 3.8 1.7 3.8 3.8v22.2c0 2.1-1.7 3.8-3.8 3.8h-13.6c-.6 3.1-1.5 6.2-2.5 9.3l11.9 6.8c1.8 1.1 2.5 3.4 1.4 5.2l-11.2 19.5c-1.1 1.8-3.4 2.5-5.2 1.4l-12-7c-2.1 2.4-4.4 4.6-6.7 6.6l7 12.1c.5.9.6 1.9.4 2.9s-.9 1.8-1.8 2.3l-19.2 11.1c-1.8 1.1-4.2.4-5.2-1.4l-7-12.2c-3 1-6 1.8-9.1 2.4v14.1c-.2 2.3-2 4-4.1 4zm-18.4-7.7h14.5v-13.5c0-1.9 1.4-3.5 3.3-3.8 4.7-.7 9.4-2 13.8-3.7 1.8-.7 3.8 0 4.7 1.7l6.7 11.6 12.6-7.3-6.7-11.6c-1-1.6-.5-3.7.9-4.9 3.7-3 7.2-6.4 10.2-10.1 1.2-1.5 3.3-1.8 4.9-.9l11.5 6.6 7.3-12.6-11.3-6.5c-1.6-.9-2.4-3-1.6-4.7 1.8-4.5 3.1-9.2 3.9-14 .3-1.9 1.9-3.2 3.8-3.2h13v-14.6h-12.8c-1.9 0-3.5-1.4-3.8-3.3-.7-4.8-2-9.6-3.7-14.2-.7-1.8 0-3.7 1.7-4.7l10.9-6.3-7.3-12.6-10.8 6.3c-1.6.9-3.7.6-4.9-.9-3.1-3.9-6.6-7.4-10.4-10.6-1.5-1.2-1.9-3.3-.9-4.9l6.2-10.7-12.6-7.3-6.1 10.6c-1 1.6-3 2.3-4.7 1.7-4.6-1.8-9.5-3.1-14.4-3.9-1.9-.3-3.3-1.9-3.3-3.8v-12.2h-14.5v12.3c0 1.9-1.4 3.5-3.3 3.8-5 .8-9.8 2.1-14.4 3.9-1.8.7-3.8 0-4.7-1.7l-6.1-10.6-12.6 7.3 6.2 10.7c.9 1.6.6 3.7-.9 4.9-3.9 3.1-7.4 6.7-10.4 10.6-1.2 1.5-3.3 1.9-4.9.9l-10.8-6.3-7.3 12.6 10.9 6.3c1.6.9 2.3 2.9 1.7 4.7-1.7 4.6-3 9.4-3.7 14.2-.3 1.9-1.9 3.3-3.8 3.3h-12.8v14.5h13c1.9 0 3.5 1.4 3.8 3.2.8 4.8 2.1 9.5 3.9 14 .7 1.8 0 3.8-1.6 4.7l-11.3 6.5 7.3 12.6 11.5-6.6c1.6-.9 3.7-.6 4.9.9 3 3.7 6.5 7.1 10.3 10.1 1.5 1.2 1.9 3.3.9 4.9l-6.7 11.6 12.6 7.3 6.7-11.6c.9-1.6 2.9-2.3 4.7-1.7 4.5 1.7 9.1 2.9 13.8 3.7 1.9.3 3.3 1.9 3.3 3.8z\"></path></g><g><g><g><path d=\"m45.3 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m153.9 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path></g><g><path d=\"m189.3 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.2c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c0 2.1-1.7 3.8-3.8 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m73.3 326.4c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m126 326.4c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m99.7 325.6c-.6 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4s4.1 1.1 4.4 3.2c2.4 16.5 12.3 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m50.2 266.6c-.1 0-.2 0-.3 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.7 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-8.9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.5 2.2zm81.8-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13.1-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.4-.7 2.3-.7z\"></path></g></g></g><g><g><path d=\"m296.1 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m404.7 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path></g><g><path d=\"m440 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.1c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c.2 2.1-1.6 3.8-3.7 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m324 326.3c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m376.7 326.3c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m350.4 325.6c-.5 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4 2.1-.3 4 1.1 4.4 3.2 2.4 16.5 12.4 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m301 266.6c-.1 0-.2 0-.4 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.6 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.4 2.2zm81.7-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.5-.7 2.3-.7z\"></path></g></g></g></g></g></svg>				\n									<h5>\n							et ungt og engageret team						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"496pt\" viewBox=\"0 0 496 496\" width=\"496pt\"><path d=\"m440 328h-28.207031c5.078125-6.703125 8.207031-14.960938 8.207031-24 0-8.824219-7.175781-16-16-16h-12v-19.960938c59.574219-14.445312 104-68.085937 104-132.039062 0-74.992188-61.007812-136-136-136s-136 61.007812-136 136c0 63.953125 44.425781 117.59375 104 132.039062v19.960938h-8.449219c-6.167969 0-12.359375 1.464844-17.886719 4.214844l-50.480468 25.25c-3.320313 1.664062-7.03125 2.535156-10.734375 2.535156h-40.449219v-16h-104v16h56v56h16v-56h16v128h-16v-56h-16v56h-56v16h104v-16h40.449219c3.703125 0 7.414062.871094 10.734375 2.527344l34.488281 17.25c5.519531 2.757812 11.710937 4.222656 17.878906 4.222656h24.449219v24h64v-24h48c13.230469 0 24-10.769531 24-24 0-6.167969-2.40625-11.742188-6.238281-16 3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16 0-13.230469-10.769531-24-24-24zm8 24c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm-208-280c0-66.167969 53.832031-120 120-120s120 53.832031 120 120-53.832031 120-120 120-120-53.832031-120-120zm104 134.976562c5.257812.617188 10.574219 1.023438 16 1.023438s10.742188-.40625 16-1.023438v17.023438h-32zm-40.449219 185.023438c-3.703125 0-7.414062-.871094-10.734375-2.527344l-34.488281-17.25c-5.519531-2.757812-11.710937-4.222656-17.878906-4.222656h-40.449219v-96h40.449219c6.167969 0 12.359375-1.464844 17.886719-4.214844l50.480468-25.25c3.320313-1.664062 7.03125-2.535156 10.734375-2.535156h84.449219c0 13.230469-10.769531 24-24 24h-48.28125l-23.863281 35.808594c-6.101563 9.160156-14.527344 16.589844-24.367188 21.503906-8.753906 4.375-18.542969 6.6875-28.320312 6.6875h-15.167969v16h15.167969c12.246093 0 24.519531-2.894531 35.472656-8.375 12.328125-6.160156 22.878906-15.480469 30.527344-26.945312l6.832031-10.253907v93.574219zm40.449219 24v-136h17.472656c-.898437 2.511719-1.472656 5.183594-1.472656 8 0 6.167969 2.40625 11.742188 6.238281 16-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16 0 10.414062 6.710938 19.214844 16 22.527344v9.472656zm96-24h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8s-3.59375 8-8 8zm0 0\"></path><path d=\"m394.878906 73.007812-7.757812 13.984376c17.816406 9.878906 28.878906 28.664062 28.878906 49.007812h16c0-26.160156-14.222656-50.296875-37.121094-62.992188zm0 0\"></path><path d=\"m360 80c4.734375 0 9.449219.59375 14.007812 1.769531l3.976563-15.503906c-5.855469-1.496094-11.90625-2.265625-17.984375-2.265625zm0 0\"></path><path d=\"m360 48c48.519531 0 88 39.480469 88 88 0 20.753906-7.398438 40.910156-20.832031 56.785156l12.207031 10.34375c15.882812-18.761718 24.625-42.601562 24.625-67.128906 0-57.34375-46.65625-104-104-104-24.527344 0-48.367188 8.753906-67.128906 24.632812l10.335937 12.199219c15.871094-13.433593 36.039063-20.832031 56.792969-20.832031zm0 0\"></path><path d=\"m427.128906 215.367188-10.335937-12.199219c-15.871094 13.433593-36.039063 20.832031-56.792969 20.832031-48.519531 0-88-39.480469-88-88 0-20.753906 7.398438-40.910156 20.832031-56.785156l-12.207031-10.34375c-15.882812 18.761718-24.625 42.601562-24.625 67.128906 0 57.34375 46.65625 104 104 104 24.527344 0 48.367188-8.753906 67.128906-24.632812zm0 0\"></path><path d=\"m121.214844 165.640625c4.953125-1.375 9.695312-3.34375 14.183594-5.878906l9.769531 4.886719 19.472656-19.480469-4.886719-9.769531c2.535156-4.496094 4.503906-9.230469 5.886719-14.183594l10.359375-3.445313v-27.53125l-10.351562-3.453125c-1.375-4.953125-3.34375-9.707031-5.886719-14.183594l4.886719-9.777343-19.472657-19.472657-9.769531 4.886719c-4.484375-2.535156-9.230469-4.503906-14.183594-5.878906l-3.453125-10.359375h-27.539062l-3.445313 10.359375c-4.953125 1.375-9.695312 3.34375-14.183594 5.878906l-9.777343-4.886719-19.472657 19.472657 4.886719 9.777343c-2.535156 4.488282-4.503906 9.230469-5.886719 14.183594l-10.351562 3.445313v27.53125l10.351562 3.453125c1.375 4.953125 3.34375 9.695312 5.886719 14.183594l-4.886719 9.769531 19.472657 19.480469 9.769531-4.886719c4.484375 2.535156 9.230469 4.503906 14.183594 5.878906l3.453125 10.359375h27.539062zm-12.304688-13.679687-2.679687 8.039062h-4.460938l-2.679687-8.039062-4.554688-.90625c-6.128906-1.222657-11.878906-3.605469-17.109375-7.09375l-3.867187-2.578126-7.574219 3.800782-3.160156-3.167969 3.792969-7.582031-2.578126-3.859375c-3.488281-5.222657-5.871093-10.980469-7.09375-17.109375l-.914062-4.554688-8.03125-2.679687v-4.46875l8.03125-2.671875.914062-4.554688c1.222657-6.136718 3.613282-11.886718 7.09375-17.109375l2.578126-3.859375-3.792969-7.589844 3.160156-3.160156 7.574219 3.800782 3.867187-2.578126c5.222657-3.488281 10.980469-5.863281 17.109375-7.09375l4.554688-.90625 2.679687-8.039062h4.460938l2.679687 8.039062 4.554688.90625c6.128906 1.222657 11.878906 3.605469 17.109375 7.09375l3.867187 2.578126 7.574219-3.800782 3.160156 3.160156-3.792969 7.589844 2.578126 3.859375c3.488281 5.214844 5.871093 10.972657 7.09375 17.109375l.914062 4.554688 8.03125 2.679687v4.46875l-8.03125 2.671875-.914062 4.554688c-1.222657 6.128906-3.613282 11.878906-7.09375 17.109375l-2.578126 3.859375 3.792969 7.582031-3.160156 3.167969-7.574219-3.800782-3.867187 2.578126c-5.222657 3.488281-10.980469 5.863281-17.109375 7.09375zm0 0\"></path><path d=\"m104 72c-17.648438 0-32 14.351562-32 32s14.351562 32 32 32 32-14.351562 32-32-14.351562-32-32-32zm0 48c-8.824219 0-16-7.175781-16-16s7.175781-16 16-16 16 7.175781 16 16-7.175781 16-16 16zm0 0\"></path><path d=\"m160 248v-40h48v-208h-208v208h106.664062zm-144-232h176v176h-48v24l-32-24h-96zm0 0\"></path><path d=\"m0 272h16v16h-16zm0 0\"></path><path d=\"m32 272h16v16h-16zm0 0\"></path><path d=\"m64 272h16v16h-16zm0 0\"></path><path d=\"m32 304h16v16h-16zm0 0\"></path><path d=\"m64 304h16v16h-16zm0 0\"></path><path d=\"m0 480h16v16h-16zm0 0\"></path><path d=\"m32 480h16v16h-16zm0 0\"></path><path d=\"m64 480h16v16h-16zm0 0\"></path><path d=\"m32 448h16v16h-16zm0 0\"></path><path d=\"m64 448h16v16h-16zm0 0\"></path></svg>				\n									<h5>\n							fokus på kvalitet og detaljer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m469.12 408.93-67.26-33.63v-22.13c10.71-7.69 18.6-19.07 21.78-32.27h5.28c8.81 0 15.98-7.17 15.98-15.98v-5.29c0-6.35-3.74-11.84-9.12-14.41 5.19-18.64-1.65-39.76-19.44-59.78-12.58-14.16-30.67-22.27-49.62-22.27-18.93 0-37.01 8.12-49.59 22.27-13.38 15.05-20.95 41.01-14.03 59.62-5.56 2.5-9.45 8.09-9.45 14.57v5.29c0 8.81 7.17 15.98 15.98 15.98h5.55c3.16 13.09 10.94 24.39 21.51 32.08v22.32l-67.26 33.63c-16.7 5.87-27.89 21.6-27.89 39.28v41.63c0 3.31 2.69 6 6 6h243.46c3.31 0 6-2.69 6-6v-41.63c0-17.68-11.19-33.41-27.88-39.28zm-62.24-17.7-15.83 27.66-13.29-13.29 19.29-19.29zm-37.61 5.88-20.59-20.58v-16.91c6.41 2.57 13.4 4.01 20.72 4.01 7.22 0 14.11-1.39 20.45-3.9v16.8zm63.63-97.48v5.29c0 2.16-1.82 3.98-3.98 3.98h-3.74c.01-.36.03-.71.03-1.07v-12.18h3.71c2.15-.01 3.98 1.82 3.98 3.98zm-119.29 8.2v1.07h-3.98c-2.16 0-3.98-1.82-3.98-3.98v-5.29c0-2.16 1.82-3.98 3.98-3.98l3.98.22zm1.95-24.19c-7.33-13.69-.89-37.39 10.53-50.24 10.31-11.6 25.12-18.25 40.63-18.25 15.52 0 30.34 6.65 40.65 18.25 8.43 9.48 21.3 27.59 17.4 46.39-5.66-.35-10.67-2.55-14.4-6.36-5.37-5.49-7.72-14-6.63-23.94.29-2.62-1.17-5.13-3.6-6.17s-5.25-.37-6.95 1.65c-19.33 22.92-45.95 36.76-73.9 38.68h-3.73zm10.05 24.19v-12.73c24.57-2.92 47.92-14.05 66.73-31.8 1.43 7.26 4.63 13.6 9.45 18.52 3.27 3.35 7.14 5.89 11.41 7.58v18.42c0 24.15-19.65 43.8-43.8 43.8s-43.79-19.64-43.79-43.79zm15.89 78.48 19.29 19.29-13.29 13.29-15.84-27.66zm3.22 97.53h-39.42v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.76v-35.63c0-12.68 8.1-23.95 20.15-28.05.26-.09.51-.19.75-.31l46.47-23.23 20.07 35.06c.93 1.62 2.56 2.72 4.41 2.97.27.04.53.05.79.05 1.58 0 3.11-.62 4.24-1.76l.14-.14zm12.08 0 7.41-64.69 5.06-5.06 4.84 4.84 7.86 64.92h-25.17zm128.2 0h-39.76v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.18l-6.2-51.17.25.25c1.13 1.13 2.66 1.76 4.24 1.76.26 0 .53-.02.79-.05 1.85-.25 3.48-1.34 4.41-2.97l20.07-35.06 46.47 23.23c.24.12.49.23.75.31 12.05 4.1 20.15 15.38 20.15 28.05v35.65zm-67.04-346.65h-10.84l28.38 39.84 28.38-39.84h-10.84c-3.31 0-6-2.69-6-6v-64.58h-98.7c-3.31 0-6-2.69-6-6s2.69-6 6-6h104.7c3.31 0 6 2.69 6 6v64.58h16.48c2.25 0 4.3 1.25 5.33 3.25s.86 4.4-.45 6.23l-40.02 56.18c-1.13 1.58-2.95 2.52-4.89 2.52s-3.76-.94-4.89-2.52l-40.02-56.18c-1.3-1.83-1.48-4.23-.45-6.23s3.09-3.25 5.33-3.25h16.48v-23.5h-65.38c-3.31 0-6-2.69-6-6s2.69-6 6-6h71.38c3.31 0 6 2.69 6 6v35.5c.02 3.31-2.67 6-5.98 6zm-118.44 50.65v-133.26c0-21.18-17.23-38.41-38.41-38.41h-207.7c-21.18-.01-38.41 17.23-38.41 38.41v133.26c0 21.18 17.23 38.41 38.41 38.41h105.8l64.8 55.11c1.11.94 2.49 1.43 3.89 1.43.85 0 1.71-.18 2.52-.55 2.12-.98 3.48-3.11 3.48-5.45v-50.54h27.21c21.18 0 38.41-17.23 38.41-38.41zm-71.62 26.41c-3.31 0-6 2.69-6 6v43.56l-56.59-48.13c-1.08-.92-2.46-1.43-3.89-1.43h-108.01c-14.56 0-26.41-11.85-26.41-26.41v-133.26c0-14.56 11.85-26.41 26.41-26.41h207.69c14.56 0 26.41 11.85 26.41 26.41v133.26c0 14.56-11.85 26.41-26.41 26.41zm-156.34-87.87h56.97c3.31 0 6-2.69 6-6v-39.2l8.55-8.55c2.34-2.34 2.34-6.14 0-8.49-2.34-2.34-6.14-2.34-8.48 0l-.7.7c-.98-1.97-3.01-3.32-5.36-3.32h-56.98c-3.31 0-6 2.69-6 6v52.85c0 3.32 2.69 6.01 6 6.01zm6-52.86h44.97v2.69l-18.16 18.16-8.84-8.84c-2.34-2.34-6.14-2.34-8.49 0-2.34 2.34-2.34 6.14 0 8.49l13.08 13.08c1.17 1.17 2.71 1.76 4.24 1.76s3.07-.59 4.24-1.76l13.92-13.92v21.2h-44.96zm173.62 3.08c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 31.92c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 36.52c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.68 5.99 6zm0 31.92c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.69 5.99 6zm-119.36 165.01h10.84l-28.38-39.84-28.38 39.84h10.84c3.31 0 6 2.69 6 6v64.58h98.7c3.31 0 6 2.69 6 6s-2.69 6-6 6h-104.69c-3.31 0-6-2.69-6-6v-64.58h-16.48c-2.25 0-4.3-1.25-5.33-3.25s-.86-4.4.45-6.23l40.02-56.18c1.13-1.58 2.95-2.52 4.89-2.52s3.76.94 4.89 2.52l40.02 56.18c1.3 1.83 1.48 4.23.45 6.23s-3.09 3.25-5.33 3.25h-16.48v23.5h65.38c3.31 0 6 2.69 6 6s-2.69 6-6 6h-71.38c-3.31 0-6-2.69-6-6v-35.5c-.03-3.31 2.66-6 5.97-6z\"></path></svg>				\n									<h5>\n							ærlig<br> rådgivning						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 510 510\"><path d=\"m192.036 385.845c-4.787-46.972-19.459-64.336-30.658-82.352-8.672-13.951-15.5-28.245-15.5-54.252 0-60.242 48.865-109.109 109.135-109.109 60.242 0 109.109 48.866 109.109 109.109 0 26.007-6.828 40.301-15.5 54.252-11.199 18.016-25.871 35.38-30.658 82.352 9.985 2.864 17.345 12.101 17.345 22.975v36.44c0 13.109-10.747 23.866-23.893 23.866h-10.334v9.945c0 12.588-10.341 22.929-22.93 22.929h-46.304c-12.589 0-22.93-10.341-22.93-22.929v-9.945h-10.334c-13.146 0-23.893-10.757-23.893-23.866v-36.44c0-10.874 7.36-20.111 17.345-22.975zm111.948-.917c4.199-42.194 15.78-62.332 26.488-79.049 10.147-15.842 19.65-28.207 19.65-56.638 0-52.513-42.597-95.109-95.109-95.109-52.537 0-95.135 42.596-95.135 95.109 0 28.431 9.503 40.796 19.65 56.638 10.708 16.717 22.289 36.855 26.488 79.049zm2.554-78.61c-1.175 13.701-11.985 24.191-24.783 24.191-13.527 0-24.862-12.086-24.862-26.673v-99.328c0-14.12 11.335-26.673 24.862-26.673 11.309 0 21.031 8.139 23.975 19.497 9.12 3.904 15.688 13.438 15.688 24.78 0 1.153-.068 2.289-.201 3.403 5.078 5.326 8.283 12.802 8.283 21.117 0 6.39-1.889 12.262-5.06 17.053 1.996 4.099 3.13 8.773 3.13 13.76 0 14.1-9.065 25.697-21.032 28.873zm-16.452-109.977c-1.964-2.729-4.916-4.506-8.331-4.506-6.192 0-10.862 6.21-10.862 12.673v99.328c0 6.677 4.67 12.673 10.862 12.673 5.516 0 9.822-4.614 10.717-10.425-4.709-1.416-8.923-4.144-12.279-7.814-2.607-2.852-2.409-7.283.443-9.89 2.851-2.607 7.282-2.408 9.889.443 2.416 2.642 5.72 4.356 9.402 4.356 7.733 0 13.643-7.218 13.643-15.734s-5.91-15.734-13.643-15.734c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7 5.352 0 10.388 1.655 14.658 4.533.593-1.743.915-3.634.915-5.612 0-2.11-.366-4.128-1.036-5.972-.769.858-1.588 1.66-2.453 2.397-2.94 2.507-7.361 2.156-9.869-.784-2.507-2.939-2.155-7.361.784-9.868 2.773-2.365 4.492-6.122 4.492-10.293 0-6.072-3.705-11.374-8.898-12.467-.154-.023-.307-.052-.458-.085-.499-.08-1.01-.121-1.532-.121-2.947 0-5.591 1.389-7.515 3.525-2.585 2.87-7.015 3.101-9.886.515-2.87-2.586-3.101-7.015-.515-9.886 3.111-3.453 7.059-5.988 11.472-7.252zm-104.526 67.344c-3.171-4.791-5.06-10.663-5.06-17.053 0-8.307 3.198-15.777 8.284-21.104-.133-1.118-.202-2.258-.202-3.416 0-11.354 6.582-20.897 15.717-24.792 2.948-11.354 12.67-19.485 23.946-19.485 13.56 0 24.888 12.555 24.888 26.673v99.328c0 14.585-11.328 26.673-24.888 26.673-12.765 0-23.578-10.484-24.757-24.184-11.98-3.166-21.058-14.769-21.058-28.88 0-4.987 1.134-9.661 3.13-13.76zm9.982-23.036c-.675 1.847-1.042 3.869-1.042 5.983 0 1.978.322 3.869.915 5.612 4.27-2.878 9.306-4.533 14.658-4.533 3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7-7.733 0-13.643 7.218-13.643 15.734s5.91 15.734 13.643 15.734c3.682 0 6.986-1.714 9.402-4.356 2.607-2.851 7.038-3.05 9.889-.443 2.852 2.607 3.05 7.038.443 9.89-3.35 3.664-7.556 6.389-12.255 7.807.891 5.813 5.192 10.432 10.693 10.432 6.21 0 10.888-5.993 10.888-12.673v-99.328c0-6.466-4.678-12.673-10.888-12.673-3.404 0-6.349 1.777-8.309 4.507 4.421 1.264 8.367 3.8 11.476 7.251 2.586 2.871 2.355 7.3-.516 9.886-2.87 2.586-7.3 2.355-9.886-.515-1.926-2.138-4.574-3.525-7.54-3.525-.493 0-.976.037-1.448.108-.196.045-.395.082-.596.11-5.165 1.118-8.844 6.404-8.844 12.455 0 1.243.153 2.45.442 3.594.101.284.183.572.246.862.748 2.326 2.071 4.346 3.814 5.823 2.947 2.498 3.311 6.919.813 9.866s-6.919 3.312-9.866.814c-.878-.745-1.71-1.554-2.489-2.422zm3.042 158.279c-5.442 0-9.893 4.451-9.893 9.892v36.44c0 5.423 4.454 9.866 9.893 9.866h17.334c3.866 0 7 3.134 7 7v16.945c0 4.902 4.027 8.929 8.93 8.929h46.304c4.903 0 8.93-4.027 8.93-8.929v-16.945c0-3.866 3.134-7 7-7h17.334c5.439 0 9.893-4.443 9.893-9.866v-36.44c0-5.441-4.451-9.892-9.893-9.892zm63.416-314.093 2.907-5.412c1.828-3.403 6.075-4.683 9.479-2.854 3.403 1.828 4.682 6.075 2.854 9.479l-16.073 29.925c-1.22 2.271-3.589 3.688-6.167 3.688s-4.947-1.417-6.167-3.688l-16.073-29.925c-1.828-3.404-.549-7.651 2.854-9.479 3.404-1.829 7.651-.549 9.479 2.854l2.907 5.412v-69.835c0-3.863 3.137-7 7-7s7 3.137 7 7zm-132.198 54.758-49.381-49.381c-2.732-2.731-2.732-7.167 0-9.899s7.168-2.732 9.9 0l49.38 49.38-1.771-5.881c-1.114-3.7.985-7.608 4.684-8.722 3.7-1.114 7.607.985 8.721 4.685l9.796 32.526c.743 2.468.069 5.145-1.753 6.968-1.823 1.823-4.5 2.496-6.969 1.753l-32.526-9.795c-3.699-1.114-5.798-5.022-4.684-8.721s5.022-5.798 8.721-4.684zm-44.859 122.299h-69.835c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7h69.835l-5.412-2.907c-3.403-1.828-4.682-6.076-2.854-9.479 1.828-3.404 6.075-4.683 9.479-2.855l29.926 16.074c2.271 1.22 3.688 3.589 3.688 6.167 0 2.577-1.417 4.947-3.688 6.166l-29.926 16.074c-3.404 1.828-7.651.549-9.479-2.855-1.828-3.403-.549-7.651 2.854-9.479zm54.758 118.198-49.38 49.38c-2.732 2.732-7.168 2.732-9.9 0s-2.732-7.167 0-9.899l49.381-49.381-5.882 1.772c-3.699 1.114-7.607-.985-8.721-4.685-1.114-3.699.985-7.607 4.684-8.721l32.526-9.795c2.469-.743 5.146-.07 6.969 1.753 1.822 1.823 2.496 4.5 1.753 6.968l-9.796 32.527c-1.114 3.699-5.021 5.798-8.721 4.684-3.699-1.114-5.798-5.022-4.684-8.721zm240.497-240.497 5.882-1.771c3.699-1.114 7.607.985 8.721 4.684s-.985 7.607-4.684 8.721l-32.526 9.795c-2.469.743-5.146.07-6.969-1.753-1.822-1.823-2.496-4.5-1.753-6.968l9.796-32.526c1.114-3.7 5.021-5.799 8.721-4.685 3.699 1.114 5.798 5.022 4.684 8.722l-1.771 5.881 49.38-49.38c2.732-2.732 7.168-2.732 9.9 0s2.732 7.168 0 9.899zm44.859 122.299 5.412 2.906c3.403 1.828 4.682 6.076 2.854 9.479-1.828 3.404-6.075 4.683-9.479 2.855l-29.926-16.074c-2.271-1.219-3.688-3.589-3.688-6.166 0-2.578 1.417-4.947 3.688-6.167l29.926-16.074c3.404-1.828 7.651-.549 9.479 2.855 1.828 3.403.549 7.651-2.854 9.479l-5.412 2.907h69.835c3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7zm-54.758 118.198 1.771 5.882c1.114 3.699-.985 7.607-4.684 8.721-3.7 1.114-7.607-.985-8.721-4.684l-9.796-32.527c-.743-2.468-.069-5.145 1.753-6.968 1.823-1.823 4.5-2.496 6.969-1.753l32.526 9.795c3.699 1.114 5.798 5.022 4.684 8.721-1.114 3.7-5.022 5.799-8.721 4.685l-5.882-1.772 49.381 49.381c2.732 2.732 2.732 7.167 0 9.899s-7.168 2.732-9.9 0z\"></path></svg>				\n									<h5>\n							gennemtænkte løsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"outline\"><path d=\"M486.41,144A28,28,0,0,0,472,92H349.123l5.457-21.828a48.513,48.513,0,0,0-12.848-46.153A41.035,41.035,0,0,0,312.609,12H308a8.009,8.009,0,0,0-8,8V47.413l-19.233,64.112A17.376,17.376,0,0,1,268,123.539V112a4,4,0,0,0-4-4H152a4,4,0,0,0-4,4v72a4,4,0,0,0,8,0V116h72V276H156V248a4,4,0,0,0-8,0v32a4,4,0,0,0,4,4H264a4,4,0,0,0,4-4V268.5h11.168A37.07,37.07,0,0,1,305.092,279a45.025,45.025,0,0,0,31.48,12.752L440,292a27.987,27.987,0,0,0,19.369-48.2,27.987,27.987,0,0,0,16-48A28,28,0,0,0,486.41,144ZM260,276H236V116h24Zm212-88H396a4,4,0,0,0,0,8h60a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h40a20,20,0,0,1,.01,40l-103.428-.25a37.07,37.07,0,0,1-25.924-10.5,45.031,45.031,0,0,0-31.49-12.752H268V131.686a25.317,25.317,0,0,0,20.429-17.862l19.4-64.675A4,4,0,0,0,308,48V20h4.609a33.082,33.082,0,0,1,23.481,9.69,40.507,40.507,0,0,1,10.728,38.541l-6.7,26.8A4,4,0,0,0,344,100H472a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h72a20,20,0,0,1,0,40Z\"></path><path d=\"M194.5,183.243l-1.9-.217a4,4,0,0,0-4.169,2.491L184.29,195.9H135.278l-3.539-9.317a4,4,0,0,0-7.478,2.84l2.459,6.477h-8.474L68.452,156.872a4,4,0,1,0-4.935,6.3L77.6,174.209,56.961,194.48l-6.636-5.491a4,4,0,1,0-5.1,6.163L87.219,229.9a44.1,44.1,0,0,0,28.05,10.1H212a8.009,8.009,0,0,0,8-8V203.9a8.009,8.009,0,0,0-8-8h-8v-2.01A10.708,10.708,0,0,0,194.5,183.243ZM212,203.9V232H115.269a36.081,36.081,0,0,1-22.951-8.264l-29.16-24.128,20.8-20.422L114.4,203.045a4,4,0,0,0,2.468.852H187a4,4,0,0,0,3.715-2.517l3.929-9.843a2.712,2.712,0,0,1,1.356,2.35v6.01a4,4,0,0,0,4,4Z\"></path><path d=\"M223.084,484.672,200.87,469.863V346.36A44.1,44.1,0,0,0,195.327,325l-17.183-30.94a4,4,0,0,0-7,3.884l17.184,30.94a36.073,36.073,0,0,1,4.537,17.478V468H164.333a4,4,0,1,0,0,8h31.321l12,8H152.865V352a4,4,0,0,0-.358-1.655l-25.454-56A4,4,0,0,0,123.411,292H114.2a4,4,0,0,0-3.945,4.658l8.862,53.175a36.016,36.016,0,0,1-1.951,18.949L78.642,468H48.333a4,4,0,1,0,0,8H80.377L92,484H32.088L76.63,361.366a4.017,4.017,0,0,0,.183-2.044L61.1,268H136a4,4,0,0,0,0-8H59.233L30.555,173.966A19.723,19.723,0,0,1,49.27,148H76a12,12,0,0,0,24,0h15.2a21.975,21.975,0,0,1,8.395,1.652l10.889,4.458a4,4,0,1,0,3.032-7.4L126.63,142.25A29.938,29.938,0,0,0,115.2,140H100v-4.527A16.014,16.014,0,0,0,112,120V103.473A16.014,16.014,0,0,0,124,88V80a4,4,0,0,0-4-4H90A22.025,22.025,0,0,0,68,98v18a12.02,12.02,0,0,0,8,11.314V140H49.27a27.723,27.723,0,0,0-26.305,36.5l29.493,88.482,16.29,94.655-46.128,127A4,4,0,0,0,26.38,492h78.485a4,4,0,0,0,2.268-7.3L86.3,470.368l38.318-98.69a44.018,44.018,0,0,0,2.385-23.16L118.921,300h1.914l24.03,52.867V488a4,4,0,0,0,4,4h72a4,4,0,0,0,2.219-7.328ZM76,98A14.015,14.015,0,0,1,90,84h26v4a8.009,8.009,0,0,1-8,8H92a4,4,0,0,0-4,4,11.962,11.962,0,0,1-1.53,5.881A12.044,12.044,0,0,0,76,104.686Zm4,14a3.981,3.981,0,0,1,3.407,1.9,4,4,0,0,0,5.956.975c.207-.171.7-.648.7-.648.032-.028.061-.057.09-.087A19.907,19.907,0,0,0,95.6,104H104v16a8.009,8.009,0,0,1-8,8,12.133,12.133,0,0,1-2.681-.3,4,4,0,1,0-1.775,7.8c.151.035.3.06.456.091V148a4,4,0,1,1-8,0V124a4,4,0,0,0-4-4,4,4,0,0,1,0-8Z\"></path></g></svg>				\n									<h5>\n							arbejde udført med ansvar						\n					</h5>\n				<p>Vi lover ikke mere, end vi kan holde – men vi holder det, vi lover.</p>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 13:20:26', '2026-01-26 13:20:26', '', 10, 'https://mrarif.me/cpnordic/?p=513', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(502, 1, '2026-01-26 13:13:48', '2026-01-26 13:13:48', '', 'banner.jpg', '', 'inherit', 'open', 'closed', '', 'banner-jpg', '', '', '2026-01-26 13:13:48', '2026-01-26 13:13:48', '', 0, 'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/banner.jpg', 0, 'attachment', 'image/jpeg', 0),
(503, 1, '2026-01-26 13:13:49', '2026-01-26 13:13:49', '', 'slider1.jpeg', '', 'inherit', 'open', 'closed', '', 'slider1-jpeg', '', '', '2026-01-26 13:13:49', '2026-01-26 13:13:49', '', 0, 'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/slider1.jpeg', 0, 'attachment', 'image/jpeg', 0),
(504, 1, '2026-01-26 13:13:49', '2026-01-26 13:13:49', '', 'smartphone_230142.svg', '', 'inherit', 'open', 'closed', '', 'smartphone_230142-svg', '', '', '2026-01-26 13:13:49', '2026-01-26 13:13:49', '', 0, 'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/smartphone_230142.svg', 0, 'attachment', 'image/svg+xml', 0),
(505, 1, '2026-01-26 13:13:49', '2026-01-26 13:13:49', '', 'email_542689.svg', '', 'inherit', 'open', 'closed', '', 'email_542689-svg', '', '', '2026-01-26 13:13:49', '2026-01-26 13:13:49', '', 0, 'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/email_542689.svg', 0, 'attachment', 'image/svg+xml', 0),
(506, 1, '2026-01-26 13:13:50', '2026-01-26 13:13:50', '', 'features-shape-1.png', '', 'inherit', 'open', 'closed', '', 'features-shape-1-png', '', '', '2026-01-26 13:13:50', '2026-01-26 13:13:50', '', 0, 'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/features-shape-1.png', 0, 'attachment', 'image/png', 0),
(507, 1, '2026-01-26 13:13:50', '2026-01-26 13:13:50', '', 'slider-shape-2.png', '', 'inherit', 'open', 'closed', '', 'slider-shape-2-png', '', '', '2026-01-26 13:13:50', '2026-01-26 13:13:50', '', 0, 'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/slider-shape-2.png', 0, 'attachment', 'image/png', 0),
(508, 1, '2026-01-26 13:13:50', '2026-01-26 13:13:50', '<h2>Contact   Us\n</h2>		<p>For questions or concerns, please contact us, we are more than happy to address any questions or concerns you may have.</p>					\n			<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>			\n							<h4>LOCATION\n</h4>							<ul>\n							<li>\n										10777 Westheimer Rd Suite 1100 Houston, Tx 77042\n									</li>\n						</ul>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M358.57,0H153.43c-27.195,0-49.319,22.124-49.319,49.319v413.362h-0.001c0,27.195,22.124,49.319,49.319,49.319H358.57   c27.195,0,49.319-22.124,49.319-49.319V49.319C407.891,22.124,385.766,0,358.57,0z M124.508,49.319   c0-15.948,12.974-28.921,28.921-28.921H358.57c15.947,0,28.921,12.974,28.921,28.921v355.589H124.508V49.319z M387.493,462.681   L387.493,462.681c-0.001,15.947-12.975,28.921-28.922,28.921H153.43c-15.948,0-28.921-12.974-28.921-28.921v-37.374h262.984   V462.681z\"></path>	</g></g><g>	<g>		<path d=\"M270.789,34.677h-29.578c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h29.578   c5.632,0,10.199-4.566,10.199-10.199C280.988,39.243,276.421,34.677,270.789,34.677z\"></path>	</g></g><g>	<g>		<path d=\"M242.204,371.251h-91.255c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h91.255   c5.632,0,10.199-4.566,10.199-10.199C252.403,375.817,247.836,371.251,242.204,371.251z\"></path>	</g></g><g>	<g>		<path d=\"M282.518,371.251h-5.346c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h5.346   c5.632,0,10.199-4.566,10.199-10.199C292.717,375.817,288.15,371.251,282.518,371.251z\"></path>	</g></g><g>	<g>		<path d=\"M256,430.406c-14.903,0-27.028,12.125-27.028,27.028s12.125,27.028,27.028,27.028s27.028-12.125,27.028-27.028   S270.903,430.406,256,430.406z M256,464.064c-3.655,0-6.629-2.974-6.629-6.63s2.974-6.629,6.629-6.629s6.63,2.974,6.63,6.629   S259.655,464.064,256,464.064z\"></path>	</g></g><g>	<g>		<path d=\"M442.612,198.005c-3.984-3.983-10.44-3.983-14.425,0c-3.983,3.983-3.983,10.441,0,14.425   c23.463,23.462,23.463,61.639,0,85.1c-3.983,3.983-3.983,10.441,0,14.425c1.992,1.992,4.602,2.987,7.212,2.987   s5.22-0.995,7.212-2.987C474.027,280.539,474.027,229.421,442.612,198.005z\"></path>	</g></g><g>	<g>		<path d=\"M470.017,170.6c-3.984-3.983-10.44-3.983-14.425,0c-3.983,3.983-3.983,10.441,0,14.425   c18.686,18.686,28.977,43.53,28.977,69.955s-10.291,51.27-28.977,69.955c-3.983,3.983-3.983,10.441,0,14.425   c1.992,1.992,4.602,2.987,7.212,2.987c2.61,0,5.22-0.995,7.212-2.987C516.544,292.832,516.544,217.128,470.017,170.6z\"></path>	</g></g><g>	<g>		<path d=\"M83.812,212.43c3.984-3.984,3.984-10.442,0.001-14.425c-3.984-3.983-10.44-3.983-14.425,0   c-31.416,31.416-31.416,82.533,0,113.95c1.992,1.992,4.602,2.987,7.212,2.987s5.22-0.995,7.212-2.987   c3.983-3.983,3.983-10.441,0-14.425C60.349,274.068,60.349,235.891,83.812,212.43z\"></path>	</g></g><g>	<g>		<path d=\"M27.431,254.98c0-26.426,10.291-51.27,28.977-69.955c3.983-3.983,3.983-10.441,0-14.425   c-3.984-3.983-10.44-3.983-14.425,0c-46.527,46.528-46.527,122.232,0,168.76c1.992,1.992,4.602,2.987,7.212,2.987   s5.22-0.995,7.212-2.987c3.983-3.983,3.983-10.441,0-14.425C37.721,306.25,27.431,281.406,27.431,254.98z\"></path>	</g></g><g>	<g>		<path d=\"M358.06,280.099l-47.694-47.694c-2.619-2.618-6.45-3.613-10.015-2.595l-7.104,2.03c-1.015,0.291-1.98,0.736-2.859,1.323   l-14.669,9.788c-17.71-12.415-33.181-28.156-45.295-46.078l10.425-10.425c1.226-1.226,2.119-2.743,2.596-4.41l2.03-7.104   c1.018-3.562,0.023-7.394-2.595-10.015l-47.697-47.697c-2.827-2.827-7.048-3.742-10.793-2.338l-8.119,3.044   c-1.364,0.511-2.602,1.309-3.632,2.338c-1.938,1.939-3.804,4.028-5.546,6.207c-23.54,29.472-21.155,71.832,5.546,98.534   l77.633,77.632c14.404,14.405,33.363,21.733,52.398,21.732c16.254,0,32.564-5.343,46.138-16.187   c2.179-1.741,4.266-3.606,6.205-5.545c1.029-1.03,1.827-2.267,2.338-3.631l3.044-8.119   C361.802,287.147,360.888,282.927,358.06,280.099z M336.079,292.253c-21.345,17.05-52.032,15.315-71.379-4.034l-77.633-77.632   c-19.349-19.349-21.082-50.035-4.034-71.379c0.783-0.98,1.598-1.933,2.44-2.849l38.31,38.311l-13.591,13.592   c-3.331,3.331-3.947,8.51-1.491,12.531c15.402,25.2,36.656,46.986,61.469,63.005c3.415,2.204,7.81,2.17,11.194-0.085   l18.872-12.593l38.696,38.696C338.011,290.656,337.058,291.471,336.079,292.253z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>			\n							<h4>CALL US\n</h4>							<ul>\n							<li>\n											<a href=\"tel:(281)5010350\">\n											(281) 501-0350\n											</a>\n									</li>\n						</ul>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M331.756,277.251l-42.881,43.026c-17.389,17.45-47.985,17.826-65.75,0l-42.883-43.026L26.226,431.767   C31.959,434.418,38.28,436,45,436h422c6.72,0,13.039-1.58,18.77-4.232L331.756,277.251z\"></path>	</g></g><g>	<g>		<path d=\"M467,76H45c-6.72,0-13.041,1.582-18.772,4.233l164.577,165.123c0.011,0.011,0.024,0.013,0.035,0.024   c0.011,0.011,0.013,0.026,0.013,0.026l53.513,53.69c5.684,5.684,17.586,5.684,23.27,0l53.502-53.681c0,0,0.013-0.024,0.024-0.035   c0,0,0.024-0.013,0.035-0.024L485.77,80.232C480.039,77.58,473.72,76,467,76z\"></path>	</g></g><g>	<g>		<path d=\"M4.786,101.212C1.82,107.21,0,113.868,0,121v270c0,7.132,1.818,13.79,4.785,19.788l154.283-154.783L4.786,101.212z\"></path>	</g></g><g>	<g>		<path d=\"M507.214,101.21L352.933,256.005L507.214,410.79C510.18,404.792,512,398.134,512,391V121   C512,113.866,510.18,107.208,507.214,101.21z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>			\n							<h4>EMAIL US\n</h4>							<ul>\n							<li>\n											<a href=\"mailto:intake@modernhh.com\">\n											intake@modernhh.com\n											</a>\n									</li>\n						</ul>\n							<h3>Hours of Operation</h3>				\n					Monday				\n							10:00 AM						\n						-\n							3:00 PM						\n					Tuesday				\n							10:00 AM						\n						-\n							3:00 PM						\n					Wednesday				\n							10:00 AM						\n						-\n							3:00 PM						\n					Thursday				\n							10:00 AM						\n						-\n							3:00 PM						\n					Friday				\n							10:00 AM						\n						-\n							3:00 PM						\n					Saturday				\n					Closed				\n					Sunday				\n					Closed				\n					<h4>To reach the office after hours</h4>										<a href=\"tel:8885101879\">\n									Call Us 888-510-1879\n					</a>\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=10777%20Westheimer%20Rd%2C%20Houston%2C%20TX%2077042%2C%20USA&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"10777 Westheimer Rd, Houston, TX 77042, USA\"\n					aria-label=\"10777 Westheimer Rd, Houston, TX 77042, USA\"\n			></iframe>', 'contact-page', '', 'publish', 'closed', 'closed', '', 'contact-page', '', '', '2026-01-26 13:13:50', '2026-01-26 13:13:50', '', 0, 'https://mrarif.me/cpnordic/?elementor_library=contact-page', 0, 'elementor_library', '', 0),
(509, 1, '2026-01-26 13:13:50', '2026-01-26 13:13:50', '<h2>Contact   Us\n</h2>		<p>For questions or concerns, please contact us, we are more than happy to address any questions or concerns you may have.</p>					\n			<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>			\n							<h4>LOCATION\n</h4>							<ul>\n							<li>\n										10777 Westheimer Rd Suite 1100 Houston, Tx 77042\n									</li>\n						</ul>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M358.57,0H153.43c-27.195,0-49.319,22.124-49.319,49.319v413.362h-0.001c0,27.195,22.124,49.319,49.319,49.319H358.57   c27.195,0,49.319-22.124,49.319-49.319V49.319C407.891,22.124,385.766,0,358.57,0z M124.508,49.319   c0-15.948,12.974-28.921,28.921-28.921H358.57c15.947,0,28.921,12.974,28.921,28.921v355.589H124.508V49.319z M387.493,462.681   L387.493,462.681c-0.001,15.947-12.975,28.921-28.922,28.921H153.43c-15.948,0-28.921-12.974-28.921-28.921v-37.374h262.984   V462.681z\"></path>	</g></g><g>	<g>		<path d=\"M270.789,34.677h-29.578c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h29.578   c5.632,0,10.199-4.566,10.199-10.199C280.988,39.243,276.421,34.677,270.789,34.677z\"></path>	</g></g><g>	<g>		<path d=\"M242.204,371.251h-91.255c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h91.255   c5.632,0,10.199-4.566,10.199-10.199C252.403,375.817,247.836,371.251,242.204,371.251z\"></path>	</g></g><g>	<g>		<path d=\"M282.518,371.251h-5.346c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h5.346   c5.632,0,10.199-4.566,10.199-10.199C292.717,375.817,288.15,371.251,282.518,371.251z\"></path>	</g></g><g>	<g>		<path d=\"M256,430.406c-14.903,0-27.028,12.125-27.028,27.028s12.125,27.028,27.028,27.028s27.028-12.125,27.028-27.028   S270.903,430.406,256,430.406z M256,464.064c-3.655,0-6.629-2.974-6.629-6.63s2.974-6.629,6.629-6.629s6.63,2.974,6.63,6.629   S259.655,464.064,256,464.064z\"></path>	</g></g><g>	<g>		<path d=\"M442.612,198.005c-3.984-3.983-10.44-3.983-14.425,0c-3.983,3.983-3.983,10.441,0,14.425   c23.463,23.462,23.463,61.639,0,85.1c-3.983,3.983-3.983,10.441,0,14.425c1.992,1.992,4.602,2.987,7.212,2.987   s5.22-0.995,7.212-2.987C474.027,280.539,474.027,229.421,442.612,198.005z\"></path>	</g></g><g>	<g>		<path d=\"M470.017,170.6c-3.984-3.983-10.44-3.983-14.425,0c-3.983,3.983-3.983,10.441,0,14.425   c18.686,18.686,28.977,43.53,28.977,69.955s-10.291,51.27-28.977,69.955c-3.983,3.983-3.983,10.441,0,14.425   c1.992,1.992,4.602,2.987,7.212,2.987c2.61,0,5.22-0.995,7.212-2.987C516.544,292.832,516.544,217.128,470.017,170.6z\"></path>	</g></g><g>	<g>		<path d=\"M83.812,212.43c3.984-3.984,3.984-10.442,0.001-14.425c-3.984-3.983-10.44-3.983-14.425,0   c-31.416,31.416-31.416,82.533,0,113.95c1.992,1.992,4.602,2.987,7.212,2.987s5.22-0.995,7.212-2.987   c3.983-3.983,3.983-10.441,0-14.425C60.349,274.068,60.349,235.891,83.812,212.43z\"></path>	</g></g><g>	<g>		<path d=\"M27.431,254.98c0-26.426,10.291-51.27,28.977-69.955c3.983-3.983,3.983-10.441,0-14.425   c-3.984-3.983-10.44-3.983-14.425,0c-46.527,46.528-46.527,122.232,0,168.76c1.992,1.992,4.602,2.987,7.212,2.987   s5.22-0.995,7.212-2.987c3.983-3.983,3.983-10.441,0-14.425C37.721,306.25,27.431,281.406,27.431,254.98z\"></path>	</g></g><g>	<g>		<path d=\"M358.06,280.099l-47.694-47.694c-2.619-2.618-6.45-3.613-10.015-2.595l-7.104,2.03c-1.015,0.291-1.98,0.736-2.859,1.323   l-14.669,9.788c-17.71-12.415-33.181-28.156-45.295-46.078l10.425-10.425c1.226-1.226,2.119-2.743,2.596-4.41l2.03-7.104   c1.018-3.562,0.023-7.394-2.595-10.015l-47.697-47.697c-2.827-2.827-7.048-3.742-10.793-2.338l-8.119,3.044   c-1.364,0.511-2.602,1.309-3.632,2.338c-1.938,1.939-3.804,4.028-5.546,6.207c-23.54,29.472-21.155,71.832,5.546,98.534   l77.633,77.632c14.404,14.405,33.363,21.733,52.398,21.732c16.254,0,32.564-5.343,46.138-16.187   c2.179-1.741,4.266-3.606,6.205-5.545c1.029-1.03,1.827-2.267,2.338-3.631l3.044-8.119   C361.802,287.147,360.888,282.927,358.06,280.099z M336.079,292.253c-21.345,17.05-52.032,15.315-71.379-4.034l-77.633-77.632   c-19.349-19.349-21.082-50.035-4.034-71.379c0.783-0.98,1.598-1.933,2.44-2.849l38.31,38.311l-13.591,13.592   c-3.331,3.331-3.947,8.51-1.491,12.531c15.402,25.2,36.656,46.986,61.469,63.005c3.415,2.204,7.81,2.17,11.194-0.085   l18.872-12.593l38.696,38.696C338.011,290.656,337.058,291.471,336.079,292.253z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>			\n							<h4>CALL US\n</h4>							<ul>\n							<li>\n											<a href=\"tel:(281)5010350\">\n											(281) 501-0350\n											</a>\n									</li>\n						</ul>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M331.756,277.251l-42.881,43.026c-17.389,17.45-47.985,17.826-65.75,0l-42.883-43.026L26.226,431.767   C31.959,434.418,38.28,436,45,436h422c6.72,0,13.039-1.58,18.77-4.232L331.756,277.251z\"></path>	</g></g><g>	<g>		<path d=\"M467,76H45c-6.72,0-13.041,1.582-18.772,4.233l164.577,165.123c0.011,0.011,0.024,0.013,0.035,0.024   c0.011,0.011,0.013,0.026,0.013,0.026l53.513,53.69c5.684,5.684,17.586,5.684,23.27,0l53.502-53.681c0,0,0.013-0.024,0.024-0.035   c0,0,0.024-0.013,0.035-0.024L485.77,80.232C480.039,77.58,473.72,76,467,76z\"></path>	</g></g><g>	<g>		<path d=\"M4.786,101.212C1.82,107.21,0,113.868,0,121v270c0,7.132,1.818,13.79,4.785,19.788l154.283-154.783L4.786,101.212z\"></path>	</g></g><g>	<g>		<path d=\"M507.214,101.21L352.933,256.005L507.214,410.79C510.18,404.792,512,398.134,512,391V121   C512,113.866,510.18,107.208,507.214,101.21z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>			\n							<h4>EMAIL US\n</h4>							<ul>\n							<li>\n											<a href=\"mailto:intake@modernhh.com\">\n											intake@modernhh.com\n											</a>\n									</li>\n						</ul>\n							<h3>Hours of Operation</h3>				\n					Monday				\n							10:00 AM						\n						-\n							3:00 PM						\n					Tuesday				\n							10:00 AM						\n						-\n							3:00 PM						\n					Wednesday				\n							10:00 AM						\n						-\n							3:00 PM						\n					Thursday				\n							10:00 AM						\n						-\n							3:00 PM						\n					Friday				\n							10:00 AM						\n						-\n							3:00 PM						\n					Saturday				\n					Closed				\n					Sunday				\n					Closed				\n					<h4>To reach the office after hours</h4>										<a href=\"tel:8885101879\">\n									Call Us 888-510-1879\n					</a>\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=10777%20Westheimer%20Rd%2C%20Houston%2C%20TX%2077042%2C%20USA&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"10777 Westheimer Rd, Houston, TX 77042, USA\"\n					aria-label=\"10777 Westheimer Rd, Houston, TX 77042, USA\"\n			></iframe>', 'contact-page', '', 'inherit', 'closed', 'closed', '', '508-revision-v1', '', '', '2026-01-26 13:13:50', '2026-01-26 13:13:50', '', 508, 'https://mrarif.me/cpnordic/?p=509', 0, 'revision', '', 0),
(510, 1, '2026-01-26 13:14:43', '2026-01-26 13:14:43', '', 'wood-background-1-e1738912619419', '', 'inherit', 'open', 'closed', '', 'wood-background-1-e1738912619419', '', '', '2026-01-26 13:14:43', '2026-01-26 13:14:43', '', 10, 'https://mrarif.me/cpnordic/wp-content/uploads/2026/01/wood-background-1-e1738912619419.jpg', 0, 'attachment', 'image/jpeg', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(511, 1, '2026-01-26 13:20:25', '2026-01-26 13:20:25', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>					\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle ANMELDELSER\n					</a>\n					<h2>HVORFOR VÆLGE CP NORDIC ApS?</h2>		<p>Når du vælger CP NORDIC ApS, får du:</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 450 450\" width=\"512\"><g><g><path d=\"m225 165.2c-25.9 0-48.9-18.8-53.3-45.2-2.4-14.2.9-28.6 9.3-40.3 8.4-11.8 20.9-19.5 35.1-21.9 29.4-4.9 57.3 15 62.2 44.5 4.9 29.4-15 57.3-44.4 62.2-3 .5-6 .7-8.9.7zm-7.6-99.8c-12.2 2-22.9 8.7-30.1 18.8s-10.1 22.4-8 34.6c3.8 22.7 23.5 38.8 45.7 38.8 2.5 0 5.1-.2 7.6-.6 25.2-4.2 42.3-28.1 38.1-53.4s-28.1-42.4-53.3-38.2z\"></path><path d=\"m255.2 115c-2.1 0-3.8-1.7-3.8-3.8 0-14.6-11.8-26.4-26.4-26.4-2.1 0-3.8-1.7-3.8-3.8s1.7-3.8 3.8-3.8c18.8 0 34.1 15.3 34.1 34.1 0 2-1.8 3.7-3.9 3.7z\"></path><path d=\"m236.1 203h-22.2c-2.1 0-3.8-1.7-3.8-3.8v-14.1c-3.1-.6-6.1-1.4-9.1-2.4l-7 12.2c-1.1 1.8-3.4 2.5-5.3 1.4l-19.2-11.1c-.9-.5-1.5-1.4-1.8-2.3-.3-1-.1-2 .4-2.9l7-12.1c-2.4-2.1-4.6-4.3-6.7-6.6l-12.1 7c-1.8 1.1-4.2.4-5.2-1.4l-11.1-19.2c-1.1-1.8-.4-4.2 1.4-5.2l11.9-6.8c-1-3-1.9-6.1-2.6-9.3h-13.7c-2.1 0-3.8-1.7-3.8-3.8v-22.2c0-2.1 1.7-3.8 3.8-3.8h13.4c.6-3.2 1.4-6.4 2.4-9.5l-11.5-6.6c-1.8-1.1-2.5-3.4-1.4-5.3l11.1-19.6c.5-.9 1.4-1.5 2.3-1.8s2-.1 2.9.4l11.3 6.6c2.2-2.5 4.5-4.8 7-7l-6.5-11.3c-.5-.9-.6-1.9-.4-2.9.3-1 .9-1.8 1.8-2.3l19.2-11.1c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l6.4 11.2c3.1-1.1 6.4-1.9 9.7-2.6v-13c0-2.1 1.7-3.8 3.8-3.8h22.2c2.1 0 3.8 1.7 3.8 3.8v12.8c3.3.7 6.5 1.5 9.7 2.6l6.5-11.2c.5-.9 1.4-1.5 2.3-1.8 1-.3 2-.1 2.9.4l19.2 11.1c.9.5 1.5 1.3 1.8 2.3s.1 2-.4 2.9l-6.5 11.3c2.5 2.2 4.8 4.5 7 7.1l11.3-6.6c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l11.1 19.2c1.1 1.8.4 4.2-1.4 5.3l-11.5 6.6c1 3.1 1.8 6.3 2.5 9.5h13.6c2.1 0 3.8 1.7 3.8 3.8v22.2c0 2.1-1.7 3.8-3.8 3.8h-13.6c-.6 3.1-1.5 6.2-2.5 9.3l11.9 6.8c1.8 1.1 2.5 3.4 1.4 5.2l-11.2 19.5c-1.1 1.8-3.4 2.5-5.2 1.4l-12-7c-2.1 2.4-4.4 4.6-6.7 6.6l7 12.1c.5.9.6 1.9.4 2.9s-.9 1.8-1.8 2.3l-19.2 11.1c-1.8 1.1-4.2.4-5.2-1.4l-7-12.2c-3 1-6 1.8-9.1 2.4v14.1c-.2 2.3-2 4-4.1 4zm-18.4-7.7h14.5v-13.5c0-1.9 1.4-3.5 3.3-3.8 4.7-.7 9.4-2 13.8-3.7 1.8-.7 3.8 0 4.7 1.7l6.7 11.6 12.6-7.3-6.7-11.6c-1-1.6-.5-3.7.9-4.9 3.7-3 7.2-6.4 10.2-10.1 1.2-1.5 3.3-1.8 4.9-.9l11.5 6.6 7.3-12.6-11.3-6.5c-1.6-.9-2.4-3-1.6-4.7 1.8-4.5 3.1-9.2 3.9-14 .3-1.9 1.9-3.2 3.8-3.2h13v-14.6h-12.8c-1.9 0-3.5-1.4-3.8-3.3-.7-4.8-2-9.6-3.7-14.2-.7-1.8 0-3.7 1.7-4.7l10.9-6.3-7.3-12.6-10.8 6.3c-1.6.9-3.7.6-4.9-.9-3.1-3.9-6.6-7.4-10.4-10.6-1.5-1.2-1.9-3.3-.9-4.9l6.2-10.7-12.6-7.3-6.1 10.6c-1 1.6-3 2.3-4.7 1.7-4.6-1.8-9.5-3.1-14.4-3.9-1.9-.3-3.3-1.9-3.3-3.8v-12.2h-14.5v12.3c0 1.9-1.4 3.5-3.3 3.8-5 .8-9.8 2.1-14.4 3.9-1.8.7-3.8 0-4.7-1.7l-6.1-10.6-12.6 7.3 6.2 10.7c.9 1.6.6 3.7-.9 4.9-3.9 3.1-7.4 6.7-10.4 10.6-1.2 1.5-3.3 1.9-4.9.9l-10.8-6.3-7.3 12.6 10.9 6.3c1.6.9 2.3 2.9 1.7 4.7-1.7 4.6-3 9.4-3.7 14.2-.3 1.9-1.9 3.3-3.8 3.3h-12.8v14.5h13c1.9 0 3.5 1.4 3.8 3.2.8 4.8 2.1 9.5 3.9 14 .7 1.8 0 3.8-1.6 4.7l-11.3 6.5 7.3 12.6 11.5-6.6c1.6-.9 3.7-.6 4.9.9 3 3.7 6.5 7.1 10.3 10.1 1.5 1.2 1.9 3.3.9 4.9l-6.7 11.6 12.6 7.3 6.7-11.6c.9-1.6 2.9-2.3 4.7-1.7 4.5 1.7 9.1 2.9 13.8 3.7 1.9.3 3.3 1.9 3.3 3.8z\"></path></g><g><g><g><path d=\"m45.3 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m153.9 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path></g><g><path d=\"m189.3 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.2c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c0 2.1-1.7 3.8-3.8 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m73.3 326.4c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m126 326.4c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m99.7 325.6c-.6 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4s4.1 1.1 4.4 3.2c2.4 16.5 12.3 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m50.2 266.6c-.1 0-.2 0-.3 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.7 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-8.9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.5 2.2zm81.8-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13.1-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.4-.7 2.3-.7z\"></path></g></g></g><g><g><path d=\"m296.1 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m404.7 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path></g><g><path d=\"m440 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.1c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c.2 2.1-1.6 3.8-3.7 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m324 326.3c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m376.7 326.3c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m350.4 325.6c-.5 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4 2.1-.3 4 1.1 4.4 3.2 2.4 16.5 12.4 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m301 266.6c-.1 0-.2 0-.4 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.6 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.4 2.2zm81.7-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.5-.7 2.3-.7z\"></path></g></g></g></g></g></svg>				\n									<h5>\n							et ungt og engageret team						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"496pt\" viewBox=\"0 0 496 496\" width=\"496pt\"><path d=\"m440 328h-28.207031c5.078125-6.703125 8.207031-14.960938 8.207031-24 0-8.824219-7.175781-16-16-16h-12v-19.960938c59.574219-14.445312 104-68.085937 104-132.039062 0-74.992188-61.007812-136-136-136s-136 61.007812-136 136c0 63.953125 44.425781 117.59375 104 132.039062v19.960938h-8.449219c-6.167969 0-12.359375 1.464844-17.886719 4.214844l-50.480468 25.25c-3.320313 1.664062-7.03125 2.535156-10.734375 2.535156h-40.449219v-16h-104v16h56v56h16v-56h16v128h-16v-56h-16v56h-56v16h104v-16h40.449219c3.703125 0 7.414062.871094 10.734375 2.527344l34.488281 17.25c5.519531 2.757812 11.710937 4.222656 17.878906 4.222656h24.449219v24h64v-24h48c13.230469 0 24-10.769531 24-24 0-6.167969-2.40625-11.742188-6.238281-16 3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16 0-13.230469-10.769531-24-24-24zm8 24c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm-208-280c0-66.167969 53.832031-120 120-120s120 53.832031 120 120-53.832031 120-120 120-120-53.832031-120-120zm104 134.976562c5.257812.617188 10.574219 1.023438 16 1.023438s10.742188-.40625 16-1.023438v17.023438h-32zm-40.449219 185.023438c-3.703125 0-7.414062-.871094-10.734375-2.527344l-34.488281-17.25c-5.519531-2.757812-11.710937-4.222656-17.878906-4.222656h-40.449219v-96h40.449219c6.167969 0 12.359375-1.464844 17.886719-4.214844l50.480468-25.25c3.320313-1.664062 7.03125-2.535156 10.734375-2.535156h84.449219c0 13.230469-10.769531 24-24 24h-48.28125l-23.863281 35.808594c-6.101563 9.160156-14.527344 16.589844-24.367188 21.503906-8.753906 4.375-18.542969 6.6875-28.320312 6.6875h-15.167969v16h15.167969c12.246093 0 24.519531-2.894531 35.472656-8.375 12.328125-6.160156 22.878906-15.480469 30.527344-26.945312l6.832031-10.253907v93.574219zm40.449219 24v-136h17.472656c-.898437 2.511719-1.472656 5.183594-1.472656 8 0 6.167969 2.40625 11.742188 6.238281 16-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16 0 10.414062 6.710938 19.214844 16 22.527344v9.472656zm96-24h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8s-3.59375 8-8 8zm0 0\"></path><path d=\"m394.878906 73.007812-7.757812 13.984376c17.816406 9.878906 28.878906 28.664062 28.878906 49.007812h16c0-26.160156-14.222656-50.296875-37.121094-62.992188zm0 0\"></path><path d=\"m360 80c4.734375 0 9.449219.59375 14.007812 1.769531l3.976563-15.503906c-5.855469-1.496094-11.90625-2.265625-17.984375-2.265625zm0 0\"></path><path d=\"m360 48c48.519531 0 88 39.480469 88 88 0 20.753906-7.398438 40.910156-20.832031 56.785156l12.207031 10.34375c15.882812-18.761718 24.625-42.601562 24.625-67.128906 0-57.34375-46.65625-104-104-104-24.527344 0-48.367188 8.753906-67.128906 24.632812l10.335937 12.199219c15.871094-13.433593 36.039063-20.832031 56.792969-20.832031zm0 0\"></path><path d=\"m427.128906 215.367188-10.335937-12.199219c-15.871094 13.433593-36.039063 20.832031-56.792969 20.832031-48.519531 0-88-39.480469-88-88 0-20.753906 7.398438-40.910156 20.832031-56.785156l-12.207031-10.34375c-15.882812 18.761718-24.625 42.601562-24.625 67.128906 0 57.34375 46.65625 104 104 104 24.527344 0 48.367188-8.753906 67.128906-24.632812zm0 0\"></path><path d=\"m121.214844 165.640625c4.953125-1.375 9.695312-3.34375 14.183594-5.878906l9.769531 4.886719 19.472656-19.480469-4.886719-9.769531c2.535156-4.496094 4.503906-9.230469 5.886719-14.183594l10.359375-3.445313v-27.53125l-10.351562-3.453125c-1.375-4.953125-3.34375-9.707031-5.886719-14.183594l4.886719-9.777343-19.472657-19.472657-9.769531 4.886719c-4.484375-2.535156-9.230469-4.503906-14.183594-5.878906l-3.453125-10.359375h-27.539062l-3.445313 10.359375c-4.953125 1.375-9.695312 3.34375-14.183594 5.878906l-9.777343-4.886719-19.472657 19.472657 4.886719 9.777343c-2.535156 4.488282-4.503906 9.230469-5.886719 14.183594l-10.351562 3.445313v27.53125l10.351562 3.453125c1.375 4.953125 3.34375 9.695312 5.886719 14.183594l-4.886719 9.769531 19.472657 19.480469 9.769531-4.886719c4.484375 2.535156 9.230469 4.503906 14.183594 5.878906l3.453125 10.359375h27.539062zm-12.304688-13.679687-2.679687 8.039062h-4.460938l-2.679687-8.039062-4.554688-.90625c-6.128906-1.222657-11.878906-3.605469-17.109375-7.09375l-3.867187-2.578126-7.574219 3.800782-3.160156-3.167969 3.792969-7.582031-2.578126-3.859375c-3.488281-5.222657-5.871093-10.980469-7.09375-17.109375l-.914062-4.554688-8.03125-2.679687v-4.46875l8.03125-2.671875.914062-4.554688c1.222657-6.136718 3.613282-11.886718 7.09375-17.109375l2.578126-3.859375-3.792969-7.589844 3.160156-3.160156 7.574219 3.800782 3.867187-2.578126c5.222657-3.488281 10.980469-5.863281 17.109375-7.09375l4.554688-.90625 2.679687-8.039062h4.460938l2.679687 8.039062 4.554688.90625c6.128906 1.222657 11.878906 3.605469 17.109375 7.09375l3.867187 2.578126 7.574219-3.800782 3.160156 3.160156-3.792969 7.589844 2.578126 3.859375c3.488281 5.214844 5.871093 10.972657 7.09375 17.109375l.914062 4.554688 8.03125 2.679687v4.46875l-8.03125 2.671875-.914062 4.554688c-1.222657 6.128906-3.613282 11.878906-7.09375 17.109375l-2.578126 3.859375 3.792969 7.582031-3.160156 3.167969-7.574219-3.800782-3.867187 2.578126c-5.222657 3.488281-10.980469 5.863281-17.109375 7.09375zm0 0\"></path><path d=\"m104 72c-17.648438 0-32 14.351562-32 32s14.351562 32 32 32 32-14.351562 32-32-14.351562-32-32-32zm0 48c-8.824219 0-16-7.175781-16-16s7.175781-16 16-16 16 7.175781 16 16-7.175781 16-16 16zm0 0\"></path><path d=\"m160 248v-40h48v-208h-208v208h106.664062zm-144-232h176v176h-48v24l-32-24h-96zm0 0\"></path><path d=\"m0 272h16v16h-16zm0 0\"></path><path d=\"m32 272h16v16h-16zm0 0\"></path><path d=\"m64 272h16v16h-16zm0 0\"></path><path d=\"m32 304h16v16h-16zm0 0\"></path><path d=\"m64 304h16v16h-16zm0 0\"></path><path d=\"m0 480h16v16h-16zm0 0\"></path><path d=\"m32 480h16v16h-16zm0 0\"></path><path d=\"m64 480h16v16h-16zm0 0\"></path><path d=\"m32 448h16v16h-16zm0 0\"></path><path d=\"m64 448h16v16h-16zm0 0\"></path></svg>				\n									<h5>\n							fokus på kvalitet og detaljer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m469.12 408.93-67.26-33.63v-22.13c10.71-7.69 18.6-19.07 21.78-32.27h5.28c8.81 0 15.98-7.17 15.98-15.98v-5.29c0-6.35-3.74-11.84-9.12-14.41 5.19-18.64-1.65-39.76-19.44-59.78-12.58-14.16-30.67-22.27-49.62-22.27-18.93 0-37.01 8.12-49.59 22.27-13.38 15.05-20.95 41.01-14.03 59.62-5.56 2.5-9.45 8.09-9.45 14.57v5.29c0 8.81 7.17 15.98 15.98 15.98h5.55c3.16 13.09 10.94 24.39 21.51 32.08v22.32l-67.26 33.63c-16.7 5.87-27.89 21.6-27.89 39.28v41.63c0 3.31 2.69 6 6 6h243.46c3.31 0 6-2.69 6-6v-41.63c0-17.68-11.19-33.41-27.88-39.28zm-62.24-17.7-15.83 27.66-13.29-13.29 19.29-19.29zm-37.61 5.88-20.59-20.58v-16.91c6.41 2.57 13.4 4.01 20.72 4.01 7.22 0 14.11-1.39 20.45-3.9v16.8zm63.63-97.48v5.29c0 2.16-1.82 3.98-3.98 3.98h-3.74c.01-.36.03-.71.03-1.07v-12.18h3.71c2.15-.01 3.98 1.82 3.98 3.98zm-119.29 8.2v1.07h-3.98c-2.16 0-3.98-1.82-3.98-3.98v-5.29c0-2.16 1.82-3.98 3.98-3.98l3.98.22zm1.95-24.19c-7.33-13.69-.89-37.39 10.53-50.24 10.31-11.6 25.12-18.25 40.63-18.25 15.52 0 30.34 6.65 40.65 18.25 8.43 9.48 21.3 27.59 17.4 46.39-5.66-.35-10.67-2.55-14.4-6.36-5.37-5.49-7.72-14-6.63-23.94.29-2.62-1.17-5.13-3.6-6.17s-5.25-.37-6.95 1.65c-19.33 22.92-45.95 36.76-73.9 38.68h-3.73zm10.05 24.19v-12.73c24.57-2.92 47.92-14.05 66.73-31.8 1.43 7.26 4.63 13.6 9.45 18.52 3.27 3.35 7.14 5.89 11.41 7.58v18.42c0 24.15-19.65 43.8-43.8 43.8s-43.79-19.64-43.79-43.79zm15.89 78.48 19.29 19.29-13.29 13.29-15.84-27.66zm3.22 97.53h-39.42v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.76v-35.63c0-12.68 8.1-23.95 20.15-28.05.26-.09.51-.19.75-.31l46.47-23.23 20.07 35.06c.93 1.62 2.56 2.72 4.41 2.97.27.04.53.05.79.05 1.58 0 3.11-.62 4.24-1.76l.14-.14zm12.08 0 7.41-64.69 5.06-5.06 4.84 4.84 7.86 64.92h-25.17zm128.2 0h-39.76v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.18l-6.2-51.17.25.25c1.13 1.13 2.66 1.76 4.24 1.76.26 0 .53-.02.79-.05 1.85-.25 3.48-1.34 4.41-2.97l20.07-35.06 46.47 23.23c.24.12.49.23.75.31 12.05 4.1 20.15 15.38 20.15 28.05v35.65zm-67.04-346.65h-10.84l28.38 39.84 28.38-39.84h-10.84c-3.31 0-6-2.69-6-6v-64.58h-98.7c-3.31 0-6-2.69-6-6s2.69-6 6-6h104.7c3.31 0 6 2.69 6 6v64.58h16.48c2.25 0 4.3 1.25 5.33 3.25s.86 4.4-.45 6.23l-40.02 56.18c-1.13 1.58-2.95 2.52-4.89 2.52s-3.76-.94-4.89-2.52l-40.02-56.18c-1.3-1.83-1.48-4.23-.45-6.23s3.09-3.25 5.33-3.25h16.48v-23.5h-65.38c-3.31 0-6-2.69-6-6s2.69-6 6-6h71.38c3.31 0 6 2.69 6 6v35.5c.02 3.31-2.67 6-5.98 6zm-118.44 50.65v-133.26c0-21.18-17.23-38.41-38.41-38.41h-207.7c-21.18-.01-38.41 17.23-38.41 38.41v133.26c0 21.18 17.23 38.41 38.41 38.41h105.8l64.8 55.11c1.11.94 2.49 1.43 3.89 1.43.85 0 1.71-.18 2.52-.55 2.12-.98 3.48-3.11 3.48-5.45v-50.54h27.21c21.18 0 38.41-17.23 38.41-38.41zm-71.62 26.41c-3.31 0-6 2.69-6 6v43.56l-56.59-48.13c-1.08-.92-2.46-1.43-3.89-1.43h-108.01c-14.56 0-26.41-11.85-26.41-26.41v-133.26c0-14.56 11.85-26.41 26.41-26.41h207.69c14.56 0 26.41 11.85 26.41 26.41v133.26c0 14.56-11.85 26.41-26.41 26.41zm-156.34-87.87h56.97c3.31 0 6-2.69 6-6v-39.2l8.55-8.55c2.34-2.34 2.34-6.14 0-8.49-2.34-2.34-6.14-2.34-8.48 0l-.7.7c-.98-1.97-3.01-3.32-5.36-3.32h-56.98c-3.31 0-6 2.69-6 6v52.85c0 3.32 2.69 6.01 6 6.01zm6-52.86h44.97v2.69l-18.16 18.16-8.84-8.84c-2.34-2.34-6.14-2.34-8.49 0-2.34 2.34-2.34 6.14 0 8.49l13.08 13.08c1.17 1.17 2.71 1.76 4.24 1.76s3.07-.59 4.24-1.76l13.92-13.92v21.2h-44.96zm173.62 3.08c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 31.92c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 36.52c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.68 5.99 6zm0 31.92c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.69 5.99 6zm-119.36 165.01h10.84l-28.38-39.84-28.38 39.84h10.84c3.31 0 6 2.69 6 6v64.58h98.7c3.31 0 6 2.69 6 6s-2.69 6-6 6h-104.69c-3.31 0-6-2.69-6-6v-64.58h-16.48c-2.25 0-4.3-1.25-5.33-3.25s-.86-4.4.45-6.23l40.02-56.18c1.13-1.58 2.95-2.52 4.89-2.52s3.76.94 4.89 2.52l40.02 56.18c1.3 1.83 1.48 4.23.45 6.23s-3.09 3.25-5.33 3.25h-16.48v23.5h65.38c3.31 0 6 2.69 6 6s-2.69 6-6 6h-71.38c-3.31 0-6-2.69-6-6v-35.5c-.03-3.31 2.66-6 5.97-6z\"></path></svg>				\n									<h5>\n							ærlig<br> rådgivning						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 510 510\"><path d=\"m192.036 385.845c-4.787-46.972-19.459-64.336-30.658-82.352-8.672-13.951-15.5-28.245-15.5-54.252 0-60.242 48.865-109.109 109.135-109.109 60.242 0 109.109 48.866 109.109 109.109 0 26.007-6.828 40.301-15.5 54.252-11.199 18.016-25.871 35.38-30.658 82.352 9.985 2.864 17.345 12.101 17.345 22.975v36.44c0 13.109-10.747 23.866-23.893 23.866h-10.334v9.945c0 12.588-10.341 22.929-22.93 22.929h-46.304c-12.589 0-22.93-10.341-22.93-22.929v-9.945h-10.334c-13.146 0-23.893-10.757-23.893-23.866v-36.44c0-10.874 7.36-20.111 17.345-22.975zm111.948-.917c4.199-42.194 15.78-62.332 26.488-79.049 10.147-15.842 19.65-28.207 19.65-56.638 0-52.513-42.597-95.109-95.109-95.109-52.537 0-95.135 42.596-95.135 95.109 0 28.431 9.503 40.796 19.65 56.638 10.708 16.717 22.289 36.855 26.488 79.049zm2.554-78.61c-1.175 13.701-11.985 24.191-24.783 24.191-13.527 0-24.862-12.086-24.862-26.673v-99.328c0-14.12 11.335-26.673 24.862-26.673 11.309 0 21.031 8.139 23.975 19.497 9.12 3.904 15.688 13.438 15.688 24.78 0 1.153-.068 2.289-.201 3.403 5.078 5.326 8.283 12.802 8.283 21.117 0 6.39-1.889 12.262-5.06 17.053 1.996 4.099 3.13 8.773 3.13 13.76 0 14.1-9.065 25.697-21.032 28.873zm-16.452-109.977c-1.964-2.729-4.916-4.506-8.331-4.506-6.192 0-10.862 6.21-10.862 12.673v99.328c0 6.677 4.67 12.673 10.862 12.673 5.516 0 9.822-4.614 10.717-10.425-4.709-1.416-8.923-4.144-12.279-7.814-2.607-2.852-2.409-7.283.443-9.89 2.851-2.607 7.282-2.408 9.889.443 2.416 2.642 5.72 4.356 9.402 4.356 7.733 0 13.643-7.218 13.643-15.734s-5.91-15.734-13.643-15.734c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7 5.352 0 10.388 1.655 14.658 4.533.593-1.743.915-3.634.915-5.612 0-2.11-.366-4.128-1.036-5.972-.769.858-1.588 1.66-2.453 2.397-2.94 2.507-7.361 2.156-9.869-.784-2.507-2.939-2.155-7.361.784-9.868 2.773-2.365 4.492-6.122 4.492-10.293 0-6.072-3.705-11.374-8.898-12.467-.154-.023-.307-.052-.458-.085-.499-.08-1.01-.121-1.532-.121-2.947 0-5.591 1.389-7.515 3.525-2.585 2.87-7.015 3.101-9.886.515-2.87-2.586-3.101-7.015-.515-9.886 3.111-3.453 7.059-5.988 11.472-7.252zm-104.526 67.344c-3.171-4.791-5.06-10.663-5.06-17.053 0-8.307 3.198-15.777 8.284-21.104-.133-1.118-.202-2.258-.202-3.416 0-11.354 6.582-20.897 15.717-24.792 2.948-11.354 12.67-19.485 23.946-19.485 13.56 0 24.888 12.555 24.888 26.673v99.328c0 14.585-11.328 26.673-24.888 26.673-12.765 0-23.578-10.484-24.757-24.184-11.98-3.166-21.058-14.769-21.058-28.88 0-4.987 1.134-9.661 3.13-13.76zm9.982-23.036c-.675 1.847-1.042 3.869-1.042 5.983 0 1.978.322 3.869.915 5.612 4.27-2.878 9.306-4.533 14.658-4.533 3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7-7.733 0-13.643 7.218-13.643 15.734s5.91 15.734 13.643 15.734c3.682 0 6.986-1.714 9.402-4.356 2.607-2.851 7.038-3.05 9.889-.443 2.852 2.607 3.05 7.038.443 9.89-3.35 3.664-7.556 6.389-12.255 7.807.891 5.813 5.192 10.432 10.693 10.432 6.21 0 10.888-5.993 10.888-12.673v-99.328c0-6.466-4.678-12.673-10.888-12.673-3.404 0-6.349 1.777-8.309 4.507 4.421 1.264 8.367 3.8 11.476 7.251 2.586 2.871 2.355 7.3-.516 9.886-2.87 2.586-7.3 2.355-9.886-.515-1.926-2.138-4.574-3.525-7.54-3.525-.493 0-.976.037-1.448.108-.196.045-.395.082-.596.11-5.165 1.118-8.844 6.404-8.844 12.455 0 1.243.153 2.45.442 3.594.101.284.183.572.246.862.748 2.326 2.071 4.346 3.814 5.823 2.947 2.498 3.311 6.919.813 9.866s-6.919 3.312-9.866.814c-.878-.745-1.71-1.554-2.489-2.422zm3.042 158.279c-5.442 0-9.893 4.451-9.893 9.892v36.44c0 5.423 4.454 9.866 9.893 9.866h17.334c3.866 0 7 3.134 7 7v16.945c0 4.902 4.027 8.929 8.93 8.929h46.304c4.903 0 8.93-4.027 8.93-8.929v-16.945c0-3.866 3.134-7 7-7h17.334c5.439 0 9.893-4.443 9.893-9.866v-36.44c0-5.441-4.451-9.892-9.893-9.892zm63.416-314.093 2.907-5.412c1.828-3.403 6.075-4.683 9.479-2.854 3.403 1.828 4.682 6.075 2.854 9.479l-16.073 29.925c-1.22 2.271-3.589 3.688-6.167 3.688s-4.947-1.417-6.167-3.688l-16.073-29.925c-1.828-3.404-.549-7.651 2.854-9.479 3.404-1.829 7.651-.549 9.479 2.854l2.907 5.412v-69.835c0-3.863 3.137-7 7-7s7 3.137 7 7zm-132.198 54.758-49.381-49.381c-2.732-2.731-2.732-7.167 0-9.899s7.168-2.732 9.9 0l49.38 49.38-1.771-5.881c-1.114-3.7.985-7.608 4.684-8.722 3.7-1.114 7.607.985 8.721 4.685l9.796 32.526c.743 2.468.069 5.145-1.753 6.968-1.823 1.823-4.5 2.496-6.969 1.753l-32.526-9.795c-3.699-1.114-5.798-5.022-4.684-8.721s5.022-5.798 8.721-4.684zm-44.859 122.299h-69.835c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7h69.835l-5.412-2.907c-3.403-1.828-4.682-6.076-2.854-9.479 1.828-3.404 6.075-4.683 9.479-2.855l29.926 16.074c2.271 1.22 3.688 3.589 3.688 6.167 0 2.577-1.417 4.947-3.688 6.166l-29.926 16.074c-3.404 1.828-7.651.549-9.479-2.855-1.828-3.403-.549-7.651 2.854-9.479zm54.758 118.198-49.38 49.38c-2.732 2.732-7.168 2.732-9.9 0s-2.732-7.167 0-9.899l49.381-49.381-5.882 1.772c-3.699 1.114-7.607-.985-8.721-4.685-1.114-3.699.985-7.607 4.684-8.721l32.526-9.795c2.469-.743 5.146-.07 6.969 1.753 1.822 1.823 2.496 4.5 1.753 6.968l-9.796 32.527c-1.114 3.699-5.021 5.798-8.721 4.684-3.699-1.114-5.798-5.022-4.684-8.721zm240.497-240.497 5.882-1.771c3.699-1.114 7.607.985 8.721 4.684s-.985 7.607-4.684 8.721l-32.526 9.795c-2.469.743-5.146.07-6.969-1.753-1.822-1.823-2.496-4.5-1.753-6.968l9.796-32.526c1.114-3.7 5.021-5.799 8.721-4.685 3.699 1.114 5.798 5.022 4.684 8.722l-1.771 5.881 49.38-49.38c2.732-2.732 7.168-2.732 9.9 0s2.732 7.168 0 9.899zm44.859 122.299 5.412 2.906c3.403 1.828 4.682 6.076 2.854 9.479-1.828 3.404-6.075 4.683-9.479 2.855l-29.926-16.074c-2.271-1.219-3.688-3.589-3.688-6.166 0-2.578 1.417-4.947 3.688-6.167l29.926-16.074c3.404-1.828 7.651-.549 9.479 2.855 1.828 3.403.549 7.651-2.854 9.479l-5.412 2.907h69.835c3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7zm-54.758 118.198 1.771 5.882c1.114 3.699-.985 7.607-4.684 8.721-3.7 1.114-7.607-.985-8.721-4.684l-9.796-32.527c-.743-2.468-.069-5.145 1.753-6.968 1.823-1.823 4.5-2.496 6.969-1.753l32.526 9.795c3.699 1.114 5.798 5.022 4.684 8.721-1.114 3.7-5.022 5.799-8.721 4.685l-5.882-1.772 49.381 49.381c2.732 2.732 2.732 7.167 0 9.899s-7.168 2.732-9.9 0z\"></path></svg>				\n									<h5>\n							gennemtænkte løsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"outline\"><path d=\"M486.41,144A28,28,0,0,0,472,92H349.123l5.457-21.828a48.513,48.513,0,0,0-12.848-46.153A41.035,41.035,0,0,0,312.609,12H308a8.009,8.009,0,0,0-8,8V47.413l-19.233,64.112A17.376,17.376,0,0,1,268,123.539V112a4,4,0,0,0-4-4H152a4,4,0,0,0-4,4v72a4,4,0,0,0,8,0V116h72V276H156V248a4,4,0,0,0-8,0v32a4,4,0,0,0,4,4H264a4,4,0,0,0,4-4V268.5h11.168A37.07,37.07,0,0,1,305.092,279a45.025,45.025,0,0,0,31.48,12.752L440,292a27.987,27.987,0,0,0,19.369-48.2,27.987,27.987,0,0,0,16-48A28,28,0,0,0,486.41,144ZM260,276H236V116h24Zm212-88H396a4,4,0,0,0,0,8h60a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h40a20,20,0,0,1,.01,40l-103.428-.25a37.07,37.07,0,0,1-25.924-10.5,45.031,45.031,0,0,0-31.49-12.752H268V131.686a25.317,25.317,0,0,0,20.429-17.862l19.4-64.675A4,4,0,0,0,308,48V20h4.609a33.082,33.082,0,0,1,23.481,9.69,40.507,40.507,0,0,1,10.728,38.541l-6.7,26.8A4,4,0,0,0,344,100H472a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h72a20,20,0,0,1,0,40Z\"></path><path d=\"M194.5,183.243l-1.9-.217a4,4,0,0,0-4.169,2.491L184.29,195.9H135.278l-3.539-9.317a4,4,0,0,0-7.478,2.84l2.459,6.477h-8.474L68.452,156.872a4,4,0,1,0-4.935,6.3L77.6,174.209,56.961,194.48l-6.636-5.491a4,4,0,1,0-5.1,6.163L87.219,229.9a44.1,44.1,0,0,0,28.05,10.1H212a8.009,8.009,0,0,0,8-8V203.9a8.009,8.009,0,0,0-8-8h-8v-2.01A10.708,10.708,0,0,0,194.5,183.243ZM212,203.9V232H115.269a36.081,36.081,0,0,1-22.951-8.264l-29.16-24.128,20.8-20.422L114.4,203.045a4,4,0,0,0,2.468.852H187a4,4,0,0,0,3.715-2.517l3.929-9.843a2.712,2.712,0,0,1,1.356,2.35v6.01a4,4,0,0,0,4,4Z\"></path><path d=\"M223.084,484.672,200.87,469.863V346.36A44.1,44.1,0,0,0,195.327,325l-17.183-30.94a4,4,0,0,0-7,3.884l17.184,30.94a36.073,36.073,0,0,1,4.537,17.478V468H164.333a4,4,0,1,0,0,8h31.321l12,8H152.865V352a4,4,0,0,0-.358-1.655l-25.454-56A4,4,0,0,0,123.411,292H114.2a4,4,0,0,0-3.945,4.658l8.862,53.175a36.016,36.016,0,0,1-1.951,18.949L78.642,468H48.333a4,4,0,1,0,0,8H80.377L92,484H32.088L76.63,361.366a4.017,4.017,0,0,0,.183-2.044L61.1,268H136a4,4,0,0,0,0-8H59.233L30.555,173.966A19.723,19.723,0,0,1,49.27,148H76a12,12,0,0,0,24,0h15.2a21.975,21.975,0,0,1,8.395,1.652l10.889,4.458a4,4,0,1,0,3.032-7.4L126.63,142.25A29.938,29.938,0,0,0,115.2,140H100v-4.527A16.014,16.014,0,0,0,112,120V103.473A16.014,16.014,0,0,0,124,88V80a4,4,0,0,0-4-4H90A22.025,22.025,0,0,0,68,98v18a12.02,12.02,0,0,0,8,11.314V140H49.27a27.723,27.723,0,0,0-26.305,36.5l29.493,88.482,16.29,94.655-46.128,127A4,4,0,0,0,26.38,492h78.485a4,4,0,0,0,2.268-7.3L86.3,470.368l38.318-98.69a44.018,44.018,0,0,0,2.385-23.16L118.921,300h1.914l24.03,52.867V488a4,4,0,0,0,4,4h72a4,4,0,0,0,2.219-7.328ZM76,98A14.015,14.015,0,0,1,90,84h26v4a8.009,8.009,0,0,1-8,8H92a4,4,0,0,0-4,4,11.962,11.962,0,0,1-1.53,5.881A12.044,12.044,0,0,0,76,104.686Zm4,14a3.981,3.981,0,0,1,3.407,1.9,4,4,0,0,0,5.956.975c.207-.171.7-.648.7-.648.032-.028.061-.057.09-.087A19.907,19.907,0,0,0,95.6,104H104v16a8.009,8.009,0,0,1-8,8,12.133,12.133,0,0,1-2.681-.3,4,4,0,1,0-1.775,7.8c.151.035.3.06.456.091V148a4,4,0,1,1-8,0V124a4,4,0,0,0-4-4,4,4,0,0,1,0-8Z\"></path></g></svg>				\n									<h5>\n							arbejde udført med ansvar						\n					</h5>\n				<p>Vi lover ikke mere, end vi kan holde – men vi holder det, vi lover.</p>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 13:20:25', '2026-01-26 13:20:25', '', 10, 'https://mrarif.me/cpnordic/?p=511', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(512, 1, '2026-01-26 13:20:25', '2026-01-26 13:20:25', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>					\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle ANMELDELSER\n					</a>\n					<h2>HVORFOR VÆLGE CP NORDIC ApS?</h2>		<p>Når du vælger CP NORDIC ApS, får du:</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 450 450\" width=\"512\"><g><g><path d=\"m225 165.2c-25.9 0-48.9-18.8-53.3-45.2-2.4-14.2.9-28.6 9.3-40.3 8.4-11.8 20.9-19.5 35.1-21.9 29.4-4.9 57.3 15 62.2 44.5 4.9 29.4-15 57.3-44.4 62.2-3 .5-6 .7-8.9.7zm-7.6-99.8c-12.2 2-22.9 8.7-30.1 18.8s-10.1 22.4-8 34.6c3.8 22.7 23.5 38.8 45.7 38.8 2.5 0 5.1-.2 7.6-.6 25.2-4.2 42.3-28.1 38.1-53.4s-28.1-42.4-53.3-38.2z\"></path><path d=\"m255.2 115c-2.1 0-3.8-1.7-3.8-3.8 0-14.6-11.8-26.4-26.4-26.4-2.1 0-3.8-1.7-3.8-3.8s1.7-3.8 3.8-3.8c18.8 0 34.1 15.3 34.1 34.1 0 2-1.8 3.7-3.9 3.7z\"></path><path d=\"m236.1 203h-22.2c-2.1 0-3.8-1.7-3.8-3.8v-14.1c-3.1-.6-6.1-1.4-9.1-2.4l-7 12.2c-1.1 1.8-3.4 2.5-5.3 1.4l-19.2-11.1c-.9-.5-1.5-1.4-1.8-2.3-.3-1-.1-2 .4-2.9l7-12.1c-2.4-2.1-4.6-4.3-6.7-6.6l-12.1 7c-1.8 1.1-4.2.4-5.2-1.4l-11.1-19.2c-1.1-1.8-.4-4.2 1.4-5.2l11.9-6.8c-1-3-1.9-6.1-2.6-9.3h-13.7c-2.1 0-3.8-1.7-3.8-3.8v-22.2c0-2.1 1.7-3.8 3.8-3.8h13.4c.6-3.2 1.4-6.4 2.4-9.5l-11.5-6.6c-1.8-1.1-2.5-3.4-1.4-5.3l11.1-19.6c.5-.9 1.4-1.5 2.3-1.8s2-.1 2.9.4l11.3 6.6c2.2-2.5 4.5-4.8 7-7l-6.5-11.3c-.5-.9-.6-1.9-.4-2.9.3-1 .9-1.8 1.8-2.3l19.2-11.1c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l6.4 11.2c3.1-1.1 6.4-1.9 9.7-2.6v-13c0-2.1 1.7-3.8 3.8-3.8h22.2c2.1 0 3.8 1.7 3.8 3.8v12.8c3.3.7 6.5 1.5 9.7 2.6l6.5-11.2c.5-.9 1.4-1.5 2.3-1.8 1-.3 2-.1 2.9.4l19.2 11.1c.9.5 1.5 1.3 1.8 2.3s.1 2-.4 2.9l-6.5 11.3c2.5 2.2 4.8 4.5 7 7.1l11.3-6.6c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l11.1 19.2c1.1 1.8.4 4.2-1.4 5.3l-11.5 6.6c1 3.1 1.8 6.3 2.5 9.5h13.6c2.1 0 3.8 1.7 3.8 3.8v22.2c0 2.1-1.7 3.8-3.8 3.8h-13.6c-.6 3.1-1.5 6.2-2.5 9.3l11.9 6.8c1.8 1.1 2.5 3.4 1.4 5.2l-11.2 19.5c-1.1 1.8-3.4 2.5-5.2 1.4l-12-7c-2.1 2.4-4.4 4.6-6.7 6.6l7 12.1c.5.9.6 1.9.4 2.9s-.9 1.8-1.8 2.3l-19.2 11.1c-1.8 1.1-4.2.4-5.2-1.4l-7-12.2c-3 1-6 1.8-9.1 2.4v14.1c-.2 2.3-2 4-4.1 4zm-18.4-7.7h14.5v-13.5c0-1.9 1.4-3.5 3.3-3.8 4.7-.7 9.4-2 13.8-3.7 1.8-.7 3.8 0 4.7 1.7l6.7 11.6 12.6-7.3-6.7-11.6c-1-1.6-.5-3.7.9-4.9 3.7-3 7.2-6.4 10.2-10.1 1.2-1.5 3.3-1.8 4.9-.9l11.5 6.6 7.3-12.6-11.3-6.5c-1.6-.9-2.4-3-1.6-4.7 1.8-4.5 3.1-9.2 3.9-14 .3-1.9 1.9-3.2 3.8-3.2h13v-14.6h-12.8c-1.9 0-3.5-1.4-3.8-3.3-.7-4.8-2-9.6-3.7-14.2-.7-1.8 0-3.7 1.7-4.7l10.9-6.3-7.3-12.6-10.8 6.3c-1.6.9-3.7.6-4.9-.9-3.1-3.9-6.6-7.4-10.4-10.6-1.5-1.2-1.9-3.3-.9-4.9l6.2-10.7-12.6-7.3-6.1 10.6c-1 1.6-3 2.3-4.7 1.7-4.6-1.8-9.5-3.1-14.4-3.9-1.9-.3-3.3-1.9-3.3-3.8v-12.2h-14.5v12.3c0 1.9-1.4 3.5-3.3 3.8-5 .8-9.8 2.1-14.4 3.9-1.8.7-3.8 0-4.7-1.7l-6.1-10.6-12.6 7.3 6.2 10.7c.9 1.6.6 3.7-.9 4.9-3.9 3.1-7.4 6.7-10.4 10.6-1.2 1.5-3.3 1.9-4.9.9l-10.8-6.3-7.3 12.6 10.9 6.3c1.6.9 2.3 2.9 1.7 4.7-1.7 4.6-3 9.4-3.7 14.2-.3 1.9-1.9 3.3-3.8 3.3h-12.8v14.5h13c1.9 0 3.5 1.4 3.8 3.2.8 4.8 2.1 9.5 3.9 14 .7 1.8 0 3.8-1.6 4.7l-11.3 6.5 7.3 12.6 11.5-6.6c1.6-.9 3.7-.6 4.9.9 3 3.7 6.5 7.1 10.3 10.1 1.5 1.2 1.9 3.3.9 4.9l-6.7 11.6 12.6 7.3 6.7-11.6c.9-1.6 2.9-2.3 4.7-1.7 4.5 1.7 9.1 2.9 13.8 3.7 1.9.3 3.3 1.9 3.3 3.8z\"></path></g><g><g><g><path d=\"m45.3 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m153.9 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path></g><g><path d=\"m189.3 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.2c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c0 2.1-1.7 3.8-3.8 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m73.3 326.4c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m126 326.4c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m99.7 325.6c-.6 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4s4.1 1.1 4.4 3.2c2.4 16.5 12.3 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m50.2 266.6c-.1 0-.2 0-.3 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.7 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-8.9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.5 2.2zm81.8-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13.1-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.4-.7 2.3-.7z\"></path></g></g></g><g><g><path d=\"m296.1 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m404.7 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path></g><g><path d=\"m440 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.1c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c.2 2.1-1.6 3.8-3.7 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m324 326.3c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m376.7 326.3c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m350.4 325.6c-.5 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4 2.1-.3 4 1.1 4.4 3.2 2.4 16.5 12.4 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m301 266.6c-.1 0-.2 0-.4 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.6 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.4 2.2zm81.7-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.5-.7 2.3-.7z\"></path></g></g></g></g></g></svg>				\n									<h5>\n							et ungt og engageret team						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"496pt\" viewBox=\"0 0 496 496\" width=\"496pt\"><path d=\"m440 328h-28.207031c5.078125-6.703125 8.207031-14.960938 8.207031-24 0-8.824219-7.175781-16-16-16h-12v-19.960938c59.574219-14.445312 104-68.085937 104-132.039062 0-74.992188-61.007812-136-136-136s-136 61.007812-136 136c0 63.953125 44.425781 117.59375 104 132.039062v19.960938h-8.449219c-6.167969 0-12.359375 1.464844-17.886719 4.214844l-50.480468 25.25c-3.320313 1.664062-7.03125 2.535156-10.734375 2.535156h-40.449219v-16h-104v16h56v56h16v-56h16v128h-16v-56h-16v56h-56v16h104v-16h40.449219c3.703125 0 7.414062.871094 10.734375 2.527344l34.488281 17.25c5.519531 2.757812 11.710937 4.222656 17.878906 4.222656h24.449219v24h64v-24h48c13.230469 0 24-10.769531 24-24 0-6.167969-2.40625-11.742188-6.238281-16 3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16 0-13.230469-10.769531-24-24-24zm8 24c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm-208-280c0-66.167969 53.832031-120 120-120s120 53.832031 120 120-53.832031 120-120 120-120-53.832031-120-120zm104 134.976562c5.257812.617188 10.574219 1.023438 16 1.023438s10.742188-.40625 16-1.023438v17.023438h-32zm-40.449219 185.023438c-3.703125 0-7.414062-.871094-10.734375-2.527344l-34.488281-17.25c-5.519531-2.757812-11.710937-4.222656-17.878906-4.222656h-40.449219v-96h40.449219c6.167969 0 12.359375-1.464844 17.886719-4.214844l50.480468-25.25c3.320313-1.664062 7.03125-2.535156 10.734375-2.535156h84.449219c0 13.230469-10.769531 24-24 24h-48.28125l-23.863281 35.808594c-6.101563 9.160156-14.527344 16.589844-24.367188 21.503906-8.753906 4.375-18.542969 6.6875-28.320312 6.6875h-15.167969v16h15.167969c12.246093 0 24.519531-2.894531 35.472656-8.375 12.328125-6.160156 22.878906-15.480469 30.527344-26.945312l6.832031-10.253907v93.574219zm40.449219 24v-136h17.472656c-.898437 2.511719-1.472656 5.183594-1.472656 8 0 6.167969 2.40625 11.742188 6.238281 16-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16 0 10.414062 6.710938 19.214844 16 22.527344v9.472656zm96-24h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8s-3.59375 8-8 8zm0 0\"></path><path d=\"m394.878906 73.007812-7.757812 13.984376c17.816406 9.878906 28.878906 28.664062 28.878906 49.007812h16c0-26.160156-14.222656-50.296875-37.121094-62.992188zm0 0\"></path><path d=\"m360 80c4.734375 0 9.449219.59375 14.007812 1.769531l3.976563-15.503906c-5.855469-1.496094-11.90625-2.265625-17.984375-2.265625zm0 0\"></path><path d=\"m360 48c48.519531 0 88 39.480469 88 88 0 20.753906-7.398438 40.910156-20.832031 56.785156l12.207031 10.34375c15.882812-18.761718 24.625-42.601562 24.625-67.128906 0-57.34375-46.65625-104-104-104-24.527344 0-48.367188 8.753906-67.128906 24.632812l10.335937 12.199219c15.871094-13.433593 36.039063-20.832031 56.792969-20.832031zm0 0\"></path><path d=\"m427.128906 215.367188-10.335937-12.199219c-15.871094 13.433593-36.039063 20.832031-56.792969 20.832031-48.519531 0-88-39.480469-88-88 0-20.753906 7.398438-40.910156 20.832031-56.785156l-12.207031-10.34375c-15.882812 18.761718-24.625 42.601562-24.625 67.128906 0 57.34375 46.65625 104 104 104 24.527344 0 48.367188-8.753906 67.128906-24.632812zm0 0\"></path><path d=\"m121.214844 165.640625c4.953125-1.375 9.695312-3.34375 14.183594-5.878906l9.769531 4.886719 19.472656-19.480469-4.886719-9.769531c2.535156-4.496094 4.503906-9.230469 5.886719-14.183594l10.359375-3.445313v-27.53125l-10.351562-3.453125c-1.375-4.953125-3.34375-9.707031-5.886719-14.183594l4.886719-9.777343-19.472657-19.472657-9.769531 4.886719c-4.484375-2.535156-9.230469-4.503906-14.183594-5.878906l-3.453125-10.359375h-27.539062l-3.445313 10.359375c-4.953125 1.375-9.695312 3.34375-14.183594 5.878906l-9.777343-4.886719-19.472657 19.472657 4.886719 9.777343c-2.535156 4.488282-4.503906 9.230469-5.886719 14.183594l-10.351562 3.445313v27.53125l10.351562 3.453125c1.375 4.953125 3.34375 9.695312 5.886719 14.183594l-4.886719 9.769531 19.472657 19.480469 9.769531-4.886719c4.484375 2.535156 9.230469 4.503906 14.183594 5.878906l3.453125 10.359375h27.539062zm-12.304688-13.679687-2.679687 8.039062h-4.460938l-2.679687-8.039062-4.554688-.90625c-6.128906-1.222657-11.878906-3.605469-17.109375-7.09375l-3.867187-2.578126-7.574219 3.800782-3.160156-3.167969 3.792969-7.582031-2.578126-3.859375c-3.488281-5.222657-5.871093-10.980469-7.09375-17.109375l-.914062-4.554688-8.03125-2.679687v-4.46875l8.03125-2.671875.914062-4.554688c1.222657-6.136718 3.613282-11.886718 7.09375-17.109375l2.578126-3.859375-3.792969-7.589844 3.160156-3.160156 7.574219 3.800782 3.867187-2.578126c5.222657-3.488281 10.980469-5.863281 17.109375-7.09375l4.554688-.90625 2.679687-8.039062h4.460938l2.679687 8.039062 4.554688.90625c6.128906 1.222657 11.878906 3.605469 17.109375 7.09375l3.867187 2.578126 7.574219-3.800782 3.160156 3.160156-3.792969 7.589844 2.578126 3.859375c3.488281 5.214844 5.871093 10.972657 7.09375 17.109375l.914062 4.554688 8.03125 2.679687v4.46875l-8.03125 2.671875-.914062 4.554688c-1.222657 6.128906-3.613282 11.878906-7.09375 17.109375l-2.578126 3.859375 3.792969 7.582031-3.160156 3.167969-7.574219-3.800782-3.867187 2.578126c-5.222657 3.488281-10.980469 5.863281-17.109375 7.09375zm0 0\"></path><path d=\"m104 72c-17.648438 0-32 14.351562-32 32s14.351562 32 32 32 32-14.351562 32-32-14.351562-32-32-32zm0 48c-8.824219 0-16-7.175781-16-16s7.175781-16 16-16 16 7.175781 16 16-7.175781 16-16 16zm0 0\"></path><path d=\"m160 248v-40h48v-208h-208v208h106.664062zm-144-232h176v176h-48v24l-32-24h-96zm0 0\"></path><path d=\"m0 272h16v16h-16zm0 0\"></path><path d=\"m32 272h16v16h-16zm0 0\"></path><path d=\"m64 272h16v16h-16zm0 0\"></path><path d=\"m32 304h16v16h-16zm0 0\"></path><path d=\"m64 304h16v16h-16zm0 0\"></path><path d=\"m0 480h16v16h-16zm0 0\"></path><path d=\"m32 480h16v16h-16zm0 0\"></path><path d=\"m64 480h16v16h-16zm0 0\"></path><path d=\"m32 448h16v16h-16zm0 0\"></path><path d=\"m64 448h16v16h-16zm0 0\"></path></svg>				\n									<h5>\n							fokus på kvalitet og detaljer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m469.12 408.93-67.26-33.63v-22.13c10.71-7.69 18.6-19.07 21.78-32.27h5.28c8.81 0 15.98-7.17 15.98-15.98v-5.29c0-6.35-3.74-11.84-9.12-14.41 5.19-18.64-1.65-39.76-19.44-59.78-12.58-14.16-30.67-22.27-49.62-22.27-18.93 0-37.01 8.12-49.59 22.27-13.38 15.05-20.95 41.01-14.03 59.62-5.56 2.5-9.45 8.09-9.45 14.57v5.29c0 8.81 7.17 15.98 15.98 15.98h5.55c3.16 13.09 10.94 24.39 21.51 32.08v22.32l-67.26 33.63c-16.7 5.87-27.89 21.6-27.89 39.28v41.63c0 3.31 2.69 6 6 6h243.46c3.31 0 6-2.69 6-6v-41.63c0-17.68-11.19-33.41-27.88-39.28zm-62.24-17.7-15.83 27.66-13.29-13.29 19.29-19.29zm-37.61 5.88-20.59-20.58v-16.91c6.41 2.57 13.4 4.01 20.72 4.01 7.22 0 14.11-1.39 20.45-3.9v16.8zm63.63-97.48v5.29c0 2.16-1.82 3.98-3.98 3.98h-3.74c.01-.36.03-.71.03-1.07v-12.18h3.71c2.15-.01 3.98 1.82 3.98 3.98zm-119.29 8.2v1.07h-3.98c-2.16 0-3.98-1.82-3.98-3.98v-5.29c0-2.16 1.82-3.98 3.98-3.98l3.98.22zm1.95-24.19c-7.33-13.69-.89-37.39 10.53-50.24 10.31-11.6 25.12-18.25 40.63-18.25 15.52 0 30.34 6.65 40.65 18.25 8.43 9.48 21.3 27.59 17.4 46.39-5.66-.35-10.67-2.55-14.4-6.36-5.37-5.49-7.72-14-6.63-23.94.29-2.62-1.17-5.13-3.6-6.17s-5.25-.37-6.95 1.65c-19.33 22.92-45.95 36.76-73.9 38.68h-3.73zm10.05 24.19v-12.73c24.57-2.92 47.92-14.05 66.73-31.8 1.43 7.26 4.63 13.6 9.45 18.52 3.27 3.35 7.14 5.89 11.41 7.58v18.42c0 24.15-19.65 43.8-43.8 43.8s-43.79-19.64-43.79-43.79zm15.89 78.48 19.29 19.29-13.29 13.29-15.84-27.66zm3.22 97.53h-39.42v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.76v-35.63c0-12.68 8.1-23.95 20.15-28.05.26-.09.51-.19.75-.31l46.47-23.23 20.07 35.06c.93 1.62 2.56 2.72 4.41 2.97.27.04.53.05.79.05 1.58 0 3.11-.62 4.24-1.76l.14-.14zm12.08 0 7.41-64.69 5.06-5.06 4.84 4.84 7.86 64.92h-25.17zm128.2 0h-39.76v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.18l-6.2-51.17.25.25c1.13 1.13 2.66 1.76 4.24 1.76.26 0 .53-.02.79-.05 1.85-.25 3.48-1.34 4.41-2.97l20.07-35.06 46.47 23.23c.24.12.49.23.75.31 12.05 4.1 20.15 15.38 20.15 28.05v35.65zm-67.04-346.65h-10.84l28.38 39.84 28.38-39.84h-10.84c-3.31 0-6-2.69-6-6v-64.58h-98.7c-3.31 0-6-2.69-6-6s2.69-6 6-6h104.7c3.31 0 6 2.69 6 6v64.58h16.48c2.25 0 4.3 1.25 5.33 3.25s.86 4.4-.45 6.23l-40.02 56.18c-1.13 1.58-2.95 2.52-4.89 2.52s-3.76-.94-4.89-2.52l-40.02-56.18c-1.3-1.83-1.48-4.23-.45-6.23s3.09-3.25 5.33-3.25h16.48v-23.5h-65.38c-3.31 0-6-2.69-6-6s2.69-6 6-6h71.38c3.31 0 6 2.69 6 6v35.5c.02 3.31-2.67 6-5.98 6zm-118.44 50.65v-133.26c0-21.18-17.23-38.41-38.41-38.41h-207.7c-21.18-.01-38.41 17.23-38.41 38.41v133.26c0 21.18 17.23 38.41 38.41 38.41h105.8l64.8 55.11c1.11.94 2.49 1.43 3.89 1.43.85 0 1.71-.18 2.52-.55 2.12-.98 3.48-3.11 3.48-5.45v-50.54h27.21c21.18 0 38.41-17.23 38.41-38.41zm-71.62 26.41c-3.31 0-6 2.69-6 6v43.56l-56.59-48.13c-1.08-.92-2.46-1.43-3.89-1.43h-108.01c-14.56 0-26.41-11.85-26.41-26.41v-133.26c0-14.56 11.85-26.41 26.41-26.41h207.69c14.56 0 26.41 11.85 26.41 26.41v133.26c0 14.56-11.85 26.41-26.41 26.41zm-156.34-87.87h56.97c3.31 0 6-2.69 6-6v-39.2l8.55-8.55c2.34-2.34 2.34-6.14 0-8.49-2.34-2.34-6.14-2.34-8.48 0l-.7.7c-.98-1.97-3.01-3.32-5.36-3.32h-56.98c-3.31 0-6 2.69-6 6v52.85c0 3.32 2.69 6.01 6 6.01zm6-52.86h44.97v2.69l-18.16 18.16-8.84-8.84c-2.34-2.34-6.14-2.34-8.49 0-2.34 2.34-2.34 6.14 0 8.49l13.08 13.08c1.17 1.17 2.71 1.76 4.24 1.76s3.07-.59 4.24-1.76l13.92-13.92v21.2h-44.96zm173.62 3.08c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 31.92c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 36.52c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.68 5.99 6zm0 31.92c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.69 5.99 6zm-119.36 165.01h10.84l-28.38-39.84-28.38 39.84h10.84c3.31 0 6 2.69 6 6v64.58h98.7c3.31 0 6 2.69 6 6s-2.69 6-6 6h-104.69c-3.31 0-6-2.69-6-6v-64.58h-16.48c-2.25 0-4.3-1.25-5.33-3.25s-.86-4.4.45-6.23l40.02-56.18c1.13-1.58 2.95-2.52 4.89-2.52s3.76.94 4.89 2.52l40.02 56.18c1.3 1.83 1.48 4.23.45 6.23s-3.09 3.25-5.33 3.25h-16.48v23.5h65.38c3.31 0 6 2.69 6 6s-2.69 6-6 6h-71.38c-3.31 0-6-2.69-6-6v-35.5c-.03-3.31 2.66-6 5.97-6z\"></path></svg>				\n									<h5>\n							ærlig<br> rådgivning						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 510 510\"><path d=\"m192.036 385.845c-4.787-46.972-19.459-64.336-30.658-82.352-8.672-13.951-15.5-28.245-15.5-54.252 0-60.242 48.865-109.109 109.135-109.109 60.242 0 109.109 48.866 109.109 109.109 0 26.007-6.828 40.301-15.5 54.252-11.199 18.016-25.871 35.38-30.658 82.352 9.985 2.864 17.345 12.101 17.345 22.975v36.44c0 13.109-10.747 23.866-23.893 23.866h-10.334v9.945c0 12.588-10.341 22.929-22.93 22.929h-46.304c-12.589 0-22.93-10.341-22.93-22.929v-9.945h-10.334c-13.146 0-23.893-10.757-23.893-23.866v-36.44c0-10.874 7.36-20.111 17.345-22.975zm111.948-.917c4.199-42.194 15.78-62.332 26.488-79.049 10.147-15.842 19.65-28.207 19.65-56.638 0-52.513-42.597-95.109-95.109-95.109-52.537 0-95.135 42.596-95.135 95.109 0 28.431 9.503 40.796 19.65 56.638 10.708 16.717 22.289 36.855 26.488 79.049zm2.554-78.61c-1.175 13.701-11.985 24.191-24.783 24.191-13.527 0-24.862-12.086-24.862-26.673v-99.328c0-14.12 11.335-26.673 24.862-26.673 11.309 0 21.031 8.139 23.975 19.497 9.12 3.904 15.688 13.438 15.688 24.78 0 1.153-.068 2.289-.201 3.403 5.078 5.326 8.283 12.802 8.283 21.117 0 6.39-1.889 12.262-5.06 17.053 1.996 4.099 3.13 8.773 3.13 13.76 0 14.1-9.065 25.697-21.032 28.873zm-16.452-109.977c-1.964-2.729-4.916-4.506-8.331-4.506-6.192 0-10.862 6.21-10.862 12.673v99.328c0 6.677 4.67 12.673 10.862 12.673 5.516 0 9.822-4.614 10.717-10.425-4.709-1.416-8.923-4.144-12.279-7.814-2.607-2.852-2.409-7.283.443-9.89 2.851-2.607 7.282-2.408 9.889.443 2.416 2.642 5.72 4.356 9.402 4.356 7.733 0 13.643-7.218 13.643-15.734s-5.91-15.734-13.643-15.734c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7 5.352 0 10.388 1.655 14.658 4.533.593-1.743.915-3.634.915-5.612 0-2.11-.366-4.128-1.036-5.972-.769.858-1.588 1.66-2.453 2.397-2.94 2.507-7.361 2.156-9.869-.784-2.507-2.939-2.155-7.361.784-9.868 2.773-2.365 4.492-6.122 4.492-10.293 0-6.072-3.705-11.374-8.898-12.467-.154-.023-.307-.052-.458-.085-.499-.08-1.01-.121-1.532-.121-2.947 0-5.591 1.389-7.515 3.525-2.585 2.87-7.015 3.101-9.886.515-2.87-2.586-3.101-7.015-.515-9.886 3.111-3.453 7.059-5.988 11.472-7.252zm-104.526 67.344c-3.171-4.791-5.06-10.663-5.06-17.053 0-8.307 3.198-15.777 8.284-21.104-.133-1.118-.202-2.258-.202-3.416 0-11.354 6.582-20.897 15.717-24.792 2.948-11.354 12.67-19.485 23.946-19.485 13.56 0 24.888 12.555 24.888 26.673v99.328c0 14.585-11.328 26.673-24.888 26.673-12.765 0-23.578-10.484-24.757-24.184-11.98-3.166-21.058-14.769-21.058-28.88 0-4.987 1.134-9.661 3.13-13.76zm9.982-23.036c-.675 1.847-1.042 3.869-1.042 5.983 0 1.978.322 3.869.915 5.612 4.27-2.878 9.306-4.533 14.658-4.533 3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7-7.733 0-13.643 7.218-13.643 15.734s5.91 15.734 13.643 15.734c3.682 0 6.986-1.714 9.402-4.356 2.607-2.851 7.038-3.05 9.889-.443 2.852 2.607 3.05 7.038.443 9.89-3.35 3.664-7.556 6.389-12.255 7.807.891 5.813 5.192 10.432 10.693 10.432 6.21 0 10.888-5.993 10.888-12.673v-99.328c0-6.466-4.678-12.673-10.888-12.673-3.404 0-6.349 1.777-8.309 4.507 4.421 1.264 8.367 3.8 11.476 7.251 2.586 2.871 2.355 7.3-.516 9.886-2.87 2.586-7.3 2.355-9.886-.515-1.926-2.138-4.574-3.525-7.54-3.525-.493 0-.976.037-1.448.108-.196.045-.395.082-.596.11-5.165 1.118-8.844 6.404-8.844 12.455 0 1.243.153 2.45.442 3.594.101.284.183.572.246.862.748 2.326 2.071 4.346 3.814 5.823 2.947 2.498 3.311 6.919.813 9.866s-6.919 3.312-9.866.814c-.878-.745-1.71-1.554-2.489-2.422zm3.042 158.279c-5.442 0-9.893 4.451-9.893 9.892v36.44c0 5.423 4.454 9.866 9.893 9.866h17.334c3.866 0 7 3.134 7 7v16.945c0 4.902 4.027 8.929 8.93 8.929h46.304c4.903 0 8.93-4.027 8.93-8.929v-16.945c0-3.866 3.134-7 7-7h17.334c5.439 0 9.893-4.443 9.893-9.866v-36.44c0-5.441-4.451-9.892-9.893-9.892zm63.416-314.093 2.907-5.412c1.828-3.403 6.075-4.683 9.479-2.854 3.403 1.828 4.682 6.075 2.854 9.479l-16.073 29.925c-1.22 2.271-3.589 3.688-6.167 3.688s-4.947-1.417-6.167-3.688l-16.073-29.925c-1.828-3.404-.549-7.651 2.854-9.479 3.404-1.829 7.651-.549 9.479 2.854l2.907 5.412v-69.835c0-3.863 3.137-7 7-7s7 3.137 7 7zm-132.198 54.758-49.381-49.381c-2.732-2.731-2.732-7.167 0-9.899s7.168-2.732 9.9 0l49.38 49.38-1.771-5.881c-1.114-3.7.985-7.608 4.684-8.722 3.7-1.114 7.607.985 8.721 4.685l9.796 32.526c.743 2.468.069 5.145-1.753 6.968-1.823 1.823-4.5 2.496-6.969 1.753l-32.526-9.795c-3.699-1.114-5.798-5.022-4.684-8.721s5.022-5.798 8.721-4.684zm-44.859 122.299h-69.835c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7h69.835l-5.412-2.907c-3.403-1.828-4.682-6.076-2.854-9.479 1.828-3.404 6.075-4.683 9.479-2.855l29.926 16.074c2.271 1.22 3.688 3.589 3.688 6.167 0 2.577-1.417 4.947-3.688 6.166l-29.926 16.074c-3.404 1.828-7.651.549-9.479-2.855-1.828-3.403-.549-7.651 2.854-9.479zm54.758 118.198-49.38 49.38c-2.732 2.732-7.168 2.732-9.9 0s-2.732-7.167 0-9.899l49.381-49.381-5.882 1.772c-3.699 1.114-7.607-.985-8.721-4.685-1.114-3.699.985-7.607 4.684-8.721l32.526-9.795c2.469-.743 5.146-.07 6.969 1.753 1.822 1.823 2.496 4.5 1.753 6.968l-9.796 32.527c-1.114 3.699-5.021 5.798-8.721 4.684-3.699-1.114-5.798-5.022-4.684-8.721zm240.497-240.497 5.882-1.771c3.699-1.114 7.607.985 8.721 4.684s-.985 7.607-4.684 8.721l-32.526 9.795c-2.469.743-5.146.07-6.969-1.753-1.822-1.823-2.496-4.5-1.753-6.968l9.796-32.526c1.114-3.7 5.021-5.799 8.721-4.685 3.699 1.114 5.798 5.022 4.684 8.722l-1.771 5.881 49.38-49.38c2.732-2.732 7.168-2.732 9.9 0s2.732 7.168 0 9.899zm44.859 122.299 5.412 2.906c3.403 1.828 4.682 6.076 2.854 9.479-1.828 3.404-6.075 4.683-9.479 2.855l-29.926-16.074c-2.271-1.219-3.688-3.589-3.688-6.166 0-2.578 1.417-4.947 3.688-6.167l29.926-16.074c3.404-1.828 7.651-.549 9.479 2.855 1.828 3.403.549 7.651-2.854 9.479l-5.412 2.907h69.835c3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7zm-54.758 118.198 1.771 5.882c1.114 3.699-.985 7.607-4.684 8.721-3.7 1.114-7.607-.985-8.721-4.684l-9.796-32.527c-.743-2.468-.069-5.145 1.753-6.968 1.823-1.823 4.5-2.496 6.969-1.753l32.526 9.795c3.699 1.114 5.798 5.022 4.684 8.721-1.114 3.7-5.022 5.799-8.721 4.685l-5.882-1.772 49.381 49.381c2.732 2.732 2.732 7.167 0 9.899s-7.168 2.732-9.9 0z\"></path></svg>				\n									<h5>\n							gennemtænkte løsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"outline\"><path d=\"M486.41,144A28,28,0,0,0,472,92H349.123l5.457-21.828a48.513,48.513,0,0,0-12.848-46.153A41.035,41.035,0,0,0,312.609,12H308a8.009,8.009,0,0,0-8,8V47.413l-19.233,64.112A17.376,17.376,0,0,1,268,123.539V112a4,4,0,0,0-4-4H152a4,4,0,0,0-4,4v72a4,4,0,0,0,8,0V116h72V276H156V248a4,4,0,0,0-8,0v32a4,4,0,0,0,4,4H264a4,4,0,0,0,4-4V268.5h11.168A37.07,37.07,0,0,1,305.092,279a45.025,45.025,0,0,0,31.48,12.752L440,292a27.987,27.987,0,0,0,19.369-48.2,27.987,27.987,0,0,0,16-48A28,28,0,0,0,486.41,144ZM260,276H236V116h24Zm212-88H396a4,4,0,0,0,0,8h60a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h40a20,20,0,0,1,.01,40l-103.428-.25a37.07,37.07,0,0,1-25.924-10.5,45.031,45.031,0,0,0-31.49-12.752H268V131.686a25.317,25.317,0,0,0,20.429-17.862l19.4-64.675A4,4,0,0,0,308,48V20h4.609a33.082,33.082,0,0,1,23.481,9.69,40.507,40.507,0,0,1,10.728,38.541l-6.7,26.8A4,4,0,0,0,344,100H472a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h72a20,20,0,0,1,0,40Z\"></path><path d=\"M194.5,183.243l-1.9-.217a4,4,0,0,0-4.169,2.491L184.29,195.9H135.278l-3.539-9.317a4,4,0,0,0-7.478,2.84l2.459,6.477h-8.474L68.452,156.872a4,4,0,1,0-4.935,6.3L77.6,174.209,56.961,194.48l-6.636-5.491a4,4,0,1,0-5.1,6.163L87.219,229.9a44.1,44.1,0,0,0,28.05,10.1H212a8.009,8.009,0,0,0,8-8V203.9a8.009,8.009,0,0,0-8-8h-8v-2.01A10.708,10.708,0,0,0,194.5,183.243ZM212,203.9V232H115.269a36.081,36.081,0,0,1-22.951-8.264l-29.16-24.128,20.8-20.422L114.4,203.045a4,4,0,0,0,2.468.852H187a4,4,0,0,0,3.715-2.517l3.929-9.843a2.712,2.712,0,0,1,1.356,2.35v6.01a4,4,0,0,0,4,4Z\"></path><path d=\"M223.084,484.672,200.87,469.863V346.36A44.1,44.1,0,0,0,195.327,325l-17.183-30.94a4,4,0,0,0-7,3.884l17.184,30.94a36.073,36.073,0,0,1,4.537,17.478V468H164.333a4,4,0,1,0,0,8h31.321l12,8H152.865V352a4,4,0,0,0-.358-1.655l-25.454-56A4,4,0,0,0,123.411,292H114.2a4,4,0,0,0-3.945,4.658l8.862,53.175a36.016,36.016,0,0,1-1.951,18.949L78.642,468H48.333a4,4,0,1,0,0,8H80.377L92,484H32.088L76.63,361.366a4.017,4.017,0,0,0,.183-2.044L61.1,268H136a4,4,0,0,0,0-8H59.233L30.555,173.966A19.723,19.723,0,0,1,49.27,148H76a12,12,0,0,0,24,0h15.2a21.975,21.975,0,0,1,8.395,1.652l10.889,4.458a4,4,0,1,0,3.032-7.4L126.63,142.25A29.938,29.938,0,0,0,115.2,140H100v-4.527A16.014,16.014,0,0,0,112,120V103.473A16.014,16.014,0,0,0,124,88V80a4,4,0,0,0-4-4H90A22.025,22.025,0,0,0,68,98v18a12.02,12.02,0,0,0,8,11.314V140H49.27a27.723,27.723,0,0,0-26.305,36.5l29.493,88.482,16.29,94.655-46.128,127A4,4,0,0,0,26.38,492h78.485a4,4,0,0,0,2.268-7.3L86.3,470.368l38.318-98.69a44.018,44.018,0,0,0,2.385-23.16L118.921,300h1.914l24.03,52.867V488a4,4,0,0,0,4,4h72a4,4,0,0,0,2.219-7.328ZM76,98A14.015,14.015,0,0,1,90,84h26v4a8.009,8.009,0,0,1-8,8H92a4,4,0,0,0-4,4,11.962,11.962,0,0,1-1.53,5.881A12.044,12.044,0,0,0,76,104.686Zm4,14a3.981,3.981,0,0,1,3.407,1.9,4,4,0,0,0,5.956.975c.207-.171.7-.648.7-.648.032-.028.061-.057.09-.087A19.907,19.907,0,0,0,95.6,104H104v16a8.009,8.009,0,0,1-8,8,12.133,12.133,0,0,1-2.681-.3,4,4,0,1,0-1.775,7.8c.151.035.3.06.456.091V148a4,4,0,1,1-8,0V124a4,4,0,0,0-4-4,4,4,0,0,1,0-8Z\"></path></g></svg>				\n									<h5>\n							arbejde udført med ansvar						\n					</h5>\n				<p>Vi lover ikke mere, end vi kan holde – men vi holder det, vi lover.</p>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 13:20:25', '2026-01-26 13:20:25', '', 10, 'https://mrarif.me/cpnordic/?p=512', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(514, 1, '2026-01-26 13:21:03', '2026-01-26 13:21:03', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>					\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle ANMELDELSER\n					</a>\n					<h2>HVORFOR VÆLGE CP NORDIC ApS?</h2>		<p>Når du vælger CP NORDIC ApS, får du:</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 450 450\" width=\"512\"><g><g><path d=\"m225 165.2c-25.9 0-48.9-18.8-53.3-45.2-2.4-14.2.9-28.6 9.3-40.3 8.4-11.8 20.9-19.5 35.1-21.9 29.4-4.9 57.3 15 62.2 44.5 4.9 29.4-15 57.3-44.4 62.2-3 .5-6 .7-8.9.7zm-7.6-99.8c-12.2 2-22.9 8.7-30.1 18.8s-10.1 22.4-8 34.6c3.8 22.7 23.5 38.8 45.7 38.8 2.5 0 5.1-.2 7.6-.6 25.2-4.2 42.3-28.1 38.1-53.4s-28.1-42.4-53.3-38.2z\"></path><path d=\"m255.2 115c-2.1 0-3.8-1.7-3.8-3.8 0-14.6-11.8-26.4-26.4-26.4-2.1 0-3.8-1.7-3.8-3.8s1.7-3.8 3.8-3.8c18.8 0 34.1 15.3 34.1 34.1 0 2-1.8 3.7-3.9 3.7z\"></path><path d=\"m236.1 203h-22.2c-2.1 0-3.8-1.7-3.8-3.8v-14.1c-3.1-.6-6.1-1.4-9.1-2.4l-7 12.2c-1.1 1.8-3.4 2.5-5.3 1.4l-19.2-11.1c-.9-.5-1.5-1.4-1.8-2.3-.3-1-.1-2 .4-2.9l7-12.1c-2.4-2.1-4.6-4.3-6.7-6.6l-12.1 7c-1.8 1.1-4.2.4-5.2-1.4l-11.1-19.2c-1.1-1.8-.4-4.2 1.4-5.2l11.9-6.8c-1-3-1.9-6.1-2.6-9.3h-13.7c-2.1 0-3.8-1.7-3.8-3.8v-22.2c0-2.1 1.7-3.8 3.8-3.8h13.4c.6-3.2 1.4-6.4 2.4-9.5l-11.5-6.6c-1.8-1.1-2.5-3.4-1.4-5.3l11.1-19.6c.5-.9 1.4-1.5 2.3-1.8s2-.1 2.9.4l11.3 6.6c2.2-2.5 4.5-4.8 7-7l-6.5-11.3c-.5-.9-.6-1.9-.4-2.9.3-1 .9-1.8 1.8-2.3l19.2-11.1c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l6.4 11.2c3.1-1.1 6.4-1.9 9.7-2.6v-13c0-2.1 1.7-3.8 3.8-3.8h22.2c2.1 0 3.8 1.7 3.8 3.8v12.8c3.3.7 6.5 1.5 9.7 2.6l6.5-11.2c.5-.9 1.4-1.5 2.3-1.8 1-.3 2-.1 2.9.4l19.2 11.1c.9.5 1.5 1.3 1.8 2.3s.1 2-.4 2.9l-6.5 11.3c2.5 2.2 4.8 4.5 7 7.1l11.3-6.6c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l11.1 19.2c1.1 1.8.4 4.2-1.4 5.3l-11.5 6.6c1 3.1 1.8 6.3 2.5 9.5h13.6c2.1 0 3.8 1.7 3.8 3.8v22.2c0 2.1-1.7 3.8-3.8 3.8h-13.6c-.6 3.1-1.5 6.2-2.5 9.3l11.9 6.8c1.8 1.1 2.5 3.4 1.4 5.2l-11.2 19.5c-1.1 1.8-3.4 2.5-5.2 1.4l-12-7c-2.1 2.4-4.4 4.6-6.7 6.6l7 12.1c.5.9.6 1.9.4 2.9s-.9 1.8-1.8 2.3l-19.2 11.1c-1.8 1.1-4.2.4-5.2-1.4l-7-12.2c-3 1-6 1.8-9.1 2.4v14.1c-.2 2.3-2 4-4.1 4zm-18.4-7.7h14.5v-13.5c0-1.9 1.4-3.5 3.3-3.8 4.7-.7 9.4-2 13.8-3.7 1.8-.7 3.8 0 4.7 1.7l6.7 11.6 12.6-7.3-6.7-11.6c-1-1.6-.5-3.7.9-4.9 3.7-3 7.2-6.4 10.2-10.1 1.2-1.5 3.3-1.8 4.9-.9l11.5 6.6 7.3-12.6-11.3-6.5c-1.6-.9-2.4-3-1.6-4.7 1.8-4.5 3.1-9.2 3.9-14 .3-1.9 1.9-3.2 3.8-3.2h13v-14.6h-12.8c-1.9 0-3.5-1.4-3.8-3.3-.7-4.8-2-9.6-3.7-14.2-.7-1.8 0-3.7 1.7-4.7l10.9-6.3-7.3-12.6-10.8 6.3c-1.6.9-3.7.6-4.9-.9-3.1-3.9-6.6-7.4-10.4-10.6-1.5-1.2-1.9-3.3-.9-4.9l6.2-10.7-12.6-7.3-6.1 10.6c-1 1.6-3 2.3-4.7 1.7-4.6-1.8-9.5-3.1-14.4-3.9-1.9-.3-3.3-1.9-3.3-3.8v-12.2h-14.5v12.3c0 1.9-1.4 3.5-3.3 3.8-5 .8-9.8 2.1-14.4 3.9-1.8.7-3.8 0-4.7-1.7l-6.1-10.6-12.6 7.3 6.2 10.7c.9 1.6.6 3.7-.9 4.9-3.9 3.1-7.4 6.7-10.4 10.6-1.2 1.5-3.3 1.9-4.9.9l-10.8-6.3-7.3 12.6 10.9 6.3c1.6.9 2.3 2.9 1.7 4.7-1.7 4.6-3 9.4-3.7 14.2-.3 1.9-1.9 3.3-3.8 3.3h-12.8v14.5h13c1.9 0 3.5 1.4 3.8 3.2.8 4.8 2.1 9.5 3.9 14 .7 1.8 0 3.8-1.6 4.7l-11.3 6.5 7.3 12.6 11.5-6.6c1.6-.9 3.7-.6 4.9.9 3 3.7 6.5 7.1 10.3 10.1 1.5 1.2 1.9 3.3.9 4.9l-6.7 11.6 12.6 7.3 6.7-11.6c.9-1.6 2.9-2.3 4.7-1.7 4.5 1.7 9.1 2.9 13.8 3.7 1.9.3 3.3 1.9 3.3 3.8z\"></path></g><g><g><g><path d=\"m45.3 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m153.9 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path></g><g><path d=\"m189.3 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.2c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c0 2.1-1.7 3.8-3.8 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m73.3 326.4c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m126 326.4c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m99.7 325.6c-.6 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4s4.1 1.1 4.4 3.2c2.4 16.5 12.3 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m50.2 266.6c-.1 0-.2 0-.3 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.7 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-8.9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.5 2.2zm81.8-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13.1-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.4-.7 2.3-.7z\"></path></g></g></g><g><g><path d=\"m296.1 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m404.7 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path></g><g><path d=\"m440 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.1c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c.2 2.1-1.6 3.8-3.7 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m324 326.3c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m376.7 326.3c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m350.4 325.6c-.5 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4 2.1-.3 4 1.1 4.4 3.2 2.4 16.5 12.4 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m301 266.6c-.1 0-.2 0-.4 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.6 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.4 2.2zm81.7-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.5-.7 2.3-.7z\"></path></g></g></g></g></g></svg>				\n									<h5>\n							et ungt og engageret team						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"496pt\" viewBox=\"0 0 496 496\" width=\"496pt\"><path d=\"m440 328h-28.207031c5.078125-6.703125 8.207031-14.960938 8.207031-24 0-8.824219-7.175781-16-16-16h-12v-19.960938c59.574219-14.445312 104-68.085937 104-132.039062 0-74.992188-61.007812-136-136-136s-136 61.007812-136 136c0 63.953125 44.425781 117.59375 104 132.039062v19.960938h-8.449219c-6.167969 0-12.359375 1.464844-17.886719 4.214844l-50.480468 25.25c-3.320313 1.664062-7.03125 2.535156-10.734375 2.535156h-40.449219v-16h-104v16h56v56h16v-56h16v128h-16v-56h-16v56h-56v16h104v-16h40.449219c3.703125 0 7.414062.871094 10.734375 2.527344l34.488281 17.25c5.519531 2.757812 11.710937 4.222656 17.878906 4.222656h24.449219v24h64v-24h48c13.230469 0 24-10.769531 24-24 0-6.167969-2.40625-11.742188-6.238281-16 3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16 0-13.230469-10.769531-24-24-24zm8 24c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm-208-280c0-66.167969 53.832031-120 120-120s120 53.832031 120 120-53.832031 120-120 120-120-53.832031-120-120zm104 134.976562c5.257812.617188 10.574219 1.023438 16 1.023438s10.742188-.40625 16-1.023438v17.023438h-32zm-40.449219 185.023438c-3.703125 0-7.414062-.871094-10.734375-2.527344l-34.488281-17.25c-5.519531-2.757812-11.710937-4.222656-17.878906-4.222656h-40.449219v-96h40.449219c6.167969 0 12.359375-1.464844 17.886719-4.214844l50.480468-25.25c3.320313-1.664062 7.03125-2.535156 10.734375-2.535156h84.449219c0 13.230469-10.769531 24-24 24h-48.28125l-23.863281 35.808594c-6.101563 9.160156-14.527344 16.589844-24.367188 21.503906-8.753906 4.375-18.542969 6.6875-28.320312 6.6875h-15.167969v16h15.167969c12.246093 0 24.519531-2.894531 35.472656-8.375 12.328125-6.160156 22.878906-15.480469 30.527344-26.945312l6.832031-10.253907v93.574219zm40.449219 24v-136h17.472656c-.898437 2.511719-1.472656 5.183594-1.472656 8 0 6.167969 2.40625 11.742188 6.238281 16-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16 0 10.414062 6.710938 19.214844 16 22.527344v9.472656zm96-24h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8s-3.59375 8-8 8zm0 0\"></path><path d=\"m394.878906 73.007812-7.757812 13.984376c17.816406 9.878906 28.878906 28.664062 28.878906 49.007812h16c0-26.160156-14.222656-50.296875-37.121094-62.992188zm0 0\"></path><path d=\"m360 80c4.734375 0 9.449219.59375 14.007812 1.769531l3.976563-15.503906c-5.855469-1.496094-11.90625-2.265625-17.984375-2.265625zm0 0\"></path><path d=\"m360 48c48.519531 0 88 39.480469 88 88 0 20.753906-7.398438 40.910156-20.832031 56.785156l12.207031 10.34375c15.882812-18.761718 24.625-42.601562 24.625-67.128906 0-57.34375-46.65625-104-104-104-24.527344 0-48.367188 8.753906-67.128906 24.632812l10.335937 12.199219c15.871094-13.433593 36.039063-20.832031 56.792969-20.832031zm0 0\"></path><path d=\"m427.128906 215.367188-10.335937-12.199219c-15.871094 13.433593-36.039063 20.832031-56.792969 20.832031-48.519531 0-88-39.480469-88-88 0-20.753906 7.398438-40.910156 20.832031-56.785156l-12.207031-10.34375c-15.882812 18.761718-24.625 42.601562-24.625 67.128906 0 57.34375 46.65625 104 104 104 24.527344 0 48.367188-8.753906 67.128906-24.632812zm0 0\"></path><path d=\"m121.214844 165.640625c4.953125-1.375 9.695312-3.34375 14.183594-5.878906l9.769531 4.886719 19.472656-19.480469-4.886719-9.769531c2.535156-4.496094 4.503906-9.230469 5.886719-14.183594l10.359375-3.445313v-27.53125l-10.351562-3.453125c-1.375-4.953125-3.34375-9.707031-5.886719-14.183594l4.886719-9.777343-19.472657-19.472657-9.769531 4.886719c-4.484375-2.535156-9.230469-4.503906-14.183594-5.878906l-3.453125-10.359375h-27.539062l-3.445313 10.359375c-4.953125 1.375-9.695312 3.34375-14.183594 5.878906l-9.777343-4.886719-19.472657 19.472657 4.886719 9.777343c-2.535156 4.488282-4.503906 9.230469-5.886719 14.183594l-10.351562 3.445313v27.53125l10.351562 3.453125c1.375 4.953125 3.34375 9.695312 5.886719 14.183594l-4.886719 9.769531 19.472657 19.480469 9.769531-4.886719c4.484375 2.535156 9.230469 4.503906 14.183594 5.878906l3.453125 10.359375h27.539062zm-12.304688-13.679687-2.679687 8.039062h-4.460938l-2.679687-8.039062-4.554688-.90625c-6.128906-1.222657-11.878906-3.605469-17.109375-7.09375l-3.867187-2.578126-7.574219 3.800782-3.160156-3.167969 3.792969-7.582031-2.578126-3.859375c-3.488281-5.222657-5.871093-10.980469-7.09375-17.109375l-.914062-4.554688-8.03125-2.679687v-4.46875l8.03125-2.671875.914062-4.554688c1.222657-6.136718 3.613282-11.886718 7.09375-17.109375l2.578126-3.859375-3.792969-7.589844 3.160156-3.160156 7.574219 3.800782 3.867187-2.578126c5.222657-3.488281 10.980469-5.863281 17.109375-7.09375l4.554688-.90625 2.679687-8.039062h4.460938l2.679687 8.039062 4.554688.90625c6.128906 1.222657 11.878906 3.605469 17.109375 7.09375l3.867187 2.578126 7.574219-3.800782 3.160156 3.160156-3.792969 7.589844 2.578126 3.859375c3.488281 5.214844 5.871093 10.972657 7.09375 17.109375l.914062 4.554688 8.03125 2.679687v4.46875l-8.03125 2.671875-.914062 4.554688c-1.222657 6.128906-3.613282 11.878906-7.09375 17.109375l-2.578126 3.859375 3.792969 7.582031-3.160156 3.167969-7.574219-3.800782-3.867187 2.578126c-5.222657 3.488281-10.980469 5.863281-17.109375 7.09375zm0 0\"></path><path d=\"m104 72c-17.648438 0-32 14.351562-32 32s14.351562 32 32 32 32-14.351562 32-32-14.351562-32-32-32zm0 48c-8.824219 0-16-7.175781-16-16s7.175781-16 16-16 16 7.175781 16 16-7.175781 16-16 16zm0 0\"></path><path d=\"m160 248v-40h48v-208h-208v208h106.664062zm-144-232h176v176h-48v24l-32-24h-96zm0 0\"></path><path d=\"m0 272h16v16h-16zm0 0\"></path><path d=\"m32 272h16v16h-16zm0 0\"></path><path d=\"m64 272h16v16h-16zm0 0\"></path><path d=\"m32 304h16v16h-16zm0 0\"></path><path d=\"m64 304h16v16h-16zm0 0\"></path><path d=\"m0 480h16v16h-16zm0 0\"></path><path d=\"m32 480h16v16h-16zm0 0\"></path><path d=\"m64 480h16v16h-16zm0 0\"></path><path d=\"m32 448h16v16h-16zm0 0\"></path><path d=\"m64 448h16v16h-16zm0 0\"></path></svg>				\n									<h5>\n							fokus på kvalitet og detaljer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m469.12 408.93-67.26-33.63v-22.13c10.71-7.69 18.6-19.07 21.78-32.27h5.28c8.81 0 15.98-7.17 15.98-15.98v-5.29c0-6.35-3.74-11.84-9.12-14.41 5.19-18.64-1.65-39.76-19.44-59.78-12.58-14.16-30.67-22.27-49.62-22.27-18.93 0-37.01 8.12-49.59 22.27-13.38 15.05-20.95 41.01-14.03 59.62-5.56 2.5-9.45 8.09-9.45 14.57v5.29c0 8.81 7.17 15.98 15.98 15.98h5.55c3.16 13.09 10.94 24.39 21.51 32.08v22.32l-67.26 33.63c-16.7 5.87-27.89 21.6-27.89 39.28v41.63c0 3.31 2.69 6 6 6h243.46c3.31 0 6-2.69 6-6v-41.63c0-17.68-11.19-33.41-27.88-39.28zm-62.24-17.7-15.83 27.66-13.29-13.29 19.29-19.29zm-37.61 5.88-20.59-20.58v-16.91c6.41 2.57 13.4 4.01 20.72 4.01 7.22 0 14.11-1.39 20.45-3.9v16.8zm63.63-97.48v5.29c0 2.16-1.82 3.98-3.98 3.98h-3.74c.01-.36.03-.71.03-1.07v-12.18h3.71c2.15-.01 3.98 1.82 3.98 3.98zm-119.29 8.2v1.07h-3.98c-2.16 0-3.98-1.82-3.98-3.98v-5.29c0-2.16 1.82-3.98 3.98-3.98l3.98.22zm1.95-24.19c-7.33-13.69-.89-37.39 10.53-50.24 10.31-11.6 25.12-18.25 40.63-18.25 15.52 0 30.34 6.65 40.65 18.25 8.43 9.48 21.3 27.59 17.4 46.39-5.66-.35-10.67-2.55-14.4-6.36-5.37-5.49-7.72-14-6.63-23.94.29-2.62-1.17-5.13-3.6-6.17s-5.25-.37-6.95 1.65c-19.33 22.92-45.95 36.76-73.9 38.68h-3.73zm10.05 24.19v-12.73c24.57-2.92 47.92-14.05 66.73-31.8 1.43 7.26 4.63 13.6 9.45 18.52 3.27 3.35 7.14 5.89 11.41 7.58v18.42c0 24.15-19.65 43.8-43.8 43.8s-43.79-19.64-43.79-43.79zm15.89 78.48 19.29 19.29-13.29 13.29-15.84-27.66zm3.22 97.53h-39.42v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.76v-35.63c0-12.68 8.1-23.95 20.15-28.05.26-.09.51-.19.75-.31l46.47-23.23 20.07 35.06c.93 1.62 2.56 2.72 4.41 2.97.27.04.53.05.79.05 1.58 0 3.11-.62 4.24-1.76l.14-.14zm12.08 0 7.41-64.69 5.06-5.06 4.84 4.84 7.86 64.92h-25.17zm128.2 0h-39.76v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.18l-6.2-51.17.25.25c1.13 1.13 2.66 1.76 4.24 1.76.26 0 .53-.02.79-.05 1.85-.25 3.48-1.34 4.41-2.97l20.07-35.06 46.47 23.23c.24.12.49.23.75.31 12.05 4.1 20.15 15.38 20.15 28.05v35.65zm-67.04-346.65h-10.84l28.38 39.84 28.38-39.84h-10.84c-3.31 0-6-2.69-6-6v-64.58h-98.7c-3.31 0-6-2.69-6-6s2.69-6 6-6h104.7c3.31 0 6 2.69 6 6v64.58h16.48c2.25 0 4.3 1.25 5.33 3.25s.86 4.4-.45 6.23l-40.02 56.18c-1.13 1.58-2.95 2.52-4.89 2.52s-3.76-.94-4.89-2.52l-40.02-56.18c-1.3-1.83-1.48-4.23-.45-6.23s3.09-3.25 5.33-3.25h16.48v-23.5h-65.38c-3.31 0-6-2.69-6-6s2.69-6 6-6h71.38c3.31 0 6 2.69 6 6v35.5c.02 3.31-2.67 6-5.98 6zm-118.44 50.65v-133.26c0-21.18-17.23-38.41-38.41-38.41h-207.7c-21.18-.01-38.41 17.23-38.41 38.41v133.26c0 21.18 17.23 38.41 38.41 38.41h105.8l64.8 55.11c1.11.94 2.49 1.43 3.89 1.43.85 0 1.71-.18 2.52-.55 2.12-.98 3.48-3.11 3.48-5.45v-50.54h27.21c21.18 0 38.41-17.23 38.41-38.41zm-71.62 26.41c-3.31 0-6 2.69-6 6v43.56l-56.59-48.13c-1.08-.92-2.46-1.43-3.89-1.43h-108.01c-14.56 0-26.41-11.85-26.41-26.41v-133.26c0-14.56 11.85-26.41 26.41-26.41h207.69c14.56 0 26.41 11.85 26.41 26.41v133.26c0 14.56-11.85 26.41-26.41 26.41zm-156.34-87.87h56.97c3.31 0 6-2.69 6-6v-39.2l8.55-8.55c2.34-2.34 2.34-6.14 0-8.49-2.34-2.34-6.14-2.34-8.48 0l-.7.7c-.98-1.97-3.01-3.32-5.36-3.32h-56.98c-3.31 0-6 2.69-6 6v52.85c0 3.32 2.69 6.01 6 6.01zm6-52.86h44.97v2.69l-18.16 18.16-8.84-8.84c-2.34-2.34-6.14-2.34-8.49 0-2.34 2.34-2.34 6.14 0 8.49l13.08 13.08c1.17 1.17 2.71 1.76 4.24 1.76s3.07-.59 4.24-1.76l13.92-13.92v21.2h-44.96zm173.62 3.08c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 31.92c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 36.52c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.68 5.99 6zm0 31.92c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.69 5.99 6zm-119.36 165.01h10.84l-28.38-39.84-28.38 39.84h10.84c3.31 0 6 2.69 6 6v64.58h98.7c3.31 0 6 2.69 6 6s-2.69 6-6 6h-104.69c-3.31 0-6-2.69-6-6v-64.58h-16.48c-2.25 0-4.3-1.25-5.33-3.25s-.86-4.4.45-6.23l40.02-56.18c1.13-1.58 2.95-2.52 4.89-2.52s3.76.94 4.89 2.52l40.02 56.18c1.3 1.83 1.48 4.23.45 6.23s-3.09 3.25-5.33 3.25h-16.48v23.5h65.38c3.31 0 6 2.69 6 6s-2.69 6-6 6h-71.38c-3.31 0-6-2.69-6-6v-35.5c-.03-3.31 2.66-6 5.97-6z\"></path></svg>				\n									<h5>\n							ærlig<br> rådgivning						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 510 510\"><path d=\"m192.036 385.845c-4.787-46.972-19.459-64.336-30.658-82.352-8.672-13.951-15.5-28.245-15.5-54.252 0-60.242 48.865-109.109 109.135-109.109 60.242 0 109.109 48.866 109.109 109.109 0 26.007-6.828 40.301-15.5 54.252-11.199 18.016-25.871 35.38-30.658 82.352 9.985 2.864 17.345 12.101 17.345 22.975v36.44c0 13.109-10.747 23.866-23.893 23.866h-10.334v9.945c0 12.588-10.341 22.929-22.93 22.929h-46.304c-12.589 0-22.93-10.341-22.93-22.929v-9.945h-10.334c-13.146 0-23.893-10.757-23.893-23.866v-36.44c0-10.874 7.36-20.111 17.345-22.975zm111.948-.917c4.199-42.194 15.78-62.332 26.488-79.049 10.147-15.842 19.65-28.207 19.65-56.638 0-52.513-42.597-95.109-95.109-95.109-52.537 0-95.135 42.596-95.135 95.109 0 28.431 9.503 40.796 19.65 56.638 10.708 16.717 22.289 36.855 26.488 79.049zm2.554-78.61c-1.175 13.701-11.985 24.191-24.783 24.191-13.527 0-24.862-12.086-24.862-26.673v-99.328c0-14.12 11.335-26.673 24.862-26.673 11.309 0 21.031 8.139 23.975 19.497 9.12 3.904 15.688 13.438 15.688 24.78 0 1.153-.068 2.289-.201 3.403 5.078 5.326 8.283 12.802 8.283 21.117 0 6.39-1.889 12.262-5.06 17.053 1.996 4.099 3.13 8.773 3.13 13.76 0 14.1-9.065 25.697-21.032 28.873zm-16.452-109.977c-1.964-2.729-4.916-4.506-8.331-4.506-6.192 0-10.862 6.21-10.862 12.673v99.328c0 6.677 4.67 12.673 10.862 12.673 5.516 0 9.822-4.614 10.717-10.425-4.709-1.416-8.923-4.144-12.279-7.814-2.607-2.852-2.409-7.283.443-9.89 2.851-2.607 7.282-2.408 9.889.443 2.416 2.642 5.72 4.356 9.402 4.356 7.733 0 13.643-7.218 13.643-15.734s-5.91-15.734-13.643-15.734c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7 5.352 0 10.388 1.655 14.658 4.533.593-1.743.915-3.634.915-5.612 0-2.11-.366-4.128-1.036-5.972-.769.858-1.588 1.66-2.453 2.397-2.94 2.507-7.361 2.156-9.869-.784-2.507-2.939-2.155-7.361.784-9.868 2.773-2.365 4.492-6.122 4.492-10.293 0-6.072-3.705-11.374-8.898-12.467-.154-.023-.307-.052-.458-.085-.499-.08-1.01-.121-1.532-.121-2.947 0-5.591 1.389-7.515 3.525-2.585 2.87-7.015 3.101-9.886.515-2.87-2.586-3.101-7.015-.515-9.886 3.111-3.453 7.059-5.988 11.472-7.252zm-104.526 67.344c-3.171-4.791-5.06-10.663-5.06-17.053 0-8.307 3.198-15.777 8.284-21.104-.133-1.118-.202-2.258-.202-3.416 0-11.354 6.582-20.897 15.717-24.792 2.948-11.354 12.67-19.485 23.946-19.485 13.56 0 24.888 12.555 24.888 26.673v99.328c0 14.585-11.328 26.673-24.888 26.673-12.765 0-23.578-10.484-24.757-24.184-11.98-3.166-21.058-14.769-21.058-28.88 0-4.987 1.134-9.661 3.13-13.76zm9.982-23.036c-.675 1.847-1.042 3.869-1.042 5.983 0 1.978.322 3.869.915 5.612 4.27-2.878 9.306-4.533 14.658-4.533 3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7-7.733 0-13.643 7.218-13.643 15.734s5.91 15.734 13.643 15.734c3.682 0 6.986-1.714 9.402-4.356 2.607-2.851 7.038-3.05 9.889-.443 2.852 2.607 3.05 7.038.443 9.89-3.35 3.664-7.556 6.389-12.255 7.807.891 5.813 5.192 10.432 10.693 10.432 6.21 0 10.888-5.993 10.888-12.673v-99.328c0-6.466-4.678-12.673-10.888-12.673-3.404 0-6.349 1.777-8.309 4.507 4.421 1.264 8.367 3.8 11.476 7.251 2.586 2.871 2.355 7.3-.516 9.886-2.87 2.586-7.3 2.355-9.886-.515-1.926-2.138-4.574-3.525-7.54-3.525-.493 0-.976.037-1.448.108-.196.045-.395.082-.596.11-5.165 1.118-8.844 6.404-8.844 12.455 0 1.243.153 2.45.442 3.594.101.284.183.572.246.862.748 2.326 2.071 4.346 3.814 5.823 2.947 2.498 3.311 6.919.813 9.866s-6.919 3.312-9.866.814c-.878-.745-1.71-1.554-2.489-2.422zm3.042 158.279c-5.442 0-9.893 4.451-9.893 9.892v36.44c0 5.423 4.454 9.866 9.893 9.866h17.334c3.866 0 7 3.134 7 7v16.945c0 4.902 4.027 8.929 8.93 8.929h46.304c4.903 0 8.93-4.027 8.93-8.929v-16.945c0-3.866 3.134-7 7-7h17.334c5.439 0 9.893-4.443 9.893-9.866v-36.44c0-5.441-4.451-9.892-9.893-9.892zm63.416-314.093 2.907-5.412c1.828-3.403 6.075-4.683 9.479-2.854 3.403 1.828 4.682 6.075 2.854 9.479l-16.073 29.925c-1.22 2.271-3.589 3.688-6.167 3.688s-4.947-1.417-6.167-3.688l-16.073-29.925c-1.828-3.404-.549-7.651 2.854-9.479 3.404-1.829 7.651-.549 9.479 2.854l2.907 5.412v-69.835c0-3.863 3.137-7 7-7s7 3.137 7 7zm-132.198 54.758-49.381-49.381c-2.732-2.731-2.732-7.167 0-9.899s7.168-2.732 9.9 0l49.38 49.38-1.771-5.881c-1.114-3.7.985-7.608 4.684-8.722 3.7-1.114 7.607.985 8.721 4.685l9.796 32.526c.743 2.468.069 5.145-1.753 6.968-1.823 1.823-4.5 2.496-6.969 1.753l-32.526-9.795c-3.699-1.114-5.798-5.022-4.684-8.721s5.022-5.798 8.721-4.684zm-44.859 122.299h-69.835c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7h69.835l-5.412-2.907c-3.403-1.828-4.682-6.076-2.854-9.479 1.828-3.404 6.075-4.683 9.479-2.855l29.926 16.074c2.271 1.22 3.688 3.589 3.688 6.167 0 2.577-1.417 4.947-3.688 6.166l-29.926 16.074c-3.404 1.828-7.651.549-9.479-2.855-1.828-3.403-.549-7.651 2.854-9.479zm54.758 118.198-49.38 49.38c-2.732 2.732-7.168 2.732-9.9 0s-2.732-7.167 0-9.899l49.381-49.381-5.882 1.772c-3.699 1.114-7.607-.985-8.721-4.685-1.114-3.699.985-7.607 4.684-8.721l32.526-9.795c2.469-.743 5.146-.07 6.969 1.753 1.822 1.823 2.496 4.5 1.753 6.968l-9.796 32.527c-1.114 3.699-5.021 5.798-8.721 4.684-3.699-1.114-5.798-5.022-4.684-8.721zm240.497-240.497 5.882-1.771c3.699-1.114 7.607.985 8.721 4.684s-.985 7.607-4.684 8.721l-32.526 9.795c-2.469.743-5.146.07-6.969-1.753-1.822-1.823-2.496-4.5-1.753-6.968l9.796-32.526c1.114-3.7 5.021-5.799 8.721-4.685 3.699 1.114 5.798 5.022 4.684 8.722l-1.771 5.881 49.38-49.38c2.732-2.732 7.168-2.732 9.9 0s2.732 7.168 0 9.899zm44.859 122.299 5.412 2.906c3.403 1.828 4.682 6.076 2.854 9.479-1.828 3.404-6.075 4.683-9.479 2.855l-29.926-16.074c-2.271-1.219-3.688-3.589-3.688-6.166 0-2.578 1.417-4.947 3.688-6.167l29.926-16.074c3.404-1.828 7.651-.549 9.479 2.855 1.828 3.403.549 7.651-2.854 9.479l-5.412 2.907h69.835c3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7zm-54.758 118.198 1.771 5.882c1.114 3.699-.985 7.607-4.684 8.721-3.7 1.114-7.607-.985-8.721-4.684l-9.796-32.527c-.743-2.468-.069-5.145 1.753-6.968 1.823-1.823 4.5-2.496 6.969-1.753l32.526 9.795c3.699 1.114 5.798 5.022 4.684 8.721-1.114 3.7-5.022 5.799-8.721 4.685l-5.882-1.772 49.381 49.381c2.732 2.732 2.732 7.167 0 9.899s-7.168 2.732-9.9 0z\"></path></svg>				\n									<h5>\n							gennemtænkte løsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"outline\"><path d=\"M486.41,144A28,28,0,0,0,472,92H349.123l5.457-21.828a48.513,48.513,0,0,0-12.848-46.153A41.035,41.035,0,0,0,312.609,12H308a8.009,8.009,0,0,0-8,8V47.413l-19.233,64.112A17.376,17.376,0,0,1,268,123.539V112a4,4,0,0,0-4-4H152a4,4,0,0,0-4,4v72a4,4,0,0,0,8,0V116h72V276H156V248a4,4,0,0,0-8,0v32a4,4,0,0,0,4,4H264a4,4,0,0,0,4-4V268.5h11.168A37.07,37.07,0,0,1,305.092,279a45.025,45.025,0,0,0,31.48,12.752L440,292a27.987,27.987,0,0,0,19.369-48.2,27.987,27.987,0,0,0,16-48A28,28,0,0,0,486.41,144ZM260,276H236V116h24Zm212-88H396a4,4,0,0,0,0,8h60a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h40a20,20,0,0,1,.01,40l-103.428-.25a37.07,37.07,0,0,1-25.924-10.5,45.031,45.031,0,0,0-31.49-12.752H268V131.686a25.317,25.317,0,0,0,20.429-17.862l19.4-64.675A4,4,0,0,0,308,48V20h4.609a33.082,33.082,0,0,1,23.481,9.69,40.507,40.507,0,0,1,10.728,38.541l-6.7,26.8A4,4,0,0,0,344,100H472a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h72a20,20,0,0,1,0,40Z\"></path><path d=\"M194.5,183.243l-1.9-.217a4,4,0,0,0-4.169,2.491L184.29,195.9H135.278l-3.539-9.317a4,4,0,0,0-7.478,2.84l2.459,6.477h-8.474L68.452,156.872a4,4,0,1,0-4.935,6.3L77.6,174.209,56.961,194.48l-6.636-5.491a4,4,0,1,0-5.1,6.163L87.219,229.9a44.1,44.1,0,0,0,28.05,10.1H212a8.009,8.009,0,0,0,8-8V203.9a8.009,8.009,0,0,0-8-8h-8v-2.01A10.708,10.708,0,0,0,194.5,183.243ZM212,203.9V232H115.269a36.081,36.081,0,0,1-22.951-8.264l-29.16-24.128,20.8-20.422L114.4,203.045a4,4,0,0,0,2.468.852H187a4,4,0,0,0,3.715-2.517l3.929-9.843a2.712,2.712,0,0,1,1.356,2.35v6.01a4,4,0,0,0,4,4Z\"></path><path d=\"M223.084,484.672,200.87,469.863V346.36A44.1,44.1,0,0,0,195.327,325l-17.183-30.94a4,4,0,0,0-7,3.884l17.184,30.94a36.073,36.073,0,0,1,4.537,17.478V468H164.333a4,4,0,1,0,0,8h31.321l12,8H152.865V352a4,4,0,0,0-.358-1.655l-25.454-56A4,4,0,0,0,123.411,292H114.2a4,4,0,0,0-3.945,4.658l8.862,53.175a36.016,36.016,0,0,1-1.951,18.949L78.642,468H48.333a4,4,0,1,0,0,8H80.377L92,484H32.088L76.63,361.366a4.017,4.017,0,0,0,.183-2.044L61.1,268H136a4,4,0,0,0,0-8H59.233L30.555,173.966A19.723,19.723,0,0,1,49.27,148H76a12,12,0,0,0,24,0h15.2a21.975,21.975,0,0,1,8.395,1.652l10.889,4.458a4,4,0,1,0,3.032-7.4L126.63,142.25A29.938,29.938,0,0,0,115.2,140H100v-4.527A16.014,16.014,0,0,0,112,120V103.473A16.014,16.014,0,0,0,124,88V80a4,4,0,0,0-4-4H90A22.025,22.025,0,0,0,68,98v18a12.02,12.02,0,0,0,8,11.314V140H49.27a27.723,27.723,0,0,0-26.305,36.5l29.493,88.482,16.29,94.655-46.128,127A4,4,0,0,0,26.38,492h78.485a4,4,0,0,0,2.268-7.3L86.3,470.368l38.318-98.69a44.018,44.018,0,0,0,2.385-23.16L118.921,300h1.914l24.03,52.867V488a4,4,0,0,0,4,4h72a4,4,0,0,0,2.219-7.328ZM76,98A14.015,14.015,0,0,1,90,84h26v4a8.009,8.009,0,0,1-8,8H92a4,4,0,0,0-4,4,11.962,11.962,0,0,1-1.53,5.881A12.044,12.044,0,0,0,76,104.686Zm4,14a3.981,3.981,0,0,1,3.407,1.9,4,4,0,0,0,5.956.975c.207-.171.7-.648.7-.648.032-.028.061-.057.09-.087A19.907,19.907,0,0,0,95.6,104H104v16a8.009,8.009,0,0,1-8,8,12.133,12.133,0,0,1-2.681-.3,4,4,0,1,0-1.775,7.8c.151.035.3.06.456.091V148a4,4,0,1,1-8,0V124a4,4,0,0,0-4-4,4,4,0,0,1,0-8Z\"></path></g></svg>				\n									<h5>\n							arbejde udført med ansvar						\n					</h5>\n				<p>Vi lover ikke mere, end vi kan holde – men vi holder det, vi lover.</p>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 13:21:03', '2026-01-26 13:21:03', '', 10, 'https://mrarif.me/cpnordic/?p=514', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(515, 1, '2026-01-26 13:21:03', '2026-01-26 13:21:03', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>					\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle ANMELDELSER\n					</a>\n					<h2>HVORFOR VÆLGE CP NORDIC ApS?</h2>		<p>Når du vælger CP NORDIC ApS, får du:</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 450 450\" width=\"512\"><g><g><path d=\"m225 165.2c-25.9 0-48.9-18.8-53.3-45.2-2.4-14.2.9-28.6 9.3-40.3 8.4-11.8 20.9-19.5 35.1-21.9 29.4-4.9 57.3 15 62.2 44.5 4.9 29.4-15 57.3-44.4 62.2-3 .5-6 .7-8.9.7zm-7.6-99.8c-12.2 2-22.9 8.7-30.1 18.8s-10.1 22.4-8 34.6c3.8 22.7 23.5 38.8 45.7 38.8 2.5 0 5.1-.2 7.6-.6 25.2-4.2 42.3-28.1 38.1-53.4s-28.1-42.4-53.3-38.2z\"></path><path d=\"m255.2 115c-2.1 0-3.8-1.7-3.8-3.8 0-14.6-11.8-26.4-26.4-26.4-2.1 0-3.8-1.7-3.8-3.8s1.7-3.8 3.8-3.8c18.8 0 34.1 15.3 34.1 34.1 0 2-1.8 3.7-3.9 3.7z\"></path><path d=\"m236.1 203h-22.2c-2.1 0-3.8-1.7-3.8-3.8v-14.1c-3.1-.6-6.1-1.4-9.1-2.4l-7 12.2c-1.1 1.8-3.4 2.5-5.3 1.4l-19.2-11.1c-.9-.5-1.5-1.4-1.8-2.3-.3-1-.1-2 .4-2.9l7-12.1c-2.4-2.1-4.6-4.3-6.7-6.6l-12.1 7c-1.8 1.1-4.2.4-5.2-1.4l-11.1-19.2c-1.1-1.8-.4-4.2 1.4-5.2l11.9-6.8c-1-3-1.9-6.1-2.6-9.3h-13.7c-2.1 0-3.8-1.7-3.8-3.8v-22.2c0-2.1 1.7-3.8 3.8-3.8h13.4c.6-3.2 1.4-6.4 2.4-9.5l-11.5-6.6c-1.8-1.1-2.5-3.4-1.4-5.3l11.1-19.6c.5-.9 1.4-1.5 2.3-1.8s2-.1 2.9.4l11.3 6.6c2.2-2.5 4.5-4.8 7-7l-6.5-11.3c-.5-.9-.6-1.9-.4-2.9.3-1 .9-1.8 1.8-2.3l19.2-11.1c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l6.4 11.2c3.1-1.1 6.4-1.9 9.7-2.6v-13c0-2.1 1.7-3.8 3.8-3.8h22.2c2.1 0 3.8 1.7 3.8 3.8v12.8c3.3.7 6.5 1.5 9.7 2.6l6.5-11.2c.5-.9 1.4-1.5 2.3-1.8 1-.3 2-.1 2.9.4l19.2 11.1c.9.5 1.5 1.3 1.8 2.3s.1 2-.4 2.9l-6.5 11.3c2.5 2.2 4.8 4.5 7 7.1l11.3-6.6c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l11.1 19.2c1.1 1.8.4 4.2-1.4 5.3l-11.5 6.6c1 3.1 1.8 6.3 2.5 9.5h13.6c2.1 0 3.8 1.7 3.8 3.8v22.2c0 2.1-1.7 3.8-3.8 3.8h-13.6c-.6 3.1-1.5 6.2-2.5 9.3l11.9 6.8c1.8 1.1 2.5 3.4 1.4 5.2l-11.2 19.5c-1.1 1.8-3.4 2.5-5.2 1.4l-12-7c-2.1 2.4-4.4 4.6-6.7 6.6l7 12.1c.5.9.6 1.9.4 2.9s-.9 1.8-1.8 2.3l-19.2 11.1c-1.8 1.1-4.2.4-5.2-1.4l-7-12.2c-3 1-6 1.8-9.1 2.4v14.1c-.2 2.3-2 4-4.1 4zm-18.4-7.7h14.5v-13.5c0-1.9 1.4-3.5 3.3-3.8 4.7-.7 9.4-2 13.8-3.7 1.8-.7 3.8 0 4.7 1.7l6.7 11.6 12.6-7.3-6.7-11.6c-1-1.6-.5-3.7.9-4.9 3.7-3 7.2-6.4 10.2-10.1 1.2-1.5 3.3-1.8 4.9-.9l11.5 6.6 7.3-12.6-11.3-6.5c-1.6-.9-2.4-3-1.6-4.7 1.8-4.5 3.1-9.2 3.9-14 .3-1.9 1.9-3.2 3.8-3.2h13v-14.6h-12.8c-1.9 0-3.5-1.4-3.8-3.3-.7-4.8-2-9.6-3.7-14.2-.7-1.8 0-3.7 1.7-4.7l10.9-6.3-7.3-12.6-10.8 6.3c-1.6.9-3.7.6-4.9-.9-3.1-3.9-6.6-7.4-10.4-10.6-1.5-1.2-1.9-3.3-.9-4.9l6.2-10.7-12.6-7.3-6.1 10.6c-1 1.6-3 2.3-4.7 1.7-4.6-1.8-9.5-3.1-14.4-3.9-1.9-.3-3.3-1.9-3.3-3.8v-12.2h-14.5v12.3c0 1.9-1.4 3.5-3.3 3.8-5 .8-9.8 2.1-14.4 3.9-1.8.7-3.8 0-4.7-1.7l-6.1-10.6-12.6 7.3 6.2 10.7c.9 1.6.6 3.7-.9 4.9-3.9 3.1-7.4 6.7-10.4 10.6-1.2 1.5-3.3 1.9-4.9.9l-10.8-6.3-7.3 12.6 10.9 6.3c1.6.9 2.3 2.9 1.7 4.7-1.7 4.6-3 9.4-3.7 14.2-.3 1.9-1.9 3.3-3.8 3.3h-12.8v14.5h13c1.9 0 3.5 1.4 3.8 3.2.8 4.8 2.1 9.5 3.9 14 .7 1.8 0 3.8-1.6 4.7l-11.3 6.5 7.3 12.6 11.5-6.6c1.6-.9 3.7-.6 4.9.9 3 3.7 6.5 7.1 10.3 10.1 1.5 1.2 1.9 3.3.9 4.9l-6.7 11.6 12.6 7.3 6.7-11.6c.9-1.6 2.9-2.3 4.7-1.7 4.5 1.7 9.1 2.9 13.8 3.7 1.9.3 3.3 1.9 3.3 3.8z\"></path></g><g><g><g><path d=\"m45.3 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m153.9 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path></g><g><path d=\"m189.3 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.2c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c0 2.1-1.7 3.8-3.8 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m73.3 326.4c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m126 326.4c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m99.7 325.6c-.6 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4s4.1 1.1 4.4 3.2c2.4 16.5 12.3 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m50.2 266.6c-.1 0-.2 0-.3 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.7 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-8.9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.5 2.2zm81.8-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13.1-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.4-.7 2.3-.7z\"></path></g></g></g><g><g><path d=\"m296.1 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m404.7 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path></g><g><path d=\"m440 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.1c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c.2 2.1-1.6 3.8-3.7 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m324 326.3c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m376.7 326.3c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m350.4 325.6c-.5 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4 2.1-.3 4 1.1 4.4 3.2 2.4 16.5 12.4 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m301 266.6c-.1 0-.2 0-.4 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.6 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.4 2.2zm81.7-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.5-.7 2.3-.7z\"></path></g></g></g></g></g></svg>				\n									<h5>\n							et ungt og engageret team						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"496pt\" viewBox=\"0 0 496 496\" width=\"496pt\"><path d=\"m440 328h-28.207031c5.078125-6.703125 8.207031-14.960938 8.207031-24 0-8.824219-7.175781-16-16-16h-12v-19.960938c59.574219-14.445312 104-68.085937 104-132.039062 0-74.992188-61.007812-136-136-136s-136 61.007812-136 136c0 63.953125 44.425781 117.59375 104 132.039062v19.960938h-8.449219c-6.167969 0-12.359375 1.464844-17.886719 4.214844l-50.480468 25.25c-3.320313 1.664062-7.03125 2.535156-10.734375 2.535156h-40.449219v-16h-104v16h56v56h16v-56h16v128h-16v-56h-16v56h-56v16h104v-16h40.449219c3.703125 0 7.414062.871094 10.734375 2.527344l34.488281 17.25c5.519531 2.757812 11.710937 4.222656 17.878906 4.222656h24.449219v24h64v-24h48c13.230469 0 24-10.769531 24-24 0-6.167969-2.40625-11.742188-6.238281-16 3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16 0-13.230469-10.769531-24-24-24zm8 24c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm-208-280c0-66.167969 53.832031-120 120-120s120 53.832031 120 120-53.832031 120-120 120-120-53.832031-120-120zm104 134.976562c5.257812.617188 10.574219 1.023438 16 1.023438s10.742188-.40625 16-1.023438v17.023438h-32zm-40.449219 185.023438c-3.703125 0-7.414062-.871094-10.734375-2.527344l-34.488281-17.25c-5.519531-2.757812-11.710937-4.222656-17.878906-4.222656h-40.449219v-96h40.449219c6.167969 0 12.359375-1.464844 17.886719-4.214844l50.480468-25.25c3.320313-1.664062 7.03125-2.535156 10.734375-2.535156h84.449219c0 13.230469-10.769531 24-24 24h-48.28125l-23.863281 35.808594c-6.101563 9.160156-14.527344 16.589844-24.367188 21.503906-8.753906 4.375-18.542969 6.6875-28.320312 6.6875h-15.167969v16h15.167969c12.246093 0 24.519531-2.894531 35.472656-8.375 12.328125-6.160156 22.878906-15.480469 30.527344-26.945312l6.832031-10.253907v93.574219zm40.449219 24v-136h17.472656c-.898437 2.511719-1.472656 5.183594-1.472656 8 0 6.167969 2.40625 11.742188 6.238281 16-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16 0 10.414062 6.710938 19.214844 16 22.527344v9.472656zm96-24h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8s-3.59375 8-8 8zm0 0\"></path><path d=\"m394.878906 73.007812-7.757812 13.984376c17.816406 9.878906 28.878906 28.664062 28.878906 49.007812h16c0-26.160156-14.222656-50.296875-37.121094-62.992188zm0 0\"></path><path d=\"m360 80c4.734375 0 9.449219.59375 14.007812 1.769531l3.976563-15.503906c-5.855469-1.496094-11.90625-2.265625-17.984375-2.265625zm0 0\"></path><path d=\"m360 48c48.519531 0 88 39.480469 88 88 0 20.753906-7.398438 40.910156-20.832031 56.785156l12.207031 10.34375c15.882812-18.761718 24.625-42.601562 24.625-67.128906 0-57.34375-46.65625-104-104-104-24.527344 0-48.367188 8.753906-67.128906 24.632812l10.335937 12.199219c15.871094-13.433593 36.039063-20.832031 56.792969-20.832031zm0 0\"></path><path d=\"m427.128906 215.367188-10.335937-12.199219c-15.871094 13.433593-36.039063 20.832031-56.792969 20.832031-48.519531 0-88-39.480469-88-88 0-20.753906 7.398438-40.910156 20.832031-56.785156l-12.207031-10.34375c-15.882812 18.761718-24.625 42.601562-24.625 67.128906 0 57.34375 46.65625 104 104 104 24.527344 0 48.367188-8.753906 67.128906-24.632812zm0 0\"></path><path d=\"m121.214844 165.640625c4.953125-1.375 9.695312-3.34375 14.183594-5.878906l9.769531 4.886719 19.472656-19.480469-4.886719-9.769531c2.535156-4.496094 4.503906-9.230469 5.886719-14.183594l10.359375-3.445313v-27.53125l-10.351562-3.453125c-1.375-4.953125-3.34375-9.707031-5.886719-14.183594l4.886719-9.777343-19.472657-19.472657-9.769531 4.886719c-4.484375-2.535156-9.230469-4.503906-14.183594-5.878906l-3.453125-10.359375h-27.539062l-3.445313 10.359375c-4.953125 1.375-9.695312 3.34375-14.183594 5.878906l-9.777343-4.886719-19.472657 19.472657 4.886719 9.777343c-2.535156 4.488282-4.503906 9.230469-5.886719 14.183594l-10.351562 3.445313v27.53125l10.351562 3.453125c1.375 4.953125 3.34375 9.695312 5.886719 14.183594l-4.886719 9.769531 19.472657 19.480469 9.769531-4.886719c4.484375 2.535156 9.230469 4.503906 14.183594 5.878906l3.453125 10.359375h27.539062zm-12.304688-13.679687-2.679687 8.039062h-4.460938l-2.679687-8.039062-4.554688-.90625c-6.128906-1.222657-11.878906-3.605469-17.109375-7.09375l-3.867187-2.578126-7.574219 3.800782-3.160156-3.167969 3.792969-7.582031-2.578126-3.859375c-3.488281-5.222657-5.871093-10.980469-7.09375-17.109375l-.914062-4.554688-8.03125-2.679687v-4.46875l8.03125-2.671875.914062-4.554688c1.222657-6.136718 3.613282-11.886718 7.09375-17.109375l2.578126-3.859375-3.792969-7.589844 3.160156-3.160156 7.574219 3.800782 3.867187-2.578126c5.222657-3.488281 10.980469-5.863281 17.109375-7.09375l4.554688-.90625 2.679687-8.039062h4.460938l2.679687 8.039062 4.554688.90625c6.128906 1.222657 11.878906 3.605469 17.109375 7.09375l3.867187 2.578126 7.574219-3.800782 3.160156 3.160156-3.792969 7.589844 2.578126 3.859375c3.488281 5.214844 5.871093 10.972657 7.09375 17.109375l.914062 4.554688 8.03125 2.679687v4.46875l-8.03125 2.671875-.914062 4.554688c-1.222657 6.128906-3.613282 11.878906-7.09375 17.109375l-2.578126 3.859375 3.792969 7.582031-3.160156 3.167969-7.574219-3.800782-3.867187 2.578126c-5.222657 3.488281-10.980469 5.863281-17.109375 7.09375zm0 0\"></path><path d=\"m104 72c-17.648438 0-32 14.351562-32 32s14.351562 32 32 32 32-14.351562 32-32-14.351562-32-32-32zm0 48c-8.824219 0-16-7.175781-16-16s7.175781-16 16-16 16 7.175781 16 16-7.175781 16-16 16zm0 0\"></path><path d=\"m160 248v-40h48v-208h-208v208h106.664062zm-144-232h176v176h-48v24l-32-24h-96zm0 0\"></path><path d=\"m0 272h16v16h-16zm0 0\"></path><path d=\"m32 272h16v16h-16zm0 0\"></path><path d=\"m64 272h16v16h-16zm0 0\"></path><path d=\"m32 304h16v16h-16zm0 0\"></path><path d=\"m64 304h16v16h-16zm0 0\"></path><path d=\"m0 480h16v16h-16zm0 0\"></path><path d=\"m32 480h16v16h-16zm0 0\"></path><path d=\"m64 480h16v16h-16zm0 0\"></path><path d=\"m32 448h16v16h-16zm0 0\"></path><path d=\"m64 448h16v16h-16zm0 0\"></path></svg>				\n									<h5>\n							fokus på kvalitet og detaljer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m469.12 408.93-67.26-33.63v-22.13c10.71-7.69 18.6-19.07 21.78-32.27h5.28c8.81 0 15.98-7.17 15.98-15.98v-5.29c0-6.35-3.74-11.84-9.12-14.41 5.19-18.64-1.65-39.76-19.44-59.78-12.58-14.16-30.67-22.27-49.62-22.27-18.93 0-37.01 8.12-49.59 22.27-13.38 15.05-20.95 41.01-14.03 59.62-5.56 2.5-9.45 8.09-9.45 14.57v5.29c0 8.81 7.17 15.98 15.98 15.98h5.55c3.16 13.09 10.94 24.39 21.51 32.08v22.32l-67.26 33.63c-16.7 5.87-27.89 21.6-27.89 39.28v41.63c0 3.31 2.69 6 6 6h243.46c3.31 0 6-2.69 6-6v-41.63c0-17.68-11.19-33.41-27.88-39.28zm-62.24-17.7-15.83 27.66-13.29-13.29 19.29-19.29zm-37.61 5.88-20.59-20.58v-16.91c6.41 2.57 13.4 4.01 20.72 4.01 7.22 0 14.11-1.39 20.45-3.9v16.8zm63.63-97.48v5.29c0 2.16-1.82 3.98-3.98 3.98h-3.74c.01-.36.03-.71.03-1.07v-12.18h3.71c2.15-.01 3.98 1.82 3.98 3.98zm-119.29 8.2v1.07h-3.98c-2.16 0-3.98-1.82-3.98-3.98v-5.29c0-2.16 1.82-3.98 3.98-3.98l3.98.22zm1.95-24.19c-7.33-13.69-.89-37.39 10.53-50.24 10.31-11.6 25.12-18.25 40.63-18.25 15.52 0 30.34 6.65 40.65 18.25 8.43 9.48 21.3 27.59 17.4 46.39-5.66-.35-10.67-2.55-14.4-6.36-5.37-5.49-7.72-14-6.63-23.94.29-2.62-1.17-5.13-3.6-6.17s-5.25-.37-6.95 1.65c-19.33 22.92-45.95 36.76-73.9 38.68h-3.73zm10.05 24.19v-12.73c24.57-2.92 47.92-14.05 66.73-31.8 1.43 7.26 4.63 13.6 9.45 18.52 3.27 3.35 7.14 5.89 11.41 7.58v18.42c0 24.15-19.65 43.8-43.8 43.8s-43.79-19.64-43.79-43.79zm15.89 78.48 19.29 19.29-13.29 13.29-15.84-27.66zm3.22 97.53h-39.42v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.76v-35.63c0-12.68 8.1-23.95 20.15-28.05.26-.09.51-.19.75-.31l46.47-23.23 20.07 35.06c.93 1.62 2.56 2.72 4.41 2.97.27.04.53.05.79.05 1.58 0 3.11-.62 4.24-1.76l.14-.14zm12.08 0 7.41-64.69 5.06-5.06 4.84 4.84 7.86 64.92h-25.17zm128.2 0h-39.76v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.18l-6.2-51.17.25.25c1.13 1.13 2.66 1.76 4.24 1.76.26 0 .53-.02.79-.05 1.85-.25 3.48-1.34 4.41-2.97l20.07-35.06 46.47 23.23c.24.12.49.23.75.31 12.05 4.1 20.15 15.38 20.15 28.05v35.65zm-67.04-346.65h-10.84l28.38 39.84 28.38-39.84h-10.84c-3.31 0-6-2.69-6-6v-64.58h-98.7c-3.31 0-6-2.69-6-6s2.69-6 6-6h104.7c3.31 0 6 2.69 6 6v64.58h16.48c2.25 0 4.3 1.25 5.33 3.25s.86 4.4-.45 6.23l-40.02 56.18c-1.13 1.58-2.95 2.52-4.89 2.52s-3.76-.94-4.89-2.52l-40.02-56.18c-1.3-1.83-1.48-4.23-.45-6.23s3.09-3.25 5.33-3.25h16.48v-23.5h-65.38c-3.31 0-6-2.69-6-6s2.69-6 6-6h71.38c3.31 0 6 2.69 6 6v35.5c.02 3.31-2.67 6-5.98 6zm-118.44 50.65v-133.26c0-21.18-17.23-38.41-38.41-38.41h-207.7c-21.18-.01-38.41 17.23-38.41 38.41v133.26c0 21.18 17.23 38.41 38.41 38.41h105.8l64.8 55.11c1.11.94 2.49 1.43 3.89 1.43.85 0 1.71-.18 2.52-.55 2.12-.98 3.48-3.11 3.48-5.45v-50.54h27.21c21.18 0 38.41-17.23 38.41-38.41zm-71.62 26.41c-3.31 0-6 2.69-6 6v43.56l-56.59-48.13c-1.08-.92-2.46-1.43-3.89-1.43h-108.01c-14.56 0-26.41-11.85-26.41-26.41v-133.26c0-14.56 11.85-26.41 26.41-26.41h207.69c14.56 0 26.41 11.85 26.41 26.41v133.26c0 14.56-11.85 26.41-26.41 26.41zm-156.34-87.87h56.97c3.31 0 6-2.69 6-6v-39.2l8.55-8.55c2.34-2.34 2.34-6.14 0-8.49-2.34-2.34-6.14-2.34-8.48 0l-.7.7c-.98-1.97-3.01-3.32-5.36-3.32h-56.98c-3.31 0-6 2.69-6 6v52.85c0 3.32 2.69 6.01 6 6.01zm6-52.86h44.97v2.69l-18.16 18.16-8.84-8.84c-2.34-2.34-6.14-2.34-8.49 0-2.34 2.34-2.34 6.14 0 8.49l13.08 13.08c1.17 1.17 2.71 1.76 4.24 1.76s3.07-.59 4.24-1.76l13.92-13.92v21.2h-44.96zm173.62 3.08c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 31.92c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 36.52c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.68 5.99 6zm0 31.92c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.69 5.99 6zm-119.36 165.01h10.84l-28.38-39.84-28.38 39.84h10.84c3.31 0 6 2.69 6 6v64.58h98.7c3.31 0 6 2.69 6 6s-2.69 6-6 6h-104.69c-3.31 0-6-2.69-6-6v-64.58h-16.48c-2.25 0-4.3-1.25-5.33-3.25s-.86-4.4.45-6.23l40.02-56.18c1.13-1.58 2.95-2.52 4.89-2.52s3.76.94 4.89 2.52l40.02 56.18c1.3 1.83 1.48 4.23.45 6.23s-3.09 3.25-5.33 3.25h-16.48v23.5h65.38c3.31 0 6 2.69 6 6s-2.69 6-6 6h-71.38c-3.31 0-6-2.69-6-6v-35.5c-.03-3.31 2.66-6 5.97-6z\"></path></svg>				\n									<h5>\n							ærlig<br> rådgivning						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 510 510\"><path d=\"m192.036 385.845c-4.787-46.972-19.459-64.336-30.658-82.352-8.672-13.951-15.5-28.245-15.5-54.252 0-60.242 48.865-109.109 109.135-109.109 60.242 0 109.109 48.866 109.109 109.109 0 26.007-6.828 40.301-15.5 54.252-11.199 18.016-25.871 35.38-30.658 82.352 9.985 2.864 17.345 12.101 17.345 22.975v36.44c0 13.109-10.747 23.866-23.893 23.866h-10.334v9.945c0 12.588-10.341 22.929-22.93 22.929h-46.304c-12.589 0-22.93-10.341-22.93-22.929v-9.945h-10.334c-13.146 0-23.893-10.757-23.893-23.866v-36.44c0-10.874 7.36-20.111 17.345-22.975zm111.948-.917c4.199-42.194 15.78-62.332 26.488-79.049 10.147-15.842 19.65-28.207 19.65-56.638 0-52.513-42.597-95.109-95.109-95.109-52.537 0-95.135 42.596-95.135 95.109 0 28.431 9.503 40.796 19.65 56.638 10.708 16.717 22.289 36.855 26.488 79.049zm2.554-78.61c-1.175 13.701-11.985 24.191-24.783 24.191-13.527 0-24.862-12.086-24.862-26.673v-99.328c0-14.12 11.335-26.673 24.862-26.673 11.309 0 21.031 8.139 23.975 19.497 9.12 3.904 15.688 13.438 15.688 24.78 0 1.153-.068 2.289-.201 3.403 5.078 5.326 8.283 12.802 8.283 21.117 0 6.39-1.889 12.262-5.06 17.053 1.996 4.099 3.13 8.773 3.13 13.76 0 14.1-9.065 25.697-21.032 28.873zm-16.452-109.977c-1.964-2.729-4.916-4.506-8.331-4.506-6.192 0-10.862 6.21-10.862 12.673v99.328c0 6.677 4.67 12.673 10.862 12.673 5.516 0 9.822-4.614 10.717-10.425-4.709-1.416-8.923-4.144-12.279-7.814-2.607-2.852-2.409-7.283.443-9.89 2.851-2.607 7.282-2.408 9.889.443 2.416 2.642 5.72 4.356 9.402 4.356 7.733 0 13.643-7.218 13.643-15.734s-5.91-15.734-13.643-15.734c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7 5.352 0 10.388 1.655 14.658 4.533.593-1.743.915-3.634.915-5.612 0-2.11-.366-4.128-1.036-5.972-.769.858-1.588 1.66-2.453 2.397-2.94 2.507-7.361 2.156-9.869-.784-2.507-2.939-2.155-7.361.784-9.868 2.773-2.365 4.492-6.122 4.492-10.293 0-6.072-3.705-11.374-8.898-12.467-.154-.023-.307-.052-.458-.085-.499-.08-1.01-.121-1.532-.121-2.947 0-5.591 1.389-7.515 3.525-2.585 2.87-7.015 3.101-9.886.515-2.87-2.586-3.101-7.015-.515-9.886 3.111-3.453 7.059-5.988 11.472-7.252zm-104.526 67.344c-3.171-4.791-5.06-10.663-5.06-17.053 0-8.307 3.198-15.777 8.284-21.104-.133-1.118-.202-2.258-.202-3.416 0-11.354 6.582-20.897 15.717-24.792 2.948-11.354 12.67-19.485 23.946-19.485 13.56 0 24.888 12.555 24.888 26.673v99.328c0 14.585-11.328 26.673-24.888 26.673-12.765 0-23.578-10.484-24.757-24.184-11.98-3.166-21.058-14.769-21.058-28.88 0-4.987 1.134-9.661 3.13-13.76zm9.982-23.036c-.675 1.847-1.042 3.869-1.042 5.983 0 1.978.322 3.869.915 5.612 4.27-2.878 9.306-4.533 14.658-4.533 3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7-7.733 0-13.643 7.218-13.643 15.734s5.91 15.734 13.643 15.734c3.682 0 6.986-1.714 9.402-4.356 2.607-2.851 7.038-3.05 9.889-.443 2.852 2.607 3.05 7.038.443 9.89-3.35 3.664-7.556 6.389-12.255 7.807.891 5.813 5.192 10.432 10.693 10.432 6.21 0 10.888-5.993 10.888-12.673v-99.328c0-6.466-4.678-12.673-10.888-12.673-3.404 0-6.349 1.777-8.309 4.507 4.421 1.264 8.367 3.8 11.476 7.251 2.586 2.871 2.355 7.3-.516 9.886-2.87 2.586-7.3 2.355-9.886-.515-1.926-2.138-4.574-3.525-7.54-3.525-.493 0-.976.037-1.448.108-.196.045-.395.082-.596.11-5.165 1.118-8.844 6.404-8.844 12.455 0 1.243.153 2.45.442 3.594.101.284.183.572.246.862.748 2.326 2.071 4.346 3.814 5.823 2.947 2.498 3.311 6.919.813 9.866s-6.919 3.312-9.866.814c-.878-.745-1.71-1.554-2.489-2.422zm3.042 158.279c-5.442 0-9.893 4.451-9.893 9.892v36.44c0 5.423 4.454 9.866 9.893 9.866h17.334c3.866 0 7 3.134 7 7v16.945c0 4.902 4.027 8.929 8.93 8.929h46.304c4.903 0 8.93-4.027 8.93-8.929v-16.945c0-3.866 3.134-7 7-7h17.334c5.439 0 9.893-4.443 9.893-9.866v-36.44c0-5.441-4.451-9.892-9.893-9.892zm63.416-314.093 2.907-5.412c1.828-3.403 6.075-4.683 9.479-2.854 3.403 1.828 4.682 6.075 2.854 9.479l-16.073 29.925c-1.22 2.271-3.589 3.688-6.167 3.688s-4.947-1.417-6.167-3.688l-16.073-29.925c-1.828-3.404-.549-7.651 2.854-9.479 3.404-1.829 7.651-.549 9.479 2.854l2.907 5.412v-69.835c0-3.863 3.137-7 7-7s7 3.137 7 7zm-132.198 54.758-49.381-49.381c-2.732-2.731-2.732-7.167 0-9.899s7.168-2.732 9.9 0l49.38 49.38-1.771-5.881c-1.114-3.7.985-7.608 4.684-8.722 3.7-1.114 7.607.985 8.721 4.685l9.796 32.526c.743 2.468.069 5.145-1.753 6.968-1.823 1.823-4.5 2.496-6.969 1.753l-32.526-9.795c-3.699-1.114-5.798-5.022-4.684-8.721s5.022-5.798 8.721-4.684zm-44.859 122.299h-69.835c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7h69.835l-5.412-2.907c-3.403-1.828-4.682-6.076-2.854-9.479 1.828-3.404 6.075-4.683 9.479-2.855l29.926 16.074c2.271 1.22 3.688 3.589 3.688 6.167 0 2.577-1.417 4.947-3.688 6.166l-29.926 16.074c-3.404 1.828-7.651.549-9.479-2.855-1.828-3.403-.549-7.651 2.854-9.479zm54.758 118.198-49.38 49.38c-2.732 2.732-7.168 2.732-9.9 0s-2.732-7.167 0-9.899l49.381-49.381-5.882 1.772c-3.699 1.114-7.607-.985-8.721-4.685-1.114-3.699.985-7.607 4.684-8.721l32.526-9.795c2.469-.743 5.146-.07 6.969 1.753 1.822 1.823 2.496 4.5 1.753 6.968l-9.796 32.527c-1.114 3.699-5.021 5.798-8.721 4.684-3.699-1.114-5.798-5.022-4.684-8.721zm240.497-240.497 5.882-1.771c3.699-1.114 7.607.985 8.721 4.684s-.985 7.607-4.684 8.721l-32.526 9.795c-2.469.743-5.146.07-6.969-1.753-1.822-1.823-2.496-4.5-1.753-6.968l9.796-32.526c1.114-3.7 5.021-5.799 8.721-4.685 3.699 1.114 5.798 5.022 4.684 8.722l-1.771 5.881 49.38-49.38c2.732-2.732 7.168-2.732 9.9 0s2.732 7.168 0 9.899zm44.859 122.299 5.412 2.906c3.403 1.828 4.682 6.076 2.854 9.479-1.828 3.404-6.075 4.683-9.479 2.855l-29.926-16.074c-2.271-1.219-3.688-3.589-3.688-6.166 0-2.578 1.417-4.947 3.688-6.167l29.926-16.074c3.404-1.828 7.651-.549 9.479 2.855 1.828 3.403.549 7.651-2.854 9.479l-5.412 2.907h69.835c3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7zm-54.758 118.198 1.771 5.882c1.114 3.699-.985 7.607-4.684 8.721-3.7 1.114-7.607-.985-8.721-4.684l-9.796-32.527c-.743-2.468-.069-5.145 1.753-6.968 1.823-1.823 4.5-2.496 6.969-1.753l32.526 9.795c3.699 1.114 5.798 5.022 4.684 8.721-1.114 3.7-5.022 5.799-8.721 4.685l-5.882-1.772 49.381 49.381c2.732 2.732 2.732 7.167 0 9.899s-7.168 2.732-9.9 0z\"></path></svg>				\n									<h5>\n							gennemtænkte løsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"outline\"><path d=\"M486.41,144A28,28,0,0,0,472,92H349.123l5.457-21.828a48.513,48.513,0,0,0-12.848-46.153A41.035,41.035,0,0,0,312.609,12H308a8.009,8.009,0,0,0-8,8V47.413l-19.233,64.112A17.376,17.376,0,0,1,268,123.539V112a4,4,0,0,0-4-4H152a4,4,0,0,0-4,4v72a4,4,0,0,0,8,0V116h72V276H156V248a4,4,0,0,0-8,0v32a4,4,0,0,0,4,4H264a4,4,0,0,0,4-4V268.5h11.168A37.07,37.07,0,0,1,305.092,279a45.025,45.025,0,0,0,31.48,12.752L440,292a27.987,27.987,0,0,0,19.369-48.2,27.987,27.987,0,0,0,16-48A28,28,0,0,0,486.41,144ZM260,276H236V116h24Zm212-88H396a4,4,0,0,0,0,8h60a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h40a20,20,0,0,1,.01,40l-103.428-.25a37.07,37.07,0,0,1-25.924-10.5,45.031,45.031,0,0,0-31.49-12.752H268V131.686a25.317,25.317,0,0,0,20.429-17.862l19.4-64.675A4,4,0,0,0,308,48V20h4.609a33.082,33.082,0,0,1,23.481,9.69,40.507,40.507,0,0,1,10.728,38.541l-6.7,26.8A4,4,0,0,0,344,100H472a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h72a20,20,0,0,1,0,40Z\"></path><path d=\"M194.5,183.243l-1.9-.217a4,4,0,0,0-4.169,2.491L184.29,195.9H135.278l-3.539-9.317a4,4,0,0,0-7.478,2.84l2.459,6.477h-8.474L68.452,156.872a4,4,0,1,0-4.935,6.3L77.6,174.209,56.961,194.48l-6.636-5.491a4,4,0,1,0-5.1,6.163L87.219,229.9a44.1,44.1,0,0,0,28.05,10.1H212a8.009,8.009,0,0,0,8-8V203.9a8.009,8.009,0,0,0-8-8h-8v-2.01A10.708,10.708,0,0,0,194.5,183.243ZM212,203.9V232H115.269a36.081,36.081,0,0,1-22.951-8.264l-29.16-24.128,20.8-20.422L114.4,203.045a4,4,0,0,0,2.468.852H187a4,4,0,0,0,3.715-2.517l3.929-9.843a2.712,2.712,0,0,1,1.356,2.35v6.01a4,4,0,0,0,4,4Z\"></path><path d=\"M223.084,484.672,200.87,469.863V346.36A44.1,44.1,0,0,0,195.327,325l-17.183-30.94a4,4,0,0,0-7,3.884l17.184,30.94a36.073,36.073,0,0,1,4.537,17.478V468H164.333a4,4,0,1,0,0,8h31.321l12,8H152.865V352a4,4,0,0,0-.358-1.655l-25.454-56A4,4,0,0,0,123.411,292H114.2a4,4,0,0,0-3.945,4.658l8.862,53.175a36.016,36.016,0,0,1-1.951,18.949L78.642,468H48.333a4,4,0,1,0,0,8H80.377L92,484H32.088L76.63,361.366a4.017,4.017,0,0,0,.183-2.044L61.1,268H136a4,4,0,0,0,0-8H59.233L30.555,173.966A19.723,19.723,0,0,1,49.27,148H76a12,12,0,0,0,24,0h15.2a21.975,21.975,0,0,1,8.395,1.652l10.889,4.458a4,4,0,1,0,3.032-7.4L126.63,142.25A29.938,29.938,0,0,0,115.2,140H100v-4.527A16.014,16.014,0,0,0,112,120V103.473A16.014,16.014,0,0,0,124,88V80a4,4,0,0,0-4-4H90A22.025,22.025,0,0,0,68,98v18a12.02,12.02,0,0,0,8,11.314V140H49.27a27.723,27.723,0,0,0-26.305,36.5l29.493,88.482,16.29,94.655-46.128,127A4,4,0,0,0,26.38,492h78.485a4,4,0,0,0,2.268-7.3L86.3,470.368l38.318-98.69a44.018,44.018,0,0,0,2.385-23.16L118.921,300h1.914l24.03,52.867V488a4,4,0,0,0,4,4h72a4,4,0,0,0,2.219-7.328ZM76,98A14.015,14.015,0,0,1,90,84h26v4a8.009,8.009,0,0,1-8,8H92a4,4,0,0,0-4,4,11.962,11.962,0,0,1-1.53,5.881A12.044,12.044,0,0,0,76,104.686Zm4,14a3.981,3.981,0,0,1,3.407,1.9,4,4,0,0,0,5.956.975c.207-.171.7-.648.7-.648.032-.028.061-.057.09-.087A19.907,19.907,0,0,0,95.6,104H104v16a8.009,8.009,0,0,1-8,8,12.133,12.133,0,0,1-2.681-.3,4,4,0,1,0-1.775,7.8c.151.035.3.06.456.091V148a4,4,0,1,1-8,0V124a4,4,0,0,0-4-4,4,4,0,0,1,0-8Z\"></path></g></svg>				\n									<h5>\n							arbejde udført med ansvar						\n					</h5>\n				<p>Vi lover ikke mere, end vi kan holde – men vi holder det, vi lover.</p>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 13:21:03', '2026-01-26 13:21:03', '', 10, 'https://mrarif.me/cpnordic/?p=515', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(516, 1, '2026-01-26 13:21:03', '2026-01-26 13:21:03', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>					\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle ANMELDELSER\n					</a>\n					<h2>HVORFOR VÆLGE CP NORDIC ApS?</h2>		<p>Når du vælger CP NORDIC ApS, får du:</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 450 450\" width=\"512\"><g><g><path d=\"m225 165.2c-25.9 0-48.9-18.8-53.3-45.2-2.4-14.2.9-28.6 9.3-40.3 8.4-11.8 20.9-19.5 35.1-21.9 29.4-4.9 57.3 15 62.2 44.5 4.9 29.4-15 57.3-44.4 62.2-3 .5-6 .7-8.9.7zm-7.6-99.8c-12.2 2-22.9 8.7-30.1 18.8s-10.1 22.4-8 34.6c3.8 22.7 23.5 38.8 45.7 38.8 2.5 0 5.1-.2 7.6-.6 25.2-4.2 42.3-28.1 38.1-53.4s-28.1-42.4-53.3-38.2z\"></path><path d=\"m255.2 115c-2.1 0-3.8-1.7-3.8-3.8 0-14.6-11.8-26.4-26.4-26.4-2.1 0-3.8-1.7-3.8-3.8s1.7-3.8 3.8-3.8c18.8 0 34.1 15.3 34.1 34.1 0 2-1.8 3.7-3.9 3.7z\"></path><path d=\"m236.1 203h-22.2c-2.1 0-3.8-1.7-3.8-3.8v-14.1c-3.1-.6-6.1-1.4-9.1-2.4l-7 12.2c-1.1 1.8-3.4 2.5-5.3 1.4l-19.2-11.1c-.9-.5-1.5-1.4-1.8-2.3-.3-1-.1-2 .4-2.9l7-12.1c-2.4-2.1-4.6-4.3-6.7-6.6l-12.1 7c-1.8 1.1-4.2.4-5.2-1.4l-11.1-19.2c-1.1-1.8-.4-4.2 1.4-5.2l11.9-6.8c-1-3-1.9-6.1-2.6-9.3h-13.7c-2.1 0-3.8-1.7-3.8-3.8v-22.2c0-2.1 1.7-3.8 3.8-3.8h13.4c.6-3.2 1.4-6.4 2.4-9.5l-11.5-6.6c-1.8-1.1-2.5-3.4-1.4-5.3l11.1-19.6c.5-.9 1.4-1.5 2.3-1.8s2-.1 2.9.4l11.3 6.6c2.2-2.5 4.5-4.8 7-7l-6.5-11.3c-.5-.9-.6-1.9-.4-2.9.3-1 .9-1.8 1.8-2.3l19.2-11.1c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l6.4 11.2c3.1-1.1 6.4-1.9 9.7-2.6v-13c0-2.1 1.7-3.8 3.8-3.8h22.2c2.1 0 3.8 1.7 3.8 3.8v12.8c3.3.7 6.5 1.5 9.7 2.6l6.5-11.2c.5-.9 1.4-1.5 2.3-1.8 1-.3 2-.1 2.9.4l19.2 11.1c.9.5 1.5 1.3 1.8 2.3s.1 2-.4 2.9l-6.5 11.3c2.5 2.2 4.8 4.5 7 7.1l11.3-6.6c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l11.1 19.2c1.1 1.8.4 4.2-1.4 5.3l-11.5 6.6c1 3.1 1.8 6.3 2.5 9.5h13.6c2.1 0 3.8 1.7 3.8 3.8v22.2c0 2.1-1.7 3.8-3.8 3.8h-13.6c-.6 3.1-1.5 6.2-2.5 9.3l11.9 6.8c1.8 1.1 2.5 3.4 1.4 5.2l-11.2 19.5c-1.1 1.8-3.4 2.5-5.2 1.4l-12-7c-2.1 2.4-4.4 4.6-6.7 6.6l7 12.1c.5.9.6 1.9.4 2.9s-.9 1.8-1.8 2.3l-19.2 11.1c-1.8 1.1-4.2.4-5.2-1.4l-7-12.2c-3 1-6 1.8-9.1 2.4v14.1c-.2 2.3-2 4-4.1 4zm-18.4-7.7h14.5v-13.5c0-1.9 1.4-3.5 3.3-3.8 4.7-.7 9.4-2 13.8-3.7 1.8-.7 3.8 0 4.7 1.7l6.7 11.6 12.6-7.3-6.7-11.6c-1-1.6-.5-3.7.9-4.9 3.7-3 7.2-6.4 10.2-10.1 1.2-1.5 3.3-1.8 4.9-.9l11.5 6.6 7.3-12.6-11.3-6.5c-1.6-.9-2.4-3-1.6-4.7 1.8-4.5 3.1-9.2 3.9-14 .3-1.9 1.9-3.2 3.8-3.2h13v-14.6h-12.8c-1.9 0-3.5-1.4-3.8-3.3-.7-4.8-2-9.6-3.7-14.2-.7-1.8 0-3.7 1.7-4.7l10.9-6.3-7.3-12.6-10.8 6.3c-1.6.9-3.7.6-4.9-.9-3.1-3.9-6.6-7.4-10.4-10.6-1.5-1.2-1.9-3.3-.9-4.9l6.2-10.7-12.6-7.3-6.1 10.6c-1 1.6-3 2.3-4.7 1.7-4.6-1.8-9.5-3.1-14.4-3.9-1.9-.3-3.3-1.9-3.3-3.8v-12.2h-14.5v12.3c0 1.9-1.4 3.5-3.3 3.8-5 .8-9.8 2.1-14.4 3.9-1.8.7-3.8 0-4.7-1.7l-6.1-10.6-12.6 7.3 6.2 10.7c.9 1.6.6 3.7-.9 4.9-3.9 3.1-7.4 6.7-10.4 10.6-1.2 1.5-3.3 1.9-4.9.9l-10.8-6.3-7.3 12.6 10.9 6.3c1.6.9 2.3 2.9 1.7 4.7-1.7 4.6-3 9.4-3.7 14.2-.3 1.9-1.9 3.3-3.8 3.3h-12.8v14.5h13c1.9 0 3.5 1.4 3.8 3.2.8 4.8 2.1 9.5 3.9 14 .7 1.8 0 3.8-1.6 4.7l-11.3 6.5 7.3 12.6 11.5-6.6c1.6-.9 3.7-.6 4.9.9 3 3.7 6.5 7.1 10.3 10.1 1.5 1.2 1.9 3.3.9 4.9l-6.7 11.6 12.6 7.3 6.7-11.6c.9-1.6 2.9-2.3 4.7-1.7 4.5 1.7 9.1 2.9 13.8 3.7 1.9.3 3.3 1.9 3.3 3.8z\"></path></g><g><g><g><path d=\"m45.3 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m153.9 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path></g><g><path d=\"m189.3 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.2c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c0 2.1-1.7 3.8-3.8 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m73.3 326.4c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m126 326.4c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m99.7 325.6c-.6 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4s4.1 1.1 4.4 3.2c2.4 16.5 12.3 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m50.2 266.6c-.1 0-.2 0-.3 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.7 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-8.9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.5 2.2zm81.8-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13.1-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.4-.7 2.3-.7z\"></path></g></g></g><g><g><path d=\"m296.1 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m404.7 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path></g><g><path d=\"m440 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.1c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c.2 2.1-1.6 3.8-3.7 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m324 326.3c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m376.7 326.3c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m350.4 325.6c-.5 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4 2.1-.3 4 1.1 4.4 3.2 2.4 16.5 12.4 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m301 266.6c-.1 0-.2 0-.4 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.6 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.4 2.2zm81.7-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.5-.7 2.3-.7z\"></path></g></g></g></g></g></svg>				\n									<h5>\n							et ungt og engageret team						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"496pt\" viewBox=\"0 0 496 496\" width=\"496pt\"><path d=\"m440 328h-28.207031c5.078125-6.703125 8.207031-14.960938 8.207031-24 0-8.824219-7.175781-16-16-16h-12v-19.960938c59.574219-14.445312 104-68.085937 104-132.039062 0-74.992188-61.007812-136-136-136s-136 61.007812-136 136c0 63.953125 44.425781 117.59375 104 132.039062v19.960938h-8.449219c-6.167969 0-12.359375 1.464844-17.886719 4.214844l-50.480468 25.25c-3.320313 1.664062-7.03125 2.535156-10.734375 2.535156h-40.449219v-16h-104v16h56v56h16v-56h16v128h-16v-56h-16v56h-56v16h104v-16h40.449219c3.703125 0 7.414062.871094 10.734375 2.527344l34.488281 17.25c5.519531 2.757812 11.710937 4.222656 17.878906 4.222656h24.449219v24h64v-24h48c13.230469 0 24-10.769531 24-24 0-6.167969-2.40625-11.742188-6.238281-16 3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16 0-13.230469-10.769531-24-24-24zm8 24c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm-208-280c0-66.167969 53.832031-120 120-120s120 53.832031 120 120-53.832031 120-120 120-120-53.832031-120-120zm104 134.976562c5.257812.617188 10.574219 1.023438 16 1.023438s10.742188-.40625 16-1.023438v17.023438h-32zm-40.449219 185.023438c-3.703125 0-7.414062-.871094-10.734375-2.527344l-34.488281-17.25c-5.519531-2.757812-11.710937-4.222656-17.878906-4.222656h-40.449219v-96h40.449219c6.167969 0 12.359375-1.464844 17.886719-4.214844l50.480468-25.25c3.320313-1.664062 7.03125-2.535156 10.734375-2.535156h84.449219c0 13.230469-10.769531 24-24 24h-48.28125l-23.863281 35.808594c-6.101563 9.160156-14.527344 16.589844-24.367188 21.503906-8.753906 4.375-18.542969 6.6875-28.320312 6.6875h-15.167969v16h15.167969c12.246093 0 24.519531-2.894531 35.472656-8.375 12.328125-6.160156 22.878906-15.480469 30.527344-26.945312l6.832031-10.253907v93.574219zm40.449219 24v-136h17.472656c-.898437 2.511719-1.472656 5.183594-1.472656 8 0 6.167969 2.40625 11.742188 6.238281 16-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16 0 10.414062 6.710938 19.214844 16 22.527344v9.472656zm96-24h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8s-3.59375 8-8 8zm0 0\"></path><path d=\"m394.878906 73.007812-7.757812 13.984376c17.816406 9.878906 28.878906 28.664062 28.878906 49.007812h16c0-26.160156-14.222656-50.296875-37.121094-62.992188zm0 0\"></path><path d=\"m360 80c4.734375 0 9.449219.59375 14.007812 1.769531l3.976563-15.503906c-5.855469-1.496094-11.90625-2.265625-17.984375-2.265625zm0 0\"></path><path d=\"m360 48c48.519531 0 88 39.480469 88 88 0 20.753906-7.398438 40.910156-20.832031 56.785156l12.207031 10.34375c15.882812-18.761718 24.625-42.601562 24.625-67.128906 0-57.34375-46.65625-104-104-104-24.527344 0-48.367188 8.753906-67.128906 24.632812l10.335937 12.199219c15.871094-13.433593 36.039063-20.832031 56.792969-20.832031zm0 0\"></path><path d=\"m427.128906 215.367188-10.335937-12.199219c-15.871094 13.433593-36.039063 20.832031-56.792969 20.832031-48.519531 0-88-39.480469-88-88 0-20.753906 7.398438-40.910156 20.832031-56.785156l-12.207031-10.34375c-15.882812 18.761718-24.625 42.601562-24.625 67.128906 0 57.34375 46.65625 104 104 104 24.527344 0 48.367188-8.753906 67.128906-24.632812zm0 0\"></path><path d=\"m121.214844 165.640625c4.953125-1.375 9.695312-3.34375 14.183594-5.878906l9.769531 4.886719 19.472656-19.480469-4.886719-9.769531c2.535156-4.496094 4.503906-9.230469 5.886719-14.183594l10.359375-3.445313v-27.53125l-10.351562-3.453125c-1.375-4.953125-3.34375-9.707031-5.886719-14.183594l4.886719-9.777343-19.472657-19.472657-9.769531 4.886719c-4.484375-2.535156-9.230469-4.503906-14.183594-5.878906l-3.453125-10.359375h-27.539062l-3.445313 10.359375c-4.953125 1.375-9.695312 3.34375-14.183594 5.878906l-9.777343-4.886719-19.472657 19.472657 4.886719 9.777343c-2.535156 4.488282-4.503906 9.230469-5.886719 14.183594l-10.351562 3.445313v27.53125l10.351562 3.453125c1.375 4.953125 3.34375 9.695312 5.886719 14.183594l-4.886719 9.769531 19.472657 19.480469 9.769531-4.886719c4.484375 2.535156 9.230469 4.503906 14.183594 5.878906l3.453125 10.359375h27.539062zm-12.304688-13.679687-2.679687 8.039062h-4.460938l-2.679687-8.039062-4.554688-.90625c-6.128906-1.222657-11.878906-3.605469-17.109375-7.09375l-3.867187-2.578126-7.574219 3.800782-3.160156-3.167969 3.792969-7.582031-2.578126-3.859375c-3.488281-5.222657-5.871093-10.980469-7.09375-17.109375l-.914062-4.554688-8.03125-2.679687v-4.46875l8.03125-2.671875.914062-4.554688c1.222657-6.136718 3.613282-11.886718 7.09375-17.109375l2.578126-3.859375-3.792969-7.589844 3.160156-3.160156 7.574219 3.800782 3.867187-2.578126c5.222657-3.488281 10.980469-5.863281 17.109375-7.09375l4.554688-.90625 2.679687-8.039062h4.460938l2.679687 8.039062 4.554688.90625c6.128906 1.222657 11.878906 3.605469 17.109375 7.09375l3.867187 2.578126 7.574219-3.800782 3.160156 3.160156-3.792969 7.589844 2.578126 3.859375c3.488281 5.214844 5.871093 10.972657 7.09375 17.109375l.914062 4.554688 8.03125 2.679687v4.46875l-8.03125 2.671875-.914062 4.554688c-1.222657 6.128906-3.613282 11.878906-7.09375 17.109375l-2.578126 3.859375 3.792969 7.582031-3.160156 3.167969-7.574219-3.800782-3.867187 2.578126c-5.222657 3.488281-10.980469 5.863281-17.109375 7.09375zm0 0\"></path><path d=\"m104 72c-17.648438 0-32 14.351562-32 32s14.351562 32 32 32 32-14.351562 32-32-14.351562-32-32-32zm0 48c-8.824219 0-16-7.175781-16-16s7.175781-16 16-16 16 7.175781 16 16-7.175781 16-16 16zm0 0\"></path><path d=\"m160 248v-40h48v-208h-208v208h106.664062zm-144-232h176v176h-48v24l-32-24h-96zm0 0\"></path><path d=\"m0 272h16v16h-16zm0 0\"></path><path d=\"m32 272h16v16h-16zm0 0\"></path><path d=\"m64 272h16v16h-16zm0 0\"></path><path d=\"m32 304h16v16h-16zm0 0\"></path><path d=\"m64 304h16v16h-16zm0 0\"></path><path d=\"m0 480h16v16h-16zm0 0\"></path><path d=\"m32 480h16v16h-16zm0 0\"></path><path d=\"m64 480h16v16h-16zm0 0\"></path><path d=\"m32 448h16v16h-16zm0 0\"></path><path d=\"m64 448h16v16h-16zm0 0\"></path></svg>				\n									<h5>\n							fokus på kvalitet og detaljer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m469.12 408.93-67.26-33.63v-22.13c10.71-7.69 18.6-19.07 21.78-32.27h5.28c8.81 0 15.98-7.17 15.98-15.98v-5.29c0-6.35-3.74-11.84-9.12-14.41 5.19-18.64-1.65-39.76-19.44-59.78-12.58-14.16-30.67-22.27-49.62-22.27-18.93 0-37.01 8.12-49.59 22.27-13.38 15.05-20.95 41.01-14.03 59.62-5.56 2.5-9.45 8.09-9.45 14.57v5.29c0 8.81 7.17 15.98 15.98 15.98h5.55c3.16 13.09 10.94 24.39 21.51 32.08v22.32l-67.26 33.63c-16.7 5.87-27.89 21.6-27.89 39.28v41.63c0 3.31 2.69 6 6 6h243.46c3.31 0 6-2.69 6-6v-41.63c0-17.68-11.19-33.41-27.88-39.28zm-62.24-17.7-15.83 27.66-13.29-13.29 19.29-19.29zm-37.61 5.88-20.59-20.58v-16.91c6.41 2.57 13.4 4.01 20.72 4.01 7.22 0 14.11-1.39 20.45-3.9v16.8zm63.63-97.48v5.29c0 2.16-1.82 3.98-3.98 3.98h-3.74c.01-.36.03-.71.03-1.07v-12.18h3.71c2.15-.01 3.98 1.82 3.98 3.98zm-119.29 8.2v1.07h-3.98c-2.16 0-3.98-1.82-3.98-3.98v-5.29c0-2.16 1.82-3.98 3.98-3.98l3.98.22zm1.95-24.19c-7.33-13.69-.89-37.39 10.53-50.24 10.31-11.6 25.12-18.25 40.63-18.25 15.52 0 30.34 6.65 40.65 18.25 8.43 9.48 21.3 27.59 17.4 46.39-5.66-.35-10.67-2.55-14.4-6.36-5.37-5.49-7.72-14-6.63-23.94.29-2.62-1.17-5.13-3.6-6.17s-5.25-.37-6.95 1.65c-19.33 22.92-45.95 36.76-73.9 38.68h-3.73zm10.05 24.19v-12.73c24.57-2.92 47.92-14.05 66.73-31.8 1.43 7.26 4.63 13.6 9.45 18.52 3.27 3.35 7.14 5.89 11.41 7.58v18.42c0 24.15-19.65 43.8-43.8 43.8s-43.79-19.64-43.79-43.79zm15.89 78.48 19.29 19.29-13.29 13.29-15.84-27.66zm3.22 97.53h-39.42v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.76v-35.63c0-12.68 8.1-23.95 20.15-28.05.26-.09.51-.19.75-.31l46.47-23.23 20.07 35.06c.93 1.62 2.56 2.72 4.41 2.97.27.04.53.05.79.05 1.58 0 3.11-.62 4.24-1.76l.14-.14zm12.08 0 7.41-64.69 5.06-5.06 4.84 4.84 7.86 64.92h-25.17zm128.2 0h-39.76v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.18l-6.2-51.17.25.25c1.13 1.13 2.66 1.76 4.24 1.76.26 0 .53-.02.79-.05 1.85-.25 3.48-1.34 4.41-2.97l20.07-35.06 46.47 23.23c.24.12.49.23.75.31 12.05 4.1 20.15 15.38 20.15 28.05v35.65zm-67.04-346.65h-10.84l28.38 39.84 28.38-39.84h-10.84c-3.31 0-6-2.69-6-6v-64.58h-98.7c-3.31 0-6-2.69-6-6s2.69-6 6-6h104.7c3.31 0 6 2.69 6 6v64.58h16.48c2.25 0 4.3 1.25 5.33 3.25s.86 4.4-.45 6.23l-40.02 56.18c-1.13 1.58-2.95 2.52-4.89 2.52s-3.76-.94-4.89-2.52l-40.02-56.18c-1.3-1.83-1.48-4.23-.45-6.23s3.09-3.25 5.33-3.25h16.48v-23.5h-65.38c-3.31 0-6-2.69-6-6s2.69-6 6-6h71.38c3.31 0 6 2.69 6 6v35.5c.02 3.31-2.67 6-5.98 6zm-118.44 50.65v-133.26c0-21.18-17.23-38.41-38.41-38.41h-207.7c-21.18-.01-38.41 17.23-38.41 38.41v133.26c0 21.18 17.23 38.41 38.41 38.41h105.8l64.8 55.11c1.11.94 2.49 1.43 3.89 1.43.85 0 1.71-.18 2.52-.55 2.12-.98 3.48-3.11 3.48-5.45v-50.54h27.21c21.18 0 38.41-17.23 38.41-38.41zm-71.62 26.41c-3.31 0-6 2.69-6 6v43.56l-56.59-48.13c-1.08-.92-2.46-1.43-3.89-1.43h-108.01c-14.56 0-26.41-11.85-26.41-26.41v-133.26c0-14.56 11.85-26.41 26.41-26.41h207.69c14.56 0 26.41 11.85 26.41 26.41v133.26c0 14.56-11.85 26.41-26.41 26.41zm-156.34-87.87h56.97c3.31 0 6-2.69 6-6v-39.2l8.55-8.55c2.34-2.34 2.34-6.14 0-8.49-2.34-2.34-6.14-2.34-8.48 0l-.7.7c-.98-1.97-3.01-3.32-5.36-3.32h-56.98c-3.31 0-6 2.69-6 6v52.85c0 3.32 2.69 6.01 6 6.01zm6-52.86h44.97v2.69l-18.16 18.16-8.84-8.84c-2.34-2.34-6.14-2.34-8.49 0-2.34 2.34-2.34 6.14 0 8.49l13.08 13.08c1.17 1.17 2.71 1.76 4.24 1.76s3.07-.59 4.24-1.76l13.92-13.92v21.2h-44.96zm173.62 3.08c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 31.92c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 36.52c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.68 5.99 6zm0 31.92c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.69 5.99 6zm-119.36 165.01h10.84l-28.38-39.84-28.38 39.84h10.84c3.31 0 6 2.69 6 6v64.58h98.7c3.31 0 6 2.69 6 6s-2.69 6-6 6h-104.69c-3.31 0-6-2.69-6-6v-64.58h-16.48c-2.25 0-4.3-1.25-5.33-3.25s-.86-4.4.45-6.23l40.02-56.18c1.13-1.58 2.95-2.52 4.89-2.52s3.76.94 4.89 2.52l40.02 56.18c1.3 1.83 1.48 4.23.45 6.23s-3.09 3.25-5.33 3.25h-16.48v23.5h65.38c3.31 0 6 2.69 6 6s-2.69 6-6 6h-71.38c-3.31 0-6-2.69-6-6v-35.5c-.03-3.31 2.66-6 5.97-6z\"></path></svg>				\n									<h5>\n							ærlig<br> rådgivning						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 510 510\"><path d=\"m192.036 385.845c-4.787-46.972-19.459-64.336-30.658-82.352-8.672-13.951-15.5-28.245-15.5-54.252 0-60.242 48.865-109.109 109.135-109.109 60.242 0 109.109 48.866 109.109 109.109 0 26.007-6.828 40.301-15.5 54.252-11.199 18.016-25.871 35.38-30.658 82.352 9.985 2.864 17.345 12.101 17.345 22.975v36.44c0 13.109-10.747 23.866-23.893 23.866h-10.334v9.945c0 12.588-10.341 22.929-22.93 22.929h-46.304c-12.589 0-22.93-10.341-22.93-22.929v-9.945h-10.334c-13.146 0-23.893-10.757-23.893-23.866v-36.44c0-10.874 7.36-20.111 17.345-22.975zm111.948-.917c4.199-42.194 15.78-62.332 26.488-79.049 10.147-15.842 19.65-28.207 19.65-56.638 0-52.513-42.597-95.109-95.109-95.109-52.537 0-95.135 42.596-95.135 95.109 0 28.431 9.503 40.796 19.65 56.638 10.708 16.717 22.289 36.855 26.488 79.049zm2.554-78.61c-1.175 13.701-11.985 24.191-24.783 24.191-13.527 0-24.862-12.086-24.862-26.673v-99.328c0-14.12 11.335-26.673 24.862-26.673 11.309 0 21.031 8.139 23.975 19.497 9.12 3.904 15.688 13.438 15.688 24.78 0 1.153-.068 2.289-.201 3.403 5.078 5.326 8.283 12.802 8.283 21.117 0 6.39-1.889 12.262-5.06 17.053 1.996 4.099 3.13 8.773 3.13 13.76 0 14.1-9.065 25.697-21.032 28.873zm-16.452-109.977c-1.964-2.729-4.916-4.506-8.331-4.506-6.192 0-10.862 6.21-10.862 12.673v99.328c0 6.677 4.67 12.673 10.862 12.673 5.516 0 9.822-4.614 10.717-10.425-4.709-1.416-8.923-4.144-12.279-7.814-2.607-2.852-2.409-7.283.443-9.89 2.851-2.607 7.282-2.408 9.889.443 2.416 2.642 5.72 4.356 9.402 4.356 7.733 0 13.643-7.218 13.643-15.734s-5.91-15.734-13.643-15.734c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7 5.352 0 10.388 1.655 14.658 4.533.593-1.743.915-3.634.915-5.612 0-2.11-.366-4.128-1.036-5.972-.769.858-1.588 1.66-2.453 2.397-2.94 2.507-7.361 2.156-9.869-.784-2.507-2.939-2.155-7.361.784-9.868 2.773-2.365 4.492-6.122 4.492-10.293 0-6.072-3.705-11.374-8.898-12.467-.154-.023-.307-.052-.458-.085-.499-.08-1.01-.121-1.532-.121-2.947 0-5.591 1.389-7.515 3.525-2.585 2.87-7.015 3.101-9.886.515-2.87-2.586-3.101-7.015-.515-9.886 3.111-3.453 7.059-5.988 11.472-7.252zm-104.526 67.344c-3.171-4.791-5.06-10.663-5.06-17.053 0-8.307 3.198-15.777 8.284-21.104-.133-1.118-.202-2.258-.202-3.416 0-11.354 6.582-20.897 15.717-24.792 2.948-11.354 12.67-19.485 23.946-19.485 13.56 0 24.888 12.555 24.888 26.673v99.328c0 14.585-11.328 26.673-24.888 26.673-12.765 0-23.578-10.484-24.757-24.184-11.98-3.166-21.058-14.769-21.058-28.88 0-4.987 1.134-9.661 3.13-13.76zm9.982-23.036c-.675 1.847-1.042 3.869-1.042 5.983 0 1.978.322 3.869.915 5.612 4.27-2.878 9.306-4.533 14.658-4.533 3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7-7.733 0-13.643 7.218-13.643 15.734s5.91 15.734 13.643 15.734c3.682 0 6.986-1.714 9.402-4.356 2.607-2.851 7.038-3.05 9.889-.443 2.852 2.607 3.05 7.038.443 9.89-3.35 3.664-7.556 6.389-12.255 7.807.891 5.813 5.192 10.432 10.693 10.432 6.21 0 10.888-5.993 10.888-12.673v-99.328c0-6.466-4.678-12.673-10.888-12.673-3.404 0-6.349 1.777-8.309 4.507 4.421 1.264 8.367 3.8 11.476 7.251 2.586 2.871 2.355 7.3-.516 9.886-2.87 2.586-7.3 2.355-9.886-.515-1.926-2.138-4.574-3.525-7.54-3.525-.493 0-.976.037-1.448.108-.196.045-.395.082-.596.11-5.165 1.118-8.844 6.404-8.844 12.455 0 1.243.153 2.45.442 3.594.101.284.183.572.246.862.748 2.326 2.071 4.346 3.814 5.823 2.947 2.498 3.311 6.919.813 9.866s-6.919 3.312-9.866.814c-.878-.745-1.71-1.554-2.489-2.422zm3.042 158.279c-5.442 0-9.893 4.451-9.893 9.892v36.44c0 5.423 4.454 9.866 9.893 9.866h17.334c3.866 0 7 3.134 7 7v16.945c0 4.902 4.027 8.929 8.93 8.929h46.304c4.903 0 8.93-4.027 8.93-8.929v-16.945c0-3.866 3.134-7 7-7h17.334c5.439 0 9.893-4.443 9.893-9.866v-36.44c0-5.441-4.451-9.892-9.893-9.892zm63.416-314.093 2.907-5.412c1.828-3.403 6.075-4.683 9.479-2.854 3.403 1.828 4.682 6.075 2.854 9.479l-16.073 29.925c-1.22 2.271-3.589 3.688-6.167 3.688s-4.947-1.417-6.167-3.688l-16.073-29.925c-1.828-3.404-.549-7.651 2.854-9.479 3.404-1.829 7.651-.549 9.479 2.854l2.907 5.412v-69.835c0-3.863 3.137-7 7-7s7 3.137 7 7zm-132.198 54.758-49.381-49.381c-2.732-2.731-2.732-7.167 0-9.899s7.168-2.732 9.9 0l49.38 49.38-1.771-5.881c-1.114-3.7.985-7.608 4.684-8.722 3.7-1.114 7.607.985 8.721 4.685l9.796 32.526c.743 2.468.069 5.145-1.753 6.968-1.823 1.823-4.5 2.496-6.969 1.753l-32.526-9.795c-3.699-1.114-5.798-5.022-4.684-8.721s5.022-5.798 8.721-4.684zm-44.859 122.299h-69.835c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7h69.835l-5.412-2.907c-3.403-1.828-4.682-6.076-2.854-9.479 1.828-3.404 6.075-4.683 9.479-2.855l29.926 16.074c2.271 1.22 3.688 3.589 3.688 6.167 0 2.577-1.417 4.947-3.688 6.166l-29.926 16.074c-3.404 1.828-7.651.549-9.479-2.855-1.828-3.403-.549-7.651 2.854-9.479zm54.758 118.198-49.38 49.38c-2.732 2.732-7.168 2.732-9.9 0s-2.732-7.167 0-9.899l49.381-49.381-5.882 1.772c-3.699 1.114-7.607-.985-8.721-4.685-1.114-3.699.985-7.607 4.684-8.721l32.526-9.795c2.469-.743 5.146-.07 6.969 1.753 1.822 1.823 2.496 4.5 1.753 6.968l-9.796 32.527c-1.114 3.699-5.021 5.798-8.721 4.684-3.699-1.114-5.798-5.022-4.684-8.721zm240.497-240.497 5.882-1.771c3.699-1.114 7.607.985 8.721 4.684s-.985 7.607-4.684 8.721l-32.526 9.795c-2.469.743-5.146.07-6.969-1.753-1.822-1.823-2.496-4.5-1.753-6.968l9.796-32.526c1.114-3.7 5.021-5.799 8.721-4.685 3.699 1.114 5.798 5.022 4.684 8.722l-1.771 5.881 49.38-49.38c2.732-2.732 7.168-2.732 9.9 0s2.732 7.168 0 9.899zm44.859 122.299 5.412 2.906c3.403 1.828 4.682 6.076 2.854 9.479-1.828 3.404-6.075 4.683-9.479 2.855l-29.926-16.074c-2.271-1.219-3.688-3.589-3.688-6.166 0-2.578 1.417-4.947 3.688-6.167l29.926-16.074c3.404-1.828 7.651-.549 9.479 2.855 1.828 3.403.549 7.651-2.854 9.479l-5.412 2.907h69.835c3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7zm-54.758 118.198 1.771 5.882c1.114 3.699-.985 7.607-4.684 8.721-3.7 1.114-7.607-.985-8.721-4.684l-9.796-32.527c-.743-2.468-.069-5.145 1.753-6.968 1.823-1.823 4.5-2.496 6.969-1.753l32.526 9.795c3.699 1.114 5.798 5.022 4.684 8.721-1.114 3.7-5.022 5.799-8.721 4.685l-5.882-1.772 49.381 49.381c2.732 2.732 2.732 7.167 0 9.899s-7.168 2.732-9.9 0z\"></path></svg>				\n									<h5>\n							gennemtænkte løsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"outline\"><path d=\"M486.41,144A28,28,0,0,0,472,92H349.123l5.457-21.828a48.513,48.513,0,0,0-12.848-46.153A41.035,41.035,0,0,0,312.609,12H308a8.009,8.009,0,0,0-8,8V47.413l-19.233,64.112A17.376,17.376,0,0,1,268,123.539V112a4,4,0,0,0-4-4H152a4,4,0,0,0-4,4v72a4,4,0,0,0,8,0V116h72V276H156V248a4,4,0,0,0-8,0v32a4,4,0,0,0,4,4H264a4,4,0,0,0,4-4V268.5h11.168A37.07,37.07,0,0,1,305.092,279a45.025,45.025,0,0,0,31.48,12.752L440,292a27.987,27.987,0,0,0,19.369-48.2,27.987,27.987,0,0,0,16-48A28,28,0,0,0,486.41,144ZM260,276H236V116h24Zm212-88H396a4,4,0,0,0,0,8h60a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h40a20,20,0,0,1,.01,40l-103.428-.25a37.07,37.07,0,0,1-25.924-10.5,45.031,45.031,0,0,0-31.49-12.752H268V131.686a25.317,25.317,0,0,0,20.429-17.862l19.4-64.675A4,4,0,0,0,308,48V20h4.609a33.082,33.082,0,0,1,23.481,9.69,40.507,40.507,0,0,1,10.728,38.541l-6.7,26.8A4,4,0,0,0,344,100H472a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h72a20,20,0,0,1,0,40Z\"></path><path d=\"M194.5,183.243l-1.9-.217a4,4,0,0,0-4.169,2.491L184.29,195.9H135.278l-3.539-9.317a4,4,0,0,0-7.478,2.84l2.459,6.477h-8.474L68.452,156.872a4,4,0,1,0-4.935,6.3L77.6,174.209,56.961,194.48l-6.636-5.491a4,4,0,1,0-5.1,6.163L87.219,229.9a44.1,44.1,0,0,0,28.05,10.1H212a8.009,8.009,0,0,0,8-8V203.9a8.009,8.009,0,0,0-8-8h-8v-2.01A10.708,10.708,0,0,0,194.5,183.243ZM212,203.9V232H115.269a36.081,36.081,0,0,1-22.951-8.264l-29.16-24.128,20.8-20.422L114.4,203.045a4,4,0,0,0,2.468.852H187a4,4,0,0,0,3.715-2.517l3.929-9.843a2.712,2.712,0,0,1,1.356,2.35v6.01a4,4,0,0,0,4,4Z\"></path><path d=\"M223.084,484.672,200.87,469.863V346.36A44.1,44.1,0,0,0,195.327,325l-17.183-30.94a4,4,0,0,0-7,3.884l17.184,30.94a36.073,36.073,0,0,1,4.537,17.478V468H164.333a4,4,0,1,0,0,8h31.321l12,8H152.865V352a4,4,0,0,0-.358-1.655l-25.454-56A4,4,0,0,0,123.411,292H114.2a4,4,0,0,0-3.945,4.658l8.862,53.175a36.016,36.016,0,0,1-1.951,18.949L78.642,468H48.333a4,4,0,1,0,0,8H80.377L92,484H32.088L76.63,361.366a4.017,4.017,0,0,0,.183-2.044L61.1,268H136a4,4,0,0,0,0-8H59.233L30.555,173.966A19.723,19.723,0,0,1,49.27,148H76a12,12,0,0,0,24,0h15.2a21.975,21.975,0,0,1,8.395,1.652l10.889,4.458a4,4,0,1,0,3.032-7.4L126.63,142.25A29.938,29.938,0,0,0,115.2,140H100v-4.527A16.014,16.014,0,0,0,112,120V103.473A16.014,16.014,0,0,0,124,88V80a4,4,0,0,0-4-4H90A22.025,22.025,0,0,0,68,98v18a12.02,12.02,0,0,0,8,11.314V140H49.27a27.723,27.723,0,0,0-26.305,36.5l29.493,88.482,16.29,94.655-46.128,127A4,4,0,0,0,26.38,492h78.485a4,4,0,0,0,2.268-7.3L86.3,470.368l38.318-98.69a44.018,44.018,0,0,0,2.385-23.16L118.921,300h1.914l24.03,52.867V488a4,4,0,0,0,4,4h72a4,4,0,0,0,2.219-7.328ZM76,98A14.015,14.015,0,0,1,90,84h26v4a8.009,8.009,0,0,1-8,8H92a4,4,0,0,0-4,4,11.962,11.962,0,0,1-1.53,5.881A12.044,12.044,0,0,0,76,104.686Zm4,14a3.981,3.981,0,0,1,3.407,1.9,4,4,0,0,0,5.956.975c.207-.171.7-.648.7-.648.032-.028.061-.057.09-.087A19.907,19.907,0,0,0,95.6,104H104v16a8.009,8.009,0,0,1-8,8,12.133,12.133,0,0,1-2.681-.3,4,4,0,1,0-1.775,7.8c.151.035.3.06.456.091V148a4,4,0,1,1-8,0V124a4,4,0,0,0-4-4,4,4,0,0,1,0-8Z\"></path></g></svg>				\n									<h5>\n							arbejde udført med ansvar						\n					</h5>\n				<p>Vi lover ikke mere, end vi kan holde – men vi holder det, vi lover.</p>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 13:21:03', '2026-01-26 13:21:03', '', 10, 'https://mrarif.me/cpnordic/?p=516', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(517, 1, '2026-01-26 13:21:21', '2026-01-26 13:21:21', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>					\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle ANMELDELSER\n					</a>\n					<h2>HVORFOR VÆLGE CP NORDIC ApS?</h2>		<p>Når du vælger CP NORDIC ApS, får du:</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 450 450\" width=\"512\"><g><g><path d=\"m225 165.2c-25.9 0-48.9-18.8-53.3-45.2-2.4-14.2.9-28.6 9.3-40.3 8.4-11.8 20.9-19.5 35.1-21.9 29.4-4.9 57.3 15 62.2 44.5 4.9 29.4-15 57.3-44.4 62.2-3 .5-6 .7-8.9.7zm-7.6-99.8c-12.2 2-22.9 8.7-30.1 18.8s-10.1 22.4-8 34.6c3.8 22.7 23.5 38.8 45.7 38.8 2.5 0 5.1-.2 7.6-.6 25.2-4.2 42.3-28.1 38.1-53.4s-28.1-42.4-53.3-38.2z\"></path><path d=\"m255.2 115c-2.1 0-3.8-1.7-3.8-3.8 0-14.6-11.8-26.4-26.4-26.4-2.1 0-3.8-1.7-3.8-3.8s1.7-3.8 3.8-3.8c18.8 0 34.1 15.3 34.1 34.1 0 2-1.8 3.7-3.9 3.7z\"></path><path d=\"m236.1 203h-22.2c-2.1 0-3.8-1.7-3.8-3.8v-14.1c-3.1-.6-6.1-1.4-9.1-2.4l-7 12.2c-1.1 1.8-3.4 2.5-5.3 1.4l-19.2-11.1c-.9-.5-1.5-1.4-1.8-2.3-.3-1-.1-2 .4-2.9l7-12.1c-2.4-2.1-4.6-4.3-6.7-6.6l-12.1 7c-1.8 1.1-4.2.4-5.2-1.4l-11.1-19.2c-1.1-1.8-.4-4.2 1.4-5.2l11.9-6.8c-1-3-1.9-6.1-2.6-9.3h-13.7c-2.1 0-3.8-1.7-3.8-3.8v-22.2c0-2.1 1.7-3.8 3.8-3.8h13.4c.6-3.2 1.4-6.4 2.4-9.5l-11.5-6.6c-1.8-1.1-2.5-3.4-1.4-5.3l11.1-19.6c.5-.9 1.4-1.5 2.3-1.8s2-.1 2.9.4l11.3 6.6c2.2-2.5 4.5-4.8 7-7l-6.5-11.3c-.5-.9-.6-1.9-.4-2.9.3-1 .9-1.8 1.8-2.3l19.2-11.1c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l6.4 11.2c3.1-1.1 6.4-1.9 9.7-2.6v-13c0-2.1 1.7-3.8 3.8-3.8h22.2c2.1 0 3.8 1.7 3.8 3.8v12.8c3.3.7 6.5 1.5 9.7 2.6l6.5-11.2c.5-.9 1.4-1.5 2.3-1.8 1-.3 2-.1 2.9.4l19.2 11.1c.9.5 1.5 1.3 1.8 2.3s.1 2-.4 2.9l-6.5 11.3c2.5 2.2 4.8 4.5 7 7.1l11.3-6.6c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l11.1 19.2c1.1 1.8.4 4.2-1.4 5.3l-11.5 6.6c1 3.1 1.8 6.3 2.5 9.5h13.6c2.1 0 3.8 1.7 3.8 3.8v22.2c0 2.1-1.7 3.8-3.8 3.8h-13.6c-.6 3.1-1.5 6.2-2.5 9.3l11.9 6.8c1.8 1.1 2.5 3.4 1.4 5.2l-11.2 19.5c-1.1 1.8-3.4 2.5-5.2 1.4l-12-7c-2.1 2.4-4.4 4.6-6.7 6.6l7 12.1c.5.9.6 1.9.4 2.9s-.9 1.8-1.8 2.3l-19.2 11.1c-1.8 1.1-4.2.4-5.2-1.4l-7-12.2c-3 1-6 1.8-9.1 2.4v14.1c-.2 2.3-2 4-4.1 4zm-18.4-7.7h14.5v-13.5c0-1.9 1.4-3.5 3.3-3.8 4.7-.7 9.4-2 13.8-3.7 1.8-.7 3.8 0 4.7 1.7l6.7 11.6 12.6-7.3-6.7-11.6c-1-1.6-.5-3.7.9-4.9 3.7-3 7.2-6.4 10.2-10.1 1.2-1.5 3.3-1.8 4.9-.9l11.5 6.6 7.3-12.6-11.3-6.5c-1.6-.9-2.4-3-1.6-4.7 1.8-4.5 3.1-9.2 3.9-14 .3-1.9 1.9-3.2 3.8-3.2h13v-14.6h-12.8c-1.9 0-3.5-1.4-3.8-3.3-.7-4.8-2-9.6-3.7-14.2-.7-1.8 0-3.7 1.7-4.7l10.9-6.3-7.3-12.6-10.8 6.3c-1.6.9-3.7.6-4.9-.9-3.1-3.9-6.6-7.4-10.4-10.6-1.5-1.2-1.9-3.3-.9-4.9l6.2-10.7-12.6-7.3-6.1 10.6c-1 1.6-3 2.3-4.7 1.7-4.6-1.8-9.5-3.1-14.4-3.9-1.9-.3-3.3-1.9-3.3-3.8v-12.2h-14.5v12.3c0 1.9-1.4 3.5-3.3 3.8-5 .8-9.8 2.1-14.4 3.9-1.8.7-3.8 0-4.7-1.7l-6.1-10.6-12.6 7.3 6.2 10.7c.9 1.6.6 3.7-.9 4.9-3.9 3.1-7.4 6.7-10.4 10.6-1.2 1.5-3.3 1.9-4.9.9l-10.8-6.3-7.3 12.6 10.9 6.3c1.6.9 2.3 2.9 1.7 4.7-1.7 4.6-3 9.4-3.7 14.2-.3 1.9-1.9 3.3-3.8 3.3h-12.8v14.5h13c1.9 0 3.5 1.4 3.8 3.2.8 4.8 2.1 9.5 3.9 14 .7 1.8 0 3.8-1.6 4.7l-11.3 6.5 7.3 12.6 11.5-6.6c1.6-.9 3.7-.6 4.9.9 3 3.7 6.5 7.1 10.3 10.1 1.5 1.2 1.9 3.3.9 4.9l-6.7 11.6 12.6 7.3 6.7-11.6c.9-1.6 2.9-2.3 4.7-1.7 4.5 1.7 9.1 2.9 13.8 3.7 1.9.3 3.3 1.9 3.3 3.8z\"></path></g><g><g><g><path d=\"m45.3 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m153.9 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path></g><g><path d=\"m189.3 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.2c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c0 2.1-1.7 3.8-3.8 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m73.3 326.4c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m126 326.4c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m99.7 325.6c-.6 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4s4.1 1.1 4.4 3.2c2.4 16.5 12.3 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m50.2 266.6c-.1 0-.2 0-.3 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.7 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-8.9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.5 2.2zm81.8-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13.1-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.4-.7 2.3-.7z\"></path></g></g></g><g><g><path d=\"m296.1 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m404.7 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path></g><g><path d=\"m440 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.1c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c.2 2.1-1.6 3.8-3.7 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m324 326.3c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m376.7 326.3c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m350.4 325.6c-.5 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4 2.1-.3 4 1.1 4.4 3.2 2.4 16.5 12.4 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m301 266.6c-.1 0-.2 0-.4 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.6 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.4 2.2zm81.7-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.5-.7 2.3-.7z\"></path></g></g></g></g></g></svg>				\n									<h5>\n							et ungt og engageret team						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"496pt\" viewBox=\"0 0 496 496\" width=\"496pt\"><path d=\"m440 328h-28.207031c5.078125-6.703125 8.207031-14.960938 8.207031-24 0-8.824219-7.175781-16-16-16h-12v-19.960938c59.574219-14.445312 104-68.085937 104-132.039062 0-74.992188-61.007812-136-136-136s-136 61.007812-136 136c0 63.953125 44.425781 117.59375 104 132.039062v19.960938h-8.449219c-6.167969 0-12.359375 1.464844-17.886719 4.214844l-50.480468 25.25c-3.320313 1.664062-7.03125 2.535156-10.734375 2.535156h-40.449219v-16h-104v16h56v56h16v-56h16v128h-16v-56h-16v56h-56v16h104v-16h40.449219c3.703125 0 7.414062.871094 10.734375 2.527344l34.488281 17.25c5.519531 2.757812 11.710937 4.222656 17.878906 4.222656h24.449219v24h64v-24h48c13.230469 0 24-10.769531 24-24 0-6.167969-2.40625-11.742188-6.238281-16 3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16 0-13.230469-10.769531-24-24-24zm8 24c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm-208-280c0-66.167969 53.832031-120 120-120s120 53.832031 120 120-53.832031 120-120 120-120-53.832031-120-120zm104 134.976562c5.257812.617188 10.574219 1.023438 16 1.023438s10.742188-.40625 16-1.023438v17.023438h-32zm-40.449219 185.023438c-3.703125 0-7.414062-.871094-10.734375-2.527344l-34.488281-17.25c-5.519531-2.757812-11.710937-4.222656-17.878906-4.222656h-40.449219v-96h40.449219c6.167969 0 12.359375-1.464844 17.886719-4.214844l50.480468-25.25c3.320313-1.664062 7.03125-2.535156 10.734375-2.535156h84.449219c0 13.230469-10.769531 24-24 24h-48.28125l-23.863281 35.808594c-6.101563 9.160156-14.527344 16.589844-24.367188 21.503906-8.753906 4.375-18.542969 6.6875-28.320312 6.6875h-15.167969v16h15.167969c12.246093 0 24.519531-2.894531 35.472656-8.375 12.328125-6.160156 22.878906-15.480469 30.527344-26.945312l6.832031-10.253907v93.574219zm40.449219 24v-136h17.472656c-.898437 2.511719-1.472656 5.183594-1.472656 8 0 6.167969 2.40625 11.742188 6.238281 16-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16 0 10.414062 6.710938 19.214844 16 22.527344v9.472656zm96-24h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8s-3.59375 8-8 8zm0 0\"></path><path d=\"m394.878906 73.007812-7.757812 13.984376c17.816406 9.878906 28.878906 28.664062 28.878906 49.007812h16c0-26.160156-14.222656-50.296875-37.121094-62.992188zm0 0\"></path><path d=\"m360 80c4.734375 0 9.449219.59375 14.007812 1.769531l3.976563-15.503906c-5.855469-1.496094-11.90625-2.265625-17.984375-2.265625zm0 0\"></path><path d=\"m360 48c48.519531 0 88 39.480469 88 88 0 20.753906-7.398438 40.910156-20.832031 56.785156l12.207031 10.34375c15.882812-18.761718 24.625-42.601562 24.625-67.128906 0-57.34375-46.65625-104-104-104-24.527344 0-48.367188 8.753906-67.128906 24.632812l10.335937 12.199219c15.871094-13.433593 36.039063-20.832031 56.792969-20.832031zm0 0\"></path><path d=\"m427.128906 215.367188-10.335937-12.199219c-15.871094 13.433593-36.039063 20.832031-56.792969 20.832031-48.519531 0-88-39.480469-88-88 0-20.753906 7.398438-40.910156 20.832031-56.785156l-12.207031-10.34375c-15.882812 18.761718-24.625 42.601562-24.625 67.128906 0 57.34375 46.65625 104 104 104 24.527344 0 48.367188-8.753906 67.128906-24.632812zm0 0\"></path><path d=\"m121.214844 165.640625c4.953125-1.375 9.695312-3.34375 14.183594-5.878906l9.769531 4.886719 19.472656-19.480469-4.886719-9.769531c2.535156-4.496094 4.503906-9.230469 5.886719-14.183594l10.359375-3.445313v-27.53125l-10.351562-3.453125c-1.375-4.953125-3.34375-9.707031-5.886719-14.183594l4.886719-9.777343-19.472657-19.472657-9.769531 4.886719c-4.484375-2.535156-9.230469-4.503906-14.183594-5.878906l-3.453125-10.359375h-27.539062l-3.445313 10.359375c-4.953125 1.375-9.695312 3.34375-14.183594 5.878906l-9.777343-4.886719-19.472657 19.472657 4.886719 9.777343c-2.535156 4.488282-4.503906 9.230469-5.886719 14.183594l-10.351562 3.445313v27.53125l10.351562 3.453125c1.375 4.953125 3.34375 9.695312 5.886719 14.183594l-4.886719 9.769531 19.472657 19.480469 9.769531-4.886719c4.484375 2.535156 9.230469 4.503906 14.183594 5.878906l3.453125 10.359375h27.539062zm-12.304688-13.679687-2.679687 8.039062h-4.460938l-2.679687-8.039062-4.554688-.90625c-6.128906-1.222657-11.878906-3.605469-17.109375-7.09375l-3.867187-2.578126-7.574219 3.800782-3.160156-3.167969 3.792969-7.582031-2.578126-3.859375c-3.488281-5.222657-5.871093-10.980469-7.09375-17.109375l-.914062-4.554688-8.03125-2.679687v-4.46875l8.03125-2.671875.914062-4.554688c1.222657-6.136718 3.613282-11.886718 7.09375-17.109375l2.578126-3.859375-3.792969-7.589844 3.160156-3.160156 7.574219 3.800782 3.867187-2.578126c5.222657-3.488281 10.980469-5.863281 17.109375-7.09375l4.554688-.90625 2.679687-8.039062h4.460938l2.679687 8.039062 4.554688.90625c6.128906 1.222657 11.878906 3.605469 17.109375 7.09375l3.867187 2.578126 7.574219-3.800782 3.160156 3.160156-3.792969 7.589844 2.578126 3.859375c3.488281 5.214844 5.871093 10.972657 7.09375 17.109375l.914062 4.554688 8.03125 2.679687v4.46875l-8.03125 2.671875-.914062 4.554688c-1.222657 6.128906-3.613282 11.878906-7.09375 17.109375l-2.578126 3.859375 3.792969 7.582031-3.160156 3.167969-7.574219-3.800782-3.867187 2.578126c-5.222657 3.488281-10.980469 5.863281-17.109375 7.09375zm0 0\"></path><path d=\"m104 72c-17.648438 0-32 14.351562-32 32s14.351562 32 32 32 32-14.351562 32-32-14.351562-32-32-32zm0 48c-8.824219 0-16-7.175781-16-16s7.175781-16 16-16 16 7.175781 16 16-7.175781 16-16 16zm0 0\"></path><path d=\"m160 248v-40h48v-208h-208v208h106.664062zm-144-232h176v176h-48v24l-32-24h-96zm0 0\"></path><path d=\"m0 272h16v16h-16zm0 0\"></path><path d=\"m32 272h16v16h-16zm0 0\"></path><path d=\"m64 272h16v16h-16zm0 0\"></path><path d=\"m32 304h16v16h-16zm0 0\"></path><path d=\"m64 304h16v16h-16zm0 0\"></path><path d=\"m0 480h16v16h-16zm0 0\"></path><path d=\"m32 480h16v16h-16zm0 0\"></path><path d=\"m64 480h16v16h-16zm0 0\"></path><path d=\"m32 448h16v16h-16zm0 0\"></path><path d=\"m64 448h16v16h-16zm0 0\"></path></svg>				\n									<h5>\n							fokus på kvalitet og detaljer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m469.12 408.93-67.26-33.63v-22.13c10.71-7.69 18.6-19.07 21.78-32.27h5.28c8.81 0 15.98-7.17 15.98-15.98v-5.29c0-6.35-3.74-11.84-9.12-14.41 5.19-18.64-1.65-39.76-19.44-59.78-12.58-14.16-30.67-22.27-49.62-22.27-18.93 0-37.01 8.12-49.59 22.27-13.38 15.05-20.95 41.01-14.03 59.62-5.56 2.5-9.45 8.09-9.45 14.57v5.29c0 8.81 7.17 15.98 15.98 15.98h5.55c3.16 13.09 10.94 24.39 21.51 32.08v22.32l-67.26 33.63c-16.7 5.87-27.89 21.6-27.89 39.28v41.63c0 3.31 2.69 6 6 6h243.46c3.31 0 6-2.69 6-6v-41.63c0-17.68-11.19-33.41-27.88-39.28zm-62.24-17.7-15.83 27.66-13.29-13.29 19.29-19.29zm-37.61 5.88-20.59-20.58v-16.91c6.41 2.57 13.4 4.01 20.72 4.01 7.22 0 14.11-1.39 20.45-3.9v16.8zm63.63-97.48v5.29c0 2.16-1.82 3.98-3.98 3.98h-3.74c.01-.36.03-.71.03-1.07v-12.18h3.71c2.15-.01 3.98 1.82 3.98 3.98zm-119.29 8.2v1.07h-3.98c-2.16 0-3.98-1.82-3.98-3.98v-5.29c0-2.16 1.82-3.98 3.98-3.98l3.98.22zm1.95-24.19c-7.33-13.69-.89-37.39 10.53-50.24 10.31-11.6 25.12-18.25 40.63-18.25 15.52 0 30.34 6.65 40.65 18.25 8.43 9.48 21.3 27.59 17.4 46.39-5.66-.35-10.67-2.55-14.4-6.36-5.37-5.49-7.72-14-6.63-23.94.29-2.62-1.17-5.13-3.6-6.17s-5.25-.37-6.95 1.65c-19.33 22.92-45.95 36.76-73.9 38.68h-3.73zm10.05 24.19v-12.73c24.57-2.92 47.92-14.05 66.73-31.8 1.43 7.26 4.63 13.6 9.45 18.52 3.27 3.35 7.14 5.89 11.41 7.58v18.42c0 24.15-19.65 43.8-43.8 43.8s-43.79-19.64-43.79-43.79zm15.89 78.48 19.29 19.29-13.29 13.29-15.84-27.66zm3.22 97.53h-39.42v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.76v-35.63c0-12.68 8.1-23.95 20.15-28.05.26-.09.51-.19.75-.31l46.47-23.23 20.07 35.06c.93 1.62 2.56 2.72 4.41 2.97.27.04.53.05.79.05 1.58 0 3.11-.62 4.24-1.76l.14-.14zm12.08 0 7.41-64.69 5.06-5.06 4.84 4.84 7.86 64.92h-25.17zm128.2 0h-39.76v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.18l-6.2-51.17.25.25c1.13 1.13 2.66 1.76 4.24 1.76.26 0 .53-.02.79-.05 1.85-.25 3.48-1.34 4.41-2.97l20.07-35.06 46.47 23.23c.24.12.49.23.75.31 12.05 4.1 20.15 15.38 20.15 28.05v35.65zm-67.04-346.65h-10.84l28.38 39.84 28.38-39.84h-10.84c-3.31 0-6-2.69-6-6v-64.58h-98.7c-3.31 0-6-2.69-6-6s2.69-6 6-6h104.7c3.31 0 6 2.69 6 6v64.58h16.48c2.25 0 4.3 1.25 5.33 3.25s.86 4.4-.45 6.23l-40.02 56.18c-1.13 1.58-2.95 2.52-4.89 2.52s-3.76-.94-4.89-2.52l-40.02-56.18c-1.3-1.83-1.48-4.23-.45-6.23s3.09-3.25 5.33-3.25h16.48v-23.5h-65.38c-3.31 0-6-2.69-6-6s2.69-6 6-6h71.38c3.31 0 6 2.69 6 6v35.5c.02 3.31-2.67 6-5.98 6zm-118.44 50.65v-133.26c0-21.18-17.23-38.41-38.41-38.41h-207.7c-21.18-.01-38.41 17.23-38.41 38.41v133.26c0 21.18 17.23 38.41 38.41 38.41h105.8l64.8 55.11c1.11.94 2.49 1.43 3.89 1.43.85 0 1.71-.18 2.52-.55 2.12-.98 3.48-3.11 3.48-5.45v-50.54h27.21c21.18 0 38.41-17.23 38.41-38.41zm-71.62 26.41c-3.31 0-6 2.69-6 6v43.56l-56.59-48.13c-1.08-.92-2.46-1.43-3.89-1.43h-108.01c-14.56 0-26.41-11.85-26.41-26.41v-133.26c0-14.56 11.85-26.41 26.41-26.41h207.69c14.56 0 26.41 11.85 26.41 26.41v133.26c0 14.56-11.85 26.41-26.41 26.41zm-156.34-87.87h56.97c3.31 0 6-2.69 6-6v-39.2l8.55-8.55c2.34-2.34 2.34-6.14 0-8.49-2.34-2.34-6.14-2.34-8.48 0l-.7.7c-.98-1.97-3.01-3.32-5.36-3.32h-56.98c-3.31 0-6 2.69-6 6v52.85c0 3.32 2.69 6.01 6 6.01zm6-52.86h44.97v2.69l-18.16 18.16-8.84-8.84c-2.34-2.34-6.14-2.34-8.49 0-2.34 2.34-2.34 6.14 0 8.49l13.08 13.08c1.17 1.17 2.71 1.76 4.24 1.76s3.07-.59 4.24-1.76l13.92-13.92v21.2h-44.96zm173.62 3.08c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 31.92c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 36.52c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.68 5.99 6zm0 31.92c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.69 5.99 6zm-119.36 165.01h10.84l-28.38-39.84-28.38 39.84h10.84c3.31 0 6 2.69 6 6v64.58h98.7c3.31 0 6 2.69 6 6s-2.69 6-6 6h-104.69c-3.31 0-6-2.69-6-6v-64.58h-16.48c-2.25 0-4.3-1.25-5.33-3.25s-.86-4.4.45-6.23l40.02-56.18c1.13-1.58 2.95-2.52 4.89-2.52s3.76.94 4.89 2.52l40.02 56.18c1.3 1.83 1.48 4.23.45 6.23s-3.09 3.25-5.33 3.25h-16.48v23.5h65.38c3.31 0 6 2.69 6 6s-2.69 6-6 6h-71.38c-3.31 0-6-2.69-6-6v-35.5c-.03-3.31 2.66-6 5.97-6z\"></path></svg>				\n									<h5>\n							ærlig<br> rådgivning						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 510 510\"><path d=\"m192.036 385.845c-4.787-46.972-19.459-64.336-30.658-82.352-8.672-13.951-15.5-28.245-15.5-54.252 0-60.242 48.865-109.109 109.135-109.109 60.242 0 109.109 48.866 109.109 109.109 0 26.007-6.828 40.301-15.5 54.252-11.199 18.016-25.871 35.38-30.658 82.352 9.985 2.864 17.345 12.101 17.345 22.975v36.44c0 13.109-10.747 23.866-23.893 23.866h-10.334v9.945c0 12.588-10.341 22.929-22.93 22.929h-46.304c-12.589 0-22.93-10.341-22.93-22.929v-9.945h-10.334c-13.146 0-23.893-10.757-23.893-23.866v-36.44c0-10.874 7.36-20.111 17.345-22.975zm111.948-.917c4.199-42.194 15.78-62.332 26.488-79.049 10.147-15.842 19.65-28.207 19.65-56.638 0-52.513-42.597-95.109-95.109-95.109-52.537 0-95.135 42.596-95.135 95.109 0 28.431 9.503 40.796 19.65 56.638 10.708 16.717 22.289 36.855 26.488 79.049zm2.554-78.61c-1.175 13.701-11.985 24.191-24.783 24.191-13.527 0-24.862-12.086-24.862-26.673v-99.328c0-14.12 11.335-26.673 24.862-26.673 11.309 0 21.031 8.139 23.975 19.497 9.12 3.904 15.688 13.438 15.688 24.78 0 1.153-.068 2.289-.201 3.403 5.078 5.326 8.283 12.802 8.283 21.117 0 6.39-1.889 12.262-5.06 17.053 1.996 4.099 3.13 8.773 3.13 13.76 0 14.1-9.065 25.697-21.032 28.873zm-16.452-109.977c-1.964-2.729-4.916-4.506-8.331-4.506-6.192 0-10.862 6.21-10.862 12.673v99.328c0 6.677 4.67 12.673 10.862 12.673 5.516 0 9.822-4.614 10.717-10.425-4.709-1.416-8.923-4.144-12.279-7.814-2.607-2.852-2.409-7.283.443-9.89 2.851-2.607 7.282-2.408 9.889.443 2.416 2.642 5.72 4.356 9.402 4.356 7.733 0 13.643-7.218 13.643-15.734s-5.91-15.734-13.643-15.734c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7 5.352 0 10.388 1.655 14.658 4.533.593-1.743.915-3.634.915-5.612 0-2.11-.366-4.128-1.036-5.972-.769.858-1.588 1.66-2.453 2.397-2.94 2.507-7.361 2.156-9.869-.784-2.507-2.939-2.155-7.361.784-9.868 2.773-2.365 4.492-6.122 4.492-10.293 0-6.072-3.705-11.374-8.898-12.467-.154-.023-.307-.052-.458-.085-.499-.08-1.01-.121-1.532-.121-2.947 0-5.591 1.389-7.515 3.525-2.585 2.87-7.015 3.101-9.886.515-2.87-2.586-3.101-7.015-.515-9.886 3.111-3.453 7.059-5.988 11.472-7.252zm-104.526 67.344c-3.171-4.791-5.06-10.663-5.06-17.053 0-8.307 3.198-15.777 8.284-21.104-.133-1.118-.202-2.258-.202-3.416 0-11.354 6.582-20.897 15.717-24.792 2.948-11.354 12.67-19.485 23.946-19.485 13.56 0 24.888 12.555 24.888 26.673v99.328c0 14.585-11.328 26.673-24.888 26.673-12.765 0-23.578-10.484-24.757-24.184-11.98-3.166-21.058-14.769-21.058-28.88 0-4.987 1.134-9.661 3.13-13.76zm9.982-23.036c-.675 1.847-1.042 3.869-1.042 5.983 0 1.978.322 3.869.915 5.612 4.27-2.878 9.306-4.533 14.658-4.533 3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7-7.733 0-13.643 7.218-13.643 15.734s5.91 15.734 13.643 15.734c3.682 0 6.986-1.714 9.402-4.356 2.607-2.851 7.038-3.05 9.889-.443 2.852 2.607 3.05 7.038.443 9.89-3.35 3.664-7.556 6.389-12.255 7.807.891 5.813 5.192 10.432 10.693 10.432 6.21 0 10.888-5.993 10.888-12.673v-99.328c0-6.466-4.678-12.673-10.888-12.673-3.404 0-6.349 1.777-8.309 4.507 4.421 1.264 8.367 3.8 11.476 7.251 2.586 2.871 2.355 7.3-.516 9.886-2.87 2.586-7.3 2.355-9.886-.515-1.926-2.138-4.574-3.525-7.54-3.525-.493 0-.976.037-1.448.108-.196.045-.395.082-.596.11-5.165 1.118-8.844 6.404-8.844 12.455 0 1.243.153 2.45.442 3.594.101.284.183.572.246.862.748 2.326 2.071 4.346 3.814 5.823 2.947 2.498 3.311 6.919.813 9.866s-6.919 3.312-9.866.814c-.878-.745-1.71-1.554-2.489-2.422zm3.042 158.279c-5.442 0-9.893 4.451-9.893 9.892v36.44c0 5.423 4.454 9.866 9.893 9.866h17.334c3.866 0 7 3.134 7 7v16.945c0 4.902 4.027 8.929 8.93 8.929h46.304c4.903 0 8.93-4.027 8.93-8.929v-16.945c0-3.866 3.134-7 7-7h17.334c5.439 0 9.893-4.443 9.893-9.866v-36.44c0-5.441-4.451-9.892-9.893-9.892zm63.416-314.093 2.907-5.412c1.828-3.403 6.075-4.683 9.479-2.854 3.403 1.828 4.682 6.075 2.854 9.479l-16.073 29.925c-1.22 2.271-3.589 3.688-6.167 3.688s-4.947-1.417-6.167-3.688l-16.073-29.925c-1.828-3.404-.549-7.651 2.854-9.479 3.404-1.829 7.651-.549 9.479 2.854l2.907 5.412v-69.835c0-3.863 3.137-7 7-7s7 3.137 7 7zm-132.198 54.758-49.381-49.381c-2.732-2.731-2.732-7.167 0-9.899s7.168-2.732 9.9 0l49.38 49.38-1.771-5.881c-1.114-3.7.985-7.608 4.684-8.722 3.7-1.114 7.607.985 8.721 4.685l9.796 32.526c.743 2.468.069 5.145-1.753 6.968-1.823 1.823-4.5 2.496-6.969 1.753l-32.526-9.795c-3.699-1.114-5.798-5.022-4.684-8.721s5.022-5.798 8.721-4.684zm-44.859 122.299h-69.835c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7h69.835l-5.412-2.907c-3.403-1.828-4.682-6.076-2.854-9.479 1.828-3.404 6.075-4.683 9.479-2.855l29.926 16.074c2.271 1.22 3.688 3.589 3.688 6.167 0 2.577-1.417 4.947-3.688 6.166l-29.926 16.074c-3.404 1.828-7.651.549-9.479-2.855-1.828-3.403-.549-7.651 2.854-9.479zm54.758 118.198-49.38 49.38c-2.732 2.732-7.168 2.732-9.9 0s-2.732-7.167 0-9.899l49.381-49.381-5.882 1.772c-3.699 1.114-7.607-.985-8.721-4.685-1.114-3.699.985-7.607 4.684-8.721l32.526-9.795c2.469-.743 5.146-.07 6.969 1.753 1.822 1.823 2.496 4.5 1.753 6.968l-9.796 32.527c-1.114 3.699-5.021 5.798-8.721 4.684-3.699-1.114-5.798-5.022-4.684-8.721zm240.497-240.497 5.882-1.771c3.699-1.114 7.607.985 8.721 4.684s-.985 7.607-4.684 8.721l-32.526 9.795c-2.469.743-5.146.07-6.969-1.753-1.822-1.823-2.496-4.5-1.753-6.968l9.796-32.526c1.114-3.7 5.021-5.799 8.721-4.685 3.699 1.114 5.798 5.022 4.684 8.722l-1.771 5.881 49.38-49.38c2.732-2.732 7.168-2.732 9.9 0s2.732 7.168 0 9.899zm44.859 122.299 5.412 2.906c3.403 1.828 4.682 6.076 2.854 9.479-1.828 3.404-6.075 4.683-9.479 2.855l-29.926-16.074c-2.271-1.219-3.688-3.589-3.688-6.166 0-2.578 1.417-4.947 3.688-6.167l29.926-16.074c3.404-1.828 7.651-.549 9.479 2.855 1.828 3.403.549 7.651-2.854 9.479l-5.412 2.907h69.835c3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7zm-54.758 118.198 1.771 5.882c1.114 3.699-.985 7.607-4.684 8.721-3.7 1.114-7.607-.985-8.721-4.684l-9.796-32.527c-.743-2.468-.069-5.145 1.753-6.968 1.823-1.823 4.5-2.496 6.969-1.753l32.526 9.795c3.699 1.114 5.798 5.022 4.684 8.721-1.114 3.7-5.022 5.799-8.721 4.685l-5.882-1.772 49.381 49.381c2.732 2.732 2.732 7.167 0 9.899s-7.168 2.732-9.9 0z\"></path></svg>				\n									<h5>\n							gennemtænkte løsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"outline\"><path d=\"M486.41,144A28,28,0,0,0,472,92H349.123l5.457-21.828a48.513,48.513,0,0,0-12.848-46.153A41.035,41.035,0,0,0,312.609,12H308a8.009,8.009,0,0,0-8,8V47.413l-19.233,64.112A17.376,17.376,0,0,1,268,123.539V112a4,4,0,0,0-4-4H152a4,4,0,0,0-4,4v72a4,4,0,0,0,8,0V116h72V276H156V248a4,4,0,0,0-8,0v32a4,4,0,0,0,4,4H264a4,4,0,0,0,4-4V268.5h11.168A37.07,37.07,0,0,1,305.092,279a45.025,45.025,0,0,0,31.48,12.752L440,292a27.987,27.987,0,0,0,19.369-48.2,27.987,27.987,0,0,0,16-48A28,28,0,0,0,486.41,144ZM260,276H236V116h24Zm212-88H396a4,4,0,0,0,0,8h60a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h40a20,20,0,0,1,.01,40l-103.428-.25a37.07,37.07,0,0,1-25.924-10.5,45.031,45.031,0,0,0-31.49-12.752H268V131.686a25.317,25.317,0,0,0,20.429-17.862l19.4-64.675A4,4,0,0,0,308,48V20h4.609a33.082,33.082,0,0,1,23.481,9.69,40.507,40.507,0,0,1,10.728,38.541l-6.7,26.8A4,4,0,0,0,344,100H472a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h72a20,20,0,0,1,0,40Z\"></path><path d=\"M194.5,183.243l-1.9-.217a4,4,0,0,0-4.169,2.491L184.29,195.9H135.278l-3.539-9.317a4,4,0,0,0-7.478,2.84l2.459,6.477h-8.474L68.452,156.872a4,4,0,1,0-4.935,6.3L77.6,174.209,56.961,194.48l-6.636-5.491a4,4,0,1,0-5.1,6.163L87.219,229.9a44.1,44.1,0,0,0,28.05,10.1H212a8.009,8.009,0,0,0,8-8V203.9a8.009,8.009,0,0,0-8-8h-8v-2.01A10.708,10.708,0,0,0,194.5,183.243ZM212,203.9V232H115.269a36.081,36.081,0,0,1-22.951-8.264l-29.16-24.128,20.8-20.422L114.4,203.045a4,4,0,0,0,2.468.852H187a4,4,0,0,0,3.715-2.517l3.929-9.843a2.712,2.712,0,0,1,1.356,2.35v6.01a4,4,0,0,0,4,4Z\"></path><path d=\"M223.084,484.672,200.87,469.863V346.36A44.1,44.1,0,0,0,195.327,325l-17.183-30.94a4,4,0,0,0-7,3.884l17.184,30.94a36.073,36.073,0,0,1,4.537,17.478V468H164.333a4,4,0,1,0,0,8h31.321l12,8H152.865V352a4,4,0,0,0-.358-1.655l-25.454-56A4,4,0,0,0,123.411,292H114.2a4,4,0,0,0-3.945,4.658l8.862,53.175a36.016,36.016,0,0,1-1.951,18.949L78.642,468H48.333a4,4,0,1,0,0,8H80.377L92,484H32.088L76.63,361.366a4.017,4.017,0,0,0,.183-2.044L61.1,268H136a4,4,0,0,0,0-8H59.233L30.555,173.966A19.723,19.723,0,0,1,49.27,148H76a12,12,0,0,0,24,0h15.2a21.975,21.975,0,0,1,8.395,1.652l10.889,4.458a4,4,0,1,0,3.032-7.4L126.63,142.25A29.938,29.938,0,0,0,115.2,140H100v-4.527A16.014,16.014,0,0,0,112,120V103.473A16.014,16.014,0,0,0,124,88V80a4,4,0,0,0-4-4H90A22.025,22.025,0,0,0,68,98v18a12.02,12.02,0,0,0,8,11.314V140H49.27a27.723,27.723,0,0,0-26.305,36.5l29.493,88.482,16.29,94.655-46.128,127A4,4,0,0,0,26.38,492h78.485a4,4,0,0,0,2.268-7.3L86.3,470.368l38.318-98.69a44.018,44.018,0,0,0,2.385-23.16L118.921,300h1.914l24.03,52.867V488a4,4,0,0,0,4,4h72a4,4,0,0,0,2.219-7.328ZM76,98A14.015,14.015,0,0,1,90,84h26v4a8.009,8.009,0,0,1-8,8H92a4,4,0,0,0-4,4,11.962,11.962,0,0,1-1.53,5.881A12.044,12.044,0,0,0,76,104.686Zm4,14a3.981,3.981,0,0,1,3.407,1.9,4,4,0,0,0,5.956.975c.207-.171.7-.648.7-.648.032-.028.061-.057.09-.087A19.907,19.907,0,0,0,95.6,104H104v16a8.009,8.009,0,0,1-8,8,12.133,12.133,0,0,1-2.681-.3,4,4,0,1,0-1.775,7.8c.151.035.3.06.456.091V148a4,4,0,1,1-8,0V124a4,4,0,0,0-4-4,4,4,0,0,1,0-8Z\"></path></g></svg>				\n									<h5>\n							arbejde udført med ansvar						\n					</h5>\n				<p>Vi lover ikke mere, end vi kan holde – men vi holder det, vi lover.</p>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 13:21:21', '2026-01-26 13:21:21', '', 10, 'https://mrarif.me/cpnordic/?p=517', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(518, 1, '2026-01-26 13:21:22', '2026-01-26 13:21:22', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>					\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle ANMELDELSER\n					</a>\n					<h2>HVORFOR VÆLGE CP NORDIC ApS?</h2>		<p>Når du vælger CP NORDIC ApS, får du:</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 450 450\" width=\"512\"><g><g><path d=\"m225 165.2c-25.9 0-48.9-18.8-53.3-45.2-2.4-14.2.9-28.6 9.3-40.3 8.4-11.8 20.9-19.5 35.1-21.9 29.4-4.9 57.3 15 62.2 44.5 4.9 29.4-15 57.3-44.4 62.2-3 .5-6 .7-8.9.7zm-7.6-99.8c-12.2 2-22.9 8.7-30.1 18.8s-10.1 22.4-8 34.6c3.8 22.7 23.5 38.8 45.7 38.8 2.5 0 5.1-.2 7.6-.6 25.2-4.2 42.3-28.1 38.1-53.4s-28.1-42.4-53.3-38.2z\"></path><path d=\"m255.2 115c-2.1 0-3.8-1.7-3.8-3.8 0-14.6-11.8-26.4-26.4-26.4-2.1 0-3.8-1.7-3.8-3.8s1.7-3.8 3.8-3.8c18.8 0 34.1 15.3 34.1 34.1 0 2-1.8 3.7-3.9 3.7z\"></path><path d=\"m236.1 203h-22.2c-2.1 0-3.8-1.7-3.8-3.8v-14.1c-3.1-.6-6.1-1.4-9.1-2.4l-7 12.2c-1.1 1.8-3.4 2.5-5.3 1.4l-19.2-11.1c-.9-.5-1.5-1.4-1.8-2.3-.3-1-.1-2 .4-2.9l7-12.1c-2.4-2.1-4.6-4.3-6.7-6.6l-12.1 7c-1.8 1.1-4.2.4-5.2-1.4l-11.1-19.2c-1.1-1.8-.4-4.2 1.4-5.2l11.9-6.8c-1-3-1.9-6.1-2.6-9.3h-13.7c-2.1 0-3.8-1.7-3.8-3.8v-22.2c0-2.1 1.7-3.8 3.8-3.8h13.4c.6-3.2 1.4-6.4 2.4-9.5l-11.5-6.6c-1.8-1.1-2.5-3.4-1.4-5.3l11.1-19.6c.5-.9 1.4-1.5 2.3-1.8s2-.1 2.9.4l11.3 6.6c2.2-2.5 4.5-4.8 7-7l-6.5-11.3c-.5-.9-.6-1.9-.4-2.9.3-1 .9-1.8 1.8-2.3l19.2-11.1c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l6.4 11.2c3.1-1.1 6.4-1.9 9.7-2.6v-13c0-2.1 1.7-3.8 3.8-3.8h22.2c2.1 0 3.8 1.7 3.8 3.8v12.8c3.3.7 6.5 1.5 9.7 2.6l6.5-11.2c.5-.9 1.4-1.5 2.3-1.8 1-.3 2-.1 2.9.4l19.2 11.1c.9.5 1.5 1.3 1.8 2.3s.1 2-.4 2.9l-6.5 11.3c2.5 2.2 4.8 4.5 7 7.1l11.3-6.6c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l11.1 19.2c1.1 1.8.4 4.2-1.4 5.3l-11.5 6.6c1 3.1 1.8 6.3 2.5 9.5h13.6c2.1 0 3.8 1.7 3.8 3.8v22.2c0 2.1-1.7 3.8-3.8 3.8h-13.6c-.6 3.1-1.5 6.2-2.5 9.3l11.9 6.8c1.8 1.1 2.5 3.4 1.4 5.2l-11.2 19.5c-1.1 1.8-3.4 2.5-5.2 1.4l-12-7c-2.1 2.4-4.4 4.6-6.7 6.6l7 12.1c.5.9.6 1.9.4 2.9s-.9 1.8-1.8 2.3l-19.2 11.1c-1.8 1.1-4.2.4-5.2-1.4l-7-12.2c-3 1-6 1.8-9.1 2.4v14.1c-.2 2.3-2 4-4.1 4zm-18.4-7.7h14.5v-13.5c0-1.9 1.4-3.5 3.3-3.8 4.7-.7 9.4-2 13.8-3.7 1.8-.7 3.8 0 4.7 1.7l6.7 11.6 12.6-7.3-6.7-11.6c-1-1.6-.5-3.7.9-4.9 3.7-3 7.2-6.4 10.2-10.1 1.2-1.5 3.3-1.8 4.9-.9l11.5 6.6 7.3-12.6-11.3-6.5c-1.6-.9-2.4-3-1.6-4.7 1.8-4.5 3.1-9.2 3.9-14 .3-1.9 1.9-3.2 3.8-3.2h13v-14.6h-12.8c-1.9 0-3.5-1.4-3.8-3.3-.7-4.8-2-9.6-3.7-14.2-.7-1.8 0-3.7 1.7-4.7l10.9-6.3-7.3-12.6-10.8 6.3c-1.6.9-3.7.6-4.9-.9-3.1-3.9-6.6-7.4-10.4-10.6-1.5-1.2-1.9-3.3-.9-4.9l6.2-10.7-12.6-7.3-6.1 10.6c-1 1.6-3 2.3-4.7 1.7-4.6-1.8-9.5-3.1-14.4-3.9-1.9-.3-3.3-1.9-3.3-3.8v-12.2h-14.5v12.3c0 1.9-1.4 3.5-3.3 3.8-5 .8-9.8 2.1-14.4 3.9-1.8.7-3.8 0-4.7-1.7l-6.1-10.6-12.6 7.3 6.2 10.7c.9 1.6.6 3.7-.9 4.9-3.9 3.1-7.4 6.7-10.4 10.6-1.2 1.5-3.3 1.9-4.9.9l-10.8-6.3-7.3 12.6 10.9 6.3c1.6.9 2.3 2.9 1.7 4.7-1.7 4.6-3 9.4-3.7 14.2-.3 1.9-1.9 3.3-3.8 3.3h-12.8v14.5h13c1.9 0 3.5 1.4 3.8 3.2.8 4.8 2.1 9.5 3.9 14 .7 1.8 0 3.8-1.6 4.7l-11.3 6.5 7.3 12.6 11.5-6.6c1.6-.9 3.7-.6 4.9.9 3 3.7 6.5 7.1 10.3 10.1 1.5 1.2 1.9 3.3.9 4.9l-6.7 11.6 12.6 7.3 6.7-11.6c.9-1.6 2.9-2.3 4.7-1.7 4.5 1.7 9.1 2.9 13.8 3.7 1.9.3 3.3 1.9 3.3 3.8z\"></path></g><g><g><g><path d=\"m45.3 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m153.9 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path></g><g><path d=\"m189.3 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.2c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c0 2.1-1.7 3.8-3.8 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m73.3 326.4c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m126 326.4c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m99.7 325.6c-.6 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4s4.1 1.1 4.4 3.2c2.4 16.5 12.3 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m50.2 266.6c-.1 0-.2 0-.3 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.7 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-8.9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.5 2.2zm81.8-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13.1-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.4-.7 2.3-.7z\"></path></g></g></g><g><g><path d=\"m296.1 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m404.7 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path></g><g><path d=\"m440 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.1c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c.2 2.1-1.6 3.8-3.7 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m324 326.3c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m376.7 326.3c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m350.4 325.6c-.5 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4 2.1-.3 4 1.1 4.4 3.2 2.4 16.5 12.4 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m301 266.6c-.1 0-.2 0-.4 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.6 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.4 2.2zm81.7-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.5-.7 2.3-.7z\"></path></g></g></g></g></g></svg>				\n									<h5>\n							et ungt og engageret team						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"496pt\" viewBox=\"0 0 496 496\" width=\"496pt\"><path d=\"m440 328h-28.207031c5.078125-6.703125 8.207031-14.960938 8.207031-24 0-8.824219-7.175781-16-16-16h-12v-19.960938c59.574219-14.445312 104-68.085937 104-132.039062 0-74.992188-61.007812-136-136-136s-136 61.007812-136 136c0 63.953125 44.425781 117.59375 104 132.039062v19.960938h-8.449219c-6.167969 0-12.359375 1.464844-17.886719 4.214844l-50.480468 25.25c-3.320313 1.664062-7.03125 2.535156-10.734375 2.535156h-40.449219v-16h-104v16h56v56h16v-56h16v128h-16v-56h-16v56h-56v16h104v-16h40.449219c3.703125 0 7.414062.871094 10.734375 2.527344l34.488281 17.25c5.519531 2.757812 11.710937 4.222656 17.878906 4.222656h24.449219v24h64v-24h48c13.230469 0 24-10.769531 24-24 0-6.167969-2.40625-11.742188-6.238281-16 3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16 0-13.230469-10.769531-24-24-24zm8 24c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm-208-280c0-66.167969 53.832031-120 120-120s120 53.832031 120 120-53.832031 120-120 120-120-53.832031-120-120zm104 134.976562c5.257812.617188 10.574219 1.023438 16 1.023438s10.742188-.40625 16-1.023438v17.023438h-32zm-40.449219 185.023438c-3.703125 0-7.414062-.871094-10.734375-2.527344l-34.488281-17.25c-5.519531-2.757812-11.710937-4.222656-17.878906-4.222656h-40.449219v-96h40.449219c6.167969 0 12.359375-1.464844 17.886719-4.214844l50.480468-25.25c3.320313-1.664062 7.03125-2.535156 10.734375-2.535156h84.449219c0 13.230469-10.769531 24-24 24h-48.28125l-23.863281 35.808594c-6.101563 9.160156-14.527344 16.589844-24.367188 21.503906-8.753906 4.375-18.542969 6.6875-28.320312 6.6875h-15.167969v16h15.167969c12.246093 0 24.519531-2.894531 35.472656-8.375 12.328125-6.160156 22.878906-15.480469 30.527344-26.945312l6.832031-10.253907v93.574219zm40.449219 24v-136h17.472656c-.898437 2.511719-1.472656 5.183594-1.472656 8 0 6.167969 2.40625 11.742188 6.238281 16-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16 0 10.414062 6.710938 19.214844 16 22.527344v9.472656zm96-24h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8s-3.59375 8-8 8zm0 0\"></path><path d=\"m394.878906 73.007812-7.757812 13.984376c17.816406 9.878906 28.878906 28.664062 28.878906 49.007812h16c0-26.160156-14.222656-50.296875-37.121094-62.992188zm0 0\"></path><path d=\"m360 80c4.734375 0 9.449219.59375 14.007812 1.769531l3.976563-15.503906c-5.855469-1.496094-11.90625-2.265625-17.984375-2.265625zm0 0\"></path><path d=\"m360 48c48.519531 0 88 39.480469 88 88 0 20.753906-7.398438 40.910156-20.832031 56.785156l12.207031 10.34375c15.882812-18.761718 24.625-42.601562 24.625-67.128906 0-57.34375-46.65625-104-104-104-24.527344 0-48.367188 8.753906-67.128906 24.632812l10.335937 12.199219c15.871094-13.433593 36.039063-20.832031 56.792969-20.832031zm0 0\"></path><path d=\"m427.128906 215.367188-10.335937-12.199219c-15.871094 13.433593-36.039063 20.832031-56.792969 20.832031-48.519531 0-88-39.480469-88-88 0-20.753906 7.398438-40.910156 20.832031-56.785156l-12.207031-10.34375c-15.882812 18.761718-24.625 42.601562-24.625 67.128906 0 57.34375 46.65625 104 104 104 24.527344 0 48.367188-8.753906 67.128906-24.632812zm0 0\"></path><path d=\"m121.214844 165.640625c4.953125-1.375 9.695312-3.34375 14.183594-5.878906l9.769531 4.886719 19.472656-19.480469-4.886719-9.769531c2.535156-4.496094 4.503906-9.230469 5.886719-14.183594l10.359375-3.445313v-27.53125l-10.351562-3.453125c-1.375-4.953125-3.34375-9.707031-5.886719-14.183594l4.886719-9.777343-19.472657-19.472657-9.769531 4.886719c-4.484375-2.535156-9.230469-4.503906-14.183594-5.878906l-3.453125-10.359375h-27.539062l-3.445313 10.359375c-4.953125 1.375-9.695312 3.34375-14.183594 5.878906l-9.777343-4.886719-19.472657 19.472657 4.886719 9.777343c-2.535156 4.488282-4.503906 9.230469-5.886719 14.183594l-10.351562 3.445313v27.53125l10.351562 3.453125c1.375 4.953125 3.34375 9.695312 5.886719 14.183594l-4.886719 9.769531 19.472657 19.480469 9.769531-4.886719c4.484375 2.535156 9.230469 4.503906 14.183594 5.878906l3.453125 10.359375h27.539062zm-12.304688-13.679687-2.679687 8.039062h-4.460938l-2.679687-8.039062-4.554688-.90625c-6.128906-1.222657-11.878906-3.605469-17.109375-7.09375l-3.867187-2.578126-7.574219 3.800782-3.160156-3.167969 3.792969-7.582031-2.578126-3.859375c-3.488281-5.222657-5.871093-10.980469-7.09375-17.109375l-.914062-4.554688-8.03125-2.679687v-4.46875l8.03125-2.671875.914062-4.554688c1.222657-6.136718 3.613282-11.886718 7.09375-17.109375l2.578126-3.859375-3.792969-7.589844 3.160156-3.160156 7.574219 3.800782 3.867187-2.578126c5.222657-3.488281 10.980469-5.863281 17.109375-7.09375l4.554688-.90625 2.679687-8.039062h4.460938l2.679687 8.039062 4.554688.90625c6.128906 1.222657 11.878906 3.605469 17.109375 7.09375l3.867187 2.578126 7.574219-3.800782 3.160156 3.160156-3.792969 7.589844 2.578126 3.859375c3.488281 5.214844 5.871093 10.972657 7.09375 17.109375l.914062 4.554688 8.03125 2.679687v4.46875l-8.03125 2.671875-.914062 4.554688c-1.222657 6.128906-3.613282 11.878906-7.09375 17.109375l-2.578126 3.859375 3.792969 7.582031-3.160156 3.167969-7.574219-3.800782-3.867187 2.578126c-5.222657 3.488281-10.980469 5.863281-17.109375 7.09375zm0 0\"></path><path d=\"m104 72c-17.648438 0-32 14.351562-32 32s14.351562 32 32 32 32-14.351562 32-32-14.351562-32-32-32zm0 48c-8.824219 0-16-7.175781-16-16s7.175781-16 16-16 16 7.175781 16 16-7.175781 16-16 16zm0 0\"></path><path d=\"m160 248v-40h48v-208h-208v208h106.664062zm-144-232h176v176h-48v24l-32-24h-96zm0 0\"></path><path d=\"m0 272h16v16h-16zm0 0\"></path><path d=\"m32 272h16v16h-16zm0 0\"></path><path d=\"m64 272h16v16h-16zm0 0\"></path><path d=\"m32 304h16v16h-16zm0 0\"></path><path d=\"m64 304h16v16h-16zm0 0\"></path><path d=\"m0 480h16v16h-16zm0 0\"></path><path d=\"m32 480h16v16h-16zm0 0\"></path><path d=\"m64 480h16v16h-16zm0 0\"></path><path d=\"m32 448h16v16h-16zm0 0\"></path><path d=\"m64 448h16v16h-16zm0 0\"></path></svg>				\n									<h5>\n							fokus på kvalitet og detaljer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m469.12 408.93-67.26-33.63v-22.13c10.71-7.69 18.6-19.07 21.78-32.27h5.28c8.81 0 15.98-7.17 15.98-15.98v-5.29c0-6.35-3.74-11.84-9.12-14.41 5.19-18.64-1.65-39.76-19.44-59.78-12.58-14.16-30.67-22.27-49.62-22.27-18.93 0-37.01 8.12-49.59 22.27-13.38 15.05-20.95 41.01-14.03 59.62-5.56 2.5-9.45 8.09-9.45 14.57v5.29c0 8.81 7.17 15.98 15.98 15.98h5.55c3.16 13.09 10.94 24.39 21.51 32.08v22.32l-67.26 33.63c-16.7 5.87-27.89 21.6-27.89 39.28v41.63c0 3.31 2.69 6 6 6h243.46c3.31 0 6-2.69 6-6v-41.63c0-17.68-11.19-33.41-27.88-39.28zm-62.24-17.7-15.83 27.66-13.29-13.29 19.29-19.29zm-37.61 5.88-20.59-20.58v-16.91c6.41 2.57 13.4 4.01 20.72 4.01 7.22 0 14.11-1.39 20.45-3.9v16.8zm63.63-97.48v5.29c0 2.16-1.82 3.98-3.98 3.98h-3.74c.01-.36.03-.71.03-1.07v-12.18h3.71c2.15-.01 3.98 1.82 3.98 3.98zm-119.29 8.2v1.07h-3.98c-2.16 0-3.98-1.82-3.98-3.98v-5.29c0-2.16 1.82-3.98 3.98-3.98l3.98.22zm1.95-24.19c-7.33-13.69-.89-37.39 10.53-50.24 10.31-11.6 25.12-18.25 40.63-18.25 15.52 0 30.34 6.65 40.65 18.25 8.43 9.48 21.3 27.59 17.4 46.39-5.66-.35-10.67-2.55-14.4-6.36-5.37-5.49-7.72-14-6.63-23.94.29-2.62-1.17-5.13-3.6-6.17s-5.25-.37-6.95 1.65c-19.33 22.92-45.95 36.76-73.9 38.68h-3.73zm10.05 24.19v-12.73c24.57-2.92 47.92-14.05 66.73-31.8 1.43 7.26 4.63 13.6 9.45 18.52 3.27 3.35 7.14 5.89 11.41 7.58v18.42c0 24.15-19.65 43.8-43.8 43.8s-43.79-19.64-43.79-43.79zm15.89 78.48 19.29 19.29-13.29 13.29-15.84-27.66zm3.22 97.53h-39.42v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.76v-35.63c0-12.68 8.1-23.95 20.15-28.05.26-.09.51-.19.75-.31l46.47-23.23 20.07 35.06c.93 1.62 2.56 2.72 4.41 2.97.27.04.53.05.79.05 1.58 0 3.11-.62 4.24-1.76l.14-.14zm12.08 0 7.41-64.69 5.06-5.06 4.84 4.84 7.86 64.92h-25.17zm128.2 0h-39.76v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.18l-6.2-51.17.25.25c1.13 1.13 2.66 1.76 4.24 1.76.26 0 .53-.02.79-.05 1.85-.25 3.48-1.34 4.41-2.97l20.07-35.06 46.47 23.23c.24.12.49.23.75.31 12.05 4.1 20.15 15.38 20.15 28.05v35.65zm-67.04-346.65h-10.84l28.38 39.84 28.38-39.84h-10.84c-3.31 0-6-2.69-6-6v-64.58h-98.7c-3.31 0-6-2.69-6-6s2.69-6 6-6h104.7c3.31 0 6 2.69 6 6v64.58h16.48c2.25 0 4.3 1.25 5.33 3.25s.86 4.4-.45 6.23l-40.02 56.18c-1.13 1.58-2.95 2.52-4.89 2.52s-3.76-.94-4.89-2.52l-40.02-56.18c-1.3-1.83-1.48-4.23-.45-6.23s3.09-3.25 5.33-3.25h16.48v-23.5h-65.38c-3.31 0-6-2.69-6-6s2.69-6 6-6h71.38c3.31 0 6 2.69 6 6v35.5c.02 3.31-2.67 6-5.98 6zm-118.44 50.65v-133.26c0-21.18-17.23-38.41-38.41-38.41h-207.7c-21.18-.01-38.41 17.23-38.41 38.41v133.26c0 21.18 17.23 38.41 38.41 38.41h105.8l64.8 55.11c1.11.94 2.49 1.43 3.89 1.43.85 0 1.71-.18 2.52-.55 2.12-.98 3.48-3.11 3.48-5.45v-50.54h27.21c21.18 0 38.41-17.23 38.41-38.41zm-71.62 26.41c-3.31 0-6 2.69-6 6v43.56l-56.59-48.13c-1.08-.92-2.46-1.43-3.89-1.43h-108.01c-14.56 0-26.41-11.85-26.41-26.41v-133.26c0-14.56 11.85-26.41 26.41-26.41h207.69c14.56 0 26.41 11.85 26.41 26.41v133.26c0 14.56-11.85 26.41-26.41 26.41zm-156.34-87.87h56.97c3.31 0 6-2.69 6-6v-39.2l8.55-8.55c2.34-2.34 2.34-6.14 0-8.49-2.34-2.34-6.14-2.34-8.48 0l-.7.7c-.98-1.97-3.01-3.32-5.36-3.32h-56.98c-3.31 0-6 2.69-6 6v52.85c0 3.32 2.69 6.01 6 6.01zm6-52.86h44.97v2.69l-18.16 18.16-8.84-8.84c-2.34-2.34-6.14-2.34-8.49 0-2.34 2.34-2.34 6.14 0 8.49l13.08 13.08c1.17 1.17 2.71 1.76 4.24 1.76s3.07-.59 4.24-1.76l13.92-13.92v21.2h-44.96zm173.62 3.08c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 31.92c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 36.52c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.68 5.99 6zm0 31.92c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.69 5.99 6zm-119.36 165.01h10.84l-28.38-39.84-28.38 39.84h10.84c3.31 0 6 2.69 6 6v64.58h98.7c3.31 0 6 2.69 6 6s-2.69 6-6 6h-104.69c-3.31 0-6-2.69-6-6v-64.58h-16.48c-2.25 0-4.3-1.25-5.33-3.25s-.86-4.4.45-6.23l40.02-56.18c1.13-1.58 2.95-2.52 4.89-2.52s3.76.94 4.89 2.52l40.02 56.18c1.3 1.83 1.48 4.23.45 6.23s-3.09 3.25-5.33 3.25h-16.48v23.5h65.38c3.31 0 6 2.69 6 6s-2.69 6-6 6h-71.38c-3.31 0-6-2.69-6-6v-35.5c-.03-3.31 2.66-6 5.97-6z\"></path></svg>				\n									<h5>\n							ærlig<br> rådgivning						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 510 510\"><path d=\"m192.036 385.845c-4.787-46.972-19.459-64.336-30.658-82.352-8.672-13.951-15.5-28.245-15.5-54.252 0-60.242 48.865-109.109 109.135-109.109 60.242 0 109.109 48.866 109.109 109.109 0 26.007-6.828 40.301-15.5 54.252-11.199 18.016-25.871 35.38-30.658 82.352 9.985 2.864 17.345 12.101 17.345 22.975v36.44c0 13.109-10.747 23.866-23.893 23.866h-10.334v9.945c0 12.588-10.341 22.929-22.93 22.929h-46.304c-12.589 0-22.93-10.341-22.93-22.929v-9.945h-10.334c-13.146 0-23.893-10.757-23.893-23.866v-36.44c0-10.874 7.36-20.111 17.345-22.975zm111.948-.917c4.199-42.194 15.78-62.332 26.488-79.049 10.147-15.842 19.65-28.207 19.65-56.638 0-52.513-42.597-95.109-95.109-95.109-52.537 0-95.135 42.596-95.135 95.109 0 28.431 9.503 40.796 19.65 56.638 10.708 16.717 22.289 36.855 26.488 79.049zm2.554-78.61c-1.175 13.701-11.985 24.191-24.783 24.191-13.527 0-24.862-12.086-24.862-26.673v-99.328c0-14.12 11.335-26.673 24.862-26.673 11.309 0 21.031 8.139 23.975 19.497 9.12 3.904 15.688 13.438 15.688 24.78 0 1.153-.068 2.289-.201 3.403 5.078 5.326 8.283 12.802 8.283 21.117 0 6.39-1.889 12.262-5.06 17.053 1.996 4.099 3.13 8.773 3.13 13.76 0 14.1-9.065 25.697-21.032 28.873zm-16.452-109.977c-1.964-2.729-4.916-4.506-8.331-4.506-6.192 0-10.862 6.21-10.862 12.673v99.328c0 6.677 4.67 12.673 10.862 12.673 5.516 0 9.822-4.614 10.717-10.425-4.709-1.416-8.923-4.144-12.279-7.814-2.607-2.852-2.409-7.283.443-9.89 2.851-2.607 7.282-2.408 9.889.443 2.416 2.642 5.72 4.356 9.402 4.356 7.733 0 13.643-7.218 13.643-15.734s-5.91-15.734-13.643-15.734c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7 5.352 0 10.388 1.655 14.658 4.533.593-1.743.915-3.634.915-5.612 0-2.11-.366-4.128-1.036-5.972-.769.858-1.588 1.66-2.453 2.397-2.94 2.507-7.361 2.156-9.869-.784-2.507-2.939-2.155-7.361.784-9.868 2.773-2.365 4.492-6.122 4.492-10.293 0-6.072-3.705-11.374-8.898-12.467-.154-.023-.307-.052-.458-.085-.499-.08-1.01-.121-1.532-.121-2.947 0-5.591 1.389-7.515 3.525-2.585 2.87-7.015 3.101-9.886.515-2.87-2.586-3.101-7.015-.515-9.886 3.111-3.453 7.059-5.988 11.472-7.252zm-104.526 67.344c-3.171-4.791-5.06-10.663-5.06-17.053 0-8.307 3.198-15.777 8.284-21.104-.133-1.118-.202-2.258-.202-3.416 0-11.354 6.582-20.897 15.717-24.792 2.948-11.354 12.67-19.485 23.946-19.485 13.56 0 24.888 12.555 24.888 26.673v99.328c0 14.585-11.328 26.673-24.888 26.673-12.765 0-23.578-10.484-24.757-24.184-11.98-3.166-21.058-14.769-21.058-28.88 0-4.987 1.134-9.661 3.13-13.76zm9.982-23.036c-.675 1.847-1.042 3.869-1.042 5.983 0 1.978.322 3.869.915 5.612 4.27-2.878 9.306-4.533 14.658-4.533 3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7-7.733 0-13.643 7.218-13.643 15.734s5.91 15.734 13.643 15.734c3.682 0 6.986-1.714 9.402-4.356 2.607-2.851 7.038-3.05 9.889-.443 2.852 2.607 3.05 7.038.443 9.89-3.35 3.664-7.556 6.389-12.255 7.807.891 5.813 5.192 10.432 10.693 10.432 6.21 0 10.888-5.993 10.888-12.673v-99.328c0-6.466-4.678-12.673-10.888-12.673-3.404 0-6.349 1.777-8.309 4.507 4.421 1.264 8.367 3.8 11.476 7.251 2.586 2.871 2.355 7.3-.516 9.886-2.87 2.586-7.3 2.355-9.886-.515-1.926-2.138-4.574-3.525-7.54-3.525-.493 0-.976.037-1.448.108-.196.045-.395.082-.596.11-5.165 1.118-8.844 6.404-8.844 12.455 0 1.243.153 2.45.442 3.594.101.284.183.572.246.862.748 2.326 2.071 4.346 3.814 5.823 2.947 2.498 3.311 6.919.813 9.866s-6.919 3.312-9.866.814c-.878-.745-1.71-1.554-2.489-2.422zm3.042 158.279c-5.442 0-9.893 4.451-9.893 9.892v36.44c0 5.423 4.454 9.866 9.893 9.866h17.334c3.866 0 7 3.134 7 7v16.945c0 4.902 4.027 8.929 8.93 8.929h46.304c4.903 0 8.93-4.027 8.93-8.929v-16.945c0-3.866 3.134-7 7-7h17.334c5.439 0 9.893-4.443 9.893-9.866v-36.44c0-5.441-4.451-9.892-9.893-9.892zm63.416-314.093 2.907-5.412c1.828-3.403 6.075-4.683 9.479-2.854 3.403 1.828 4.682 6.075 2.854 9.479l-16.073 29.925c-1.22 2.271-3.589 3.688-6.167 3.688s-4.947-1.417-6.167-3.688l-16.073-29.925c-1.828-3.404-.549-7.651 2.854-9.479 3.404-1.829 7.651-.549 9.479 2.854l2.907 5.412v-69.835c0-3.863 3.137-7 7-7s7 3.137 7 7zm-132.198 54.758-49.381-49.381c-2.732-2.731-2.732-7.167 0-9.899s7.168-2.732 9.9 0l49.38 49.38-1.771-5.881c-1.114-3.7.985-7.608 4.684-8.722 3.7-1.114 7.607.985 8.721 4.685l9.796 32.526c.743 2.468.069 5.145-1.753 6.968-1.823 1.823-4.5 2.496-6.969 1.753l-32.526-9.795c-3.699-1.114-5.798-5.022-4.684-8.721s5.022-5.798 8.721-4.684zm-44.859 122.299h-69.835c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7h69.835l-5.412-2.907c-3.403-1.828-4.682-6.076-2.854-9.479 1.828-3.404 6.075-4.683 9.479-2.855l29.926 16.074c2.271 1.22 3.688 3.589 3.688 6.167 0 2.577-1.417 4.947-3.688 6.166l-29.926 16.074c-3.404 1.828-7.651.549-9.479-2.855-1.828-3.403-.549-7.651 2.854-9.479zm54.758 118.198-49.38 49.38c-2.732 2.732-7.168 2.732-9.9 0s-2.732-7.167 0-9.899l49.381-49.381-5.882 1.772c-3.699 1.114-7.607-.985-8.721-4.685-1.114-3.699.985-7.607 4.684-8.721l32.526-9.795c2.469-.743 5.146-.07 6.969 1.753 1.822 1.823 2.496 4.5 1.753 6.968l-9.796 32.527c-1.114 3.699-5.021 5.798-8.721 4.684-3.699-1.114-5.798-5.022-4.684-8.721zm240.497-240.497 5.882-1.771c3.699-1.114 7.607.985 8.721 4.684s-.985 7.607-4.684 8.721l-32.526 9.795c-2.469.743-5.146.07-6.969-1.753-1.822-1.823-2.496-4.5-1.753-6.968l9.796-32.526c1.114-3.7 5.021-5.799 8.721-4.685 3.699 1.114 5.798 5.022 4.684 8.722l-1.771 5.881 49.38-49.38c2.732-2.732 7.168-2.732 9.9 0s2.732 7.168 0 9.899zm44.859 122.299 5.412 2.906c3.403 1.828 4.682 6.076 2.854 9.479-1.828 3.404-6.075 4.683-9.479 2.855l-29.926-16.074c-2.271-1.219-3.688-3.589-3.688-6.166 0-2.578 1.417-4.947 3.688-6.167l29.926-16.074c3.404-1.828 7.651-.549 9.479 2.855 1.828 3.403.549 7.651-2.854 9.479l-5.412 2.907h69.835c3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7zm-54.758 118.198 1.771 5.882c1.114 3.699-.985 7.607-4.684 8.721-3.7 1.114-7.607-.985-8.721-4.684l-9.796-32.527c-.743-2.468-.069-5.145 1.753-6.968 1.823-1.823 4.5-2.496 6.969-1.753l32.526 9.795c3.699 1.114 5.798 5.022 4.684 8.721-1.114 3.7-5.022 5.799-8.721 4.685l-5.882-1.772 49.381 49.381c2.732 2.732 2.732 7.167 0 9.899s-7.168 2.732-9.9 0z\"></path></svg>				\n									<h5>\n							gennemtænkte løsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"outline\"><path d=\"M486.41,144A28,28,0,0,0,472,92H349.123l5.457-21.828a48.513,48.513,0,0,0-12.848-46.153A41.035,41.035,0,0,0,312.609,12H308a8.009,8.009,0,0,0-8,8V47.413l-19.233,64.112A17.376,17.376,0,0,1,268,123.539V112a4,4,0,0,0-4-4H152a4,4,0,0,0-4,4v72a4,4,0,0,0,8,0V116h72V276H156V248a4,4,0,0,0-8,0v32a4,4,0,0,0,4,4H264a4,4,0,0,0,4-4V268.5h11.168A37.07,37.07,0,0,1,305.092,279a45.025,45.025,0,0,0,31.48,12.752L440,292a27.987,27.987,0,0,0,19.369-48.2,27.987,27.987,0,0,0,16-48A28,28,0,0,0,486.41,144ZM260,276H236V116h24Zm212-88H396a4,4,0,0,0,0,8h60a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h40a20,20,0,0,1,.01,40l-103.428-.25a37.07,37.07,0,0,1-25.924-10.5,45.031,45.031,0,0,0-31.49-12.752H268V131.686a25.317,25.317,0,0,0,20.429-17.862l19.4-64.675A4,4,0,0,0,308,48V20h4.609a33.082,33.082,0,0,1,23.481,9.69,40.507,40.507,0,0,1,10.728,38.541l-6.7,26.8A4,4,0,0,0,344,100H472a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h72a20,20,0,0,1,0,40Z\"></path><path d=\"M194.5,183.243l-1.9-.217a4,4,0,0,0-4.169,2.491L184.29,195.9H135.278l-3.539-9.317a4,4,0,0,0-7.478,2.84l2.459,6.477h-8.474L68.452,156.872a4,4,0,1,0-4.935,6.3L77.6,174.209,56.961,194.48l-6.636-5.491a4,4,0,1,0-5.1,6.163L87.219,229.9a44.1,44.1,0,0,0,28.05,10.1H212a8.009,8.009,0,0,0,8-8V203.9a8.009,8.009,0,0,0-8-8h-8v-2.01A10.708,10.708,0,0,0,194.5,183.243ZM212,203.9V232H115.269a36.081,36.081,0,0,1-22.951-8.264l-29.16-24.128,20.8-20.422L114.4,203.045a4,4,0,0,0,2.468.852H187a4,4,0,0,0,3.715-2.517l3.929-9.843a2.712,2.712,0,0,1,1.356,2.35v6.01a4,4,0,0,0,4,4Z\"></path><path d=\"M223.084,484.672,200.87,469.863V346.36A44.1,44.1,0,0,0,195.327,325l-17.183-30.94a4,4,0,0,0-7,3.884l17.184,30.94a36.073,36.073,0,0,1,4.537,17.478V468H164.333a4,4,0,1,0,0,8h31.321l12,8H152.865V352a4,4,0,0,0-.358-1.655l-25.454-56A4,4,0,0,0,123.411,292H114.2a4,4,0,0,0-3.945,4.658l8.862,53.175a36.016,36.016,0,0,1-1.951,18.949L78.642,468H48.333a4,4,0,1,0,0,8H80.377L92,484H32.088L76.63,361.366a4.017,4.017,0,0,0,.183-2.044L61.1,268H136a4,4,0,0,0,0-8H59.233L30.555,173.966A19.723,19.723,0,0,1,49.27,148H76a12,12,0,0,0,24,0h15.2a21.975,21.975,0,0,1,8.395,1.652l10.889,4.458a4,4,0,1,0,3.032-7.4L126.63,142.25A29.938,29.938,0,0,0,115.2,140H100v-4.527A16.014,16.014,0,0,0,112,120V103.473A16.014,16.014,0,0,0,124,88V80a4,4,0,0,0-4-4H90A22.025,22.025,0,0,0,68,98v18a12.02,12.02,0,0,0,8,11.314V140H49.27a27.723,27.723,0,0,0-26.305,36.5l29.493,88.482,16.29,94.655-46.128,127A4,4,0,0,0,26.38,492h78.485a4,4,0,0,0,2.268-7.3L86.3,470.368l38.318-98.69a44.018,44.018,0,0,0,2.385-23.16L118.921,300h1.914l24.03,52.867V488a4,4,0,0,0,4,4h72a4,4,0,0,0,2.219-7.328ZM76,98A14.015,14.015,0,0,1,90,84h26v4a8.009,8.009,0,0,1-8,8H92a4,4,0,0,0-4,4,11.962,11.962,0,0,1-1.53,5.881A12.044,12.044,0,0,0,76,104.686Zm4,14a3.981,3.981,0,0,1,3.407,1.9,4,4,0,0,0,5.956.975c.207-.171.7-.648.7-.648.032-.028.061-.057.09-.087A19.907,19.907,0,0,0,95.6,104H104v16a8.009,8.009,0,0,1-8,8,12.133,12.133,0,0,1-2.681-.3,4,4,0,1,0-1.775,7.8c.151.035.3.06.456.091V148a4,4,0,1,1-8,0V124a4,4,0,0,0-4-4,4,4,0,0,1,0-8Z\"></path></g></svg>				\n									<h5>\n							arbejde udført med ansvar						\n					</h5>\n				<p>Vi lover ikke mere, end vi kan holde – men vi holder det, vi lover.</p>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 13:21:22', '2026-01-26 13:21:22', '', 10, 'https://mrarif.me/cpnordic/?p=518', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(519, 1, '2026-01-26 13:21:22', '2026-01-26 13:21:22', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>					\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle ANMELDELSER\n					</a>\n					<h2>HVORFOR VÆLGE CP NORDIC ApS?</h2>		<p>Når du vælger CP NORDIC ApS, får du:</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 450 450\" width=\"512\"><g><g><path d=\"m225 165.2c-25.9 0-48.9-18.8-53.3-45.2-2.4-14.2.9-28.6 9.3-40.3 8.4-11.8 20.9-19.5 35.1-21.9 29.4-4.9 57.3 15 62.2 44.5 4.9 29.4-15 57.3-44.4 62.2-3 .5-6 .7-8.9.7zm-7.6-99.8c-12.2 2-22.9 8.7-30.1 18.8s-10.1 22.4-8 34.6c3.8 22.7 23.5 38.8 45.7 38.8 2.5 0 5.1-.2 7.6-.6 25.2-4.2 42.3-28.1 38.1-53.4s-28.1-42.4-53.3-38.2z\"></path><path d=\"m255.2 115c-2.1 0-3.8-1.7-3.8-3.8 0-14.6-11.8-26.4-26.4-26.4-2.1 0-3.8-1.7-3.8-3.8s1.7-3.8 3.8-3.8c18.8 0 34.1 15.3 34.1 34.1 0 2-1.8 3.7-3.9 3.7z\"></path><path d=\"m236.1 203h-22.2c-2.1 0-3.8-1.7-3.8-3.8v-14.1c-3.1-.6-6.1-1.4-9.1-2.4l-7 12.2c-1.1 1.8-3.4 2.5-5.3 1.4l-19.2-11.1c-.9-.5-1.5-1.4-1.8-2.3-.3-1-.1-2 .4-2.9l7-12.1c-2.4-2.1-4.6-4.3-6.7-6.6l-12.1 7c-1.8 1.1-4.2.4-5.2-1.4l-11.1-19.2c-1.1-1.8-.4-4.2 1.4-5.2l11.9-6.8c-1-3-1.9-6.1-2.6-9.3h-13.7c-2.1 0-3.8-1.7-3.8-3.8v-22.2c0-2.1 1.7-3.8 3.8-3.8h13.4c.6-3.2 1.4-6.4 2.4-9.5l-11.5-6.6c-1.8-1.1-2.5-3.4-1.4-5.3l11.1-19.6c.5-.9 1.4-1.5 2.3-1.8s2-.1 2.9.4l11.3 6.6c2.2-2.5 4.5-4.8 7-7l-6.5-11.3c-.5-.9-.6-1.9-.4-2.9.3-1 .9-1.8 1.8-2.3l19.2-11.1c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l6.4 11.2c3.1-1.1 6.4-1.9 9.7-2.6v-13c0-2.1 1.7-3.8 3.8-3.8h22.2c2.1 0 3.8 1.7 3.8 3.8v12.8c3.3.7 6.5 1.5 9.7 2.6l6.5-11.2c.5-.9 1.4-1.5 2.3-1.8 1-.3 2-.1 2.9.4l19.2 11.1c.9.5 1.5 1.3 1.8 2.3s.1 2-.4 2.9l-6.5 11.3c2.5 2.2 4.8 4.5 7 7.1l11.3-6.6c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l11.1 19.2c1.1 1.8.4 4.2-1.4 5.3l-11.5 6.6c1 3.1 1.8 6.3 2.5 9.5h13.6c2.1 0 3.8 1.7 3.8 3.8v22.2c0 2.1-1.7 3.8-3.8 3.8h-13.6c-.6 3.1-1.5 6.2-2.5 9.3l11.9 6.8c1.8 1.1 2.5 3.4 1.4 5.2l-11.2 19.5c-1.1 1.8-3.4 2.5-5.2 1.4l-12-7c-2.1 2.4-4.4 4.6-6.7 6.6l7 12.1c.5.9.6 1.9.4 2.9s-.9 1.8-1.8 2.3l-19.2 11.1c-1.8 1.1-4.2.4-5.2-1.4l-7-12.2c-3 1-6 1.8-9.1 2.4v14.1c-.2 2.3-2 4-4.1 4zm-18.4-7.7h14.5v-13.5c0-1.9 1.4-3.5 3.3-3.8 4.7-.7 9.4-2 13.8-3.7 1.8-.7 3.8 0 4.7 1.7l6.7 11.6 12.6-7.3-6.7-11.6c-1-1.6-.5-3.7.9-4.9 3.7-3 7.2-6.4 10.2-10.1 1.2-1.5 3.3-1.8 4.9-.9l11.5 6.6 7.3-12.6-11.3-6.5c-1.6-.9-2.4-3-1.6-4.7 1.8-4.5 3.1-9.2 3.9-14 .3-1.9 1.9-3.2 3.8-3.2h13v-14.6h-12.8c-1.9 0-3.5-1.4-3.8-3.3-.7-4.8-2-9.6-3.7-14.2-.7-1.8 0-3.7 1.7-4.7l10.9-6.3-7.3-12.6-10.8 6.3c-1.6.9-3.7.6-4.9-.9-3.1-3.9-6.6-7.4-10.4-10.6-1.5-1.2-1.9-3.3-.9-4.9l6.2-10.7-12.6-7.3-6.1 10.6c-1 1.6-3 2.3-4.7 1.7-4.6-1.8-9.5-3.1-14.4-3.9-1.9-.3-3.3-1.9-3.3-3.8v-12.2h-14.5v12.3c0 1.9-1.4 3.5-3.3 3.8-5 .8-9.8 2.1-14.4 3.9-1.8.7-3.8 0-4.7-1.7l-6.1-10.6-12.6 7.3 6.2 10.7c.9 1.6.6 3.7-.9 4.9-3.9 3.1-7.4 6.7-10.4 10.6-1.2 1.5-3.3 1.9-4.9.9l-10.8-6.3-7.3 12.6 10.9 6.3c1.6.9 2.3 2.9 1.7 4.7-1.7 4.6-3 9.4-3.7 14.2-.3 1.9-1.9 3.3-3.8 3.3h-12.8v14.5h13c1.9 0 3.5 1.4 3.8 3.2.8 4.8 2.1 9.5 3.9 14 .7 1.8 0 3.8-1.6 4.7l-11.3 6.5 7.3 12.6 11.5-6.6c1.6-.9 3.7-.6 4.9.9 3 3.7 6.5 7.1 10.3 10.1 1.5 1.2 1.9 3.3.9 4.9l-6.7 11.6 12.6 7.3 6.7-11.6c.9-1.6 2.9-2.3 4.7-1.7 4.5 1.7 9.1 2.9 13.8 3.7 1.9.3 3.3 1.9 3.3 3.8z\"></path></g><g><g><g><path d=\"m45.3 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m153.9 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path></g><g><path d=\"m189.3 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.2c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c0 2.1-1.7 3.8-3.8 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m73.3 326.4c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m126 326.4c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m99.7 325.6c-.6 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4s4.1 1.1 4.4 3.2c2.4 16.5 12.3 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m50.2 266.6c-.1 0-.2 0-.3 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.7 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-8.9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.5 2.2zm81.8-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13.1-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.4-.7 2.3-.7z\"></path></g></g></g><g><g><path d=\"m296.1 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m404.7 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path></g><g><path d=\"m440 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.1c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c.2 2.1-1.6 3.8-3.7 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m324 326.3c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m376.7 326.3c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m350.4 325.6c-.5 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4 2.1-.3 4 1.1 4.4 3.2 2.4 16.5 12.4 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m301 266.6c-.1 0-.2 0-.4 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.6 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.4 2.2zm81.7-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.5-.7 2.3-.7z\"></path></g></g></g></g></g></svg>				\n									<h5>\n							et ungt og engageret team						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"496pt\" viewBox=\"0 0 496 496\" width=\"496pt\"><path d=\"m440 328h-28.207031c5.078125-6.703125 8.207031-14.960938 8.207031-24 0-8.824219-7.175781-16-16-16h-12v-19.960938c59.574219-14.445312 104-68.085937 104-132.039062 0-74.992188-61.007812-136-136-136s-136 61.007812-136 136c0 63.953125 44.425781 117.59375 104 132.039062v19.960938h-8.449219c-6.167969 0-12.359375 1.464844-17.886719 4.214844l-50.480468 25.25c-3.320313 1.664062-7.03125 2.535156-10.734375 2.535156h-40.449219v-16h-104v16h56v56h16v-56h16v128h-16v-56h-16v56h-56v16h104v-16h40.449219c3.703125 0 7.414062.871094 10.734375 2.527344l34.488281 17.25c5.519531 2.757812 11.710937 4.222656 17.878906 4.222656h24.449219v24h64v-24h48c13.230469 0 24-10.769531 24-24 0-6.167969-2.40625-11.742188-6.238281-16 3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16 0-13.230469-10.769531-24-24-24zm8 24c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm-208-280c0-66.167969 53.832031-120 120-120s120 53.832031 120 120-53.832031 120-120 120-120-53.832031-120-120zm104 134.976562c5.257812.617188 10.574219 1.023438 16 1.023438s10.742188-.40625 16-1.023438v17.023438h-32zm-40.449219 185.023438c-3.703125 0-7.414062-.871094-10.734375-2.527344l-34.488281-17.25c-5.519531-2.757812-11.710937-4.222656-17.878906-4.222656h-40.449219v-96h40.449219c6.167969 0 12.359375-1.464844 17.886719-4.214844l50.480468-25.25c3.320313-1.664062 7.03125-2.535156 10.734375-2.535156h84.449219c0 13.230469-10.769531 24-24 24h-48.28125l-23.863281 35.808594c-6.101563 9.160156-14.527344 16.589844-24.367188 21.503906-8.753906 4.375-18.542969 6.6875-28.320312 6.6875h-15.167969v16h15.167969c12.246093 0 24.519531-2.894531 35.472656-8.375 12.328125-6.160156 22.878906-15.480469 30.527344-26.945312l6.832031-10.253907v93.574219zm40.449219 24v-136h17.472656c-.898437 2.511719-1.472656 5.183594-1.472656 8 0 6.167969 2.40625 11.742188 6.238281 16-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16 0 10.414062 6.710938 19.214844 16 22.527344v9.472656zm96-24h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8s-3.59375 8-8 8zm0 0\"></path><path d=\"m394.878906 73.007812-7.757812 13.984376c17.816406 9.878906 28.878906 28.664062 28.878906 49.007812h16c0-26.160156-14.222656-50.296875-37.121094-62.992188zm0 0\"></path><path d=\"m360 80c4.734375 0 9.449219.59375 14.007812 1.769531l3.976563-15.503906c-5.855469-1.496094-11.90625-2.265625-17.984375-2.265625zm0 0\"></path><path d=\"m360 48c48.519531 0 88 39.480469 88 88 0 20.753906-7.398438 40.910156-20.832031 56.785156l12.207031 10.34375c15.882812-18.761718 24.625-42.601562 24.625-67.128906 0-57.34375-46.65625-104-104-104-24.527344 0-48.367188 8.753906-67.128906 24.632812l10.335937 12.199219c15.871094-13.433593 36.039063-20.832031 56.792969-20.832031zm0 0\"></path><path d=\"m427.128906 215.367188-10.335937-12.199219c-15.871094 13.433593-36.039063 20.832031-56.792969 20.832031-48.519531 0-88-39.480469-88-88 0-20.753906 7.398438-40.910156 20.832031-56.785156l-12.207031-10.34375c-15.882812 18.761718-24.625 42.601562-24.625 67.128906 0 57.34375 46.65625 104 104 104 24.527344 0 48.367188-8.753906 67.128906-24.632812zm0 0\"></path><path d=\"m121.214844 165.640625c4.953125-1.375 9.695312-3.34375 14.183594-5.878906l9.769531 4.886719 19.472656-19.480469-4.886719-9.769531c2.535156-4.496094 4.503906-9.230469 5.886719-14.183594l10.359375-3.445313v-27.53125l-10.351562-3.453125c-1.375-4.953125-3.34375-9.707031-5.886719-14.183594l4.886719-9.777343-19.472657-19.472657-9.769531 4.886719c-4.484375-2.535156-9.230469-4.503906-14.183594-5.878906l-3.453125-10.359375h-27.539062l-3.445313 10.359375c-4.953125 1.375-9.695312 3.34375-14.183594 5.878906l-9.777343-4.886719-19.472657 19.472657 4.886719 9.777343c-2.535156 4.488282-4.503906 9.230469-5.886719 14.183594l-10.351562 3.445313v27.53125l10.351562 3.453125c1.375 4.953125 3.34375 9.695312 5.886719 14.183594l-4.886719 9.769531 19.472657 19.480469 9.769531-4.886719c4.484375 2.535156 9.230469 4.503906 14.183594 5.878906l3.453125 10.359375h27.539062zm-12.304688-13.679687-2.679687 8.039062h-4.460938l-2.679687-8.039062-4.554688-.90625c-6.128906-1.222657-11.878906-3.605469-17.109375-7.09375l-3.867187-2.578126-7.574219 3.800782-3.160156-3.167969 3.792969-7.582031-2.578126-3.859375c-3.488281-5.222657-5.871093-10.980469-7.09375-17.109375l-.914062-4.554688-8.03125-2.679687v-4.46875l8.03125-2.671875.914062-4.554688c1.222657-6.136718 3.613282-11.886718 7.09375-17.109375l2.578126-3.859375-3.792969-7.589844 3.160156-3.160156 7.574219 3.800782 3.867187-2.578126c5.222657-3.488281 10.980469-5.863281 17.109375-7.09375l4.554688-.90625 2.679687-8.039062h4.460938l2.679687 8.039062 4.554688.90625c6.128906 1.222657 11.878906 3.605469 17.109375 7.09375l3.867187 2.578126 7.574219-3.800782 3.160156 3.160156-3.792969 7.589844 2.578126 3.859375c3.488281 5.214844 5.871093 10.972657 7.09375 17.109375l.914062 4.554688 8.03125 2.679687v4.46875l-8.03125 2.671875-.914062 4.554688c-1.222657 6.128906-3.613282 11.878906-7.09375 17.109375l-2.578126 3.859375 3.792969 7.582031-3.160156 3.167969-7.574219-3.800782-3.867187 2.578126c-5.222657 3.488281-10.980469 5.863281-17.109375 7.09375zm0 0\"></path><path d=\"m104 72c-17.648438 0-32 14.351562-32 32s14.351562 32 32 32 32-14.351562 32-32-14.351562-32-32-32zm0 48c-8.824219 0-16-7.175781-16-16s7.175781-16 16-16 16 7.175781 16 16-7.175781 16-16 16zm0 0\"></path><path d=\"m160 248v-40h48v-208h-208v208h106.664062zm-144-232h176v176h-48v24l-32-24h-96zm0 0\"></path><path d=\"m0 272h16v16h-16zm0 0\"></path><path d=\"m32 272h16v16h-16zm0 0\"></path><path d=\"m64 272h16v16h-16zm0 0\"></path><path d=\"m32 304h16v16h-16zm0 0\"></path><path d=\"m64 304h16v16h-16zm0 0\"></path><path d=\"m0 480h16v16h-16zm0 0\"></path><path d=\"m32 480h16v16h-16zm0 0\"></path><path d=\"m64 480h16v16h-16zm0 0\"></path><path d=\"m32 448h16v16h-16zm0 0\"></path><path d=\"m64 448h16v16h-16zm0 0\"></path></svg>				\n									<h5>\n							fokus på kvalitet og detaljer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m469.12 408.93-67.26-33.63v-22.13c10.71-7.69 18.6-19.07 21.78-32.27h5.28c8.81 0 15.98-7.17 15.98-15.98v-5.29c0-6.35-3.74-11.84-9.12-14.41 5.19-18.64-1.65-39.76-19.44-59.78-12.58-14.16-30.67-22.27-49.62-22.27-18.93 0-37.01 8.12-49.59 22.27-13.38 15.05-20.95 41.01-14.03 59.62-5.56 2.5-9.45 8.09-9.45 14.57v5.29c0 8.81 7.17 15.98 15.98 15.98h5.55c3.16 13.09 10.94 24.39 21.51 32.08v22.32l-67.26 33.63c-16.7 5.87-27.89 21.6-27.89 39.28v41.63c0 3.31 2.69 6 6 6h243.46c3.31 0 6-2.69 6-6v-41.63c0-17.68-11.19-33.41-27.88-39.28zm-62.24-17.7-15.83 27.66-13.29-13.29 19.29-19.29zm-37.61 5.88-20.59-20.58v-16.91c6.41 2.57 13.4 4.01 20.72 4.01 7.22 0 14.11-1.39 20.45-3.9v16.8zm63.63-97.48v5.29c0 2.16-1.82 3.98-3.98 3.98h-3.74c.01-.36.03-.71.03-1.07v-12.18h3.71c2.15-.01 3.98 1.82 3.98 3.98zm-119.29 8.2v1.07h-3.98c-2.16 0-3.98-1.82-3.98-3.98v-5.29c0-2.16 1.82-3.98 3.98-3.98l3.98.22zm1.95-24.19c-7.33-13.69-.89-37.39 10.53-50.24 10.31-11.6 25.12-18.25 40.63-18.25 15.52 0 30.34 6.65 40.65 18.25 8.43 9.48 21.3 27.59 17.4 46.39-5.66-.35-10.67-2.55-14.4-6.36-5.37-5.49-7.72-14-6.63-23.94.29-2.62-1.17-5.13-3.6-6.17s-5.25-.37-6.95 1.65c-19.33 22.92-45.95 36.76-73.9 38.68h-3.73zm10.05 24.19v-12.73c24.57-2.92 47.92-14.05 66.73-31.8 1.43 7.26 4.63 13.6 9.45 18.52 3.27 3.35 7.14 5.89 11.41 7.58v18.42c0 24.15-19.65 43.8-43.8 43.8s-43.79-19.64-43.79-43.79zm15.89 78.48 19.29 19.29-13.29 13.29-15.84-27.66zm3.22 97.53h-39.42v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.76v-35.63c0-12.68 8.1-23.95 20.15-28.05.26-.09.51-.19.75-.31l46.47-23.23 20.07 35.06c.93 1.62 2.56 2.72 4.41 2.97.27.04.53.05.79.05 1.58 0 3.11-.62 4.24-1.76l.14-.14zm12.08 0 7.41-64.69 5.06-5.06 4.84 4.84 7.86 64.92h-25.17zm128.2 0h-39.76v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.18l-6.2-51.17.25.25c1.13 1.13 2.66 1.76 4.24 1.76.26 0 .53-.02.79-.05 1.85-.25 3.48-1.34 4.41-2.97l20.07-35.06 46.47 23.23c.24.12.49.23.75.31 12.05 4.1 20.15 15.38 20.15 28.05v35.65zm-67.04-346.65h-10.84l28.38 39.84 28.38-39.84h-10.84c-3.31 0-6-2.69-6-6v-64.58h-98.7c-3.31 0-6-2.69-6-6s2.69-6 6-6h104.7c3.31 0 6 2.69 6 6v64.58h16.48c2.25 0 4.3 1.25 5.33 3.25s.86 4.4-.45 6.23l-40.02 56.18c-1.13 1.58-2.95 2.52-4.89 2.52s-3.76-.94-4.89-2.52l-40.02-56.18c-1.3-1.83-1.48-4.23-.45-6.23s3.09-3.25 5.33-3.25h16.48v-23.5h-65.38c-3.31 0-6-2.69-6-6s2.69-6 6-6h71.38c3.31 0 6 2.69 6 6v35.5c.02 3.31-2.67 6-5.98 6zm-118.44 50.65v-133.26c0-21.18-17.23-38.41-38.41-38.41h-207.7c-21.18-.01-38.41 17.23-38.41 38.41v133.26c0 21.18 17.23 38.41 38.41 38.41h105.8l64.8 55.11c1.11.94 2.49 1.43 3.89 1.43.85 0 1.71-.18 2.52-.55 2.12-.98 3.48-3.11 3.48-5.45v-50.54h27.21c21.18 0 38.41-17.23 38.41-38.41zm-71.62 26.41c-3.31 0-6 2.69-6 6v43.56l-56.59-48.13c-1.08-.92-2.46-1.43-3.89-1.43h-108.01c-14.56 0-26.41-11.85-26.41-26.41v-133.26c0-14.56 11.85-26.41 26.41-26.41h207.69c14.56 0 26.41 11.85 26.41 26.41v133.26c0 14.56-11.85 26.41-26.41 26.41zm-156.34-87.87h56.97c3.31 0 6-2.69 6-6v-39.2l8.55-8.55c2.34-2.34 2.34-6.14 0-8.49-2.34-2.34-6.14-2.34-8.48 0l-.7.7c-.98-1.97-3.01-3.32-5.36-3.32h-56.98c-3.31 0-6 2.69-6 6v52.85c0 3.32 2.69 6.01 6 6.01zm6-52.86h44.97v2.69l-18.16 18.16-8.84-8.84c-2.34-2.34-6.14-2.34-8.49 0-2.34 2.34-2.34 6.14 0 8.49l13.08 13.08c1.17 1.17 2.71 1.76 4.24 1.76s3.07-.59 4.24-1.76l13.92-13.92v21.2h-44.96zm173.62 3.08c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 31.92c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 36.52c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.68 5.99 6zm0 31.92c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.69 5.99 6zm-119.36 165.01h10.84l-28.38-39.84-28.38 39.84h10.84c3.31 0 6 2.69 6 6v64.58h98.7c3.31 0 6 2.69 6 6s-2.69 6-6 6h-104.69c-3.31 0-6-2.69-6-6v-64.58h-16.48c-2.25 0-4.3-1.25-5.33-3.25s-.86-4.4.45-6.23l40.02-56.18c1.13-1.58 2.95-2.52 4.89-2.52s3.76.94 4.89 2.52l40.02 56.18c1.3 1.83 1.48 4.23.45 6.23s-3.09 3.25-5.33 3.25h-16.48v23.5h65.38c3.31 0 6 2.69 6 6s-2.69 6-6 6h-71.38c-3.31 0-6-2.69-6-6v-35.5c-.03-3.31 2.66-6 5.97-6z\"></path></svg>				\n									<h5>\n							ærlig<br> rådgivning						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 510 510\"><path d=\"m192.036 385.845c-4.787-46.972-19.459-64.336-30.658-82.352-8.672-13.951-15.5-28.245-15.5-54.252 0-60.242 48.865-109.109 109.135-109.109 60.242 0 109.109 48.866 109.109 109.109 0 26.007-6.828 40.301-15.5 54.252-11.199 18.016-25.871 35.38-30.658 82.352 9.985 2.864 17.345 12.101 17.345 22.975v36.44c0 13.109-10.747 23.866-23.893 23.866h-10.334v9.945c0 12.588-10.341 22.929-22.93 22.929h-46.304c-12.589 0-22.93-10.341-22.93-22.929v-9.945h-10.334c-13.146 0-23.893-10.757-23.893-23.866v-36.44c0-10.874 7.36-20.111 17.345-22.975zm111.948-.917c4.199-42.194 15.78-62.332 26.488-79.049 10.147-15.842 19.65-28.207 19.65-56.638 0-52.513-42.597-95.109-95.109-95.109-52.537 0-95.135 42.596-95.135 95.109 0 28.431 9.503 40.796 19.65 56.638 10.708 16.717 22.289 36.855 26.488 79.049zm2.554-78.61c-1.175 13.701-11.985 24.191-24.783 24.191-13.527 0-24.862-12.086-24.862-26.673v-99.328c0-14.12 11.335-26.673 24.862-26.673 11.309 0 21.031 8.139 23.975 19.497 9.12 3.904 15.688 13.438 15.688 24.78 0 1.153-.068 2.289-.201 3.403 5.078 5.326 8.283 12.802 8.283 21.117 0 6.39-1.889 12.262-5.06 17.053 1.996 4.099 3.13 8.773 3.13 13.76 0 14.1-9.065 25.697-21.032 28.873zm-16.452-109.977c-1.964-2.729-4.916-4.506-8.331-4.506-6.192 0-10.862 6.21-10.862 12.673v99.328c0 6.677 4.67 12.673 10.862 12.673 5.516 0 9.822-4.614 10.717-10.425-4.709-1.416-8.923-4.144-12.279-7.814-2.607-2.852-2.409-7.283.443-9.89 2.851-2.607 7.282-2.408 9.889.443 2.416 2.642 5.72 4.356 9.402 4.356 7.733 0 13.643-7.218 13.643-15.734s-5.91-15.734-13.643-15.734c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7 5.352 0 10.388 1.655 14.658 4.533.593-1.743.915-3.634.915-5.612 0-2.11-.366-4.128-1.036-5.972-.769.858-1.588 1.66-2.453 2.397-2.94 2.507-7.361 2.156-9.869-.784-2.507-2.939-2.155-7.361.784-9.868 2.773-2.365 4.492-6.122 4.492-10.293 0-6.072-3.705-11.374-8.898-12.467-.154-.023-.307-.052-.458-.085-.499-.08-1.01-.121-1.532-.121-2.947 0-5.591 1.389-7.515 3.525-2.585 2.87-7.015 3.101-9.886.515-2.87-2.586-3.101-7.015-.515-9.886 3.111-3.453 7.059-5.988 11.472-7.252zm-104.526 67.344c-3.171-4.791-5.06-10.663-5.06-17.053 0-8.307 3.198-15.777 8.284-21.104-.133-1.118-.202-2.258-.202-3.416 0-11.354 6.582-20.897 15.717-24.792 2.948-11.354 12.67-19.485 23.946-19.485 13.56 0 24.888 12.555 24.888 26.673v99.328c0 14.585-11.328 26.673-24.888 26.673-12.765 0-23.578-10.484-24.757-24.184-11.98-3.166-21.058-14.769-21.058-28.88 0-4.987 1.134-9.661 3.13-13.76zm9.982-23.036c-.675 1.847-1.042 3.869-1.042 5.983 0 1.978.322 3.869.915 5.612 4.27-2.878 9.306-4.533 14.658-4.533 3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7-7.733 0-13.643 7.218-13.643 15.734s5.91 15.734 13.643 15.734c3.682 0 6.986-1.714 9.402-4.356 2.607-2.851 7.038-3.05 9.889-.443 2.852 2.607 3.05 7.038.443 9.89-3.35 3.664-7.556 6.389-12.255 7.807.891 5.813 5.192 10.432 10.693 10.432 6.21 0 10.888-5.993 10.888-12.673v-99.328c0-6.466-4.678-12.673-10.888-12.673-3.404 0-6.349 1.777-8.309 4.507 4.421 1.264 8.367 3.8 11.476 7.251 2.586 2.871 2.355 7.3-.516 9.886-2.87 2.586-7.3 2.355-9.886-.515-1.926-2.138-4.574-3.525-7.54-3.525-.493 0-.976.037-1.448.108-.196.045-.395.082-.596.11-5.165 1.118-8.844 6.404-8.844 12.455 0 1.243.153 2.45.442 3.594.101.284.183.572.246.862.748 2.326 2.071 4.346 3.814 5.823 2.947 2.498 3.311 6.919.813 9.866s-6.919 3.312-9.866.814c-.878-.745-1.71-1.554-2.489-2.422zm3.042 158.279c-5.442 0-9.893 4.451-9.893 9.892v36.44c0 5.423 4.454 9.866 9.893 9.866h17.334c3.866 0 7 3.134 7 7v16.945c0 4.902 4.027 8.929 8.93 8.929h46.304c4.903 0 8.93-4.027 8.93-8.929v-16.945c0-3.866 3.134-7 7-7h17.334c5.439 0 9.893-4.443 9.893-9.866v-36.44c0-5.441-4.451-9.892-9.893-9.892zm63.416-314.093 2.907-5.412c1.828-3.403 6.075-4.683 9.479-2.854 3.403 1.828 4.682 6.075 2.854 9.479l-16.073 29.925c-1.22 2.271-3.589 3.688-6.167 3.688s-4.947-1.417-6.167-3.688l-16.073-29.925c-1.828-3.404-.549-7.651 2.854-9.479 3.404-1.829 7.651-.549 9.479 2.854l2.907 5.412v-69.835c0-3.863 3.137-7 7-7s7 3.137 7 7zm-132.198 54.758-49.381-49.381c-2.732-2.731-2.732-7.167 0-9.899s7.168-2.732 9.9 0l49.38 49.38-1.771-5.881c-1.114-3.7.985-7.608 4.684-8.722 3.7-1.114 7.607.985 8.721 4.685l9.796 32.526c.743 2.468.069 5.145-1.753 6.968-1.823 1.823-4.5 2.496-6.969 1.753l-32.526-9.795c-3.699-1.114-5.798-5.022-4.684-8.721s5.022-5.798 8.721-4.684zm-44.859 122.299h-69.835c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7h69.835l-5.412-2.907c-3.403-1.828-4.682-6.076-2.854-9.479 1.828-3.404 6.075-4.683 9.479-2.855l29.926 16.074c2.271 1.22 3.688 3.589 3.688 6.167 0 2.577-1.417 4.947-3.688 6.166l-29.926 16.074c-3.404 1.828-7.651.549-9.479-2.855-1.828-3.403-.549-7.651 2.854-9.479zm54.758 118.198-49.38 49.38c-2.732 2.732-7.168 2.732-9.9 0s-2.732-7.167 0-9.899l49.381-49.381-5.882 1.772c-3.699 1.114-7.607-.985-8.721-4.685-1.114-3.699.985-7.607 4.684-8.721l32.526-9.795c2.469-.743 5.146-.07 6.969 1.753 1.822 1.823 2.496 4.5 1.753 6.968l-9.796 32.527c-1.114 3.699-5.021 5.798-8.721 4.684-3.699-1.114-5.798-5.022-4.684-8.721zm240.497-240.497 5.882-1.771c3.699-1.114 7.607.985 8.721 4.684s-.985 7.607-4.684 8.721l-32.526 9.795c-2.469.743-5.146.07-6.969-1.753-1.822-1.823-2.496-4.5-1.753-6.968l9.796-32.526c1.114-3.7 5.021-5.799 8.721-4.685 3.699 1.114 5.798 5.022 4.684 8.722l-1.771 5.881 49.38-49.38c2.732-2.732 7.168-2.732 9.9 0s2.732 7.168 0 9.899zm44.859 122.299 5.412 2.906c3.403 1.828 4.682 6.076 2.854 9.479-1.828 3.404-6.075 4.683-9.479 2.855l-29.926-16.074c-2.271-1.219-3.688-3.589-3.688-6.166 0-2.578 1.417-4.947 3.688-6.167l29.926-16.074c3.404-1.828 7.651-.549 9.479 2.855 1.828 3.403.549 7.651-2.854 9.479l-5.412 2.907h69.835c3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7zm-54.758 118.198 1.771 5.882c1.114 3.699-.985 7.607-4.684 8.721-3.7 1.114-7.607-.985-8.721-4.684l-9.796-32.527c-.743-2.468-.069-5.145 1.753-6.968 1.823-1.823 4.5-2.496 6.969-1.753l32.526 9.795c3.699 1.114 5.798 5.022 4.684 8.721-1.114 3.7-5.022 5.799-8.721 4.685l-5.882-1.772 49.381 49.381c2.732 2.732 2.732 7.167 0 9.899s-7.168 2.732-9.9 0z\"></path></svg>				\n									<h5>\n							gennemtænkte løsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"outline\"><path d=\"M486.41,144A28,28,0,0,0,472,92H349.123l5.457-21.828a48.513,48.513,0,0,0-12.848-46.153A41.035,41.035,0,0,0,312.609,12H308a8.009,8.009,0,0,0-8,8V47.413l-19.233,64.112A17.376,17.376,0,0,1,268,123.539V112a4,4,0,0,0-4-4H152a4,4,0,0,0-4,4v72a4,4,0,0,0,8,0V116h72V276H156V248a4,4,0,0,0-8,0v32a4,4,0,0,0,4,4H264a4,4,0,0,0,4-4V268.5h11.168A37.07,37.07,0,0,1,305.092,279a45.025,45.025,0,0,0,31.48,12.752L440,292a27.987,27.987,0,0,0,19.369-48.2,27.987,27.987,0,0,0,16-48A28,28,0,0,0,486.41,144ZM260,276H236V116h24Zm212-88H396a4,4,0,0,0,0,8h60a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h40a20,20,0,0,1,.01,40l-103.428-.25a37.07,37.07,0,0,1-25.924-10.5,45.031,45.031,0,0,0-31.49-12.752H268V131.686a25.317,25.317,0,0,0,20.429-17.862l19.4-64.675A4,4,0,0,0,308,48V20h4.609a33.082,33.082,0,0,1,23.481,9.69,40.507,40.507,0,0,1,10.728,38.541l-6.7,26.8A4,4,0,0,0,344,100H472a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h72a20,20,0,0,1,0,40Z\"></path><path d=\"M194.5,183.243l-1.9-.217a4,4,0,0,0-4.169,2.491L184.29,195.9H135.278l-3.539-9.317a4,4,0,0,0-7.478,2.84l2.459,6.477h-8.474L68.452,156.872a4,4,0,1,0-4.935,6.3L77.6,174.209,56.961,194.48l-6.636-5.491a4,4,0,1,0-5.1,6.163L87.219,229.9a44.1,44.1,0,0,0,28.05,10.1H212a8.009,8.009,0,0,0,8-8V203.9a8.009,8.009,0,0,0-8-8h-8v-2.01A10.708,10.708,0,0,0,194.5,183.243ZM212,203.9V232H115.269a36.081,36.081,0,0,1-22.951-8.264l-29.16-24.128,20.8-20.422L114.4,203.045a4,4,0,0,0,2.468.852H187a4,4,0,0,0,3.715-2.517l3.929-9.843a2.712,2.712,0,0,1,1.356,2.35v6.01a4,4,0,0,0,4,4Z\"></path><path d=\"M223.084,484.672,200.87,469.863V346.36A44.1,44.1,0,0,0,195.327,325l-17.183-30.94a4,4,0,0,0-7,3.884l17.184,30.94a36.073,36.073,0,0,1,4.537,17.478V468H164.333a4,4,0,1,0,0,8h31.321l12,8H152.865V352a4,4,0,0,0-.358-1.655l-25.454-56A4,4,0,0,0,123.411,292H114.2a4,4,0,0,0-3.945,4.658l8.862,53.175a36.016,36.016,0,0,1-1.951,18.949L78.642,468H48.333a4,4,0,1,0,0,8H80.377L92,484H32.088L76.63,361.366a4.017,4.017,0,0,0,.183-2.044L61.1,268H136a4,4,0,0,0,0-8H59.233L30.555,173.966A19.723,19.723,0,0,1,49.27,148H76a12,12,0,0,0,24,0h15.2a21.975,21.975,0,0,1,8.395,1.652l10.889,4.458a4,4,0,1,0,3.032-7.4L126.63,142.25A29.938,29.938,0,0,0,115.2,140H100v-4.527A16.014,16.014,0,0,0,112,120V103.473A16.014,16.014,0,0,0,124,88V80a4,4,0,0,0-4-4H90A22.025,22.025,0,0,0,68,98v18a12.02,12.02,0,0,0,8,11.314V140H49.27a27.723,27.723,0,0,0-26.305,36.5l29.493,88.482,16.29,94.655-46.128,127A4,4,0,0,0,26.38,492h78.485a4,4,0,0,0,2.268-7.3L86.3,470.368l38.318-98.69a44.018,44.018,0,0,0,2.385-23.16L118.921,300h1.914l24.03,52.867V488a4,4,0,0,0,4,4h72a4,4,0,0,0,2.219-7.328ZM76,98A14.015,14.015,0,0,1,90,84h26v4a8.009,8.009,0,0,1-8,8H92a4,4,0,0,0-4,4,11.962,11.962,0,0,1-1.53,5.881A12.044,12.044,0,0,0,76,104.686Zm4,14a3.981,3.981,0,0,1,3.407,1.9,4,4,0,0,0,5.956.975c.207-.171.7-.648.7-.648.032-.028.061-.057.09-.087A19.907,19.907,0,0,0,95.6,104H104v16a8.009,8.009,0,0,1-8,8,12.133,12.133,0,0,1-2.681-.3,4,4,0,1,0-1.775,7.8c.151.035.3.06.456.091V148a4,4,0,1,1-8,0V124a4,4,0,0,0-4-4,4,4,0,0,1,0-8Z\"></path></g></svg>				\n									<h5>\n							arbejde udført med ansvar						\n					</h5>\n				<p>Vi lover ikke mere, end vi kan holde – men vi holder det, vi lover.</p>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 13:21:22', '2026-01-26 13:21:22', '', 10, 'https://mrarif.me/cpnordic/?p=519', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(520, 1, '2026-01-26 13:23:34', '2026-01-26 13:23:34', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>					\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle ANMELDELSER\n					</a>\n					<h2>HVORFOR VÆLGE CP NORDIC ApS?</h2>		<p>Når du vælger CP NORDIC ApS, får du:</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 450 450\" width=\"512\"><g><g><path d=\"m225 165.2c-25.9 0-48.9-18.8-53.3-45.2-2.4-14.2.9-28.6 9.3-40.3 8.4-11.8 20.9-19.5 35.1-21.9 29.4-4.9 57.3 15 62.2 44.5 4.9 29.4-15 57.3-44.4 62.2-3 .5-6 .7-8.9.7zm-7.6-99.8c-12.2 2-22.9 8.7-30.1 18.8s-10.1 22.4-8 34.6c3.8 22.7 23.5 38.8 45.7 38.8 2.5 0 5.1-.2 7.6-.6 25.2-4.2 42.3-28.1 38.1-53.4s-28.1-42.4-53.3-38.2z\"></path><path d=\"m255.2 115c-2.1 0-3.8-1.7-3.8-3.8 0-14.6-11.8-26.4-26.4-26.4-2.1 0-3.8-1.7-3.8-3.8s1.7-3.8 3.8-3.8c18.8 0 34.1 15.3 34.1 34.1 0 2-1.8 3.7-3.9 3.7z\"></path><path d=\"m236.1 203h-22.2c-2.1 0-3.8-1.7-3.8-3.8v-14.1c-3.1-.6-6.1-1.4-9.1-2.4l-7 12.2c-1.1 1.8-3.4 2.5-5.3 1.4l-19.2-11.1c-.9-.5-1.5-1.4-1.8-2.3-.3-1-.1-2 .4-2.9l7-12.1c-2.4-2.1-4.6-4.3-6.7-6.6l-12.1 7c-1.8 1.1-4.2.4-5.2-1.4l-11.1-19.2c-1.1-1.8-.4-4.2 1.4-5.2l11.9-6.8c-1-3-1.9-6.1-2.6-9.3h-13.7c-2.1 0-3.8-1.7-3.8-3.8v-22.2c0-2.1 1.7-3.8 3.8-3.8h13.4c.6-3.2 1.4-6.4 2.4-9.5l-11.5-6.6c-1.8-1.1-2.5-3.4-1.4-5.3l11.1-19.6c.5-.9 1.4-1.5 2.3-1.8s2-.1 2.9.4l11.3 6.6c2.2-2.5 4.5-4.8 7-7l-6.5-11.3c-.5-.9-.6-1.9-.4-2.9.3-1 .9-1.8 1.8-2.3l19.2-11.1c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l6.4 11.2c3.1-1.1 6.4-1.9 9.7-2.6v-13c0-2.1 1.7-3.8 3.8-3.8h22.2c2.1 0 3.8 1.7 3.8 3.8v12.8c3.3.7 6.5 1.5 9.7 2.6l6.5-11.2c.5-.9 1.4-1.5 2.3-1.8 1-.3 2-.1 2.9.4l19.2 11.1c.9.5 1.5 1.3 1.8 2.3s.1 2-.4 2.9l-6.5 11.3c2.5 2.2 4.8 4.5 7 7.1l11.3-6.6c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l11.1 19.2c1.1 1.8.4 4.2-1.4 5.3l-11.5 6.6c1 3.1 1.8 6.3 2.5 9.5h13.6c2.1 0 3.8 1.7 3.8 3.8v22.2c0 2.1-1.7 3.8-3.8 3.8h-13.6c-.6 3.1-1.5 6.2-2.5 9.3l11.9 6.8c1.8 1.1 2.5 3.4 1.4 5.2l-11.2 19.5c-1.1 1.8-3.4 2.5-5.2 1.4l-12-7c-2.1 2.4-4.4 4.6-6.7 6.6l7 12.1c.5.9.6 1.9.4 2.9s-.9 1.8-1.8 2.3l-19.2 11.1c-1.8 1.1-4.2.4-5.2-1.4l-7-12.2c-3 1-6 1.8-9.1 2.4v14.1c-.2 2.3-2 4-4.1 4zm-18.4-7.7h14.5v-13.5c0-1.9 1.4-3.5 3.3-3.8 4.7-.7 9.4-2 13.8-3.7 1.8-.7 3.8 0 4.7 1.7l6.7 11.6 12.6-7.3-6.7-11.6c-1-1.6-.5-3.7.9-4.9 3.7-3 7.2-6.4 10.2-10.1 1.2-1.5 3.3-1.8 4.9-.9l11.5 6.6 7.3-12.6-11.3-6.5c-1.6-.9-2.4-3-1.6-4.7 1.8-4.5 3.1-9.2 3.9-14 .3-1.9 1.9-3.2 3.8-3.2h13v-14.6h-12.8c-1.9 0-3.5-1.4-3.8-3.3-.7-4.8-2-9.6-3.7-14.2-.7-1.8 0-3.7 1.7-4.7l10.9-6.3-7.3-12.6-10.8 6.3c-1.6.9-3.7.6-4.9-.9-3.1-3.9-6.6-7.4-10.4-10.6-1.5-1.2-1.9-3.3-.9-4.9l6.2-10.7-12.6-7.3-6.1 10.6c-1 1.6-3 2.3-4.7 1.7-4.6-1.8-9.5-3.1-14.4-3.9-1.9-.3-3.3-1.9-3.3-3.8v-12.2h-14.5v12.3c0 1.9-1.4 3.5-3.3 3.8-5 .8-9.8 2.1-14.4 3.9-1.8.7-3.8 0-4.7-1.7l-6.1-10.6-12.6 7.3 6.2 10.7c.9 1.6.6 3.7-.9 4.9-3.9 3.1-7.4 6.7-10.4 10.6-1.2 1.5-3.3 1.9-4.9.9l-10.8-6.3-7.3 12.6 10.9 6.3c1.6.9 2.3 2.9 1.7 4.7-1.7 4.6-3 9.4-3.7 14.2-.3 1.9-1.9 3.3-3.8 3.3h-12.8v14.5h13c1.9 0 3.5 1.4 3.8 3.2.8 4.8 2.1 9.5 3.9 14 .7 1.8 0 3.8-1.6 4.7l-11.3 6.5 7.3 12.6 11.5-6.6c1.6-.9 3.7-.6 4.9.9 3 3.7 6.5 7.1 10.3 10.1 1.5 1.2 1.9 3.3.9 4.9l-6.7 11.6 12.6 7.3 6.7-11.6c.9-1.6 2.9-2.3 4.7-1.7 4.5 1.7 9.1 2.9 13.8 3.7 1.9.3 3.3 1.9 3.3 3.8z\"></path></g><g><g><g><path d=\"m45.3 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m153.9 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path></g><g><path d=\"m189.3 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.2c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c0 2.1-1.7 3.8-3.8 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m73.3 326.4c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m126 326.4c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m99.7 325.6c-.6 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4s4.1 1.1 4.4 3.2c2.4 16.5 12.3 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m50.2 266.6c-.1 0-.2 0-.3 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.7 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-8.9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.5 2.2zm81.8-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13.1-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.4-.7 2.3-.7z\"></path></g></g></g><g><g><path d=\"m296.1 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m404.7 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path></g><g><path d=\"m440 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.1c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c.2 2.1-1.6 3.8-3.7 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m324 326.3c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m376.7 326.3c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m350.4 325.6c-.5 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4 2.1-.3 4 1.1 4.4 3.2 2.4 16.5 12.4 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m301 266.6c-.1 0-.2 0-.4 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.6 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.4 2.2zm81.7-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.5-.7 2.3-.7z\"></path></g></g></g></g></g></svg>				\n									<h5>\n							et ungt og engageret team						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"496pt\" viewBox=\"0 0 496 496\" width=\"496pt\"><path d=\"m440 328h-28.207031c5.078125-6.703125 8.207031-14.960938 8.207031-24 0-8.824219-7.175781-16-16-16h-12v-19.960938c59.574219-14.445312 104-68.085937 104-132.039062 0-74.992188-61.007812-136-136-136s-136 61.007812-136 136c0 63.953125 44.425781 117.59375 104 132.039062v19.960938h-8.449219c-6.167969 0-12.359375 1.464844-17.886719 4.214844l-50.480468 25.25c-3.320313 1.664062-7.03125 2.535156-10.734375 2.535156h-40.449219v-16h-104v16h56v56h16v-56h16v128h-16v-56h-16v56h-56v16h104v-16h40.449219c3.703125 0 7.414062.871094 10.734375 2.527344l34.488281 17.25c5.519531 2.757812 11.710937 4.222656 17.878906 4.222656h24.449219v24h64v-24h48c13.230469 0 24-10.769531 24-24 0-6.167969-2.40625-11.742188-6.238281-16 3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16 0-13.230469-10.769531-24-24-24zm8 24c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm-208-280c0-66.167969 53.832031-120 120-120s120 53.832031 120 120-53.832031 120-120 120-120-53.832031-120-120zm104 134.976562c5.257812.617188 10.574219 1.023438 16 1.023438s10.742188-.40625 16-1.023438v17.023438h-32zm-40.449219 185.023438c-3.703125 0-7.414062-.871094-10.734375-2.527344l-34.488281-17.25c-5.519531-2.757812-11.710937-4.222656-17.878906-4.222656h-40.449219v-96h40.449219c6.167969 0 12.359375-1.464844 17.886719-4.214844l50.480468-25.25c3.320313-1.664062 7.03125-2.535156 10.734375-2.535156h84.449219c0 13.230469-10.769531 24-24 24h-48.28125l-23.863281 35.808594c-6.101563 9.160156-14.527344 16.589844-24.367188 21.503906-8.753906 4.375-18.542969 6.6875-28.320312 6.6875h-15.167969v16h15.167969c12.246093 0 24.519531-2.894531 35.472656-8.375 12.328125-6.160156 22.878906-15.480469 30.527344-26.945312l6.832031-10.253907v93.574219zm40.449219 24v-136h17.472656c-.898437 2.511719-1.472656 5.183594-1.472656 8 0 6.167969 2.40625 11.742188 6.238281 16-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16 0 10.414062 6.710938 19.214844 16 22.527344v9.472656zm96-24h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8s-3.59375 8-8 8zm0 0\"></path><path d=\"m394.878906 73.007812-7.757812 13.984376c17.816406 9.878906 28.878906 28.664062 28.878906 49.007812h16c0-26.160156-14.222656-50.296875-37.121094-62.992188zm0 0\"></path><path d=\"m360 80c4.734375 0 9.449219.59375 14.007812 1.769531l3.976563-15.503906c-5.855469-1.496094-11.90625-2.265625-17.984375-2.265625zm0 0\"></path><path d=\"m360 48c48.519531 0 88 39.480469 88 88 0 20.753906-7.398438 40.910156-20.832031 56.785156l12.207031 10.34375c15.882812-18.761718 24.625-42.601562 24.625-67.128906 0-57.34375-46.65625-104-104-104-24.527344 0-48.367188 8.753906-67.128906 24.632812l10.335937 12.199219c15.871094-13.433593 36.039063-20.832031 56.792969-20.832031zm0 0\"></path><path d=\"m427.128906 215.367188-10.335937-12.199219c-15.871094 13.433593-36.039063 20.832031-56.792969 20.832031-48.519531 0-88-39.480469-88-88 0-20.753906 7.398438-40.910156 20.832031-56.785156l-12.207031-10.34375c-15.882812 18.761718-24.625 42.601562-24.625 67.128906 0 57.34375 46.65625 104 104 104 24.527344 0 48.367188-8.753906 67.128906-24.632812zm0 0\"></path><path d=\"m121.214844 165.640625c4.953125-1.375 9.695312-3.34375 14.183594-5.878906l9.769531 4.886719 19.472656-19.480469-4.886719-9.769531c2.535156-4.496094 4.503906-9.230469 5.886719-14.183594l10.359375-3.445313v-27.53125l-10.351562-3.453125c-1.375-4.953125-3.34375-9.707031-5.886719-14.183594l4.886719-9.777343-19.472657-19.472657-9.769531 4.886719c-4.484375-2.535156-9.230469-4.503906-14.183594-5.878906l-3.453125-10.359375h-27.539062l-3.445313 10.359375c-4.953125 1.375-9.695312 3.34375-14.183594 5.878906l-9.777343-4.886719-19.472657 19.472657 4.886719 9.777343c-2.535156 4.488282-4.503906 9.230469-5.886719 14.183594l-10.351562 3.445313v27.53125l10.351562 3.453125c1.375 4.953125 3.34375 9.695312 5.886719 14.183594l-4.886719 9.769531 19.472657 19.480469 9.769531-4.886719c4.484375 2.535156 9.230469 4.503906 14.183594 5.878906l3.453125 10.359375h27.539062zm-12.304688-13.679687-2.679687 8.039062h-4.460938l-2.679687-8.039062-4.554688-.90625c-6.128906-1.222657-11.878906-3.605469-17.109375-7.09375l-3.867187-2.578126-7.574219 3.800782-3.160156-3.167969 3.792969-7.582031-2.578126-3.859375c-3.488281-5.222657-5.871093-10.980469-7.09375-17.109375l-.914062-4.554688-8.03125-2.679687v-4.46875l8.03125-2.671875.914062-4.554688c1.222657-6.136718 3.613282-11.886718 7.09375-17.109375l2.578126-3.859375-3.792969-7.589844 3.160156-3.160156 7.574219 3.800782 3.867187-2.578126c5.222657-3.488281 10.980469-5.863281 17.109375-7.09375l4.554688-.90625 2.679687-8.039062h4.460938l2.679687 8.039062 4.554688.90625c6.128906 1.222657 11.878906 3.605469 17.109375 7.09375l3.867187 2.578126 7.574219-3.800782 3.160156 3.160156-3.792969 7.589844 2.578126 3.859375c3.488281 5.214844 5.871093 10.972657 7.09375 17.109375l.914062 4.554688 8.03125 2.679687v4.46875l-8.03125 2.671875-.914062 4.554688c-1.222657 6.128906-3.613282 11.878906-7.09375 17.109375l-2.578126 3.859375 3.792969 7.582031-3.160156 3.167969-7.574219-3.800782-3.867187 2.578126c-5.222657 3.488281-10.980469 5.863281-17.109375 7.09375zm0 0\"></path><path d=\"m104 72c-17.648438 0-32 14.351562-32 32s14.351562 32 32 32 32-14.351562 32-32-14.351562-32-32-32zm0 48c-8.824219 0-16-7.175781-16-16s7.175781-16 16-16 16 7.175781 16 16-7.175781 16-16 16zm0 0\"></path><path d=\"m160 248v-40h48v-208h-208v208h106.664062zm-144-232h176v176h-48v24l-32-24h-96zm0 0\"></path><path d=\"m0 272h16v16h-16zm0 0\"></path><path d=\"m32 272h16v16h-16zm0 0\"></path><path d=\"m64 272h16v16h-16zm0 0\"></path><path d=\"m32 304h16v16h-16zm0 0\"></path><path d=\"m64 304h16v16h-16zm0 0\"></path><path d=\"m0 480h16v16h-16zm0 0\"></path><path d=\"m32 480h16v16h-16zm0 0\"></path><path d=\"m64 480h16v16h-16zm0 0\"></path><path d=\"m32 448h16v16h-16zm0 0\"></path><path d=\"m64 448h16v16h-16zm0 0\"></path></svg>				\n									<h5>\n							fokus på kvalitet og detaljer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m469.12 408.93-67.26-33.63v-22.13c10.71-7.69 18.6-19.07 21.78-32.27h5.28c8.81 0 15.98-7.17 15.98-15.98v-5.29c0-6.35-3.74-11.84-9.12-14.41 5.19-18.64-1.65-39.76-19.44-59.78-12.58-14.16-30.67-22.27-49.62-22.27-18.93 0-37.01 8.12-49.59 22.27-13.38 15.05-20.95 41.01-14.03 59.62-5.56 2.5-9.45 8.09-9.45 14.57v5.29c0 8.81 7.17 15.98 15.98 15.98h5.55c3.16 13.09 10.94 24.39 21.51 32.08v22.32l-67.26 33.63c-16.7 5.87-27.89 21.6-27.89 39.28v41.63c0 3.31 2.69 6 6 6h243.46c3.31 0 6-2.69 6-6v-41.63c0-17.68-11.19-33.41-27.88-39.28zm-62.24-17.7-15.83 27.66-13.29-13.29 19.29-19.29zm-37.61 5.88-20.59-20.58v-16.91c6.41 2.57 13.4 4.01 20.72 4.01 7.22 0 14.11-1.39 20.45-3.9v16.8zm63.63-97.48v5.29c0 2.16-1.82 3.98-3.98 3.98h-3.74c.01-.36.03-.71.03-1.07v-12.18h3.71c2.15-.01 3.98 1.82 3.98 3.98zm-119.29 8.2v1.07h-3.98c-2.16 0-3.98-1.82-3.98-3.98v-5.29c0-2.16 1.82-3.98 3.98-3.98l3.98.22zm1.95-24.19c-7.33-13.69-.89-37.39 10.53-50.24 10.31-11.6 25.12-18.25 40.63-18.25 15.52 0 30.34 6.65 40.65 18.25 8.43 9.48 21.3 27.59 17.4 46.39-5.66-.35-10.67-2.55-14.4-6.36-5.37-5.49-7.72-14-6.63-23.94.29-2.62-1.17-5.13-3.6-6.17s-5.25-.37-6.95 1.65c-19.33 22.92-45.95 36.76-73.9 38.68h-3.73zm10.05 24.19v-12.73c24.57-2.92 47.92-14.05 66.73-31.8 1.43 7.26 4.63 13.6 9.45 18.52 3.27 3.35 7.14 5.89 11.41 7.58v18.42c0 24.15-19.65 43.8-43.8 43.8s-43.79-19.64-43.79-43.79zm15.89 78.48 19.29 19.29-13.29 13.29-15.84-27.66zm3.22 97.53h-39.42v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.76v-35.63c0-12.68 8.1-23.95 20.15-28.05.26-.09.51-.19.75-.31l46.47-23.23 20.07 35.06c.93 1.62 2.56 2.72 4.41 2.97.27.04.53.05.79.05 1.58 0 3.11-.62 4.24-1.76l.14-.14zm12.08 0 7.41-64.69 5.06-5.06 4.84 4.84 7.86 64.92h-25.17zm128.2 0h-39.76v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.18l-6.2-51.17.25.25c1.13 1.13 2.66 1.76 4.24 1.76.26 0 .53-.02.79-.05 1.85-.25 3.48-1.34 4.41-2.97l20.07-35.06 46.47 23.23c.24.12.49.23.75.31 12.05 4.1 20.15 15.38 20.15 28.05v35.65zm-67.04-346.65h-10.84l28.38 39.84 28.38-39.84h-10.84c-3.31 0-6-2.69-6-6v-64.58h-98.7c-3.31 0-6-2.69-6-6s2.69-6 6-6h104.7c3.31 0 6 2.69 6 6v64.58h16.48c2.25 0 4.3 1.25 5.33 3.25s.86 4.4-.45 6.23l-40.02 56.18c-1.13 1.58-2.95 2.52-4.89 2.52s-3.76-.94-4.89-2.52l-40.02-56.18c-1.3-1.83-1.48-4.23-.45-6.23s3.09-3.25 5.33-3.25h16.48v-23.5h-65.38c-3.31 0-6-2.69-6-6s2.69-6 6-6h71.38c3.31 0 6 2.69 6 6v35.5c.02 3.31-2.67 6-5.98 6zm-118.44 50.65v-133.26c0-21.18-17.23-38.41-38.41-38.41h-207.7c-21.18-.01-38.41 17.23-38.41 38.41v133.26c0 21.18 17.23 38.41 38.41 38.41h105.8l64.8 55.11c1.11.94 2.49 1.43 3.89 1.43.85 0 1.71-.18 2.52-.55 2.12-.98 3.48-3.11 3.48-5.45v-50.54h27.21c21.18 0 38.41-17.23 38.41-38.41zm-71.62 26.41c-3.31 0-6 2.69-6 6v43.56l-56.59-48.13c-1.08-.92-2.46-1.43-3.89-1.43h-108.01c-14.56 0-26.41-11.85-26.41-26.41v-133.26c0-14.56 11.85-26.41 26.41-26.41h207.69c14.56 0 26.41 11.85 26.41 26.41v133.26c0 14.56-11.85 26.41-26.41 26.41zm-156.34-87.87h56.97c3.31 0 6-2.69 6-6v-39.2l8.55-8.55c2.34-2.34 2.34-6.14 0-8.49-2.34-2.34-6.14-2.34-8.48 0l-.7.7c-.98-1.97-3.01-3.32-5.36-3.32h-56.98c-3.31 0-6 2.69-6 6v52.85c0 3.32 2.69 6.01 6 6.01zm6-52.86h44.97v2.69l-18.16 18.16-8.84-8.84c-2.34-2.34-6.14-2.34-8.49 0-2.34 2.34-2.34 6.14 0 8.49l13.08 13.08c1.17 1.17 2.71 1.76 4.24 1.76s3.07-.59 4.24-1.76l13.92-13.92v21.2h-44.96zm173.62 3.08c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 31.92c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 36.52c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.68 5.99 6zm0 31.92c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.69 5.99 6zm-119.36 165.01h10.84l-28.38-39.84-28.38 39.84h10.84c3.31 0 6 2.69 6 6v64.58h98.7c3.31 0 6 2.69 6 6s-2.69 6-6 6h-104.69c-3.31 0-6-2.69-6-6v-64.58h-16.48c-2.25 0-4.3-1.25-5.33-3.25s-.86-4.4.45-6.23l40.02-56.18c1.13-1.58 2.95-2.52 4.89-2.52s3.76.94 4.89 2.52l40.02 56.18c1.3 1.83 1.48 4.23.45 6.23s-3.09 3.25-5.33 3.25h-16.48v23.5h65.38c3.31 0 6 2.69 6 6s-2.69 6-6 6h-71.38c-3.31 0-6-2.69-6-6v-35.5c-.03-3.31 2.66-6 5.97-6z\"></path></svg>				\n									<h5>\n							ærlig<br> rådgivning						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 510 510\"><path d=\"m192.036 385.845c-4.787-46.972-19.459-64.336-30.658-82.352-8.672-13.951-15.5-28.245-15.5-54.252 0-60.242 48.865-109.109 109.135-109.109 60.242 0 109.109 48.866 109.109 109.109 0 26.007-6.828 40.301-15.5 54.252-11.199 18.016-25.871 35.38-30.658 82.352 9.985 2.864 17.345 12.101 17.345 22.975v36.44c0 13.109-10.747 23.866-23.893 23.866h-10.334v9.945c0 12.588-10.341 22.929-22.93 22.929h-46.304c-12.589 0-22.93-10.341-22.93-22.929v-9.945h-10.334c-13.146 0-23.893-10.757-23.893-23.866v-36.44c0-10.874 7.36-20.111 17.345-22.975zm111.948-.917c4.199-42.194 15.78-62.332 26.488-79.049 10.147-15.842 19.65-28.207 19.65-56.638 0-52.513-42.597-95.109-95.109-95.109-52.537 0-95.135 42.596-95.135 95.109 0 28.431 9.503 40.796 19.65 56.638 10.708 16.717 22.289 36.855 26.488 79.049zm2.554-78.61c-1.175 13.701-11.985 24.191-24.783 24.191-13.527 0-24.862-12.086-24.862-26.673v-99.328c0-14.12 11.335-26.673 24.862-26.673 11.309 0 21.031 8.139 23.975 19.497 9.12 3.904 15.688 13.438 15.688 24.78 0 1.153-.068 2.289-.201 3.403 5.078 5.326 8.283 12.802 8.283 21.117 0 6.39-1.889 12.262-5.06 17.053 1.996 4.099 3.13 8.773 3.13 13.76 0 14.1-9.065 25.697-21.032 28.873zm-16.452-109.977c-1.964-2.729-4.916-4.506-8.331-4.506-6.192 0-10.862 6.21-10.862 12.673v99.328c0 6.677 4.67 12.673 10.862 12.673 5.516 0 9.822-4.614 10.717-10.425-4.709-1.416-8.923-4.144-12.279-7.814-2.607-2.852-2.409-7.283.443-9.89 2.851-2.607 7.282-2.408 9.889.443 2.416 2.642 5.72 4.356 9.402 4.356 7.733 0 13.643-7.218 13.643-15.734s-5.91-15.734-13.643-15.734c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7 5.352 0 10.388 1.655 14.658 4.533.593-1.743.915-3.634.915-5.612 0-2.11-.366-4.128-1.036-5.972-.769.858-1.588 1.66-2.453 2.397-2.94 2.507-7.361 2.156-9.869-.784-2.507-2.939-2.155-7.361.784-9.868 2.773-2.365 4.492-6.122 4.492-10.293 0-6.072-3.705-11.374-8.898-12.467-.154-.023-.307-.052-.458-.085-.499-.08-1.01-.121-1.532-.121-2.947 0-5.591 1.389-7.515 3.525-2.585 2.87-7.015 3.101-9.886.515-2.87-2.586-3.101-7.015-.515-9.886 3.111-3.453 7.059-5.988 11.472-7.252zm-104.526 67.344c-3.171-4.791-5.06-10.663-5.06-17.053 0-8.307 3.198-15.777 8.284-21.104-.133-1.118-.202-2.258-.202-3.416 0-11.354 6.582-20.897 15.717-24.792 2.948-11.354 12.67-19.485 23.946-19.485 13.56 0 24.888 12.555 24.888 26.673v99.328c0 14.585-11.328 26.673-24.888 26.673-12.765 0-23.578-10.484-24.757-24.184-11.98-3.166-21.058-14.769-21.058-28.88 0-4.987 1.134-9.661 3.13-13.76zm9.982-23.036c-.675 1.847-1.042 3.869-1.042 5.983 0 1.978.322 3.869.915 5.612 4.27-2.878 9.306-4.533 14.658-4.533 3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7-7.733 0-13.643 7.218-13.643 15.734s5.91 15.734 13.643 15.734c3.682 0 6.986-1.714 9.402-4.356 2.607-2.851 7.038-3.05 9.889-.443 2.852 2.607 3.05 7.038.443 9.89-3.35 3.664-7.556 6.389-12.255 7.807.891 5.813 5.192 10.432 10.693 10.432 6.21 0 10.888-5.993 10.888-12.673v-99.328c0-6.466-4.678-12.673-10.888-12.673-3.404 0-6.349 1.777-8.309 4.507 4.421 1.264 8.367 3.8 11.476 7.251 2.586 2.871 2.355 7.3-.516 9.886-2.87 2.586-7.3 2.355-9.886-.515-1.926-2.138-4.574-3.525-7.54-3.525-.493 0-.976.037-1.448.108-.196.045-.395.082-.596.11-5.165 1.118-8.844 6.404-8.844 12.455 0 1.243.153 2.45.442 3.594.101.284.183.572.246.862.748 2.326 2.071 4.346 3.814 5.823 2.947 2.498 3.311 6.919.813 9.866s-6.919 3.312-9.866.814c-.878-.745-1.71-1.554-2.489-2.422zm3.042 158.279c-5.442 0-9.893 4.451-9.893 9.892v36.44c0 5.423 4.454 9.866 9.893 9.866h17.334c3.866 0 7 3.134 7 7v16.945c0 4.902 4.027 8.929 8.93 8.929h46.304c4.903 0 8.93-4.027 8.93-8.929v-16.945c0-3.866 3.134-7 7-7h17.334c5.439 0 9.893-4.443 9.893-9.866v-36.44c0-5.441-4.451-9.892-9.893-9.892zm63.416-314.093 2.907-5.412c1.828-3.403 6.075-4.683 9.479-2.854 3.403 1.828 4.682 6.075 2.854 9.479l-16.073 29.925c-1.22 2.271-3.589 3.688-6.167 3.688s-4.947-1.417-6.167-3.688l-16.073-29.925c-1.828-3.404-.549-7.651 2.854-9.479 3.404-1.829 7.651-.549 9.479 2.854l2.907 5.412v-69.835c0-3.863 3.137-7 7-7s7 3.137 7 7zm-132.198 54.758-49.381-49.381c-2.732-2.731-2.732-7.167 0-9.899s7.168-2.732 9.9 0l49.38 49.38-1.771-5.881c-1.114-3.7.985-7.608 4.684-8.722 3.7-1.114 7.607.985 8.721 4.685l9.796 32.526c.743 2.468.069 5.145-1.753 6.968-1.823 1.823-4.5 2.496-6.969 1.753l-32.526-9.795c-3.699-1.114-5.798-5.022-4.684-8.721s5.022-5.798 8.721-4.684zm-44.859 122.299h-69.835c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7h69.835l-5.412-2.907c-3.403-1.828-4.682-6.076-2.854-9.479 1.828-3.404 6.075-4.683 9.479-2.855l29.926 16.074c2.271 1.22 3.688 3.589 3.688 6.167 0 2.577-1.417 4.947-3.688 6.166l-29.926 16.074c-3.404 1.828-7.651.549-9.479-2.855-1.828-3.403-.549-7.651 2.854-9.479zm54.758 118.198-49.38 49.38c-2.732 2.732-7.168 2.732-9.9 0s-2.732-7.167 0-9.899l49.381-49.381-5.882 1.772c-3.699 1.114-7.607-.985-8.721-4.685-1.114-3.699.985-7.607 4.684-8.721l32.526-9.795c2.469-.743 5.146-.07 6.969 1.753 1.822 1.823 2.496 4.5 1.753 6.968l-9.796 32.527c-1.114 3.699-5.021 5.798-8.721 4.684-3.699-1.114-5.798-5.022-4.684-8.721zm240.497-240.497 5.882-1.771c3.699-1.114 7.607.985 8.721 4.684s-.985 7.607-4.684 8.721l-32.526 9.795c-2.469.743-5.146.07-6.969-1.753-1.822-1.823-2.496-4.5-1.753-6.968l9.796-32.526c1.114-3.7 5.021-5.799 8.721-4.685 3.699 1.114 5.798 5.022 4.684 8.722l-1.771 5.881 49.38-49.38c2.732-2.732 7.168-2.732 9.9 0s2.732 7.168 0 9.899zm44.859 122.299 5.412 2.906c3.403 1.828 4.682 6.076 2.854 9.479-1.828 3.404-6.075 4.683-9.479 2.855l-29.926-16.074c-2.271-1.219-3.688-3.589-3.688-6.166 0-2.578 1.417-4.947 3.688-6.167l29.926-16.074c3.404-1.828 7.651-.549 9.479 2.855 1.828 3.403.549 7.651-2.854 9.479l-5.412 2.907h69.835c3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7zm-54.758 118.198 1.771 5.882c1.114 3.699-.985 7.607-4.684 8.721-3.7 1.114-7.607-.985-8.721-4.684l-9.796-32.527c-.743-2.468-.069-5.145 1.753-6.968 1.823-1.823 4.5-2.496 6.969-1.753l32.526 9.795c3.699 1.114 5.798 5.022 4.684 8.721-1.114 3.7-5.022 5.799-8.721 4.685l-5.882-1.772 49.381 49.381c2.732 2.732 2.732 7.167 0 9.899s-7.168 2.732-9.9 0z\"></path></svg>				\n									<h5>\n							gennemtænkte løsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"outline\"><path d=\"M486.41,144A28,28,0,0,0,472,92H349.123l5.457-21.828a48.513,48.513,0,0,0-12.848-46.153A41.035,41.035,0,0,0,312.609,12H308a8.009,8.009,0,0,0-8,8V47.413l-19.233,64.112A17.376,17.376,0,0,1,268,123.539V112a4,4,0,0,0-4-4H152a4,4,0,0,0-4,4v72a4,4,0,0,0,8,0V116h72V276H156V248a4,4,0,0,0-8,0v32a4,4,0,0,0,4,4H264a4,4,0,0,0,4-4V268.5h11.168A37.07,37.07,0,0,1,305.092,279a45.025,45.025,0,0,0,31.48,12.752L440,292a27.987,27.987,0,0,0,19.369-48.2,27.987,27.987,0,0,0,16-48A28,28,0,0,0,486.41,144ZM260,276H236V116h24Zm212-88H396a4,4,0,0,0,0,8h60a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h40a20,20,0,0,1,.01,40l-103.428-.25a37.07,37.07,0,0,1-25.924-10.5,45.031,45.031,0,0,0-31.49-12.752H268V131.686a25.317,25.317,0,0,0,20.429-17.862l19.4-64.675A4,4,0,0,0,308,48V20h4.609a33.082,33.082,0,0,1,23.481,9.69,40.507,40.507,0,0,1,10.728,38.541l-6.7,26.8A4,4,0,0,0,344,100H472a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h72a20,20,0,0,1,0,40Z\"></path><path d=\"M194.5,183.243l-1.9-.217a4,4,0,0,0-4.169,2.491L184.29,195.9H135.278l-3.539-9.317a4,4,0,0,0-7.478,2.84l2.459,6.477h-8.474L68.452,156.872a4,4,0,1,0-4.935,6.3L77.6,174.209,56.961,194.48l-6.636-5.491a4,4,0,1,0-5.1,6.163L87.219,229.9a44.1,44.1,0,0,0,28.05,10.1H212a8.009,8.009,0,0,0,8-8V203.9a8.009,8.009,0,0,0-8-8h-8v-2.01A10.708,10.708,0,0,0,194.5,183.243ZM212,203.9V232H115.269a36.081,36.081,0,0,1-22.951-8.264l-29.16-24.128,20.8-20.422L114.4,203.045a4,4,0,0,0,2.468.852H187a4,4,0,0,0,3.715-2.517l3.929-9.843a2.712,2.712,0,0,1,1.356,2.35v6.01a4,4,0,0,0,4,4Z\"></path><path d=\"M223.084,484.672,200.87,469.863V346.36A44.1,44.1,0,0,0,195.327,325l-17.183-30.94a4,4,0,0,0-7,3.884l17.184,30.94a36.073,36.073,0,0,1,4.537,17.478V468H164.333a4,4,0,1,0,0,8h31.321l12,8H152.865V352a4,4,0,0,0-.358-1.655l-25.454-56A4,4,0,0,0,123.411,292H114.2a4,4,0,0,0-3.945,4.658l8.862,53.175a36.016,36.016,0,0,1-1.951,18.949L78.642,468H48.333a4,4,0,1,0,0,8H80.377L92,484H32.088L76.63,361.366a4.017,4.017,0,0,0,.183-2.044L61.1,268H136a4,4,0,0,0,0-8H59.233L30.555,173.966A19.723,19.723,0,0,1,49.27,148H76a12,12,0,0,0,24,0h15.2a21.975,21.975,0,0,1,8.395,1.652l10.889,4.458a4,4,0,1,0,3.032-7.4L126.63,142.25A29.938,29.938,0,0,0,115.2,140H100v-4.527A16.014,16.014,0,0,0,112,120V103.473A16.014,16.014,0,0,0,124,88V80a4,4,0,0,0-4-4H90A22.025,22.025,0,0,0,68,98v18a12.02,12.02,0,0,0,8,11.314V140H49.27a27.723,27.723,0,0,0-26.305,36.5l29.493,88.482,16.29,94.655-46.128,127A4,4,0,0,0,26.38,492h78.485a4,4,0,0,0,2.268-7.3L86.3,470.368l38.318-98.69a44.018,44.018,0,0,0,2.385-23.16L118.921,300h1.914l24.03,52.867V488a4,4,0,0,0,4,4h72a4,4,0,0,0,2.219-7.328ZM76,98A14.015,14.015,0,0,1,90,84h26v4a8.009,8.009,0,0,1-8,8H92a4,4,0,0,0-4,4,11.962,11.962,0,0,1-1.53,5.881A12.044,12.044,0,0,0,76,104.686Zm4,14a3.981,3.981,0,0,1,3.407,1.9,4,4,0,0,0,5.956.975c.207-.171.7-.648.7-.648.032-.028.061-.057.09-.087A19.907,19.907,0,0,0,95.6,104H104v16a8.009,8.009,0,0,1-8,8,12.133,12.133,0,0,1-2.681-.3,4,4,0,1,0-1.775,7.8c.151.035.3.06.456.091V148a4,4,0,1,1-8,0V124a4,4,0,0,0-4-4,4,4,0,0,1,0-8Z\"></path></g></svg>				\n									<h5>\n							arbejde udført med ansvar						\n					</h5>\n				<p>Vi lover ikke mere, end vi kan holde – men vi holder det, vi lover.</p>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 13:23:34', '2026-01-26 13:23:34', '', 10, 'https://mrarif.me/cpnordic/?p=520', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(521, 1, '2026-01-26 13:23:34', '2026-01-26 13:23:34', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>					\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle ANMELDELSER\n					</a>\n					<h2>HVORFOR VÆLGE CP NORDIC ApS?</h2>		<p>Når du vælger CP NORDIC ApS, får du:</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 450 450\" width=\"512\"><g><g><path d=\"m225 165.2c-25.9 0-48.9-18.8-53.3-45.2-2.4-14.2.9-28.6 9.3-40.3 8.4-11.8 20.9-19.5 35.1-21.9 29.4-4.9 57.3 15 62.2 44.5 4.9 29.4-15 57.3-44.4 62.2-3 .5-6 .7-8.9.7zm-7.6-99.8c-12.2 2-22.9 8.7-30.1 18.8s-10.1 22.4-8 34.6c3.8 22.7 23.5 38.8 45.7 38.8 2.5 0 5.1-.2 7.6-.6 25.2-4.2 42.3-28.1 38.1-53.4s-28.1-42.4-53.3-38.2z\"></path><path d=\"m255.2 115c-2.1 0-3.8-1.7-3.8-3.8 0-14.6-11.8-26.4-26.4-26.4-2.1 0-3.8-1.7-3.8-3.8s1.7-3.8 3.8-3.8c18.8 0 34.1 15.3 34.1 34.1 0 2-1.8 3.7-3.9 3.7z\"></path><path d=\"m236.1 203h-22.2c-2.1 0-3.8-1.7-3.8-3.8v-14.1c-3.1-.6-6.1-1.4-9.1-2.4l-7 12.2c-1.1 1.8-3.4 2.5-5.3 1.4l-19.2-11.1c-.9-.5-1.5-1.4-1.8-2.3-.3-1-.1-2 .4-2.9l7-12.1c-2.4-2.1-4.6-4.3-6.7-6.6l-12.1 7c-1.8 1.1-4.2.4-5.2-1.4l-11.1-19.2c-1.1-1.8-.4-4.2 1.4-5.2l11.9-6.8c-1-3-1.9-6.1-2.6-9.3h-13.7c-2.1 0-3.8-1.7-3.8-3.8v-22.2c0-2.1 1.7-3.8 3.8-3.8h13.4c.6-3.2 1.4-6.4 2.4-9.5l-11.5-6.6c-1.8-1.1-2.5-3.4-1.4-5.3l11.1-19.6c.5-.9 1.4-1.5 2.3-1.8s2-.1 2.9.4l11.3 6.6c2.2-2.5 4.5-4.8 7-7l-6.5-11.3c-.5-.9-.6-1.9-.4-2.9.3-1 .9-1.8 1.8-2.3l19.2-11.1c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l6.4 11.2c3.1-1.1 6.4-1.9 9.7-2.6v-13c0-2.1 1.7-3.8 3.8-3.8h22.2c2.1 0 3.8 1.7 3.8 3.8v12.8c3.3.7 6.5 1.5 9.7 2.6l6.5-11.2c.5-.9 1.4-1.5 2.3-1.8 1-.3 2-.1 2.9.4l19.2 11.1c.9.5 1.5 1.3 1.8 2.3s.1 2-.4 2.9l-6.5 11.3c2.5 2.2 4.8 4.5 7 7.1l11.3-6.6c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l11.1 19.2c1.1 1.8.4 4.2-1.4 5.3l-11.5 6.6c1 3.1 1.8 6.3 2.5 9.5h13.6c2.1 0 3.8 1.7 3.8 3.8v22.2c0 2.1-1.7 3.8-3.8 3.8h-13.6c-.6 3.1-1.5 6.2-2.5 9.3l11.9 6.8c1.8 1.1 2.5 3.4 1.4 5.2l-11.2 19.5c-1.1 1.8-3.4 2.5-5.2 1.4l-12-7c-2.1 2.4-4.4 4.6-6.7 6.6l7 12.1c.5.9.6 1.9.4 2.9s-.9 1.8-1.8 2.3l-19.2 11.1c-1.8 1.1-4.2.4-5.2-1.4l-7-12.2c-3 1-6 1.8-9.1 2.4v14.1c-.2 2.3-2 4-4.1 4zm-18.4-7.7h14.5v-13.5c0-1.9 1.4-3.5 3.3-3.8 4.7-.7 9.4-2 13.8-3.7 1.8-.7 3.8 0 4.7 1.7l6.7 11.6 12.6-7.3-6.7-11.6c-1-1.6-.5-3.7.9-4.9 3.7-3 7.2-6.4 10.2-10.1 1.2-1.5 3.3-1.8 4.9-.9l11.5 6.6 7.3-12.6-11.3-6.5c-1.6-.9-2.4-3-1.6-4.7 1.8-4.5 3.1-9.2 3.9-14 .3-1.9 1.9-3.2 3.8-3.2h13v-14.6h-12.8c-1.9 0-3.5-1.4-3.8-3.3-.7-4.8-2-9.6-3.7-14.2-.7-1.8 0-3.7 1.7-4.7l10.9-6.3-7.3-12.6-10.8 6.3c-1.6.9-3.7.6-4.9-.9-3.1-3.9-6.6-7.4-10.4-10.6-1.5-1.2-1.9-3.3-.9-4.9l6.2-10.7-12.6-7.3-6.1 10.6c-1 1.6-3 2.3-4.7 1.7-4.6-1.8-9.5-3.1-14.4-3.9-1.9-.3-3.3-1.9-3.3-3.8v-12.2h-14.5v12.3c0 1.9-1.4 3.5-3.3 3.8-5 .8-9.8 2.1-14.4 3.9-1.8.7-3.8 0-4.7-1.7l-6.1-10.6-12.6 7.3 6.2 10.7c.9 1.6.6 3.7-.9 4.9-3.9 3.1-7.4 6.7-10.4 10.6-1.2 1.5-3.3 1.9-4.9.9l-10.8-6.3-7.3 12.6 10.9 6.3c1.6.9 2.3 2.9 1.7 4.7-1.7 4.6-3 9.4-3.7 14.2-.3 1.9-1.9 3.3-3.8 3.3h-12.8v14.5h13c1.9 0 3.5 1.4 3.8 3.2.8 4.8 2.1 9.5 3.9 14 .7 1.8 0 3.8-1.6 4.7l-11.3 6.5 7.3 12.6 11.5-6.6c1.6-.9 3.7-.6 4.9.9 3 3.7 6.5 7.1 10.3 10.1 1.5 1.2 1.9 3.3.9 4.9l-6.7 11.6 12.6 7.3 6.7-11.6c.9-1.6 2.9-2.3 4.7-1.7 4.5 1.7 9.1 2.9 13.8 3.7 1.9.3 3.3 1.9 3.3 3.8z\"></path></g><g><g><g><path d=\"m45.3 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m153.9 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path></g><g><path d=\"m189.3 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.2c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c0 2.1-1.7 3.8-3.8 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m73.3 326.4c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m126 326.4c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m99.7 325.6c-.6 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4s4.1 1.1 4.4 3.2c2.4 16.5 12.3 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m50.2 266.6c-.1 0-.2 0-.3 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.7 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-8.9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.5 2.2zm81.8-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13.1-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.4-.7 2.3-.7z\"></path></g></g></g><g><g><path d=\"m296.1 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m404.7 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path></g><g><path d=\"m440 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.1c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c.2 2.1-1.6 3.8-3.7 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m324 326.3c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m376.7 326.3c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m350.4 325.6c-.5 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4 2.1-.3 4 1.1 4.4 3.2 2.4 16.5 12.4 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m301 266.6c-.1 0-.2 0-.4 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.6 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.4 2.2zm81.7-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.5-.7 2.3-.7z\"></path></g></g></g></g></g></svg>				\n									<h5>\n							et ungt og engageret team						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"496pt\" viewBox=\"0 0 496 496\" width=\"496pt\"><path d=\"m440 328h-28.207031c5.078125-6.703125 8.207031-14.960938 8.207031-24 0-8.824219-7.175781-16-16-16h-12v-19.960938c59.574219-14.445312 104-68.085937 104-132.039062 0-74.992188-61.007812-136-136-136s-136 61.007812-136 136c0 63.953125 44.425781 117.59375 104 132.039062v19.960938h-8.449219c-6.167969 0-12.359375 1.464844-17.886719 4.214844l-50.480468 25.25c-3.320313 1.664062-7.03125 2.535156-10.734375 2.535156h-40.449219v-16h-104v16h56v56h16v-56h16v128h-16v-56h-16v56h-56v16h104v-16h40.449219c3.703125 0 7.414062.871094 10.734375 2.527344l34.488281 17.25c5.519531 2.757812 11.710937 4.222656 17.878906 4.222656h24.449219v24h64v-24h48c13.230469 0 24-10.769531 24-24 0-6.167969-2.40625-11.742188-6.238281-16 3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16 0-13.230469-10.769531-24-24-24zm8 24c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm-208-280c0-66.167969 53.832031-120 120-120s120 53.832031 120 120-53.832031 120-120 120-120-53.832031-120-120zm104 134.976562c5.257812.617188 10.574219 1.023438 16 1.023438s10.742188-.40625 16-1.023438v17.023438h-32zm-40.449219 185.023438c-3.703125 0-7.414062-.871094-10.734375-2.527344l-34.488281-17.25c-5.519531-2.757812-11.710937-4.222656-17.878906-4.222656h-40.449219v-96h40.449219c6.167969 0 12.359375-1.464844 17.886719-4.214844l50.480468-25.25c3.320313-1.664062 7.03125-2.535156 10.734375-2.535156h84.449219c0 13.230469-10.769531 24-24 24h-48.28125l-23.863281 35.808594c-6.101563 9.160156-14.527344 16.589844-24.367188 21.503906-8.753906 4.375-18.542969 6.6875-28.320312 6.6875h-15.167969v16h15.167969c12.246093 0 24.519531-2.894531 35.472656-8.375 12.328125-6.160156 22.878906-15.480469 30.527344-26.945312l6.832031-10.253907v93.574219zm40.449219 24v-136h17.472656c-.898437 2.511719-1.472656 5.183594-1.472656 8 0 6.167969 2.40625 11.742188 6.238281 16-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16 0 10.414062 6.710938 19.214844 16 22.527344v9.472656zm96-24h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8s-3.59375 8-8 8zm0 0\"></path><path d=\"m394.878906 73.007812-7.757812 13.984376c17.816406 9.878906 28.878906 28.664062 28.878906 49.007812h16c0-26.160156-14.222656-50.296875-37.121094-62.992188zm0 0\"></path><path d=\"m360 80c4.734375 0 9.449219.59375 14.007812 1.769531l3.976563-15.503906c-5.855469-1.496094-11.90625-2.265625-17.984375-2.265625zm0 0\"></path><path d=\"m360 48c48.519531 0 88 39.480469 88 88 0 20.753906-7.398438 40.910156-20.832031 56.785156l12.207031 10.34375c15.882812-18.761718 24.625-42.601562 24.625-67.128906 0-57.34375-46.65625-104-104-104-24.527344 0-48.367188 8.753906-67.128906 24.632812l10.335937 12.199219c15.871094-13.433593 36.039063-20.832031 56.792969-20.832031zm0 0\"></path><path d=\"m427.128906 215.367188-10.335937-12.199219c-15.871094 13.433593-36.039063 20.832031-56.792969 20.832031-48.519531 0-88-39.480469-88-88 0-20.753906 7.398438-40.910156 20.832031-56.785156l-12.207031-10.34375c-15.882812 18.761718-24.625 42.601562-24.625 67.128906 0 57.34375 46.65625 104 104 104 24.527344 0 48.367188-8.753906 67.128906-24.632812zm0 0\"></path><path d=\"m121.214844 165.640625c4.953125-1.375 9.695312-3.34375 14.183594-5.878906l9.769531 4.886719 19.472656-19.480469-4.886719-9.769531c2.535156-4.496094 4.503906-9.230469 5.886719-14.183594l10.359375-3.445313v-27.53125l-10.351562-3.453125c-1.375-4.953125-3.34375-9.707031-5.886719-14.183594l4.886719-9.777343-19.472657-19.472657-9.769531 4.886719c-4.484375-2.535156-9.230469-4.503906-14.183594-5.878906l-3.453125-10.359375h-27.539062l-3.445313 10.359375c-4.953125 1.375-9.695312 3.34375-14.183594 5.878906l-9.777343-4.886719-19.472657 19.472657 4.886719 9.777343c-2.535156 4.488282-4.503906 9.230469-5.886719 14.183594l-10.351562 3.445313v27.53125l10.351562 3.453125c1.375 4.953125 3.34375 9.695312 5.886719 14.183594l-4.886719 9.769531 19.472657 19.480469 9.769531-4.886719c4.484375 2.535156 9.230469 4.503906 14.183594 5.878906l3.453125 10.359375h27.539062zm-12.304688-13.679687-2.679687 8.039062h-4.460938l-2.679687-8.039062-4.554688-.90625c-6.128906-1.222657-11.878906-3.605469-17.109375-7.09375l-3.867187-2.578126-7.574219 3.800782-3.160156-3.167969 3.792969-7.582031-2.578126-3.859375c-3.488281-5.222657-5.871093-10.980469-7.09375-17.109375l-.914062-4.554688-8.03125-2.679687v-4.46875l8.03125-2.671875.914062-4.554688c1.222657-6.136718 3.613282-11.886718 7.09375-17.109375l2.578126-3.859375-3.792969-7.589844 3.160156-3.160156 7.574219 3.800782 3.867187-2.578126c5.222657-3.488281 10.980469-5.863281 17.109375-7.09375l4.554688-.90625 2.679687-8.039062h4.460938l2.679687 8.039062 4.554688.90625c6.128906 1.222657 11.878906 3.605469 17.109375 7.09375l3.867187 2.578126 7.574219-3.800782 3.160156 3.160156-3.792969 7.589844 2.578126 3.859375c3.488281 5.214844 5.871093 10.972657 7.09375 17.109375l.914062 4.554688 8.03125 2.679687v4.46875l-8.03125 2.671875-.914062 4.554688c-1.222657 6.128906-3.613282 11.878906-7.09375 17.109375l-2.578126 3.859375 3.792969 7.582031-3.160156 3.167969-7.574219-3.800782-3.867187 2.578126c-5.222657 3.488281-10.980469 5.863281-17.109375 7.09375zm0 0\"></path><path d=\"m104 72c-17.648438 0-32 14.351562-32 32s14.351562 32 32 32 32-14.351562 32-32-14.351562-32-32-32zm0 48c-8.824219 0-16-7.175781-16-16s7.175781-16 16-16 16 7.175781 16 16-7.175781 16-16 16zm0 0\"></path><path d=\"m160 248v-40h48v-208h-208v208h106.664062zm-144-232h176v176h-48v24l-32-24h-96zm0 0\"></path><path d=\"m0 272h16v16h-16zm0 0\"></path><path d=\"m32 272h16v16h-16zm0 0\"></path><path d=\"m64 272h16v16h-16zm0 0\"></path><path d=\"m32 304h16v16h-16zm0 0\"></path><path d=\"m64 304h16v16h-16zm0 0\"></path><path d=\"m0 480h16v16h-16zm0 0\"></path><path d=\"m32 480h16v16h-16zm0 0\"></path><path d=\"m64 480h16v16h-16zm0 0\"></path><path d=\"m32 448h16v16h-16zm0 0\"></path><path d=\"m64 448h16v16h-16zm0 0\"></path></svg>				\n									<h5>\n							fokus på kvalitet og detaljer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m469.12 408.93-67.26-33.63v-22.13c10.71-7.69 18.6-19.07 21.78-32.27h5.28c8.81 0 15.98-7.17 15.98-15.98v-5.29c0-6.35-3.74-11.84-9.12-14.41 5.19-18.64-1.65-39.76-19.44-59.78-12.58-14.16-30.67-22.27-49.62-22.27-18.93 0-37.01 8.12-49.59 22.27-13.38 15.05-20.95 41.01-14.03 59.62-5.56 2.5-9.45 8.09-9.45 14.57v5.29c0 8.81 7.17 15.98 15.98 15.98h5.55c3.16 13.09 10.94 24.39 21.51 32.08v22.32l-67.26 33.63c-16.7 5.87-27.89 21.6-27.89 39.28v41.63c0 3.31 2.69 6 6 6h243.46c3.31 0 6-2.69 6-6v-41.63c0-17.68-11.19-33.41-27.88-39.28zm-62.24-17.7-15.83 27.66-13.29-13.29 19.29-19.29zm-37.61 5.88-20.59-20.58v-16.91c6.41 2.57 13.4 4.01 20.72 4.01 7.22 0 14.11-1.39 20.45-3.9v16.8zm63.63-97.48v5.29c0 2.16-1.82 3.98-3.98 3.98h-3.74c.01-.36.03-.71.03-1.07v-12.18h3.71c2.15-.01 3.98 1.82 3.98 3.98zm-119.29 8.2v1.07h-3.98c-2.16 0-3.98-1.82-3.98-3.98v-5.29c0-2.16 1.82-3.98 3.98-3.98l3.98.22zm1.95-24.19c-7.33-13.69-.89-37.39 10.53-50.24 10.31-11.6 25.12-18.25 40.63-18.25 15.52 0 30.34 6.65 40.65 18.25 8.43 9.48 21.3 27.59 17.4 46.39-5.66-.35-10.67-2.55-14.4-6.36-5.37-5.49-7.72-14-6.63-23.94.29-2.62-1.17-5.13-3.6-6.17s-5.25-.37-6.95 1.65c-19.33 22.92-45.95 36.76-73.9 38.68h-3.73zm10.05 24.19v-12.73c24.57-2.92 47.92-14.05 66.73-31.8 1.43 7.26 4.63 13.6 9.45 18.52 3.27 3.35 7.14 5.89 11.41 7.58v18.42c0 24.15-19.65 43.8-43.8 43.8s-43.79-19.64-43.79-43.79zm15.89 78.48 19.29 19.29-13.29 13.29-15.84-27.66zm3.22 97.53h-39.42v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.76v-35.63c0-12.68 8.1-23.95 20.15-28.05.26-.09.51-.19.75-.31l46.47-23.23 20.07 35.06c.93 1.62 2.56 2.72 4.41 2.97.27.04.53.05.79.05 1.58 0 3.11-.62 4.24-1.76l.14-.14zm12.08 0 7.41-64.69 5.06-5.06 4.84 4.84 7.86 64.92h-25.17zm128.2 0h-39.76v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.18l-6.2-51.17.25.25c1.13 1.13 2.66 1.76 4.24 1.76.26 0 .53-.02.79-.05 1.85-.25 3.48-1.34 4.41-2.97l20.07-35.06 46.47 23.23c.24.12.49.23.75.31 12.05 4.1 20.15 15.38 20.15 28.05v35.65zm-67.04-346.65h-10.84l28.38 39.84 28.38-39.84h-10.84c-3.31 0-6-2.69-6-6v-64.58h-98.7c-3.31 0-6-2.69-6-6s2.69-6 6-6h104.7c3.31 0 6 2.69 6 6v64.58h16.48c2.25 0 4.3 1.25 5.33 3.25s.86 4.4-.45 6.23l-40.02 56.18c-1.13 1.58-2.95 2.52-4.89 2.52s-3.76-.94-4.89-2.52l-40.02-56.18c-1.3-1.83-1.48-4.23-.45-6.23s3.09-3.25 5.33-3.25h16.48v-23.5h-65.38c-3.31 0-6-2.69-6-6s2.69-6 6-6h71.38c3.31 0 6 2.69 6 6v35.5c.02 3.31-2.67 6-5.98 6zm-118.44 50.65v-133.26c0-21.18-17.23-38.41-38.41-38.41h-207.7c-21.18-.01-38.41 17.23-38.41 38.41v133.26c0 21.18 17.23 38.41 38.41 38.41h105.8l64.8 55.11c1.11.94 2.49 1.43 3.89 1.43.85 0 1.71-.18 2.52-.55 2.12-.98 3.48-3.11 3.48-5.45v-50.54h27.21c21.18 0 38.41-17.23 38.41-38.41zm-71.62 26.41c-3.31 0-6 2.69-6 6v43.56l-56.59-48.13c-1.08-.92-2.46-1.43-3.89-1.43h-108.01c-14.56 0-26.41-11.85-26.41-26.41v-133.26c0-14.56 11.85-26.41 26.41-26.41h207.69c14.56 0 26.41 11.85 26.41 26.41v133.26c0 14.56-11.85 26.41-26.41 26.41zm-156.34-87.87h56.97c3.31 0 6-2.69 6-6v-39.2l8.55-8.55c2.34-2.34 2.34-6.14 0-8.49-2.34-2.34-6.14-2.34-8.48 0l-.7.7c-.98-1.97-3.01-3.32-5.36-3.32h-56.98c-3.31 0-6 2.69-6 6v52.85c0 3.32 2.69 6.01 6 6.01zm6-52.86h44.97v2.69l-18.16 18.16-8.84-8.84c-2.34-2.34-6.14-2.34-8.49 0-2.34 2.34-2.34 6.14 0 8.49l13.08 13.08c1.17 1.17 2.71 1.76 4.24 1.76s3.07-.59 4.24-1.76l13.92-13.92v21.2h-44.96zm173.62 3.08c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 31.92c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 36.52c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.68 5.99 6zm0 31.92c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.69 5.99 6zm-119.36 165.01h10.84l-28.38-39.84-28.38 39.84h10.84c3.31 0 6 2.69 6 6v64.58h98.7c3.31 0 6 2.69 6 6s-2.69 6-6 6h-104.69c-3.31 0-6-2.69-6-6v-64.58h-16.48c-2.25 0-4.3-1.25-5.33-3.25s-.86-4.4.45-6.23l40.02-56.18c1.13-1.58 2.95-2.52 4.89-2.52s3.76.94 4.89 2.52l40.02 56.18c1.3 1.83 1.48 4.23.45 6.23s-3.09 3.25-5.33 3.25h-16.48v23.5h65.38c3.31 0 6 2.69 6 6s-2.69 6-6 6h-71.38c-3.31 0-6-2.69-6-6v-35.5c-.03-3.31 2.66-6 5.97-6z\"></path></svg>				\n									<h5>\n							ærlig<br> rådgivning						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 510 510\"><path d=\"m192.036 385.845c-4.787-46.972-19.459-64.336-30.658-82.352-8.672-13.951-15.5-28.245-15.5-54.252 0-60.242 48.865-109.109 109.135-109.109 60.242 0 109.109 48.866 109.109 109.109 0 26.007-6.828 40.301-15.5 54.252-11.199 18.016-25.871 35.38-30.658 82.352 9.985 2.864 17.345 12.101 17.345 22.975v36.44c0 13.109-10.747 23.866-23.893 23.866h-10.334v9.945c0 12.588-10.341 22.929-22.93 22.929h-46.304c-12.589 0-22.93-10.341-22.93-22.929v-9.945h-10.334c-13.146 0-23.893-10.757-23.893-23.866v-36.44c0-10.874 7.36-20.111 17.345-22.975zm111.948-.917c4.199-42.194 15.78-62.332 26.488-79.049 10.147-15.842 19.65-28.207 19.65-56.638 0-52.513-42.597-95.109-95.109-95.109-52.537 0-95.135 42.596-95.135 95.109 0 28.431 9.503 40.796 19.65 56.638 10.708 16.717 22.289 36.855 26.488 79.049zm2.554-78.61c-1.175 13.701-11.985 24.191-24.783 24.191-13.527 0-24.862-12.086-24.862-26.673v-99.328c0-14.12 11.335-26.673 24.862-26.673 11.309 0 21.031 8.139 23.975 19.497 9.12 3.904 15.688 13.438 15.688 24.78 0 1.153-.068 2.289-.201 3.403 5.078 5.326 8.283 12.802 8.283 21.117 0 6.39-1.889 12.262-5.06 17.053 1.996 4.099 3.13 8.773 3.13 13.76 0 14.1-9.065 25.697-21.032 28.873zm-16.452-109.977c-1.964-2.729-4.916-4.506-8.331-4.506-6.192 0-10.862 6.21-10.862 12.673v99.328c0 6.677 4.67 12.673 10.862 12.673 5.516 0 9.822-4.614 10.717-10.425-4.709-1.416-8.923-4.144-12.279-7.814-2.607-2.852-2.409-7.283.443-9.89 2.851-2.607 7.282-2.408 9.889.443 2.416 2.642 5.72 4.356 9.402 4.356 7.733 0 13.643-7.218 13.643-15.734s-5.91-15.734-13.643-15.734c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7 5.352 0 10.388 1.655 14.658 4.533.593-1.743.915-3.634.915-5.612 0-2.11-.366-4.128-1.036-5.972-.769.858-1.588 1.66-2.453 2.397-2.94 2.507-7.361 2.156-9.869-.784-2.507-2.939-2.155-7.361.784-9.868 2.773-2.365 4.492-6.122 4.492-10.293 0-6.072-3.705-11.374-8.898-12.467-.154-.023-.307-.052-.458-.085-.499-.08-1.01-.121-1.532-.121-2.947 0-5.591 1.389-7.515 3.525-2.585 2.87-7.015 3.101-9.886.515-2.87-2.586-3.101-7.015-.515-9.886 3.111-3.453 7.059-5.988 11.472-7.252zm-104.526 67.344c-3.171-4.791-5.06-10.663-5.06-17.053 0-8.307 3.198-15.777 8.284-21.104-.133-1.118-.202-2.258-.202-3.416 0-11.354 6.582-20.897 15.717-24.792 2.948-11.354 12.67-19.485 23.946-19.485 13.56 0 24.888 12.555 24.888 26.673v99.328c0 14.585-11.328 26.673-24.888 26.673-12.765 0-23.578-10.484-24.757-24.184-11.98-3.166-21.058-14.769-21.058-28.88 0-4.987 1.134-9.661 3.13-13.76zm9.982-23.036c-.675 1.847-1.042 3.869-1.042 5.983 0 1.978.322 3.869.915 5.612 4.27-2.878 9.306-4.533 14.658-4.533 3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7-7.733 0-13.643 7.218-13.643 15.734s5.91 15.734 13.643 15.734c3.682 0 6.986-1.714 9.402-4.356 2.607-2.851 7.038-3.05 9.889-.443 2.852 2.607 3.05 7.038.443 9.89-3.35 3.664-7.556 6.389-12.255 7.807.891 5.813 5.192 10.432 10.693 10.432 6.21 0 10.888-5.993 10.888-12.673v-99.328c0-6.466-4.678-12.673-10.888-12.673-3.404 0-6.349 1.777-8.309 4.507 4.421 1.264 8.367 3.8 11.476 7.251 2.586 2.871 2.355 7.3-.516 9.886-2.87 2.586-7.3 2.355-9.886-.515-1.926-2.138-4.574-3.525-7.54-3.525-.493 0-.976.037-1.448.108-.196.045-.395.082-.596.11-5.165 1.118-8.844 6.404-8.844 12.455 0 1.243.153 2.45.442 3.594.101.284.183.572.246.862.748 2.326 2.071 4.346 3.814 5.823 2.947 2.498 3.311 6.919.813 9.866s-6.919 3.312-9.866.814c-.878-.745-1.71-1.554-2.489-2.422zm3.042 158.279c-5.442 0-9.893 4.451-9.893 9.892v36.44c0 5.423 4.454 9.866 9.893 9.866h17.334c3.866 0 7 3.134 7 7v16.945c0 4.902 4.027 8.929 8.93 8.929h46.304c4.903 0 8.93-4.027 8.93-8.929v-16.945c0-3.866 3.134-7 7-7h17.334c5.439 0 9.893-4.443 9.893-9.866v-36.44c0-5.441-4.451-9.892-9.893-9.892zm63.416-314.093 2.907-5.412c1.828-3.403 6.075-4.683 9.479-2.854 3.403 1.828 4.682 6.075 2.854 9.479l-16.073 29.925c-1.22 2.271-3.589 3.688-6.167 3.688s-4.947-1.417-6.167-3.688l-16.073-29.925c-1.828-3.404-.549-7.651 2.854-9.479 3.404-1.829 7.651-.549 9.479 2.854l2.907 5.412v-69.835c0-3.863 3.137-7 7-7s7 3.137 7 7zm-132.198 54.758-49.381-49.381c-2.732-2.731-2.732-7.167 0-9.899s7.168-2.732 9.9 0l49.38 49.38-1.771-5.881c-1.114-3.7.985-7.608 4.684-8.722 3.7-1.114 7.607.985 8.721 4.685l9.796 32.526c.743 2.468.069 5.145-1.753 6.968-1.823 1.823-4.5 2.496-6.969 1.753l-32.526-9.795c-3.699-1.114-5.798-5.022-4.684-8.721s5.022-5.798 8.721-4.684zm-44.859 122.299h-69.835c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7h69.835l-5.412-2.907c-3.403-1.828-4.682-6.076-2.854-9.479 1.828-3.404 6.075-4.683 9.479-2.855l29.926 16.074c2.271 1.22 3.688 3.589 3.688 6.167 0 2.577-1.417 4.947-3.688 6.166l-29.926 16.074c-3.404 1.828-7.651.549-9.479-2.855-1.828-3.403-.549-7.651 2.854-9.479zm54.758 118.198-49.38 49.38c-2.732 2.732-7.168 2.732-9.9 0s-2.732-7.167 0-9.899l49.381-49.381-5.882 1.772c-3.699 1.114-7.607-.985-8.721-4.685-1.114-3.699.985-7.607 4.684-8.721l32.526-9.795c2.469-.743 5.146-.07 6.969 1.753 1.822 1.823 2.496 4.5 1.753 6.968l-9.796 32.527c-1.114 3.699-5.021 5.798-8.721 4.684-3.699-1.114-5.798-5.022-4.684-8.721zm240.497-240.497 5.882-1.771c3.699-1.114 7.607.985 8.721 4.684s-.985 7.607-4.684 8.721l-32.526 9.795c-2.469.743-5.146.07-6.969-1.753-1.822-1.823-2.496-4.5-1.753-6.968l9.796-32.526c1.114-3.7 5.021-5.799 8.721-4.685 3.699 1.114 5.798 5.022 4.684 8.722l-1.771 5.881 49.38-49.38c2.732-2.732 7.168-2.732 9.9 0s2.732 7.168 0 9.899zm44.859 122.299 5.412 2.906c3.403 1.828 4.682 6.076 2.854 9.479-1.828 3.404-6.075 4.683-9.479 2.855l-29.926-16.074c-2.271-1.219-3.688-3.589-3.688-6.166 0-2.578 1.417-4.947 3.688-6.167l29.926-16.074c3.404-1.828 7.651-.549 9.479 2.855 1.828 3.403.549 7.651-2.854 9.479l-5.412 2.907h69.835c3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7zm-54.758 118.198 1.771 5.882c1.114 3.699-.985 7.607-4.684 8.721-3.7 1.114-7.607-.985-8.721-4.684l-9.796-32.527c-.743-2.468-.069-5.145 1.753-6.968 1.823-1.823 4.5-2.496 6.969-1.753l32.526 9.795c3.699 1.114 5.798 5.022 4.684 8.721-1.114 3.7-5.022 5.799-8.721 4.685l-5.882-1.772 49.381 49.381c2.732 2.732 2.732 7.167 0 9.899s-7.168 2.732-9.9 0z\"></path></svg>				\n									<h5>\n							gennemtænkte løsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"outline\"><path d=\"M486.41,144A28,28,0,0,0,472,92H349.123l5.457-21.828a48.513,48.513,0,0,0-12.848-46.153A41.035,41.035,0,0,0,312.609,12H308a8.009,8.009,0,0,0-8,8V47.413l-19.233,64.112A17.376,17.376,0,0,1,268,123.539V112a4,4,0,0,0-4-4H152a4,4,0,0,0-4,4v72a4,4,0,0,0,8,0V116h72V276H156V248a4,4,0,0,0-8,0v32a4,4,0,0,0,4,4H264a4,4,0,0,0,4-4V268.5h11.168A37.07,37.07,0,0,1,305.092,279a45.025,45.025,0,0,0,31.48,12.752L440,292a27.987,27.987,0,0,0,19.369-48.2,27.987,27.987,0,0,0,16-48A28,28,0,0,0,486.41,144ZM260,276H236V116h24Zm212-88H396a4,4,0,0,0,0,8h60a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h40a20,20,0,0,1,.01,40l-103.428-.25a37.07,37.07,0,0,1-25.924-10.5,45.031,45.031,0,0,0-31.49-12.752H268V131.686a25.317,25.317,0,0,0,20.429-17.862l19.4-64.675A4,4,0,0,0,308,48V20h4.609a33.082,33.082,0,0,1,23.481,9.69,40.507,40.507,0,0,1,10.728,38.541l-6.7,26.8A4,4,0,0,0,344,100H472a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h72a20,20,0,0,1,0,40Z\"></path><path d=\"M194.5,183.243l-1.9-.217a4,4,0,0,0-4.169,2.491L184.29,195.9H135.278l-3.539-9.317a4,4,0,0,0-7.478,2.84l2.459,6.477h-8.474L68.452,156.872a4,4,0,1,0-4.935,6.3L77.6,174.209,56.961,194.48l-6.636-5.491a4,4,0,1,0-5.1,6.163L87.219,229.9a44.1,44.1,0,0,0,28.05,10.1H212a8.009,8.009,0,0,0,8-8V203.9a8.009,8.009,0,0,0-8-8h-8v-2.01A10.708,10.708,0,0,0,194.5,183.243ZM212,203.9V232H115.269a36.081,36.081,0,0,1-22.951-8.264l-29.16-24.128,20.8-20.422L114.4,203.045a4,4,0,0,0,2.468.852H187a4,4,0,0,0,3.715-2.517l3.929-9.843a2.712,2.712,0,0,1,1.356,2.35v6.01a4,4,0,0,0,4,4Z\"></path><path d=\"M223.084,484.672,200.87,469.863V346.36A44.1,44.1,0,0,0,195.327,325l-17.183-30.94a4,4,0,0,0-7,3.884l17.184,30.94a36.073,36.073,0,0,1,4.537,17.478V468H164.333a4,4,0,1,0,0,8h31.321l12,8H152.865V352a4,4,0,0,0-.358-1.655l-25.454-56A4,4,0,0,0,123.411,292H114.2a4,4,0,0,0-3.945,4.658l8.862,53.175a36.016,36.016,0,0,1-1.951,18.949L78.642,468H48.333a4,4,0,1,0,0,8H80.377L92,484H32.088L76.63,361.366a4.017,4.017,0,0,0,.183-2.044L61.1,268H136a4,4,0,0,0,0-8H59.233L30.555,173.966A19.723,19.723,0,0,1,49.27,148H76a12,12,0,0,0,24,0h15.2a21.975,21.975,0,0,1,8.395,1.652l10.889,4.458a4,4,0,1,0,3.032-7.4L126.63,142.25A29.938,29.938,0,0,0,115.2,140H100v-4.527A16.014,16.014,0,0,0,112,120V103.473A16.014,16.014,0,0,0,124,88V80a4,4,0,0,0-4-4H90A22.025,22.025,0,0,0,68,98v18a12.02,12.02,0,0,0,8,11.314V140H49.27a27.723,27.723,0,0,0-26.305,36.5l29.493,88.482,16.29,94.655-46.128,127A4,4,0,0,0,26.38,492h78.485a4,4,0,0,0,2.268-7.3L86.3,470.368l38.318-98.69a44.018,44.018,0,0,0,2.385-23.16L118.921,300h1.914l24.03,52.867V488a4,4,0,0,0,4,4h72a4,4,0,0,0,2.219-7.328ZM76,98A14.015,14.015,0,0,1,90,84h26v4a8.009,8.009,0,0,1-8,8H92a4,4,0,0,0-4,4,11.962,11.962,0,0,1-1.53,5.881A12.044,12.044,0,0,0,76,104.686Zm4,14a3.981,3.981,0,0,1,3.407,1.9,4,4,0,0,0,5.956.975c.207-.171.7-.648.7-.648.032-.028.061-.057.09-.087A19.907,19.907,0,0,0,95.6,104H104v16a8.009,8.009,0,0,1-8,8,12.133,12.133,0,0,1-2.681-.3,4,4,0,1,0-1.775,7.8c.151.035.3.06.456.091V148a4,4,0,1,1-8,0V124a4,4,0,0,0-4-4,4,4,0,0,1,0-8Z\"></path></g></svg>				\n									<h5>\n							arbejde udført med ansvar						\n					</h5>\n				<p>Vi lover ikke mere, end vi kan holde – men vi holder det, vi lover.</p>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 13:23:34', '2026-01-26 13:23:34', '', 10, 'https://mrarif.me/cpnordic/?p=521', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(522, 1, '2026-01-26 13:23:34', '2026-01-26 13:23:34', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>					\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle ANMELDELSER\n					</a>\n					<h2>HVORFOR VÆLGE CP NORDIC ApS?</h2>		<p>Når du vælger CP NORDIC ApS, får du:</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 450 450\" width=\"512\"><g><g><path d=\"m225 165.2c-25.9 0-48.9-18.8-53.3-45.2-2.4-14.2.9-28.6 9.3-40.3 8.4-11.8 20.9-19.5 35.1-21.9 29.4-4.9 57.3 15 62.2 44.5 4.9 29.4-15 57.3-44.4 62.2-3 .5-6 .7-8.9.7zm-7.6-99.8c-12.2 2-22.9 8.7-30.1 18.8s-10.1 22.4-8 34.6c3.8 22.7 23.5 38.8 45.7 38.8 2.5 0 5.1-.2 7.6-.6 25.2-4.2 42.3-28.1 38.1-53.4s-28.1-42.4-53.3-38.2z\"></path><path d=\"m255.2 115c-2.1 0-3.8-1.7-3.8-3.8 0-14.6-11.8-26.4-26.4-26.4-2.1 0-3.8-1.7-3.8-3.8s1.7-3.8 3.8-3.8c18.8 0 34.1 15.3 34.1 34.1 0 2-1.8 3.7-3.9 3.7z\"></path><path d=\"m236.1 203h-22.2c-2.1 0-3.8-1.7-3.8-3.8v-14.1c-3.1-.6-6.1-1.4-9.1-2.4l-7 12.2c-1.1 1.8-3.4 2.5-5.3 1.4l-19.2-11.1c-.9-.5-1.5-1.4-1.8-2.3-.3-1-.1-2 .4-2.9l7-12.1c-2.4-2.1-4.6-4.3-6.7-6.6l-12.1 7c-1.8 1.1-4.2.4-5.2-1.4l-11.1-19.2c-1.1-1.8-.4-4.2 1.4-5.2l11.9-6.8c-1-3-1.9-6.1-2.6-9.3h-13.7c-2.1 0-3.8-1.7-3.8-3.8v-22.2c0-2.1 1.7-3.8 3.8-3.8h13.4c.6-3.2 1.4-6.4 2.4-9.5l-11.5-6.6c-1.8-1.1-2.5-3.4-1.4-5.3l11.1-19.6c.5-.9 1.4-1.5 2.3-1.8s2-.1 2.9.4l11.3 6.6c2.2-2.5 4.5-4.8 7-7l-6.5-11.3c-.5-.9-.6-1.9-.4-2.9.3-1 .9-1.8 1.8-2.3l19.2-11.1c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l6.4 11.2c3.1-1.1 6.4-1.9 9.7-2.6v-13c0-2.1 1.7-3.8 3.8-3.8h22.2c2.1 0 3.8 1.7 3.8 3.8v12.8c3.3.7 6.5 1.5 9.7 2.6l6.5-11.2c.5-.9 1.4-1.5 2.3-1.8 1-.3 2-.1 2.9.4l19.2 11.1c.9.5 1.5 1.3 1.8 2.3s.1 2-.4 2.9l-6.5 11.3c2.5 2.2 4.8 4.5 7 7.1l11.3-6.6c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l11.1 19.2c1.1 1.8.4 4.2-1.4 5.3l-11.5 6.6c1 3.1 1.8 6.3 2.5 9.5h13.6c2.1 0 3.8 1.7 3.8 3.8v22.2c0 2.1-1.7 3.8-3.8 3.8h-13.6c-.6 3.1-1.5 6.2-2.5 9.3l11.9 6.8c1.8 1.1 2.5 3.4 1.4 5.2l-11.2 19.5c-1.1 1.8-3.4 2.5-5.2 1.4l-12-7c-2.1 2.4-4.4 4.6-6.7 6.6l7 12.1c.5.9.6 1.9.4 2.9s-.9 1.8-1.8 2.3l-19.2 11.1c-1.8 1.1-4.2.4-5.2-1.4l-7-12.2c-3 1-6 1.8-9.1 2.4v14.1c-.2 2.3-2 4-4.1 4zm-18.4-7.7h14.5v-13.5c0-1.9 1.4-3.5 3.3-3.8 4.7-.7 9.4-2 13.8-3.7 1.8-.7 3.8 0 4.7 1.7l6.7 11.6 12.6-7.3-6.7-11.6c-1-1.6-.5-3.7.9-4.9 3.7-3 7.2-6.4 10.2-10.1 1.2-1.5 3.3-1.8 4.9-.9l11.5 6.6 7.3-12.6-11.3-6.5c-1.6-.9-2.4-3-1.6-4.7 1.8-4.5 3.1-9.2 3.9-14 .3-1.9 1.9-3.2 3.8-3.2h13v-14.6h-12.8c-1.9 0-3.5-1.4-3.8-3.3-.7-4.8-2-9.6-3.7-14.2-.7-1.8 0-3.7 1.7-4.7l10.9-6.3-7.3-12.6-10.8 6.3c-1.6.9-3.7.6-4.9-.9-3.1-3.9-6.6-7.4-10.4-10.6-1.5-1.2-1.9-3.3-.9-4.9l6.2-10.7-12.6-7.3-6.1 10.6c-1 1.6-3 2.3-4.7 1.7-4.6-1.8-9.5-3.1-14.4-3.9-1.9-.3-3.3-1.9-3.3-3.8v-12.2h-14.5v12.3c0 1.9-1.4 3.5-3.3 3.8-5 .8-9.8 2.1-14.4 3.9-1.8.7-3.8 0-4.7-1.7l-6.1-10.6-12.6 7.3 6.2 10.7c.9 1.6.6 3.7-.9 4.9-3.9 3.1-7.4 6.7-10.4 10.6-1.2 1.5-3.3 1.9-4.9.9l-10.8-6.3-7.3 12.6 10.9 6.3c1.6.9 2.3 2.9 1.7 4.7-1.7 4.6-3 9.4-3.7 14.2-.3 1.9-1.9 3.3-3.8 3.3h-12.8v14.5h13c1.9 0 3.5 1.4 3.8 3.2.8 4.8 2.1 9.5 3.9 14 .7 1.8 0 3.8-1.6 4.7l-11.3 6.5 7.3 12.6 11.5-6.6c1.6-.9 3.7-.6 4.9.9 3 3.7 6.5 7.1 10.3 10.1 1.5 1.2 1.9 3.3.9 4.9l-6.7 11.6 12.6 7.3 6.7-11.6c.9-1.6 2.9-2.3 4.7-1.7 4.5 1.7 9.1 2.9 13.8 3.7 1.9.3 3.3 1.9 3.3 3.8z\"></path></g><g><g><g><path d=\"m45.3 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m153.9 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path></g><g><path d=\"m189.3 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.2c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c0 2.1-1.7 3.8-3.8 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m73.3 326.4c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m126 326.4c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m99.7 325.6c-.6 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4s4.1 1.1 4.4 3.2c2.4 16.5 12.3 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m50.2 266.6c-.1 0-.2 0-.3 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.7 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-8.9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.5 2.2zm81.8-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13.1-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.4-.7 2.3-.7z\"></path></g></g></g><g><g><path d=\"m296.1 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m404.7 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path></g><g><path d=\"m440 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.1c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c.2 2.1-1.6 3.8-3.7 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m324 326.3c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m376.7 326.3c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m350.4 325.6c-.5 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4 2.1-.3 4 1.1 4.4 3.2 2.4 16.5 12.4 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m301 266.6c-.1 0-.2 0-.4 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.6 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.4 2.2zm81.7-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.5-.7 2.3-.7z\"></path></g></g></g></g></g></svg>				\n									<h5>\n							et ungt og engageret team						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"496pt\" viewBox=\"0 0 496 496\" width=\"496pt\"><path d=\"m440 328h-28.207031c5.078125-6.703125 8.207031-14.960938 8.207031-24 0-8.824219-7.175781-16-16-16h-12v-19.960938c59.574219-14.445312 104-68.085937 104-132.039062 0-74.992188-61.007812-136-136-136s-136 61.007812-136 136c0 63.953125 44.425781 117.59375 104 132.039062v19.960938h-8.449219c-6.167969 0-12.359375 1.464844-17.886719 4.214844l-50.480468 25.25c-3.320313 1.664062-7.03125 2.535156-10.734375 2.535156h-40.449219v-16h-104v16h56v56h16v-56h16v128h-16v-56h-16v56h-56v16h104v-16h40.449219c3.703125 0 7.414062.871094 10.734375 2.527344l34.488281 17.25c5.519531 2.757812 11.710937 4.222656 17.878906 4.222656h24.449219v24h64v-24h48c13.230469 0 24-10.769531 24-24 0-6.167969-2.40625-11.742188-6.238281-16 3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16 0-13.230469-10.769531-24-24-24zm8 24c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm-208-280c0-66.167969 53.832031-120 120-120s120 53.832031 120 120-53.832031 120-120 120-120-53.832031-120-120zm104 134.976562c5.257812.617188 10.574219 1.023438 16 1.023438s10.742188-.40625 16-1.023438v17.023438h-32zm-40.449219 185.023438c-3.703125 0-7.414062-.871094-10.734375-2.527344l-34.488281-17.25c-5.519531-2.757812-11.710937-4.222656-17.878906-4.222656h-40.449219v-96h40.449219c6.167969 0 12.359375-1.464844 17.886719-4.214844l50.480468-25.25c3.320313-1.664062 7.03125-2.535156 10.734375-2.535156h84.449219c0 13.230469-10.769531 24-24 24h-48.28125l-23.863281 35.808594c-6.101563 9.160156-14.527344 16.589844-24.367188 21.503906-8.753906 4.375-18.542969 6.6875-28.320312 6.6875h-15.167969v16h15.167969c12.246093 0 24.519531-2.894531 35.472656-8.375 12.328125-6.160156 22.878906-15.480469 30.527344-26.945312l6.832031-10.253907v93.574219zm40.449219 24v-136h17.472656c-.898437 2.511719-1.472656 5.183594-1.472656 8 0 6.167969 2.40625 11.742188 6.238281 16-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16 0 10.414062 6.710938 19.214844 16 22.527344v9.472656zm96-24h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8s-3.59375 8-8 8zm0 0\"></path><path d=\"m394.878906 73.007812-7.757812 13.984376c17.816406 9.878906 28.878906 28.664062 28.878906 49.007812h16c0-26.160156-14.222656-50.296875-37.121094-62.992188zm0 0\"></path><path d=\"m360 80c4.734375 0 9.449219.59375 14.007812 1.769531l3.976563-15.503906c-5.855469-1.496094-11.90625-2.265625-17.984375-2.265625zm0 0\"></path><path d=\"m360 48c48.519531 0 88 39.480469 88 88 0 20.753906-7.398438 40.910156-20.832031 56.785156l12.207031 10.34375c15.882812-18.761718 24.625-42.601562 24.625-67.128906 0-57.34375-46.65625-104-104-104-24.527344 0-48.367188 8.753906-67.128906 24.632812l10.335937 12.199219c15.871094-13.433593 36.039063-20.832031 56.792969-20.832031zm0 0\"></path><path d=\"m427.128906 215.367188-10.335937-12.199219c-15.871094 13.433593-36.039063 20.832031-56.792969 20.832031-48.519531 0-88-39.480469-88-88 0-20.753906 7.398438-40.910156 20.832031-56.785156l-12.207031-10.34375c-15.882812 18.761718-24.625 42.601562-24.625 67.128906 0 57.34375 46.65625 104 104 104 24.527344 0 48.367188-8.753906 67.128906-24.632812zm0 0\"></path><path d=\"m121.214844 165.640625c4.953125-1.375 9.695312-3.34375 14.183594-5.878906l9.769531 4.886719 19.472656-19.480469-4.886719-9.769531c2.535156-4.496094 4.503906-9.230469 5.886719-14.183594l10.359375-3.445313v-27.53125l-10.351562-3.453125c-1.375-4.953125-3.34375-9.707031-5.886719-14.183594l4.886719-9.777343-19.472657-19.472657-9.769531 4.886719c-4.484375-2.535156-9.230469-4.503906-14.183594-5.878906l-3.453125-10.359375h-27.539062l-3.445313 10.359375c-4.953125 1.375-9.695312 3.34375-14.183594 5.878906l-9.777343-4.886719-19.472657 19.472657 4.886719 9.777343c-2.535156 4.488282-4.503906 9.230469-5.886719 14.183594l-10.351562 3.445313v27.53125l10.351562 3.453125c1.375 4.953125 3.34375 9.695312 5.886719 14.183594l-4.886719 9.769531 19.472657 19.480469 9.769531-4.886719c4.484375 2.535156 9.230469 4.503906 14.183594 5.878906l3.453125 10.359375h27.539062zm-12.304688-13.679687-2.679687 8.039062h-4.460938l-2.679687-8.039062-4.554688-.90625c-6.128906-1.222657-11.878906-3.605469-17.109375-7.09375l-3.867187-2.578126-7.574219 3.800782-3.160156-3.167969 3.792969-7.582031-2.578126-3.859375c-3.488281-5.222657-5.871093-10.980469-7.09375-17.109375l-.914062-4.554688-8.03125-2.679687v-4.46875l8.03125-2.671875.914062-4.554688c1.222657-6.136718 3.613282-11.886718 7.09375-17.109375l2.578126-3.859375-3.792969-7.589844 3.160156-3.160156 7.574219 3.800782 3.867187-2.578126c5.222657-3.488281 10.980469-5.863281 17.109375-7.09375l4.554688-.90625 2.679687-8.039062h4.460938l2.679687 8.039062 4.554688.90625c6.128906 1.222657 11.878906 3.605469 17.109375 7.09375l3.867187 2.578126 7.574219-3.800782 3.160156 3.160156-3.792969 7.589844 2.578126 3.859375c3.488281 5.214844 5.871093 10.972657 7.09375 17.109375l.914062 4.554688 8.03125 2.679687v4.46875l-8.03125 2.671875-.914062 4.554688c-1.222657 6.128906-3.613282 11.878906-7.09375 17.109375l-2.578126 3.859375 3.792969 7.582031-3.160156 3.167969-7.574219-3.800782-3.867187 2.578126c-5.222657 3.488281-10.980469 5.863281-17.109375 7.09375zm0 0\"></path><path d=\"m104 72c-17.648438 0-32 14.351562-32 32s14.351562 32 32 32 32-14.351562 32-32-14.351562-32-32-32zm0 48c-8.824219 0-16-7.175781-16-16s7.175781-16 16-16 16 7.175781 16 16-7.175781 16-16 16zm0 0\"></path><path d=\"m160 248v-40h48v-208h-208v208h106.664062zm-144-232h176v176h-48v24l-32-24h-96zm0 0\"></path><path d=\"m0 272h16v16h-16zm0 0\"></path><path d=\"m32 272h16v16h-16zm0 0\"></path><path d=\"m64 272h16v16h-16zm0 0\"></path><path d=\"m32 304h16v16h-16zm0 0\"></path><path d=\"m64 304h16v16h-16zm0 0\"></path><path d=\"m0 480h16v16h-16zm0 0\"></path><path d=\"m32 480h16v16h-16zm0 0\"></path><path d=\"m64 480h16v16h-16zm0 0\"></path><path d=\"m32 448h16v16h-16zm0 0\"></path><path d=\"m64 448h16v16h-16zm0 0\"></path></svg>				\n									<h5>\n							fokus på kvalitet og detaljer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m469.12 408.93-67.26-33.63v-22.13c10.71-7.69 18.6-19.07 21.78-32.27h5.28c8.81 0 15.98-7.17 15.98-15.98v-5.29c0-6.35-3.74-11.84-9.12-14.41 5.19-18.64-1.65-39.76-19.44-59.78-12.58-14.16-30.67-22.27-49.62-22.27-18.93 0-37.01 8.12-49.59 22.27-13.38 15.05-20.95 41.01-14.03 59.62-5.56 2.5-9.45 8.09-9.45 14.57v5.29c0 8.81 7.17 15.98 15.98 15.98h5.55c3.16 13.09 10.94 24.39 21.51 32.08v22.32l-67.26 33.63c-16.7 5.87-27.89 21.6-27.89 39.28v41.63c0 3.31 2.69 6 6 6h243.46c3.31 0 6-2.69 6-6v-41.63c0-17.68-11.19-33.41-27.88-39.28zm-62.24-17.7-15.83 27.66-13.29-13.29 19.29-19.29zm-37.61 5.88-20.59-20.58v-16.91c6.41 2.57 13.4 4.01 20.72 4.01 7.22 0 14.11-1.39 20.45-3.9v16.8zm63.63-97.48v5.29c0 2.16-1.82 3.98-3.98 3.98h-3.74c.01-.36.03-.71.03-1.07v-12.18h3.71c2.15-.01 3.98 1.82 3.98 3.98zm-119.29 8.2v1.07h-3.98c-2.16 0-3.98-1.82-3.98-3.98v-5.29c0-2.16 1.82-3.98 3.98-3.98l3.98.22zm1.95-24.19c-7.33-13.69-.89-37.39 10.53-50.24 10.31-11.6 25.12-18.25 40.63-18.25 15.52 0 30.34 6.65 40.65 18.25 8.43 9.48 21.3 27.59 17.4 46.39-5.66-.35-10.67-2.55-14.4-6.36-5.37-5.49-7.72-14-6.63-23.94.29-2.62-1.17-5.13-3.6-6.17s-5.25-.37-6.95 1.65c-19.33 22.92-45.95 36.76-73.9 38.68h-3.73zm10.05 24.19v-12.73c24.57-2.92 47.92-14.05 66.73-31.8 1.43 7.26 4.63 13.6 9.45 18.52 3.27 3.35 7.14 5.89 11.41 7.58v18.42c0 24.15-19.65 43.8-43.8 43.8s-43.79-19.64-43.79-43.79zm15.89 78.48 19.29 19.29-13.29 13.29-15.84-27.66zm3.22 97.53h-39.42v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.76v-35.63c0-12.68 8.1-23.95 20.15-28.05.26-.09.51-.19.75-.31l46.47-23.23 20.07 35.06c.93 1.62 2.56 2.72 4.41 2.97.27.04.53.05.79.05 1.58 0 3.11-.62 4.24-1.76l.14-.14zm12.08 0 7.41-64.69 5.06-5.06 4.84 4.84 7.86 64.92h-25.17zm128.2 0h-39.76v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.18l-6.2-51.17.25.25c1.13 1.13 2.66 1.76 4.24 1.76.26 0 .53-.02.79-.05 1.85-.25 3.48-1.34 4.41-2.97l20.07-35.06 46.47 23.23c.24.12.49.23.75.31 12.05 4.1 20.15 15.38 20.15 28.05v35.65zm-67.04-346.65h-10.84l28.38 39.84 28.38-39.84h-10.84c-3.31 0-6-2.69-6-6v-64.58h-98.7c-3.31 0-6-2.69-6-6s2.69-6 6-6h104.7c3.31 0 6 2.69 6 6v64.58h16.48c2.25 0 4.3 1.25 5.33 3.25s.86 4.4-.45 6.23l-40.02 56.18c-1.13 1.58-2.95 2.52-4.89 2.52s-3.76-.94-4.89-2.52l-40.02-56.18c-1.3-1.83-1.48-4.23-.45-6.23s3.09-3.25 5.33-3.25h16.48v-23.5h-65.38c-3.31 0-6-2.69-6-6s2.69-6 6-6h71.38c3.31 0 6 2.69 6 6v35.5c.02 3.31-2.67 6-5.98 6zm-118.44 50.65v-133.26c0-21.18-17.23-38.41-38.41-38.41h-207.7c-21.18-.01-38.41 17.23-38.41 38.41v133.26c0 21.18 17.23 38.41 38.41 38.41h105.8l64.8 55.11c1.11.94 2.49 1.43 3.89 1.43.85 0 1.71-.18 2.52-.55 2.12-.98 3.48-3.11 3.48-5.45v-50.54h27.21c21.18 0 38.41-17.23 38.41-38.41zm-71.62 26.41c-3.31 0-6 2.69-6 6v43.56l-56.59-48.13c-1.08-.92-2.46-1.43-3.89-1.43h-108.01c-14.56 0-26.41-11.85-26.41-26.41v-133.26c0-14.56 11.85-26.41 26.41-26.41h207.69c14.56 0 26.41 11.85 26.41 26.41v133.26c0 14.56-11.85 26.41-26.41 26.41zm-156.34-87.87h56.97c3.31 0 6-2.69 6-6v-39.2l8.55-8.55c2.34-2.34 2.34-6.14 0-8.49-2.34-2.34-6.14-2.34-8.48 0l-.7.7c-.98-1.97-3.01-3.32-5.36-3.32h-56.98c-3.31 0-6 2.69-6 6v52.85c0 3.32 2.69 6.01 6 6.01zm6-52.86h44.97v2.69l-18.16 18.16-8.84-8.84c-2.34-2.34-6.14-2.34-8.49 0-2.34 2.34-2.34 6.14 0 8.49l13.08 13.08c1.17 1.17 2.71 1.76 4.24 1.76s3.07-.59 4.24-1.76l13.92-13.92v21.2h-44.96zm173.62 3.08c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 31.92c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 36.52c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.68 5.99 6zm0 31.92c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.69 5.99 6zm-119.36 165.01h10.84l-28.38-39.84-28.38 39.84h10.84c3.31 0 6 2.69 6 6v64.58h98.7c3.31 0 6 2.69 6 6s-2.69 6-6 6h-104.69c-3.31 0-6-2.69-6-6v-64.58h-16.48c-2.25 0-4.3-1.25-5.33-3.25s-.86-4.4.45-6.23l40.02-56.18c1.13-1.58 2.95-2.52 4.89-2.52s3.76.94 4.89 2.52l40.02 56.18c1.3 1.83 1.48 4.23.45 6.23s-3.09 3.25-5.33 3.25h-16.48v23.5h65.38c3.31 0 6 2.69 6 6s-2.69 6-6 6h-71.38c-3.31 0-6-2.69-6-6v-35.5c-.03-3.31 2.66-6 5.97-6z\"></path></svg>				\n									<h5>\n							ærlig<br> rådgivning						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 510 510\"><path d=\"m192.036 385.845c-4.787-46.972-19.459-64.336-30.658-82.352-8.672-13.951-15.5-28.245-15.5-54.252 0-60.242 48.865-109.109 109.135-109.109 60.242 0 109.109 48.866 109.109 109.109 0 26.007-6.828 40.301-15.5 54.252-11.199 18.016-25.871 35.38-30.658 82.352 9.985 2.864 17.345 12.101 17.345 22.975v36.44c0 13.109-10.747 23.866-23.893 23.866h-10.334v9.945c0 12.588-10.341 22.929-22.93 22.929h-46.304c-12.589 0-22.93-10.341-22.93-22.929v-9.945h-10.334c-13.146 0-23.893-10.757-23.893-23.866v-36.44c0-10.874 7.36-20.111 17.345-22.975zm111.948-.917c4.199-42.194 15.78-62.332 26.488-79.049 10.147-15.842 19.65-28.207 19.65-56.638 0-52.513-42.597-95.109-95.109-95.109-52.537 0-95.135 42.596-95.135 95.109 0 28.431 9.503 40.796 19.65 56.638 10.708 16.717 22.289 36.855 26.488 79.049zm2.554-78.61c-1.175 13.701-11.985 24.191-24.783 24.191-13.527 0-24.862-12.086-24.862-26.673v-99.328c0-14.12 11.335-26.673 24.862-26.673 11.309 0 21.031 8.139 23.975 19.497 9.12 3.904 15.688 13.438 15.688 24.78 0 1.153-.068 2.289-.201 3.403 5.078 5.326 8.283 12.802 8.283 21.117 0 6.39-1.889 12.262-5.06 17.053 1.996 4.099 3.13 8.773 3.13 13.76 0 14.1-9.065 25.697-21.032 28.873zm-16.452-109.977c-1.964-2.729-4.916-4.506-8.331-4.506-6.192 0-10.862 6.21-10.862 12.673v99.328c0 6.677 4.67 12.673 10.862 12.673 5.516 0 9.822-4.614 10.717-10.425-4.709-1.416-8.923-4.144-12.279-7.814-2.607-2.852-2.409-7.283.443-9.89 2.851-2.607 7.282-2.408 9.889.443 2.416 2.642 5.72 4.356 9.402 4.356 7.733 0 13.643-7.218 13.643-15.734s-5.91-15.734-13.643-15.734c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7 5.352 0 10.388 1.655 14.658 4.533.593-1.743.915-3.634.915-5.612 0-2.11-.366-4.128-1.036-5.972-.769.858-1.588 1.66-2.453 2.397-2.94 2.507-7.361 2.156-9.869-.784-2.507-2.939-2.155-7.361.784-9.868 2.773-2.365 4.492-6.122 4.492-10.293 0-6.072-3.705-11.374-8.898-12.467-.154-.023-.307-.052-.458-.085-.499-.08-1.01-.121-1.532-.121-2.947 0-5.591 1.389-7.515 3.525-2.585 2.87-7.015 3.101-9.886.515-2.87-2.586-3.101-7.015-.515-9.886 3.111-3.453 7.059-5.988 11.472-7.252zm-104.526 67.344c-3.171-4.791-5.06-10.663-5.06-17.053 0-8.307 3.198-15.777 8.284-21.104-.133-1.118-.202-2.258-.202-3.416 0-11.354 6.582-20.897 15.717-24.792 2.948-11.354 12.67-19.485 23.946-19.485 13.56 0 24.888 12.555 24.888 26.673v99.328c0 14.585-11.328 26.673-24.888 26.673-12.765 0-23.578-10.484-24.757-24.184-11.98-3.166-21.058-14.769-21.058-28.88 0-4.987 1.134-9.661 3.13-13.76zm9.982-23.036c-.675 1.847-1.042 3.869-1.042 5.983 0 1.978.322 3.869.915 5.612 4.27-2.878 9.306-4.533 14.658-4.533 3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7-7.733 0-13.643 7.218-13.643 15.734s5.91 15.734 13.643 15.734c3.682 0 6.986-1.714 9.402-4.356 2.607-2.851 7.038-3.05 9.889-.443 2.852 2.607 3.05 7.038.443 9.89-3.35 3.664-7.556 6.389-12.255 7.807.891 5.813 5.192 10.432 10.693 10.432 6.21 0 10.888-5.993 10.888-12.673v-99.328c0-6.466-4.678-12.673-10.888-12.673-3.404 0-6.349 1.777-8.309 4.507 4.421 1.264 8.367 3.8 11.476 7.251 2.586 2.871 2.355 7.3-.516 9.886-2.87 2.586-7.3 2.355-9.886-.515-1.926-2.138-4.574-3.525-7.54-3.525-.493 0-.976.037-1.448.108-.196.045-.395.082-.596.11-5.165 1.118-8.844 6.404-8.844 12.455 0 1.243.153 2.45.442 3.594.101.284.183.572.246.862.748 2.326 2.071 4.346 3.814 5.823 2.947 2.498 3.311 6.919.813 9.866s-6.919 3.312-9.866.814c-.878-.745-1.71-1.554-2.489-2.422zm3.042 158.279c-5.442 0-9.893 4.451-9.893 9.892v36.44c0 5.423 4.454 9.866 9.893 9.866h17.334c3.866 0 7 3.134 7 7v16.945c0 4.902 4.027 8.929 8.93 8.929h46.304c4.903 0 8.93-4.027 8.93-8.929v-16.945c0-3.866 3.134-7 7-7h17.334c5.439 0 9.893-4.443 9.893-9.866v-36.44c0-5.441-4.451-9.892-9.893-9.892zm63.416-314.093 2.907-5.412c1.828-3.403 6.075-4.683 9.479-2.854 3.403 1.828 4.682 6.075 2.854 9.479l-16.073 29.925c-1.22 2.271-3.589 3.688-6.167 3.688s-4.947-1.417-6.167-3.688l-16.073-29.925c-1.828-3.404-.549-7.651 2.854-9.479 3.404-1.829 7.651-.549 9.479 2.854l2.907 5.412v-69.835c0-3.863 3.137-7 7-7s7 3.137 7 7zm-132.198 54.758-49.381-49.381c-2.732-2.731-2.732-7.167 0-9.899s7.168-2.732 9.9 0l49.38 49.38-1.771-5.881c-1.114-3.7.985-7.608 4.684-8.722 3.7-1.114 7.607.985 8.721 4.685l9.796 32.526c.743 2.468.069 5.145-1.753 6.968-1.823 1.823-4.5 2.496-6.969 1.753l-32.526-9.795c-3.699-1.114-5.798-5.022-4.684-8.721s5.022-5.798 8.721-4.684zm-44.859 122.299h-69.835c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7h69.835l-5.412-2.907c-3.403-1.828-4.682-6.076-2.854-9.479 1.828-3.404 6.075-4.683 9.479-2.855l29.926 16.074c2.271 1.22 3.688 3.589 3.688 6.167 0 2.577-1.417 4.947-3.688 6.166l-29.926 16.074c-3.404 1.828-7.651.549-9.479-2.855-1.828-3.403-.549-7.651 2.854-9.479zm54.758 118.198-49.38 49.38c-2.732 2.732-7.168 2.732-9.9 0s-2.732-7.167 0-9.899l49.381-49.381-5.882 1.772c-3.699 1.114-7.607-.985-8.721-4.685-1.114-3.699.985-7.607 4.684-8.721l32.526-9.795c2.469-.743 5.146-.07 6.969 1.753 1.822 1.823 2.496 4.5 1.753 6.968l-9.796 32.527c-1.114 3.699-5.021 5.798-8.721 4.684-3.699-1.114-5.798-5.022-4.684-8.721zm240.497-240.497 5.882-1.771c3.699-1.114 7.607.985 8.721 4.684s-.985 7.607-4.684 8.721l-32.526 9.795c-2.469.743-5.146.07-6.969-1.753-1.822-1.823-2.496-4.5-1.753-6.968l9.796-32.526c1.114-3.7 5.021-5.799 8.721-4.685 3.699 1.114 5.798 5.022 4.684 8.722l-1.771 5.881 49.38-49.38c2.732-2.732 7.168-2.732 9.9 0s2.732 7.168 0 9.899zm44.859 122.299 5.412 2.906c3.403 1.828 4.682 6.076 2.854 9.479-1.828 3.404-6.075 4.683-9.479 2.855l-29.926-16.074c-2.271-1.219-3.688-3.589-3.688-6.166 0-2.578 1.417-4.947 3.688-6.167l29.926-16.074c3.404-1.828 7.651-.549 9.479 2.855 1.828 3.403.549 7.651-2.854 9.479l-5.412 2.907h69.835c3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7zm-54.758 118.198 1.771 5.882c1.114 3.699-.985 7.607-4.684 8.721-3.7 1.114-7.607-.985-8.721-4.684l-9.796-32.527c-.743-2.468-.069-5.145 1.753-6.968 1.823-1.823 4.5-2.496 6.969-1.753l32.526 9.795c3.699 1.114 5.798 5.022 4.684 8.721-1.114 3.7-5.022 5.799-8.721 4.685l-5.882-1.772 49.381 49.381c2.732 2.732 2.732 7.167 0 9.899s-7.168 2.732-9.9 0z\"></path></svg>				\n									<h5>\n							gennemtænkte løsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"outline\"><path d=\"M486.41,144A28,28,0,0,0,472,92H349.123l5.457-21.828a48.513,48.513,0,0,0-12.848-46.153A41.035,41.035,0,0,0,312.609,12H308a8.009,8.009,0,0,0-8,8V47.413l-19.233,64.112A17.376,17.376,0,0,1,268,123.539V112a4,4,0,0,0-4-4H152a4,4,0,0,0-4,4v72a4,4,0,0,0,8,0V116h72V276H156V248a4,4,0,0,0-8,0v32a4,4,0,0,0,4,4H264a4,4,0,0,0,4-4V268.5h11.168A37.07,37.07,0,0,1,305.092,279a45.025,45.025,0,0,0,31.48,12.752L440,292a27.987,27.987,0,0,0,19.369-48.2,27.987,27.987,0,0,0,16-48A28,28,0,0,0,486.41,144ZM260,276H236V116h24Zm212-88H396a4,4,0,0,0,0,8h60a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h40a20,20,0,0,1,.01,40l-103.428-.25a37.07,37.07,0,0,1-25.924-10.5,45.031,45.031,0,0,0-31.49-12.752H268V131.686a25.317,25.317,0,0,0,20.429-17.862l19.4-64.675A4,4,0,0,0,308,48V20h4.609a33.082,33.082,0,0,1,23.481,9.69,40.507,40.507,0,0,1,10.728,38.541l-6.7,26.8A4,4,0,0,0,344,100H472a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h72a20,20,0,0,1,0,40Z\"></path><path d=\"M194.5,183.243l-1.9-.217a4,4,0,0,0-4.169,2.491L184.29,195.9H135.278l-3.539-9.317a4,4,0,0,0-7.478,2.84l2.459,6.477h-8.474L68.452,156.872a4,4,0,1,0-4.935,6.3L77.6,174.209,56.961,194.48l-6.636-5.491a4,4,0,1,0-5.1,6.163L87.219,229.9a44.1,44.1,0,0,0,28.05,10.1H212a8.009,8.009,0,0,0,8-8V203.9a8.009,8.009,0,0,0-8-8h-8v-2.01A10.708,10.708,0,0,0,194.5,183.243ZM212,203.9V232H115.269a36.081,36.081,0,0,1-22.951-8.264l-29.16-24.128,20.8-20.422L114.4,203.045a4,4,0,0,0,2.468.852H187a4,4,0,0,0,3.715-2.517l3.929-9.843a2.712,2.712,0,0,1,1.356,2.35v6.01a4,4,0,0,0,4,4Z\"></path><path d=\"M223.084,484.672,200.87,469.863V346.36A44.1,44.1,0,0,0,195.327,325l-17.183-30.94a4,4,0,0,0-7,3.884l17.184,30.94a36.073,36.073,0,0,1,4.537,17.478V468H164.333a4,4,0,1,0,0,8h31.321l12,8H152.865V352a4,4,0,0,0-.358-1.655l-25.454-56A4,4,0,0,0,123.411,292H114.2a4,4,0,0,0-3.945,4.658l8.862,53.175a36.016,36.016,0,0,1-1.951,18.949L78.642,468H48.333a4,4,0,1,0,0,8H80.377L92,484H32.088L76.63,361.366a4.017,4.017,0,0,0,.183-2.044L61.1,268H136a4,4,0,0,0,0-8H59.233L30.555,173.966A19.723,19.723,0,0,1,49.27,148H76a12,12,0,0,0,24,0h15.2a21.975,21.975,0,0,1,8.395,1.652l10.889,4.458a4,4,0,1,0,3.032-7.4L126.63,142.25A29.938,29.938,0,0,0,115.2,140H100v-4.527A16.014,16.014,0,0,0,112,120V103.473A16.014,16.014,0,0,0,124,88V80a4,4,0,0,0-4-4H90A22.025,22.025,0,0,0,68,98v18a12.02,12.02,0,0,0,8,11.314V140H49.27a27.723,27.723,0,0,0-26.305,36.5l29.493,88.482,16.29,94.655-46.128,127A4,4,0,0,0,26.38,492h78.485a4,4,0,0,0,2.268-7.3L86.3,470.368l38.318-98.69a44.018,44.018,0,0,0,2.385-23.16L118.921,300h1.914l24.03,52.867V488a4,4,0,0,0,4,4h72a4,4,0,0,0,2.219-7.328ZM76,98A14.015,14.015,0,0,1,90,84h26v4a8.009,8.009,0,0,1-8,8H92a4,4,0,0,0-4,4,11.962,11.962,0,0,1-1.53,5.881A12.044,12.044,0,0,0,76,104.686Zm4,14a3.981,3.981,0,0,1,3.407,1.9,4,4,0,0,0,5.956.975c.207-.171.7-.648.7-.648.032-.028.061-.057.09-.087A19.907,19.907,0,0,0,95.6,104H104v16a8.009,8.009,0,0,1-8,8,12.133,12.133,0,0,1-2.681-.3,4,4,0,1,0-1.775,7.8c.151.035.3.06.456.091V148a4,4,0,1,1-8,0V124a4,4,0,0,0-4-4,4,4,0,0,1,0-8Z\"></path></g></svg>				\n									<h5>\n							arbejde udført med ansvar						\n					</h5>\n				<p>Vi lover ikke mere, end vi kan holde – men vi holder det, vi lover.</p>			<h2>KONTAKT OS</h2>		<p>Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.</p>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 13:23:34', '2026-01-26 13:23:34', '', 10, 'https://mrarif.me/cpnordic/?p=522', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(523, 1, '2026-01-26 13:25:39', '2026-01-26 13:25:39', '<img width=\"2560\" height=\"1157\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-scaled.png\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-scaled.png 2560w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-300x136.png 300w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-1024x463.png 1024w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-768x347.png 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-1536x694.png 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-2048x925.png 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />													<p>Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.</p>			<h5>Quick Links</h5>							<ul>\n							<li>\n											<a href=\"https://mrarif.me/cpnordic/\">\n											Hjem\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/cpnordic/tjenester/\">\n											Tjenester\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/cpnordic/referencer/\">\n											Referencer\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/cpnordic/om-os/\">\n											Om os\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/cpnordic/kontakt/\">\n											Kontakt\n											</a>\n									</li>\n						</ul>\n							<h5>Contact Info</h5>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										Location Here\n									</li>\n								<li>\n											<a href=\"tel:41600040\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										41 60 00 40\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:kontakt@cp-nordic.dk\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										kontakt@cp-nordic.dk\n											</a>\n									</li>\n						</ul>\n					<a href=\"https://www.facebook.com/cpnordic/\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"https://www.instagram.com/cpnordic/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n									<ul>\n							<li>\n										© Copyright 2026 all rights reserved\n									</li>\n						</ul>', 'Footer', '', 'inherit', 'closed', 'closed', '', '104-revision-v1', '', '', '2026-01-26 13:25:39', '2026-01-26 13:25:39', '', 104, 'https://mrarif.me/cpnordic/?p=523', 0, 'revision', '', 0),
(524, 1, '2026-01-26 13:25:58', '2026-01-26 13:25:58', '<img width=\"2560\" height=\"1157\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-scaled.png\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-scaled.png 2560w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-300x136.png 300w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-1024x463.png 1024w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-768x347.png 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-1536x694.png 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-2048x925.png 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />													<p>Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.</p>			<h5>Quick Links</h5>							<ul>\n							<li>\n											<a href=\"https://mrarif.me/cpnordic/\">\n											Hjem\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/cpnordic/tjenester/\">\n											Tjenester\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/cpnordic/referencer/\">\n											Referencer\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/cpnordic/om-os/\">\n											Om os\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/cpnordic/kontakt/\">\n											Kontakt\n											</a>\n									</li>\n						</ul>\n							<h5>Contact Info</h5>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										Location Here\n									</li>\n								<li>\n											<a href=\"tel:41600040\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										41 60 00 40\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:kontakt@cp-nordic.dk\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										kontakt@cp-nordic.dk\n											</a>\n									</li>\n						</ul>\n					<a href=\"https://www.facebook.com/cpnordic/\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"https://www.instagram.com/cpnordic/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n									<ul>\n							<li>\n										© Copyright 2026 all rights reserved\n									</li>\n						</ul>', 'Footer', '', 'inherit', 'closed', 'closed', '', '104-revision-v1', '', '', '2026-01-26 13:25:58', '2026-01-26 13:25:58', '', 104, 'https://mrarif.me/cpnordic/?p=524', 0, 'revision', '', 0),
(530, 1, '2026-01-26 13:35:48', '2026-01-26 13:35:48', '<img width=\"2560\" height=\"1157\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-scaled.png\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-scaled.png 2560w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-300x136.png 300w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-1024x463.png 1024w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-768x347.png 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-1536x694.png 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-2048x925.png 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />													<p>Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.</p>			<h5>Quick Links</h5>							<ul>\n							<li>\n											<a href=\"https://mrarif.me/cpnordic/\">\n											Hjem\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/cpnordic/tjenester/\">\n											Tjenester\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/cpnordic/referencer/\">\n											Referencer\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/cpnordic/om-os/\">\n											Om os\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/cpnordic/kontakt/\">\n											Kontakt\n											</a>\n									</li>\n						</ul>\n							<h5>Contact Info</h5>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										Fyn, Denmark\n									</li>\n								<li>\n											<a href=\"tel:41600040\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										41 60 00 40\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:kontakt@cp-nordic.dk\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										kontakt@cp-nordic.dk\n											</a>\n									</li>\n						</ul>\n					<a href=\"https://www.facebook.com/cpnordic/\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"https://www.instagram.com/cpnordic/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n									<ul>\n							<li>\n										© Copyright 2026 all rights reserved\n									</li>\n						</ul>', 'Footer', '', 'inherit', 'closed', 'closed', '', '104-revision-v1', '', '', '2026-01-26 13:35:48', '2026-01-26 13:35:48', '', 104, 'https://mrarif.me/cpnordic/?p=530', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(526, 1, '2026-01-26 13:27:50', '2026-01-26 13:27:50', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>					\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle ANMELDELSER\n					</a>\n					<h2>HVORFOR VÆLGE CP NORDIC ApS?</h2>		<p>Når du vælger CP NORDIC ApS, får du:</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 450 450\" width=\"512\"><g><g><path d=\"m225 165.2c-25.9 0-48.9-18.8-53.3-45.2-2.4-14.2.9-28.6 9.3-40.3 8.4-11.8 20.9-19.5 35.1-21.9 29.4-4.9 57.3 15 62.2 44.5 4.9 29.4-15 57.3-44.4 62.2-3 .5-6 .7-8.9.7zm-7.6-99.8c-12.2 2-22.9 8.7-30.1 18.8s-10.1 22.4-8 34.6c3.8 22.7 23.5 38.8 45.7 38.8 2.5 0 5.1-.2 7.6-.6 25.2-4.2 42.3-28.1 38.1-53.4s-28.1-42.4-53.3-38.2z\"></path><path d=\"m255.2 115c-2.1 0-3.8-1.7-3.8-3.8 0-14.6-11.8-26.4-26.4-26.4-2.1 0-3.8-1.7-3.8-3.8s1.7-3.8 3.8-3.8c18.8 0 34.1 15.3 34.1 34.1 0 2-1.8 3.7-3.9 3.7z\"></path><path d=\"m236.1 203h-22.2c-2.1 0-3.8-1.7-3.8-3.8v-14.1c-3.1-.6-6.1-1.4-9.1-2.4l-7 12.2c-1.1 1.8-3.4 2.5-5.3 1.4l-19.2-11.1c-.9-.5-1.5-1.4-1.8-2.3-.3-1-.1-2 .4-2.9l7-12.1c-2.4-2.1-4.6-4.3-6.7-6.6l-12.1 7c-1.8 1.1-4.2.4-5.2-1.4l-11.1-19.2c-1.1-1.8-.4-4.2 1.4-5.2l11.9-6.8c-1-3-1.9-6.1-2.6-9.3h-13.7c-2.1 0-3.8-1.7-3.8-3.8v-22.2c0-2.1 1.7-3.8 3.8-3.8h13.4c.6-3.2 1.4-6.4 2.4-9.5l-11.5-6.6c-1.8-1.1-2.5-3.4-1.4-5.3l11.1-19.6c.5-.9 1.4-1.5 2.3-1.8s2-.1 2.9.4l11.3 6.6c2.2-2.5 4.5-4.8 7-7l-6.5-11.3c-.5-.9-.6-1.9-.4-2.9.3-1 .9-1.8 1.8-2.3l19.2-11.1c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l6.4 11.2c3.1-1.1 6.4-1.9 9.7-2.6v-13c0-2.1 1.7-3.8 3.8-3.8h22.2c2.1 0 3.8 1.7 3.8 3.8v12.8c3.3.7 6.5 1.5 9.7 2.6l6.5-11.2c.5-.9 1.4-1.5 2.3-1.8 1-.3 2-.1 2.9.4l19.2 11.1c.9.5 1.5 1.3 1.8 2.3s.1 2-.4 2.9l-6.5 11.3c2.5 2.2 4.8 4.5 7 7.1l11.3-6.6c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l11.1 19.2c1.1 1.8.4 4.2-1.4 5.3l-11.5 6.6c1 3.1 1.8 6.3 2.5 9.5h13.6c2.1 0 3.8 1.7 3.8 3.8v22.2c0 2.1-1.7 3.8-3.8 3.8h-13.6c-.6 3.1-1.5 6.2-2.5 9.3l11.9 6.8c1.8 1.1 2.5 3.4 1.4 5.2l-11.2 19.5c-1.1 1.8-3.4 2.5-5.2 1.4l-12-7c-2.1 2.4-4.4 4.6-6.7 6.6l7 12.1c.5.9.6 1.9.4 2.9s-.9 1.8-1.8 2.3l-19.2 11.1c-1.8 1.1-4.2.4-5.2-1.4l-7-12.2c-3 1-6 1.8-9.1 2.4v14.1c-.2 2.3-2 4-4.1 4zm-18.4-7.7h14.5v-13.5c0-1.9 1.4-3.5 3.3-3.8 4.7-.7 9.4-2 13.8-3.7 1.8-.7 3.8 0 4.7 1.7l6.7 11.6 12.6-7.3-6.7-11.6c-1-1.6-.5-3.7.9-4.9 3.7-3 7.2-6.4 10.2-10.1 1.2-1.5 3.3-1.8 4.9-.9l11.5 6.6 7.3-12.6-11.3-6.5c-1.6-.9-2.4-3-1.6-4.7 1.8-4.5 3.1-9.2 3.9-14 .3-1.9 1.9-3.2 3.8-3.2h13v-14.6h-12.8c-1.9 0-3.5-1.4-3.8-3.3-.7-4.8-2-9.6-3.7-14.2-.7-1.8 0-3.7 1.7-4.7l10.9-6.3-7.3-12.6-10.8 6.3c-1.6.9-3.7.6-4.9-.9-3.1-3.9-6.6-7.4-10.4-10.6-1.5-1.2-1.9-3.3-.9-4.9l6.2-10.7-12.6-7.3-6.1 10.6c-1 1.6-3 2.3-4.7 1.7-4.6-1.8-9.5-3.1-14.4-3.9-1.9-.3-3.3-1.9-3.3-3.8v-12.2h-14.5v12.3c0 1.9-1.4 3.5-3.3 3.8-5 .8-9.8 2.1-14.4 3.9-1.8.7-3.8 0-4.7-1.7l-6.1-10.6-12.6 7.3 6.2 10.7c.9 1.6.6 3.7-.9 4.9-3.9 3.1-7.4 6.7-10.4 10.6-1.2 1.5-3.3 1.9-4.9.9l-10.8-6.3-7.3 12.6 10.9 6.3c1.6.9 2.3 2.9 1.7 4.7-1.7 4.6-3 9.4-3.7 14.2-.3 1.9-1.9 3.3-3.8 3.3h-12.8v14.5h13c1.9 0 3.5 1.4 3.8 3.2.8 4.8 2.1 9.5 3.9 14 .7 1.8 0 3.8-1.6 4.7l-11.3 6.5 7.3 12.6 11.5-6.6c1.6-.9 3.7-.6 4.9.9 3 3.7 6.5 7.1 10.3 10.1 1.5 1.2 1.9 3.3.9 4.9l-6.7 11.6 12.6 7.3 6.7-11.6c.9-1.6 2.9-2.3 4.7-1.7 4.5 1.7 9.1 2.9 13.8 3.7 1.9.3 3.3 1.9 3.3 3.8z\"></path></g><g><g><g><path d=\"m45.3 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m153.9 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path></g><g><path d=\"m189.3 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.2c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c0 2.1-1.7 3.8-3.8 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m73.3 326.4c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m126 326.4c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m99.7 325.6c-.6 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4s4.1 1.1 4.4 3.2c2.4 16.5 12.3 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m50.2 266.6c-.1 0-.2 0-.3 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.7 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-8.9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.5 2.2zm81.8-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13.1-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.4-.7 2.3-.7z\"></path></g></g></g><g><g><path d=\"m296.1 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m404.7 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path></g><g><path d=\"m440 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.1c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c.2 2.1-1.6 3.8-3.7 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m324 326.3c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m376.7 326.3c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m350.4 325.6c-.5 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4 2.1-.3 4 1.1 4.4 3.2 2.4 16.5 12.4 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m301 266.6c-.1 0-.2 0-.4 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.6 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.4 2.2zm81.7-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.5-.7 2.3-.7z\"></path></g></g></g></g></g></svg>				\n									<h5>\n							et ungt og engageret team						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"496pt\" viewBox=\"0 0 496 496\" width=\"496pt\"><path d=\"m440 328h-28.207031c5.078125-6.703125 8.207031-14.960938 8.207031-24 0-8.824219-7.175781-16-16-16h-12v-19.960938c59.574219-14.445312 104-68.085937 104-132.039062 0-74.992188-61.007812-136-136-136s-136 61.007812-136 136c0 63.953125 44.425781 117.59375 104 132.039062v19.960938h-8.449219c-6.167969 0-12.359375 1.464844-17.886719 4.214844l-50.480468 25.25c-3.320313 1.664062-7.03125 2.535156-10.734375 2.535156h-40.449219v-16h-104v16h56v56h16v-56h16v128h-16v-56h-16v56h-56v16h104v-16h40.449219c3.703125 0 7.414062.871094 10.734375 2.527344l34.488281 17.25c5.519531 2.757812 11.710937 4.222656 17.878906 4.222656h24.449219v24h64v-24h48c13.230469 0 24-10.769531 24-24 0-6.167969-2.40625-11.742188-6.238281-16 3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16 0-13.230469-10.769531-24-24-24zm8 24c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm-208-280c0-66.167969 53.832031-120 120-120s120 53.832031 120 120-53.832031 120-120 120-120-53.832031-120-120zm104 134.976562c5.257812.617188 10.574219 1.023438 16 1.023438s10.742188-.40625 16-1.023438v17.023438h-32zm-40.449219 185.023438c-3.703125 0-7.414062-.871094-10.734375-2.527344l-34.488281-17.25c-5.519531-2.757812-11.710937-4.222656-17.878906-4.222656h-40.449219v-96h40.449219c6.167969 0 12.359375-1.464844 17.886719-4.214844l50.480468-25.25c3.320313-1.664062 7.03125-2.535156 10.734375-2.535156h84.449219c0 13.230469-10.769531 24-24 24h-48.28125l-23.863281 35.808594c-6.101563 9.160156-14.527344 16.589844-24.367188 21.503906-8.753906 4.375-18.542969 6.6875-28.320312 6.6875h-15.167969v16h15.167969c12.246093 0 24.519531-2.894531 35.472656-8.375 12.328125-6.160156 22.878906-15.480469 30.527344-26.945312l6.832031-10.253907v93.574219zm40.449219 24v-136h17.472656c-.898437 2.511719-1.472656 5.183594-1.472656 8 0 6.167969 2.40625 11.742188 6.238281 16-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16 0 10.414062 6.710938 19.214844 16 22.527344v9.472656zm96-24h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8s-3.59375 8-8 8zm0 0\"></path><path d=\"m394.878906 73.007812-7.757812 13.984376c17.816406 9.878906 28.878906 28.664062 28.878906 49.007812h16c0-26.160156-14.222656-50.296875-37.121094-62.992188zm0 0\"></path><path d=\"m360 80c4.734375 0 9.449219.59375 14.007812 1.769531l3.976563-15.503906c-5.855469-1.496094-11.90625-2.265625-17.984375-2.265625zm0 0\"></path><path d=\"m360 48c48.519531 0 88 39.480469 88 88 0 20.753906-7.398438 40.910156-20.832031 56.785156l12.207031 10.34375c15.882812-18.761718 24.625-42.601562 24.625-67.128906 0-57.34375-46.65625-104-104-104-24.527344 0-48.367188 8.753906-67.128906 24.632812l10.335937 12.199219c15.871094-13.433593 36.039063-20.832031 56.792969-20.832031zm0 0\"></path><path d=\"m427.128906 215.367188-10.335937-12.199219c-15.871094 13.433593-36.039063 20.832031-56.792969 20.832031-48.519531 0-88-39.480469-88-88 0-20.753906 7.398438-40.910156 20.832031-56.785156l-12.207031-10.34375c-15.882812 18.761718-24.625 42.601562-24.625 67.128906 0 57.34375 46.65625 104 104 104 24.527344 0 48.367188-8.753906 67.128906-24.632812zm0 0\"></path><path d=\"m121.214844 165.640625c4.953125-1.375 9.695312-3.34375 14.183594-5.878906l9.769531 4.886719 19.472656-19.480469-4.886719-9.769531c2.535156-4.496094 4.503906-9.230469 5.886719-14.183594l10.359375-3.445313v-27.53125l-10.351562-3.453125c-1.375-4.953125-3.34375-9.707031-5.886719-14.183594l4.886719-9.777343-19.472657-19.472657-9.769531 4.886719c-4.484375-2.535156-9.230469-4.503906-14.183594-5.878906l-3.453125-10.359375h-27.539062l-3.445313 10.359375c-4.953125 1.375-9.695312 3.34375-14.183594 5.878906l-9.777343-4.886719-19.472657 19.472657 4.886719 9.777343c-2.535156 4.488282-4.503906 9.230469-5.886719 14.183594l-10.351562 3.445313v27.53125l10.351562 3.453125c1.375 4.953125 3.34375 9.695312 5.886719 14.183594l-4.886719 9.769531 19.472657 19.480469 9.769531-4.886719c4.484375 2.535156 9.230469 4.503906 14.183594 5.878906l3.453125 10.359375h27.539062zm-12.304688-13.679687-2.679687 8.039062h-4.460938l-2.679687-8.039062-4.554688-.90625c-6.128906-1.222657-11.878906-3.605469-17.109375-7.09375l-3.867187-2.578126-7.574219 3.800782-3.160156-3.167969 3.792969-7.582031-2.578126-3.859375c-3.488281-5.222657-5.871093-10.980469-7.09375-17.109375l-.914062-4.554688-8.03125-2.679687v-4.46875l8.03125-2.671875.914062-4.554688c1.222657-6.136718 3.613282-11.886718 7.09375-17.109375l2.578126-3.859375-3.792969-7.589844 3.160156-3.160156 7.574219 3.800782 3.867187-2.578126c5.222657-3.488281 10.980469-5.863281 17.109375-7.09375l4.554688-.90625 2.679687-8.039062h4.460938l2.679687 8.039062 4.554688.90625c6.128906 1.222657 11.878906 3.605469 17.109375 7.09375l3.867187 2.578126 7.574219-3.800782 3.160156 3.160156-3.792969 7.589844 2.578126 3.859375c3.488281 5.214844 5.871093 10.972657 7.09375 17.109375l.914062 4.554688 8.03125 2.679687v4.46875l-8.03125 2.671875-.914062 4.554688c-1.222657 6.128906-3.613282 11.878906-7.09375 17.109375l-2.578126 3.859375 3.792969 7.582031-3.160156 3.167969-7.574219-3.800782-3.867187 2.578126c-5.222657 3.488281-10.980469 5.863281-17.109375 7.09375zm0 0\"></path><path d=\"m104 72c-17.648438 0-32 14.351562-32 32s14.351562 32 32 32 32-14.351562 32-32-14.351562-32-32-32zm0 48c-8.824219 0-16-7.175781-16-16s7.175781-16 16-16 16 7.175781 16 16-7.175781 16-16 16zm0 0\"></path><path d=\"m160 248v-40h48v-208h-208v208h106.664062zm-144-232h176v176h-48v24l-32-24h-96zm0 0\"></path><path d=\"m0 272h16v16h-16zm0 0\"></path><path d=\"m32 272h16v16h-16zm0 0\"></path><path d=\"m64 272h16v16h-16zm0 0\"></path><path d=\"m32 304h16v16h-16zm0 0\"></path><path d=\"m64 304h16v16h-16zm0 0\"></path><path d=\"m0 480h16v16h-16zm0 0\"></path><path d=\"m32 480h16v16h-16zm0 0\"></path><path d=\"m64 480h16v16h-16zm0 0\"></path><path d=\"m32 448h16v16h-16zm0 0\"></path><path d=\"m64 448h16v16h-16zm0 0\"></path></svg>				\n									<h5>\n							fokus på kvalitet og detaljer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m469.12 408.93-67.26-33.63v-22.13c10.71-7.69 18.6-19.07 21.78-32.27h5.28c8.81 0 15.98-7.17 15.98-15.98v-5.29c0-6.35-3.74-11.84-9.12-14.41 5.19-18.64-1.65-39.76-19.44-59.78-12.58-14.16-30.67-22.27-49.62-22.27-18.93 0-37.01 8.12-49.59 22.27-13.38 15.05-20.95 41.01-14.03 59.62-5.56 2.5-9.45 8.09-9.45 14.57v5.29c0 8.81 7.17 15.98 15.98 15.98h5.55c3.16 13.09 10.94 24.39 21.51 32.08v22.32l-67.26 33.63c-16.7 5.87-27.89 21.6-27.89 39.28v41.63c0 3.31 2.69 6 6 6h243.46c3.31 0 6-2.69 6-6v-41.63c0-17.68-11.19-33.41-27.88-39.28zm-62.24-17.7-15.83 27.66-13.29-13.29 19.29-19.29zm-37.61 5.88-20.59-20.58v-16.91c6.41 2.57 13.4 4.01 20.72 4.01 7.22 0 14.11-1.39 20.45-3.9v16.8zm63.63-97.48v5.29c0 2.16-1.82 3.98-3.98 3.98h-3.74c.01-.36.03-.71.03-1.07v-12.18h3.71c2.15-.01 3.98 1.82 3.98 3.98zm-119.29 8.2v1.07h-3.98c-2.16 0-3.98-1.82-3.98-3.98v-5.29c0-2.16 1.82-3.98 3.98-3.98l3.98.22zm1.95-24.19c-7.33-13.69-.89-37.39 10.53-50.24 10.31-11.6 25.12-18.25 40.63-18.25 15.52 0 30.34 6.65 40.65 18.25 8.43 9.48 21.3 27.59 17.4 46.39-5.66-.35-10.67-2.55-14.4-6.36-5.37-5.49-7.72-14-6.63-23.94.29-2.62-1.17-5.13-3.6-6.17s-5.25-.37-6.95 1.65c-19.33 22.92-45.95 36.76-73.9 38.68h-3.73zm10.05 24.19v-12.73c24.57-2.92 47.92-14.05 66.73-31.8 1.43 7.26 4.63 13.6 9.45 18.52 3.27 3.35 7.14 5.89 11.41 7.58v18.42c0 24.15-19.65 43.8-43.8 43.8s-43.79-19.64-43.79-43.79zm15.89 78.48 19.29 19.29-13.29 13.29-15.84-27.66zm3.22 97.53h-39.42v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.76v-35.63c0-12.68 8.1-23.95 20.15-28.05.26-.09.51-.19.75-.31l46.47-23.23 20.07 35.06c.93 1.62 2.56 2.72 4.41 2.97.27.04.53.05.79.05 1.58 0 3.11-.62 4.24-1.76l.14-.14zm12.08 0 7.41-64.69 5.06-5.06 4.84 4.84 7.86 64.92h-25.17zm128.2 0h-39.76v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.18l-6.2-51.17.25.25c1.13 1.13 2.66 1.76 4.24 1.76.26 0 .53-.02.79-.05 1.85-.25 3.48-1.34 4.41-2.97l20.07-35.06 46.47 23.23c.24.12.49.23.75.31 12.05 4.1 20.15 15.38 20.15 28.05v35.65zm-67.04-346.65h-10.84l28.38 39.84 28.38-39.84h-10.84c-3.31 0-6-2.69-6-6v-64.58h-98.7c-3.31 0-6-2.69-6-6s2.69-6 6-6h104.7c3.31 0 6 2.69 6 6v64.58h16.48c2.25 0 4.3 1.25 5.33 3.25s.86 4.4-.45 6.23l-40.02 56.18c-1.13 1.58-2.95 2.52-4.89 2.52s-3.76-.94-4.89-2.52l-40.02-56.18c-1.3-1.83-1.48-4.23-.45-6.23s3.09-3.25 5.33-3.25h16.48v-23.5h-65.38c-3.31 0-6-2.69-6-6s2.69-6 6-6h71.38c3.31 0 6 2.69 6 6v35.5c.02 3.31-2.67 6-5.98 6zm-118.44 50.65v-133.26c0-21.18-17.23-38.41-38.41-38.41h-207.7c-21.18-.01-38.41 17.23-38.41 38.41v133.26c0 21.18 17.23 38.41 38.41 38.41h105.8l64.8 55.11c1.11.94 2.49 1.43 3.89 1.43.85 0 1.71-.18 2.52-.55 2.12-.98 3.48-3.11 3.48-5.45v-50.54h27.21c21.18 0 38.41-17.23 38.41-38.41zm-71.62 26.41c-3.31 0-6 2.69-6 6v43.56l-56.59-48.13c-1.08-.92-2.46-1.43-3.89-1.43h-108.01c-14.56 0-26.41-11.85-26.41-26.41v-133.26c0-14.56 11.85-26.41 26.41-26.41h207.69c14.56 0 26.41 11.85 26.41 26.41v133.26c0 14.56-11.85 26.41-26.41 26.41zm-156.34-87.87h56.97c3.31 0 6-2.69 6-6v-39.2l8.55-8.55c2.34-2.34 2.34-6.14 0-8.49-2.34-2.34-6.14-2.34-8.48 0l-.7.7c-.98-1.97-3.01-3.32-5.36-3.32h-56.98c-3.31 0-6 2.69-6 6v52.85c0 3.32 2.69 6.01 6 6.01zm6-52.86h44.97v2.69l-18.16 18.16-8.84-8.84c-2.34-2.34-6.14-2.34-8.49 0-2.34 2.34-2.34 6.14 0 8.49l13.08 13.08c1.17 1.17 2.71 1.76 4.24 1.76s3.07-.59 4.24-1.76l13.92-13.92v21.2h-44.96zm173.62 3.08c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 31.92c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 36.52c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.68 5.99 6zm0 31.92c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.69 5.99 6zm-119.36 165.01h10.84l-28.38-39.84-28.38 39.84h10.84c3.31 0 6 2.69 6 6v64.58h98.7c3.31 0 6 2.69 6 6s-2.69 6-6 6h-104.69c-3.31 0-6-2.69-6-6v-64.58h-16.48c-2.25 0-4.3-1.25-5.33-3.25s-.86-4.4.45-6.23l40.02-56.18c1.13-1.58 2.95-2.52 4.89-2.52s3.76.94 4.89 2.52l40.02 56.18c1.3 1.83 1.48 4.23.45 6.23s-3.09 3.25-5.33 3.25h-16.48v23.5h65.38c3.31 0 6 2.69 6 6s-2.69 6-6 6h-71.38c-3.31 0-6-2.69-6-6v-35.5c-.03-3.31 2.66-6 5.97-6z\"></path></svg>				\n									<h5>\n							ærlig<br> rådgivning						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 510 510\"><path d=\"m192.036 385.845c-4.787-46.972-19.459-64.336-30.658-82.352-8.672-13.951-15.5-28.245-15.5-54.252 0-60.242 48.865-109.109 109.135-109.109 60.242 0 109.109 48.866 109.109 109.109 0 26.007-6.828 40.301-15.5 54.252-11.199 18.016-25.871 35.38-30.658 82.352 9.985 2.864 17.345 12.101 17.345 22.975v36.44c0 13.109-10.747 23.866-23.893 23.866h-10.334v9.945c0 12.588-10.341 22.929-22.93 22.929h-46.304c-12.589 0-22.93-10.341-22.93-22.929v-9.945h-10.334c-13.146 0-23.893-10.757-23.893-23.866v-36.44c0-10.874 7.36-20.111 17.345-22.975zm111.948-.917c4.199-42.194 15.78-62.332 26.488-79.049 10.147-15.842 19.65-28.207 19.65-56.638 0-52.513-42.597-95.109-95.109-95.109-52.537 0-95.135 42.596-95.135 95.109 0 28.431 9.503 40.796 19.65 56.638 10.708 16.717 22.289 36.855 26.488 79.049zm2.554-78.61c-1.175 13.701-11.985 24.191-24.783 24.191-13.527 0-24.862-12.086-24.862-26.673v-99.328c0-14.12 11.335-26.673 24.862-26.673 11.309 0 21.031 8.139 23.975 19.497 9.12 3.904 15.688 13.438 15.688 24.78 0 1.153-.068 2.289-.201 3.403 5.078 5.326 8.283 12.802 8.283 21.117 0 6.39-1.889 12.262-5.06 17.053 1.996 4.099 3.13 8.773 3.13 13.76 0 14.1-9.065 25.697-21.032 28.873zm-16.452-109.977c-1.964-2.729-4.916-4.506-8.331-4.506-6.192 0-10.862 6.21-10.862 12.673v99.328c0 6.677 4.67 12.673 10.862 12.673 5.516 0 9.822-4.614 10.717-10.425-4.709-1.416-8.923-4.144-12.279-7.814-2.607-2.852-2.409-7.283.443-9.89 2.851-2.607 7.282-2.408 9.889.443 2.416 2.642 5.72 4.356 9.402 4.356 7.733 0 13.643-7.218 13.643-15.734s-5.91-15.734-13.643-15.734c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7 5.352 0 10.388 1.655 14.658 4.533.593-1.743.915-3.634.915-5.612 0-2.11-.366-4.128-1.036-5.972-.769.858-1.588 1.66-2.453 2.397-2.94 2.507-7.361 2.156-9.869-.784-2.507-2.939-2.155-7.361.784-9.868 2.773-2.365 4.492-6.122 4.492-10.293 0-6.072-3.705-11.374-8.898-12.467-.154-.023-.307-.052-.458-.085-.499-.08-1.01-.121-1.532-.121-2.947 0-5.591 1.389-7.515 3.525-2.585 2.87-7.015 3.101-9.886.515-2.87-2.586-3.101-7.015-.515-9.886 3.111-3.453 7.059-5.988 11.472-7.252zm-104.526 67.344c-3.171-4.791-5.06-10.663-5.06-17.053 0-8.307 3.198-15.777 8.284-21.104-.133-1.118-.202-2.258-.202-3.416 0-11.354 6.582-20.897 15.717-24.792 2.948-11.354 12.67-19.485 23.946-19.485 13.56 0 24.888 12.555 24.888 26.673v99.328c0 14.585-11.328 26.673-24.888 26.673-12.765 0-23.578-10.484-24.757-24.184-11.98-3.166-21.058-14.769-21.058-28.88 0-4.987 1.134-9.661 3.13-13.76zm9.982-23.036c-.675 1.847-1.042 3.869-1.042 5.983 0 1.978.322 3.869.915 5.612 4.27-2.878 9.306-4.533 14.658-4.533 3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7-7.733 0-13.643 7.218-13.643 15.734s5.91 15.734 13.643 15.734c3.682 0 6.986-1.714 9.402-4.356 2.607-2.851 7.038-3.05 9.889-.443 2.852 2.607 3.05 7.038.443 9.89-3.35 3.664-7.556 6.389-12.255 7.807.891 5.813 5.192 10.432 10.693 10.432 6.21 0 10.888-5.993 10.888-12.673v-99.328c0-6.466-4.678-12.673-10.888-12.673-3.404 0-6.349 1.777-8.309 4.507 4.421 1.264 8.367 3.8 11.476 7.251 2.586 2.871 2.355 7.3-.516 9.886-2.87 2.586-7.3 2.355-9.886-.515-1.926-2.138-4.574-3.525-7.54-3.525-.493 0-.976.037-1.448.108-.196.045-.395.082-.596.11-5.165 1.118-8.844 6.404-8.844 12.455 0 1.243.153 2.45.442 3.594.101.284.183.572.246.862.748 2.326 2.071 4.346 3.814 5.823 2.947 2.498 3.311 6.919.813 9.866s-6.919 3.312-9.866.814c-.878-.745-1.71-1.554-2.489-2.422zm3.042 158.279c-5.442 0-9.893 4.451-9.893 9.892v36.44c0 5.423 4.454 9.866 9.893 9.866h17.334c3.866 0 7 3.134 7 7v16.945c0 4.902 4.027 8.929 8.93 8.929h46.304c4.903 0 8.93-4.027 8.93-8.929v-16.945c0-3.866 3.134-7 7-7h17.334c5.439 0 9.893-4.443 9.893-9.866v-36.44c0-5.441-4.451-9.892-9.893-9.892zm63.416-314.093 2.907-5.412c1.828-3.403 6.075-4.683 9.479-2.854 3.403 1.828 4.682 6.075 2.854 9.479l-16.073 29.925c-1.22 2.271-3.589 3.688-6.167 3.688s-4.947-1.417-6.167-3.688l-16.073-29.925c-1.828-3.404-.549-7.651 2.854-9.479 3.404-1.829 7.651-.549 9.479 2.854l2.907 5.412v-69.835c0-3.863 3.137-7 7-7s7 3.137 7 7zm-132.198 54.758-49.381-49.381c-2.732-2.731-2.732-7.167 0-9.899s7.168-2.732 9.9 0l49.38 49.38-1.771-5.881c-1.114-3.7.985-7.608 4.684-8.722 3.7-1.114 7.607.985 8.721 4.685l9.796 32.526c.743 2.468.069 5.145-1.753 6.968-1.823 1.823-4.5 2.496-6.969 1.753l-32.526-9.795c-3.699-1.114-5.798-5.022-4.684-8.721s5.022-5.798 8.721-4.684zm-44.859 122.299h-69.835c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7h69.835l-5.412-2.907c-3.403-1.828-4.682-6.076-2.854-9.479 1.828-3.404 6.075-4.683 9.479-2.855l29.926 16.074c2.271 1.22 3.688 3.589 3.688 6.167 0 2.577-1.417 4.947-3.688 6.166l-29.926 16.074c-3.404 1.828-7.651.549-9.479-2.855-1.828-3.403-.549-7.651 2.854-9.479zm54.758 118.198-49.38 49.38c-2.732 2.732-7.168 2.732-9.9 0s-2.732-7.167 0-9.899l49.381-49.381-5.882 1.772c-3.699 1.114-7.607-.985-8.721-4.685-1.114-3.699.985-7.607 4.684-8.721l32.526-9.795c2.469-.743 5.146-.07 6.969 1.753 1.822 1.823 2.496 4.5 1.753 6.968l-9.796 32.527c-1.114 3.699-5.021 5.798-8.721 4.684-3.699-1.114-5.798-5.022-4.684-8.721zm240.497-240.497 5.882-1.771c3.699-1.114 7.607.985 8.721 4.684s-.985 7.607-4.684 8.721l-32.526 9.795c-2.469.743-5.146.07-6.969-1.753-1.822-1.823-2.496-4.5-1.753-6.968l9.796-32.526c1.114-3.7 5.021-5.799 8.721-4.685 3.699 1.114 5.798 5.022 4.684 8.722l-1.771 5.881 49.38-49.38c2.732-2.732 7.168-2.732 9.9 0s2.732 7.168 0 9.899zm44.859 122.299 5.412 2.906c3.403 1.828 4.682 6.076 2.854 9.479-1.828 3.404-6.075 4.683-9.479 2.855l-29.926-16.074c-2.271-1.219-3.688-3.589-3.688-6.166 0-2.578 1.417-4.947 3.688-6.167l29.926-16.074c3.404-1.828 7.651-.549 9.479 2.855 1.828 3.403.549 7.651-2.854 9.479l-5.412 2.907h69.835c3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7zm-54.758 118.198 1.771 5.882c1.114 3.699-.985 7.607-4.684 8.721-3.7 1.114-7.607-.985-8.721-4.684l-9.796-32.527c-.743-2.468-.069-5.145 1.753-6.968 1.823-1.823 4.5-2.496 6.969-1.753l32.526 9.795c3.699 1.114 5.798 5.022 4.684 8.721-1.114 3.7-5.022 5.799-8.721 4.685l-5.882-1.772 49.381 49.381c2.732 2.732 2.732 7.167 0 9.899s-7.168 2.732-9.9 0z\"></path></svg>				\n									<h5>\n							gennemtænkte løsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"outline\"><path d=\"M486.41,144A28,28,0,0,0,472,92H349.123l5.457-21.828a48.513,48.513,0,0,0-12.848-46.153A41.035,41.035,0,0,0,312.609,12H308a8.009,8.009,0,0,0-8,8V47.413l-19.233,64.112A17.376,17.376,0,0,1,268,123.539V112a4,4,0,0,0-4-4H152a4,4,0,0,0-4,4v72a4,4,0,0,0,8,0V116h72V276H156V248a4,4,0,0,0-8,0v32a4,4,0,0,0,4,4H264a4,4,0,0,0,4-4V268.5h11.168A37.07,37.07,0,0,1,305.092,279a45.025,45.025,0,0,0,31.48,12.752L440,292a27.987,27.987,0,0,0,19.369-48.2,27.987,27.987,0,0,0,16-48A28,28,0,0,0,486.41,144ZM260,276H236V116h24Zm212-88H396a4,4,0,0,0,0,8h60a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h40a20,20,0,0,1,.01,40l-103.428-.25a37.07,37.07,0,0,1-25.924-10.5,45.031,45.031,0,0,0-31.49-12.752H268V131.686a25.317,25.317,0,0,0,20.429-17.862l19.4-64.675A4,4,0,0,0,308,48V20h4.609a33.082,33.082,0,0,1,23.481,9.69,40.507,40.507,0,0,1,10.728,38.541l-6.7,26.8A4,4,0,0,0,344,100H472a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h72a20,20,0,0,1,0,40Z\"></path><path d=\"M194.5,183.243l-1.9-.217a4,4,0,0,0-4.169,2.491L184.29,195.9H135.278l-3.539-9.317a4,4,0,0,0-7.478,2.84l2.459,6.477h-8.474L68.452,156.872a4,4,0,1,0-4.935,6.3L77.6,174.209,56.961,194.48l-6.636-5.491a4,4,0,1,0-5.1,6.163L87.219,229.9a44.1,44.1,0,0,0,28.05,10.1H212a8.009,8.009,0,0,0,8-8V203.9a8.009,8.009,0,0,0-8-8h-8v-2.01A10.708,10.708,0,0,0,194.5,183.243ZM212,203.9V232H115.269a36.081,36.081,0,0,1-22.951-8.264l-29.16-24.128,20.8-20.422L114.4,203.045a4,4,0,0,0,2.468.852H187a4,4,0,0,0,3.715-2.517l3.929-9.843a2.712,2.712,0,0,1,1.356,2.35v6.01a4,4,0,0,0,4,4Z\"></path><path d=\"M223.084,484.672,200.87,469.863V346.36A44.1,44.1,0,0,0,195.327,325l-17.183-30.94a4,4,0,0,0-7,3.884l17.184,30.94a36.073,36.073,0,0,1,4.537,17.478V468H164.333a4,4,0,1,0,0,8h31.321l12,8H152.865V352a4,4,0,0,0-.358-1.655l-25.454-56A4,4,0,0,0,123.411,292H114.2a4,4,0,0,0-3.945,4.658l8.862,53.175a36.016,36.016,0,0,1-1.951,18.949L78.642,468H48.333a4,4,0,1,0,0,8H80.377L92,484H32.088L76.63,361.366a4.017,4.017,0,0,0,.183-2.044L61.1,268H136a4,4,0,0,0,0-8H59.233L30.555,173.966A19.723,19.723,0,0,1,49.27,148H76a12,12,0,0,0,24,0h15.2a21.975,21.975,0,0,1,8.395,1.652l10.889,4.458a4,4,0,1,0,3.032-7.4L126.63,142.25A29.938,29.938,0,0,0,115.2,140H100v-4.527A16.014,16.014,0,0,0,112,120V103.473A16.014,16.014,0,0,0,124,88V80a4,4,0,0,0-4-4H90A22.025,22.025,0,0,0,68,98v18a12.02,12.02,0,0,0,8,11.314V140H49.27a27.723,27.723,0,0,0-26.305,36.5l29.493,88.482,16.29,94.655-46.128,127A4,4,0,0,0,26.38,492h78.485a4,4,0,0,0,2.268-7.3L86.3,470.368l38.318-98.69a44.018,44.018,0,0,0,2.385-23.16L118.921,300h1.914l24.03,52.867V488a4,4,0,0,0,4,4h72a4,4,0,0,0,2.219-7.328ZM76,98A14.015,14.015,0,0,1,90,84h26v4a8.009,8.009,0,0,1-8,8H92a4,4,0,0,0-4,4,11.962,11.962,0,0,1-1.53,5.881A12.044,12.044,0,0,0,76,104.686Zm4,14a3.981,3.981,0,0,1,3.407,1.9,4,4,0,0,0,5.956.975c.207-.171.7-.648.7-.648.032-.028.061-.057.09-.087A19.907,19.907,0,0,0,95.6,104H104v16a8.009,8.009,0,0,1-8,8,12.133,12.133,0,0,1-2.681-.3,4,4,0,1,0-1.775,7.8c.151.035.3.06.456.091V148a4,4,0,1,1-8,0V124a4,4,0,0,0-4-4,4,4,0,0,1,0-8Z\"></path></g></svg>				\n									<h5>\n							arbejde udført med ansvar						\n					</h5>\n				<p>Vi lover ikke mere, end vi kan holde – men vi holder det, vi lover.</p>			<h2>KONTAKT OS</h2>		<p>Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.</p>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 13:27:50', '2026-01-26 13:27:50', '', 10, 'https://mrarif.me/cpnordic/?p=526', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(527, 1, '2026-01-26 13:27:50', '2026-01-26 13:27:50', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>					\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle ANMELDELSER\n					</a>\n					<h2>HVORFOR VÆLGE CP NORDIC ApS?</h2>		<p>Når du vælger CP NORDIC ApS, får du:</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 450 450\" width=\"512\"><g><g><path d=\"m225 165.2c-25.9 0-48.9-18.8-53.3-45.2-2.4-14.2.9-28.6 9.3-40.3 8.4-11.8 20.9-19.5 35.1-21.9 29.4-4.9 57.3 15 62.2 44.5 4.9 29.4-15 57.3-44.4 62.2-3 .5-6 .7-8.9.7zm-7.6-99.8c-12.2 2-22.9 8.7-30.1 18.8s-10.1 22.4-8 34.6c3.8 22.7 23.5 38.8 45.7 38.8 2.5 0 5.1-.2 7.6-.6 25.2-4.2 42.3-28.1 38.1-53.4s-28.1-42.4-53.3-38.2z\"></path><path d=\"m255.2 115c-2.1 0-3.8-1.7-3.8-3.8 0-14.6-11.8-26.4-26.4-26.4-2.1 0-3.8-1.7-3.8-3.8s1.7-3.8 3.8-3.8c18.8 0 34.1 15.3 34.1 34.1 0 2-1.8 3.7-3.9 3.7z\"></path><path d=\"m236.1 203h-22.2c-2.1 0-3.8-1.7-3.8-3.8v-14.1c-3.1-.6-6.1-1.4-9.1-2.4l-7 12.2c-1.1 1.8-3.4 2.5-5.3 1.4l-19.2-11.1c-.9-.5-1.5-1.4-1.8-2.3-.3-1-.1-2 .4-2.9l7-12.1c-2.4-2.1-4.6-4.3-6.7-6.6l-12.1 7c-1.8 1.1-4.2.4-5.2-1.4l-11.1-19.2c-1.1-1.8-.4-4.2 1.4-5.2l11.9-6.8c-1-3-1.9-6.1-2.6-9.3h-13.7c-2.1 0-3.8-1.7-3.8-3.8v-22.2c0-2.1 1.7-3.8 3.8-3.8h13.4c.6-3.2 1.4-6.4 2.4-9.5l-11.5-6.6c-1.8-1.1-2.5-3.4-1.4-5.3l11.1-19.6c.5-.9 1.4-1.5 2.3-1.8s2-.1 2.9.4l11.3 6.6c2.2-2.5 4.5-4.8 7-7l-6.5-11.3c-.5-.9-.6-1.9-.4-2.9.3-1 .9-1.8 1.8-2.3l19.2-11.1c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l6.4 11.2c3.1-1.1 6.4-1.9 9.7-2.6v-13c0-2.1 1.7-3.8 3.8-3.8h22.2c2.1 0 3.8 1.7 3.8 3.8v12.8c3.3.7 6.5 1.5 9.7 2.6l6.5-11.2c.5-.9 1.4-1.5 2.3-1.8 1-.3 2-.1 2.9.4l19.2 11.1c.9.5 1.5 1.3 1.8 2.3s.1 2-.4 2.9l-6.5 11.3c2.5 2.2 4.8 4.5 7 7.1l11.3-6.6c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l11.1 19.2c1.1 1.8.4 4.2-1.4 5.3l-11.5 6.6c1 3.1 1.8 6.3 2.5 9.5h13.6c2.1 0 3.8 1.7 3.8 3.8v22.2c0 2.1-1.7 3.8-3.8 3.8h-13.6c-.6 3.1-1.5 6.2-2.5 9.3l11.9 6.8c1.8 1.1 2.5 3.4 1.4 5.2l-11.2 19.5c-1.1 1.8-3.4 2.5-5.2 1.4l-12-7c-2.1 2.4-4.4 4.6-6.7 6.6l7 12.1c.5.9.6 1.9.4 2.9s-.9 1.8-1.8 2.3l-19.2 11.1c-1.8 1.1-4.2.4-5.2-1.4l-7-12.2c-3 1-6 1.8-9.1 2.4v14.1c-.2 2.3-2 4-4.1 4zm-18.4-7.7h14.5v-13.5c0-1.9 1.4-3.5 3.3-3.8 4.7-.7 9.4-2 13.8-3.7 1.8-.7 3.8 0 4.7 1.7l6.7 11.6 12.6-7.3-6.7-11.6c-1-1.6-.5-3.7.9-4.9 3.7-3 7.2-6.4 10.2-10.1 1.2-1.5 3.3-1.8 4.9-.9l11.5 6.6 7.3-12.6-11.3-6.5c-1.6-.9-2.4-3-1.6-4.7 1.8-4.5 3.1-9.2 3.9-14 .3-1.9 1.9-3.2 3.8-3.2h13v-14.6h-12.8c-1.9 0-3.5-1.4-3.8-3.3-.7-4.8-2-9.6-3.7-14.2-.7-1.8 0-3.7 1.7-4.7l10.9-6.3-7.3-12.6-10.8 6.3c-1.6.9-3.7.6-4.9-.9-3.1-3.9-6.6-7.4-10.4-10.6-1.5-1.2-1.9-3.3-.9-4.9l6.2-10.7-12.6-7.3-6.1 10.6c-1 1.6-3 2.3-4.7 1.7-4.6-1.8-9.5-3.1-14.4-3.9-1.9-.3-3.3-1.9-3.3-3.8v-12.2h-14.5v12.3c0 1.9-1.4 3.5-3.3 3.8-5 .8-9.8 2.1-14.4 3.9-1.8.7-3.8 0-4.7-1.7l-6.1-10.6-12.6 7.3 6.2 10.7c.9 1.6.6 3.7-.9 4.9-3.9 3.1-7.4 6.7-10.4 10.6-1.2 1.5-3.3 1.9-4.9.9l-10.8-6.3-7.3 12.6 10.9 6.3c1.6.9 2.3 2.9 1.7 4.7-1.7 4.6-3 9.4-3.7 14.2-.3 1.9-1.9 3.3-3.8 3.3h-12.8v14.5h13c1.9 0 3.5 1.4 3.8 3.2.8 4.8 2.1 9.5 3.9 14 .7 1.8 0 3.8-1.6 4.7l-11.3 6.5 7.3 12.6 11.5-6.6c1.6-.9 3.7-.6 4.9.9 3 3.7 6.5 7.1 10.3 10.1 1.5 1.2 1.9 3.3.9 4.9l-6.7 11.6 12.6 7.3 6.7-11.6c.9-1.6 2.9-2.3 4.7-1.7 4.5 1.7 9.1 2.9 13.8 3.7 1.9.3 3.3 1.9 3.3 3.8z\"></path></g><g><g><g><path d=\"m45.3 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m153.9 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path></g><g><path d=\"m189.3 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.2c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c0 2.1-1.7 3.8-3.8 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m73.3 326.4c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m126 326.4c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m99.7 325.6c-.6 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4s4.1 1.1 4.4 3.2c2.4 16.5 12.3 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m50.2 266.6c-.1 0-.2 0-.3 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.7 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-8.9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.5 2.2zm81.8-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13.1-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.4-.7 2.3-.7z\"></path></g></g></g><g><g><path d=\"m296.1 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m404.7 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path></g><g><path d=\"m440 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.1c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c.2 2.1-1.6 3.8-3.7 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m324 326.3c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m376.7 326.3c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m350.4 325.6c-.5 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4 2.1-.3 4 1.1 4.4 3.2 2.4 16.5 12.4 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m301 266.6c-.1 0-.2 0-.4 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.6 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.4 2.2zm81.7-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.5-.7 2.3-.7z\"></path></g></g></g></g></g></svg>				\n									<h5>\n							et ungt og engageret team						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"496pt\" viewBox=\"0 0 496 496\" width=\"496pt\"><path d=\"m440 328h-28.207031c5.078125-6.703125 8.207031-14.960938 8.207031-24 0-8.824219-7.175781-16-16-16h-12v-19.960938c59.574219-14.445312 104-68.085937 104-132.039062 0-74.992188-61.007812-136-136-136s-136 61.007812-136 136c0 63.953125 44.425781 117.59375 104 132.039062v19.960938h-8.449219c-6.167969 0-12.359375 1.464844-17.886719 4.214844l-50.480468 25.25c-3.320313 1.664062-7.03125 2.535156-10.734375 2.535156h-40.449219v-16h-104v16h56v56h16v-56h16v128h-16v-56h-16v56h-56v16h104v-16h40.449219c3.703125 0 7.414062.871094 10.734375 2.527344l34.488281 17.25c5.519531 2.757812 11.710937 4.222656 17.878906 4.222656h24.449219v24h64v-24h48c13.230469 0 24-10.769531 24-24 0-6.167969-2.40625-11.742188-6.238281-16 3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16 0-13.230469-10.769531-24-24-24zm8 24c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm-208-280c0-66.167969 53.832031-120 120-120s120 53.832031 120 120-53.832031 120-120 120-120-53.832031-120-120zm104 134.976562c5.257812.617188 10.574219 1.023438 16 1.023438s10.742188-.40625 16-1.023438v17.023438h-32zm-40.449219 185.023438c-3.703125 0-7.414062-.871094-10.734375-2.527344l-34.488281-17.25c-5.519531-2.757812-11.710937-4.222656-17.878906-4.222656h-40.449219v-96h40.449219c6.167969 0 12.359375-1.464844 17.886719-4.214844l50.480468-25.25c3.320313-1.664062 7.03125-2.535156 10.734375-2.535156h84.449219c0 13.230469-10.769531 24-24 24h-48.28125l-23.863281 35.808594c-6.101563 9.160156-14.527344 16.589844-24.367188 21.503906-8.753906 4.375-18.542969 6.6875-28.320312 6.6875h-15.167969v16h15.167969c12.246093 0 24.519531-2.894531 35.472656-8.375 12.328125-6.160156 22.878906-15.480469 30.527344-26.945312l6.832031-10.253907v93.574219zm40.449219 24v-136h17.472656c-.898437 2.511719-1.472656 5.183594-1.472656 8 0 6.167969 2.40625 11.742188 6.238281 16-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16 0 10.414062 6.710938 19.214844 16 22.527344v9.472656zm96-24h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8s-3.59375 8-8 8zm0 0\"></path><path d=\"m394.878906 73.007812-7.757812 13.984376c17.816406 9.878906 28.878906 28.664062 28.878906 49.007812h16c0-26.160156-14.222656-50.296875-37.121094-62.992188zm0 0\"></path><path d=\"m360 80c4.734375 0 9.449219.59375 14.007812 1.769531l3.976563-15.503906c-5.855469-1.496094-11.90625-2.265625-17.984375-2.265625zm0 0\"></path><path d=\"m360 48c48.519531 0 88 39.480469 88 88 0 20.753906-7.398438 40.910156-20.832031 56.785156l12.207031 10.34375c15.882812-18.761718 24.625-42.601562 24.625-67.128906 0-57.34375-46.65625-104-104-104-24.527344 0-48.367188 8.753906-67.128906 24.632812l10.335937 12.199219c15.871094-13.433593 36.039063-20.832031 56.792969-20.832031zm0 0\"></path><path d=\"m427.128906 215.367188-10.335937-12.199219c-15.871094 13.433593-36.039063 20.832031-56.792969 20.832031-48.519531 0-88-39.480469-88-88 0-20.753906 7.398438-40.910156 20.832031-56.785156l-12.207031-10.34375c-15.882812 18.761718-24.625 42.601562-24.625 67.128906 0 57.34375 46.65625 104 104 104 24.527344 0 48.367188-8.753906 67.128906-24.632812zm0 0\"></path><path d=\"m121.214844 165.640625c4.953125-1.375 9.695312-3.34375 14.183594-5.878906l9.769531 4.886719 19.472656-19.480469-4.886719-9.769531c2.535156-4.496094 4.503906-9.230469 5.886719-14.183594l10.359375-3.445313v-27.53125l-10.351562-3.453125c-1.375-4.953125-3.34375-9.707031-5.886719-14.183594l4.886719-9.777343-19.472657-19.472657-9.769531 4.886719c-4.484375-2.535156-9.230469-4.503906-14.183594-5.878906l-3.453125-10.359375h-27.539062l-3.445313 10.359375c-4.953125 1.375-9.695312 3.34375-14.183594 5.878906l-9.777343-4.886719-19.472657 19.472657 4.886719 9.777343c-2.535156 4.488282-4.503906 9.230469-5.886719 14.183594l-10.351562 3.445313v27.53125l10.351562 3.453125c1.375 4.953125 3.34375 9.695312 5.886719 14.183594l-4.886719 9.769531 19.472657 19.480469 9.769531-4.886719c4.484375 2.535156 9.230469 4.503906 14.183594 5.878906l3.453125 10.359375h27.539062zm-12.304688-13.679687-2.679687 8.039062h-4.460938l-2.679687-8.039062-4.554688-.90625c-6.128906-1.222657-11.878906-3.605469-17.109375-7.09375l-3.867187-2.578126-7.574219 3.800782-3.160156-3.167969 3.792969-7.582031-2.578126-3.859375c-3.488281-5.222657-5.871093-10.980469-7.09375-17.109375l-.914062-4.554688-8.03125-2.679687v-4.46875l8.03125-2.671875.914062-4.554688c1.222657-6.136718 3.613282-11.886718 7.09375-17.109375l2.578126-3.859375-3.792969-7.589844 3.160156-3.160156 7.574219 3.800782 3.867187-2.578126c5.222657-3.488281 10.980469-5.863281 17.109375-7.09375l4.554688-.90625 2.679687-8.039062h4.460938l2.679687 8.039062 4.554688.90625c6.128906 1.222657 11.878906 3.605469 17.109375 7.09375l3.867187 2.578126 7.574219-3.800782 3.160156 3.160156-3.792969 7.589844 2.578126 3.859375c3.488281 5.214844 5.871093 10.972657 7.09375 17.109375l.914062 4.554688 8.03125 2.679687v4.46875l-8.03125 2.671875-.914062 4.554688c-1.222657 6.128906-3.613282 11.878906-7.09375 17.109375l-2.578126 3.859375 3.792969 7.582031-3.160156 3.167969-7.574219-3.800782-3.867187 2.578126c-5.222657 3.488281-10.980469 5.863281-17.109375 7.09375zm0 0\"></path><path d=\"m104 72c-17.648438 0-32 14.351562-32 32s14.351562 32 32 32 32-14.351562 32-32-14.351562-32-32-32zm0 48c-8.824219 0-16-7.175781-16-16s7.175781-16 16-16 16 7.175781 16 16-7.175781 16-16 16zm0 0\"></path><path d=\"m160 248v-40h48v-208h-208v208h106.664062zm-144-232h176v176h-48v24l-32-24h-96zm0 0\"></path><path d=\"m0 272h16v16h-16zm0 0\"></path><path d=\"m32 272h16v16h-16zm0 0\"></path><path d=\"m64 272h16v16h-16zm0 0\"></path><path d=\"m32 304h16v16h-16zm0 0\"></path><path d=\"m64 304h16v16h-16zm0 0\"></path><path d=\"m0 480h16v16h-16zm0 0\"></path><path d=\"m32 480h16v16h-16zm0 0\"></path><path d=\"m64 480h16v16h-16zm0 0\"></path><path d=\"m32 448h16v16h-16zm0 0\"></path><path d=\"m64 448h16v16h-16zm0 0\"></path></svg>				\n									<h5>\n							fokus på kvalitet og detaljer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m469.12 408.93-67.26-33.63v-22.13c10.71-7.69 18.6-19.07 21.78-32.27h5.28c8.81 0 15.98-7.17 15.98-15.98v-5.29c0-6.35-3.74-11.84-9.12-14.41 5.19-18.64-1.65-39.76-19.44-59.78-12.58-14.16-30.67-22.27-49.62-22.27-18.93 0-37.01 8.12-49.59 22.27-13.38 15.05-20.95 41.01-14.03 59.62-5.56 2.5-9.45 8.09-9.45 14.57v5.29c0 8.81 7.17 15.98 15.98 15.98h5.55c3.16 13.09 10.94 24.39 21.51 32.08v22.32l-67.26 33.63c-16.7 5.87-27.89 21.6-27.89 39.28v41.63c0 3.31 2.69 6 6 6h243.46c3.31 0 6-2.69 6-6v-41.63c0-17.68-11.19-33.41-27.88-39.28zm-62.24-17.7-15.83 27.66-13.29-13.29 19.29-19.29zm-37.61 5.88-20.59-20.58v-16.91c6.41 2.57 13.4 4.01 20.72 4.01 7.22 0 14.11-1.39 20.45-3.9v16.8zm63.63-97.48v5.29c0 2.16-1.82 3.98-3.98 3.98h-3.74c.01-.36.03-.71.03-1.07v-12.18h3.71c2.15-.01 3.98 1.82 3.98 3.98zm-119.29 8.2v1.07h-3.98c-2.16 0-3.98-1.82-3.98-3.98v-5.29c0-2.16 1.82-3.98 3.98-3.98l3.98.22zm1.95-24.19c-7.33-13.69-.89-37.39 10.53-50.24 10.31-11.6 25.12-18.25 40.63-18.25 15.52 0 30.34 6.65 40.65 18.25 8.43 9.48 21.3 27.59 17.4 46.39-5.66-.35-10.67-2.55-14.4-6.36-5.37-5.49-7.72-14-6.63-23.94.29-2.62-1.17-5.13-3.6-6.17s-5.25-.37-6.95 1.65c-19.33 22.92-45.95 36.76-73.9 38.68h-3.73zm10.05 24.19v-12.73c24.57-2.92 47.92-14.05 66.73-31.8 1.43 7.26 4.63 13.6 9.45 18.52 3.27 3.35 7.14 5.89 11.41 7.58v18.42c0 24.15-19.65 43.8-43.8 43.8s-43.79-19.64-43.79-43.79zm15.89 78.48 19.29 19.29-13.29 13.29-15.84-27.66zm3.22 97.53h-39.42v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.76v-35.63c0-12.68 8.1-23.95 20.15-28.05.26-.09.51-.19.75-.31l46.47-23.23 20.07 35.06c.93 1.62 2.56 2.72 4.41 2.97.27.04.53.05.79.05 1.58 0 3.11-.62 4.24-1.76l.14-.14zm12.08 0 7.41-64.69 5.06-5.06 4.84 4.84 7.86 64.92h-25.17zm128.2 0h-39.76v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.18l-6.2-51.17.25.25c1.13 1.13 2.66 1.76 4.24 1.76.26 0 .53-.02.79-.05 1.85-.25 3.48-1.34 4.41-2.97l20.07-35.06 46.47 23.23c.24.12.49.23.75.31 12.05 4.1 20.15 15.38 20.15 28.05v35.65zm-67.04-346.65h-10.84l28.38 39.84 28.38-39.84h-10.84c-3.31 0-6-2.69-6-6v-64.58h-98.7c-3.31 0-6-2.69-6-6s2.69-6 6-6h104.7c3.31 0 6 2.69 6 6v64.58h16.48c2.25 0 4.3 1.25 5.33 3.25s.86 4.4-.45 6.23l-40.02 56.18c-1.13 1.58-2.95 2.52-4.89 2.52s-3.76-.94-4.89-2.52l-40.02-56.18c-1.3-1.83-1.48-4.23-.45-6.23s3.09-3.25 5.33-3.25h16.48v-23.5h-65.38c-3.31 0-6-2.69-6-6s2.69-6 6-6h71.38c3.31 0 6 2.69 6 6v35.5c.02 3.31-2.67 6-5.98 6zm-118.44 50.65v-133.26c0-21.18-17.23-38.41-38.41-38.41h-207.7c-21.18-.01-38.41 17.23-38.41 38.41v133.26c0 21.18 17.23 38.41 38.41 38.41h105.8l64.8 55.11c1.11.94 2.49 1.43 3.89 1.43.85 0 1.71-.18 2.52-.55 2.12-.98 3.48-3.11 3.48-5.45v-50.54h27.21c21.18 0 38.41-17.23 38.41-38.41zm-71.62 26.41c-3.31 0-6 2.69-6 6v43.56l-56.59-48.13c-1.08-.92-2.46-1.43-3.89-1.43h-108.01c-14.56 0-26.41-11.85-26.41-26.41v-133.26c0-14.56 11.85-26.41 26.41-26.41h207.69c14.56 0 26.41 11.85 26.41 26.41v133.26c0 14.56-11.85 26.41-26.41 26.41zm-156.34-87.87h56.97c3.31 0 6-2.69 6-6v-39.2l8.55-8.55c2.34-2.34 2.34-6.14 0-8.49-2.34-2.34-6.14-2.34-8.48 0l-.7.7c-.98-1.97-3.01-3.32-5.36-3.32h-56.98c-3.31 0-6 2.69-6 6v52.85c0 3.32 2.69 6.01 6 6.01zm6-52.86h44.97v2.69l-18.16 18.16-8.84-8.84c-2.34-2.34-6.14-2.34-8.49 0-2.34 2.34-2.34 6.14 0 8.49l13.08 13.08c1.17 1.17 2.71 1.76 4.24 1.76s3.07-.59 4.24-1.76l13.92-13.92v21.2h-44.96zm173.62 3.08c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 31.92c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 36.52c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.68 5.99 6zm0 31.92c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.69 5.99 6zm-119.36 165.01h10.84l-28.38-39.84-28.38 39.84h10.84c3.31 0 6 2.69 6 6v64.58h98.7c3.31 0 6 2.69 6 6s-2.69 6-6 6h-104.69c-3.31 0-6-2.69-6-6v-64.58h-16.48c-2.25 0-4.3-1.25-5.33-3.25s-.86-4.4.45-6.23l40.02-56.18c1.13-1.58 2.95-2.52 4.89-2.52s3.76.94 4.89 2.52l40.02 56.18c1.3 1.83 1.48 4.23.45 6.23s-3.09 3.25-5.33 3.25h-16.48v23.5h65.38c3.31 0 6 2.69 6 6s-2.69 6-6 6h-71.38c-3.31 0-6-2.69-6-6v-35.5c-.03-3.31 2.66-6 5.97-6z\"></path></svg>				\n									<h5>\n							ærlig<br> rådgivning						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 510 510\"><path d=\"m192.036 385.845c-4.787-46.972-19.459-64.336-30.658-82.352-8.672-13.951-15.5-28.245-15.5-54.252 0-60.242 48.865-109.109 109.135-109.109 60.242 0 109.109 48.866 109.109 109.109 0 26.007-6.828 40.301-15.5 54.252-11.199 18.016-25.871 35.38-30.658 82.352 9.985 2.864 17.345 12.101 17.345 22.975v36.44c0 13.109-10.747 23.866-23.893 23.866h-10.334v9.945c0 12.588-10.341 22.929-22.93 22.929h-46.304c-12.589 0-22.93-10.341-22.93-22.929v-9.945h-10.334c-13.146 0-23.893-10.757-23.893-23.866v-36.44c0-10.874 7.36-20.111 17.345-22.975zm111.948-.917c4.199-42.194 15.78-62.332 26.488-79.049 10.147-15.842 19.65-28.207 19.65-56.638 0-52.513-42.597-95.109-95.109-95.109-52.537 0-95.135 42.596-95.135 95.109 0 28.431 9.503 40.796 19.65 56.638 10.708 16.717 22.289 36.855 26.488 79.049zm2.554-78.61c-1.175 13.701-11.985 24.191-24.783 24.191-13.527 0-24.862-12.086-24.862-26.673v-99.328c0-14.12 11.335-26.673 24.862-26.673 11.309 0 21.031 8.139 23.975 19.497 9.12 3.904 15.688 13.438 15.688 24.78 0 1.153-.068 2.289-.201 3.403 5.078 5.326 8.283 12.802 8.283 21.117 0 6.39-1.889 12.262-5.06 17.053 1.996 4.099 3.13 8.773 3.13 13.76 0 14.1-9.065 25.697-21.032 28.873zm-16.452-109.977c-1.964-2.729-4.916-4.506-8.331-4.506-6.192 0-10.862 6.21-10.862 12.673v99.328c0 6.677 4.67 12.673 10.862 12.673 5.516 0 9.822-4.614 10.717-10.425-4.709-1.416-8.923-4.144-12.279-7.814-2.607-2.852-2.409-7.283.443-9.89 2.851-2.607 7.282-2.408 9.889.443 2.416 2.642 5.72 4.356 9.402 4.356 7.733 0 13.643-7.218 13.643-15.734s-5.91-15.734-13.643-15.734c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7 5.352 0 10.388 1.655 14.658 4.533.593-1.743.915-3.634.915-5.612 0-2.11-.366-4.128-1.036-5.972-.769.858-1.588 1.66-2.453 2.397-2.94 2.507-7.361 2.156-9.869-.784-2.507-2.939-2.155-7.361.784-9.868 2.773-2.365 4.492-6.122 4.492-10.293 0-6.072-3.705-11.374-8.898-12.467-.154-.023-.307-.052-.458-.085-.499-.08-1.01-.121-1.532-.121-2.947 0-5.591 1.389-7.515 3.525-2.585 2.87-7.015 3.101-9.886.515-2.87-2.586-3.101-7.015-.515-9.886 3.111-3.453 7.059-5.988 11.472-7.252zm-104.526 67.344c-3.171-4.791-5.06-10.663-5.06-17.053 0-8.307 3.198-15.777 8.284-21.104-.133-1.118-.202-2.258-.202-3.416 0-11.354 6.582-20.897 15.717-24.792 2.948-11.354 12.67-19.485 23.946-19.485 13.56 0 24.888 12.555 24.888 26.673v99.328c0 14.585-11.328 26.673-24.888 26.673-12.765 0-23.578-10.484-24.757-24.184-11.98-3.166-21.058-14.769-21.058-28.88 0-4.987 1.134-9.661 3.13-13.76zm9.982-23.036c-.675 1.847-1.042 3.869-1.042 5.983 0 1.978.322 3.869.915 5.612 4.27-2.878 9.306-4.533 14.658-4.533 3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7-7.733 0-13.643 7.218-13.643 15.734s5.91 15.734 13.643 15.734c3.682 0 6.986-1.714 9.402-4.356 2.607-2.851 7.038-3.05 9.889-.443 2.852 2.607 3.05 7.038.443 9.89-3.35 3.664-7.556 6.389-12.255 7.807.891 5.813 5.192 10.432 10.693 10.432 6.21 0 10.888-5.993 10.888-12.673v-99.328c0-6.466-4.678-12.673-10.888-12.673-3.404 0-6.349 1.777-8.309 4.507 4.421 1.264 8.367 3.8 11.476 7.251 2.586 2.871 2.355 7.3-.516 9.886-2.87 2.586-7.3 2.355-9.886-.515-1.926-2.138-4.574-3.525-7.54-3.525-.493 0-.976.037-1.448.108-.196.045-.395.082-.596.11-5.165 1.118-8.844 6.404-8.844 12.455 0 1.243.153 2.45.442 3.594.101.284.183.572.246.862.748 2.326 2.071 4.346 3.814 5.823 2.947 2.498 3.311 6.919.813 9.866s-6.919 3.312-9.866.814c-.878-.745-1.71-1.554-2.489-2.422zm3.042 158.279c-5.442 0-9.893 4.451-9.893 9.892v36.44c0 5.423 4.454 9.866 9.893 9.866h17.334c3.866 0 7 3.134 7 7v16.945c0 4.902 4.027 8.929 8.93 8.929h46.304c4.903 0 8.93-4.027 8.93-8.929v-16.945c0-3.866 3.134-7 7-7h17.334c5.439 0 9.893-4.443 9.893-9.866v-36.44c0-5.441-4.451-9.892-9.893-9.892zm63.416-314.093 2.907-5.412c1.828-3.403 6.075-4.683 9.479-2.854 3.403 1.828 4.682 6.075 2.854 9.479l-16.073 29.925c-1.22 2.271-3.589 3.688-6.167 3.688s-4.947-1.417-6.167-3.688l-16.073-29.925c-1.828-3.404-.549-7.651 2.854-9.479 3.404-1.829 7.651-.549 9.479 2.854l2.907 5.412v-69.835c0-3.863 3.137-7 7-7s7 3.137 7 7zm-132.198 54.758-49.381-49.381c-2.732-2.731-2.732-7.167 0-9.899s7.168-2.732 9.9 0l49.38 49.38-1.771-5.881c-1.114-3.7.985-7.608 4.684-8.722 3.7-1.114 7.607.985 8.721 4.685l9.796 32.526c.743 2.468.069 5.145-1.753 6.968-1.823 1.823-4.5 2.496-6.969 1.753l-32.526-9.795c-3.699-1.114-5.798-5.022-4.684-8.721s5.022-5.798 8.721-4.684zm-44.859 122.299h-69.835c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7h69.835l-5.412-2.907c-3.403-1.828-4.682-6.076-2.854-9.479 1.828-3.404 6.075-4.683 9.479-2.855l29.926 16.074c2.271 1.22 3.688 3.589 3.688 6.167 0 2.577-1.417 4.947-3.688 6.166l-29.926 16.074c-3.404 1.828-7.651.549-9.479-2.855-1.828-3.403-.549-7.651 2.854-9.479zm54.758 118.198-49.38 49.38c-2.732 2.732-7.168 2.732-9.9 0s-2.732-7.167 0-9.899l49.381-49.381-5.882 1.772c-3.699 1.114-7.607-.985-8.721-4.685-1.114-3.699.985-7.607 4.684-8.721l32.526-9.795c2.469-.743 5.146-.07 6.969 1.753 1.822 1.823 2.496 4.5 1.753 6.968l-9.796 32.527c-1.114 3.699-5.021 5.798-8.721 4.684-3.699-1.114-5.798-5.022-4.684-8.721zm240.497-240.497 5.882-1.771c3.699-1.114 7.607.985 8.721 4.684s-.985 7.607-4.684 8.721l-32.526 9.795c-2.469.743-5.146.07-6.969-1.753-1.822-1.823-2.496-4.5-1.753-6.968l9.796-32.526c1.114-3.7 5.021-5.799 8.721-4.685 3.699 1.114 5.798 5.022 4.684 8.722l-1.771 5.881 49.38-49.38c2.732-2.732 7.168-2.732 9.9 0s2.732 7.168 0 9.899zm44.859 122.299 5.412 2.906c3.403 1.828 4.682 6.076 2.854 9.479-1.828 3.404-6.075 4.683-9.479 2.855l-29.926-16.074c-2.271-1.219-3.688-3.589-3.688-6.166 0-2.578 1.417-4.947 3.688-6.167l29.926-16.074c3.404-1.828 7.651-.549 9.479 2.855 1.828 3.403.549 7.651-2.854 9.479l-5.412 2.907h69.835c3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7zm-54.758 118.198 1.771 5.882c1.114 3.699-.985 7.607-4.684 8.721-3.7 1.114-7.607-.985-8.721-4.684l-9.796-32.527c-.743-2.468-.069-5.145 1.753-6.968 1.823-1.823 4.5-2.496 6.969-1.753l32.526 9.795c3.699 1.114 5.798 5.022 4.684 8.721-1.114 3.7-5.022 5.799-8.721 4.685l-5.882-1.772 49.381 49.381c2.732 2.732 2.732 7.167 0 9.899s-7.168 2.732-9.9 0z\"></path></svg>				\n									<h5>\n							gennemtænkte løsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"outline\"><path d=\"M486.41,144A28,28,0,0,0,472,92H349.123l5.457-21.828a48.513,48.513,0,0,0-12.848-46.153A41.035,41.035,0,0,0,312.609,12H308a8.009,8.009,0,0,0-8,8V47.413l-19.233,64.112A17.376,17.376,0,0,1,268,123.539V112a4,4,0,0,0-4-4H152a4,4,0,0,0-4,4v72a4,4,0,0,0,8,0V116h72V276H156V248a4,4,0,0,0-8,0v32a4,4,0,0,0,4,4H264a4,4,0,0,0,4-4V268.5h11.168A37.07,37.07,0,0,1,305.092,279a45.025,45.025,0,0,0,31.48,12.752L440,292a27.987,27.987,0,0,0,19.369-48.2,27.987,27.987,0,0,0,16-48A28,28,0,0,0,486.41,144ZM260,276H236V116h24Zm212-88H396a4,4,0,0,0,0,8h60a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h40a20,20,0,0,1,.01,40l-103.428-.25a37.07,37.07,0,0,1-25.924-10.5,45.031,45.031,0,0,0-31.49-12.752H268V131.686a25.317,25.317,0,0,0,20.429-17.862l19.4-64.675A4,4,0,0,0,308,48V20h4.609a33.082,33.082,0,0,1,23.481,9.69,40.507,40.507,0,0,1,10.728,38.541l-6.7,26.8A4,4,0,0,0,344,100H472a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h72a20,20,0,0,1,0,40Z\"></path><path d=\"M194.5,183.243l-1.9-.217a4,4,0,0,0-4.169,2.491L184.29,195.9H135.278l-3.539-9.317a4,4,0,0,0-7.478,2.84l2.459,6.477h-8.474L68.452,156.872a4,4,0,1,0-4.935,6.3L77.6,174.209,56.961,194.48l-6.636-5.491a4,4,0,1,0-5.1,6.163L87.219,229.9a44.1,44.1,0,0,0,28.05,10.1H212a8.009,8.009,0,0,0,8-8V203.9a8.009,8.009,0,0,0-8-8h-8v-2.01A10.708,10.708,0,0,0,194.5,183.243ZM212,203.9V232H115.269a36.081,36.081,0,0,1-22.951-8.264l-29.16-24.128,20.8-20.422L114.4,203.045a4,4,0,0,0,2.468.852H187a4,4,0,0,0,3.715-2.517l3.929-9.843a2.712,2.712,0,0,1,1.356,2.35v6.01a4,4,0,0,0,4,4Z\"></path><path d=\"M223.084,484.672,200.87,469.863V346.36A44.1,44.1,0,0,0,195.327,325l-17.183-30.94a4,4,0,0,0-7,3.884l17.184,30.94a36.073,36.073,0,0,1,4.537,17.478V468H164.333a4,4,0,1,0,0,8h31.321l12,8H152.865V352a4,4,0,0,0-.358-1.655l-25.454-56A4,4,0,0,0,123.411,292H114.2a4,4,0,0,0-3.945,4.658l8.862,53.175a36.016,36.016,0,0,1-1.951,18.949L78.642,468H48.333a4,4,0,1,0,0,8H80.377L92,484H32.088L76.63,361.366a4.017,4.017,0,0,0,.183-2.044L61.1,268H136a4,4,0,0,0,0-8H59.233L30.555,173.966A19.723,19.723,0,0,1,49.27,148H76a12,12,0,0,0,24,0h15.2a21.975,21.975,0,0,1,8.395,1.652l10.889,4.458a4,4,0,1,0,3.032-7.4L126.63,142.25A29.938,29.938,0,0,0,115.2,140H100v-4.527A16.014,16.014,0,0,0,112,120V103.473A16.014,16.014,0,0,0,124,88V80a4,4,0,0,0-4-4H90A22.025,22.025,0,0,0,68,98v18a12.02,12.02,0,0,0,8,11.314V140H49.27a27.723,27.723,0,0,0-26.305,36.5l29.493,88.482,16.29,94.655-46.128,127A4,4,0,0,0,26.38,492h78.485a4,4,0,0,0,2.268-7.3L86.3,470.368l38.318-98.69a44.018,44.018,0,0,0,2.385-23.16L118.921,300h1.914l24.03,52.867V488a4,4,0,0,0,4,4h72a4,4,0,0,0,2.219-7.328ZM76,98A14.015,14.015,0,0,1,90,84h26v4a8.009,8.009,0,0,1-8,8H92a4,4,0,0,0-4,4,11.962,11.962,0,0,1-1.53,5.881A12.044,12.044,0,0,0,76,104.686Zm4,14a3.981,3.981,0,0,1,3.407,1.9,4,4,0,0,0,5.956.975c.207-.171.7-.648.7-.648.032-.028.061-.057.09-.087A19.907,19.907,0,0,0,95.6,104H104v16a8.009,8.009,0,0,1-8,8,12.133,12.133,0,0,1-2.681-.3,4,4,0,1,0-1.775,7.8c.151.035.3.06.456.091V148a4,4,0,1,1-8,0V124a4,4,0,0,0-4-4,4,4,0,0,1,0-8Z\"></path></g></svg>				\n									<h5>\n							arbejde udført med ansvar						\n					</h5>\n				<p>Vi lover ikke mere, end vi kan holde – men vi holder det, vi lover.</p>			<h2>KONTAKT OS</h2>		<p>Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.</p>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 13:27:50', '2026-01-26 13:27:50', '', 10, 'https://mrarif.me/cpnordic/?p=527', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(537, 1, '2026-01-26 13:37:17', '2026-01-26 13:37:17', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>					\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle ANMELDELSER\n					</a>\n					<h2>HVORFOR VÆLGE CP NORDIC ApS?</h2>		<p>Når du vælger CP NORDIC ApS, får du:</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 450 450\" width=\"512\"><g><g><path d=\"m225 165.2c-25.9 0-48.9-18.8-53.3-45.2-2.4-14.2.9-28.6 9.3-40.3 8.4-11.8 20.9-19.5 35.1-21.9 29.4-4.9 57.3 15 62.2 44.5 4.9 29.4-15 57.3-44.4 62.2-3 .5-6 .7-8.9.7zm-7.6-99.8c-12.2 2-22.9 8.7-30.1 18.8s-10.1 22.4-8 34.6c3.8 22.7 23.5 38.8 45.7 38.8 2.5 0 5.1-.2 7.6-.6 25.2-4.2 42.3-28.1 38.1-53.4s-28.1-42.4-53.3-38.2z\"></path><path d=\"m255.2 115c-2.1 0-3.8-1.7-3.8-3.8 0-14.6-11.8-26.4-26.4-26.4-2.1 0-3.8-1.7-3.8-3.8s1.7-3.8 3.8-3.8c18.8 0 34.1 15.3 34.1 34.1 0 2-1.8 3.7-3.9 3.7z\"></path><path d=\"m236.1 203h-22.2c-2.1 0-3.8-1.7-3.8-3.8v-14.1c-3.1-.6-6.1-1.4-9.1-2.4l-7 12.2c-1.1 1.8-3.4 2.5-5.3 1.4l-19.2-11.1c-.9-.5-1.5-1.4-1.8-2.3-.3-1-.1-2 .4-2.9l7-12.1c-2.4-2.1-4.6-4.3-6.7-6.6l-12.1 7c-1.8 1.1-4.2.4-5.2-1.4l-11.1-19.2c-1.1-1.8-.4-4.2 1.4-5.2l11.9-6.8c-1-3-1.9-6.1-2.6-9.3h-13.7c-2.1 0-3.8-1.7-3.8-3.8v-22.2c0-2.1 1.7-3.8 3.8-3.8h13.4c.6-3.2 1.4-6.4 2.4-9.5l-11.5-6.6c-1.8-1.1-2.5-3.4-1.4-5.3l11.1-19.6c.5-.9 1.4-1.5 2.3-1.8s2-.1 2.9.4l11.3 6.6c2.2-2.5 4.5-4.8 7-7l-6.5-11.3c-.5-.9-.6-1.9-.4-2.9.3-1 .9-1.8 1.8-2.3l19.2-11.1c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l6.4 11.2c3.1-1.1 6.4-1.9 9.7-2.6v-13c0-2.1 1.7-3.8 3.8-3.8h22.2c2.1 0 3.8 1.7 3.8 3.8v12.8c3.3.7 6.5 1.5 9.7 2.6l6.5-11.2c.5-.9 1.4-1.5 2.3-1.8 1-.3 2-.1 2.9.4l19.2 11.1c.9.5 1.5 1.3 1.8 2.3s.1 2-.4 2.9l-6.5 11.3c2.5 2.2 4.8 4.5 7 7.1l11.3-6.6c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l11.1 19.2c1.1 1.8.4 4.2-1.4 5.3l-11.5 6.6c1 3.1 1.8 6.3 2.5 9.5h13.6c2.1 0 3.8 1.7 3.8 3.8v22.2c0 2.1-1.7 3.8-3.8 3.8h-13.6c-.6 3.1-1.5 6.2-2.5 9.3l11.9 6.8c1.8 1.1 2.5 3.4 1.4 5.2l-11.2 19.5c-1.1 1.8-3.4 2.5-5.2 1.4l-12-7c-2.1 2.4-4.4 4.6-6.7 6.6l7 12.1c.5.9.6 1.9.4 2.9s-.9 1.8-1.8 2.3l-19.2 11.1c-1.8 1.1-4.2.4-5.2-1.4l-7-12.2c-3 1-6 1.8-9.1 2.4v14.1c-.2 2.3-2 4-4.1 4zm-18.4-7.7h14.5v-13.5c0-1.9 1.4-3.5 3.3-3.8 4.7-.7 9.4-2 13.8-3.7 1.8-.7 3.8 0 4.7 1.7l6.7 11.6 12.6-7.3-6.7-11.6c-1-1.6-.5-3.7.9-4.9 3.7-3 7.2-6.4 10.2-10.1 1.2-1.5 3.3-1.8 4.9-.9l11.5 6.6 7.3-12.6-11.3-6.5c-1.6-.9-2.4-3-1.6-4.7 1.8-4.5 3.1-9.2 3.9-14 .3-1.9 1.9-3.2 3.8-3.2h13v-14.6h-12.8c-1.9 0-3.5-1.4-3.8-3.3-.7-4.8-2-9.6-3.7-14.2-.7-1.8 0-3.7 1.7-4.7l10.9-6.3-7.3-12.6-10.8 6.3c-1.6.9-3.7.6-4.9-.9-3.1-3.9-6.6-7.4-10.4-10.6-1.5-1.2-1.9-3.3-.9-4.9l6.2-10.7-12.6-7.3-6.1 10.6c-1 1.6-3 2.3-4.7 1.7-4.6-1.8-9.5-3.1-14.4-3.9-1.9-.3-3.3-1.9-3.3-3.8v-12.2h-14.5v12.3c0 1.9-1.4 3.5-3.3 3.8-5 .8-9.8 2.1-14.4 3.9-1.8.7-3.8 0-4.7-1.7l-6.1-10.6-12.6 7.3 6.2 10.7c.9 1.6.6 3.7-.9 4.9-3.9 3.1-7.4 6.7-10.4 10.6-1.2 1.5-3.3 1.9-4.9.9l-10.8-6.3-7.3 12.6 10.9 6.3c1.6.9 2.3 2.9 1.7 4.7-1.7 4.6-3 9.4-3.7 14.2-.3 1.9-1.9 3.3-3.8 3.3h-12.8v14.5h13c1.9 0 3.5 1.4 3.8 3.2.8 4.8 2.1 9.5 3.9 14 .7 1.8 0 3.8-1.6 4.7l-11.3 6.5 7.3 12.6 11.5-6.6c1.6-.9 3.7-.6 4.9.9 3 3.7 6.5 7.1 10.3 10.1 1.5 1.2 1.9 3.3.9 4.9l-6.7 11.6 12.6 7.3 6.7-11.6c.9-1.6 2.9-2.3 4.7-1.7 4.5 1.7 9.1 2.9 13.8 3.7 1.9.3 3.3 1.9 3.3 3.8z\"></path></g><g><g><g><path d=\"m45.3 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m153.9 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path></g><g><path d=\"m189.3 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.2c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c0 2.1-1.7 3.8-3.8 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m73.3 326.4c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m126 326.4c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m99.7 325.6c-.6 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4s4.1 1.1 4.4 3.2c2.4 16.5 12.3 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m50.2 266.6c-.1 0-.2 0-.3 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.7 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-8.9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.5 2.2zm81.8-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13.1-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.4-.7 2.3-.7z\"></path></g></g></g><g><g><path d=\"m296.1 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m404.7 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path></g><g><path d=\"m440 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.1c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c.2 2.1-1.6 3.8-3.7 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m324 326.3c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m376.7 326.3c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m350.4 325.6c-.5 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4 2.1-.3 4 1.1 4.4 3.2 2.4 16.5 12.4 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m301 266.6c-.1 0-.2 0-.4 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.6 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.4 2.2zm81.7-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.5-.7 2.3-.7z\"></path></g></g></g></g></g></svg>				\n									<h5>\n							et ungt og engageret team						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"496pt\" viewBox=\"0 0 496 496\" width=\"496pt\"><path d=\"m440 328h-28.207031c5.078125-6.703125 8.207031-14.960938 8.207031-24 0-8.824219-7.175781-16-16-16h-12v-19.960938c59.574219-14.445312 104-68.085937 104-132.039062 0-74.992188-61.007812-136-136-136s-136 61.007812-136 136c0 63.953125 44.425781 117.59375 104 132.039062v19.960938h-8.449219c-6.167969 0-12.359375 1.464844-17.886719 4.214844l-50.480468 25.25c-3.320313 1.664062-7.03125 2.535156-10.734375 2.535156h-40.449219v-16h-104v16h56v56h16v-56h16v128h-16v-56h-16v56h-56v16h104v-16h40.449219c3.703125 0 7.414062.871094 10.734375 2.527344l34.488281 17.25c5.519531 2.757812 11.710937 4.222656 17.878906 4.222656h24.449219v24h64v-24h48c13.230469 0 24-10.769531 24-24 0-6.167969-2.40625-11.742188-6.238281-16 3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16 0-13.230469-10.769531-24-24-24zm8 24c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm-208-280c0-66.167969 53.832031-120 120-120s120 53.832031 120 120-53.832031 120-120 120-120-53.832031-120-120zm104 134.976562c5.257812.617188 10.574219 1.023438 16 1.023438s10.742188-.40625 16-1.023438v17.023438h-32zm-40.449219 185.023438c-3.703125 0-7.414062-.871094-10.734375-2.527344l-34.488281-17.25c-5.519531-2.757812-11.710937-4.222656-17.878906-4.222656h-40.449219v-96h40.449219c6.167969 0 12.359375-1.464844 17.886719-4.214844l50.480468-25.25c3.320313-1.664062 7.03125-2.535156 10.734375-2.535156h84.449219c0 13.230469-10.769531 24-24 24h-48.28125l-23.863281 35.808594c-6.101563 9.160156-14.527344 16.589844-24.367188 21.503906-8.753906 4.375-18.542969 6.6875-28.320312 6.6875h-15.167969v16h15.167969c12.246093 0 24.519531-2.894531 35.472656-8.375 12.328125-6.160156 22.878906-15.480469 30.527344-26.945312l6.832031-10.253907v93.574219zm40.449219 24v-136h17.472656c-.898437 2.511719-1.472656 5.183594-1.472656 8 0 6.167969 2.40625 11.742188 6.238281 16-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16 0 10.414062 6.710938 19.214844 16 22.527344v9.472656zm96-24h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8s-3.59375 8-8 8zm0 0\"></path><path d=\"m394.878906 73.007812-7.757812 13.984376c17.816406 9.878906 28.878906 28.664062 28.878906 49.007812h16c0-26.160156-14.222656-50.296875-37.121094-62.992188zm0 0\"></path><path d=\"m360 80c4.734375 0 9.449219.59375 14.007812 1.769531l3.976563-15.503906c-5.855469-1.496094-11.90625-2.265625-17.984375-2.265625zm0 0\"></path><path d=\"m360 48c48.519531 0 88 39.480469 88 88 0 20.753906-7.398438 40.910156-20.832031 56.785156l12.207031 10.34375c15.882812-18.761718 24.625-42.601562 24.625-67.128906 0-57.34375-46.65625-104-104-104-24.527344 0-48.367188 8.753906-67.128906 24.632812l10.335937 12.199219c15.871094-13.433593 36.039063-20.832031 56.792969-20.832031zm0 0\"></path><path d=\"m427.128906 215.367188-10.335937-12.199219c-15.871094 13.433593-36.039063 20.832031-56.792969 20.832031-48.519531 0-88-39.480469-88-88 0-20.753906 7.398438-40.910156 20.832031-56.785156l-12.207031-10.34375c-15.882812 18.761718-24.625 42.601562-24.625 67.128906 0 57.34375 46.65625 104 104 104 24.527344 0 48.367188-8.753906 67.128906-24.632812zm0 0\"></path><path d=\"m121.214844 165.640625c4.953125-1.375 9.695312-3.34375 14.183594-5.878906l9.769531 4.886719 19.472656-19.480469-4.886719-9.769531c2.535156-4.496094 4.503906-9.230469 5.886719-14.183594l10.359375-3.445313v-27.53125l-10.351562-3.453125c-1.375-4.953125-3.34375-9.707031-5.886719-14.183594l4.886719-9.777343-19.472657-19.472657-9.769531 4.886719c-4.484375-2.535156-9.230469-4.503906-14.183594-5.878906l-3.453125-10.359375h-27.539062l-3.445313 10.359375c-4.953125 1.375-9.695312 3.34375-14.183594 5.878906l-9.777343-4.886719-19.472657 19.472657 4.886719 9.777343c-2.535156 4.488282-4.503906 9.230469-5.886719 14.183594l-10.351562 3.445313v27.53125l10.351562 3.453125c1.375 4.953125 3.34375 9.695312 5.886719 14.183594l-4.886719 9.769531 19.472657 19.480469 9.769531-4.886719c4.484375 2.535156 9.230469 4.503906 14.183594 5.878906l3.453125 10.359375h27.539062zm-12.304688-13.679687-2.679687 8.039062h-4.460938l-2.679687-8.039062-4.554688-.90625c-6.128906-1.222657-11.878906-3.605469-17.109375-7.09375l-3.867187-2.578126-7.574219 3.800782-3.160156-3.167969 3.792969-7.582031-2.578126-3.859375c-3.488281-5.222657-5.871093-10.980469-7.09375-17.109375l-.914062-4.554688-8.03125-2.679687v-4.46875l8.03125-2.671875.914062-4.554688c1.222657-6.136718 3.613282-11.886718 7.09375-17.109375l2.578126-3.859375-3.792969-7.589844 3.160156-3.160156 7.574219 3.800782 3.867187-2.578126c5.222657-3.488281 10.980469-5.863281 17.109375-7.09375l4.554688-.90625 2.679687-8.039062h4.460938l2.679687 8.039062 4.554688.90625c6.128906 1.222657 11.878906 3.605469 17.109375 7.09375l3.867187 2.578126 7.574219-3.800782 3.160156 3.160156-3.792969 7.589844 2.578126 3.859375c3.488281 5.214844 5.871093 10.972657 7.09375 17.109375l.914062 4.554688 8.03125 2.679687v4.46875l-8.03125 2.671875-.914062 4.554688c-1.222657 6.128906-3.613282 11.878906-7.09375 17.109375l-2.578126 3.859375 3.792969 7.582031-3.160156 3.167969-7.574219-3.800782-3.867187 2.578126c-5.222657 3.488281-10.980469 5.863281-17.109375 7.09375zm0 0\"></path><path d=\"m104 72c-17.648438 0-32 14.351562-32 32s14.351562 32 32 32 32-14.351562 32-32-14.351562-32-32-32zm0 48c-8.824219 0-16-7.175781-16-16s7.175781-16 16-16 16 7.175781 16 16-7.175781 16-16 16zm0 0\"></path><path d=\"m160 248v-40h48v-208h-208v208h106.664062zm-144-232h176v176h-48v24l-32-24h-96zm0 0\"></path><path d=\"m0 272h16v16h-16zm0 0\"></path><path d=\"m32 272h16v16h-16zm0 0\"></path><path d=\"m64 272h16v16h-16zm0 0\"></path><path d=\"m32 304h16v16h-16zm0 0\"></path><path d=\"m64 304h16v16h-16zm0 0\"></path><path d=\"m0 480h16v16h-16zm0 0\"></path><path d=\"m32 480h16v16h-16zm0 0\"></path><path d=\"m64 480h16v16h-16zm0 0\"></path><path d=\"m32 448h16v16h-16zm0 0\"></path><path d=\"m64 448h16v16h-16zm0 0\"></path></svg>				\n									<h5>\n							fokus på kvalitet og detaljer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m469.12 408.93-67.26-33.63v-22.13c10.71-7.69 18.6-19.07 21.78-32.27h5.28c8.81 0 15.98-7.17 15.98-15.98v-5.29c0-6.35-3.74-11.84-9.12-14.41 5.19-18.64-1.65-39.76-19.44-59.78-12.58-14.16-30.67-22.27-49.62-22.27-18.93 0-37.01 8.12-49.59 22.27-13.38 15.05-20.95 41.01-14.03 59.62-5.56 2.5-9.45 8.09-9.45 14.57v5.29c0 8.81 7.17 15.98 15.98 15.98h5.55c3.16 13.09 10.94 24.39 21.51 32.08v22.32l-67.26 33.63c-16.7 5.87-27.89 21.6-27.89 39.28v41.63c0 3.31 2.69 6 6 6h243.46c3.31 0 6-2.69 6-6v-41.63c0-17.68-11.19-33.41-27.88-39.28zm-62.24-17.7-15.83 27.66-13.29-13.29 19.29-19.29zm-37.61 5.88-20.59-20.58v-16.91c6.41 2.57 13.4 4.01 20.72 4.01 7.22 0 14.11-1.39 20.45-3.9v16.8zm63.63-97.48v5.29c0 2.16-1.82 3.98-3.98 3.98h-3.74c.01-.36.03-.71.03-1.07v-12.18h3.71c2.15-.01 3.98 1.82 3.98 3.98zm-119.29 8.2v1.07h-3.98c-2.16 0-3.98-1.82-3.98-3.98v-5.29c0-2.16 1.82-3.98 3.98-3.98l3.98.22zm1.95-24.19c-7.33-13.69-.89-37.39 10.53-50.24 10.31-11.6 25.12-18.25 40.63-18.25 15.52 0 30.34 6.65 40.65 18.25 8.43 9.48 21.3 27.59 17.4 46.39-5.66-.35-10.67-2.55-14.4-6.36-5.37-5.49-7.72-14-6.63-23.94.29-2.62-1.17-5.13-3.6-6.17s-5.25-.37-6.95 1.65c-19.33 22.92-45.95 36.76-73.9 38.68h-3.73zm10.05 24.19v-12.73c24.57-2.92 47.92-14.05 66.73-31.8 1.43 7.26 4.63 13.6 9.45 18.52 3.27 3.35 7.14 5.89 11.41 7.58v18.42c0 24.15-19.65 43.8-43.8 43.8s-43.79-19.64-43.79-43.79zm15.89 78.48 19.29 19.29-13.29 13.29-15.84-27.66zm3.22 97.53h-39.42v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.76v-35.63c0-12.68 8.1-23.95 20.15-28.05.26-.09.51-.19.75-.31l46.47-23.23 20.07 35.06c.93 1.62 2.56 2.72 4.41 2.97.27.04.53.05.79.05 1.58 0 3.11-.62 4.24-1.76l.14-.14zm12.08 0 7.41-64.69 5.06-5.06 4.84 4.84 7.86 64.92h-25.17zm128.2 0h-39.76v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.18l-6.2-51.17.25.25c1.13 1.13 2.66 1.76 4.24 1.76.26 0 .53-.02.79-.05 1.85-.25 3.48-1.34 4.41-2.97l20.07-35.06 46.47 23.23c.24.12.49.23.75.31 12.05 4.1 20.15 15.38 20.15 28.05v35.65zm-67.04-346.65h-10.84l28.38 39.84 28.38-39.84h-10.84c-3.31 0-6-2.69-6-6v-64.58h-98.7c-3.31 0-6-2.69-6-6s2.69-6 6-6h104.7c3.31 0 6 2.69 6 6v64.58h16.48c2.25 0 4.3 1.25 5.33 3.25s.86 4.4-.45 6.23l-40.02 56.18c-1.13 1.58-2.95 2.52-4.89 2.52s-3.76-.94-4.89-2.52l-40.02-56.18c-1.3-1.83-1.48-4.23-.45-6.23s3.09-3.25 5.33-3.25h16.48v-23.5h-65.38c-3.31 0-6-2.69-6-6s2.69-6 6-6h71.38c3.31 0 6 2.69 6 6v35.5c.02 3.31-2.67 6-5.98 6zm-118.44 50.65v-133.26c0-21.18-17.23-38.41-38.41-38.41h-207.7c-21.18-.01-38.41 17.23-38.41 38.41v133.26c0 21.18 17.23 38.41 38.41 38.41h105.8l64.8 55.11c1.11.94 2.49 1.43 3.89 1.43.85 0 1.71-.18 2.52-.55 2.12-.98 3.48-3.11 3.48-5.45v-50.54h27.21c21.18 0 38.41-17.23 38.41-38.41zm-71.62 26.41c-3.31 0-6 2.69-6 6v43.56l-56.59-48.13c-1.08-.92-2.46-1.43-3.89-1.43h-108.01c-14.56 0-26.41-11.85-26.41-26.41v-133.26c0-14.56 11.85-26.41 26.41-26.41h207.69c14.56 0 26.41 11.85 26.41 26.41v133.26c0 14.56-11.85 26.41-26.41 26.41zm-156.34-87.87h56.97c3.31 0 6-2.69 6-6v-39.2l8.55-8.55c2.34-2.34 2.34-6.14 0-8.49-2.34-2.34-6.14-2.34-8.48 0l-.7.7c-.98-1.97-3.01-3.32-5.36-3.32h-56.98c-3.31 0-6 2.69-6 6v52.85c0 3.32 2.69 6.01 6 6.01zm6-52.86h44.97v2.69l-18.16 18.16-8.84-8.84c-2.34-2.34-6.14-2.34-8.49 0-2.34 2.34-2.34 6.14 0 8.49l13.08 13.08c1.17 1.17 2.71 1.76 4.24 1.76s3.07-.59 4.24-1.76l13.92-13.92v21.2h-44.96zm173.62 3.08c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 31.92c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 36.52c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.68 5.99 6zm0 31.92c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.69 5.99 6zm-119.36 165.01h10.84l-28.38-39.84-28.38 39.84h10.84c3.31 0 6 2.69 6 6v64.58h98.7c3.31 0 6 2.69 6 6s-2.69 6-6 6h-104.69c-3.31 0-6-2.69-6-6v-64.58h-16.48c-2.25 0-4.3-1.25-5.33-3.25s-.86-4.4.45-6.23l40.02-56.18c1.13-1.58 2.95-2.52 4.89-2.52s3.76.94 4.89 2.52l40.02 56.18c1.3 1.83 1.48 4.23.45 6.23s-3.09 3.25-5.33 3.25h-16.48v23.5h65.38c3.31 0 6 2.69 6 6s-2.69 6-6 6h-71.38c-3.31 0-6-2.69-6-6v-35.5c-.03-3.31 2.66-6 5.97-6z\"></path></svg>				\n									<h5>\n							ærlig<br> rådgivning						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 510 510\"><path d=\"m192.036 385.845c-4.787-46.972-19.459-64.336-30.658-82.352-8.672-13.951-15.5-28.245-15.5-54.252 0-60.242 48.865-109.109 109.135-109.109 60.242 0 109.109 48.866 109.109 109.109 0 26.007-6.828 40.301-15.5 54.252-11.199 18.016-25.871 35.38-30.658 82.352 9.985 2.864 17.345 12.101 17.345 22.975v36.44c0 13.109-10.747 23.866-23.893 23.866h-10.334v9.945c0 12.588-10.341 22.929-22.93 22.929h-46.304c-12.589 0-22.93-10.341-22.93-22.929v-9.945h-10.334c-13.146 0-23.893-10.757-23.893-23.866v-36.44c0-10.874 7.36-20.111 17.345-22.975zm111.948-.917c4.199-42.194 15.78-62.332 26.488-79.049 10.147-15.842 19.65-28.207 19.65-56.638 0-52.513-42.597-95.109-95.109-95.109-52.537 0-95.135 42.596-95.135 95.109 0 28.431 9.503 40.796 19.65 56.638 10.708 16.717 22.289 36.855 26.488 79.049zm2.554-78.61c-1.175 13.701-11.985 24.191-24.783 24.191-13.527 0-24.862-12.086-24.862-26.673v-99.328c0-14.12 11.335-26.673 24.862-26.673 11.309 0 21.031 8.139 23.975 19.497 9.12 3.904 15.688 13.438 15.688 24.78 0 1.153-.068 2.289-.201 3.403 5.078 5.326 8.283 12.802 8.283 21.117 0 6.39-1.889 12.262-5.06 17.053 1.996 4.099 3.13 8.773 3.13 13.76 0 14.1-9.065 25.697-21.032 28.873zm-16.452-109.977c-1.964-2.729-4.916-4.506-8.331-4.506-6.192 0-10.862 6.21-10.862 12.673v99.328c0 6.677 4.67 12.673 10.862 12.673 5.516 0 9.822-4.614 10.717-10.425-4.709-1.416-8.923-4.144-12.279-7.814-2.607-2.852-2.409-7.283.443-9.89 2.851-2.607 7.282-2.408 9.889.443 2.416 2.642 5.72 4.356 9.402 4.356 7.733 0 13.643-7.218 13.643-15.734s-5.91-15.734-13.643-15.734c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7 5.352 0 10.388 1.655 14.658 4.533.593-1.743.915-3.634.915-5.612 0-2.11-.366-4.128-1.036-5.972-.769.858-1.588 1.66-2.453 2.397-2.94 2.507-7.361 2.156-9.869-.784-2.507-2.939-2.155-7.361.784-9.868 2.773-2.365 4.492-6.122 4.492-10.293 0-6.072-3.705-11.374-8.898-12.467-.154-.023-.307-.052-.458-.085-.499-.08-1.01-.121-1.532-.121-2.947 0-5.591 1.389-7.515 3.525-2.585 2.87-7.015 3.101-9.886.515-2.87-2.586-3.101-7.015-.515-9.886 3.111-3.453 7.059-5.988 11.472-7.252zm-104.526 67.344c-3.171-4.791-5.06-10.663-5.06-17.053 0-8.307 3.198-15.777 8.284-21.104-.133-1.118-.202-2.258-.202-3.416 0-11.354 6.582-20.897 15.717-24.792 2.948-11.354 12.67-19.485 23.946-19.485 13.56 0 24.888 12.555 24.888 26.673v99.328c0 14.585-11.328 26.673-24.888 26.673-12.765 0-23.578-10.484-24.757-24.184-11.98-3.166-21.058-14.769-21.058-28.88 0-4.987 1.134-9.661 3.13-13.76zm9.982-23.036c-.675 1.847-1.042 3.869-1.042 5.983 0 1.978.322 3.869.915 5.612 4.27-2.878 9.306-4.533 14.658-4.533 3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7-7.733 0-13.643 7.218-13.643 15.734s5.91 15.734 13.643 15.734c3.682 0 6.986-1.714 9.402-4.356 2.607-2.851 7.038-3.05 9.889-.443 2.852 2.607 3.05 7.038.443 9.89-3.35 3.664-7.556 6.389-12.255 7.807.891 5.813 5.192 10.432 10.693 10.432 6.21 0 10.888-5.993 10.888-12.673v-99.328c0-6.466-4.678-12.673-10.888-12.673-3.404 0-6.349 1.777-8.309 4.507 4.421 1.264 8.367 3.8 11.476 7.251 2.586 2.871 2.355 7.3-.516 9.886-2.87 2.586-7.3 2.355-9.886-.515-1.926-2.138-4.574-3.525-7.54-3.525-.493 0-.976.037-1.448.108-.196.045-.395.082-.596.11-5.165 1.118-8.844 6.404-8.844 12.455 0 1.243.153 2.45.442 3.594.101.284.183.572.246.862.748 2.326 2.071 4.346 3.814 5.823 2.947 2.498 3.311 6.919.813 9.866s-6.919 3.312-9.866.814c-.878-.745-1.71-1.554-2.489-2.422zm3.042 158.279c-5.442 0-9.893 4.451-9.893 9.892v36.44c0 5.423 4.454 9.866 9.893 9.866h17.334c3.866 0 7 3.134 7 7v16.945c0 4.902 4.027 8.929 8.93 8.929h46.304c4.903 0 8.93-4.027 8.93-8.929v-16.945c0-3.866 3.134-7 7-7h17.334c5.439 0 9.893-4.443 9.893-9.866v-36.44c0-5.441-4.451-9.892-9.893-9.892zm63.416-314.093 2.907-5.412c1.828-3.403 6.075-4.683 9.479-2.854 3.403 1.828 4.682 6.075 2.854 9.479l-16.073 29.925c-1.22 2.271-3.589 3.688-6.167 3.688s-4.947-1.417-6.167-3.688l-16.073-29.925c-1.828-3.404-.549-7.651 2.854-9.479 3.404-1.829 7.651-.549 9.479 2.854l2.907 5.412v-69.835c0-3.863 3.137-7 7-7s7 3.137 7 7zm-132.198 54.758-49.381-49.381c-2.732-2.731-2.732-7.167 0-9.899s7.168-2.732 9.9 0l49.38 49.38-1.771-5.881c-1.114-3.7.985-7.608 4.684-8.722 3.7-1.114 7.607.985 8.721 4.685l9.796 32.526c.743 2.468.069 5.145-1.753 6.968-1.823 1.823-4.5 2.496-6.969 1.753l-32.526-9.795c-3.699-1.114-5.798-5.022-4.684-8.721s5.022-5.798 8.721-4.684zm-44.859 122.299h-69.835c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7h69.835l-5.412-2.907c-3.403-1.828-4.682-6.076-2.854-9.479 1.828-3.404 6.075-4.683 9.479-2.855l29.926 16.074c2.271 1.22 3.688 3.589 3.688 6.167 0 2.577-1.417 4.947-3.688 6.166l-29.926 16.074c-3.404 1.828-7.651.549-9.479-2.855-1.828-3.403-.549-7.651 2.854-9.479zm54.758 118.198-49.38 49.38c-2.732 2.732-7.168 2.732-9.9 0s-2.732-7.167 0-9.899l49.381-49.381-5.882 1.772c-3.699 1.114-7.607-.985-8.721-4.685-1.114-3.699.985-7.607 4.684-8.721l32.526-9.795c2.469-.743 5.146-.07 6.969 1.753 1.822 1.823 2.496 4.5 1.753 6.968l-9.796 32.527c-1.114 3.699-5.021 5.798-8.721 4.684-3.699-1.114-5.798-5.022-4.684-8.721zm240.497-240.497 5.882-1.771c3.699-1.114 7.607.985 8.721 4.684s-.985 7.607-4.684 8.721l-32.526 9.795c-2.469.743-5.146.07-6.969-1.753-1.822-1.823-2.496-4.5-1.753-6.968l9.796-32.526c1.114-3.7 5.021-5.799 8.721-4.685 3.699 1.114 5.798 5.022 4.684 8.722l-1.771 5.881 49.38-49.38c2.732-2.732 7.168-2.732 9.9 0s2.732 7.168 0 9.899zm44.859 122.299 5.412 2.906c3.403 1.828 4.682 6.076 2.854 9.479-1.828 3.404-6.075 4.683-9.479 2.855l-29.926-16.074c-2.271-1.219-3.688-3.589-3.688-6.166 0-2.578 1.417-4.947 3.688-6.167l29.926-16.074c3.404-1.828 7.651-.549 9.479 2.855 1.828 3.403.549 7.651-2.854 9.479l-5.412 2.907h69.835c3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7zm-54.758 118.198 1.771 5.882c1.114 3.699-.985 7.607-4.684 8.721-3.7 1.114-7.607-.985-8.721-4.684l-9.796-32.527c-.743-2.468-.069-5.145 1.753-6.968 1.823-1.823 4.5-2.496 6.969-1.753l32.526 9.795c3.699 1.114 5.798 5.022 4.684 8.721-1.114 3.7-5.022 5.799-8.721 4.685l-5.882-1.772 49.381 49.381c2.732 2.732 2.732 7.167 0 9.899s-7.168 2.732-9.9 0z\"></path></svg>				\n									<h5>\n							gennemtænkte løsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"outline\"><path d=\"M486.41,144A28,28,0,0,0,472,92H349.123l5.457-21.828a48.513,48.513,0,0,0-12.848-46.153A41.035,41.035,0,0,0,312.609,12H308a8.009,8.009,0,0,0-8,8V47.413l-19.233,64.112A17.376,17.376,0,0,1,268,123.539V112a4,4,0,0,0-4-4H152a4,4,0,0,0-4,4v72a4,4,0,0,0,8,0V116h72V276H156V248a4,4,0,0,0-8,0v32a4,4,0,0,0,4,4H264a4,4,0,0,0,4-4V268.5h11.168A37.07,37.07,0,0,1,305.092,279a45.025,45.025,0,0,0,31.48,12.752L440,292a27.987,27.987,0,0,0,19.369-48.2,27.987,27.987,0,0,0,16-48A28,28,0,0,0,486.41,144ZM260,276H236V116h24Zm212-88H396a4,4,0,0,0,0,8h60a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h40a20,20,0,0,1,.01,40l-103.428-.25a37.07,37.07,0,0,1-25.924-10.5,45.031,45.031,0,0,0-31.49-12.752H268V131.686a25.317,25.317,0,0,0,20.429-17.862l19.4-64.675A4,4,0,0,0,308,48V20h4.609a33.082,33.082,0,0,1,23.481,9.69,40.507,40.507,0,0,1,10.728,38.541l-6.7,26.8A4,4,0,0,0,344,100H472a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h72a20,20,0,0,1,0,40Z\"></path><path d=\"M194.5,183.243l-1.9-.217a4,4,0,0,0-4.169,2.491L184.29,195.9H135.278l-3.539-9.317a4,4,0,0,0-7.478,2.84l2.459,6.477h-8.474L68.452,156.872a4,4,0,1,0-4.935,6.3L77.6,174.209,56.961,194.48l-6.636-5.491a4,4,0,1,0-5.1,6.163L87.219,229.9a44.1,44.1,0,0,0,28.05,10.1H212a8.009,8.009,0,0,0,8-8V203.9a8.009,8.009,0,0,0-8-8h-8v-2.01A10.708,10.708,0,0,0,194.5,183.243ZM212,203.9V232H115.269a36.081,36.081,0,0,1-22.951-8.264l-29.16-24.128,20.8-20.422L114.4,203.045a4,4,0,0,0,2.468.852H187a4,4,0,0,0,3.715-2.517l3.929-9.843a2.712,2.712,0,0,1,1.356,2.35v6.01a4,4,0,0,0,4,4Z\"></path><path d=\"M223.084,484.672,200.87,469.863V346.36A44.1,44.1,0,0,0,195.327,325l-17.183-30.94a4,4,0,0,0-7,3.884l17.184,30.94a36.073,36.073,0,0,1,4.537,17.478V468H164.333a4,4,0,1,0,0,8h31.321l12,8H152.865V352a4,4,0,0,0-.358-1.655l-25.454-56A4,4,0,0,0,123.411,292H114.2a4,4,0,0,0-3.945,4.658l8.862,53.175a36.016,36.016,0,0,1-1.951,18.949L78.642,468H48.333a4,4,0,1,0,0,8H80.377L92,484H32.088L76.63,361.366a4.017,4.017,0,0,0,.183-2.044L61.1,268H136a4,4,0,0,0,0-8H59.233L30.555,173.966A19.723,19.723,0,0,1,49.27,148H76a12,12,0,0,0,24,0h15.2a21.975,21.975,0,0,1,8.395,1.652l10.889,4.458a4,4,0,1,0,3.032-7.4L126.63,142.25A29.938,29.938,0,0,0,115.2,140H100v-4.527A16.014,16.014,0,0,0,112,120V103.473A16.014,16.014,0,0,0,124,88V80a4,4,0,0,0-4-4H90A22.025,22.025,0,0,0,68,98v18a12.02,12.02,0,0,0,8,11.314V140H49.27a27.723,27.723,0,0,0-26.305,36.5l29.493,88.482,16.29,94.655-46.128,127A4,4,0,0,0,26.38,492h78.485a4,4,0,0,0,2.268-7.3L86.3,470.368l38.318-98.69a44.018,44.018,0,0,0,2.385-23.16L118.921,300h1.914l24.03,52.867V488a4,4,0,0,0,4,4h72a4,4,0,0,0,2.219-7.328ZM76,98A14.015,14.015,0,0,1,90,84h26v4a8.009,8.009,0,0,1-8,8H92a4,4,0,0,0-4,4,11.962,11.962,0,0,1-1.53,5.881A12.044,12.044,0,0,0,76,104.686Zm4,14a3.981,3.981,0,0,1,3.407,1.9,4,4,0,0,0,5.956.975c.207-.171.7-.648.7-.648.032-.028.061-.057.09-.087A19.907,19.907,0,0,0,95.6,104H104v16a8.009,8.009,0,0,1-8,8,12.133,12.133,0,0,1-2.681-.3,4,4,0,1,0-1.775,7.8c.151.035.3.06.456.091V148a4,4,0,1,1-8,0V124a4,4,0,0,0-4-4,4,4,0,0,1,0-8Z\"></path></g></svg>				\n									<h5>\n							arbejde udført med ansvar						\n					</h5>\n				<p>Vi lover ikke mere, end vi kan holde – men vi holder det, vi lover.</p>			<h2>KONTAKT OS</h2>		<p>Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.</p>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 13:37:17', '2026-01-26 13:37:17', '', 10, 'https://mrarif.me/cpnordic/?p=537', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(528, 1, '2026-01-26 13:27:51', '2026-01-26 13:27:51', '<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h1>CP NORDIC ApS</h1>					<h4>Construction – Carpentry &amp; Roofing</h4>										<a href=\"#\">\n									Kontakt\n					</a>\n									<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>					\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle ANMELDELSER\n					</a>\n					<h2>HVORFOR VÆLGE CP NORDIC ApS?</h2>		<p>Når du vælger CP NORDIC ApS, får du:</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 450 450\" width=\"512\"><g><g><path d=\"m225 165.2c-25.9 0-48.9-18.8-53.3-45.2-2.4-14.2.9-28.6 9.3-40.3 8.4-11.8 20.9-19.5 35.1-21.9 29.4-4.9 57.3 15 62.2 44.5 4.9 29.4-15 57.3-44.4 62.2-3 .5-6 .7-8.9.7zm-7.6-99.8c-12.2 2-22.9 8.7-30.1 18.8s-10.1 22.4-8 34.6c3.8 22.7 23.5 38.8 45.7 38.8 2.5 0 5.1-.2 7.6-.6 25.2-4.2 42.3-28.1 38.1-53.4s-28.1-42.4-53.3-38.2z\"></path><path d=\"m255.2 115c-2.1 0-3.8-1.7-3.8-3.8 0-14.6-11.8-26.4-26.4-26.4-2.1 0-3.8-1.7-3.8-3.8s1.7-3.8 3.8-3.8c18.8 0 34.1 15.3 34.1 34.1 0 2-1.8 3.7-3.9 3.7z\"></path><path d=\"m236.1 203h-22.2c-2.1 0-3.8-1.7-3.8-3.8v-14.1c-3.1-.6-6.1-1.4-9.1-2.4l-7 12.2c-1.1 1.8-3.4 2.5-5.3 1.4l-19.2-11.1c-.9-.5-1.5-1.4-1.8-2.3-.3-1-.1-2 .4-2.9l7-12.1c-2.4-2.1-4.6-4.3-6.7-6.6l-12.1 7c-1.8 1.1-4.2.4-5.2-1.4l-11.1-19.2c-1.1-1.8-.4-4.2 1.4-5.2l11.9-6.8c-1-3-1.9-6.1-2.6-9.3h-13.7c-2.1 0-3.8-1.7-3.8-3.8v-22.2c0-2.1 1.7-3.8 3.8-3.8h13.4c.6-3.2 1.4-6.4 2.4-9.5l-11.5-6.6c-1.8-1.1-2.5-3.4-1.4-5.3l11.1-19.6c.5-.9 1.4-1.5 2.3-1.8s2-.1 2.9.4l11.3 6.6c2.2-2.5 4.5-4.8 7-7l-6.5-11.3c-.5-.9-.6-1.9-.4-2.9.3-1 .9-1.8 1.8-2.3l19.2-11.1c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l6.4 11.2c3.1-1.1 6.4-1.9 9.7-2.6v-13c0-2.1 1.7-3.8 3.8-3.8h22.2c2.1 0 3.8 1.7 3.8 3.8v12.8c3.3.7 6.5 1.5 9.7 2.6l6.5-11.2c.5-.9 1.4-1.5 2.3-1.8 1-.3 2-.1 2.9.4l19.2 11.1c.9.5 1.5 1.3 1.8 2.3s.1 2-.4 2.9l-6.5 11.3c2.5 2.2 4.8 4.5 7 7.1l11.3-6.6c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l11.1 19.2c1.1 1.8.4 4.2-1.4 5.3l-11.5 6.6c1 3.1 1.8 6.3 2.5 9.5h13.6c2.1 0 3.8 1.7 3.8 3.8v22.2c0 2.1-1.7 3.8-3.8 3.8h-13.6c-.6 3.1-1.5 6.2-2.5 9.3l11.9 6.8c1.8 1.1 2.5 3.4 1.4 5.2l-11.2 19.5c-1.1 1.8-3.4 2.5-5.2 1.4l-12-7c-2.1 2.4-4.4 4.6-6.7 6.6l7 12.1c.5.9.6 1.9.4 2.9s-.9 1.8-1.8 2.3l-19.2 11.1c-1.8 1.1-4.2.4-5.2-1.4l-7-12.2c-3 1-6 1.8-9.1 2.4v14.1c-.2 2.3-2 4-4.1 4zm-18.4-7.7h14.5v-13.5c0-1.9 1.4-3.5 3.3-3.8 4.7-.7 9.4-2 13.8-3.7 1.8-.7 3.8 0 4.7 1.7l6.7 11.6 12.6-7.3-6.7-11.6c-1-1.6-.5-3.7.9-4.9 3.7-3 7.2-6.4 10.2-10.1 1.2-1.5 3.3-1.8 4.9-.9l11.5 6.6 7.3-12.6-11.3-6.5c-1.6-.9-2.4-3-1.6-4.7 1.8-4.5 3.1-9.2 3.9-14 .3-1.9 1.9-3.2 3.8-3.2h13v-14.6h-12.8c-1.9 0-3.5-1.4-3.8-3.3-.7-4.8-2-9.6-3.7-14.2-.7-1.8 0-3.7 1.7-4.7l10.9-6.3-7.3-12.6-10.8 6.3c-1.6.9-3.7.6-4.9-.9-3.1-3.9-6.6-7.4-10.4-10.6-1.5-1.2-1.9-3.3-.9-4.9l6.2-10.7-12.6-7.3-6.1 10.6c-1 1.6-3 2.3-4.7 1.7-4.6-1.8-9.5-3.1-14.4-3.9-1.9-.3-3.3-1.9-3.3-3.8v-12.2h-14.5v12.3c0 1.9-1.4 3.5-3.3 3.8-5 .8-9.8 2.1-14.4 3.9-1.8.7-3.8 0-4.7-1.7l-6.1-10.6-12.6 7.3 6.2 10.7c.9 1.6.6 3.7-.9 4.9-3.9 3.1-7.4 6.7-10.4 10.6-1.2 1.5-3.3 1.9-4.9.9l-10.8-6.3-7.3 12.6 10.9 6.3c1.6.9 2.3 2.9 1.7 4.7-1.7 4.6-3 9.4-3.7 14.2-.3 1.9-1.9 3.3-3.8 3.3h-12.8v14.5h13c1.9 0 3.5 1.4 3.8 3.2.8 4.8 2.1 9.5 3.9 14 .7 1.8 0 3.8-1.6 4.7l-11.3 6.5 7.3 12.6 11.5-6.6c1.6-.9 3.7-.6 4.9.9 3 3.7 6.5 7.1 10.3 10.1 1.5 1.2 1.9 3.3.9 4.9l-6.7 11.6 12.6 7.3 6.7-11.6c.9-1.6 2.9-2.3 4.7-1.7 4.5 1.7 9.1 2.9 13.8 3.7 1.9.3 3.3 1.9 3.3 3.8z\"></path></g><g><g><g><path d=\"m45.3 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m153.9 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path></g><g><path d=\"m189.3 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.2c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c0 2.1-1.7 3.8-3.8 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m73.3 326.4c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m126 326.4c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m99.7 325.6c-.6 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4s4.1 1.1 4.4 3.2c2.4 16.5 12.3 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m50.2 266.6c-.1 0-.2 0-.3 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.7 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-8.9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.5 2.2zm81.8-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13.1-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.4-.7 2.3-.7z\"></path></g></g></g><g><g><path d=\"m296.1 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m404.7 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path></g><g><path d=\"m440 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.1c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c.2 2.1-1.6 3.8-3.7 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m324 326.3c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m376.7 326.3c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m350.4 325.6c-.5 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4 2.1-.3 4 1.1 4.4 3.2 2.4 16.5 12.4 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m301 266.6c-.1 0-.2 0-.4 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.6 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.4 2.2zm81.7-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.5-.7 2.3-.7z\"></path></g></g></g></g></g></svg>				\n									<h5>\n							et ungt og engageret team						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"496pt\" viewBox=\"0 0 496 496\" width=\"496pt\"><path d=\"m440 328h-28.207031c5.078125-6.703125 8.207031-14.960938 8.207031-24 0-8.824219-7.175781-16-16-16h-12v-19.960938c59.574219-14.445312 104-68.085937 104-132.039062 0-74.992188-61.007812-136-136-136s-136 61.007812-136 136c0 63.953125 44.425781 117.59375 104 132.039062v19.960938h-8.449219c-6.167969 0-12.359375 1.464844-17.886719 4.214844l-50.480468 25.25c-3.320313 1.664062-7.03125 2.535156-10.734375 2.535156h-40.449219v-16h-104v16h56v56h16v-56h16v128h-16v-56h-16v56h-56v16h104v-16h40.449219c3.703125 0 7.414062.871094 10.734375 2.527344l34.488281 17.25c5.519531 2.757812 11.710937 4.222656 17.878906 4.222656h24.449219v24h64v-24h48c13.230469 0 24-10.769531 24-24 0-6.167969-2.40625-11.742188-6.238281-16 3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16 0-13.230469-10.769531-24-24-24zm8 24c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm-208-280c0-66.167969 53.832031-120 120-120s120 53.832031 120 120-53.832031 120-120 120-120-53.832031-120-120zm104 134.976562c5.257812.617188 10.574219 1.023438 16 1.023438s10.742188-.40625 16-1.023438v17.023438h-32zm-40.449219 185.023438c-3.703125 0-7.414062-.871094-10.734375-2.527344l-34.488281-17.25c-5.519531-2.757812-11.710937-4.222656-17.878906-4.222656h-40.449219v-96h40.449219c6.167969 0 12.359375-1.464844 17.886719-4.214844l50.480468-25.25c3.320313-1.664062 7.03125-2.535156 10.734375-2.535156h84.449219c0 13.230469-10.769531 24-24 24h-48.28125l-23.863281 35.808594c-6.101563 9.160156-14.527344 16.589844-24.367188 21.503906-8.753906 4.375-18.542969 6.6875-28.320312 6.6875h-15.167969v16h15.167969c12.246093 0 24.519531-2.894531 35.472656-8.375 12.328125-6.160156 22.878906-15.480469 30.527344-26.945312l6.832031-10.253907v93.574219zm40.449219 24v-136h17.472656c-.898437 2.511719-1.472656 5.183594-1.472656 8 0 6.167969 2.40625 11.742188 6.238281 16-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16 0 10.414062 6.710938 19.214844 16 22.527344v9.472656zm96-24h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8s-3.59375 8-8 8zm0 0\"></path><path d=\"m394.878906 73.007812-7.757812 13.984376c17.816406 9.878906 28.878906 28.664062 28.878906 49.007812h16c0-26.160156-14.222656-50.296875-37.121094-62.992188zm0 0\"></path><path d=\"m360 80c4.734375 0 9.449219.59375 14.007812 1.769531l3.976563-15.503906c-5.855469-1.496094-11.90625-2.265625-17.984375-2.265625zm0 0\"></path><path d=\"m360 48c48.519531 0 88 39.480469 88 88 0 20.753906-7.398438 40.910156-20.832031 56.785156l12.207031 10.34375c15.882812-18.761718 24.625-42.601562 24.625-67.128906 0-57.34375-46.65625-104-104-104-24.527344 0-48.367188 8.753906-67.128906 24.632812l10.335937 12.199219c15.871094-13.433593 36.039063-20.832031 56.792969-20.832031zm0 0\"></path><path d=\"m427.128906 215.367188-10.335937-12.199219c-15.871094 13.433593-36.039063 20.832031-56.792969 20.832031-48.519531 0-88-39.480469-88-88 0-20.753906 7.398438-40.910156 20.832031-56.785156l-12.207031-10.34375c-15.882812 18.761718-24.625 42.601562-24.625 67.128906 0 57.34375 46.65625 104 104 104 24.527344 0 48.367188-8.753906 67.128906-24.632812zm0 0\"></path><path d=\"m121.214844 165.640625c4.953125-1.375 9.695312-3.34375 14.183594-5.878906l9.769531 4.886719 19.472656-19.480469-4.886719-9.769531c2.535156-4.496094 4.503906-9.230469 5.886719-14.183594l10.359375-3.445313v-27.53125l-10.351562-3.453125c-1.375-4.953125-3.34375-9.707031-5.886719-14.183594l4.886719-9.777343-19.472657-19.472657-9.769531 4.886719c-4.484375-2.535156-9.230469-4.503906-14.183594-5.878906l-3.453125-10.359375h-27.539062l-3.445313 10.359375c-4.953125 1.375-9.695312 3.34375-14.183594 5.878906l-9.777343-4.886719-19.472657 19.472657 4.886719 9.777343c-2.535156 4.488282-4.503906 9.230469-5.886719 14.183594l-10.351562 3.445313v27.53125l10.351562 3.453125c1.375 4.953125 3.34375 9.695312 5.886719 14.183594l-4.886719 9.769531 19.472657 19.480469 9.769531-4.886719c4.484375 2.535156 9.230469 4.503906 14.183594 5.878906l3.453125 10.359375h27.539062zm-12.304688-13.679687-2.679687 8.039062h-4.460938l-2.679687-8.039062-4.554688-.90625c-6.128906-1.222657-11.878906-3.605469-17.109375-7.09375l-3.867187-2.578126-7.574219 3.800782-3.160156-3.167969 3.792969-7.582031-2.578126-3.859375c-3.488281-5.222657-5.871093-10.980469-7.09375-17.109375l-.914062-4.554688-8.03125-2.679687v-4.46875l8.03125-2.671875.914062-4.554688c1.222657-6.136718 3.613282-11.886718 7.09375-17.109375l2.578126-3.859375-3.792969-7.589844 3.160156-3.160156 7.574219 3.800782 3.867187-2.578126c5.222657-3.488281 10.980469-5.863281 17.109375-7.09375l4.554688-.90625 2.679687-8.039062h4.460938l2.679687 8.039062 4.554688.90625c6.128906 1.222657 11.878906 3.605469 17.109375 7.09375l3.867187 2.578126 7.574219-3.800782 3.160156 3.160156-3.792969 7.589844 2.578126 3.859375c3.488281 5.214844 5.871093 10.972657 7.09375 17.109375l.914062 4.554688 8.03125 2.679687v4.46875l-8.03125 2.671875-.914062 4.554688c-1.222657 6.128906-3.613282 11.878906-7.09375 17.109375l-2.578126 3.859375 3.792969 7.582031-3.160156 3.167969-7.574219-3.800782-3.867187 2.578126c-5.222657 3.488281-10.980469 5.863281-17.109375 7.09375zm0 0\"></path><path d=\"m104 72c-17.648438 0-32 14.351562-32 32s14.351562 32 32 32 32-14.351562 32-32-14.351562-32-32-32zm0 48c-8.824219 0-16-7.175781-16-16s7.175781-16 16-16 16 7.175781 16 16-7.175781 16-16 16zm0 0\"></path><path d=\"m160 248v-40h48v-208h-208v208h106.664062zm-144-232h176v176h-48v24l-32-24h-96zm0 0\"></path><path d=\"m0 272h16v16h-16zm0 0\"></path><path d=\"m32 272h16v16h-16zm0 0\"></path><path d=\"m64 272h16v16h-16zm0 0\"></path><path d=\"m32 304h16v16h-16zm0 0\"></path><path d=\"m64 304h16v16h-16zm0 0\"></path><path d=\"m0 480h16v16h-16zm0 0\"></path><path d=\"m32 480h16v16h-16zm0 0\"></path><path d=\"m64 480h16v16h-16zm0 0\"></path><path d=\"m32 448h16v16h-16zm0 0\"></path><path d=\"m64 448h16v16h-16zm0 0\"></path></svg>				\n									<h5>\n							fokus på kvalitet og detaljer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m469.12 408.93-67.26-33.63v-22.13c10.71-7.69 18.6-19.07 21.78-32.27h5.28c8.81 0 15.98-7.17 15.98-15.98v-5.29c0-6.35-3.74-11.84-9.12-14.41 5.19-18.64-1.65-39.76-19.44-59.78-12.58-14.16-30.67-22.27-49.62-22.27-18.93 0-37.01 8.12-49.59 22.27-13.38 15.05-20.95 41.01-14.03 59.62-5.56 2.5-9.45 8.09-9.45 14.57v5.29c0 8.81 7.17 15.98 15.98 15.98h5.55c3.16 13.09 10.94 24.39 21.51 32.08v22.32l-67.26 33.63c-16.7 5.87-27.89 21.6-27.89 39.28v41.63c0 3.31 2.69 6 6 6h243.46c3.31 0 6-2.69 6-6v-41.63c0-17.68-11.19-33.41-27.88-39.28zm-62.24-17.7-15.83 27.66-13.29-13.29 19.29-19.29zm-37.61 5.88-20.59-20.58v-16.91c6.41 2.57 13.4 4.01 20.72 4.01 7.22 0 14.11-1.39 20.45-3.9v16.8zm63.63-97.48v5.29c0 2.16-1.82 3.98-3.98 3.98h-3.74c.01-.36.03-.71.03-1.07v-12.18h3.71c2.15-.01 3.98 1.82 3.98 3.98zm-119.29 8.2v1.07h-3.98c-2.16 0-3.98-1.82-3.98-3.98v-5.29c0-2.16 1.82-3.98 3.98-3.98l3.98.22zm1.95-24.19c-7.33-13.69-.89-37.39 10.53-50.24 10.31-11.6 25.12-18.25 40.63-18.25 15.52 0 30.34 6.65 40.65 18.25 8.43 9.48 21.3 27.59 17.4 46.39-5.66-.35-10.67-2.55-14.4-6.36-5.37-5.49-7.72-14-6.63-23.94.29-2.62-1.17-5.13-3.6-6.17s-5.25-.37-6.95 1.65c-19.33 22.92-45.95 36.76-73.9 38.68h-3.73zm10.05 24.19v-12.73c24.57-2.92 47.92-14.05 66.73-31.8 1.43 7.26 4.63 13.6 9.45 18.52 3.27 3.35 7.14 5.89 11.41 7.58v18.42c0 24.15-19.65 43.8-43.8 43.8s-43.79-19.64-43.79-43.79zm15.89 78.48 19.29 19.29-13.29 13.29-15.84-27.66zm3.22 97.53h-39.42v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.76v-35.63c0-12.68 8.1-23.95 20.15-28.05.26-.09.51-.19.75-.31l46.47-23.23 20.07 35.06c.93 1.62 2.56 2.72 4.41 2.97.27.04.53.05.79.05 1.58 0 3.11-.62 4.24-1.76l.14-.14zm12.08 0 7.41-64.69 5.06-5.06 4.84 4.84 7.86 64.92h-25.17zm128.2 0h-39.76v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.18l-6.2-51.17.25.25c1.13 1.13 2.66 1.76 4.24 1.76.26 0 .53-.02.79-.05 1.85-.25 3.48-1.34 4.41-2.97l20.07-35.06 46.47 23.23c.24.12.49.23.75.31 12.05 4.1 20.15 15.38 20.15 28.05v35.65zm-67.04-346.65h-10.84l28.38 39.84 28.38-39.84h-10.84c-3.31 0-6-2.69-6-6v-64.58h-98.7c-3.31 0-6-2.69-6-6s2.69-6 6-6h104.7c3.31 0 6 2.69 6 6v64.58h16.48c2.25 0 4.3 1.25 5.33 3.25s.86 4.4-.45 6.23l-40.02 56.18c-1.13 1.58-2.95 2.52-4.89 2.52s-3.76-.94-4.89-2.52l-40.02-56.18c-1.3-1.83-1.48-4.23-.45-6.23s3.09-3.25 5.33-3.25h16.48v-23.5h-65.38c-3.31 0-6-2.69-6-6s2.69-6 6-6h71.38c3.31 0 6 2.69 6 6v35.5c.02 3.31-2.67 6-5.98 6zm-118.44 50.65v-133.26c0-21.18-17.23-38.41-38.41-38.41h-207.7c-21.18-.01-38.41 17.23-38.41 38.41v133.26c0 21.18 17.23 38.41 38.41 38.41h105.8l64.8 55.11c1.11.94 2.49 1.43 3.89 1.43.85 0 1.71-.18 2.52-.55 2.12-.98 3.48-3.11 3.48-5.45v-50.54h27.21c21.18 0 38.41-17.23 38.41-38.41zm-71.62 26.41c-3.31 0-6 2.69-6 6v43.56l-56.59-48.13c-1.08-.92-2.46-1.43-3.89-1.43h-108.01c-14.56 0-26.41-11.85-26.41-26.41v-133.26c0-14.56 11.85-26.41 26.41-26.41h207.69c14.56 0 26.41 11.85 26.41 26.41v133.26c0 14.56-11.85 26.41-26.41 26.41zm-156.34-87.87h56.97c3.31 0 6-2.69 6-6v-39.2l8.55-8.55c2.34-2.34 2.34-6.14 0-8.49-2.34-2.34-6.14-2.34-8.48 0l-.7.7c-.98-1.97-3.01-3.32-5.36-3.32h-56.98c-3.31 0-6 2.69-6 6v52.85c0 3.32 2.69 6.01 6 6.01zm6-52.86h44.97v2.69l-18.16 18.16-8.84-8.84c-2.34-2.34-6.14-2.34-8.49 0-2.34 2.34-2.34 6.14 0 8.49l13.08 13.08c1.17 1.17 2.71 1.76 4.24 1.76s3.07-.59 4.24-1.76l13.92-13.92v21.2h-44.96zm173.62 3.08c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 31.92c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 36.52c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.68 5.99 6zm0 31.92c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.69 5.99 6zm-119.36 165.01h10.84l-28.38-39.84-28.38 39.84h10.84c3.31 0 6 2.69 6 6v64.58h98.7c3.31 0 6 2.69 6 6s-2.69 6-6 6h-104.69c-3.31 0-6-2.69-6-6v-64.58h-16.48c-2.25 0-4.3-1.25-5.33-3.25s-.86-4.4.45-6.23l40.02-56.18c1.13-1.58 2.95-2.52 4.89-2.52s3.76.94 4.89 2.52l40.02 56.18c1.3 1.83 1.48 4.23.45 6.23s-3.09 3.25-5.33 3.25h-16.48v23.5h65.38c3.31 0 6 2.69 6 6s-2.69 6-6 6h-71.38c-3.31 0-6-2.69-6-6v-35.5c-.03-3.31 2.66-6 5.97-6z\"></path></svg>				\n									<h5>\n							ærlig<br> rådgivning						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 510 510\"><path d=\"m192.036 385.845c-4.787-46.972-19.459-64.336-30.658-82.352-8.672-13.951-15.5-28.245-15.5-54.252 0-60.242 48.865-109.109 109.135-109.109 60.242 0 109.109 48.866 109.109 109.109 0 26.007-6.828 40.301-15.5 54.252-11.199 18.016-25.871 35.38-30.658 82.352 9.985 2.864 17.345 12.101 17.345 22.975v36.44c0 13.109-10.747 23.866-23.893 23.866h-10.334v9.945c0 12.588-10.341 22.929-22.93 22.929h-46.304c-12.589 0-22.93-10.341-22.93-22.929v-9.945h-10.334c-13.146 0-23.893-10.757-23.893-23.866v-36.44c0-10.874 7.36-20.111 17.345-22.975zm111.948-.917c4.199-42.194 15.78-62.332 26.488-79.049 10.147-15.842 19.65-28.207 19.65-56.638 0-52.513-42.597-95.109-95.109-95.109-52.537 0-95.135 42.596-95.135 95.109 0 28.431 9.503 40.796 19.65 56.638 10.708 16.717 22.289 36.855 26.488 79.049zm2.554-78.61c-1.175 13.701-11.985 24.191-24.783 24.191-13.527 0-24.862-12.086-24.862-26.673v-99.328c0-14.12 11.335-26.673 24.862-26.673 11.309 0 21.031 8.139 23.975 19.497 9.12 3.904 15.688 13.438 15.688 24.78 0 1.153-.068 2.289-.201 3.403 5.078 5.326 8.283 12.802 8.283 21.117 0 6.39-1.889 12.262-5.06 17.053 1.996 4.099 3.13 8.773 3.13 13.76 0 14.1-9.065 25.697-21.032 28.873zm-16.452-109.977c-1.964-2.729-4.916-4.506-8.331-4.506-6.192 0-10.862 6.21-10.862 12.673v99.328c0 6.677 4.67 12.673 10.862 12.673 5.516 0 9.822-4.614 10.717-10.425-4.709-1.416-8.923-4.144-12.279-7.814-2.607-2.852-2.409-7.283.443-9.89 2.851-2.607 7.282-2.408 9.889.443 2.416 2.642 5.72 4.356 9.402 4.356 7.733 0 13.643-7.218 13.643-15.734s-5.91-15.734-13.643-15.734c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7 5.352 0 10.388 1.655 14.658 4.533.593-1.743.915-3.634.915-5.612 0-2.11-.366-4.128-1.036-5.972-.769.858-1.588 1.66-2.453 2.397-2.94 2.507-7.361 2.156-9.869-.784-2.507-2.939-2.155-7.361.784-9.868 2.773-2.365 4.492-6.122 4.492-10.293 0-6.072-3.705-11.374-8.898-12.467-.154-.023-.307-.052-.458-.085-.499-.08-1.01-.121-1.532-.121-2.947 0-5.591 1.389-7.515 3.525-2.585 2.87-7.015 3.101-9.886.515-2.87-2.586-3.101-7.015-.515-9.886 3.111-3.453 7.059-5.988 11.472-7.252zm-104.526 67.344c-3.171-4.791-5.06-10.663-5.06-17.053 0-8.307 3.198-15.777 8.284-21.104-.133-1.118-.202-2.258-.202-3.416 0-11.354 6.582-20.897 15.717-24.792 2.948-11.354 12.67-19.485 23.946-19.485 13.56 0 24.888 12.555 24.888 26.673v99.328c0 14.585-11.328 26.673-24.888 26.673-12.765 0-23.578-10.484-24.757-24.184-11.98-3.166-21.058-14.769-21.058-28.88 0-4.987 1.134-9.661 3.13-13.76zm9.982-23.036c-.675 1.847-1.042 3.869-1.042 5.983 0 1.978.322 3.869.915 5.612 4.27-2.878 9.306-4.533 14.658-4.533 3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7-7.733 0-13.643 7.218-13.643 15.734s5.91 15.734 13.643 15.734c3.682 0 6.986-1.714 9.402-4.356 2.607-2.851 7.038-3.05 9.889-.443 2.852 2.607 3.05 7.038.443 9.89-3.35 3.664-7.556 6.389-12.255 7.807.891 5.813 5.192 10.432 10.693 10.432 6.21 0 10.888-5.993 10.888-12.673v-99.328c0-6.466-4.678-12.673-10.888-12.673-3.404 0-6.349 1.777-8.309 4.507 4.421 1.264 8.367 3.8 11.476 7.251 2.586 2.871 2.355 7.3-.516 9.886-2.87 2.586-7.3 2.355-9.886-.515-1.926-2.138-4.574-3.525-7.54-3.525-.493 0-.976.037-1.448.108-.196.045-.395.082-.596.11-5.165 1.118-8.844 6.404-8.844 12.455 0 1.243.153 2.45.442 3.594.101.284.183.572.246.862.748 2.326 2.071 4.346 3.814 5.823 2.947 2.498 3.311 6.919.813 9.866s-6.919 3.312-9.866.814c-.878-.745-1.71-1.554-2.489-2.422zm3.042 158.279c-5.442 0-9.893 4.451-9.893 9.892v36.44c0 5.423 4.454 9.866 9.893 9.866h17.334c3.866 0 7 3.134 7 7v16.945c0 4.902 4.027 8.929 8.93 8.929h46.304c4.903 0 8.93-4.027 8.93-8.929v-16.945c0-3.866 3.134-7 7-7h17.334c5.439 0 9.893-4.443 9.893-9.866v-36.44c0-5.441-4.451-9.892-9.893-9.892zm63.416-314.093 2.907-5.412c1.828-3.403 6.075-4.683 9.479-2.854 3.403 1.828 4.682 6.075 2.854 9.479l-16.073 29.925c-1.22 2.271-3.589 3.688-6.167 3.688s-4.947-1.417-6.167-3.688l-16.073-29.925c-1.828-3.404-.549-7.651 2.854-9.479 3.404-1.829 7.651-.549 9.479 2.854l2.907 5.412v-69.835c0-3.863 3.137-7 7-7s7 3.137 7 7zm-132.198 54.758-49.381-49.381c-2.732-2.731-2.732-7.167 0-9.899s7.168-2.732 9.9 0l49.38 49.38-1.771-5.881c-1.114-3.7.985-7.608 4.684-8.722 3.7-1.114 7.607.985 8.721 4.685l9.796 32.526c.743 2.468.069 5.145-1.753 6.968-1.823 1.823-4.5 2.496-6.969 1.753l-32.526-9.795c-3.699-1.114-5.798-5.022-4.684-8.721s5.022-5.798 8.721-4.684zm-44.859 122.299h-69.835c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7h69.835l-5.412-2.907c-3.403-1.828-4.682-6.076-2.854-9.479 1.828-3.404 6.075-4.683 9.479-2.855l29.926 16.074c2.271 1.22 3.688 3.589 3.688 6.167 0 2.577-1.417 4.947-3.688 6.166l-29.926 16.074c-3.404 1.828-7.651.549-9.479-2.855-1.828-3.403-.549-7.651 2.854-9.479zm54.758 118.198-49.38 49.38c-2.732 2.732-7.168 2.732-9.9 0s-2.732-7.167 0-9.899l49.381-49.381-5.882 1.772c-3.699 1.114-7.607-.985-8.721-4.685-1.114-3.699.985-7.607 4.684-8.721l32.526-9.795c2.469-.743 5.146-.07 6.969 1.753 1.822 1.823 2.496 4.5 1.753 6.968l-9.796 32.527c-1.114 3.699-5.021 5.798-8.721 4.684-3.699-1.114-5.798-5.022-4.684-8.721zm240.497-240.497 5.882-1.771c3.699-1.114 7.607.985 8.721 4.684s-.985 7.607-4.684 8.721l-32.526 9.795c-2.469.743-5.146.07-6.969-1.753-1.822-1.823-2.496-4.5-1.753-6.968l9.796-32.526c1.114-3.7 5.021-5.799 8.721-4.685 3.699 1.114 5.798 5.022 4.684 8.722l-1.771 5.881 49.38-49.38c2.732-2.732 7.168-2.732 9.9 0s2.732 7.168 0 9.899zm44.859 122.299 5.412 2.906c3.403 1.828 4.682 6.076 2.854 9.479-1.828 3.404-6.075 4.683-9.479 2.855l-29.926-16.074c-2.271-1.219-3.688-3.589-3.688-6.166 0-2.578 1.417-4.947 3.688-6.167l29.926-16.074c3.404-1.828 7.651-.549 9.479 2.855 1.828 3.403.549 7.651-2.854 9.479l-5.412 2.907h69.835c3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7zm-54.758 118.198 1.771 5.882c1.114 3.699-.985 7.607-4.684 8.721-3.7 1.114-7.607-.985-8.721-4.684l-9.796-32.527c-.743-2.468-.069-5.145 1.753-6.968 1.823-1.823 4.5-2.496 6.969-1.753l32.526 9.795c3.699 1.114 5.798 5.022 4.684 8.721-1.114 3.7-5.022 5.799-8.721 4.685l-5.882-1.772 49.381 49.381c2.732 2.732 2.732 7.167 0 9.899s-7.168 2.732-9.9 0z\"></path></svg>				\n									<h5>\n							gennemtænkte løsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"outline\"><path d=\"M486.41,144A28,28,0,0,0,472,92H349.123l5.457-21.828a48.513,48.513,0,0,0-12.848-46.153A41.035,41.035,0,0,0,312.609,12H308a8.009,8.009,0,0,0-8,8V47.413l-19.233,64.112A17.376,17.376,0,0,1,268,123.539V112a4,4,0,0,0-4-4H152a4,4,0,0,0-4,4v72a4,4,0,0,0,8,0V116h72V276H156V248a4,4,0,0,0-8,0v32a4,4,0,0,0,4,4H264a4,4,0,0,0,4-4V268.5h11.168A37.07,37.07,0,0,1,305.092,279a45.025,45.025,0,0,0,31.48,12.752L440,292a27.987,27.987,0,0,0,19.369-48.2,27.987,27.987,0,0,0,16-48A28,28,0,0,0,486.41,144ZM260,276H236V116h24Zm212-88H396a4,4,0,0,0,0,8h60a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h40a20,20,0,0,1,.01,40l-103.428-.25a37.07,37.07,0,0,1-25.924-10.5,45.031,45.031,0,0,0-31.49-12.752H268V131.686a25.317,25.317,0,0,0,20.429-17.862l19.4-64.675A4,4,0,0,0,308,48V20h4.609a33.082,33.082,0,0,1,23.481,9.69,40.507,40.507,0,0,1,10.728,38.541l-6.7,26.8A4,4,0,0,0,344,100H472a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h72a20,20,0,0,1,0,40Z\"></path><path d=\"M194.5,183.243l-1.9-.217a4,4,0,0,0-4.169,2.491L184.29,195.9H135.278l-3.539-9.317a4,4,0,0,0-7.478,2.84l2.459,6.477h-8.474L68.452,156.872a4,4,0,1,0-4.935,6.3L77.6,174.209,56.961,194.48l-6.636-5.491a4,4,0,1,0-5.1,6.163L87.219,229.9a44.1,44.1,0,0,0,28.05,10.1H212a8.009,8.009,0,0,0,8-8V203.9a8.009,8.009,0,0,0-8-8h-8v-2.01A10.708,10.708,0,0,0,194.5,183.243ZM212,203.9V232H115.269a36.081,36.081,0,0,1-22.951-8.264l-29.16-24.128,20.8-20.422L114.4,203.045a4,4,0,0,0,2.468.852H187a4,4,0,0,0,3.715-2.517l3.929-9.843a2.712,2.712,0,0,1,1.356,2.35v6.01a4,4,0,0,0,4,4Z\"></path><path d=\"M223.084,484.672,200.87,469.863V346.36A44.1,44.1,0,0,0,195.327,325l-17.183-30.94a4,4,0,0,0-7,3.884l17.184,30.94a36.073,36.073,0,0,1,4.537,17.478V468H164.333a4,4,0,1,0,0,8h31.321l12,8H152.865V352a4,4,0,0,0-.358-1.655l-25.454-56A4,4,0,0,0,123.411,292H114.2a4,4,0,0,0-3.945,4.658l8.862,53.175a36.016,36.016,0,0,1-1.951,18.949L78.642,468H48.333a4,4,0,1,0,0,8H80.377L92,484H32.088L76.63,361.366a4.017,4.017,0,0,0,.183-2.044L61.1,268H136a4,4,0,0,0,0-8H59.233L30.555,173.966A19.723,19.723,0,0,1,49.27,148H76a12,12,0,0,0,24,0h15.2a21.975,21.975,0,0,1,8.395,1.652l10.889,4.458a4,4,0,1,0,3.032-7.4L126.63,142.25A29.938,29.938,0,0,0,115.2,140H100v-4.527A16.014,16.014,0,0,0,112,120V103.473A16.014,16.014,0,0,0,124,88V80a4,4,0,0,0-4-4H90A22.025,22.025,0,0,0,68,98v18a12.02,12.02,0,0,0,8,11.314V140H49.27a27.723,27.723,0,0,0-26.305,36.5l29.493,88.482,16.29,94.655-46.128,127A4,4,0,0,0,26.38,492h78.485a4,4,0,0,0,2.268-7.3L86.3,470.368l38.318-98.69a44.018,44.018,0,0,0,2.385-23.16L118.921,300h1.914l24.03,52.867V488a4,4,0,0,0,4,4h72a4,4,0,0,0,2.219-7.328ZM76,98A14.015,14.015,0,0,1,90,84h26v4a8.009,8.009,0,0,1-8,8H92a4,4,0,0,0-4,4,11.962,11.962,0,0,1-1.53,5.881A12.044,12.044,0,0,0,76,104.686Zm4,14a3.981,3.981,0,0,1,3.407,1.9,4,4,0,0,0,5.956.975c.207-.171.7-.648.7-.648.032-.028.061-.057.09-.087A19.907,19.907,0,0,0,95.6,104H104v16a8.009,8.009,0,0,1-8,8,12.133,12.133,0,0,1-2.681-.3,4,4,0,1,0-1.775,7.8c.151.035.3.06.456.091V148a4,4,0,1,1-8,0V124a4,4,0,0,0-4-4,4,4,0,0,1,0-8Z\"></path></g></svg>				\n									<h5>\n							arbejde udført med ansvar						\n					</h5>\n				<p>Vi lover ikke mere, end vi kan holde – men vi holder det, vi lover.</p>			<h2>KONTAKT OS</h2>		<p>Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.</p>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 13:27:51', '2026-01-26 13:27:51', '', 10, 'https://mrarif.me/cpnordic/?p=528', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(533, 1, '2026-01-26 13:35:54', '2026-01-26 13:35:54', '<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h1>CP NORDIC ApS</h1>					<h4>Construction – Carpentry &amp; Roofing</h4>										<a href=\"#\">\n									Kontakt\n					</a>\n									<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>					\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle ANMELDELSER\n					</a>\n					<h2>HVORFOR VÆLGE CP NORDIC ApS?</h2>		<p>Når du vælger CP NORDIC ApS, får du:</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 450 450\" width=\"512\"><g><g><path d=\"m225 165.2c-25.9 0-48.9-18.8-53.3-45.2-2.4-14.2.9-28.6 9.3-40.3 8.4-11.8 20.9-19.5 35.1-21.9 29.4-4.9 57.3 15 62.2 44.5 4.9 29.4-15 57.3-44.4 62.2-3 .5-6 .7-8.9.7zm-7.6-99.8c-12.2 2-22.9 8.7-30.1 18.8s-10.1 22.4-8 34.6c3.8 22.7 23.5 38.8 45.7 38.8 2.5 0 5.1-.2 7.6-.6 25.2-4.2 42.3-28.1 38.1-53.4s-28.1-42.4-53.3-38.2z\"></path><path d=\"m255.2 115c-2.1 0-3.8-1.7-3.8-3.8 0-14.6-11.8-26.4-26.4-26.4-2.1 0-3.8-1.7-3.8-3.8s1.7-3.8 3.8-3.8c18.8 0 34.1 15.3 34.1 34.1 0 2-1.8 3.7-3.9 3.7z\"></path><path d=\"m236.1 203h-22.2c-2.1 0-3.8-1.7-3.8-3.8v-14.1c-3.1-.6-6.1-1.4-9.1-2.4l-7 12.2c-1.1 1.8-3.4 2.5-5.3 1.4l-19.2-11.1c-.9-.5-1.5-1.4-1.8-2.3-.3-1-.1-2 .4-2.9l7-12.1c-2.4-2.1-4.6-4.3-6.7-6.6l-12.1 7c-1.8 1.1-4.2.4-5.2-1.4l-11.1-19.2c-1.1-1.8-.4-4.2 1.4-5.2l11.9-6.8c-1-3-1.9-6.1-2.6-9.3h-13.7c-2.1 0-3.8-1.7-3.8-3.8v-22.2c0-2.1 1.7-3.8 3.8-3.8h13.4c.6-3.2 1.4-6.4 2.4-9.5l-11.5-6.6c-1.8-1.1-2.5-3.4-1.4-5.3l11.1-19.6c.5-.9 1.4-1.5 2.3-1.8s2-.1 2.9.4l11.3 6.6c2.2-2.5 4.5-4.8 7-7l-6.5-11.3c-.5-.9-.6-1.9-.4-2.9.3-1 .9-1.8 1.8-2.3l19.2-11.1c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l6.4 11.2c3.1-1.1 6.4-1.9 9.7-2.6v-13c0-2.1 1.7-3.8 3.8-3.8h22.2c2.1 0 3.8 1.7 3.8 3.8v12.8c3.3.7 6.5 1.5 9.7 2.6l6.5-11.2c.5-.9 1.4-1.5 2.3-1.8 1-.3 2-.1 2.9.4l19.2 11.1c.9.5 1.5 1.3 1.8 2.3s.1 2-.4 2.9l-6.5 11.3c2.5 2.2 4.8 4.5 7 7.1l11.3-6.6c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l11.1 19.2c1.1 1.8.4 4.2-1.4 5.3l-11.5 6.6c1 3.1 1.8 6.3 2.5 9.5h13.6c2.1 0 3.8 1.7 3.8 3.8v22.2c0 2.1-1.7 3.8-3.8 3.8h-13.6c-.6 3.1-1.5 6.2-2.5 9.3l11.9 6.8c1.8 1.1 2.5 3.4 1.4 5.2l-11.2 19.5c-1.1 1.8-3.4 2.5-5.2 1.4l-12-7c-2.1 2.4-4.4 4.6-6.7 6.6l7 12.1c.5.9.6 1.9.4 2.9s-.9 1.8-1.8 2.3l-19.2 11.1c-1.8 1.1-4.2.4-5.2-1.4l-7-12.2c-3 1-6 1.8-9.1 2.4v14.1c-.2 2.3-2 4-4.1 4zm-18.4-7.7h14.5v-13.5c0-1.9 1.4-3.5 3.3-3.8 4.7-.7 9.4-2 13.8-3.7 1.8-.7 3.8 0 4.7 1.7l6.7 11.6 12.6-7.3-6.7-11.6c-1-1.6-.5-3.7.9-4.9 3.7-3 7.2-6.4 10.2-10.1 1.2-1.5 3.3-1.8 4.9-.9l11.5 6.6 7.3-12.6-11.3-6.5c-1.6-.9-2.4-3-1.6-4.7 1.8-4.5 3.1-9.2 3.9-14 .3-1.9 1.9-3.2 3.8-3.2h13v-14.6h-12.8c-1.9 0-3.5-1.4-3.8-3.3-.7-4.8-2-9.6-3.7-14.2-.7-1.8 0-3.7 1.7-4.7l10.9-6.3-7.3-12.6-10.8 6.3c-1.6.9-3.7.6-4.9-.9-3.1-3.9-6.6-7.4-10.4-10.6-1.5-1.2-1.9-3.3-.9-4.9l6.2-10.7-12.6-7.3-6.1 10.6c-1 1.6-3 2.3-4.7 1.7-4.6-1.8-9.5-3.1-14.4-3.9-1.9-.3-3.3-1.9-3.3-3.8v-12.2h-14.5v12.3c0 1.9-1.4 3.5-3.3 3.8-5 .8-9.8 2.1-14.4 3.9-1.8.7-3.8 0-4.7-1.7l-6.1-10.6-12.6 7.3 6.2 10.7c.9 1.6.6 3.7-.9 4.9-3.9 3.1-7.4 6.7-10.4 10.6-1.2 1.5-3.3 1.9-4.9.9l-10.8-6.3-7.3 12.6 10.9 6.3c1.6.9 2.3 2.9 1.7 4.7-1.7 4.6-3 9.4-3.7 14.2-.3 1.9-1.9 3.3-3.8 3.3h-12.8v14.5h13c1.9 0 3.5 1.4 3.8 3.2.8 4.8 2.1 9.5 3.9 14 .7 1.8 0 3.8-1.6 4.7l-11.3 6.5 7.3 12.6 11.5-6.6c1.6-.9 3.7-.6 4.9.9 3 3.7 6.5 7.1 10.3 10.1 1.5 1.2 1.9 3.3.9 4.9l-6.7 11.6 12.6 7.3 6.7-11.6c.9-1.6 2.9-2.3 4.7-1.7 4.5 1.7 9.1 2.9 13.8 3.7 1.9.3 3.3 1.9 3.3 3.8z\"></path></g><g><g><g><path d=\"m45.3 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m153.9 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path></g><g><path d=\"m189.3 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.2c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c0 2.1-1.7 3.8-3.8 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m73.3 326.4c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m126 326.4c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m99.7 325.6c-.6 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4s4.1 1.1 4.4 3.2c2.4 16.5 12.3 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m50.2 266.6c-.1 0-.2 0-.3 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.7 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-8.9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.5 2.2zm81.8-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13.1-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.4-.7 2.3-.7z\"></path></g></g></g><g><g><path d=\"m296.1 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m404.7 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path></g><g><path d=\"m440 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.1c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c.2 2.1-1.6 3.8-3.7 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m324 326.3c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m376.7 326.3c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m350.4 325.6c-.5 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4 2.1-.3 4 1.1 4.4 3.2 2.4 16.5 12.4 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m301 266.6c-.1 0-.2 0-.4 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.6 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.4 2.2zm81.7-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.5-.7 2.3-.7z\"></path></g></g></g></g></g></svg>				\n									<h5>\n							et ungt og engageret team						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"496pt\" viewBox=\"0 0 496 496\" width=\"496pt\"><path d=\"m440 328h-28.207031c5.078125-6.703125 8.207031-14.960938 8.207031-24 0-8.824219-7.175781-16-16-16h-12v-19.960938c59.574219-14.445312 104-68.085937 104-132.039062 0-74.992188-61.007812-136-136-136s-136 61.007812-136 136c0 63.953125 44.425781 117.59375 104 132.039062v19.960938h-8.449219c-6.167969 0-12.359375 1.464844-17.886719 4.214844l-50.480468 25.25c-3.320313 1.664062-7.03125 2.535156-10.734375 2.535156h-40.449219v-16h-104v16h56v56h16v-56h16v128h-16v-56h-16v56h-56v16h104v-16h40.449219c3.703125 0 7.414062.871094 10.734375 2.527344l34.488281 17.25c5.519531 2.757812 11.710937 4.222656 17.878906 4.222656h24.449219v24h64v-24h48c13.230469 0 24-10.769531 24-24 0-6.167969-2.40625-11.742188-6.238281-16 3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16 0-13.230469-10.769531-24-24-24zm8 24c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm-208-280c0-66.167969 53.832031-120 120-120s120 53.832031 120 120-53.832031 120-120 120-120-53.832031-120-120zm104 134.976562c5.257812.617188 10.574219 1.023438 16 1.023438s10.742188-.40625 16-1.023438v17.023438h-32zm-40.449219 185.023438c-3.703125 0-7.414062-.871094-10.734375-2.527344l-34.488281-17.25c-5.519531-2.757812-11.710937-4.222656-17.878906-4.222656h-40.449219v-96h40.449219c6.167969 0 12.359375-1.464844 17.886719-4.214844l50.480468-25.25c3.320313-1.664062 7.03125-2.535156 10.734375-2.535156h84.449219c0 13.230469-10.769531 24-24 24h-48.28125l-23.863281 35.808594c-6.101563 9.160156-14.527344 16.589844-24.367188 21.503906-8.753906 4.375-18.542969 6.6875-28.320312 6.6875h-15.167969v16h15.167969c12.246093 0 24.519531-2.894531 35.472656-8.375 12.328125-6.160156 22.878906-15.480469 30.527344-26.945312l6.832031-10.253907v93.574219zm40.449219 24v-136h17.472656c-.898437 2.511719-1.472656 5.183594-1.472656 8 0 6.167969 2.40625 11.742188 6.238281 16-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16 0 10.414062 6.710938 19.214844 16 22.527344v9.472656zm96-24h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8s-3.59375 8-8 8zm0 0\"></path><path d=\"m394.878906 73.007812-7.757812 13.984376c17.816406 9.878906 28.878906 28.664062 28.878906 49.007812h16c0-26.160156-14.222656-50.296875-37.121094-62.992188zm0 0\"></path><path d=\"m360 80c4.734375 0 9.449219.59375 14.007812 1.769531l3.976563-15.503906c-5.855469-1.496094-11.90625-2.265625-17.984375-2.265625zm0 0\"></path><path d=\"m360 48c48.519531 0 88 39.480469 88 88 0 20.753906-7.398438 40.910156-20.832031 56.785156l12.207031 10.34375c15.882812-18.761718 24.625-42.601562 24.625-67.128906 0-57.34375-46.65625-104-104-104-24.527344 0-48.367188 8.753906-67.128906 24.632812l10.335937 12.199219c15.871094-13.433593 36.039063-20.832031 56.792969-20.832031zm0 0\"></path><path d=\"m427.128906 215.367188-10.335937-12.199219c-15.871094 13.433593-36.039063 20.832031-56.792969 20.832031-48.519531 0-88-39.480469-88-88 0-20.753906 7.398438-40.910156 20.832031-56.785156l-12.207031-10.34375c-15.882812 18.761718-24.625 42.601562-24.625 67.128906 0 57.34375 46.65625 104 104 104 24.527344 0 48.367188-8.753906 67.128906-24.632812zm0 0\"></path><path d=\"m121.214844 165.640625c4.953125-1.375 9.695312-3.34375 14.183594-5.878906l9.769531 4.886719 19.472656-19.480469-4.886719-9.769531c2.535156-4.496094 4.503906-9.230469 5.886719-14.183594l10.359375-3.445313v-27.53125l-10.351562-3.453125c-1.375-4.953125-3.34375-9.707031-5.886719-14.183594l4.886719-9.777343-19.472657-19.472657-9.769531 4.886719c-4.484375-2.535156-9.230469-4.503906-14.183594-5.878906l-3.453125-10.359375h-27.539062l-3.445313 10.359375c-4.953125 1.375-9.695312 3.34375-14.183594 5.878906l-9.777343-4.886719-19.472657 19.472657 4.886719 9.777343c-2.535156 4.488282-4.503906 9.230469-5.886719 14.183594l-10.351562 3.445313v27.53125l10.351562 3.453125c1.375 4.953125 3.34375 9.695312 5.886719 14.183594l-4.886719 9.769531 19.472657 19.480469 9.769531-4.886719c4.484375 2.535156 9.230469 4.503906 14.183594 5.878906l3.453125 10.359375h27.539062zm-12.304688-13.679687-2.679687 8.039062h-4.460938l-2.679687-8.039062-4.554688-.90625c-6.128906-1.222657-11.878906-3.605469-17.109375-7.09375l-3.867187-2.578126-7.574219 3.800782-3.160156-3.167969 3.792969-7.582031-2.578126-3.859375c-3.488281-5.222657-5.871093-10.980469-7.09375-17.109375l-.914062-4.554688-8.03125-2.679687v-4.46875l8.03125-2.671875.914062-4.554688c1.222657-6.136718 3.613282-11.886718 7.09375-17.109375l2.578126-3.859375-3.792969-7.589844 3.160156-3.160156 7.574219 3.800782 3.867187-2.578126c5.222657-3.488281 10.980469-5.863281 17.109375-7.09375l4.554688-.90625 2.679687-8.039062h4.460938l2.679687 8.039062 4.554688.90625c6.128906 1.222657 11.878906 3.605469 17.109375 7.09375l3.867187 2.578126 7.574219-3.800782 3.160156 3.160156-3.792969 7.589844 2.578126 3.859375c3.488281 5.214844 5.871093 10.972657 7.09375 17.109375l.914062 4.554688 8.03125 2.679687v4.46875l-8.03125 2.671875-.914062 4.554688c-1.222657 6.128906-3.613282 11.878906-7.09375 17.109375l-2.578126 3.859375 3.792969 7.582031-3.160156 3.167969-7.574219-3.800782-3.867187 2.578126c-5.222657 3.488281-10.980469 5.863281-17.109375 7.09375zm0 0\"></path><path d=\"m104 72c-17.648438 0-32 14.351562-32 32s14.351562 32 32 32 32-14.351562 32-32-14.351562-32-32-32zm0 48c-8.824219 0-16-7.175781-16-16s7.175781-16 16-16 16 7.175781 16 16-7.175781 16-16 16zm0 0\"></path><path d=\"m160 248v-40h48v-208h-208v208h106.664062zm-144-232h176v176h-48v24l-32-24h-96zm0 0\"></path><path d=\"m0 272h16v16h-16zm0 0\"></path><path d=\"m32 272h16v16h-16zm0 0\"></path><path d=\"m64 272h16v16h-16zm0 0\"></path><path d=\"m32 304h16v16h-16zm0 0\"></path><path d=\"m64 304h16v16h-16zm0 0\"></path><path d=\"m0 480h16v16h-16zm0 0\"></path><path d=\"m32 480h16v16h-16zm0 0\"></path><path d=\"m64 480h16v16h-16zm0 0\"></path><path d=\"m32 448h16v16h-16zm0 0\"></path><path d=\"m64 448h16v16h-16zm0 0\"></path></svg>				\n									<h5>\n							fokus på kvalitet og detaljer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m469.12 408.93-67.26-33.63v-22.13c10.71-7.69 18.6-19.07 21.78-32.27h5.28c8.81 0 15.98-7.17 15.98-15.98v-5.29c0-6.35-3.74-11.84-9.12-14.41 5.19-18.64-1.65-39.76-19.44-59.78-12.58-14.16-30.67-22.27-49.62-22.27-18.93 0-37.01 8.12-49.59 22.27-13.38 15.05-20.95 41.01-14.03 59.62-5.56 2.5-9.45 8.09-9.45 14.57v5.29c0 8.81 7.17 15.98 15.98 15.98h5.55c3.16 13.09 10.94 24.39 21.51 32.08v22.32l-67.26 33.63c-16.7 5.87-27.89 21.6-27.89 39.28v41.63c0 3.31 2.69 6 6 6h243.46c3.31 0 6-2.69 6-6v-41.63c0-17.68-11.19-33.41-27.88-39.28zm-62.24-17.7-15.83 27.66-13.29-13.29 19.29-19.29zm-37.61 5.88-20.59-20.58v-16.91c6.41 2.57 13.4 4.01 20.72 4.01 7.22 0 14.11-1.39 20.45-3.9v16.8zm63.63-97.48v5.29c0 2.16-1.82 3.98-3.98 3.98h-3.74c.01-.36.03-.71.03-1.07v-12.18h3.71c2.15-.01 3.98 1.82 3.98 3.98zm-119.29 8.2v1.07h-3.98c-2.16 0-3.98-1.82-3.98-3.98v-5.29c0-2.16 1.82-3.98 3.98-3.98l3.98.22zm1.95-24.19c-7.33-13.69-.89-37.39 10.53-50.24 10.31-11.6 25.12-18.25 40.63-18.25 15.52 0 30.34 6.65 40.65 18.25 8.43 9.48 21.3 27.59 17.4 46.39-5.66-.35-10.67-2.55-14.4-6.36-5.37-5.49-7.72-14-6.63-23.94.29-2.62-1.17-5.13-3.6-6.17s-5.25-.37-6.95 1.65c-19.33 22.92-45.95 36.76-73.9 38.68h-3.73zm10.05 24.19v-12.73c24.57-2.92 47.92-14.05 66.73-31.8 1.43 7.26 4.63 13.6 9.45 18.52 3.27 3.35 7.14 5.89 11.41 7.58v18.42c0 24.15-19.65 43.8-43.8 43.8s-43.79-19.64-43.79-43.79zm15.89 78.48 19.29 19.29-13.29 13.29-15.84-27.66zm3.22 97.53h-39.42v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.76v-35.63c0-12.68 8.1-23.95 20.15-28.05.26-.09.51-.19.75-.31l46.47-23.23 20.07 35.06c.93 1.62 2.56 2.72 4.41 2.97.27.04.53.05.79.05 1.58 0 3.11-.62 4.24-1.76l.14-.14zm12.08 0 7.41-64.69 5.06-5.06 4.84 4.84 7.86 64.92h-25.17zm128.2 0h-39.76v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.18l-6.2-51.17.25.25c1.13 1.13 2.66 1.76 4.24 1.76.26 0 .53-.02.79-.05 1.85-.25 3.48-1.34 4.41-2.97l20.07-35.06 46.47 23.23c.24.12.49.23.75.31 12.05 4.1 20.15 15.38 20.15 28.05v35.65zm-67.04-346.65h-10.84l28.38 39.84 28.38-39.84h-10.84c-3.31 0-6-2.69-6-6v-64.58h-98.7c-3.31 0-6-2.69-6-6s2.69-6 6-6h104.7c3.31 0 6 2.69 6 6v64.58h16.48c2.25 0 4.3 1.25 5.33 3.25s.86 4.4-.45 6.23l-40.02 56.18c-1.13 1.58-2.95 2.52-4.89 2.52s-3.76-.94-4.89-2.52l-40.02-56.18c-1.3-1.83-1.48-4.23-.45-6.23s3.09-3.25 5.33-3.25h16.48v-23.5h-65.38c-3.31 0-6-2.69-6-6s2.69-6 6-6h71.38c3.31 0 6 2.69 6 6v35.5c.02 3.31-2.67 6-5.98 6zm-118.44 50.65v-133.26c0-21.18-17.23-38.41-38.41-38.41h-207.7c-21.18-.01-38.41 17.23-38.41 38.41v133.26c0 21.18 17.23 38.41 38.41 38.41h105.8l64.8 55.11c1.11.94 2.49 1.43 3.89 1.43.85 0 1.71-.18 2.52-.55 2.12-.98 3.48-3.11 3.48-5.45v-50.54h27.21c21.18 0 38.41-17.23 38.41-38.41zm-71.62 26.41c-3.31 0-6 2.69-6 6v43.56l-56.59-48.13c-1.08-.92-2.46-1.43-3.89-1.43h-108.01c-14.56 0-26.41-11.85-26.41-26.41v-133.26c0-14.56 11.85-26.41 26.41-26.41h207.69c14.56 0 26.41 11.85 26.41 26.41v133.26c0 14.56-11.85 26.41-26.41 26.41zm-156.34-87.87h56.97c3.31 0 6-2.69 6-6v-39.2l8.55-8.55c2.34-2.34 2.34-6.14 0-8.49-2.34-2.34-6.14-2.34-8.48 0l-.7.7c-.98-1.97-3.01-3.32-5.36-3.32h-56.98c-3.31 0-6 2.69-6 6v52.85c0 3.32 2.69 6.01 6 6.01zm6-52.86h44.97v2.69l-18.16 18.16-8.84-8.84c-2.34-2.34-6.14-2.34-8.49 0-2.34 2.34-2.34 6.14 0 8.49l13.08 13.08c1.17 1.17 2.71 1.76 4.24 1.76s3.07-.59 4.24-1.76l13.92-13.92v21.2h-44.96zm173.62 3.08c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 31.92c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 36.52c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.68 5.99 6zm0 31.92c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.69 5.99 6zm-119.36 165.01h10.84l-28.38-39.84-28.38 39.84h10.84c3.31 0 6 2.69 6 6v64.58h98.7c3.31 0 6 2.69 6 6s-2.69 6-6 6h-104.69c-3.31 0-6-2.69-6-6v-64.58h-16.48c-2.25 0-4.3-1.25-5.33-3.25s-.86-4.4.45-6.23l40.02-56.18c1.13-1.58 2.95-2.52 4.89-2.52s3.76.94 4.89 2.52l40.02 56.18c1.3 1.83 1.48 4.23.45 6.23s-3.09 3.25-5.33 3.25h-16.48v23.5h65.38c3.31 0 6 2.69 6 6s-2.69 6-6 6h-71.38c-3.31 0-6-2.69-6-6v-35.5c-.03-3.31 2.66-6 5.97-6z\"></path></svg>				\n									<h5>\n							ærlig<br> rådgivning						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 510 510\"><path d=\"m192.036 385.845c-4.787-46.972-19.459-64.336-30.658-82.352-8.672-13.951-15.5-28.245-15.5-54.252 0-60.242 48.865-109.109 109.135-109.109 60.242 0 109.109 48.866 109.109 109.109 0 26.007-6.828 40.301-15.5 54.252-11.199 18.016-25.871 35.38-30.658 82.352 9.985 2.864 17.345 12.101 17.345 22.975v36.44c0 13.109-10.747 23.866-23.893 23.866h-10.334v9.945c0 12.588-10.341 22.929-22.93 22.929h-46.304c-12.589 0-22.93-10.341-22.93-22.929v-9.945h-10.334c-13.146 0-23.893-10.757-23.893-23.866v-36.44c0-10.874 7.36-20.111 17.345-22.975zm111.948-.917c4.199-42.194 15.78-62.332 26.488-79.049 10.147-15.842 19.65-28.207 19.65-56.638 0-52.513-42.597-95.109-95.109-95.109-52.537 0-95.135 42.596-95.135 95.109 0 28.431 9.503 40.796 19.65 56.638 10.708 16.717 22.289 36.855 26.488 79.049zm2.554-78.61c-1.175 13.701-11.985 24.191-24.783 24.191-13.527 0-24.862-12.086-24.862-26.673v-99.328c0-14.12 11.335-26.673 24.862-26.673 11.309 0 21.031 8.139 23.975 19.497 9.12 3.904 15.688 13.438 15.688 24.78 0 1.153-.068 2.289-.201 3.403 5.078 5.326 8.283 12.802 8.283 21.117 0 6.39-1.889 12.262-5.06 17.053 1.996 4.099 3.13 8.773 3.13 13.76 0 14.1-9.065 25.697-21.032 28.873zm-16.452-109.977c-1.964-2.729-4.916-4.506-8.331-4.506-6.192 0-10.862 6.21-10.862 12.673v99.328c0 6.677 4.67 12.673 10.862 12.673 5.516 0 9.822-4.614 10.717-10.425-4.709-1.416-8.923-4.144-12.279-7.814-2.607-2.852-2.409-7.283.443-9.89 2.851-2.607 7.282-2.408 9.889.443 2.416 2.642 5.72 4.356 9.402 4.356 7.733 0 13.643-7.218 13.643-15.734s-5.91-15.734-13.643-15.734c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7 5.352 0 10.388 1.655 14.658 4.533.593-1.743.915-3.634.915-5.612 0-2.11-.366-4.128-1.036-5.972-.769.858-1.588 1.66-2.453 2.397-2.94 2.507-7.361 2.156-9.869-.784-2.507-2.939-2.155-7.361.784-9.868 2.773-2.365 4.492-6.122 4.492-10.293 0-6.072-3.705-11.374-8.898-12.467-.154-.023-.307-.052-.458-.085-.499-.08-1.01-.121-1.532-.121-2.947 0-5.591 1.389-7.515 3.525-2.585 2.87-7.015 3.101-9.886.515-2.87-2.586-3.101-7.015-.515-9.886 3.111-3.453 7.059-5.988 11.472-7.252zm-104.526 67.344c-3.171-4.791-5.06-10.663-5.06-17.053 0-8.307 3.198-15.777 8.284-21.104-.133-1.118-.202-2.258-.202-3.416 0-11.354 6.582-20.897 15.717-24.792 2.948-11.354 12.67-19.485 23.946-19.485 13.56 0 24.888 12.555 24.888 26.673v99.328c0 14.585-11.328 26.673-24.888 26.673-12.765 0-23.578-10.484-24.757-24.184-11.98-3.166-21.058-14.769-21.058-28.88 0-4.987 1.134-9.661 3.13-13.76zm9.982-23.036c-.675 1.847-1.042 3.869-1.042 5.983 0 1.978.322 3.869.915 5.612 4.27-2.878 9.306-4.533 14.658-4.533 3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7-7.733 0-13.643 7.218-13.643 15.734s5.91 15.734 13.643 15.734c3.682 0 6.986-1.714 9.402-4.356 2.607-2.851 7.038-3.05 9.889-.443 2.852 2.607 3.05 7.038.443 9.89-3.35 3.664-7.556 6.389-12.255 7.807.891 5.813 5.192 10.432 10.693 10.432 6.21 0 10.888-5.993 10.888-12.673v-99.328c0-6.466-4.678-12.673-10.888-12.673-3.404 0-6.349 1.777-8.309 4.507 4.421 1.264 8.367 3.8 11.476 7.251 2.586 2.871 2.355 7.3-.516 9.886-2.87 2.586-7.3 2.355-9.886-.515-1.926-2.138-4.574-3.525-7.54-3.525-.493 0-.976.037-1.448.108-.196.045-.395.082-.596.11-5.165 1.118-8.844 6.404-8.844 12.455 0 1.243.153 2.45.442 3.594.101.284.183.572.246.862.748 2.326 2.071 4.346 3.814 5.823 2.947 2.498 3.311 6.919.813 9.866s-6.919 3.312-9.866.814c-.878-.745-1.71-1.554-2.489-2.422zm3.042 158.279c-5.442 0-9.893 4.451-9.893 9.892v36.44c0 5.423 4.454 9.866 9.893 9.866h17.334c3.866 0 7 3.134 7 7v16.945c0 4.902 4.027 8.929 8.93 8.929h46.304c4.903 0 8.93-4.027 8.93-8.929v-16.945c0-3.866 3.134-7 7-7h17.334c5.439 0 9.893-4.443 9.893-9.866v-36.44c0-5.441-4.451-9.892-9.893-9.892zm63.416-314.093 2.907-5.412c1.828-3.403 6.075-4.683 9.479-2.854 3.403 1.828 4.682 6.075 2.854 9.479l-16.073 29.925c-1.22 2.271-3.589 3.688-6.167 3.688s-4.947-1.417-6.167-3.688l-16.073-29.925c-1.828-3.404-.549-7.651 2.854-9.479 3.404-1.829 7.651-.549 9.479 2.854l2.907 5.412v-69.835c0-3.863 3.137-7 7-7s7 3.137 7 7zm-132.198 54.758-49.381-49.381c-2.732-2.731-2.732-7.167 0-9.899s7.168-2.732 9.9 0l49.38 49.38-1.771-5.881c-1.114-3.7.985-7.608 4.684-8.722 3.7-1.114 7.607.985 8.721 4.685l9.796 32.526c.743 2.468.069 5.145-1.753 6.968-1.823 1.823-4.5 2.496-6.969 1.753l-32.526-9.795c-3.699-1.114-5.798-5.022-4.684-8.721s5.022-5.798 8.721-4.684zm-44.859 122.299h-69.835c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7h69.835l-5.412-2.907c-3.403-1.828-4.682-6.076-2.854-9.479 1.828-3.404 6.075-4.683 9.479-2.855l29.926 16.074c2.271 1.22 3.688 3.589 3.688 6.167 0 2.577-1.417 4.947-3.688 6.166l-29.926 16.074c-3.404 1.828-7.651.549-9.479-2.855-1.828-3.403-.549-7.651 2.854-9.479zm54.758 118.198-49.38 49.38c-2.732 2.732-7.168 2.732-9.9 0s-2.732-7.167 0-9.899l49.381-49.381-5.882 1.772c-3.699 1.114-7.607-.985-8.721-4.685-1.114-3.699.985-7.607 4.684-8.721l32.526-9.795c2.469-.743 5.146-.07 6.969 1.753 1.822 1.823 2.496 4.5 1.753 6.968l-9.796 32.527c-1.114 3.699-5.021 5.798-8.721 4.684-3.699-1.114-5.798-5.022-4.684-8.721zm240.497-240.497 5.882-1.771c3.699-1.114 7.607.985 8.721 4.684s-.985 7.607-4.684 8.721l-32.526 9.795c-2.469.743-5.146.07-6.969-1.753-1.822-1.823-2.496-4.5-1.753-6.968l9.796-32.526c1.114-3.7 5.021-5.799 8.721-4.685 3.699 1.114 5.798 5.022 4.684 8.722l-1.771 5.881 49.38-49.38c2.732-2.732 7.168-2.732 9.9 0s2.732 7.168 0 9.899zm44.859 122.299 5.412 2.906c3.403 1.828 4.682 6.076 2.854 9.479-1.828 3.404-6.075 4.683-9.479 2.855l-29.926-16.074c-2.271-1.219-3.688-3.589-3.688-6.166 0-2.578 1.417-4.947 3.688-6.167l29.926-16.074c3.404-1.828 7.651-.549 9.479 2.855 1.828 3.403.549 7.651-2.854 9.479l-5.412 2.907h69.835c3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7zm-54.758 118.198 1.771 5.882c1.114 3.699-.985 7.607-4.684 8.721-3.7 1.114-7.607-.985-8.721-4.684l-9.796-32.527c-.743-2.468-.069-5.145 1.753-6.968 1.823-1.823 4.5-2.496 6.969-1.753l32.526 9.795c3.699 1.114 5.798 5.022 4.684 8.721-1.114 3.7-5.022 5.799-8.721 4.685l-5.882-1.772 49.381 49.381c2.732 2.732 2.732 7.167 0 9.899s-7.168 2.732-9.9 0z\"></path></svg>				\n									<h5>\n							gennemtænkte løsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"outline\"><path d=\"M486.41,144A28,28,0,0,0,472,92H349.123l5.457-21.828a48.513,48.513,0,0,0-12.848-46.153A41.035,41.035,0,0,0,312.609,12H308a8.009,8.009,0,0,0-8,8V47.413l-19.233,64.112A17.376,17.376,0,0,1,268,123.539V112a4,4,0,0,0-4-4H152a4,4,0,0,0-4,4v72a4,4,0,0,0,8,0V116h72V276H156V248a4,4,0,0,0-8,0v32a4,4,0,0,0,4,4H264a4,4,0,0,0,4-4V268.5h11.168A37.07,37.07,0,0,1,305.092,279a45.025,45.025,0,0,0,31.48,12.752L440,292a27.987,27.987,0,0,0,19.369-48.2,27.987,27.987,0,0,0,16-48A28,28,0,0,0,486.41,144ZM260,276H236V116h24Zm212-88H396a4,4,0,0,0,0,8h60a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h40a20,20,0,0,1,.01,40l-103.428-.25a37.07,37.07,0,0,1-25.924-10.5,45.031,45.031,0,0,0-31.49-12.752H268V131.686a25.317,25.317,0,0,0,20.429-17.862l19.4-64.675A4,4,0,0,0,308,48V20h4.609a33.082,33.082,0,0,1,23.481,9.69,40.507,40.507,0,0,1,10.728,38.541l-6.7,26.8A4,4,0,0,0,344,100H472a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h72a20,20,0,0,1,0,40Z\"></path><path d=\"M194.5,183.243l-1.9-.217a4,4,0,0,0-4.169,2.491L184.29,195.9H135.278l-3.539-9.317a4,4,0,0,0-7.478,2.84l2.459,6.477h-8.474L68.452,156.872a4,4,0,1,0-4.935,6.3L77.6,174.209,56.961,194.48l-6.636-5.491a4,4,0,1,0-5.1,6.163L87.219,229.9a44.1,44.1,0,0,0,28.05,10.1H212a8.009,8.009,0,0,0,8-8V203.9a8.009,8.009,0,0,0-8-8h-8v-2.01A10.708,10.708,0,0,0,194.5,183.243ZM212,203.9V232H115.269a36.081,36.081,0,0,1-22.951-8.264l-29.16-24.128,20.8-20.422L114.4,203.045a4,4,0,0,0,2.468.852H187a4,4,0,0,0,3.715-2.517l3.929-9.843a2.712,2.712,0,0,1,1.356,2.35v6.01a4,4,0,0,0,4,4Z\"></path><path d=\"M223.084,484.672,200.87,469.863V346.36A44.1,44.1,0,0,0,195.327,325l-17.183-30.94a4,4,0,0,0-7,3.884l17.184,30.94a36.073,36.073,0,0,1,4.537,17.478V468H164.333a4,4,0,1,0,0,8h31.321l12,8H152.865V352a4,4,0,0,0-.358-1.655l-25.454-56A4,4,0,0,0,123.411,292H114.2a4,4,0,0,0-3.945,4.658l8.862,53.175a36.016,36.016,0,0,1-1.951,18.949L78.642,468H48.333a4,4,0,1,0,0,8H80.377L92,484H32.088L76.63,361.366a4.017,4.017,0,0,0,.183-2.044L61.1,268H136a4,4,0,0,0,0-8H59.233L30.555,173.966A19.723,19.723,0,0,1,49.27,148H76a12,12,0,0,0,24,0h15.2a21.975,21.975,0,0,1,8.395,1.652l10.889,4.458a4,4,0,1,0,3.032-7.4L126.63,142.25A29.938,29.938,0,0,0,115.2,140H100v-4.527A16.014,16.014,0,0,0,112,120V103.473A16.014,16.014,0,0,0,124,88V80a4,4,0,0,0-4-4H90A22.025,22.025,0,0,0,68,98v18a12.02,12.02,0,0,0,8,11.314V140H49.27a27.723,27.723,0,0,0-26.305,36.5l29.493,88.482,16.29,94.655-46.128,127A4,4,0,0,0,26.38,492h78.485a4,4,0,0,0,2.268-7.3L86.3,470.368l38.318-98.69a44.018,44.018,0,0,0,2.385-23.16L118.921,300h1.914l24.03,52.867V488a4,4,0,0,0,4,4h72a4,4,0,0,0,2.219-7.328ZM76,98A14.015,14.015,0,0,1,90,84h26v4a8.009,8.009,0,0,1-8,8H92a4,4,0,0,0-4,4,11.962,11.962,0,0,1-1.53,5.881A12.044,12.044,0,0,0,76,104.686Zm4,14a3.981,3.981,0,0,1,3.407,1.9,4,4,0,0,0,5.956.975c.207-.171.7-.648.7-.648.032-.028.061-.057.09-.087A19.907,19.907,0,0,0,95.6,104H104v16a8.009,8.009,0,0,1-8,8,12.133,12.133,0,0,1-2.681-.3,4,4,0,1,0-1.775,7.8c.151.035.3.06.456.091V148a4,4,0,1,1-8,0V124a4,4,0,0,0-4-4,4,4,0,0,1,0-8Z\"></path></g></svg>				\n									<h5>\n							arbejde udført med ansvar						\n					</h5>\n				<p>Vi lover ikke mere, end vi kan holde – men vi holder det, vi lover.</p>			<h2>KONTAKT OS</h2>		<p>Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.</p>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 13:35:54', '2026-01-26 13:35:54', '', 10, 'https://mrarif.me/cpnordic/?p=533', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(531, 1, '2026-01-26 13:35:53', '2026-01-26 13:35:53', '<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h1>CP NORDIC ApS</h1>					<h4>Construction – Carpentry &amp; Roofing</h4>										<a href=\"#\">\n									Kontakt\n					</a>\n									<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>					\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle ANMELDELSER\n					</a>\n					<h2>HVORFOR VÆLGE CP NORDIC ApS?</h2>		<p>Når du vælger CP NORDIC ApS, får du:</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 450 450\" width=\"512\"><g><g><path d=\"m225 165.2c-25.9 0-48.9-18.8-53.3-45.2-2.4-14.2.9-28.6 9.3-40.3 8.4-11.8 20.9-19.5 35.1-21.9 29.4-4.9 57.3 15 62.2 44.5 4.9 29.4-15 57.3-44.4 62.2-3 .5-6 .7-8.9.7zm-7.6-99.8c-12.2 2-22.9 8.7-30.1 18.8s-10.1 22.4-8 34.6c3.8 22.7 23.5 38.8 45.7 38.8 2.5 0 5.1-.2 7.6-.6 25.2-4.2 42.3-28.1 38.1-53.4s-28.1-42.4-53.3-38.2z\"></path><path d=\"m255.2 115c-2.1 0-3.8-1.7-3.8-3.8 0-14.6-11.8-26.4-26.4-26.4-2.1 0-3.8-1.7-3.8-3.8s1.7-3.8 3.8-3.8c18.8 0 34.1 15.3 34.1 34.1 0 2-1.8 3.7-3.9 3.7z\"></path><path d=\"m236.1 203h-22.2c-2.1 0-3.8-1.7-3.8-3.8v-14.1c-3.1-.6-6.1-1.4-9.1-2.4l-7 12.2c-1.1 1.8-3.4 2.5-5.3 1.4l-19.2-11.1c-.9-.5-1.5-1.4-1.8-2.3-.3-1-.1-2 .4-2.9l7-12.1c-2.4-2.1-4.6-4.3-6.7-6.6l-12.1 7c-1.8 1.1-4.2.4-5.2-1.4l-11.1-19.2c-1.1-1.8-.4-4.2 1.4-5.2l11.9-6.8c-1-3-1.9-6.1-2.6-9.3h-13.7c-2.1 0-3.8-1.7-3.8-3.8v-22.2c0-2.1 1.7-3.8 3.8-3.8h13.4c.6-3.2 1.4-6.4 2.4-9.5l-11.5-6.6c-1.8-1.1-2.5-3.4-1.4-5.3l11.1-19.6c.5-.9 1.4-1.5 2.3-1.8s2-.1 2.9.4l11.3 6.6c2.2-2.5 4.5-4.8 7-7l-6.5-11.3c-.5-.9-.6-1.9-.4-2.9.3-1 .9-1.8 1.8-2.3l19.2-11.1c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l6.4 11.2c3.1-1.1 6.4-1.9 9.7-2.6v-13c0-2.1 1.7-3.8 3.8-3.8h22.2c2.1 0 3.8 1.7 3.8 3.8v12.8c3.3.7 6.5 1.5 9.7 2.6l6.5-11.2c.5-.9 1.4-1.5 2.3-1.8 1-.3 2-.1 2.9.4l19.2 11.1c.9.5 1.5 1.3 1.8 2.3s.1 2-.4 2.9l-6.5 11.3c2.5 2.2 4.8 4.5 7 7.1l11.3-6.6c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l11.1 19.2c1.1 1.8.4 4.2-1.4 5.3l-11.5 6.6c1 3.1 1.8 6.3 2.5 9.5h13.6c2.1 0 3.8 1.7 3.8 3.8v22.2c0 2.1-1.7 3.8-3.8 3.8h-13.6c-.6 3.1-1.5 6.2-2.5 9.3l11.9 6.8c1.8 1.1 2.5 3.4 1.4 5.2l-11.2 19.5c-1.1 1.8-3.4 2.5-5.2 1.4l-12-7c-2.1 2.4-4.4 4.6-6.7 6.6l7 12.1c.5.9.6 1.9.4 2.9s-.9 1.8-1.8 2.3l-19.2 11.1c-1.8 1.1-4.2.4-5.2-1.4l-7-12.2c-3 1-6 1.8-9.1 2.4v14.1c-.2 2.3-2 4-4.1 4zm-18.4-7.7h14.5v-13.5c0-1.9 1.4-3.5 3.3-3.8 4.7-.7 9.4-2 13.8-3.7 1.8-.7 3.8 0 4.7 1.7l6.7 11.6 12.6-7.3-6.7-11.6c-1-1.6-.5-3.7.9-4.9 3.7-3 7.2-6.4 10.2-10.1 1.2-1.5 3.3-1.8 4.9-.9l11.5 6.6 7.3-12.6-11.3-6.5c-1.6-.9-2.4-3-1.6-4.7 1.8-4.5 3.1-9.2 3.9-14 .3-1.9 1.9-3.2 3.8-3.2h13v-14.6h-12.8c-1.9 0-3.5-1.4-3.8-3.3-.7-4.8-2-9.6-3.7-14.2-.7-1.8 0-3.7 1.7-4.7l10.9-6.3-7.3-12.6-10.8 6.3c-1.6.9-3.7.6-4.9-.9-3.1-3.9-6.6-7.4-10.4-10.6-1.5-1.2-1.9-3.3-.9-4.9l6.2-10.7-12.6-7.3-6.1 10.6c-1 1.6-3 2.3-4.7 1.7-4.6-1.8-9.5-3.1-14.4-3.9-1.9-.3-3.3-1.9-3.3-3.8v-12.2h-14.5v12.3c0 1.9-1.4 3.5-3.3 3.8-5 .8-9.8 2.1-14.4 3.9-1.8.7-3.8 0-4.7-1.7l-6.1-10.6-12.6 7.3 6.2 10.7c.9 1.6.6 3.7-.9 4.9-3.9 3.1-7.4 6.7-10.4 10.6-1.2 1.5-3.3 1.9-4.9.9l-10.8-6.3-7.3 12.6 10.9 6.3c1.6.9 2.3 2.9 1.7 4.7-1.7 4.6-3 9.4-3.7 14.2-.3 1.9-1.9 3.3-3.8 3.3h-12.8v14.5h13c1.9 0 3.5 1.4 3.8 3.2.8 4.8 2.1 9.5 3.9 14 .7 1.8 0 3.8-1.6 4.7l-11.3 6.5 7.3 12.6 11.5-6.6c1.6-.9 3.7-.6 4.9.9 3 3.7 6.5 7.1 10.3 10.1 1.5 1.2 1.9 3.3.9 4.9l-6.7 11.6 12.6 7.3 6.7-11.6c.9-1.6 2.9-2.3 4.7-1.7 4.5 1.7 9.1 2.9 13.8 3.7 1.9.3 3.3 1.9 3.3 3.8z\"></path></g><g><g><g><path d=\"m45.3 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m153.9 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path></g><g><path d=\"m189.3 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.2c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c0 2.1-1.7 3.8-3.8 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m73.3 326.4c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m126 326.4c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m99.7 325.6c-.6 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4s4.1 1.1 4.4 3.2c2.4 16.5 12.3 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m50.2 266.6c-.1 0-.2 0-.3 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.7 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-8.9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.5 2.2zm81.8-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13.1-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.4-.7 2.3-.7z\"></path></g></g></g><g><g><path d=\"m296.1 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m404.7 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path></g><g><path d=\"m440 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.1c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c.2 2.1-1.6 3.8-3.7 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m324 326.3c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m376.7 326.3c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m350.4 325.6c-.5 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4 2.1-.3 4 1.1 4.4 3.2 2.4 16.5 12.4 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m301 266.6c-.1 0-.2 0-.4 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.6 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.4 2.2zm81.7-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.5-.7 2.3-.7z\"></path></g></g></g></g></g></svg>				\n									<h5>\n							et ungt og engageret team						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"496pt\" viewBox=\"0 0 496 496\" width=\"496pt\"><path d=\"m440 328h-28.207031c5.078125-6.703125 8.207031-14.960938 8.207031-24 0-8.824219-7.175781-16-16-16h-12v-19.960938c59.574219-14.445312 104-68.085937 104-132.039062 0-74.992188-61.007812-136-136-136s-136 61.007812-136 136c0 63.953125 44.425781 117.59375 104 132.039062v19.960938h-8.449219c-6.167969 0-12.359375 1.464844-17.886719 4.214844l-50.480468 25.25c-3.320313 1.664062-7.03125 2.535156-10.734375 2.535156h-40.449219v-16h-104v16h56v56h16v-56h16v128h-16v-56h-16v56h-56v16h104v-16h40.449219c3.703125 0 7.414062.871094 10.734375 2.527344l34.488281 17.25c5.519531 2.757812 11.710937 4.222656 17.878906 4.222656h24.449219v24h64v-24h48c13.230469 0 24-10.769531 24-24 0-6.167969-2.40625-11.742188-6.238281-16 3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16 0-13.230469-10.769531-24-24-24zm8 24c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm-208-280c0-66.167969 53.832031-120 120-120s120 53.832031 120 120-53.832031 120-120 120-120-53.832031-120-120zm104 134.976562c5.257812.617188 10.574219 1.023438 16 1.023438s10.742188-.40625 16-1.023438v17.023438h-32zm-40.449219 185.023438c-3.703125 0-7.414062-.871094-10.734375-2.527344l-34.488281-17.25c-5.519531-2.757812-11.710937-4.222656-17.878906-4.222656h-40.449219v-96h40.449219c6.167969 0 12.359375-1.464844 17.886719-4.214844l50.480468-25.25c3.320313-1.664062 7.03125-2.535156 10.734375-2.535156h84.449219c0 13.230469-10.769531 24-24 24h-48.28125l-23.863281 35.808594c-6.101563 9.160156-14.527344 16.589844-24.367188 21.503906-8.753906 4.375-18.542969 6.6875-28.320312 6.6875h-15.167969v16h15.167969c12.246093 0 24.519531-2.894531 35.472656-8.375 12.328125-6.160156 22.878906-15.480469 30.527344-26.945312l6.832031-10.253907v93.574219zm40.449219 24v-136h17.472656c-.898437 2.511719-1.472656 5.183594-1.472656 8 0 6.167969 2.40625 11.742188 6.238281 16-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16 0 10.414062 6.710938 19.214844 16 22.527344v9.472656zm96-24h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8s-3.59375 8-8 8zm0 0\"></path><path d=\"m394.878906 73.007812-7.757812 13.984376c17.816406 9.878906 28.878906 28.664062 28.878906 49.007812h16c0-26.160156-14.222656-50.296875-37.121094-62.992188zm0 0\"></path><path d=\"m360 80c4.734375 0 9.449219.59375 14.007812 1.769531l3.976563-15.503906c-5.855469-1.496094-11.90625-2.265625-17.984375-2.265625zm0 0\"></path><path d=\"m360 48c48.519531 0 88 39.480469 88 88 0 20.753906-7.398438 40.910156-20.832031 56.785156l12.207031 10.34375c15.882812-18.761718 24.625-42.601562 24.625-67.128906 0-57.34375-46.65625-104-104-104-24.527344 0-48.367188 8.753906-67.128906 24.632812l10.335937 12.199219c15.871094-13.433593 36.039063-20.832031 56.792969-20.832031zm0 0\"></path><path d=\"m427.128906 215.367188-10.335937-12.199219c-15.871094 13.433593-36.039063 20.832031-56.792969 20.832031-48.519531 0-88-39.480469-88-88 0-20.753906 7.398438-40.910156 20.832031-56.785156l-12.207031-10.34375c-15.882812 18.761718-24.625 42.601562-24.625 67.128906 0 57.34375 46.65625 104 104 104 24.527344 0 48.367188-8.753906 67.128906-24.632812zm0 0\"></path><path d=\"m121.214844 165.640625c4.953125-1.375 9.695312-3.34375 14.183594-5.878906l9.769531 4.886719 19.472656-19.480469-4.886719-9.769531c2.535156-4.496094 4.503906-9.230469 5.886719-14.183594l10.359375-3.445313v-27.53125l-10.351562-3.453125c-1.375-4.953125-3.34375-9.707031-5.886719-14.183594l4.886719-9.777343-19.472657-19.472657-9.769531 4.886719c-4.484375-2.535156-9.230469-4.503906-14.183594-5.878906l-3.453125-10.359375h-27.539062l-3.445313 10.359375c-4.953125 1.375-9.695312 3.34375-14.183594 5.878906l-9.777343-4.886719-19.472657 19.472657 4.886719 9.777343c-2.535156 4.488282-4.503906 9.230469-5.886719 14.183594l-10.351562 3.445313v27.53125l10.351562 3.453125c1.375 4.953125 3.34375 9.695312 5.886719 14.183594l-4.886719 9.769531 19.472657 19.480469 9.769531-4.886719c4.484375 2.535156 9.230469 4.503906 14.183594 5.878906l3.453125 10.359375h27.539062zm-12.304688-13.679687-2.679687 8.039062h-4.460938l-2.679687-8.039062-4.554688-.90625c-6.128906-1.222657-11.878906-3.605469-17.109375-7.09375l-3.867187-2.578126-7.574219 3.800782-3.160156-3.167969 3.792969-7.582031-2.578126-3.859375c-3.488281-5.222657-5.871093-10.980469-7.09375-17.109375l-.914062-4.554688-8.03125-2.679687v-4.46875l8.03125-2.671875.914062-4.554688c1.222657-6.136718 3.613282-11.886718 7.09375-17.109375l2.578126-3.859375-3.792969-7.589844 3.160156-3.160156 7.574219 3.800782 3.867187-2.578126c5.222657-3.488281 10.980469-5.863281 17.109375-7.09375l4.554688-.90625 2.679687-8.039062h4.460938l2.679687 8.039062 4.554688.90625c6.128906 1.222657 11.878906 3.605469 17.109375 7.09375l3.867187 2.578126 7.574219-3.800782 3.160156 3.160156-3.792969 7.589844 2.578126 3.859375c3.488281 5.214844 5.871093 10.972657 7.09375 17.109375l.914062 4.554688 8.03125 2.679687v4.46875l-8.03125 2.671875-.914062 4.554688c-1.222657 6.128906-3.613282 11.878906-7.09375 17.109375l-2.578126 3.859375 3.792969 7.582031-3.160156 3.167969-7.574219-3.800782-3.867187 2.578126c-5.222657 3.488281-10.980469 5.863281-17.109375 7.09375zm0 0\"></path><path d=\"m104 72c-17.648438 0-32 14.351562-32 32s14.351562 32 32 32 32-14.351562 32-32-14.351562-32-32-32zm0 48c-8.824219 0-16-7.175781-16-16s7.175781-16 16-16 16 7.175781 16 16-7.175781 16-16 16zm0 0\"></path><path d=\"m160 248v-40h48v-208h-208v208h106.664062zm-144-232h176v176h-48v24l-32-24h-96zm0 0\"></path><path d=\"m0 272h16v16h-16zm0 0\"></path><path d=\"m32 272h16v16h-16zm0 0\"></path><path d=\"m64 272h16v16h-16zm0 0\"></path><path d=\"m32 304h16v16h-16zm0 0\"></path><path d=\"m64 304h16v16h-16zm0 0\"></path><path d=\"m0 480h16v16h-16zm0 0\"></path><path d=\"m32 480h16v16h-16zm0 0\"></path><path d=\"m64 480h16v16h-16zm0 0\"></path><path d=\"m32 448h16v16h-16zm0 0\"></path><path d=\"m64 448h16v16h-16zm0 0\"></path></svg>				\n									<h5>\n							fokus på kvalitet og detaljer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m469.12 408.93-67.26-33.63v-22.13c10.71-7.69 18.6-19.07 21.78-32.27h5.28c8.81 0 15.98-7.17 15.98-15.98v-5.29c0-6.35-3.74-11.84-9.12-14.41 5.19-18.64-1.65-39.76-19.44-59.78-12.58-14.16-30.67-22.27-49.62-22.27-18.93 0-37.01 8.12-49.59 22.27-13.38 15.05-20.95 41.01-14.03 59.62-5.56 2.5-9.45 8.09-9.45 14.57v5.29c0 8.81 7.17 15.98 15.98 15.98h5.55c3.16 13.09 10.94 24.39 21.51 32.08v22.32l-67.26 33.63c-16.7 5.87-27.89 21.6-27.89 39.28v41.63c0 3.31 2.69 6 6 6h243.46c3.31 0 6-2.69 6-6v-41.63c0-17.68-11.19-33.41-27.88-39.28zm-62.24-17.7-15.83 27.66-13.29-13.29 19.29-19.29zm-37.61 5.88-20.59-20.58v-16.91c6.41 2.57 13.4 4.01 20.72 4.01 7.22 0 14.11-1.39 20.45-3.9v16.8zm63.63-97.48v5.29c0 2.16-1.82 3.98-3.98 3.98h-3.74c.01-.36.03-.71.03-1.07v-12.18h3.71c2.15-.01 3.98 1.82 3.98 3.98zm-119.29 8.2v1.07h-3.98c-2.16 0-3.98-1.82-3.98-3.98v-5.29c0-2.16 1.82-3.98 3.98-3.98l3.98.22zm1.95-24.19c-7.33-13.69-.89-37.39 10.53-50.24 10.31-11.6 25.12-18.25 40.63-18.25 15.52 0 30.34 6.65 40.65 18.25 8.43 9.48 21.3 27.59 17.4 46.39-5.66-.35-10.67-2.55-14.4-6.36-5.37-5.49-7.72-14-6.63-23.94.29-2.62-1.17-5.13-3.6-6.17s-5.25-.37-6.95 1.65c-19.33 22.92-45.95 36.76-73.9 38.68h-3.73zm10.05 24.19v-12.73c24.57-2.92 47.92-14.05 66.73-31.8 1.43 7.26 4.63 13.6 9.45 18.52 3.27 3.35 7.14 5.89 11.41 7.58v18.42c0 24.15-19.65 43.8-43.8 43.8s-43.79-19.64-43.79-43.79zm15.89 78.48 19.29 19.29-13.29 13.29-15.84-27.66zm3.22 97.53h-39.42v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.76v-35.63c0-12.68 8.1-23.95 20.15-28.05.26-.09.51-.19.75-.31l46.47-23.23 20.07 35.06c.93 1.62 2.56 2.72 4.41 2.97.27.04.53.05.79.05 1.58 0 3.11-.62 4.24-1.76l.14-.14zm12.08 0 7.41-64.69 5.06-5.06 4.84 4.84 7.86 64.92h-25.17zm128.2 0h-39.76v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.18l-6.2-51.17.25.25c1.13 1.13 2.66 1.76 4.24 1.76.26 0 .53-.02.79-.05 1.85-.25 3.48-1.34 4.41-2.97l20.07-35.06 46.47 23.23c.24.12.49.23.75.31 12.05 4.1 20.15 15.38 20.15 28.05v35.65zm-67.04-346.65h-10.84l28.38 39.84 28.38-39.84h-10.84c-3.31 0-6-2.69-6-6v-64.58h-98.7c-3.31 0-6-2.69-6-6s2.69-6 6-6h104.7c3.31 0 6 2.69 6 6v64.58h16.48c2.25 0 4.3 1.25 5.33 3.25s.86 4.4-.45 6.23l-40.02 56.18c-1.13 1.58-2.95 2.52-4.89 2.52s-3.76-.94-4.89-2.52l-40.02-56.18c-1.3-1.83-1.48-4.23-.45-6.23s3.09-3.25 5.33-3.25h16.48v-23.5h-65.38c-3.31 0-6-2.69-6-6s2.69-6 6-6h71.38c3.31 0 6 2.69 6 6v35.5c.02 3.31-2.67 6-5.98 6zm-118.44 50.65v-133.26c0-21.18-17.23-38.41-38.41-38.41h-207.7c-21.18-.01-38.41 17.23-38.41 38.41v133.26c0 21.18 17.23 38.41 38.41 38.41h105.8l64.8 55.11c1.11.94 2.49 1.43 3.89 1.43.85 0 1.71-.18 2.52-.55 2.12-.98 3.48-3.11 3.48-5.45v-50.54h27.21c21.18 0 38.41-17.23 38.41-38.41zm-71.62 26.41c-3.31 0-6 2.69-6 6v43.56l-56.59-48.13c-1.08-.92-2.46-1.43-3.89-1.43h-108.01c-14.56 0-26.41-11.85-26.41-26.41v-133.26c0-14.56 11.85-26.41 26.41-26.41h207.69c14.56 0 26.41 11.85 26.41 26.41v133.26c0 14.56-11.85 26.41-26.41 26.41zm-156.34-87.87h56.97c3.31 0 6-2.69 6-6v-39.2l8.55-8.55c2.34-2.34 2.34-6.14 0-8.49-2.34-2.34-6.14-2.34-8.48 0l-.7.7c-.98-1.97-3.01-3.32-5.36-3.32h-56.98c-3.31 0-6 2.69-6 6v52.85c0 3.32 2.69 6.01 6 6.01zm6-52.86h44.97v2.69l-18.16 18.16-8.84-8.84c-2.34-2.34-6.14-2.34-8.49 0-2.34 2.34-2.34 6.14 0 8.49l13.08 13.08c1.17 1.17 2.71 1.76 4.24 1.76s3.07-.59 4.24-1.76l13.92-13.92v21.2h-44.96zm173.62 3.08c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 31.92c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 36.52c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.68 5.99 6zm0 31.92c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.69 5.99 6zm-119.36 165.01h10.84l-28.38-39.84-28.38 39.84h10.84c3.31 0 6 2.69 6 6v64.58h98.7c3.31 0 6 2.69 6 6s-2.69 6-6 6h-104.69c-3.31 0-6-2.69-6-6v-64.58h-16.48c-2.25 0-4.3-1.25-5.33-3.25s-.86-4.4.45-6.23l40.02-56.18c1.13-1.58 2.95-2.52 4.89-2.52s3.76.94 4.89 2.52l40.02 56.18c1.3 1.83 1.48 4.23.45 6.23s-3.09 3.25-5.33 3.25h-16.48v23.5h65.38c3.31 0 6 2.69 6 6s-2.69 6-6 6h-71.38c-3.31 0-6-2.69-6-6v-35.5c-.03-3.31 2.66-6 5.97-6z\"></path></svg>				\n									<h5>\n							ærlig<br> rådgivning						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 510 510\"><path d=\"m192.036 385.845c-4.787-46.972-19.459-64.336-30.658-82.352-8.672-13.951-15.5-28.245-15.5-54.252 0-60.242 48.865-109.109 109.135-109.109 60.242 0 109.109 48.866 109.109 109.109 0 26.007-6.828 40.301-15.5 54.252-11.199 18.016-25.871 35.38-30.658 82.352 9.985 2.864 17.345 12.101 17.345 22.975v36.44c0 13.109-10.747 23.866-23.893 23.866h-10.334v9.945c0 12.588-10.341 22.929-22.93 22.929h-46.304c-12.589 0-22.93-10.341-22.93-22.929v-9.945h-10.334c-13.146 0-23.893-10.757-23.893-23.866v-36.44c0-10.874 7.36-20.111 17.345-22.975zm111.948-.917c4.199-42.194 15.78-62.332 26.488-79.049 10.147-15.842 19.65-28.207 19.65-56.638 0-52.513-42.597-95.109-95.109-95.109-52.537 0-95.135 42.596-95.135 95.109 0 28.431 9.503 40.796 19.65 56.638 10.708 16.717 22.289 36.855 26.488 79.049zm2.554-78.61c-1.175 13.701-11.985 24.191-24.783 24.191-13.527 0-24.862-12.086-24.862-26.673v-99.328c0-14.12 11.335-26.673 24.862-26.673 11.309 0 21.031 8.139 23.975 19.497 9.12 3.904 15.688 13.438 15.688 24.78 0 1.153-.068 2.289-.201 3.403 5.078 5.326 8.283 12.802 8.283 21.117 0 6.39-1.889 12.262-5.06 17.053 1.996 4.099 3.13 8.773 3.13 13.76 0 14.1-9.065 25.697-21.032 28.873zm-16.452-109.977c-1.964-2.729-4.916-4.506-8.331-4.506-6.192 0-10.862 6.21-10.862 12.673v99.328c0 6.677 4.67 12.673 10.862 12.673 5.516 0 9.822-4.614 10.717-10.425-4.709-1.416-8.923-4.144-12.279-7.814-2.607-2.852-2.409-7.283.443-9.89 2.851-2.607 7.282-2.408 9.889.443 2.416 2.642 5.72 4.356 9.402 4.356 7.733 0 13.643-7.218 13.643-15.734s-5.91-15.734-13.643-15.734c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7 5.352 0 10.388 1.655 14.658 4.533.593-1.743.915-3.634.915-5.612 0-2.11-.366-4.128-1.036-5.972-.769.858-1.588 1.66-2.453 2.397-2.94 2.507-7.361 2.156-9.869-.784-2.507-2.939-2.155-7.361.784-9.868 2.773-2.365 4.492-6.122 4.492-10.293 0-6.072-3.705-11.374-8.898-12.467-.154-.023-.307-.052-.458-.085-.499-.08-1.01-.121-1.532-.121-2.947 0-5.591 1.389-7.515 3.525-2.585 2.87-7.015 3.101-9.886.515-2.87-2.586-3.101-7.015-.515-9.886 3.111-3.453 7.059-5.988 11.472-7.252zm-104.526 67.344c-3.171-4.791-5.06-10.663-5.06-17.053 0-8.307 3.198-15.777 8.284-21.104-.133-1.118-.202-2.258-.202-3.416 0-11.354 6.582-20.897 15.717-24.792 2.948-11.354 12.67-19.485 23.946-19.485 13.56 0 24.888 12.555 24.888 26.673v99.328c0 14.585-11.328 26.673-24.888 26.673-12.765 0-23.578-10.484-24.757-24.184-11.98-3.166-21.058-14.769-21.058-28.88 0-4.987 1.134-9.661 3.13-13.76zm9.982-23.036c-.675 1.847-1.042 3.869-1.042 5.983 0 1.978.322 3.869.915 5.612 4.27-2.878 9.306-4.533 14.658-4.533 3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7-7.733 0-13.643 7.218-13.643 15.734s5.91 15.734 13.643 15.734c3.682 0 6.986-1.714 9.402-4.356 2.607-2.851 7.038-3.05 9.889-.443 2.852 2.607 3.05 7.038.443 9.89-3.35 3.664-7.556 6.389-12.255 7.807.891 5.813 5.192 10.432 10.693 10.432 6.21 0 10.888-5.993 10.888-12.673v-99.328c0-6.466-4.678-12.673-10.888-12.673-3.404 0-6.349 1.777-8.309 4.507 4.421 1.264 8.367 3.8 11.476 7.251 2.586 2.871 2.355 7.3-.516 9.886-2.87 2.586-7.3 2.355-9.886-.515-1.926-2.138-4.574-3.525-7.54-3.525-.493 0-.976.037-1.448.108-.196.045-.395.082-.596.11-5.165 1.118-8.844 6.404-8.844 12.455 0 1.243.153 2.45.442 3.594.101.284.183.572.246.862.748 2.326 2.071 4.346 3.814 5.823 2.947 2.498 3.311 6.919.813 9.866s-6.919 3.312-9.866.814c-.878-.745-1.71-1.554-2.489-2.422zm3.042 158.279c-5.442 0-9.893 4.451-9.893 9.892v36.44c0 5.423 4.454 9.866 9.893 9.866h17.334c3.866 0 7 3.134 7 7v16.945c0 4.902 4.027 8.929 8.93 8.929h46.304c4.903 0 8.93-4.027 8.93-8.929v-16.945c0-3.866 3.134-7 7-7h17.334c5.439 0 9.893-4.443 9.893-9.866v-36.44c0-5.441-4.451-9.892-9.893-9.892zm63.416-314.093 2.907-5.412c1.828-3.403 6.075-4.683 9.479-2.854 3.403 1.828 4.682 6.075 2.854 9.479l-16.073 29.925c-1.22 2.271-3.589 3.688-6.167 3.688s-4.947-1.417-6.167-3.688l-16.073-29.925c-1.828-3.404-.549-7.651 2.854-9.479 3.404-1.829 7.651-.549 9.479 2.854l2.907 5.412v-69.835c0-3.863 3.137-7 7-7s7 3.137 7 7zm-132.198 54.758-49.381-49.381c-2.732-2.731-2.732-7.167 0-9.899s7.168-2.732 9.9 0l49.38 49.38-1.771-5.881c-1.114-3.7.985-7.608 4.684-8.722 3.7-1.114 7.607.985 8.721 4.685l9.796 32.526c.743 2.468.069 5.145-1.753 6.968-1.823 1.823-4.5 2.496-6.969 1.753l-32.526-9.795c-3.699-1.114-5.798-5.022-4.684-8.721s5.022-5.798 8.721-4.684zm-44.859 122.299h-69.835c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7h69.835l-5.412-2.907c-3.403-1.828-4.682-6.076-2.854-9.479 1.828-3.404 6.075-4.683 9.479-2.855l29.926 16.074c2.271 1.22 3.688 3.589 3.688 6.167 0 2.577-1.417 4.947-3.688 6.166l-29.926 16.074c-3.404 1.828-7.651.549-9.479-2.855-1.828-3.403-.549-7.651 2.854-9.479zm54.758 118.198-49.38 49.38c-2.732 2.732-7.168 2.732-9.9 0s-2.732-7.167 0-9.899l49.381-49.381-5.882 1.772c-3.699 1.114-7.607-.985-8.721-4.685-1.114-3.699.985-7.607 4.684-8.721l32.526-9.795c2.469-.743 5.146-.07 6.969 1.753 1.822 1.823 2.496 4.5 1.753 6.968l-9.796 32.527c-1.114 3.699-5.021 5.798-8.721 4.684-3.699-1.114-5.798-5.022-4.684-8.721zm240.497-240.497 5.882-1.771c3.699-1.114 7.607.985 8.721 4.684s-.985 7.607-4.684 8.721l-32.526 9.795c-2.469.743-5.146.07-6.969-1.753-1.822-1.823-2.496-4.5-1.753-6.968l9.796-32.526c1.114-3.7 5.021-5.799 8.721-4.685 3.699 1.114 5.798 5.022 4.684 8.722l-1.771 5.881 49.38-49.38c2.732-2.732 7.168-2.732 9.9 0s2.732 7.168 0 9.899zm44.859 122.299 5.412 2.906c3.403 1.828 4.682 6.076 2.854 9.479-1.828 3.404-6.075 4.683-9.479 2.855l-29.926-16.074c-2.271-1.219-3.688-3.589-3.688-6.166 0-2.578 1.417-4.947 3.688-6.167l29.926-16.074c3.404-1.828 7.651-.549 9.479 2.855 1.828 3.403.549 7.651-2.854 9.479l-5.412 2.907h69.835c3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7zm-54.758 118.198 1.771 5.882c1.114 3.699-.985 7.607-4.684 8.721-3.7 1.114-7.607-.985-8.721-4.684l-9.796-32.527c-.743-2.468-.069-5.145 1.753-6.968 1.823-1.823 4.5-2.496 6.969-1.753l32.526 9.795c3.699 1.114 5.798 5.022 4.684 8.721-1.114 3.7-5.022 5.799-8.721 4.685l-5.882-1.772 49.381 49.381c2.732 2.732 2.732 7.167 0 9.899s-7.168 2.732-9.9 0z\"></path></svg>				\n									<h5>\n							gennemtænkte løsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"outline\"><path d=\"M486.41,144A28,28,0,0,0,472,92H349.123l5.457-21.828a48.513,48.513,0,0,0-12.848-46.153A41.035,41.035,0,0,0,312.609,12H308a8.009,8.009,0,0,0-8,8V47.413l-19.233,64.112A17.376,17.376,0,0,1,268,123.539V112a4,4,0,0,0-4-4H152a4,4,0,0,0-4,4v72a4,4,0,0,0,8,0V116h72V276H156V248a4,4,0,0,0-8,0v32a4,4,0,0,0,4,4H264a4,4,0,0,0,4-4V268.5h11.168A37.07,37.07,0,0,1,305.092,279a45.025,45.025,0,0,0,31.48,12.752L440,292a27.987,27.987,0,0,0,19.369-48.2,27.987,27.987,0,0,0,16-48A28,28,0,0,0,486.41,144ZM260,276H236V116h24Zm212-88H396a4,4,0,0,0,0,8h60a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h40a20,20,0,0,1,.01,40l-103.428-.25a37.07,37.07,0,0,1-25.924-10.5,45.031,45.031,0,0,0-31.49-12.752H268V131.686a25.317,25.317,0,0,0,20.429-17.862l19.4-64.675A4,4,0,0,0,308,48V20h4.609a33.082,33.082,0,0,1,23.481,9.69,40.507,40.507,0,0,1,10.728,38.541l-6.7,26.8A4,4,0,0,0,344,100H472a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h72a20,20,0,0,1,0,40Z\"></path><path d=\"M194.5,183.243l-1.9-.217a4,4,0,0,0-4.169,2.491L184.29,195.9H135.278l-3.539-9.317a4,4,0,0,0-7.478,2.84l2.459,6.477h-8.474L68.452,156.872a4,4,0,1,0-4.935,6.3L77.6,174.209,56.961,194.48l-6.636-5.491a4,4,0,1,0-5.1,6.163L87.219,229.9a44.1,44.1,0,0,0,28.05,10.1H212a8.009,8.009,0,0,0,8-8V203.9a8.009,8.009,0,0,0-8-8h-8v-2.01A10.708,10.708,0,0,0,194.5,183.243ZM212,203.9V232H115.269a36.081,36.081,0,0,1-22.951-8.264l-29.16-24.128,20.8-20.422L114.4,203.045a4,4,0,0,0,2.468.852H187a4,4,0,0,0,3.715-2.517l3.929-9.843a2.712,2.712,0,0,1,1.356,2.35v6.01a4,4,0,0,0,4,4Z\"></path><path d=\"M223.084,484.672,200.87,469.863V346.36A44.1,44.1,0,0,0,195.327,325l-17.183-30.94a4,4,0,0,0-7,3.884l17.184,30.94a36.073,36.073,0,0,1,4.537,17.478V468H164.333a4,4,0,1,0,0,8h31.321l12,8H152.865V352a4,4,0,0,0-.358-1.655l-25.454-56A4,4,0,0,0,123.411,292H114.2a4,4,0,0,0-3.945,4.658l8.862,53.175a36.016,36.016,0,0,1-1.951,18.949L78.642,468H48.333a4,4,0,1,0,0,8H80.377L92,484H32.088L76.63,361.366a4.017,4.017,0,0,0,.183-2.044L61.1,268H136a4,4,0,0,0,0-8H59.233L30.555,173.966A19.723,19.723,0,0,1,49.27,148H76a12,12,0,0,0,24,0h15.2a21.975,21.975,0,0,1,8.395,1.652l10.889,4.458a4,4,0,1,0,3.032-7.4L126.63,142.25A29.938,29.938,0,0,0,115.2,140H100v-4.527A16.014,16.014,0,0,0,112,120V103.473A16.014,16.014,0,0,0,124,88V80a4,4,0,0,0-4-4H90A22.025,22.025,0,0,0,68,98v18a12.02,12.02,0,0,0,8,11.314V140H49.27a27.723,27.723,0,0,0-26.305,36.5l29.493,88.482,16.29,94.655-46.128,127A4,4,0,0,0,26.38,492h78.485a4,4,0,0,0,2.268-7.3L86.3,470.368l38.318-98.69a44.018,44.018,0,0,0,2.385-23.16L118.921,300h1.914l24.03,52.867V488a4,4,0,0,0,4,4h72a4,4,0,0,0,2.219-7.328ZM76,98A14.015,14.015,0,0,1,90,84h26v4a8.009,8.009,0,0,1-8,8H92a4,4,0,0,0-4,4,11.962,11.962,0,0,1-1.53,5.881A12.044,12.044,0,0,0,76,104.686Zm4,14a3.981,3.981,0,0,1,3.407,1.9,4,4,0,0,0,5.956.975c.207-.171.7-.648.7-.648.032-.028.061-.057.09-.087A19.907,19.907,0,0,0,95.6,104H104v16a8.009,8.009,0,0,1-8,8,12.133,12.133,0,0,1-2.681-.3,4,4,0,1,0-1.775,7.8c.151.035.3.06.456.091V148a4,4,0,1,1-8,0V124a4,4,0,0,0-4-4,4,4,0,0,1,0-8Z\"></path></g></svg>				\n									<h5>\n							arbejde udført med ansvar						\n					</h5>\n				<p>Vi lover ikke mere, end vi kan holde – men vi holder det, vi lover.</p>			<h2>KONTAKT OS</h2>		<p>Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.</p>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 13:35:53', '2026-01-26 13:35:53', '', 10, 'https://mrarif.me/cpnordic/?p=531', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(532, 1, '2026-01-26 13:35:54', '2026-01-26 13:35:54', '<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h1>CP NORDIC ApS</h1>					<h4>Construction – Carpentry &amp; Roofing</h4>										<a href=\"#\">\n									Kontakt\n					</a>\n									<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>					\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle ANMELDELSER\n					</a>\n					<h2>HVORFOR VÆLGE CP NORDIC ApS?</h2>		<p>Når du vælger CP NORDIC ApS, får du:</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 450 450\" width=\"512\"><g><g><path d=\"m225 165.2c-25.9 0-48.9-18.8-53.3-45.2-2.4-14.2.9-28.6 9.3-40.3 8.4-11.8 20.9-19.5 35.1-21.9 29.4-4.9 57.3 15 62.2 44.5 4.9 29.4-15 57.3-44.4 62.2-3 .5-6 .7-8.9.7zm-7.6-99.8c-12.2 2-22.9 8.7-30.1 18.8s-10.1 22.4-8 34.6c3.8 22.7 23.5 38.8 45.7 38.8 2.5 0 5.1-.2 7.6-.6 25.2-4.2 42.3-28.1 38.1-53.4s-28.1-42.4-53.3-38.2z\"></path><path d=\"m255.2 115c-2.1 0-3.8-1.7-3.8-3.8 0-14.6-11.8-26.4-26.4-26.4-2.1 0-3.8-1.7-3.8-3.8s1.7-3.8 3.8-3.8c18.8 0 34.1 15.3 34.1 34.1 0 2-1.8 3.7-3.9 3.7z\"></path><path d=\"m236.1 203h-22.2c-2.1 0-3.8-1.7-3.8-3.8v-14.1c-3.1-.6-6.1-1.4-9.1-2.4l-7 12.2c-1.1 1.8-3.4 2.5-5.3 1.4l-19.2-11.1c-.9-.5-1.5-1.4-1.8-2.3-.3-1-.1-2 .4-2.9l7-12.1c-2.4-2.1-4.6-4.3-6.7-6.6l-12.1 7c-1.8 1.1-4.2.4-5.2-1.4l-11.1-19.2c-1.1-1.8-.4-4.2 1.4-5.2l11.9-6.8c-1-3-1.9-6.1-2.6-9.3h-13.7c-2.1 0-3.8-1.7-3.8-3.8v-22.2c0-2.1 1.7-3.8 3.8-3.8h13.4c.6-3.2 1.4-6.4 2.4-9.5l-11.5-6.6c-1.8-1.1-2.5-3.4-1.4-5.3l11.1-19.6c.5-.9 1.4-1.5 2.3-1.8s2-.1 2.9.4l11.3 6.6c2.2-2.5 4.5-4.8 7-7l-6.5-11.3c-.5-.9-.6-1.9-.4-2.9.3-1 .9-1.8 1.8-2.3l19.2-11.1c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l6.4 11.2c3.1-1.1 6.4-1.9 9.7-2.6v-13c0-2.1 1.7-3.8 3.8-3.8h22.2c2.1 0 3.8 1.7 3.8 3.8v12.8c3.3.7 6.5 1.5 9.7 2.6l6.5-11.2c.5-.9 1.4-1.5 2.3-1.8 1-.3 2-.1 2.9.4l19.2 11.1c.9.5 1.5 1.3 1.8 2.3s.1 2-.4 2.9l-6.5 11.3c2.5 2.2 4.8 4.5 7 7.1l11.3-6.6c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l11.1 19.2c1.1 1.8.4 4.2-1.4 5.3l-11.5 6.6c1 3.1 1.8 6.3 2.5 9.5h13.6c2.1 0 3.8 1.7 3.8 3.8v22.2c0 2.1-1.7 3.8-3.8 3.8h-13.6c-.6 3.1-1.5 6.2-2.5 9.3l11.9 6.8c1.8 1.1 2.5 3.4 1.4 5.2l-11.2 19.5c-1.1 1.8-3.4 2.5-5.2 1.4l-12-7c-2.1 2.4-4.4 4.6-6.7 6.6l7 12.1c.5.9.6 1.9.4 2.9s-.9 1.8-1.8 2.3l-19.2 11.1c-1.8 1.1-4.2.4-5.2-1.4l-7-12.2c-3 1-6 1.8-9.1 2.4v14.1c-.2 2.3-2 4-4.1 4zm-18.4-7.7h14.5v-13.5c0-1.9 1.4-3.5 3.3-3.8 4.7-.7 9.4-2 13.8-3.7 1.8-.7 3.8 0 4.7 1.7l6.7 11.6 12.6-7.3-6.7-11.6c-1-1.6-.5-3.7.9-4.9 3.7-3 7.2-6.4 10.2-10.1 1.2-1.5 3.3-1.8 4.9-.9l11.5 6.6 7.3-12.6-11.3-6.5c-1.6-.9-2.4-3-1.6-4.7 1.8-4.5 3.1-9.2 3.9-14 .3-1.9 1.9-3.2 3.8-3.2h13v-14.6h-12.8c-1.9 0-3.5-1.4-3.8-3.3-.7-4.8-2-9.6-3.7-14.2-.7-1.8 0-3.7 1.7-4.7l10.9-6.3-7.3-12.6-10.8 6.3c-1.6.9-3.7.6-4.9-.9-3.1-3.9-6.6-7.4-10.4-10.6-1.5-1.2-1.9-3.3-.9-4.9l6.2-10.7-12.6-7.3-6.1 10.6c-1 1.6-3 2.3-4.7 1.7-4.6-1.8-9.5-3.1-14.4-3.9-1.9-.3-3.3-1.9-3.3-3.8v-12.2h-14.5v12.3c0 1.9-1.4 3.5-3.3 3.8-5 .8-9.8 2.1-14.4 3.9-1.8.7-3.8 0-4.7-1.7l-6.1-10.6-12.6 7.3 6.2 10.7c.9 1.6.6 3.7-.9 4.9-3.9 3.1-7.4 6.7-10.4 10.6-1.2 1.5-3.3 1.9-4.9.9l-10.8-6.3-7.3 12.6 10.9 6.3c1.6.9 2.3 2.9 1.7 4.7-1.7 4.6-3 9.4-3.7 14.2-.3 1.9-1.9 3.3-3.8 3.3h-12.8v14.5h13c1.9 0 3.5 1.4 3.8 3.2.8 4.8 2.1 9.5 3.9 14 .7 1.8 0 3.8-1.6 4.7l-11.3 6.5 7.3 12.6 11.5-6.6c1.6-.9 3.7-.6 4.9.9 3 3.7 6.5 7.1 10.3 10.1 1.5 1.2 1.9 3.3.9 4.9l-6.7 11.6 12.6 7.3 6.7-11.6c.9-1.6 2.9-2.3 4.7-1.7 4.5 1.7 9.1 2.9 13.8 3.7 1.9.3 3.3 1.9 3.3 3.8z\"></path></g><g><g><g><path d=\"m45.3 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m153.9 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path></g><g><path d=\"m189.3 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.2c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c0 2.1-1.7 3.8-3.8 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m73.3 326.4c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m126 326.4c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m99.7 325.6c-.6 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4s4.1 1.1 4.4 3.2c2.4 16.5 12.3 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m50.2 266.6c-.1 0-.2 0-.3 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.7 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-8.9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.5 2.2zm81.8-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13.1-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.4-.7 2.3-.7z\"></path></g></g></g><g><g><path d=\"m296.1 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m404.7 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path></g><g><path d=\"m440 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.1c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c.2 2.1-1.6 3.8-3.7 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m324 326.3c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m376.7 326.3c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m350.4 325.6c-.5 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4 2.1-.3 4 1.1 4.4 3.2 2.4 16.5 12.4 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m301 266.6c-.1 0-.2 0-.4 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.6 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.4 2.2zm81.7-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.5-.7 2.3-.7z\"></path></g></g></g></g></g></svg>				\n									<h5>\n							et ungt og engageret team						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"496pt\" viewBox=\"0 0 496 496\" width=\"496pt\"><path d=\"m440 328h-28.207031c5.078125-6.703125 8.207031-14.960938 8.207031-24 0-8.824219-7.175781-16-16-16h-12v-19.960938c59.574219-14.445312 104-68.085937 104-132.039062 0-74.992188-61.007812-136-136-136s-136 61.007812-136 136c0 63.953125 44.425781 117.59375 104 132.039062v19.960938h-8.449219c-6.167969 0-12.359375 1.464844-17.886719 4.214844l-50.480468 25.25c-3.320313 1.664062-7.03125 2.535156-10.734375 2.535156h-40.449219v-16h-104v16h56v56h16v-56h16v128h-16v-56h-16v56h-56v16h104v-16h40.449219c3.703125 0 7.414062.871094 10.734375 2.527344l34.488281 17.25c5.519531 2.757812 11.710937 4.222656 17.878906 4.222656h24.449219v24h64v-24h48c13.230469 0 24-10.769531 24-24 0-6.167969-2.40625-11.742188-6.238281-16 3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16 0-13.230469-10.769531-24-24-24zm8 24c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm-208-280c0-66.167969 53.832031-120 120-120s120 53.832031 120 120-53.832031 120-120 120-120-53.832031-120-120zm104 134.976562c5.257812.617188 10.574219 1.023438 16 1.023438s10.742188-.40625 16-1.023438v17.023438h-32zm-40.449219 185.023438c-3.703125 0-7.414062-.871094-10.734375-2.527344l-34.488281-17.25c-5.519531-2.757812-11.710937-4.222656-17.878906-4.222656h-40.449219v-96h40.449219c6.167969 0 12.359375-1.464844 17.886719-4.214844l50.480468-25.25c3.320313-1.664062 7.03125-2.535156 10.734375-2.535156h84.449219c0 13.230469-10.769531 24-24 24h-48.28125l-23.863281 35.808594c-6.101563 9.160156-14.527344 16.589844-24.367188 21.503906-8.753906 4.375-18.542969 6.6875-28.320312 6.6875h-15.167969v16h15.167969c12.246093 0 24.519531-2.894531 35.472656-8.375 12.328125-6.160156 22.878906-15.480469 30.527344-26.945312l6.832031-10.253907v93.574219zm40.449219 24v-136h17.472656c-.898437 2.511719-1.472656 5.183594-1.472656 8 0 6.167969 2.40625 11.742188 6.238281 16-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16 0 10.414062 6.710938 19.214844 16 22.527344v9.472656zm96-24h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8s-3.59375 8-8 8zm0 0\"></path><path d=\"m394.878906 73.007812-7.757812 13.984376c17.816406 9.878906 28.878906 28.664062 28.878906 49.007812h16c0-26.160156-14.222656-50.296875-37.121094-62.992188zm0 0\"></path><path d=\"m360 80c4.734375 0 9.449219.59375 14.007812 1.769531l3.976563-15.503906c-5.855469-1.496094-11.90625-2.265625-17.984375-2.265625zm0 0\"></path><path d=\"m360 48c48.519531 0 88 39.480469 88 88 0 20.753906-7.398438 40.910156-20.832031 56.785156l12.207031 10.34375c15.882812-18.761718 24.625-42.601562 24.625-67.128906 0-57.34375-46.65625-104-104-104-24.527344 0-48.367188 8.753906-67.128906 24.632812l10.335937 12.199219c15.871094-13.433593 36.039063-20.832031 56.792969-20.832031zm0 0\"></path><path d=\"m427.128906 215.367188-10.335937-12.199219c-15.871094 13.433593-36.039063 20.832031-56.792969 20.832031-48.519531 0-88-39.480469-88-88 0-20.753906 7.398438-40.910156 20.832031-56.785156l-12.207031-10.34375c-15.882812 18.761718-24.625 42.601562-24.625 67.128906 0 57.34375 46.65625 104 104 104 24.527344 0 48.367188-8.753906 67.128906-24.632812zm0 0\"></path><path d=\"m121.214844 165.640625c4.953125-1.375 9.695312-3.34375 14.183594-5.878906l9.769531 4.886719 19.472656-19.480469-4.886719-9.769531c2.535156-4.496094 4.503906-9.230469 5.886719-14.183594l10.359375-3.445313v-27.53125l-10.351562-3.453125c-1.375-4.953125-3.34375-9.707031-5.886719-14.183594l4.886719-9.777343-19.472657-19.472657-9.769531 4.886719c-4.484375-2.535156-9.230469-4.503906-14.183594-5.878906l-3.453125-10.359375h-27.539062l-3.445313 10.359375c-4.953125 1.375-9.695312 3.34375-14.183594 5.878906l-9.777343-4.886719-19.472657 19.472657 4.886719 9.777343c-2.535156 4.488282-4.503906 9.230469-5.886719 14.183594l-10.351562 3.445313v27.53125l10.351562 3.453125c1.375 4.953125 3.34375 9.695312 5.886719 14.183594l-4.886719 9.769531 19.472657 19.480469 9.769531-4.886719c4.484375 2.535156 9.230469 4.503906 14.183594 5.878906l3.453125 10.359375h27.539062zm-12.304688-13.679687-2.679687 8.039062h-4.460938l-2.679687-8.039062-4.554688-.90625c-6.128906-1.222657-11.878906-3.605469-17.109375-7.09375l-3.867187-2.578126-7.574219 3.800782-3.160156-3.167969 3.792969-7.582031-2.578126-3.859375c-3.488281-5.222657-5.871093-10.980469-7.09375-17.109375l-.914062-4.554688-8.03125-2.679687v-4.46875l8.03125-2.671875.914062-4.554688c1.222657-6.136718 3.613282-11.886718 7.09375-17.109375l2.578126-3.859375-3.792969-7.589844 3.160156-3.160156 7.574219 3.800782 3.867187-2.578126c5.222657-3.488281 10.980469-5.863281 17.109375-7.09375l4.554688-.90625 2.679687-8.039062h4.460938l2.679687 8.039062 4.554688.90625c6.128906 1.222657 11.878906 3.605469 17.109375 7.09375l3.867187 2.578126 7.574219-3.800782 3.160156 3.160156-3.792969 7.589844 2.578126 3.859375c3.488281 5.214844 5.871093 10.972657 7.09375 17.109375l.914062 4.554688 8.03125 2.679687v4.46875l-8.03125 2.671875-.914062 4.554688c-1.222657 6.128906-3.613282 11.878906-7.09375 17.109375l-2.578126 3.859375 3.792969 7.582031-3.160156 3.167969-7.574219-3.800782-3.867187 2.578126c-5.222657 3.488281-10.980469 5.863281-17.109375 7.09375zm0 0\"></path><path d=\"m104 72c-17.648438 0-32 14.351562-32 32s14.351562 32 32 32 32-14.351562 32-32-14.351562-32-32-32zm0 48c-8.824219 0-16-7.175781-16-16s7.175781-16 16-16 16 7.175781 16 16-7.175781 16-16 16zm0 0\"></path><path d=\"m160 248v-40h48v-208h-208v208h106.664062zm-144-232h176v176h-48v24l-32-24h-96zm0 0\"></path><path d=\"m0 272h16v16h-16zm0 0\"></path><path d=\"m32 272h16v16h-16zm0 0\"></path><path d=\"m64 272h16v16h-16zm0 0\"></path><path d=\"m32 304h16v16h-16zm0 0\"></path><path d=\"m64 304h16v16h-16zm0 0\"></path><path d=\"m0 480h16v16h-16zm0 0\"></path><path d=\"m32 480h16v16h-16zm0 0\"></path><path d=\"m64 480h16v16h-16zm0 0\"></path><path d=\"m32 448h16v16h-16zm0 0\"></path><path d=\"m64 448h16v16h-16zm0 0\"></path></svg>				\n									<h5>\n							fokus på kvalitet og detaljer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m469.12 408.93-67.26-33.63v-22.13c10.71-7.69 18.6-19.07 21.78-32.27h5.28c8.81 0 15.98-7.17 15.98-15.98v-5.29c0-6.35-3.74-11.84-9.12-14.41 5.19-18.64-1.65-39.76-19.44-59.78-12.58-14.16-30.67-22.27-49.62-22.27-18.93 0-37.01 8.12-49.59 22.27-13.38 15.05-20.95 41.01-14.03 59.62-5.56 2.5-9.45 8.09-9.45 14.57v5.29c0 8.81 7.17 15.98 15.98 15.98h5.55c3.16 13.09 10.94 24.39 21.51 32.08v22.32l-67.26 33.63c-16.7 5.87-27.89 21.6-27.89 39.28v41.63c0 3.31 2.69 6 6 6h243.46c3.31 0 6-2.69 6-6v-41.63c0-17.68-11.19-33.41-27.88-39.28zm-62.24-17.7-15.83 27.66-13.29-13.29 19.29-19.29zm-37.61 5.88-20.59-20.58v-16.91c6.41 2.57 13.4 4.01 20.72 4.01 7.22 0 14.11-1.39 20.45-3.9v16.8zm63.63-97.48v5.29c0 2.16-1.82 3.98-3.98 3.98h-3.74c.01-.36.03-.71.03-1.07v-12.18h3.71c2.15-.01 3.98 1.82 3.98 3.98zm-119.29 8.2v1.07h-3.98c-2.16 0-3.98-1.82-3.98-3.98v-5.29c0-2.16 1.82-3.98 3.98-3.98l3.98.22zm1.95-24.19c-7.33-13.69-.89-37.39 10.53-50.24 10.31-11.6 25.12-18.25 40.63-18.25 15.52 0 30.34 6.65 40.65 18.25 8.43 9.48 21.3 27.59 17.4 46.39-5.66-.35-10.67-2.55-14.4-6.36-5.37-5.49-7.72-14-6.63-23.94.29-2.62-1.17-5.13-3.6-6.17s-5.25-.37-6.95 1.65c-19.33 22.92-45.95 36.76-73.9 38.68h-3.73zm10.05 24.19v-12.73c24.57-2.92 47.92-14.05 66.73-31.8 1.43 7.26 4.63 13.6 9.45 18.52 3.27 3.35 7.14 5.89 11.41 7.58v18.42c0 24.15-19.65 43.8-43.8 43.8s-43.79-19.64-43.79-43.79zm15.89 78.48 19.29 19.29-13.29 13.29-15.84-27.66zm3.22 97.53h-39.42v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.76v-35.63c0-12.68 8.1-23.95 20.15-28.05.26-.09.51-.19.75-.31l46.47-23.23 20.07 35.06c.93 1.62 2.56 2.72 4.41 2.97.27.04.53.05.79.05 1.58 0 3.11-.62 4.24-1.76l.14-.14zm12.08 0 7.41-64.69 5.06-5.06 4.84 4.84 7.86 64.92h-25.17zm128.2 0h-39.76v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.18l-6.2-51.17.25.25c1.13 1.13 2.66 1.76 4.24 1.76.26 0 .53-.02.79-.05 1.85-.25 3.48-1.34 4.41-2.97l20.07-35.06 46.47 23.23c.24.12.49.23.75.31 12.05 4.1 20.15 15.38 20.15 28.05v35.65zm-67.04-346.65h-10.84l28.38 39.84 28.38-39.84h-10.84c-3.31 0-6-2.69-6-6v-64.58h-98.7c-3.31 0-6-2.69-6-6s2.69-6 6-6h104.7c3.31 0 6 2.69 6 6v64.58h16.48c2.25 0 4.3 1.25 5.33 3.25s.86 4.4-.45 6.23l-40.02 56.18c-1.13 1.58-2.95 2.52-4.89 2.52s-3.76-.94-4.89-2.52l-40.02-56.18c-1.3-1.83-1.48-4.23-.45-6.23s3.09-3.25 5.33-3.25h16.48v-23.5h-65.38c-3.31 0-6-2.69-6-6s2.69-6 6-6h71.38c3.31 0 6 2.69 6 6v35.5c.02 3.31-2.67 6-5.98 6zm-118.44 50.65v-133.26c0-21.18-17.23-38.41-38.41-38.41h-207.7c-21.18-.01-38.41 17.23-38.41 38.41v133.26c0 21.18 17.23 38.41 38.41 38.41h105.8l64.8 55.11c1.11.94 2.49 1.43 3.89 1.43.85 0 1.71-.18 2.52-.55 2.12-.98 3.48-3.11 3.48-5.45v-50.54h27.21c21.18 0 38.41-17.23 38.41-38.41zm-71.62 26.41c-3.31 0-6 2.69-6 6v43.56l-56.59-48.13c-1.08-.92-2.46-1.43-3.89-1.43h-108.01c-14.56 0-26.41-11.85-26.41-26.41v-133.26c0-14.56 11.85-26.41 26.41-26.41h207.69c14.56 0 26.41 11.85 26.41 26.41v133.26c0 14.56-11.85 26.41-26.41 26.41zm-156.34-87.87h56.97c3.31 0 6-2.69 6-6v-39.2l8.55-8.55c2.34-2.34 2.34-6.14 0-8.49-2.34-2.34-6.14-2.34-8.48 0l-.7.7c-.98-1.97-3.01-3.32-5.36-3.32h-56.98c-3.31 0-6 2.69-6 6v52.85c0 3.32 2.69 6.01 6 6.01zm6-52.86h44.97v2.69l-18.16 18.16-8.84-8.84c-2.34-2.34-6.14-2.34-8.49 0-2.34 2.34-2.34 6.14 0 8.49l13.08 13.08c1.17 1.17 2.71 1.76 4.24 1.76s3.07-.59 4.24-1.76l13.92-13.92v21.2h-44.96zm173.62 3.08c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 31.92c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 36.52c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.68 5.99 6zm0 31.92c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.69 5.99 6zm-119.36 165.01h10.84l-28.38-39.84-28.38 39.84h10.84c3.31 0 6 2.69 6 6v64.58h98.7c3.31 0 6 2.69 6 6s-2.69 6-6 6h-104.69c-3.31 0-6-2.69-6-6v-64.58h-16.48c-2.25 0-4.3-1.25-5.33-3.25s-.86-4.4.45-6.23l40.02-56.18c1.13-1.58 2.95-2.52 4.89-2.52s3.76.94 4.89 2.52l40.02 56.18c1.3 1.83 1.48 4.23.45 6.23s-3.09 3.25-5.33 3.25h-16.48v23.5h65.38c3.31 0 6 2.69 6 6s-2.69 6-6 6h-71.38c-3.31 0-6-2.69-6-6v-35.5c-.03-3.31 2.66-6 5.97-6z\"></path></svg>				\n									<h5>\n							ærlig<br> rådgivning						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 510 510\"><path d=\"m192.036 385.845c-4.787-46.972-19.459-64.336-30.658-82.352-8.672-13.951-15.5-28.245-15.5-54.252 0-60.242 48.865-109.109 109.135-109.109 60.242 0 109.109 48.866 109.109 109.109 0 26.007-6.828 40.301-15.5 54.252-11.199 18.016-25.871 35.38-30.658 82.352 9.985 2.864 17.345 12.101 17.345 22.975v36.44c0 13.109-10.747 23.866-23.893 23.866h-10.334v9.945c0 12.588-10.341 22.929-22.93 22.929h-46.304c-12.589 0-22.93-10.341-22.93-22.929v-9.945h-10.334c-13.146 0-23.893-10.757-23.893-23.866v-36.44c0-10.874 7.36-20.111 17.345-22.975zm111.948-.917c4.199-42.194 15.78-62.332 26.488-79.049 10.147-15.842 19.65-28.207 19.65-56.638 0-52.513-42.597-95.109-95.109-95.109-52.537 0-95.135 42.596-95.135 95.109 0 28.431 9.503 40.796 19.65 56.638 10.708 16.717 22.289 36.855 26.488 79.049zm2.554-78.61c-1.175 13.701-11.985 24.191-24.783 24.191-13.527 0-24.862-12.086-24.862-26.673v-99.328c0-14.12 11.335-26.673 24.862-26.673 11.309 0 21.031 8.139 23.975 19.497 9.12 3.904 15.688 13.438 15.688 24.78 0 1.153-.068 2.289-.201 3.403 5.078 5.326 8.283 12.802 8.283 21.117 0 6.39-1.889 12.262-5.06 17.053 1.996 4.099 3.13 8.773 3.13 13.76 0 14.1-9.065 25.697-21.032 28.873zm-16.452-109.977c-1.964-2.729-4.916-4.506-8.331-4.506-6.192 0-10.862 6.21-10.862 12.673v99.328c0 6.677 4.67 12.673 10.862 12.673 5.516 0 9.822-4.614 10.717-10.425-4.709-1.416-8.923-4.144-12.279-7.814-2.607-2.852-2.409-7.283.443-9.89 2.851-2.607 7.282-2.408 9.889.443 2.416 2.642 5.72 4.356 9.402 4.356 7.733 0 13.643-7.218 13.643-15.734s-5.91-15.734-13.643-15.734c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7 5.352 0 10.388 1.655 14.658 4.533.593-1.743.915-3.634.915-5.612 0-2.11-.366-4.128-1.036-5.972-.769.858-1.588 1.66-2.453 2.397-2.94 2.507-7.361 2.156-9.869-.784-2.507-2.939-2.155-7.361.784-9.868 2.773-2.365 4.492-6.122 4.492-10.293 0-6.072-3.705-11.374-8.898-12.467-.154-.023-.307-.052-.458-.085-.499-.08-1.01-.121-1.532-.121-2.947 0-5.591 1.389-7.515 3.525-2.585 2.87-7.015 3.101-9.886.515-2.87-2.586-3.101-7.015-.515-9.886 3.111-3.453 7.059-5.988 11.472-7.252zm-104.526 67.344c-3.171-4.791-5.06-10.663-5.06-17.053 0-8.307 3.198-15.777 8.284-21.104-.133-1.118-.202-2.258-.202-3.416 0-11.354 6.582-20.897 15.717-24.792 2.948-11.354 12.67-19.485 23.946-19.485 13.56 0 24.888 12.555 24.888 26.673v99.328c0 14.585-11.328 26.673-24.888 26.673-12.765 0-23.578-10.484-24.757-24.184-11.98-3.166-21.058-14.769-21.058-28.88 0-4.987 1.134-9.661 3.13-13.76zm9.982-23.036c-.675 1.847-1.042 3.869-1.042 5.983 0 1.978.322 3.869.915 5.612 4.27-2.878 9.306-4.533 14.658-4.533 3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7-7.733 0-13.643 7.218-13.643 15.734s5.91 15.734 13.643 15.734c3.682 0 6.986-1.714 9.402-4.356 2.607-2.851 7.038-3.05 9.889-.443 2.852 2.607 3.05 7.038.443 9.89-3.35 3.664-7.556 6.389-12.255 7.807.891 5.813 5.192 10.432 10.693 10.432 6.21 0 10.888-5.993 10.888-12.673v-99.328c0-6.466-4.678-12.673-10.888-12.673-3.404 0-6.349 1.777-8.309 4.507 4.421 1.264 8.367 3.8 11.476 7.251 2.586 2.871 2.355 7.3-.516 9.886-2.87 2.586-7.3 2.355-9.886-.515-1.926-2.138-4.574-3.525-7.54-3.525-.493 0-.976.037-1.448.108-.196.045-.395.082-.596.11-5.165 1.118-8.844 6.404-8.844 12.455 0 1.243.153 2.45.442 3.594.101.284.183.572.246.862.748 2.326 2.071 4.346 3.814 5.823 2.947 2.498 3.311 6.919.813 9.866s-6.919 3.312-9.866.814c-.878-.745-1.71-1.554-2.489-2.422zm3.042 158.279c-5.442 0-9.893 4.451-9.893 9.892v36.44c0 5.423 4.454 9.866 9.893 9.866h17.334c3.866 0 7 3.134 7 7v16.945c0 4.902 4.027 8.929 8.93 8.929h46.304c4.903 0 8.93-4.027 8.93-8.929v-16.945c0-3.866 3.134-7 7-7h17.334c5.439 0 9.893-4.443 9.893-9.866v-36.44c0-5.441-4.451-9.892-9.893-9.892zm63.416-314.093 2.907-5.412c1.828-3.403 6.075-4.683 9.479-2.854 3.403 1.828 4.682 6.075 2.854 9.479l-16.073 29.925c-1.22 2.271-3.589 3.688-6.167 3.688s-4.947-1.417-6.167-3.688l-16.073-29.925c-1.828-3.404-.549-7.651 2.854-9.479 3.404-1.829 7.651-.549 9.479 2.854l2.907 5.412v-69.835c0-3.863 3.137-7 7-7s7 3.137 7 7zm-132.198 54.758-49.381-49.381c-2.732-2.731-2.732-7.167 0-9.899s7.168-2.732 9.9 0l49.38 49.38-1.771-5.881c-1.114-3.7.985-7.608 4.684-8.722 3.7-1.114 7.607.985 8.721 4.685l9.796 32.526c.743 2.468.069 5.145-1.753 6.968-1.823 1.823-4.5 2.496-6.969 1.753l-32.526-9.795c-3.699-1.114-5.798-5.022-4.684-8.721s5.022-5.798 8.721-4.684zm-44.859 122.299h-69.835c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7h69.835l-5.412-2.907c-3.403-1.828-4.682-6.076-2.854-9.479 1.828-3.404 6.075-4.683 9.479-2.855l29.926 16.074c2.271 1.22 3.688 3.589 3.688 6.167 0 2.577-1.417 4.947-3.688 6.166l-29.926 16.074c-3.404 1.828-7.651.549-9.479-2.855-1.828-3.403-.549-7.651 2.854-9.479zm54.758 118.198-49.38 49.38c-2.732 2.732-7.168 2.732-9.9 0s-2.732-7.167 0-9.899l49.381-49.381-5.882 1.772c-3.699 1.114-7.607-.985-8.721-4.685-1.114-3.699.985-7.607 4.684-8.721l32.526-9.795c2.469-.743 5.146-.07 6.969 1.753 1.822 1.823 2.496 4.5 1.753 6.968l-9.796 32.527c-1.114 3.699-5.021 5.798-8.721 4.684-3.699-1.114-5.798-5.022-4.684-8.721zm240.497-240.497 5.882-1.771c3.699-1.114 7.607.985 8.721 4.684s-.985 7.607-4.684 8.721l-32.526 9.795c-2.469.743-5.146.07-6.969-1.753-1.822-1.823-2.496-4.5-1.753-6.968l9.796-32.526c1.114-3.7 5.021-5.799 8.721-4.685 3.699 1.114 5.798 5.022 4.684 8.722l-1.771 5.881 49.38-49.38c2.732-2.732 7.168-2.732 9.9 0s2.732 7.168 0 9.899zm44.859 122.299 5.412 2.906c3.403 1.828 4.682 6.076 2.854 9.479-1.828 3.404-6.075 4.683-9.479 2.855l-29.926-16.074c-2.271-1.219-3.688-3.589-3.688-6.166 0-2.578 1.417-4.947 3.688-6.167l29.926-16.074c3.404-1.828 7.651-.549 9.479 2.855 1.828 3.403.549 7.651-2.854 9.479l-5.412 2.907h69.835c3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7zm-54.758 118.198 1.771 5.882c1.114 3.699-.985 7.607-4.684 8.721-3.7 1.114-7.607-.985-8.721-4.684l-9.796-32.527c-.743-2.468-.069-5.145 1.753-6.968 1.823-1.823 4.5-2.496 6.969-1.753l32.526 9.795c3.699 1.114 5.798 5.022 4.684 8.721-1.114 3.7-5.022 5.799-8.721 4.685l-5.882-1.772 49.381 49.381c2.732 2.732 2.732 7.167 0 9.899s-7.168 2.732-9.9 0z\"></path></svg>				\n									<h5>\n							gennemtænkte løsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"outline\"><path d=\"M486.41,144A28,28,0,0,0,472,92H349.123l5.457-21.828a48.513,48.513,0,0,0-12.848-46.153A41.035,41.035,0,0,0,312.609,12H308a8.009,8.009,0,0,0-8,8V47.413l-19.233,64.112A17.376,17.376,0,0,1,268,123.539V112a4,4,0,0,0-4-4H152a4,4,0,0,0-4,4v72a4,4,0,0,0,8,0V116h72V276H156V248a4,4,0,0,0-8,0v32a4,4,0,0,0,4,4H264a4,4,0,0,0,4-4V268.5h11.168A37.07,37.07,0,0,1,305.092,279a45.025,45.025,0,0,0,31.48,12.752L440,292a27.987,27.987,0,0,0,19.369-48.2,27.987,27.987,0,0,0,16-48A28,28,0,0,0,486.41,144ZM260,276H236V116h24Zm212-88H396a4,4,0,0,0,0,8h60a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h40a20,20,0,0,1,.01,40l-103.428-.25a37.07,37.07,0,0,1-25.924-10.5,45.031,45.031,0,0,0-31.49-12.752H268V131.686a25.317,25.317,0,0,0,20.429-17.862l19.4-64.675A4,4,0,0,0,308,48V20h4.609a33.082,33.082,0,0,1,23.481,9.69,40.507,40.507,0,0,1,10.728,38.541l-6.7,26.8A4,4,0,0,0,344,100H472a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h72a20,20,0,0,1,0,40Z\"></path><path d=\"M194.5,183.243l-1.9-.217a4,4,0,0,0-4.169,2.491L184.29,195.9H135.278l-3.539-9.317a4,4,0,0,0-7.478,2.84l2.459,6.477h-8.474L68.452,156.872a4,4,0,1,0-4.935,6.3L77.6,174.209,56.961,194.48l-6.636-5.491a4,4,0,1,0-5.1,6.163L87.219,229.9a44.1,44.1,0,0,0,28.05,10.1H212a8.009,8.009,0,0,0,8-8V203.9a8.009,8.009,0,0,0-8-8h-8v-2.01A10.708,10.708,0,0,0,194.5,183.243ZM212,203.9V232H115.269a36.081,36.081,0,0,1-22.951-8.264l-29.16-24.128,20.8-20.422L114.4,203.045a4,4,0,0,0,2.468.852H187a4,4,0,0,0,3.715-2.517l3.929-9.843a2.712,2.712,0,0,1,1.356,2.35v6.01a4,4,0,0,0,4,4Z\"></path><path d=\"M223.084,484.672,200.87,469.863V346.36A44.1,44.1,0,0,0,195.327,325l-17.183-30.94a4,4,0,0,0-7,3.884l17.184,30.94a36.073,36.073,0,0,1,4.537,17.478V468H164.333a4,4,0,1,0,0,8h31.321l12,8H152.865V352a4,4,0,0,0-.358-1.655l-25.454-56A4,4,0,0,0,123.411,292H114.2a4,4,0,0,0-3.945,4.658l8.862,53.175a36.016,36.016,0,0,1-1.951,18.949L78.642,468H48.333a4,4,0,1,0,0,8H80.377L92,484H32.088L76.63,361.366a4.017,4.017,0,0,0,.183-2.044L61.1,268H136a4,4,0,0,0,0-8H59.233L30.555,173.966A19.723,19.723,0,0,1,49.27,148H76a12,12,0,0,0,24,0h15.2a21.975,21.975,0,0,1,8.395,1.652l10.889,4.458a4,4,0,1,0,3.032-7.4L126.63,142.25A29.938,29.938,0,0,0,115.2,140H100v-4.527A16.014,16.014,0,0,0,112,120V103.473A16.014,16.014,0,0,0,124,88V80a4,4,0,0,0-4-4H90A22.025,22.025,0,0,0,68,98v18a12.02,12.02,0,0,0,8,11.314V140H49.27a27.723,27.723,0,0,0-26.305,36.5l29.493,88.482,16.29,94.655-46.128,127A4,4,0,0,0,26.38,492h78.485a4,4,0,0,0,2.268-7.3L86.3,470.368l38.318-98.69a44.018,44.018,0,0,0,2.385-23.16L118.921,300h1.914l24.03,52.867V488a4,4,0,0,0,4,4h72a4,4,0,0,0,2.219-7.328ZM76,98A14.015,14.015,0,0,1,90,84h26v4a8.009,8.009,0,0,1-8,8H92a4,4,0,0,0-4,4,11.962,11.962,0,0,1-1.53,5.881A12.044,12.044,0,0,0,76,104.686Zm4,14a3.981,3.981,0,0,1,3.407,1.9,4,4,0,0,0,5.956.975c.207-.171.7-.648.7-.648.032-.028.061-.057.09-.087A19.907,19.907,0,0,0,95.6,104H104v16a8.009,8.009,0,0,1-8,8,12.133,12.133,0,0,1-2.681-.3,4,4,0,1,0-1.775,7.8c.151.035.3.06.456.091V148a4,4,0,1,1-8,0V124a4,4,0,0,0-4-4,4,4,0,0,1,0-8Z\"></path></g></svg>				\n									<h5>\n							arbejde udført med ansvar						\n					</h5>\n				<p>Vi lover ikke mere, end vi kan holde – men vi holder det, vi lover.</p>			<h2>KONTAKT OS</h2>		<p>Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.</p>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 13:35:54', '2026-01-26 13:35:54', '', 10, 'https://mrarif.me/cpnordic/?p=532', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(538, 1, '2026-01-26 13:39:53', '2026-01-26 13:39:53', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>					\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle ANMELDELSER\n					</a>\n					<h2>HVORFOR VÆLGE CP NORDIC ApS?</h2>		<p>Når du vælger CP NORDIC ApS, får du:</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 450 450\" width=\"512\"><g><g><path d=\"m225 165.2c-25.9 0-48.9-18.8-53.3-45.2-2.4-14.2.9-28.6 9.3-40.3 8.4-11.8 20.9-19.5 35.1-21.9 29.4-4.9 57.3 15 62.2 44.5 4.9 29.4-15 57.3-44.4 62.2-3 .5-6 .7-8.9.7zm-7.6-99.8c-12.2 2-22.9 8.7-30.1 18.8s-10.1 22.4-8 34.6c3.8 22.7 23.5 38.8 45.7 38.8 2.5 0 5.1-.2 7.6-.6 25.2-4.2 42.3-28.1 38.1-53.4s-28.1-42.4-53.3-38.2z\"></path><path d=\"m255.2 115c-2.1 0-3.8-1.7-3.8-3.8 0-14.6-11.8-26.4-26.4-26.4-2.1 0-3.8-1.7-3.8-3.8s1.7-3.8 3.8-3.8c18.8 0 34.1 15.3 34.1 34.1 0 2-1.8 3.7-3.9 3.7z\"></path><path d=\"m236.1 203h-22.2c-2.1 0-3.8-1.7-3.8-3.8v-14.1c-3.1-.6-6.1-1.4-9.1-2.4l-7 12.2c-1.1 1.8-3.4 2.5-5.3 1.4l-19.2-11.1c-.9-.5-1.5-1.4-1.8-2.3-.3-1-.1-2 .4-2.9l7-12.1c-2.4-2.1-4.6-4.3-6.7-6.6l-12.1 7c-1.8 1.1-4.2.4-5.2-1.4l-11.1-19.2c-1.1-1.8-.4-4.2 1.4-5.2l11.9-6.8c-1-3-1.9-6.1-2.6-9.3h-13.7c-2.1 0-3.8-1.7-3.8-3.8v-22.2c0-2.1 1.7-3.8 3.8-3.8h13.4c.6-3.2 1.4-6.4 2.4-9.5l-11.5-6.6c-1.8-1.1-2.5-3.4-1.4-5.3l11.1-19.6c.5-.9 1.4-1.5 2.3-1.8s2-.1 2.9.4l11.3 6.6c2.2-2.5 4.5-4.8 7-7l-6.5-11.3c-.5-.9-.6-1.9-.4-2.9.3-1 .9-1.8 1.8-2.3l19.2-11.1c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l6.4 11.2c3.1-1.1 6.4-1.9 9.7-2.6v-13c0-2.1 1.7-3.8 3.8-3.8h22.2c2.1 0 3.8 1.7 3.8 3.8v12.8c3.3.7 6.5 1.5 9.7 2.6l6.5-11.2c.5-.9 1.4-1.5 2.3-1.8 1-.3 2-.1 2.9.4l19.2 11.1c.9.5 1.5 1.3 1.8 2.3s.1 2-.4 2.9l-6.5 11.3c2.5 2.2 4.8 4.5 7 7.1l11.3-6.6c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l11.1 19.2c1.1 1.8.4 4.2-1.4 5.3l-11.5 6.6c1 3.1 1.8 6.3 2.5 9.5h13.6c2.1 0 3.8 1.7 3.8 3.8v22.2c0 2.1-1.7 3.8-3.8 3.8h-13.6c-.6 3.1-1.5 6.2-2.5 9.3l11.9 6.8c1.8 1.1 2.5 3.4 1.4 5.2l-11.2 19.5c-1.1 1.8-3.4 2.5-5.2 1.4l-12-7c-2.1 2.4-4.4 4.6-6.7 6.6l7 12.1c.5.9.6 1.9.4 2.9s-.9 1.8-1.8 2.3l-19.2 11.1c-1.8 1.1-4.2.4-5.2-1.4l-7-12.2c-3 1-6 1.8-9.1 2.4v14.1c-.2 2.3-2 4-4.1 4zm-18.4-7.7h14.5v-13.5c0-1.9 1.4-3.5 3.3-3.8 4.7-.7 9.4-2 13.8-3.7 1.8-.7 3.8 0 4.7 1.7l6.7 11.6 12.6-7.3-6.7-11.6c-1-1.6-.5-3.7.9-4.9 3.7-3 7.2-6.4 10.2-10.1 1.2-1.5 3.3-1.8 4.9-.9l11.5 6.6 7.3-12.6-11.3-6.5c-1.6-.9-2.4-3-1.6-4.7 1.8-4.5 3.1-9.2 3.9-14 .3-1.9 1.9-3.2 3.8-3.2h13v-14.6h-12.8c-1.9 0-3.5-1.4-3.8-3.3-.7-4.8-2-9.6-3.7-14.2-.7-1.8 0-3.7 1.7-4.7l10.9-6.3-7.3-12.6-10.8 6.3c-1.6.9-3.7.6-4.9-.9-3.1-3.9-6.6-7.4-10.4-10.6-1.5-1.2-1.9-3.3-.9-4.9l6.2-10.7-12.6-7.3-6.1 10.6c-1 1.6-3 2.3-4.7 1.7-4.6-1.8-9.5-3.1-14.4-3.9-1.9-.3-3.3-1.9-3.3-3.8v-12.2h-14.5v12.3c0 1.9-1.4 3.5-3.3 3.8-5 .8-9.8 2.1-14.4 3.9-1.8.7-3.8 0-4.7-1.7l-6.1-10.6-12.6 7.3 6.2 10.7c.9 1.6.6 3.7-.9 4.9-3.9 3.1-7.4 6.7-10.4 10.6-1.2 1.5-3.3 1.9-4.9.9l-10.8-6.3-7.3 12.6 10.9 6.3c1.6.9 2.3 2.9 1.7 4.7-1.7 4.6-3 9.4-3.7 14.2-.3 1.9-1.9 3.3-3.8 3.3h-12.8v14.5h13c1.9 0 3.5 1.4 3.8 3.2.8 4.8 2.1 9.5 3.9 14 .7 1.8 0 3.8-1.6 4.7l-11.3 6.5 7.3 12.6 11.5-6.6c1.6-.9 3.7-.6 4.9.9 3 3.7 6.5 7.1 10.3 10.1 1.5 1.2 1.9 3.3.9 4.9l-6.7 11.6 12.6 7.3 6.7-11.6c.9-1.6 2.9-2.3 4.7-1.7 4.5 1.7 9.1 2.9 13.8 3.7 1.9.3 3.3 1.9 3.3 3.8z\"></path></g><g><g><g><path d=\"m45.3 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m153.9 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path></g><g><path d=\"m189.3 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.2c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c0 2.1-1.7 3.8-3.8 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m73.3 326.4c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m126 326.4c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m99.7 325.6c-.6 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4s4.1 1.1 4.4 3.2c2.4 16.5 12.3 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m50.2 266.6c-.1 0-.2 0-.3 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.7 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-8.9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.5 2.2zm81.8-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13.1-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.4-.7 2.3-.7z\"></path></g></g></g><g><g><path d=\"m296.1 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m404.7 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path></g><g><path d=\"m440 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.1c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c.2 2.1-1.6 3.8-3.7 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m324 326.3c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m376.7 326.3c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m350.4 325.6c-.5 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4 2.1-.3 4 1.1 4.4 3.2 2.4 16.5 12.4 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m301 266.6c-.1 0-.2 0-.4 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.6 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.4 2.2zm81.7-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.5-.7 2.3-.7z\"></path></g></g></g></g></g></svg>				\n									<h5>\n							et ungt og engageret team						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"496pt\" viewBox=\"0 0 496 496\" width=\"496pt\"><path d=\"m440 328h-28.207031c5.078125-6.703125 8.207031-14.960938 8.207031-24 0-8.824219-7.175781-16-16-16h-12v-19.960938c59.574219-14.445312 104-68.085937 104-132.039062 0-74.992188-61.007812-136-136-136s-136 61.007812-136 136c0 63.953125 44.425781 117.59375 104 132.039062v19.960938h-8.449219c-6.167969 0-12.359375 1.464844-17.886719 4.214844l-50.480468 25.25c-3.320313 1.664062-7.03125 2.535156-10.734375 2.535156h-40.449219v-16h-104v16h56v56h16v-56h16v128h-16v-56h-16v56h-56v16h104v-16h40.449219c3.703125 0 7.414062.871094 10.734375 2.527344l34.488281 17.25c5.519531 2.757812 11.710937 4.222656 17.878906 4.222656h24.449219v24h64v-24h48c13.230469 0 24-10.769531 24-24 0-6.167969-2.40625-11.742188-6.238281-16 3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16 0-13.230469-10.769531-24-24-24zm8 24c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm-208-280c0-66.167969 53.832031-120 120-120s120 53.832031 120 120-53.832031 120-120 120-120-53.832031-120-120zm104 134.976562c5.257812.617188 10.574219 1.023438 16 1.023438s10.742188-.40625 16-1.023438v17.023438h-32zm-40.449219 185.023438c-3.703125 0-7.414062-.871094-10.734375-2.527344l-34.488281-17.25c-5.519531-2.757812-11.710937-4.222656-17.878906-4.222656h-40.449219v-96h40.449219c6.167969 0 12.359375-1.464844 17.886719-4.214844l50.480468-25.25c3.320313-1.664062 7.03125-2.535156 10.734375-2.535156h84.449219c0 13.230469-10.769531 24-24 24h-48.28125l-23.863281 35.808594c-6.101563 9.160156-14.527344 16.589844-24.367188 21.503906-8.753906 4.375-18.542969 6.6875-28.320312 6.6875h-15.167969v16h15.167969c12.246093 0 24.519531-2.894531 35.472656-8.375 12.328125-6.160156 22.878906-15.480469 30.527344-26.945312l6.832031-10.253907v93.574219zm40.449219 24v-136h17.472656c-.898437 2.511719-1.472656 5.183594-1.472656 8 0 6.167969 2.40625 11.742188 6.238281 16-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16 0 10.414062 6.710938 19.214844 16 22.527344v9.472656zm96-24h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8s-3.59375 8-8 8zm0 0\"></path><path d=\"m394.878906 73.007812-7.757812 13.984376c17.816406 9.878906 28.878906 28.664062 28.878906 49.007812h16c0-26.160156-14.222656-50.296875-37.121094-62.992188zm0 0\"></path><path d=\"m360 80c4.734375 0 9.449219.59375 14.007812 1.769531l3.976563-15.503906c-5.855469-1.496094-11.90625-2.265625-17.984375-2.265625zm0 0\"></path><path d=\"m360 48c48.519531 0 88 39.480469 88 88 0 20.753906-7.398438 40.910156-20.832031 56.785156l12.207031 10.34375c15.882812-18.761718 24.625-42.601562 24.625-67.128906 0-57.34375-46.65625-104-104-104-24.527344 0-48.367188 8.753906-67.128906 24.632812l10.335937 12.199219c15.871094-13.433593 36.039063-20.832031 56.792969-20.832031zm0 0\"></path><path d=\"m427.128906 215.367188-10.335937-12.199219c-15.871094 13.433593-36.039063 20.832031-56.792969 20.832031-48.519531 0-88-39.480469-88-88 0-20.753906 7.398438-40.910156 20.832031-56.785156l-12.207031-10.34375c-15.882812 18.761718-24.625 42.601562-24.625 67.128906 0 57.34375 46.65625 104 104 104 24.527344 0 48.367188-8.753906 67.128906-24.632812zm0 0\"></path><path d=\"m121.214844 165.640625c4.953125-1.375 9.695312-3.34375 14.183594-5.878906l9.769531 4.886719 19.472656-19.480469-4.886719-9.769531c2.535156-4.496094 4.503906-9.230469 5.886719-14.183594l10.359375-3.445313v-27.53125l-10.351562-3.453125c-1.375-4.953125-3.34375-9.707031-5.886719-14.183594l4.886719-9.777343-19.472657-19.472657-9.769531 4.886719c-4.484375-2.535156-9.230469-4.503906-14.183594-5.878906l-3.453125-10.359375h-27.539062l-3.445313 10.359375c-4.953125 1.375-9.695312 3.34375-14.183594 5.878906l-9.777343-4.886719-19.472657 19.472657 4.886719 9.777343c-2.535156 4.488282-4.503906 9.230469-5.886719 14.183594l-10.351562 3.445313v27.53125l10.351562 3.453125c1.375 4.953125 3.34375 9.695312 5.886719 14.183594l-4.886719 9.769531 19.472657 19.480469 9.769531-4.886719c4.484375 2.535156 9.230469 4.503906 14.183594 5.878906l3.453125 10.359375h27.539062zm-12.304688-13.679687-2.679687 8.039062h-4.460938l-2.679687-8.039062-4.554688-.90625c-6.128906-1.222657-11.878906-3.605469-17.109375-7.09375l-3.867187-2.578126-7.574219 3.800782-3.160156-3.167969 3.792969-7.582031-2.578126-3.859375c-3.488281-5.222657-5.871093-10.980469-7.09375-17.109375l-.914062-4.554688-8.03125-2.679687v-4.46875l8.03125-2.671875.914062-4.554688c1.222657-6.136718 3.613282-11.886718 7.09375-17.109375l2.578126-3.859375-3.792969-7.589844 3.160156-3.160156 7.574219 3.800782 3.867187-2.578126c5.222657-3.488281 10.980469-5.863281 17.109375-7.09375l4.554688-.90625 2.679687-8.039062h4.460938l2.679687 8.039062 4.554688.90625c6.128906 1.222657 11.878906 3.605469 17.109375 7.09375l3.867187 2.578126 7.574219-3.800782 3.160156 3.160156-3.792969 7.589844 2.578126 3.859375c3.488281 5.214844 5.871093 10.972657 7.09375 17.109375l.914062 4.554688 8.03125 2.679687v4.46875l-8.03125 2.671875-.914062 4.554688c-1.222657 6.128906-3.613282 11.878906-7.09375 17.109375l-2.578126 3.859375 3.792969 7.582031-3.160156 3.167969-7.574219-3.800782-3.867187 2.578126c-5.222657 3.488281-10.980469 5.863281-17.109375 7.09375zm0 0\"></path><path d=\"m104 72c-17.648438 0-32 14.351562-32 32s14.351562 32 32 32 32-14.351562 32-32-14.351562-32-32-32zm0 48c-8.824219 0-16-7.175781-16-16s7.175781-16 16-16 16 7.175781 16 16-7.175781 16-16 16zm0 0\"></path><path d=\"m160 248v-40h48v-208h-208v208h106.664062zm-144-232h176v176h-48v24l-32-24h-96zm0 0\"></path><path d=\"m0 272h16v16h-16zm0 0\"></path><path d=\"m32 272h16v16h-16zm0 0\"></path><path d=\"m64 272h16v16h-16zm0 0\"></path><path d=\"m32 304h16v16h-16zm0 0\"></path><path d=\"m64 304h16v16h-16zm0 0\"></path><path d=\"m0 480h16v16h-16zm0 0\"></path><path d=\"m32 480h16v16h-16zm0 0\"></path><path d=\"m64 480h16v16h-16zm0 0\"></path><path d=\"m32 448h16v16h-16zm0 0\"></path><path d=\"m64 448h16v16h-16zm0 0\"></path></svg>				\n									<h5>\n							fokus på kvalitet og detaljer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m469.12 408.93-67.26-33.63v-22.13c10.71-7.69 18.6-19.07 21.78-32.27h5.28c8.81 0 15.98-7.17 15.98-15.98v-5.29c0-6.35-3.74-11.84-9.12-14.41 5.19-18.64-1.65-39.76-19.44-59.78-12.58-14.16-30.67-22.27-49.62-22.27-18.93 0-37.01 8.12-49.59 22.27-13.38 15.05-20.95 41.01-14.03 59.62-5.56 2.5-9.45 8.09-9.45 14.57v5.29c0 8.81 7.17 15.98 15.98 15.98h5.55c3.16 13.09 10.94 24.39 21.51 32.08v22.32l-67.26 33.63c-16.7 5.87-27.89 21.6-27.89 39.28v41.63c0 3.31 2.69 6 6 6h243.46c3.31 0 6-2.69 6-6v-41.63c0-17.68-11.19-33.41-27.88-39.28zm-62.24-17.7-15.83 27.66-13.29-13.29 19.29-19.29zm-37.61 5.88-20.59-20.58v-16.91c6.41 2.57 13.4 4.01 20.72 4.01 7.22 0 14.11-1.39 20.45-3.9v16.8zm63.63-97.48v5.29c0 2.16-1.82 3.98-3.98 3.98h-3.74c.01-.36.03-.71.03-1.07v-12.18h3.71c2.15-.01 3.98 1.82 3.98 3.98zm-119.29 8.2v1.07h-3.98c-2.16 0-3.98-1.82-3.98-3.98v-5.29c0-2.16 1.82-3.98 3.98-3.98l3.98.22zm1.95-24.19c-7.33-13.69-.89-37.39 10.53-50.24 10.31-11.6 25.12-18.25 40.63-18.25 15.52 0 30.34 6.65 40.65 18.25 8.43 9.48 21.3 27.59 17.4 46.39-5.66-.35-10.67-2.55-14.4-6.36-5.37-5.49-7.72-14-6.63-23.94.29-2.62-1.17-5.13-3.6-6.17s-5.25-.37-6.95 1.65c-19.33 22.92-45.95 36.76-73.9 38.68h-3.73zm10.05 24.19v-12.73c24.57-2.92 47.92-14.05 66.73-31.8 1.43 7.26 4.63 13.6 9.45 18.52 3.27 3.35 7.14 5.89 11.41 7.58v18.42c0 24.15-19.65 43.8-43.8 43.8s-43.79-19.64-43.79-43.79zm15.89 78.48 19.29 19.29-13.29 13.29-15.84-27.66zm3.22 97.53h-39.42v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.76v-35.63c0-12.68 8.1-23.95 20.15-28.05.26-.09.51-.19.75-.31l46.47-23.23 20.07 35.06c.93 1.62 2.56 2.72 4.41 2.97.27.04.53.05.79.05 1.58 0 3.11-.62 4.24-1.76l.14-.14zm12.08 0 7.41-64.69 5.06-5.06 4.84 4.84 7.86 64.92h-25.17zm128.2 0h-39.76v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.18l-6.2-51.17.25.25c1.13 1.13 2.66 1.76 4.24 1.76.26 0 .53-.02.79-.05 1.85-.25 3.48-1.34 4.41-2.97l20.07-35.06 46.47 23.23c.24.12.49.23.75.31 12.05 4.1 20.15 15.38 20.15 28.05v35.65zm-67.04-346.65h-10.84l28.38 39.84 28.38-39.84h-10.84c-3.31 0-6-2.69-6-6v-64.58h-98.7c-3.31 0-6-2.69-6-6s2.69-6 6-6h104.7c3.31 0 6 2.69 6 6v64.58h16.48c2.25 0 4.3 1.25 5.33 3.25s.86 4.4-.45 6.23l-40.02 56.18c-1.13 1.58-2.95 2.52-4.89 2.52s-3.76-.94-4.89-2.52l-40.02-56.18c-1.3-1.83-1.48-4.23-.45-6.23s3.09-3.25 5.33-3.25h16.48v-23.5h-65.38c-3.31 0-6-2.69-6-6s2.69-6 6-6h71.38c3.31 0 6 2.69 6 6v35.5c.02 3.31-2.67 6-5.98 6zm-118.44 50.65v-133.26c0-21.18-17.23-38.41-38.41-38.41h-207.7c-21.18-.01-38.41 17.23-38.41 38.41v133.26c0 21.18 17.23 38.41 38.41 38.41h105.8l64.8 55.11c1.11.94 2.49 1.43 3.89 1.43.85 0 1.71-.18 2.52-.55 2.12-.98 3.48-3.11 3.48-5.45v-50.54h27.21c21.18 0 38.41-17.23 38.41-38.41zm-71.62 26.41c-3.31 0-6 2.69-6 6v43.56l-56.59-48.13c-1.08-.92-2.46-1.43-3.89-1.43h-108.01c-14.56 0-26.41-11.85-26.41-26.41v-133.26c0-14.56 11.85-26.41 26.41-26.41h207.69c14.56 0 26.41 11.85 26.41 26.41v133.26c0 14.56-11.85 26.41-26.41 26.41zm-156.34-87.87h56.97c3.31 0 6-2.69 6-6v-39.2l8.55-8.55c2.34-2.34 2.34-6.14 0-8.49-2.34-2.34-6.14-2.34-8.48 0l-.7.7c-.98-1.97-3.01-3.32-5.36-3.32h-56.98c-3.31 0-6 2.69-6 6v52.85c0 3.32 2.69 6.01 6 6.01zm6-52.86h44.97v2.69l-18.16 18.16-8.84-8.84c-2.34-2.34-6.14-2.34-8.49 0-2.34 2.34-2.34 6.14 0 8.49l13.08 13.08c1.17 1.17 2.71 1.76 4.24 1.76s3.07-.59 4.24-1.76l13.92-13.92v21.2h-44.96zm173.62 3.08c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 31.92c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 36.52c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.68 5.99 6zm0 31.92c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.69 5.99 6zm-119.36 165.01h10.84l-28.38-39.84-28.38 39.84h10.84c3.31 0 6 2.69 6 6v64.58h98.7c3.31 0 6 2.69 6 6s-2.69 6-6 6h-104.69c-3.31 0-6-2.69-6-6v-64.58h-16.48c-2.25 0-4.3-1.25-5.33-3.25s-.86-4.4.45-6.23l40.02-56.18c1.13-1.58 2.95-2.52 4.89-2.52s3.76.94 4.89 2.52l40.02 56.18c1.3 1.83 1.48 4.23.45 6.23s-3.09 3.25-5.33 3.25h-16.48v23.5h65.38c3.31 0 6 2.69 6 6s-2.69 6-6 6h-71.38c-3.31 0-6-2.69-6-6v-35.5c-.03-3.31 2.66-6 5.97-6z\"></path></svg>				\n									<h5>\n							ærlig<br> rådgivning						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 510 510\"><path d=\"m192.036 385.845c-4.787-46.972-19.459-64.336-30.658-82.352-8.672-13.951-15.5-28.245-15.5-54.252 0-60.242 48.865-109.109 109.135-109.109 60.242 0 109.109 48.866 109.109 109.109 0 26.007-6.828 40.301-15.5 54.252-11.199 18.016-25.871 35.38-30.658 82.352 9.985 2.864 17.345 12.101 17.345 22.975v36.44c0 13.109-10.747 23.866-23.893 23.866h-10.334v9.945c0 12.588-10.341 22.929-22.93 22.929h-46.304c-12.589 0-22.93-10.341-22.93-22.929v-9.945h-10.334c-13.146 0-23.893-10.757-23.893-23.866v-36.44c0-10.874 7.36-20.111 17.345-22.975zm111.948-.917c4.199-42.194 15.78-62.332 26.488-79.049 10.147-15.842 19.65-28.207 19.65-56.638 0-52.513-42.597-95.109-95.109-95.109-52.537 0-95.135 42.596-95.135 95.109 0 28.431 9.503 40.796 19.65 56.638 10.708 16.717 22.289 36.855 26.488 79.049zm2.554-78.61c-1.175 13.701-11.985 24.191-24.783 24.191-13.527 0-24.862-12.086-24.862-26.673v-99.328c0-14.12 11.335-26.673 24.862-26.673 11.309 0 21.031 8.139 23.975 19.497 9.12 3.904 15.688 13.438 15.688 24.78 0 1.153-.068 2.289-.201 3.403 5.078 5.326 8.283 12.802 8.283 21.117 0 6.39-1.889 12.262-5.06 17.053 1.996 4.099 3.13 8.773 3.13 13.76 0 14.1-9.065 25.697-21.032 28.873zm-16.452-109.977c-1.964-2.729-4.916-4.506-8.331-4.506-6.192 0-10.862 6.21-10.862 12.673v99.328c0 6.677 4.67 12.673 10.862 12.673 5.516 0 9.822-4.614 10.717-10.425-4.709-1.416-8.923-4.144-12.279-7.814-2.607-2.852-2.409-7.283.443-9.89 2.851-2.607 7.282-2.408 9.889.443 2.416 2.642 5.72 4.356 9.402 4.356 7.733 0 13.643-7.218 13.643-15.734s-5.91-15.734-13.643-15.734c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7 5.352 0 10.388 1.655 14.658 4.533.593-1.743.915-3.634.915-5.612 0-2.11-.366-4.128-1.036-5.972-.769.858-1.588 1.66-2.453 2.397-2.94 2.507-7.361 2.156-9.869-.784-2.507-2.939-2.155-7.361.784-9.868 2.773-2.365 4.492-6.122 4.492-10.293 0-6.072-3.705-11.374-8.898-12.467-.154-.023-.307-.052-.458-.085-.499-.08-1.01-.121-1.532-.121-2.947 0-5.591 1.389-7.515 3.525-2.585 2.87-7.015 3.101-9.886.515-2.87-2.586-3.101-7.015-.515-9.886 3.111-3.453 7.059-5.988 11.472-7.252zm-104.526 67.344c-3.171-4.791-5.06-10.663-5.06-17.053 0-8.307 3.198-15.777 8.284-21.104-.133-1.118-.202-2.258-.202-3.416 0-11.354 6.582-20.897 15.717-24.792 2.948-11.354 12.67-19.485 23.946-19.485 13.56 0 24.888 12.555 24.888 26.673v99.328c0 14.585-11.328 26.673-24.888 26.673-12.765 0-23.578-10.484-24.757-24.184-11.98-3.166-21.058-14.769-21.058-28.88 0-4.987 1.134-9.661 3.13-13.76zm9.982-23.036c-.675 1.847-1.042 3.869-1.042 5.983 0 1.978.322 3.869.915 5.612 4.27-2.878 9.306-4.533 14.658-4.533 3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7-7.733 0-13.643 7.218-13.643 15.734s5.91 15.734 13.643 15.734c3.682 0 6.986-1.714 9.402-4.356 2.607-2.851 7.038-3.05 9.889-.443 2.852 2.607 3.05 7.038.443 9.89-3.35 3.664-7.556 6.389-12.255 7.807.891 5.813 5.192 10.432 10.693 10.432 6.21 0 10.888-5.993 10.888-12.673v-99.328c0-6.466-4.678-12.673-10.888-12.673-3.404 0-6.349 1.777-8.309 4.507 4.421 1.264 8.367 3.8 11.476 7.251 2.586 2.871 2.355 7.3-.516 9.886-2.87 2.586-7.3 2.355-9.886-.515-1.926-2.138-4.574-3.525-7.54-3.525-.493 0-.976.037-1.448.108-.196.045-.395.082-.596.11-5.165 1.118-8.844 6.404-8.844 12.455 0 1.243.153 2.45.442 3.594.101.284.183.572.246.862.748 2.326 2.071 4.346 3.814 5.823 2.947 2.498 3.311 6.919.813 9.866s-6.919 3.312-9.866.814c-.878-.745-1.71-1.554-2.489-2.422zm3.042 158.279c-5.442 0-9.893 4.451-9.893 9.892v36.44c0 5.423 4.454 9.866 9.893 9.866h17.334c3.866 0 7 3.134 7 7v16.945c0 4.902 4.027 8.929 8.93 8.929h46.304c4.903 0 8.93-4.027 8.93-8.929v-16.945c0-3.866 3.134-7 7-7h17.334c5.439 0 9.893-4.443 9.893-9.866v-36.44c0-5.441-4.451-9.892-9.893-9.892zm63.416-314.093 2.907-5.412c1.828-3.403 6.075-4.683 9.479-2.854 3.403 1.828 4.682 6.075 2.854 9.479l-16.073 29.925c-1.22 2.271-3.589 3.688-6.167 3.688s-4.947-1.417-6.167-3.688l-16.073-29.925c-1.828-3.404-.549-7.651 2.854-9.479 3.404-1.829 7.651-.549 9.479 2.854l2.907 5.412v-69.835c0-3.863 3.137-7 7-7s7 3.137 7 7zm-132.198 54.758-49.381-49.381c-2.732-2.731-2.732-7.167 0-9.899s7.168-2.732 9.9 0l49.38 49.38-1.771-5.881c-1.114-3.7.985-7.608 4.684-8.722 3.7-1.114 7.607.985 8.721 4.685l9.796 32.526c.743 2.468.069 5.145-1.753 6.968-1.823 1.823-4.5 2.496-6.969 1.753l-32.526-9.795c-3.699-1.114-5.798-5.022-4.684-8.721s5.022-5.798 8.721-4.684zm-44.859 122.299h-69.835c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7h69.835l-5.412-2.907c-3.403-1.828-4.682-6.076-2.854-9.479 1.828-3.404 6.075-4.683 9.479-2.855l29.926 16.074c2.271 1.22 3.688 3.589 3.688 6.167 0 2.577-1.417 4.947-3.688 6.166l-29.926 16.074c-3.404 1.828-7.651.549-9.479-2.855-1.828-3.403-.549-7.651 2.854-9.479zm54.758 118.198-49.38 49.38c-2.732 2.732-7.168 2.732-9.9 0s-2.732-7.167 0-9.899l49.381-49.381-5.882 1.772c-3.699 1.114-7.607-.985-8.721-4.685-1.114-3.699.985-7.607 4.684-8.721l32.526-9.795c2.469-.743 5.146-.07 6.969 1.753 1.822 1.823 2.496 4.5 1.753 6.968l-9.796 32.527c-1.114 3.699-5.021 5.798-8.721 4.684-3.699-1.114-5.798-5.022-4.684-8.721zm240.497-240.497 5.882-1.771c3.699-1.114 7.607.985 8.721 4.684s-.985 7.607-4.684 8.721l-32.526 9.795c-2.469.743-5.146.07-6.969-1.753-1.822-1.823-2.496-4.5-1.753-6.968l9.796-32.526c1.114-3.7 5.021-5.799 8.721-4.685 3.699 1.114 5.798 5.022 4.684 8.722l-1.771 5.881 49.38-49.38c2.732-2.732 7.168-2.732 9.9 0s2.732 7.168 0 9.899zm44.859 122.299 5.412 2.906c3.403 1.828 4.682 6.076 2.854 9.479-1.828 3.404-6.075 4.683-9.479 2.855l-29.926-16.074c-2.271-1.219-3.688-3.589-3.688-6.166 0-2.578 1.417-4.947 3.688-6.167l29.926-16.074c3.404-1.828 7.651-.549 9.479 2.855 1.828 3.403.549 7.651-2.854 9.479l-5.412 2.907h69.835c3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7zm-54.758 118.198 1.771 5.882c1.114 3.699-.985 7.607-4.684 8.721-3.7 1.114-7.607-.985-8.721-4.684l-9.796-32.527c-.743-2.468-.069-5.145 1.753-6.968 1.823-1.823 4.5-2.496 6.969-1.753l32.526 9.795c3.699 1.114 5.798 5.022 4.684 8.721-1.114 3.7-5.022 5.799-8.721 4.685l-5.882-1.772 49.381 49.381c2.732 2.732 2.732 7.167 0 9.899s-7.168 2.732-9.9 0z\"></path></svg>				\n									<h5>\n							gennemtænkte løsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"outline\"><path d=\"M486.41,144A28,28,0,0,0,472,92H349.123l5.457-21.828a48.513,48.513,0,0,0-12.848-46.153A41.035,41.035,0,0,0,312.609,12H308a8.009,8.009,0,0,0-8,8V47.413l-19.233,64.112A17.376,17.376,0,0,1,268,123.539V112a4,4,0,0,0-4-4H152a4,4,0,0,0-4,4v72a4,4,0,0,0,8,0V116h72V276H156V248a4,4,0,0,0-8,0v32a4,4,0,0,0,4,4H264a4,4,0,0,0,4-4V268.5h11.168A37.07,37.07,0,0,1,305.092,279a45.025,45.025,0,0,0,31.48,12.752L440,292a27.987,27.987,0,0,0,19.369-48.2,27.987,27.987,0,0,0,16-48A28,28,0,0,0,486.41,144ZM260,276H236V116h24Zm212-88H396a4,4,0,0,0,0,8h60a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h40a20,20,0,0,1,.01,40l-103.428-.25a37.07,37.07,0,0,1-25.924-10.5,45.031,45.031,0,0,0-31.49-12.752H268V131.686a25.317,25.317,0,0,0,20.429-17.862l19.4-64.675A4,4,0,0,0,308,48V20h4.609a33.082,33.082,0,0,1,23.481,9.69,40.507,40.507,0,0,1,10.728,38.541l-6.7,26.8A4,4,0,0,0,344,100H472a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h72a20,20,0,0,1,0,40Z\"></path><path d=\"M194.5,183.243l-1.9-.217a4,4,0,0,0-4.169,2.491L184.29,195.9H135.278l-3.539-9.317a4,4,0,0,0-7.478,2.84l2.459,6.477h-8.474L68.452,156.872a4,4,0,1,0-4.935,6.3L77.6,174.209,56.961,194.48l-6.636-5.491a4,4,0,1,0-5.1,6.163L87.219,229.9a44.1,44.1,0,0,0,28.05,10.1H212a8.009,8.009,0,0,0,8-8V203.9a8.009,8.009,0,0,0-8-8h-8v-2.01A10.708,10.708,0,0,0,194.5,183.243ZM212,203.9V232H115.269a36.081,36.081,0,0,1-22.951-8.264l-29.16-24.128,20.8-20.422L114.4,203.045a4,4,0,0,0,2.468.852H187a4,4,0,0,0,3.715-2.517l3.929-9.843a2.712,2.712,0,0,1,1.356,2.35v6.01a4,4,0,0,0,4,4Z\"></path><path d=\"M223.084,484.672,200.87,469.863V346.36A44.1,44.1,0,0,0,195.327,325l-17.183-30.94a4,4,0,0,0-7,3.884l17.184,30.94a36.073,36.073,0,0,1,4.537,17.478V468H164.333a4,4,0,1,0,0,8h31.321l12,8H152.865V352a4,4,0,0,0-.358-1.655l-25.454-56A4,4,0,0,0,123.411,292H114.2a4,4,0,0,0-3.945,4.658l8.862,53.175a36.016,36.016,0,0,1-1.951,18.949L78.642,468H48.333a4,4,0,1,0,0,8H80.377L92,484H32.088L76.63,361.366a4.017,4.017,0,0,0,.183-2.044L61.1,268H136a4,4,0,0,0,0-8H59.233L30.555,173.966A19.723,19.723,0,0,1,49.27,148H76a12,12,0,0,0,24,0h15.2a21.975,21.975,0,0,1,8.395,1.652l10.889,4.458a4,4,0,1,0,3.032-7.4L126.63,142.25A29.938,29.938,0,0,0,115.2,140H100v-4.527A16.014,16.014,0,0,0,112,120V103.473A16.014,16.014,0,0,0,124,88V80a4,4,0,0,0-4-4H90A22.025,22.025,0,0,0,68,98v18a12.02,12.02,0,0,0,8,11.314V140H49.27a27.723,27.723,0,0,0-26.305,36.5l29.493,88.482,16.29,94.655-46.128,127A4,4,0,0,0,26.38,492h78.485a4,4,0,0,0,2.268-7.3L86.3,470.368l38.318-98.69a44.018,44.018,0,0,0,2.385-23.16L118.921,300h1.914l24.03,52.867V488a4,4,0,0,0,4,4h72a4,4,0,0,0,2.219-7.328ZM76,98A14.015,14.015,0,0,1,90,84h26v4a8.009,8.009,0,0,1-8,8H92a4,4,0,0,0-4,4,11.962,11.962,0,0,1-1.53,5.881A12.044,12.044,0,0,0,76,104.686Zm4,14a3.981,3.981,0,0,1,3.407,1.9,4,4,0,0,0,5.956.975c.207-.171.7-.648.7-.648.032-.028.061-.057.09-.087A19.907,19.907,0,0,0,95.6,104H104v16a8.009,8.009,0,0,1-8,8,12.133,12.133,0,0,1-2.681-.3,4,4,0,1,0-1.775,7.8c.151.035.3.06.456.091V148a4,4,0,1,1-8,0V124a4,4,0,0,0-4-4,4,4,0,0,1,0-8Z\"></path></g></svg>				\n									<h5>\n							arbejde udført med ansvar						\n					</h5>\n				<p>Vi lover ikke mere, end vi kan holde – men vi holder det, vi lover.</p>			<h2>KONTAKT OS</h2>		<p>Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.</p>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 13:39:53', '2026-01-26 13:39:53', '', 10, 'https://mrarif.me/cpnordic/?p=538', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(535, 1, '2026-01-26 13:37:17', '2026-01-26 13:37:17', '<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h1>CP NORDIC ApS</h1>					<h4>Construction – Carpentry &amp; Roofing</h4>										<a href=\"#\">\n									Kontakt\n					</a>\n									<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>					\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle ANMELDELSER\n					</a>\n					<h2>HVORFOR VÆLGE CP NORDIC ApS?</h2>		<p>Når du vælger CP NORDIC ApS, får du:</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 450 450\" width=\"512\"><g><g><path d=\"m225 165.2c-25.9 0-48.9-18.8-53.3-45.2-2.4-14.2.9-28.6 9.3-40.3 8.4-11.8 20.9-19.5 35.1-21.9 29.4-4.9 57.3 15 62.2 44.5 4.9 29.4-15 57.3-44.4 62.2-3 .5-6 .7-8.9.7zm-7.6-99.8c-12.2 2-22.9 8.7-30.1 18.8s-10.1 22.4-8 34.6c3.8 22.7 23.5 38.8 45.7 38.8 2.5 0 5.1-.2 7.6-.6 25.2-4.2 42.3-28.1 38.1-53.4s-28.1-42.4-53.3-38.2z\"></path><path d=\"m255.2 115c-2.1 0-3.8-1.7-3.8-3.8 0-14.6-11.8-26.4-26.4-26.4-2.1 0-3.8-1.7-3.8-3.8s1.7-3.8 3.8-3.8c18.8 0 34.1 15.3 34.1 34.1 0 2-1.8 3.7-3.9 3.7z\"></path><path d=\"m236.1 203h-22.2c-2.1 0-3.8-1.7-3.8-3.8v-14.1c-3.1-.6-6.1-1.4-9.1-2.4l-7 12.2c-1.1 1.8-3.4 2.5-5.3 1.4l-19.2-11.1c-.9-.5-1.5-1.4-1.8-2.3-.3-1-.1-2 .4-2.9l7-12.1c-2.4-2.1-4.6-4.3-6.7-6.6l-12.1 7c-1.8 1.1-4.2.4-5.2-1.4l-11.1-19.2c-1.1-1.8-.4-4.2 1.4-5.2l11.9-6.8c-1-3-1.9-6.1-2.6-9.3h-13.7c-2.1 0-3.8-1.7-3.8-3.8v-22.2c0-2.1 1.7-3.8 3.8-3.8h13.4c.6-3.2 1.4-6.4 2.4-9.5l-11.5-6.6c-1.8-1.1-2.5-3.4-1.4-5.3l11.1-19.6c.5-.9 1.4-1.5 2.3-1.8s2-.1 2.9.4l11.3 6.6c2.2-2.5 4.5-4.8 7-7l-6.5-11.3c-.5-.9-.6-1.9-.4-2.9.3-1 .9-1.8 1.8-2.3l19.2-11.1c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l6.4 11.2c3.1-1.1 6.4-1.9 9.7-2.6v-13c0-2.1 1.7-3.8 3.8-3.8h22.2c2.1 0 3.8 1.7 3.8 3.8v12.8c3.3.7 6.5 1.5 9.7 2.6l6.5-11.2c.5-.9 1.4-1.5 2.3-1.8 1-.3 2-.1 2.9.4l19.2 11.1c.9.5 1.5 1.3 1.8 2.3s.1 2-.4 2.9l-6.5 11.3c2.5 2.2 4.8 4.5 7 7.1l11.3-6.6c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l11.1 19.2c1.1 1.8.4 4.2-1.4 5.3l-11.5 6.6c1 3.1 1.8 6.3 2.5 9.5h13.6c2.1 0 3.8 1.7 3.8 3.8v22.2c0 2.1-1.7 3.8-3.8 3.8h-13.6c-.6 3.1-1.5 6.2-2.5 9.3l11.9 6.8c1.8 1.1 2.5 3.4 1.4 5.2l-11.2 19.5c-1.1 1.8-3.4 2.5-5.2 1.4l-12-7c-2.1 2.4-4.4 4.6-6.7 6.6l7 12.1c.5.9.6 1.9.4 2.9s-.9 1.8-1.8 2.3l-19.2 11.1c-1.8 1.1-4.2.4-5.2-1.4l-7-12.2c-3 1-6 1.8-9.1 2.4v14.1c-.2 2.3-2 4-4.1 4zm-18.4-7.7h14.5v-13.5c0-1.9 1.4-3.5 3.3-3.8 4.7-.7 9.4-2 13.8-3.7 1.8-.7 3.8 0 4.7 1.7l6.7 11.6 12.6-7.3-6.7-11.6c-1-1.6-.5-3.7.9-4.9 3.7-3 7.2-6.4 10.2-10.1 1.2-1.5 3.3-1.8 4.9-.9l11.5 6.6 7.3-12.6-11.3-6.5c-1.6-.9-2.4-3-1.6-4.7 1.8-4.5 3.1-9.2 3.9-14 .3-1.9 1.9-3.2 3.8-3.2h13v-14.6h-12.8c-1.9 0-3.5-1.4-3.8-3.3-.7-4.8-2-9.6-3.7-14.2-.7-1.8 0-3.7 1.7-4.7l10.9-6.3-7.3-12.6-10.8 6.3c-1.6.9-3.7.6-4.9-.9-3.1-3.9-6.6-7.4-10.4-10.6-1.5-1.2-1.9-3.3-.9-4.9l6.2-10.7-12.6-7.3-6.1 10.6c-1 1.6-3 2.3-4.7 1.7-4.6-1.8-9.5-3.1-14.4-3.9-1.9-.3-3.3-1.9-3.3-3.8v-12.2h-14.5v12.3c0 1.9-1.4 3.5-3.3 3.8-5 .8-9.8 2.1-14.4 3.9-1.8.7-3.8 0-4.7-1.7l-6.1-10.6-12.6 7.3 6.2 10.7c.9 1.6.6 3.7-.9 4.9-3.9 3.1-7.4 6.7-10.4 10.6-1.2 1.5-3.3 1.9-4.9.9l-10.8-6.3-7.3 12.6 10.9 6.3c1.6.9 2.3 2.9 1.7 4.7-1.7 4.6-3 9.4-3.7 14.2-.3 1.9-1.9 3.3-3.8 3.3h-12.8v14.5h13c1.9 0 3.5 1.4 3.8 3.2.8 4.8 2.1 9.5 3.9 14 .7 1.8 0 3.8-1.6 4.7l-11.3 6.5 7.3 12.6 11.5-6.6c1.6-.9 3.7-.6 4.9.9 3 3.7 6.5 7.1 10.3 10.1 1.5 1.2 1.9 3.3.9 4.9l-6.7 11.6 12.6 7.3 6.7-11.6c.9-1.6 2.9-2.3 4.7-1.7 4.5 1.7 9.1 2.9 13.8 3.7 1.9.3 3.3 1.9 3.3 3.8z\"></path></g><g><g><g><path d=\"m45.3 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m153.9 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path></g><g><path d=\"m189.3 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.2c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c0 2.1-1.7 3.8-3.8 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m73.3 326.4c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m126 326.4c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m99.7 325.6c-.6 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4s4.1 1.1 4.4 3.2c2.4 16.5 12.3 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m50.2 266.6c-.1 0-.2 0-.3 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.7 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-8.9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.5 2.2zm81.8-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13.1-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.4-.7 2.3-.7z\"></path></g></g></g><g><g><path d=\"m296.1 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m404.7 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path></g><g><path d=\"m440 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.1c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c.2 2.1-1.6 3.8-3.7 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m324 326.3c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m376.7 326.3c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m350.4 325.6c-.5 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4 2.1-.3 4 1.1 4.4 3.2 2.4 16.5 12.4 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m301 266.6c-.1 0-.2 0-.4 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.6 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.4 2.2zm81.7-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.5-.7 2.3-.7z\"></path></g></g></g></g></g></svg>				\n									<h5>\n							et ungt og engageret team						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"496pt\" viewBox=\"0 0 496 496\" width=\"496pt\"><path d=\"m440 328h-28.207031c5.078125-6.703125 8.207031-14.960938 8.207031-24 0-8.824219-7.175781-16-16-16h-12v-19.960938c59.574219-14.445312 104-68.085937 104-132.039062 0-74.992188-61.007812-136-136-136s-136 61.007812-136 136c0 63.953125 44.425781 117.59375 104 132.039062v19.960938h-8.449219c-6.167969 0-12.359375 1.464844-17.886719 4.214844l-50.480468 25.25c-3.320313 1.664062-7.03125 2.535156-10.734375 2.535156h-40.449219v-16h-104v16h56v56h16v-56h16v128h-16v-56h-16v56h-56v16h104v-16h40.449219c3.703125 0 7.414062.871094 10.734375 2.527344l34.488281 17.25c5.519531 2.757812 11.710937 4.222656 17.878906 4.222656h24.449219v24h64v-24h48c13.230469 0 24-10.769531 24-24 0-6.167969-2.40625-11.742188-6.238281-16 3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16 0-13.230469-10.769531-24-24-24zm8 24c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm-208-280c0-66.167969 53.832031-120 120-120s120 53.832031 120 120-53.832031 120-120 120-120-53.832031-120-120zm104 134.976562c5.257812.617188 10.574219 1.023438 16 1.023438s10.742188-.40625 16-1.023438v17.023438h-32zm-40.449219 185.023438c-3.703125 0-7.414062-.871094-10.734375-2.527344l-34.488281-17.25c-5.519531-2.757812-11.710937-4.222656-17.878906-4.222656h-40.449219v-96h40.449219c6.167969 0 12.359375-1.464844 17.886719-4.214844l50.480468-25.25c3.320313-1.664062 7.03125-2.535156 10.734375-2.535156h84.449219c0 13.230469-10.769531 24-24 24h-48.28125l-23.863281 35.808594c-6.101563 9.160156-14.527344 16.589844-24.367188 21.503906-8.753906 4.375-18.542969 6.6875-28.320312 6.6875h-15.167969v16h15.167969c12.246093 0 24.519531-2.894531 35.472656-8.375 12.328125-6.160156 22.878906-15.480469 30.527344-26.945312l6.832031-10.253907v93.574219zm40.449219 24v-136h17.472656c-.898437 2.511719-1.472656 5.183594-1.472656 8 0 6.167969 2.40625 11.742188 6.238281 16-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16 0 10.414062 6.710938 19.214844 16 22.527344v9.472656zm96-24h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8s-3.59375 8-8 8zm0 0\"></path><path d=\"m394.878906 73.007812-7.757812 13.984376c17.816406 9.878906 28.878906 28.664062 28.878906 49.007812h16c0-26.160156-14.222656-50.296875-37.121094-62.992188zm0 0\"></path><path d=\"m360 80c4.734375 0 9.449219.59375 14.007812 1.769531l3.976563-15.503906c-5.855469-1.496094-11.90625-2.265625-17.984375-2.265625zm0 0\"></path><path d=\"m360 48c48.519531 0 88 39.480469 88 88 0 20.753906-7.398438 40.910156-20.832031 56.785156l12.207031 10.34375c15.882812-18.761718 24.625-42.601562 24.625-67.128906 0-57.34375-46.65625-104-104-104-24.527344 0-48.367188 8.753906-67.128906 24.632812l10.335937 12.199219c15.871094-13.433593 36.039063-20.832031 56.792969-20.832031zm0 0\"></path><path d=\"m427.128906 215.367188-10.335937-12.199219c-15.871094 13.433593-36.039063 20.832031-56.792969 20.832031-48.519531 0-88-39.480469-88-88 0-20.753906 7.398438-40.910156 20.832031-56.785156l-12.207031-10.34375c-15.882812 18.761718-24.625 42.601562-24.625 67.128906 0 57.34375 46.65625 104 104 104 24.527344 0 48.367188-8.753906 67.128906-24.632812zm0 0\"></path><path d=\"m121.214844 165.640625c4.953125-1.375 9.695312-3.34375 14.183594-5.878906l9.769531 4.886719 19.472656-19.480469-4.886719-9.769531c2.535156-4.496094 4.503906-9.230469 5.886719-14.183594l10.359375-3.445313v-27.53125l-10.351562-3.453125c-1.375-4.953125-3.34375-9.707031-5.886719-14.183594l4.886719-9.777343-19.472657-19.472657-9.769531 4.886719c-4.484375-2.535156-9.230469-4.503906-14.183594-5.878906l-3.453125-10.359375h-27.539062l-3.445313 10.359375c-4.953125 1.375-9.695312 3.34375-14.183594 5.878906l-9.777343-4.886719-19.472657 19.472657 4.886719 9.777343c-2.535156 4.488282-4.503906 9.230469-5.886719 14.183594l-10.351562 3.445313v27.53125l10.351562 3.453125c1.375 4.953125 3.34375 9.695312 5.886719 14.183594l-4.886719 9.769531 19.472657 19.480469 9.769531-4.886719c4.484375 2.535156 9.230469 4.503906 14.183594 5.878906l3.453125 10.359375h27.539062zm-12.304688-13.679687-2.679687 8.039062h-4.460938l-2.679687-8.039062-4.554688-.90625c-6.128906-1.222657-11.878906-3.605469-17.109375-7.09375l-3.867187-2.578126-7.574219 3.800782-3.160156-3.167969 3.792969-7.582031-2.578126-3.859375c-3.488281-5.222657-5.871093-10.980469-7.09375-17.109375l-.914062-4.554688-8.03125-2.679687v-4.46875l8.03125-2.671875.914062-4.554688c1.222657-6.136718 3.613282-11.886718 7.09375-17.109375l2.578126-3.859375-3.792969-7.589844 3.160156-3.160156 7.574219 3.800782 3.867187-2.578126c5.222657-3.488281 10.980469-5.863281 17.109375-7.09375l4.554688-.90625 2.679687-8.039062h4.460938l2.679687 8.039062 4.554688.90625c6.128906 1.222657 11.878906 3.605469 17.109375 7.09375l3.867187 2.578126 7.574219-3.800782 3.160156 3.160156-3.792969 7.589844 2.578126 3.859375c3.488281 5.214844 5.871093 10.972657 7.09375 17.109375l.914062 4.554688 8.03125 2.679687v4.46875l-8.03125 2.671875-.914062 4.554688c-1.222657 6.128906-3.613282 11.878906-7.09375 17.109375l-2.578126 3.859375 3.792969 7.582031-3.160156 3.167969-7.574219-3.800782-3.867187 2.578126c-5.222657 3.488281-10.980469 5.863281-17.109375 7.09375zm0 0\"></path><path d=\"m104 72c-17.648438 0-32 14.351562-32 32s14.351562 32 32 32 32-14.351562 32-32-14.351562-32-32-32zm0 48c-8.824219 0-16-7.175781-16-16s7.175781-16 16-16 16 7.175781 16 16-7.175781 16-16 16zm0 0\"></path><path d=\"m160 248v-40h48v-208h-208v208h106.664062zm-144-232h176v176h-48v24l-32-24h-96zm0 0\"></path><path d=\"m0 272h16v16h-16zm0 0\"></path><path d=\"m32 272h16v16h-16zm0 0\"></path><path d=\"m64 272h16v16h-16zm0 0\"></path><path d=\"m32 304h16v16h-16zm0 0\"></path><path d=\"m64 304h16v16h-16zm0 0\"></path><path d=\"m0 480h16v16h-16zm0 0\"></path><path d=\"m32 480h16v16h-16zm0 0\"></path><path d=\"m64 480h16v16h-16zm0 0\"></path><path d=\"m32 448h16v16h-16zm0 0\"></path><path d=\"m64 448h16v16h-16zm0 0\"></path></svg>				\n									<h5>\n							fokus på kvalitet og detaljer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m469.12 408.93-67.26-33.63v-22.13c10.71-7.69 18.6-19.07 21.78-32.27h5.28c8.81 0 15.98-7.17 15.98-15.98v-5.29c0-6.35-3.74-11.84-9.12-14.41 5.19-18.64-1.65-39.76-19.44-59.78-12.58-14.16-30.67-22.27-49.62-22.27-18.93 0-37.01 8.12-49.59 22.27-13.38 15.05-20.95 41.01-14.03 59.62-5.56 2.5-9.45 8.09-9.45 14.57v5.29c0 8.81 7.17 15.98 15.98 15.98h5.55c3.16 13.09 10.94 24.39 21.51 32.08v22.32l-67.26 33.63c-16.7 5.87-27.89 21.6-27.89 39.28v41.63c0 3.31 2.69 6 6 6h243.46c3.31 0 6-2.69 6-6v-41.63c0-17.68-11.19-33.41-27.88-39.28zm-62.24-17.7-15.83 27.66-13.29-13.29 19.29-19.29zm-37.61 5.88-20.59-20.58v-16.91c6.41 2.57 13.4 4.01 20.72 4.01 7.22 0 14.11-1.39 20.45-3.9v16.8zm63.63-97.48v5.29c0 2.16-1.82 3.98-3.98 3.98h-3.74c.01-.36.03-.71.03-1.07v-12.18h3.71c2.15-.01 3.98 1.82 3.98 3.98zm-119.29 8.2v1.07h-3.98c-2.16 0-3.98-1.82-3.98-3.98v-5.29c0-2.16 1.82-3.98 3.98-3.98l3.98.22zm1.95-24.19c-7.33-13.69-.89-37.39 10.53-50.24 10.31-11.6 25.12-18.25 40.63-18.25 15.52 0 30.34 6.65 40.65 18.25 8.43 9.48 21.3 27.59 17.4 46.39-5.66-.35-10.67-2.55-14.4-6.36-5.37-5.49-7.72-14-6.63-23.94.29-2.62-1.17-5.13-3.6-6.17s-5.25-.37-6.95 1.65c-19.33 22.92-45.95 36.76-73.9 38.68h-3.73zm10.05 24.19v-12.73c24.57-2.92 47.92-14.05 66.73-31.8 1.43 7.26 4.63 13.6 9.45 18.52 3.27 3.35 7.14 5.89 11.41 7.58v18.42c0 24.15-19.65 43.8-43.8 43.8s-43.79-19.64-43.79-43.79zm15.89 78.48 19.29 19.29-13.29 13.29-15.84-27.66zm3.22 97.53h-39.42v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.76v-35.63c0-12.68 8.1-23.95 20.15-28.05.26-.09.51-.19.75-.31l46.47-23.23 20.07 35.06c.93 1.62 2.56 2.72 4.41 2.97.27.04.53.05.79.05 1.58 0 3.11-.62 4.24-1.76l.14-.14zm12.08 0 7.41-64.69 5.06-5.06 4.84 4.84 7.86 64.92h-25.17zm128.2 0h-39.76v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.18l-6.2-51.17.25.25c1.13 1.13 2.66 1.76 4.24 1.76.26 0 .53-.02.79-.05 1.85-.25 3.48-1.34 4.41-2.97l20.07-35.06 46.47 23.23c.24.12.49.23.75.31 12.05 4.1 20.15 15.38 20.15 28.05v35.65zm-67.04-346.65h-10.84l28.38 39.84 28.38-39.84h-10.84c-3.31 0-6-2.69-6-6v-64.58h-98.7c-3.31 0-6-2.69-6-6s2.69-6 6-6h104.7c3.31 0 6 2.69 6 6v64.58h16.48c2.25 0 4.3 1.25 5.33 3.25s.86 4.4-.45 6.23l-40.02 56.18c-1.13 1.58-2.95 2.52-4.89 2.52s-3.76-.94-4.89-2.52l-40.02-56.18c-1.3-1.83-1.48-4.23-.45-6.23s3.09-3.25 5.33-3.25h16.48v-23.5h-65.38c-3.31 0-6-2.69-6-6s2.69-6 6-6h71.38c3.31 0 6 2.69 6 6v35.5c.02 3.31-2.67 6-5.98 6zm-118.44 50.65v-133.26c0-21.18-17.23-38.41-38.41-38.41h-207.7c-21.18-.01-38.41 17.23-38.41 38.41v133.26c0 21.18 17.23 38.41 38.41 38.41h105.8l64.8 55.11c1.11.94 2.49 1.43 3.89 1.43.85 0 1.71-.18 2.52-.55 2.12-.98 3.48-3.11 3.48-5.45v-50.54h27.21c21.18 0 38.41-17.23 38.41-38.41zm-71.62 26.41c-3.31 0-6 2.69-6 6v43.56l-56.59-48.13c-1.08-.92-2.46-1.43-3.89-1.43h-108.01c-14.56 0-26.41-11.85-26.41-26.41v-133.26c0-14.56 11.85-26.41 26.41-26.41h207.69c14.56 0 26.41 11.85 26.41 26.41v133.26c0 14.56-11.85 26.41-26.41 26.41zm-156.34-87.87h56.97c3.31 0 6-2.69 6-6v-39.2l8.55-8.55c2.34-2.34 2.34-6.14 0-8.49-2.34-2.34-6.14-2.34-8.48 0l-.7.7c-.98-1.97-3.01-3.32-5.36-3.32h-56.98c-3.31 0-6 2.69-6 6v52.85c0 3.32 2.69 6.01 6 6.01zm6-52.86h44.97v2.69l-18.16 18.16-8.84-8.84c-2.34-2.34-6.14-2.34-8.49 0-2.34 2.34-2.34 6.14 0 8.49l13.08 13.08c1.17 1.17 2.71 1.76 4.24 1.76s3.07-.59 4.24-1.76l13.92-13.92v21.2h-44.96zm173.62 3.08c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 31.92c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 36.52c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.68 5.99 6zm0 31.92c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.69 5.99 6zm-119.36 165.01h10.84l-28.38-39.84-28.38 39.84h10.84c3.31 0 6 2.69 6 6v64.58h98.7c3.31 0 6 2.69 6 6s-2.69 6-6 6h-104.69c-3.31 0-6-2.69-6-6v-64.58h-16.48c-2.25 0-4.3-1.25-5.33-3.25s-.86-4.4.45-6.23l40.02-56.18c1.13-1.58 2.95-2.52 4.89-2.52s3.76.94 4.89 2.52l40.02 56.18c1.3 1.83 1.48 4.23.45 6.23s-3.09 3.25-5.33 3.25h-16.48v23.5h65.38c3.31 0 6 2.69 6 6s-2.69 6-6 6h-71.38c-3.31 0-6-2.69-6-6v-35.5c-.03-3.31 2.66-6 5.97-6z\"></path></svg>				\n									<h5>\n							ærlig<br> rådgivning						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 510 510\"><path d=\"m192.036 385.845c-4.787-46.972-19.459-64.336-30.658-82.352-8.672-13.951-15.5-28.245-15.5-54.252 0-60.242 48.865-109.109 109.135-109.109 60.242 0 109.109 48.866 109.109 109.109 0 26.007-6.828 40.301-15.5 54.252-11.199 18.016-25.871 35.38-30.658 82.352 9.985 2.864 17.345 12.101 17.345 22.975v36.44c0 13.109-10.747 23.866-23.893 23.866h-10.334v9.945c0 12.588-10.341 22.929-22.93 22.929h-46.304c-12.589 0-22.93-10.341-22.93-22.929v-9.945h-10.334c-13.146 0-23.893-10.757-23.893-23.866v-36.44c0-10.874 7.36-20.111 17.345-22.975zm111.948-.917c4.199-42.194 15.78-62.332 26.488-79.049 10.147-15.842 19.65-28.207 19.65-56.638 0-52.513-42.597-95.109-95.109-95.109-52.537 0-95.135 42.596-95.135 95.109 0 28.431 9.503 40.796 19.65 56.638 10.708 16.717 22.289 36.855 26.488 79.049zm2.554-78.61c-1.175 13.701-11.985 24.191-24.783 24.191-13.527 0-24.862-12.086-24.862-26.673v-99.328c0-14.12 11.335-26.673 24.862-26.673 11.309 0 21.031 8.139 23.975 19.497 9.12 3.904 15.688 13.438 15.688 24.78 0 1.153-.068 2.289-.201 3.403 5.078 5.326 8.283 12.802 8.283 21.117 0 6.39-1.889 12.262-5.06 17.053 1.996 4.099 3.13 8.773 3.13 13.76 0 14.1-9.065 25.697-21.032 28.873zm-16.452-109.977c-1.964-2.729-4.916-4.506-8.331-4.506-6.192 0-10.862 6.21-10.862 12.673v99.328c0 6.677 4.67 12.673 10.862 12.673 5.516 0 9.822-4.614 10.717-10.425-4.709-1.416-8.923-4.144-12.279-7.814-2.607-2.852-2.409-7.283.443-9.89 2.851-2.607 7.282-2.408 9.889.443 2.416 2.642 5.72 4.356 9.402 4.356 7.733 0 13.643-7.218 13.643-15.734s-5.91-15.734-13.643-15.734c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7 5.352 0 10.388 1.655 14.658 4.533.593-1.743.915-3.634.915-5.612 0-2.11-.366-4.128-1.036-5.972-.769.858-1.588 1.66-2.453 2.397-2.94 2.507-7.361 2.156-9.869-.784-2.507-2.939-2.155-7.361.784-9.868 2.773-2.365 4.492-6.122 4.492-10.293 0-6.072-3.705-11.374-8.898-12.467-.154-.023-.307-.052-.458-.085-.499-.08-1.01-.121-1.532-.121-2.947 0-5.591 1.389-7.515 3.525-2.585 2.87-7.015 3.101-9.886.515-2.87-2.586-3.101-7.015-.515-9.886 3.111-3.453 7.059-5.988 11.472-7.252zm-104.526 67.344c-3.171-4.791-5.06-10.663-5.06-17.053 0-8.307 3.198-15.777 8.284-21.104-.133-1.118-.202-2.258-.202-3.416 0-11.354 6.582-20.897 15.717-24.792 2.948-11.354 12.67-19.485 23.946-19.485 13.56 0 24.888 12.555 24.888 26.673v99.328c0 14.585-11.328 26.673-24.888 26.673-12.765 0-23.578-10.484-24.757-24.184-11.98-3.166-21.058-14.769-21.058-28.88 0-4.987 1.134-9.661 3.13-13.76zm9.982-23.036c-.675 1.847-1.042 3.869-1.042 5.983 0 1.978.322 3.869.915 5.612 4.27-2.878 9.306-4.533 14.658-4.533 3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7-7.733 0-13.643 7.218-13.643 15.734s5.91 15.734 13.643 15.734c3.682 0 6.986-1.714 9.402-4.356 2.607-2.851 7.038-3.05 9.889-.443 2.852 2.607 3.05 7.038.443 9.89-3.35 3.664-7.556 6.389-12.255 7.807.891 5.813 5.192 10.432 10.693 10.432 6.21 0 10.888-5.993 10.888-12.673v-99.328c0-6.466-4.678-12.673-10.888-12.673-3.404 0-6.349 1.777-8.309 4.507 4.421 1.264 8.367 3.8 11.476 7.251 2.586 2.871 2.355 7.3-.516 9.886-2.87 2.586-7.3 2.355-9.886-.515-1.926-2.138-4.574-3.525-7.54-3.525-.493 0-.976.037-1.448.108-.196.045-.395.082-.596.11-5.165 1.118-8.844 6.404-8.844 12.455 0 1.243.153 2.45.442 3.594.101.284.183.572.246.862.748 2.326 2.071 4.346 3.814 5.823 2.947 2.498 3.311 6.919.813 9.866s-6.919 3.312-9.866.814c-.878-.745-1.71-1.554-2.489-2.422zm3.042 158.279c-5.442 0-9.893 4.451-9.893 9.892v36.44c0 5.423 4.454 9.866 9.893 9.866h17.334c3.866 0 7 3.134 7 7v16.945c0 4.902 4.027 8.929 8.93 8.929h46.304c4.903 0 8.93-4.027 8.93-8.929v-16.945c0-3.866 3.134-7 7-7h17.334c5.439 0 9.893-4.443 9.893-9.866v-36.44c0-5.441-4.451-9.892-9.893-9.892zm63.416-314.093 2.907-5.412c1.828-3.403 6.075-4.683 9.479-2.854 3.403 1.828 4.682 6.075 2.854 9.479l-16.073 29.925c-1.22 2.271-3.589 3.688-6.167 3.688s-4.947-1.417-6.167-3.688l-16.073-29.925c-1.828-3.404-.549-7.651 2.854-9.479 3.404-1.829 7.651-.549 9.479 2.854l2.907 5.412v-69.835c0-3.863 3.137-7 7-7s7 3.137 7 7zm-132.198 54.758-49.381-49.381c-2.732-2.731-2.732-7.167 0-9.899s7.168-2.732 9.9 0l49.38 49.38-1.771-5.881c-1.114-3.7.985-7.608 4.684-8.722 3.7-1.114 7.607.985 8.721 4.685l9.796 32.526c.743 2.468.069 5.145-1.753 6.968-1.823 1.823-4.5 2.496-6.969 1.753l-32.526-9.795c-3.699-1.114-5.798-5.022-4.684-8.721s5.022-5.798 8.721-4.684zm-44.859 122.299h-69.835c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7h69.835l-5.412-2.907c-3.403-1.828-4.682-6.076-2.854-9.479 1.828-3.404 6.075-4.683 9.479-2.855l29.926 16.074c2.271 1.22 3.688 3.589 3.688 6.167 0 2.577-1.417 4.947-3.688 6.166l-29.926 16.074c-3.404 1.828-7.651.549-9.479-2.855-1.828-3.403-.549-7.651 2.854-9.479zm54.758 118.198-49.38 49.38c-2.732 2.732-7.168 2.732-9.9 0s-2.732-7.167 0-9.899l49.381-49.381-5.882 1.772c-3.699 1.114-7.607-.985-8.721-4.685-1.114-3.699.985-7.607 4.684-8.721l32.526-9.795c2.469-.743 5.146-.07 6.969 1.753 1.822 1.823 2.496 4.5 1.753 6.968l-9.796 32.527c-1.114 3.699-5.021 5.798-8.721 4.684-3.699-1.114-5.798-5.022-4.684-8.721zm240.497-240.497 5.882-1.771c3.699-1.114 7.607.985 8.721 4.684s-.985 7.607-4.684 8.721l-32.526 9.795c-2.469.743-5.146.07-6.969-1.753-1.822-1.823-2.496-4.5-1.753-6.968l9.796-32.526c1.114-3.7 5.021-5.799 8.721-4.685 3.699 1.114 5.798 5.022 4.684 8.722l-1.771 5.881 49.38-49.38c2.732-2.732 7.168-2.732 9.9 0s2.732 7.168 0 9.899zm44.859 122.299 5.412 2.906c3.403 1.828 4.682 6.076 2.854 9.479-1.828 3.404-6.075 4.683-9.479 2.855l-29.926-16.074c-2.271-1.219-3.688-3.589-3.688-6.166 0-2.578 1.417-4.947 3.688-6.167l29.926-16.074c3.404-1.828 7.651-.549 9.479 2.855 1.828 3.403.549 7.651-2.854 9.479l-5.412 2.907h69.835c3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7zm-54.758 118.198 1.771 5.882c1.114 3.699-.985 7.607-4.684 8.721-3.7 1.114-7.607-.985-8.721-4.684l-9.796-32.527c-.743-2.468-.069-5.145 1.753-6.968 1.823-1.823 4.5-2.496 6.969-1.753l32.526 9.795c3.699 1.114 5.798 5.022 4.684 8.721-1.114 3.7-5.022 5.799-8.721 4.685l-5.882-1.772 49.381 49.381c2.732 2.732 2.732 7.167 0 9.899s-7.168 2.732-9.9 0z\"></path></svg>				\n									<h5>\n							gennemtænkte løsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"outline\"><path d=\"M486.41,144A28,28,0,0,0,472,92H349.123l5.457-21.828a48.513,48.513,0,0,0-12.848-46.153A41.035,41.035,0,0,0,312.609,12H308a8.009,8.009,0,0,0-8,8V47.413l-19.233,64.112A17.376,17.376,0,0,1,268,123.539V112a4,4,0,0,0-4-4H152a4,4,0,0,0-4,4v72a4,4,0,0,0,8,0V116h72V276H156V248a4,4,0,0,0-8,0v32a4,4,0,0,0,4,4H264a4,4,0,0,0,4-4V268.5h11.168A37.07,37.07,0,0,1,305.092,279a45.025,45.025,0,0,0,31.48,12.752L440,292a27.987,27.987,0,0,0,19.369-48.2,27.987,27.987,0,0,0,16-48A28,28,0,0,0,486.41,144ZM260,276H236V116h24Zm212-88H396a4,4,0,0,0,0,8h60a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h40a20,20,0,0,1,.01,40l-103.428-.25a37.07,37.07,0,0,1-25.924-10.5,45.031,45.031,0,0,0-31.49-12.752H268V131.686a25.317,25.317,0,0,0,20.429-17.862l19.4-64.675A4,4,0,0,0,308,48V20h4.609a33.082,33.082,0,0,1,23.481,9.69,40.507,40.507,0,0,1,10.728,38.541l-6.7,26.8A4,4,0,0,0,344,100H472a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h72a20,20,0,0,1,0,40Z\"></path><path d=\"M194.5,183.243l-1.9-.217a4,4,0,0,0-4.169,2.491L184.29,195.9H135.278l-3.539-9.317a4,4,0,0,0-7.478,2.84l2.459,6.477h-8.474L68.452,156.872a4,4,0,1,0-4.935,6.3L77.6,174.209,56.961,194.48l-6.636-5.491a4,4,0,1,0-5.1,6.163L87.219,229.9a44.1,44.1,0,0,0,28.05,10.1H212a8.009,8.009,0,0,0,8-8V203.9a8.009,8.009,0,0,0-8-8h-8v-2.01A10.708,10.708,0,0,0,194.5,183.243ZM212,203.9V232H115.269a36.081,36.081,0,0,1-22.951-8.264l-29.16-24.128,20.8-20.422L114.4,203.045a4,4,0,0,0,2.468.852H187a4,4,0,0,0,3.715-2.517l3.929-9.843a2.712,2.712,0,0,1,1.356,2.35v6.01a4,4,0,0,0,4,4Z\"></path><path d=\"M223.084,484.672,200.87,469.863V346.36A44.1,44.1,0,0,0,195.327,325l-17.183-30.94a4,4,0,0,0-7,3.884l17.184,30.94a36.073,36.073,0,0,1,4.537,17.478V468H164.333a4,4,0,1,0,0,8h31.321l12,8H152.865V352a4,4,0,0,0-.358-1.655l-25.454-56A4,4,0,0,0,123.411,292H114.2a4,4,0,0,0-3.945,4.658l8.862,53.175a36.016,36.016,0,0,1-1.951,18.949L78.642,468H48.333a4,4,0,1,0,0,8H80.377L92,484H32.088L76.63,361.366a4.017,4.017,0,0,0,.183-2.044L61.1,268H136a4,4,0,0,0,0-8H59.233L30.555,173.966A19.723,19.723,0,0,1,49.27,148H76a12,12,0,0,0,24,0h15.2a21.975,21.975,0,0,1,8.395,1.652l10.889,4.458a4,4,0,1,0,3.032-7.4L126.63,142.25A29.938,29.938,0,0,0,115.2,140H100v-4.527A16.014,16.014,0,0,0,112,120V103.473A16.014,16.014,0,0,0,124,88V80a4,4,0,0,0-4-4H90A22.025,22.025,0,0,0,68,98v18a12.02,12.02,0,0,0,8,11.314V140H49.27a27.723,27.723,0,0,0-26.305,36.5l29.493,88.482,16.29,94.655-46.128,127A4,4,0,0,0,26.38,492h78.485a4,4,0,0,0,2.268-7.3L86.3,470.368l38.318-98.69a44.018,44.018,0,0,0,2.385-23.16L118.921,300h1.914l24.03,52.867V488a4,4,0,0,0,4,4h72a4,4,0,0,0,2.219-7.328ZM76,98A14.015,14.015,0,0,1,90,84h26v4a8.009,8.009,0,0,1-8,8H92a4,4,0,0,0-4,4,11.962,11.962,0,0,1-1.53,5.881A12.044,12.044,0,0,0,76,104.686Zm4,14a3.981,3.981,0,0,1,3.407,1.9,4,4,0,0,0,5.956.975c.207-.171.7-.648.7-.648.032-.028.061-.057.09-.087A19.907,19.907,0,0,0,95.6,104H104v16a8.009,8.009,0,0,1-8,8,12.133,12.133,0,0,1-2.681-.3,4,4,0,1,0-1.775,7.8c.151.035.3.06.456.091V148a4,4,0,1,1-8,0V124a4,4,0,0,0-4-4,4,4,0,0,1,0-8Z\"></path></g></svg>				\n									<h5>\n							arbejde udført med ansvar						\n					</h5>\n				<p>Vi lover ikke mere, end vi kan holde – men vi holder det, vi lover.</p>			<h2>KONTAKT OS</h2>		<p>Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.</p>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 13:37:17', '2026-01-26 13:37:17', '', 10, 'https://mrarif.me/cpnordic/?p=535', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(536, 1, '2026-01-26 13:37:17', '2026-01-26 13:37:17', '<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h1>CP NORDIC ApS</h1>					<h4>Construction – Carpentry &amp; Roofing</h4>										<a href=\"#\">\n									Kontakt\n					</a>\n									<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>					\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle ANMELDELSER\n					</a>\n					<h2>HVORFOR VÆLGE CP NORDIC ApS?</h2>		<p>Når du vælger CP NORDIC ApS, får du:</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 450 450\" width=\"512\"><g><g><path d=\"m225 165.2c-25.9 0-48.9-18.8-53.3-45.2-2.4-14.2.9-28.6 9.3-40.3 8.4-11.8 20.9-19.5 35.1-21.9 29.4-4.9 57.3 15 62.2 44.5 4.9 29.4-15 57.3-44.4 62.2-3 .5-6 .7-8.9.7zm-7.6-99.8c-12.2 2-22.9 8.7-30.1 18.8s-10.1 22.4-8 34.6c3.8 22.7 23.5 38.8 45.7 38.8 2.5 0 5.1-.2 7.6-.6 25.2-4.2 42.3-28.1 38.1-53.4s-28.1-42.4-53.3-38.2z\"></path><path d=\"m255.2 115c-2.1 0-3.8-1.7-3.8-3.8 0-14.6-11.8-26.4-26.4-26.4-2.1 0-3.8-1.7-3.8-3.8s1.7-3.8 3.8-3.8c18.8 0 34.1 15.3 34.1 34.1 0 2-1.8 3.7-3.9 3.7z\"></path><path d=\"m236.1 203h-22.2c-2.1 0-3.8-1.7-3.8-3.8v-14.1c-3.1-.6-6.1-1.4-9.1-2.4l-7 12.2c-1.1 1.8-3.4 2.5-5.3 1.4l-19.2-11.1c-.9-.5-1.5-1.4-1.8-2.3-.3-1-.1-2 .4-2.9l7-12.1c-2.4-2.1-4.6-4.3-6.7-6.6l-12.1 7c-1.8 1.1-4.2.4-5.2-1.4l-11.1-19.2c-1.1-1.8-.4-4.2 1.4-5.2l11.9-6.8c-1-3-1.9-6.1-2.6-9.3h-13.7c-2.1 0-3.8-1.7-3.8-3.8v-22.2c0-2.1 1.7-3.8 3.8-3.8h13.4c.6-3.2 1.4-6.4 2.4-9.5l-11.5-6.6c-1.8-1.1-2.5-3.4-1.4-5.3l11.1-19.6c.5-.9 1.4-1.5 2.3-1.8s2-.1 2.9.4l11.3 6.6c2.2-2.5 4.5-4.8 7-7l-6.5-11.3c-.5-.9-.6-1.9-.4-2.9.3-1 .9-1.8 1.8-2.3l19.2-11.1c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l6.4 11.2c3.1-1.1 6.4-1.9 9.7-2.6v-13c0-2.1 1.7-3.8 3.8-3.8h22.2c2.1 0 3.8 1.7 3.8 3.8v12.8c3.3.7 6.5 1.5 9.7 2.6l6.5-11.2c.5-.9 1.4-1.5 2.3-1.8 1-.3 2-.1 2.9.4l19.2 11.1c.9.5 1.5 1.3 1.8 2.3s.1 2-.4 2.9l-6.5 11.3c2.5 2.2 4.8 4.5 7 7.1l11.3-6.6c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l11.1 19.2c1.1 1.8.4 4.2-1.4 5.3l-11.5 6.6c1 3.1 1.8 6.3 2.5 9.5h13.6c2.1 0 3.8 1.7 3.8 3.8v22.2c0 2.1-1.7 3.8-3.8 3.8h-13.6c-.6 3.1-1.5 6.2-2.5 9.3l11.9 6.8c1.8 1.1 2.5 3.4 1.4 5.2l-11.2 19.5c-1.1 1.8-3.4 2.5-5.2 1.4l-12-7c-2.1 2.4-4.4 4.6-6.7 6.6l7 12.1c.5.9.6 1.9.4 2.9s-.9 1.8-1.8 2.3l-19.2 11.1c-1.8 1.1-4.2.4-5.2-1.4l-7-12.2c-3 1-6 1.8-9.1 2.4v14.1c-.2 2.3-2 4-4.1 4zm-18.4-7.7h14.5v-13.5c0-1.9 1.4-3.5 3.3-3.8 4.7-.7 9.4-2 13.8-3.7 1.8-.7 3.8 0 4.7 1.7l6.7 11.6 12.6-7.3-6.7-11.6c-1-1.6-.5-3.7.9-4.9 3.7-3 7.2-6.4 10.2-10.1 1.2-1.5 3.3-1.8 4.9-.9l11.5 6.6 7.3-12.6-11.3-6.5c-1.6-.9-2.4-3-1.6-4.7 1.8-4.5 3.1-9.2 3.9-14 .3-1.9 1.9-3.2 3.8-3.2h13v-14.6h-12.8c-1.9 0-3.5-1.4-3.8-3.3-.7-4.8-2-9.6-3.7-14.2-.7-1.8 0-3.7 1.7-4.7l10.9-6.3-7.3-12.6-10.8 6.3c-1.6.9-3.7.6-4.9-.9-3.1-3.9-6.6-7.4-10.4-10.6-1.5-1.2-1.9-3.3-.9-4.9l6.2-10.7-12.6-7.3-6.1 10.6c-1 1.6-3 2.3-4.7 1.7-4.6-1.8-9.5-3.1-14.4-3.9-1.9-.3-3.3-1.9-3.3-3.8v-12.2h-14.5v12.3c0 1.9-1.4 3.5-3.3 3.8-5 .8-9.8 2.1-14.4 3.9-1.8.7-3.8 0-4.7-1.7l-6.1-10.6-12.6 7.3 6.2 10.7c.9 1.6.6 3.7-.9 4.9-3.9 3.1-7.4 6.7-10.4 10.6-1.2 1.5-3.3 1.9-4.9.9l-10.8-6.3-7.3 12.6 10.9 6.3c1.6.9 2.3 2.9 1.7 4.7-1.7 4.6-3 9.4-3.7 14.2-.3 1.9-1.9 3.3-3.8 3.3h-12.8v14.5h13c1.9 0 3.5 1.4 3.8 3.2.8 4.8 2.1 9.5 3.9 14 .7 1.8 0 3.8-1.6 4.7l-11.3 6.5 7.3 12.6 11.5-6.6c1.6-.9 3.7-.6 4.9.9 3 3.7 6.5 7.1 10.3 10.1 1.5 1.2 1.9 3.3.9 4.9l-6.7 11.6 12.6 7.3 6.7-11.6c.9-1.6 2.9-2.3 4.7-1.7 4.5 1.7 9.1 2.9 13.8 3.7 1.9.3 3.3 1.9 3.3 3.8z\"></path></g><g><g><g><path d=\"m45.3 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m153.9 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path></g><g><path d=\"m189.3 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.2c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c0 2.1-1.7 3.8-3.8 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m73.3 326.4c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m126 326.4c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m99.7 325.6c-.6 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4s4.1 1.1 4.4 3.2c2.4 16.5 12.3 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m50.2 266.6c-.1 0-.2 0-.3 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.7 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-8.9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.5 2.2zm81.8-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13.1-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.4-.7 2.3-.7z\"></path></g></g></g><g><g><path d=\"m296.1 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m404.7 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path></g><g><path d=\"m440 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.1c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c.2 2.1-1.6 3.8-3.7 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m324 326.3c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m376.7 326.3c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m350.4 325.6c-.5 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4 2.1-.3 4 1.1 4.4 3.2 2.4 16.5 12.4 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m301 266.6c-.1 0-.2 0-.4 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.6 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.4 2.2zm81.7-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.5-.7 2.3-.7z\"></path></g></g></g></g></g></svg>				\n									<h5>\n							et ungt og engageret team						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"496pt\" viewBox=\"0 0 496 496\" width=\"496pt\"><path d=\"m440 328h-28.207031c5.078125-6.703125 8.207031-14.960938 8.207031-24 0-8.824219-7.175781-16-16-16h-12v-19.960938c59.574219-14.445312 104-68.085937 104-132.039062 0-74.992188-61.007812-136-136-136s-136 61.007812-136 136c0 63.953125 44.425781 117.59375 104 132.039062v19.960938h-8.449219c-6.167969 0-12.359375 1.464844-17.886719 4.214844l-50.480468 25.25c-3.320313 1.664062-7.03125 2.535156-10.734375 2.535156h-40.449219v-16h-104v16h56v56h16v-56h16v128h-16v-56h-16v56h-56v16h104v-16h40.449219c3.703125 0 7.414062.871094 10.734375 2.527344l34.488281 17.25c5.519531 2.757812 11.710937 4.222656 17.878906 4.222656h24.449219v24h64v-24h48c13.230469 0 24-10.769531 24-24 0-6.167969-2.40625-11.742188-6.238281-16 3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16 0-13.230469-10.769531-24-24-24zm8 24c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm-208-280c0-66.167969 53.832031-120 120-120s120 53.832031 120 120-53.832031 120-120 120-120-53.832031-120-120zm104 134.976562c5.257812.617188 10.574219 1.023438 16 1.023438s10.742188-.40625 16-1.023438v17.023438h-32zm-40.449219 185.023438c-3.703125 0-7.414062-.871094-10.734375-2.527344l-34.488281-17.25c-5.519531-2.757812-11.710937-4.222656-17.878906-4.222656h-40.449219v-96h40.449219c6.167969 0 12.359375-1.464844 17.886719-4.214844l50.480468-25.25c3.320313-1.664062 7.03125-2.535156 10.734375-2.535156h84.449219c0 13.230469-10.769531 24-24 24h-48.28125l-23.863281 35.808594c-6.101563 9.160156-14.527344 16.589844-24.367188 21.503906-8.753906 4.375-18.542969 6.6875-28.320312 6.6875h-15.167969v16h15.167969c12.246093 0 24.519531-2.894531 35.472656-8.375 12.328125-6.160156 22.878906-15.480469 30.527344-26.945312l6.832031-10.253907v93.574219zm40.449219 24v-136h17.472656c-.898437 2.511719-1.472656 5.183594-1.472656 8 0 6.167969 2.40625 11.742188 6.238281 16-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16 0 10.414062 6.710938 19.214844 16 22.527344v9.472656zm96-24h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8s-3.59375 8-8 8zm0 0\"></path><path d=\"m394.878906 73.007812-7.757812 13.984376c17.816406 9.878906 28.878906 28.664062 28.878906 49.007812h16c0-26.160156-14.222656-50.296875-37.121094-62.992188zm0 0\"></path><path d=\"m360 80c4.734375 0 9.449219.59375 14.007812 1.769531l3.976563-15.503906c-5.855469-1.496094-11.90625-2.265625-17.984375-2.265625zm0 0\"></path><path d=\"m360 48c48.519531 0 88 39.480469 88 88 0 20.753906-7.398438 40.910156-20.832031 56.785156l12.207031 10.34375c15.882812-18.761718 24.625-42.601562 24.625-67.128906 0-57.34375-46.65625-104-104-104-24.527344 0-48.367188 8.753906-67.128906 24.632812l10.335937 12.199219c15.871094-13.433593 36.039063-20.832031 56.792969-20.832031zm0 0\"></path><path d=\"m427.128906 215.367188-10.335937-12.199219c-15.871094 13.433593-36.039063 20.832031-56.792969 20.832031-48.519531 0-88-39.480469-88-88 0-20.753906 7.398438-40.910156 20.832031-56.785156l-12.207031-10.34375c-15.882812 18.761718-24.625 42.601562-24.625 67.128906 0 57.34375 46.65625 104 104 104 24.527344 0 48.367188-8.753906 67.128906-24.632812zm0 0\"></path><path d=\"m121.214844 165.640625c4.953125-1.375 9.695312-3.34375 14.183594-5.878906l9.769531 4.886719 19.472656-19.480469-4.886719-9.769531c2.535156-4.496094 4.503906-9.230469 5.886719-14.183594l10.359375-3.445313v-27.53125l-10.351562-3.453125c-1.375-4.953125-3.34375-9.707031-5.886719-14.183594l4.886719-9.777343-19.472657-19.472657-9.769531 4.886719c-4.484375-2.535156-9.230469-4.503906-14.183594-5.878906l-3.453125-10.359375h-27.539062l-3.445313 10.359375c-4.953125 1.375-9.695312 3.34375-14.183594 5.878906l-9.777343-4.886719-19.472657 19.472657 4.886719 9.777343c-2.535156 4.488282-4.503906 9.230469-5.886719 14.183594l-10.351562 3.445313v27.53125l10.351562 3.453125c1.375 4.953125 3.34375 9.695312 5.886719 14.183594l-4.886719 9.769531 19.472657 19.480469 9.769531-4.886719c4.484375 2.535156 9.230469 4.503906 14.183594 5.878906l3.453125 10.359375h27.539062zm-12.304688-13.679687-2.679687 8.039062h-4.460938l-2.679687-8.039062-4.554688-.90625c-6.128906-1.222657-11.878906-3.605469-17.109375-7.09375l-3.867187-2.578126-7.574219 3.800782-3.160156-3.167969 3.792969-7.582031-2.578126-3.859375c-3.488281-5.222657-5.871093-10.980469-7.09375-17.109375l-.914062-4.554688-8.03125-2.679687v-4.46875l8.03125-2.671875.914062-4.554688c1.222657-6.136718 3.613282-11.886718 7.09375-17.109375l2.578126-3.859375-3.792969-7.589844 3.160156-3.160156 7.574219 3.800782 3.867187-2.578126c5.222657-3.488281 10.980469-5.863281 17.109375-7.09375l4.554688-.90625 2.679687-8.039062h4.460938l2.679687 8.039062 4.554688.90625c6.128906 1.222657 11.878906 3.605469 17.109375 7.09375l3.867187 2.578126 7.574219-3.800782 3.160156 3.160156-3.792969 7.589844 2.578126 3.859375c3.488281 5.214844 5.871093 10.972657 7.09375 17.109375l.914062 4.554688 8.03125 2.679687v4.46875l-8.03125 2.671875-.914062 4.554688c-1.222657 6.128906-3.613282 11.878906-7.09375 17.109375l-2.578126 3.859375 3.792969 7.582031-3.160156 3.167969-7.574219-3.800782-3.867187 2.578126c-5.222657 3.488281-10.980469 5.863281-17.109375 7.09375zm0 0\"></path><path d=\"m104 72c-17.648438 0-32 14.351562-32 32s14.351562 32 32 32 32-14.351562 32-32-14.351562-32-32-32zm0 48c-8.824219 0-16-7.175781-16-16s7.175781-16 16-16 16 7.175781 16 16-7.175781 16-16 16zm0 0\"></path><path d=\"m160 248v-40h48v-208h-208v208h106.664062zm-144-232h176v176h-48v24l-32-24h-96zm0 0\"></path><path d=\"m0 272h16v16h-16zm0 0\"></path><path d=\"m32 272h16v16h-16zm0 0\"></path><path d=\"m64 272h16v16h-16zm0 0\"></path><path d=\"m32 304h16v16h-16zm0 0\"></path><path d=\"m64 304h16v16h-16zm0 0\"></path><path d=\"m0 480h16v16h-16zm0 0\"></path><path d=\"m32 480h16v16h-16zm0 0\"></path><path d=\"m64 480h16v16h-16zm0 0\"></path><path d=\"m32 448h16v16h-16zm0 0\"></path><path d=\"m64 448h16v16h-16zm0 0\"></path></svg>				\n									<h5>\n							fokus på kvalitet og detaljer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m469.12 408.93-67.26-33.63v-22.13c10.71-7.69 18.6-19.07 21.78-32.27h5.28c8.81 0 15.98-7.17 15.98-15.98v-5.29c0-6.35-3.74-11.84-9.12-14.41 5.19-18.64-1.65-39.76-19.44-59.78-12.58-14.16-30.67-22.27-49.62-22.27-18.93 0-37.01 8.12-49.59 22.27-13.38 15.05-20.95 41.01-14.03 59.62-5.56 2.5-9.45 8.09-9.45 14.57v5.29c0 8.81 7.17 15.98 15.98 15.98h5.55c3.16 13.09 10.94 24.39 21.51 32.08v22.32l-67.26 33.63c-16.7 5.87-27.89 21.6-27.89 39.28v41.63c0 3.31 2.69 6 6 6h243.46c3.31 0 6-2.69 6-6v-41.63c0-17.68-11.19-33.41-27.88-39.28zm-62.24-17.7-15.83 27.66-13.29-13.29 19.29-19.29zm-37.61 5.88-20.59-20.58v-16.91c6.41 2.57 13.4 4.01 20.72 4.01 7.22 0 14.11-1.39 20.45-3.9v16.8zm63.63-97.48v5.29c0 2.16-1.82 3.98-3.98 3.98h-3.74c.01-.36.03-.71.03-1.07v-12.18h3.71c2.15-.01 3.98 1.82 3.98 3.98zm-119.29 8.2v1.07h-3.98c-2.16 0-3.98-1.82-3.98-3.98v-5.29c0-2.16 1.82-3.98 3.98-3.98l3.98.22zm1.95-24.19c-7.33-13.69-.89-37.39 10.53-50.24 10.31-11.6 25.12-18.25 40.63-18.25 15.52 0 30.34 6.65 40.65 18.25 8.43 9.48 21.3 27.59 17.4 46.39-5.66-.35-10.67-2.55-14.4-6.36-5.37-5.49-7.72-14-6.63-23.94.29-2.62-1.17-5.13-3.6-6.17s-5.25-.37-6.95 1.65c-19.33 22.92-45.95 36.76-73.9 38.68h-3.73zm10.05 24.19v-12.73c24.57-2.92 47.92-14.05 66.73-31.8 1.43 7.26 4.63 13.6 9.45 18.52 3.27 3.35 7.14 5.89 11.41 7.58v18.42c0 24.15-19.65 43.8-43.8 43.8s-43.79-19.64-43.79-43.79zm15.89 78.48 19.29 19.29-13.29 13.29-15.84-27.66zm3.22 97.53h-39.42v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.76v-35.63c0-12.68 8.1-23.95 20.15-28.05.26-.09.51-.19.75-.31l46.47-23.23 20.07 35.06c.93 1.62 2.56 2.72 4.41 2.97.27.04.53.05.79.05 1.58 0 3.11-.62 4.24-1.76l.14-.14zm12.08 0 7.41-64.69 5.06-5.06 4.84 4.84 7.86 64.92h-25.17zm128.2 0h-39.76v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.18l-6.2-51.17.25.25c1.13 1.13 2.66 1.76 4.24 1.76.26 0 .53-.02.79-.05 1.85-.25 3.48-1.34 4.41-2.97l20.07-35.06 46.47 23.23c.24.12.49.23.75.31 12.05 4.1 20.15 15.38 20.15 28.05v35.65zm-67.04-346.65h-10.84l28.38 39.84 28.38-39.84h-10.84c-3.31 0-6-2.69-6-6v-64.58h-98.7c-3.31 0-6-2.69-6-6s2.69-6 6-6h104.7c3.31 0 6 2.69 6 6v64.58h16.48c2.25 0 4.3 1.25 5.33 3.25s.86 4.4-.45 6.23l-40.02 56.18c-1.13 1.58-2.95 2.52-4.89 2.52s-3.76-.94-4.89-2.52l-40.02-56.18c-1.3-1.83-1.48-4.23-.45-6.23s3.09-3.25 5.33-3.25h16.48v-23.5h-65.38c-3.31 0-6-2.69-6-6s2.69-6 6-6h71.38c3.31 0 6 2.69 6 6v35.5c.02 3.31-2.67 6-5.98 6zm-118.44 50.65v-133.26c0-21.18-17.23-38.41-38.41-38.41h-207.7c-21.18-.01-38.41 17.23-38.41 38.41v133.26c0 21.18 17.23 38.41 38.41 38.41h105.8l64.8 55.11c1.11.94 2.49 1.43 3.89 1.43.85 0 1.71-.18 2.52-.55 2.12-.98 3.48-3.11 3.48-5.45v-50.54h27.21c21.18 0 38.41-17.23 38.41-38.41zm-71.62 26.41c-3.31 0-6 2.69-6 6v43.56l-56.59-48.13c-1.08-.92-2.46-1.43-3.89-1.43h-108.01c-14.56 0-26.41-11.85-26.41-26.41v-133.26c0-14.56 11.85-26.41 26.41-26.41h207.69c14.56 0 26.41 11.85 26.41 26.41v133.26c0 14.56-11.85 26.41-26.41 26.41zm-156.34-87.87h56.97c3.31 0 6-2.69 6-6v-39.2l8.55-8.55c2.34-2.34 2.34-6.14 0-8.49-2.34-2.34-6.14-2.34-8.48 0l-.7.7c-.98-1.97-3.01-3.32-5.36-3.32h-56.98c-3.31 0-6 2.69-6 6v52.85c0 3.32 2.69 6.01 6 6.01zm6-52.86h44.97v2.69l-18.16 18.16-8.84-8.84c-2.34-2.34-6.14-2.34-8.49 0-2.34 2.34-2.34 6.14 0 8.49l13.08 13.08c1.17 1.17 2.71 1.76 4.24 1.76s3.07-.59 4.24-1.76l13.92-13.92v21.2h-44.96zm173.62 3.08c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 31.92c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 36.52c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.68 5.99 6zm0 31.92c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.69 5.99 6zm-119.36 165.01h10.84l-28.38-39.84-28.38 39.84h10.84c3.31 0 6 2.69 6 6v64.58h98.7c3.31 0 6 2.69 6 6s-2.69 6-6 6h-104.69c-3.31 0-6-2.69-6-6v-64.58h-16.48c-2.25 0-4.3-1.25-5.33-3.25s-.86-4.4.45-6.23l40.02-56.18c1.13-1.58 2.95-2.52 4.89-2.52s3.76.94 4.89 2.52l40.02 56.18c1.3 1.83 1.48 4.23.45 6.23s-3.09 3.25-5.33 3.25h-16.48v23.5h65.38c3.31 0 6 2.69 6 6s-2.69 6-6 6h-71.38c-3.31 0-6-2.69-6-6v-35.5c-.03-3.31 2.66-6 5.97-6z\"></path></svg>				\n									<h5>\n							ærlig<br> rådgivning						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 510 510\"><path d=\"m192.036 385.845c-4.787-46.972-19.459-64.336-30.658-82.352-8.672-13.951-15.5-28.245-15.5-54.252 0-60.242 48.865-109.109 109.135-109.109 60.242 0 109.109 48.866 109.109 109.109 0 26.007-6.828 40.301-15.5 54.252-11.199 18.016-25.871 35.38-30.658 82.352 9.985 2.864 17.345 12.101 17.345 22.975v36.44c0 13.109-10.747 23.866-23.893 23.866h-10.334v9.945c0 12.588-10.341 22.929-22.93 22.929h-46.304c-12.589 0-22.93-10.341-22.93-22.929v-9.945h-10.334c-13.146 0-23.893-10.757-23.893-23.866v-36.44c0-10.874 7.36-20.111 17.345-22.975zm111.948-.917c4.199-42.194 15.78-62.332 26.488-79.049 10.147-15.842 19.65-28.207 19.65-56.638 0-52.513-42.597-95.109-95.109-95.109-52.537 0-95.135 42.596-95.135 95.109 0 28.431 9.503 40.796 19.65 56.638 10.708 16.717 22.289 36.855 26.488 79.049zm2.554-78.61c-1.175 13.701-11.985 24.191-24.783 24.191-13.527 0-24.862-12.086-24.862-26.673v-99.328c0-14.12 11.335-26.673 24.862-26.673 11.309 0 21.031 8.139 23.975 19.497 9.12 3.904 15.688 13.438 15.688 24.78 0 1.153-.068 2.289-.201 3.403 5.078 5.326 8.283 12.802 8.283 21.117 0 6.39-1.889 12.262-5.06 17.053 1.996 4.099 3.13 8.773 3.13 13.76 0 14.1-9.065 25.697-21.032 28.873zm-16.452-109.977c-1.964-2.729-4.916-4.506-8.331-4.506-6.192 0-10.862 6.21-10.862 12.673v99.328c0 6.677 4.67 12.673 10.862 12.673 5.516 0 9.822-4.614 10.717-10.425-4.709-1.416-8.923-4.144-12.279-7.814-2.607-2.852-2.409-7.283.443-9.89 2.851-2.607 7.282-2.408 9.889.443 2.416 2.642 5.72 4.356 9.402 4.356 7.733 0 13.643-7.218 13.643-15.734s-5.91-15.734-13.643-15.734c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7 5.352 0 10.388 1.655 14.658 4.533.593-1.743.915-3.634.915-5.612 0-2.11-.366-4.128-1.036-5.972-.769.858-1.588 1.66-2.453 2.397-2.94 2.507-7.361 2.156-9.869-.784-2.507-2.939-2.155-7.361.784-9.868 2.773-2.365 4.492-6.122 4.492-10.293 0-6.072-3.705-11.374-8.898-12.467-.154-.023-.307-.052-.458-.085-.499-.08-1.01-.121-1.532-.121-2.947 0-5.591 1.389-7.515 3.525-2.585 2.87-7.015 3.101-9.886.515-2.87-2.586-3.101-7.015-.515-9.886 3.111-3.453 7.059-5.988 11.472-7.252zm-104.526 67.344c-3.171-4.791-5.06-10.663-5.06-17.053 0-8.307 3.198-15.777 8.284-21.104-.133-1.118-.202-2.258-.202-3.416 0-11.354 6.582-20.897 15.717-24.792 2.948-11.354 12.67-19.485 23.946-19.485 13.56 0 24.888 12.555 24.888 26.673v99.328c0 14.585-11.328 26.673-24.888 26.673-12.765 0-23.578-10.484-24.757-24.184-11.98-3.166-21.058-14.769-21.058-28.88 0-4.987 1.134-9.661 3.13-13.76zm9.982-23.036c-.675 1.847-1.042 3.869-1.042 5.983 0 1.978.322 3.869.915 5.612 4.27-2.878 9.306-4.533 14.658-4.533 3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7-7.733 0-13.643 7.218-13.643 15.734s5.91 15.734 13.643 15.734c3.682 0 6.986-1.714 9.402-4.356 2.607-2.851 7.038-3.05 9.889-.443 2.852 2.607 3.05 7.038.443 9.89-3.35 3.664-7.556 6.389-12.255 7.807.891 5.813 5.192 10.432 10.693 10.432 6.21 0 10.888-5.993 10.888-12.673v-99.328c0-6.466-4.678-12.673-10.888-12.673-3.404 0-6.349 1.777-8.309 4.507 4.421 1.264 8.367 3.8 11.476 7.251 2.586 2.871 2.355 7.3-.516 9.886-2.87 2.586-7.3 2.355-9.886-.515-1.926-2.138-4.574-3.525-7.54-3.525-.493 0-.976.037-1.448.108-.196.045-.395.082-.596.11-5.165 1.118-8.844 6.404-8.844 12.455 0 1.243.153 2.45.442 3.594.101.284.183.572.246.862.748 2.326 2.071 4.346 3.814 5.823 2.947 2.498 3.311 6.919.813 9.866s-6.919 3.312-9.866.814c-.878-.745-1.71-1.554-2.489-2.422zm3.042 158.279c-5.442 0-9.893 4.451-9.893 9.892v36.44c0 5.423 4.454 9.866 9.893 9.866h17.334c3.866 0 7 3.134 7 7v16.945c0 4.902 4.027 8.929 8.93 8.929h46.304c4.903 0 8.93-4.027 8.93-8.929v-16.945c0-3.866 3.134-7 7-7h17.334c5.439 0 9.893-4.443 9.893-9.866v-36.44c0-5.441-4.451-9.892-9.893-9.892zm63.416-314.093 2.907-5.412c1.828-3.403 6.075-4.683 9.479-2.854 3.403 1.828 4.682 6.075 2.854 9.479l-16.073 29.925c-1.22 2.271-3.589 3.688-6.167 3.688s-4.947-1.417-6.167-3.688l-16.073-29.925c-1.828-3.404-.549-7.651 2.854-9.479 3.404-1.829 7.651-.549 9.479 2.854l2.907 5.412v-69.835c0-3.863 3.137-7 7-7s7 3.137 7 7zm-132.198 54.758-49.381-49.381c-2.732-2.731-2.732-7.167 0-9.899s7.168-2.732 9.9 0l49.38 49.38-1.771-5.881c-1.114-3.7.985-7.608 4.684-8.722 3.7-1.114 7.607.985 8.721 4.685l9.796 32.526c.743 2.468.069 5.145-1.753 6.968-1.823 1.823-4.5 2.496-6.969 1.753l-32.526-9.795c-3.699-1.114-5.798-5.022-4.684-8.721s5.022-5.798 8.721-4.684zm-44.859 122.299h-69.835c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7h69.835l-5.412-2.907c-3.403-1.828-4.682-6.076-2.854-9.479 1.828-3.404 6.075-4.683 9.479-2.855l29.926 16.074c2.271 1.22 3.688 3.589 3.688 6.167 0 2.577-1.417 4.947-3.688 6.166l-29.926 16.074c-3.404 1.828-7.651.549-9.479-2.855-1.828-3.403-.549-7.651 2.854-9.479zm54.758 118.198-49.38 49.38c-2.732 2.732-7.168 2.732-9.9 0s-2.732-7.167 0-9.899l49.381-49.381-5.882 1.772c-3.699 1.114-7.607-.985-8.721-4.685-1.114-3.699.985-7.607 4.684-8.721l32.526-9.795c2.469-.743 5.146-.07 6.969 1.753 1.822 1.823 2.496 4.5 1.753 6.968l-9.796 32.527c-1.114 3.699-5.021 5.798-8.721 4.684-3.699-1.114-5.798-5.022-4.684-8.721zm240.497-240.497 5.882-1.771c3.699-1.114 7.607.985 8.721 4.684s-.985 7.607-4.684 8.721l-32.526 9.795c-2.469.743-5.146.07-6.969-1.753-1.822-1.823-2.496-4.5-1.753-6.968l9.796-32.526c1.114-3.7 5.021-5.799 8.721-4.685 3.699 1.114 5.798 5.022 4.684 8.722l-1.771 5.881 49.38-49.38c2.732-2.732 7.168-2.732 9.9 0s2.732 7.168 0 9.899zm44.859 122.299 5.412 2.906c3.403 1.828 4.682 6.076 2.854 9.479-1.828 3.404-6.075 4.683-9.479 2.855l-29.926-16.074c-2.271-1.219-3.688-3.589-3.688-6.166 0-2.578 1.417-4.947 3.688-6.167l29.926-16.074c3.404-1.828 7.651-.549 9.479 2.855 1.828 3.403.549 7.651-2.854 9.479l-5.412 2.907h69.835c3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7zm-54.758 118.198 1.771 5.882c1.114 3.699-.985 7.607-4.684 8.721-3.7 1.114-7.607-.985-8.721-4.684l-9.796-32.527c-.743-2.468-.069-5.145 1.753-6.968 1.823-1.823 4.5-2.496 6.969-1.753l32.526 9.795c3.699 1.114 5.798 5.022 4.684 8.721-1.114 3.7-5.022 5.799-8.721 4.685l-5.882-1.772 49.381 49.381c2.732 2.732 2.732 7.167 0 9.899s-7.168 2.732-9.9 0z\"></path></svg>				\n									<h5>\n							gennemtænkte løsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"outline\"><path d=\"M486.41,144A28,28,0,0,0,472,92H349.123l5.457-21.828a48.513,48.513,0,0,0-12.848-46.153A41.035,41.035,0,0,0,312.609,12H308a8.009,8.009,0,0,0-8,8V47.413l-19.233,64.112A17.376,17.376,0,0,1,268,123.539V112a4,4,0,0,0-4-4H152a4,4,0,0,0-4,4v72a4,4,0,0,0,8,0V116h72V276H156V248a4,4,0,0,0-8,0v32a4,4,0,0,0,4,4H264a4,4,0,0,0,4-4V268.5h11.168A37.07,37.07,0,0,1,305.092,279a45.025,45.025,0,0,0,31.48,12.752L440,292a27.987,27.987,0,0,0,19.369-48.2,27.987,27.987,0,0,0,16-48A28,28,0,0,0,486.41,144ZM260,276H236V116h24Zm212-88H396a4,4,0,0,0,0,8h60a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h40a20,20,0,0,1,.01,40l-103.428-.25a37.07,37.07,0,0,1-25.924-10.5,45.031,45.031,0,0,0-31.49-12.752H268V131.686a25.317,25.317,0,0,0,20.429-17.862l19.4-64.675A4,4,0,0,0,308,48V20h4.609a33.082,33.082,0,0,1,23.481,9.69,40.507,40.507,0,0,1,10.728,38.541l-6.7,26.8A4,4,0,0,0,344,100H472a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h72a20,20,0,0,1,0,40Z\"></path><path d=\"M194.5,183.243l-1.9-.217a4,4,0,0,0-4.169,2.491L184.29,195.9H135.278l-3.539-9.317a4,4,0,0,0-7.478,2.84l2.459,6.477h-8.474L68.452,156.872a4,4,0,1,0-4.935,6.3L77.6,174.209,56.961,194.48l-6.636-5.491a4,4,0,1,0-5.1,6.163L87.219,229.9a44.1,44.1,0,0,0,28.05,10.1H212a8.009,8.009,0,0,0,8-8V203.9a8.009,8.009,0,0,0-8-8h-8v-2.01A10.708,10.708,0,0,0,194.5,183.243ZM212,203.9V232H115.269a36.081,36.081,0,0,1-22.951-8.264l-29.16-24.128,20.8-20.422L114.4,203.045a4,4,0,0,0,2.468.852H187a4,4,0,0,0,3.715-2.517l3.929-9.843a2.712,2.712,0,0,1,1.356,2.35v6.01a4,4,0,0,0,4,4Z\"></path><path d=\"M223.084,484.672,200.87,469.863V346.36A44.1,44.1,0,0,0,195.327,325l-17.183-30.94a4,4,0,0,0-7,3.884l17.184,30.94a36.073,36.073,0,0,1,4.537,17.478V468H164.333a4,4,0,1,0,0,8h31.321l12,8H152.865V352a4,4,0,0,0-.358-1.655l-25.454-56A4,4,0,0,0,123.411,292H114.2a4,4,0,0,0-3.945,4.658l8.862,53.175a36.016,36.016,0,0,1-1.951,18.949L78.642,468H48.333a4,4,0,1,0,0,8H80.377L92,484H32.088L76.63,361.366a4.017,4.017,0,0,0,.183-2.044L61.1,268H136a4,4,0,0,0,0-8H59.233L30.555,173.966A19.723,19.723,0,0,1,49.27,148H76a12,12,0,0,0,24,0h15.2a21.975,21.975,0,0,1,8.395,1.652l10.889,4.458a4,4,0,1,0,3.032-7.4L126.63,142.25A29.938,29.938,0,0,0,115.2,140H100v-4.527A16.014,16.014,0,0,0,112,120V103.473A16.014,16.014,0,0,0,124,88V80a4,4,0,0,0-4-4H90A22.025,22.025,0,0,0,68,98v18a12.02,12.02,0,0,0,8,11.314V140H49.27a27.723,27.723,0,0,0-26.305,36.5l29.493,88.482,16.29,94.655-46.128,127A4,4,0,0,0,26.38,492h78.485a4,4,0,0,0,2.268-7.3L86.3,470.368l38.318-98.69a44.018,44.018,0,0,0,2.385-23.16L118.921,300h1.914l24.03,52.867V488a4,4,0,0,0,4,4h72a4,4,0,0,0,2.219-7.328ZM76,98A14.015,14.015,0,0,1,90,84h26v4a8.009,8.009,0,0,1-8,8H92a4,4,0,0,0-4,4,11.962,11.962,0,0,1-1.53,5.881A12.044,12.044,0,0,0,76,104.686Zm4,14a3.981,3.981,0,0,1,3.407,1.9,4,4,0,0,0,5.956.975c.207-.171.7-.648.7-.648.032-.028.061-.057.09-.087A19.907,19.907,0,0,0,95.6,104H104v16a8.009,8.009,0,0,1-8,8,12.133,12.133,0,0,1-2.681-.3,4,4,0,1,0-1.775,7.8c.151.035.3.06.456.091V148a4,4,0,1,1-8,0V124a4,4,0,0,0-4-4,4,4,0,0,1,0-8Z\"></path></g></svg>				\n									<h5>\n							arbejde udført med ansvar						\n					</h5>\n				<p>Vi lover ikke mere, end vi kan holde – men vi holder det, vi lover.</p>			<h2>KONTAKT OS</h2>		<p>Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.</p>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 13:37:17', '2026-01-26 13:37:17', '', 10, 'https://mrarif.me/cpnordic/?p=536', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(539, 1, '2026-01-26 13:39:53', '2026-01-26 13:39:53', '<h1>CP NORDIC ApS</h1>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>					\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle ANMELDELSER\n					</a>\n					<h2>HVORFOR VÆLGE CP NORDIC ApS?</h2>		<p>Når du vælger CP NORDIC ApS, får du:</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 450 450\" width=\"512\"><g><g><path d=\"m225 165.2c-25.9 0-48.9-18.8-53.3-45.2-2.4-14.2.9-28.6 9.3-40.3 8.4-11.8 20.9-19.5 35.1-21.9 29.4-4.9 57.3 15 62.2 44.5 4.9 29.4-15 57.3-44.4 62.2-3 .5-6 .7-8.9.7zm-7.6-99.8c-12.2 2-22.9 8.7-30.1 18.8s-10.1 22.4-8 34.6c3.8 22.7 23.5 38.8 45.7 38.8 2.5 0 5.1-.2 7.6-.6 25.2-4.2 42.3-28.1 38.1-53.4s-28.1-42.4-53.3-38.2z\"></path><path d=\"m255.2 115c-2.1 0-3.8-1.7-3.8-3.8 0-14.6-11.8-26.4-26.4-26.4-2.1 0-3.8-1.7-3.8-3.8s1.7-3.8 3.8-3.8c18.8 0 34.1 15.3 34.1 34.1 0 2-1.8 3.7-3.9 3.7z\"></path><path d=\"m236.1 203h-22.2c-2.1 0-3.8-1.7-3.8-3.8v-14.1c-3.1-.6-6.1-1.4-9.1-2.4l-7 12.2c-1.1 1.8-3.4 2.5-5.3 1.4l-19.2-11.1c-.9-.5-1.5-1.4-1.8-2.3-.3-1-.1-2 .4-2.9l7-12.1c-2.4-2.1-4.6-4.3-6.7-6.6l-12.1 7c-1.8 1.1-4.2.4-5.2-1.4l-11.1-19.2c-1.1-1.8-.4-4.2 1.4-5.2l11.9-6.8c-1-3-1.9-6.1-2.6-9.3h-13.7c-2.1 0-3.8-1.7-3.8-3.8v-22.2c0-2.1 1.7-3.8 3.8-3.8h13.4c.6-3.2 1.4-6.4 2.4-9.5l-11.5-6.6c-1.8-1.1-2.5-3.4-1.4-5.3l11.1-19.6c.5-.9 1.4-1.5 2.3-1.8s2-.1 2.9.4l11.3 6.6c2.2-2.5 4.5-4.8 7-7l-6.5-11.3c-.5-.9-.6-1.9-.4-2.9.3-1 .9-1.8 1.8-2.3l19.2-11.1c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l6.4 11.2c3.1-1.1 6.4-1.9 9.7-2.6v-13c0-2.1 1.7-3.8 3.8-3.8h22.2c2.1 0 3.8 1.7 3.8 3.8v12.8c3.3.7 6.5 1.5 9.7 2.6l6.5-11.2c.5-.9 1.4-1.5 2.3-1.8 1-.3 2-.1 2.9.4l19.2 11.1c.9.5 1.5 1.3 1.8 2.3s.1 2-.4 2.9l-6.5 11.3c2.5 2.2 4.8 4.5 7 7.1l11.3-6.6c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l11.1 19.2c1.1 1.8.4 4.2-1.4 5.3l-11.5 6.6c1 3.1 1.8 6.3 2.5 9.5h13.6c2.1 0 3.8 1.7 3.8 3.8v22.2c0 2.1-1.7 3.8-3.8 3.8h-13.6c-.6 3.1-1.5 6.2-2.5 9.3l11.9 6.8c1.8 1.1 2.5 3.4 1.4 5.2l-11.2 19.5c-1.1 1.8-3.4 2.5-5.2 1.4l-12-7c-2.1 2.4-4.4 4.6-6.7 6.6l7 12.1c.5.9.6 1.9.4 2.9s-.9 1.8-1.8 2.3l-19.2 11.1c-1.8 1.1-4.2.4-5.2-1.4l-7-12.2c-3 1-6 1.8-9.1 2.4v14.1c-.2 2.3-2 4-4.1 4zm-18.4-7.7h14.5v-13.5c0-1.9 1.4-3.5 3.3-3.8 4.7-.7 9.4-2 13.8-3.7 1.8-.7 3.8 0 4.7 1.7l6.7 11.6 12.6-7.3-6.7-11.6c-1-1.6-.5-3.7.9-4.9 3.7-3 7.2-6.4 10.2-10.1 1.2-1.5 3.3-1.8 4.9-.9l11.5 6.6 7.3-12.6-11.3-6.5c-1.6-.9-2.4-3-1.6-4.7 1.8-4.5 3.1-9.2 3.9-14 .3-1.9 1.9-3.2 3.8-3.2h13v-14.6h-12.8c-1.9 0-3.5-1.4-3.8-3.3-.7-4.8-2-9.6-3.7-14.2-.7-1.8 0-3.7 1.7-4.7l10.9-6.3-7.3-12.6-10.8 6.3c-1.6.9-3.7.6-4.9-.9-3.1-3.9-6.6-7.4-10.4-10.6-1.5-1.2-1.9-3.3-.9-4.9l6.2-10.7-12.6-7.3-6.1 10.6c-1 1.6-3 2.3-4.7 1.7-4.6-1.8-9.5-3.1-14.4-3.9-1.9-.3-3.3-1.9-3.3-3.8v-12.2h-14.5v12.3c0 1.9-1.4 3.5-3.3 3.8-5 .8-9.8 2.1-14.4 3.9-1.8.7-3.8 0-4.7-1.7l-6.1-10.6-12.6 7.3 6.2 10.7c.9 1.6.6 3.7-.9 4.9-3.9 3.1-7.4 6.7-10.4 10.6-1.2 1.5-3.3 1.9-4.9.9l-10.8-6.3-7.3 12.6 10.9 6.3c1.6.9 2.3 2.9 1.7 4.7-1.7 4.6-3 9.4-3.7 14.2-.3 1.9-1.9 3.3-3.8 3.3h-12.8v14.5h13c1.9 0 3.5 1.4 3.8 3.2.8 4.8 2.1 9.5 3.9 14 .7 1.8 0 3.8-1.6 4.7l-11.3 6.5 7.3 12.6 11.5-6.6c1.6-.9 3.7-.6 4.9.9 3 3.7 6.5 7.1 10.3 10.1 1.5 1.2 1.9 3.3.9 4.9l-6.7 11.6 12.6 7.3 6.7-11.6c.9-1.6 2.9-2.3 4.7-1.7 4.5 1.7 9.1 2.9 13.8 3.7 1.9.3 3.3 1.9 3.3 3.8z\"></path></g><g><g><g><path d=\"m45.3 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m153.9 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path></g><g><path d=\"m189.3 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.2c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c0 2.1-1.7 3.8-3.8 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m73.3 326.4c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m126 326.4c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m99.7 325.6c-.6 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4s4.1 1.1 4.4 3.2c2.4 16.5 12.3 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m50.2 266.6c-.1 0-.2 0-.3 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.7 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-8.9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.5 2.2zm81.8-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13.1-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.4-.7 2.3-.7z\"></path></g></g></g><g><g><path d=\"m296.1 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m404.7 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path></g><g><path d=\"m440 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.1c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c.2 2.1-1.6 3.8-3.7 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m324 326.3c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m376.7 326.3c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m350.4 325.6c-.5 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4 2.1-.3 4 1.1 4.4 3.2 2.4 16.5 12.4 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m301 266.6c-.1 0-.2 0-.4 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.6 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.4 2.2zm81.7-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.5-.7 2.3-.7z\"></path></g></g></g></g></g></svg>				\n									<h5>\n							et ungt og engageret team						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"496pt\" viewBox=\"0 0 496 496\" width=\"496pt\"><path d=\"m440 328h-28.207031c5.078125-6.703125 8.207031-14.960938 8.207031-24 0-8.824219-7.175781-16-16-16h-12v-19.960938c59.574219-14.445312 104-68.085937 104-132.039062 0-74.992188-61.007812-136-136-136s-136 61.007812-136 136c0 63.953125 44.425781 117.59375 104 132.039062v19.960938h-8.449219c-6.167969 0-12.359375 1.464844-17.886719 4.214844l-50.480468 25.25c-3.320313 1.664062-7.03125 2.535156-10.734375 2.535156h-40.449219v-16h-104v16h56v56h16v-56h16v128h-16v-56h-16v56h-56v16h104v-16h40.449219c3.703125 0 7.414062.871094 10.734375 2.527344l34.488281 17.25c5.519531 2.757812 11.710937 4.222656 17.878906 4.222656h24.449219v24h64v-24h48c13.230469 0 24-10.769531 24-24 0-6.167969-2.40625-11.742188-6.238281-16 3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16 0-13.230469-10.769531-24-24-24zm8 24c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm-208-280c0-66.167969 53.832031-120 120-120s120 53.832031 120 120-53.832031 120-120 120-120-53.832031-120-120zm104 134.976562c5.257812.617188 10.574219 1.023438 16 1.023438s10.742188-.40625 16-1.023438v17.023438h-32zm-40.449219 185.023438c-3.703125 0-7.414062-.871094-10.734375-2.527344l-34.488281-17.25c-5.519531-2.757812-11.710937-4.222656-17.878906-4.222656h-40.449219v-96h40.449219c6.167969 0 12.359375-1.464844 17.886719-4.214844l50.480468-25.25c3.320313-1.664062 7.03125-2.535156 10.734375-2.535156h84.449219c0 13.230469-10.769531 24-24 24h-48.28125l-23.863281 35.808594c-6.101563 9.160156-14.527344 16.589844-24.367188 21.503906-8.753906 4.375-18.542969 6.6875-28.320312 6.6875h-15.167969v16h15.167969c12.246093 0 24.519531-2.894531 35.472656-8.375 12.328125-6.160156 22.878906-15.480469 30.527344-26.945312l6.832031-10.253907v93.574219zm40.449219 24v-136h17.472656c-.898437 2.511719-1.472656 5.183594-1.472656 8 0 6.167969 2.40625 11.742188 6.238281 16-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16 0 10.414062 6.710938 19.214844 16 22.527344v9.472656zm96-24h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8s-3.59375 8-8 8zm0 0\"></path><path d=\"m394.878906 73.007812-7.757812 13.984376c17.816406 9.878906 28.878906 28.664062 28.878906 49.007812h16c0-26.160156-14.222656-50.296875-37.121094-62.992188zm0 0\"></path><path d=\"m360 80c4.734375 0 9.449219.59375 14.007812 1.769531l3.976563-15.503906c-5.855469-1.496094-11.90625-2.265625-17.984375-2.265625zm0 0\"></path><path d=\"m360 48c48.519531 0 88 39.480469 88 88 0 20.753906-7.398438 40.910156-20.832031 56.785156l12.207031 10.34375c15.882812-18.761718 24.625-42.601562 24.625-67.128906 0-57.34375-46.65625-104-104-104-24.527344 0-48.367188 8.753906-67.128906 24.632812l10.335937 12.199219c15.871094-13.433593 36.039063-20.832031 56.792969-20.832031zm0 0\"></path><path d=\"m427.128906 215.367188-10.335937-12.199219c-15.871094 13.433593-36.039063 20.832031-56.792969 20.832031-48.519531 0-88-39.480469-88-88 0-20.753906 7.398438-40.910156 20.832031-56.785156l-12.207031-10.34375c-15.882812 18.761718-24.625 42.601562-24.625 67.128906 0 57.34375 46.65625 104 104 104 24.527344 0 48.367188-8.753906 67.128906-24.632812zm0 0\"></path><path d=\"m121.214844 165.640625c4.953125-1.375 9.695312-3.34375 14.183594-5.878906l9.769531 4.886719 19.472656-19.480469-4.886719-9.769531c2.535156-4.496094 4.503906-9.230469 5.886719-14.183594l10.359375-3.445313v-27.53125l-10.351562-3.453125c-1.375-4.953125-3.34375-9.707031-5.886719-14.183594l4.886719-9.777343-19.472657-19.472657-9.769531 4.886719c-4.484375-2.535156-9.230469-4.503906-14.183594-5.878906l-3.453125-10.359375h-27.539062l-3.445313 10.359375c-4.953125 1.375-9.695312 3.34375-14.183594 5.878906l-9.777343-4.886719-19.472657 19.472657 4.886719 9.777343c-2.535156 4.488282-4.503906 9.230469-5.886719 14.183594l-10.351562 3.445313v27.53125l10.351562 3.453125c1.375 4.953125 3.34375 9.695312 5.886719 14.183594l-4.886719 9.769531 19.472657 19.480469 9.769531-4.886719c4.484375 2.535156 9.230469 4.503906 14.183594 5.878906l3.453125 10.359375h27.539062zm-12.304688-13.679687-2.679687 8.039062h-4.460938l-2.679687-8.039062-4.554688-.90625c-6.128906-1.222657-11.878906-3.605469-17.109375-7.09375l-3.867187-2.578126-7.574219 3.800782-3.160156-3.167969 3.792969-7.582031-2.578126-3.859375c-3.488281-5.222657-5.871093-10.980469-7.09375-17.109375l-.914062-4.554688-8.03125-2.679687v-4.46875l8.03125-2.671875.914062-4.554688c1.222657-6.136718 3.613282-11.886718 7.09375-17.109375l2.578126-3.859375-3.792969-7.589844 3.160156-3.160156 7.574219 3.800782 3.867187-2.578126c5.222657-3.488281 10.980469-5.863281 17.109375-7.09375l4.554688-.90625 2.679687-8.039062h4.460938l2.679687 8.039062 4.554688.90625c6.128906 1.222657 11.878906 3.605469 17.109375 7.09375l3.867187 2.578126 7.574219-3.800782 3.160156 3.160156-3.792969 7.589844 2.578126 3.859375c3.488281 5.214844 5.871093 10.972657 7.09375 17.109375l.914062 4.554688 8.03125 2.679687v4.46875l-8.03125 2.671875-.914062 4.554688c-1.222657 6.128906-3.613282 11.878906-7.09375 17.109375l-2.578126 3.859375 3.792969 7.582031-3.160156 3.167969-7.574219-3.800782-3.867187 2.578126c-5.222657 3.488281-10.980469 5.863281-17.109375 7.09375zm0 0\"></path><path d=\"m104 72c-17.648438 0-32 14.351562-32 32s14.351562 32 32 32 32-14.351562 32-32-14.351562-32-32-32zm0 48c-8.824219 0-16-7.175781-16-16s7.175781-16 16-16 16 7.175781 16 16-7.175781 16-16 16zm0 0\"></path><path d=\"m160 248v-40h48v-208h-208v208h106.664062zm-144-232h176v176h-48v24l-32-24h-96zm0 0\"></path><path d=\"m0 272h16v16h-16zm0 0\"></path><path d=\"m32 272h16v16h-16zm0 0\"></path><path d=\"m64 272h16v16h-16zm0 0\"></path><path d=\"m32 304h16v16h-16zm0 0\"></path><path d=\"m64 304h16v16h-16zm0 0\"></path><path d=\"m0 480h16v16h-16zm0 0\"></path><path d=\"m32 480h16v16h-16zm0 0\"></path><path d=\"m64 480h16v16h-16zm0 0\"></path><path d=\"m32 448h16v16h-16zm0 0\"></path><path d=\"m64 448h16v16h-16zm0 0\"></path></svg>				\n									<h5>\n							fokus på kvalitet og detaljer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m469.12 408.93-67.26-33.63v-22.13c10.71-7.69 18.6-19.07 21.78-32.27h5.28c8.81 0 15.98-7.17 15.98-15.98v-5.29c0-6.35-3.74-11.84-9.12-14.41 5.19-18.64-1.65-39.76-19.44-59.78-12.58-14.16-30.67-22.27-49.62-22.27-18.93 0-37.01 8.12-49.59 22.27-13.38 15.05-20.95 41.01-14.03 59.62-5.56 2.5-9.45 8.09-9.45 14.57v5.29c0 8.81 7.17 15.98 15.98 15.98h5.55c3.16 13.09 10.94 24.39 21.51 32.08v22.32l-67.26 33.63c-16.7 5.87-27.89 21.6-27.89 39.28v41.63c0 3.31 2.69 6 6 6h243.46c3.31 0 6-2.69 6-6v-41.63c0-17.68-11.19-33.41-27.88-39.28zm-62.24-17.7-15.83 27.66-13.29-13.29 19.29-19.29zm-37.61 5.88-20.59-20.58v-16.91c6.41 2.57 13.4 4.01 20.72 4.01 7.22 0 14.11-1.39 20.45-3.9v16.8zm63.63-97.48v5.29c0 2.16-1.82 3.98-3.98 3.98h-3.74c.01-.36.03-.71.03-1.07v-12.18h3.71c2.15-.01 3.98 1.82 3.98 3.98zm-119.29 8.2v1.07h-3.98c-2.16 0-3.98-1.82-3.98-3.98v-5.29c0-2.16 1.82-3.98 3.98-3.98l3.98.22zm1.95-24.19c-7.33-13.69-.89-37.39 10.53-50.24 10.31-11.6 25.12-18.25 40.63-18.25 15.52 0 30.34 6.65 40.65 18.25 8.43 9.48 21.3 27.59 17.4 46.39-5.66-.35-10.67-2.55-14.4-6.36-5.37-5.49-7.72-14-6.63-23.94.29-2.62-1.17-5.13-3.6-6.17s-5.25-.37-6.95 1.65c-19.33 22.92-45.95 36.76-73.9 38.68h-3.73zm10.05 24.19v-12.73c24.57-2.92 47.92-14.05 66.73-31.8 1.43 7.26 4.63 13.6 9.45 18.52 3.27 3.35 7.14 5.89 11.41 7.58v18.42c0 24.15-19.65 43.8-43.8 43.8s-43.79-19.64-43.79-43.79zm15.89 78.48 19.29 19.29-13.29 13.29-15.84-27.66zm3.22 97.53h-39.42v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.76v-35.63c0-12.68 8.1-23.95 20.15-28.05.26-.09.51-.19.75-.31l46.47-23.23 20.07 35.06c.93 1.62 2.56 2.72 4.41 2.97.27.04.53.05.79.05 1.58 0 3.11-.62 4.24-1.76l.14-.14zm12.08 0 7.41-64.69 5.06-5.06 4.84 4.84 7.86 64.92h-25.17zm128.2 0h-39.76v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.18l-6.2-51.17.25.25c1.13 1.13 2.66 1.76 4.24 1.76.26 0 .53-.02.79-.05 1.85-.25 3.48-1.34 4.41-2.97l20.07-35.06 46.47 23.23c.24.12.49.23.75.31 12.05 4.1 20.15 15.38 20.15 28.05v35.65zm-67.04-346.65h-10.84l28.38 39.84 28.38-39.84h-10.84c-3.31 0-6-2.69-6-6v-64.58h-98.7c-3.31 0-6-2.69-6-6s2.69-6 6-6h104.7c3.31 0 6 2.69 6 6v64.58h16.48c2.25 0 4.3 1.25 5.33 3.25s.86 4.4-.45 6.23l-40.02 56.18c-1.13 1.58-2.95 2.52-4.89 2.52s-3.76-.94-4.89-2.52l-40.02-56.18c-1.3-1.83-1.48-4.23-.45-6.23s3.09-3.25 5.33-3.25h16.48v-23.5h-65.38c-3.31 0-6-2.69-6-6s2.69-6 6-6h71.38c3.31 0 6 2.69 6 6v35.5c.02 3.31-2.67 6-5.98 6zm-118.44 50.65v-133.26c0-21.18-17.23-38.41-38.41-38.41h-207.7c-21.18-.01-38.41 17.23-38.41 38.41v133.26c0 21.18 17.23 38.41 38.41 38.41h105.8l64.8 55.11c1.11.94 2.49 1.43 3.89 1.43.85 0 1.71-.18 2.52-.55 2.12-.98 3.48-3.11 3.48-5.45v-50.54h27.21c21.18 0 38.41-17.23 38.41-38.41zm-71.62 26.41c-3.31 0-6 2.69-6 6v43.56l-56.59-48.13c-1.08-.92-2.46-1.43-3.89-1.43h-108.01c-14.56 0-26.41-11.85-26.41-26.41v-133.26c0-14.56 11.85-26.41 26.41-26.41h207.69c14.56 0 26.41 11.85 26.41 26.41v133.26c0 14.56-11.85 26.41-26.41 26.41zm-156.34-87.87h56.97c3.31 0 6-2.69 6-6v-39.2l8.55-8.55c2.34-2.34 2.34-6.14 0-8.49-2.34-2.34-6.14-2.34-8.48 0l-.7.7c-.98-1.97-3.01-3.32-5.36-3.32h-56.98c-3.31 0-6 2.69-6 6v52.85c0 3.32 2.69 6.01 6 6.01zm6-52.86h44.97v2.69l-18.16 18.16-8.84-8.84c-2.34-2.34-6.14-2.34-8.49 0-2.34 2.34-2.34 6.14 0 8.49l13.08 13.08c1.17 1.17 2.71 1.76 4.24 1.76s3.07-.59 4.24-1.76l13.92-13.92v21.2h-44.96zm173.62 3.08c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 31.92c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 36.52c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.68 5.99 6zm0 31.92c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.69 5.99 6zm-119.36 165.01h10.84l-28.38-39.84-28.38 39.84h10.84c3.31 0 6 2.69 6 6v64.58h98.7c3.31 0 6 2.69 6 6s-2.69 6-6 6h-104.69c-3.31 0-6-2.69-6-6v-64.58h-16.48c-2.25 0-4.3-1.25-5.33-3.25s-.86-4.4.45-6.23l40.02-56.18c1.13-1.58 2.95-2.52 4.89-2.52s3.76.94 4.89 2.52l40.02 56.18c1.3 1.83 1.48 4.23.45 6.23s-3.09 3.25-5.33 3.25h-16.48v23.5h65.38c3.31 0 6 2.69 6 6s-2.69 6-6 6h-71.38c-3.31 0-6-2.69-6-6v-35.5c-.03-3.31 2.66-6 5.97-6z\"></path></svg>				\n									<h5>\n							ærlig<br> rådgivning						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 510 510\"><path d=\"m192.036 385.845c-4.787-46.972-19.459-64.336-30.658-82.352-8.672-13.951-15.5-28.245-15.5-54.252 0-60.242 48.865-109.109 109.135-109.109 60.242 0 109.109 48.866 109.109 109.109 0 26.007-6.828 40.301-15.5 54.252-11.199 18.016-25.871 35.38-30.658 82.352 9.985 2.864 17.345 12.101 17.345 22.975v36.44c0 13.109-10.747 23.866-23.893 23.866h-10.334v9.945c0 12.588-10.341 22.929-22.93 22.929h-46.304c-12.589 0-22.93-10.341-22.93-22.929v-9.945h-10.334c-13.146 0-23.893-10.757-23.893-23.866v-36.44c0-10.874 7.36-20.111 17.345-22.975zm111.948-.917c4.199-42.194 15.78-62.332 26.488-79.049 10.147-15.842 19.65-28.207 19.65-56.638 0-52.513-42.597-95.109-95.109-95.109-52.537 0-95.135 42.596-95.135 95.109 0 28.431 9.503 40.796 19.65 56.638 10.708 16.717 22.289 36.855 26.488 79.049zm2.554-78.61c-1.175 13.701-11.985 24.191-24.783 24.191-13.527 0-24.862-12.086-24.862-26.673v-99.328c0-14.12 11.335-26.673 24.862-26.673 11.309 0 21.031 8.139 23.975 19.497 9.12 3.904 15.688 13.438 15.688 24.78 0 1.153-.068 2.289-.201 3.403 5.078 5.326 8.283 12.802 8.283 21.117 0 6.39-1.889 12.262-5.06 17.053 1.996 4.099 3.13 8.773 3.13 13.76 0 14.1-9.065 25.697-21.032 28.873zm-16.452-109.977c-1.964-2.729-4.916-4.506-8.331-4.506-6.192 0-10.862 6.21-10.862 12.673v99.328c0 6.677 4.67 12.673 10.862 12.673 5.516 0 9.822-4.614 10.717-10.425-4.709-1.416-8.923-4.144-12.279-7.814-2.607-2.852-2.409-7.283.443-9.89 2.851-2.607 7.282-2.408 9.889.443 2.416 2.642 5.72 4.356 9.402 4.356 7.733 0 13.643-7.218 13.643-15.734s-5.91-15.734-13.643-15.734c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7 5.352 0 10.388 1.655 14.658 4.533.593-1.743.915-3.634.915-5.612 0-2.11-.366-4.128-1.036-5.972-.769.858-1.588 1.66-2.453 2.397-2.94 2.507-7.361 2.156-9.869-.784-2.507-2.939-2.155-7.361.784-9.868 2.773-2.365 4.492-6.122 4.492-10.293 0-6.072-3.705-11.374-8.898-12.467-.154-.023-.307-.052-.458-.085-.499-.08-1.01-.121-1.532-.121-2.947 0-5.591 1.389-7.515 3.525-2.585 2.87-7.015 3.101-9.886.515-2.87-2.586-3.101-7.015-.515-9.886 3.111-3.453 7.059-5.988 11.472-7.252zm-104.526 67.344c-3.171-4.791-5.06-10.663-5.06-17.053 0-8.307 3.198-15.777 8.284-21.104-.133-1.118-.202-2.258-.202-3.416 0-11.354 6.582-20.897 15.717-24.792 2.948-11.354 12.67-19.485 23.946-19.485 13.56 0 24.888 12.555 24.888 26.673v99.328c0 14.585-11.328 26.673-24.888 26.673-12.765 0-23.578-10.484-24.757-24.184-11.98-3.166-21.058-14.769-21.058-28.88 0-4.987 1.134-9.661 3.13-13.76zm9.982-23.036c-.675 1.847-1.042 3.869-1.042 5.983 0 1.978.322 3.869.915 5.612 4.27-2.878 9.306-4.533 14.658-4.533 3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7-7.733 0-13.643 7.218-13.643 15.734s5.91 15.734 13.643 15.734c3.682 0 6.986-1.714 9.402-4.356 2.607-2.851 7.038-3.05 9.889-.443 2.852 2.607 3.05 7.038.443 9.89-3.35 3.664-7.556 6.389-12.255 7.807.891 5.813 5.192 10.432 10.693 10.432 6.21 0 10.888-5.993 10.888-12.673v-99.328c0-6.466-4.678-12.673-10.888-12.673-3.404 0-6.349 1.777-8.309 4.507 4.421 1.264 8.367 3.8 11.476 7.251 2.586 2.871 2.355 7.3-.516 9.886-2.87 2.586-7.3 2.355-9.886-.515-1.926-2.138-4.574-3.525-7.54-3.525-.493 0-.976.037-1.448.108-.196.045-.395.082-.596.11-5.165 1.118-8.844 6.404-8.844 12.455 0 1.243.153 2.45.442 3.594.101.284.183.572.246.862.748 2.326 2.071 4.346 3.814 5.823 2.947 2.498 3.311 6.919.813 9.866s-6.919 3.312-9.866.814c-.878-.745-1.71-1.554-2.489-2.422zm3.042 158.279c-5.442 0-9.893 4.451-9.893 9.892v36.44c0 5.423 4.454 9.866 9.893 9.866h17.334c3.866 0 7 3.134 7 7v16.945c0 4.902 4.027 8.929 8.93 8.929h46.304c4.903 0 8.93-4.027 8.93-8.929v-16.945c0-3.866 3.134-7 7-7h17.334c5.439 0 9.893-4.443 9.893-9.866v-36.44c0-5.441-4.451-9.892-9.893-9.892zm63.416-314.093 2.907-5.412c1.828-3.403 6.075-4.683 9.479-2.854 3.403 1.828 4.682 6.075 2.854 9.479l-16.073 29.925c-1.22 2.271-3.589 3.688-6.167 3.688s-4.947-1.417-6.167-3.688l-16.073-29.925c-1.828-3.404-.549-7.651 2.854-9.479 3.404-1.829 7.651-.549 9.479 2.854l2.907 5.412v-69.835c0-3.863 3.137-7 7-7s7 3.137 7 7zm-132.198 54.758-49.381-49.381c-2.732-2.731-2.732-7.167 0-9.899s7.168-2.732 9.9 0l49.38 49.38-1.771-5.881c-1.114-3.7.985-7.608 4.684-8.722 3.7-1.114 7.607.985 8.721 4.685l9.796 32.526c.743 2.468.069 5.145-1.753 6.968-1.823 1.823-4.5 2.496-6.969 1.753l-32.526-9.795c-3.699-1.114-5.798-5.022-4.684-8.721s5.022-5.798 8.721-4.684zm-44.859 122.299h-69.835c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7h69.835l-5.412-2.907c-3.403-1.828-4.682-6.076-2.854-9.479 1.828-3.404 6.075-4.683 9.479-2.855l29.926 16.074c2.271 1.22 3.688 3.589 3.688 6.167 0 2.577-1.417 4.947-3.688 6.166l-29.926 16.074c-3.404 1.828-7.651.549-9.479-2.855-1.828-3.403-.549-7.651 2.854-9.479zm54.758 118.198-49.38 49.38c-2.732 2.732-7.168 2.732-9.9 0s-2.732-7.167 0-9.899l49.381-49.381-5.882 1.772c-3.699 1.114-7.607-.985-8.721-4.685-1.114-3.699.985-7.607 4.684-8.721l32.526-9.795c2.469-.743 5.146-.07 6.969 1.753 1.822 1.823 2.496 4.5 1.753 6.968l-9.796 32.527c-1.114 3.699-5.021 5.798-8.721 4.684-3.699-1.114-5.798-5.022-4.684-8.721zm240.497-240.497 5.882-1.771c3.699-1.114 7.607.985 8.721 4.684s-.985 7.607-4.684 8.721l-32.526 9.795c-2.469.743-5.146.07-6.969-1.753-1.822-1.823-2.496-4.5-1.753-6.968l9.796-32.526c1.114-3.7 5.021-5.799 8.721-4.685 3.699 1.114 5.798 5.022 4.684 8.722l-1.771 5.881 49.38-49.38c2.732-2.732 7.168-2.732 9.9 0s2.732 7.168 0 9.899zm44.859 122.299 5.412 2.906c3.403 1.828 4.682 6.076 2.854 9.479-1.828 3.404-6.075 4.683-9.479 2.855l-29.926-16.074c-2.271-1.219-3.688-3.589-3.688-6.166 0-2.578 1.417-4.947 3.688-6.167l29.926-16.074c3.404-1.828 7.651-.549 9.479 2.855 1.828 3.403.549 7.651-2.854 9.479l-5.412 2.907h69.835c3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7zm-54.758 118.198 1.771 5.882c1.114 3.699-.985 7.607-4.684 8.721-3.7 1.114-7.607-.985-8.721-4.684l-9.796-32.527c-.743-2.468-.069-5.145 1.753-6.968 1.823-1.823 4.5-2.496 6.969-1.753l32.526 9.795c3.699 1.114 5.798 5.022 4.684 8.721-1.114 3.7-5.022 5.799-8.721 4.685l-5.882-1.772 49.381 49.381c2.732 2.732 2.732 7.167 0 9.899s-7.168 2.732-9.9 0z\"></path></svg>				\n									<h5>\n							gennemtænkte løsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"outline\"><path d=\"M486.41,144A28,28,0,0,0,472,92H349.123l5.457-21.828a48.513,48.513,0,0,0-12.848-46.153A41.035,41.035,0,0,0,312.609,12H308a8.009,8.009,0,0,0-8,8V47.413l-19.233,64.112A17.376,17.376,0,0,1,268,123.539V112a4,4,0,0,0-4-4H152a4,4,0,0,0-4,4v72a4,4,0,0,0,8,0V116h72V276H156V248a4,4,0,0,0-8,0v32a4,4,0,0,0,4,4H264a4,4,0,0,0,4-4V268.5h11.168A37.07,37.07,0,0,1,305.092,279a45.025,45.025,0,0,0,31.48,12.752L440,292a27.987,27.987,0,0,0,19.369-48.2,27.987,27.987,0,0,0,16-48A28,28,0,0,0,486.41,144ZM260,276H236V116h24Zm212-88H396a4,4,0,0,0,0,8h60a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h40a20,20,0,0,1,.01,40l-103.428-.25a37.07,37.07,0,0,1-25.924-10.5,45.031,45.031,0,0,0-31.49-12.752H268V131.686a25.317,25.317,0,0,0,20.429-17.862l19.4-64.675A4,4,0,0,0,308,48V20h4.609a33.082,33.082,0,0,1,23.481,9.69,40.507,40.507,0,0,1,10.728,38.541l-6.7,26.8A4,4,0,0,0,344,100H472a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h72a20,20,0,0,1,0,40Z\"></path><path d=\"M194.5,183.243l-1.9-.217a4,4,0,0,0-4.169,2.491L184.29,195.9H135.278l-3.539-9.317a4,4,0,0,0-7.478,2.84l2.459,6.477h-8.474L68.452,156.872a4,4,0,1,0-4.935,6.3L77.6,174.209,56.961,194.48l-6.636-5.491a4,4,0,1,0-5.1,6.163L87.219,229.9a44.1,44.1,0,0,0,28.05,10.1H212a8.009,8.009,0,0,0,8-8V203.9a8.009,8.009,0,0,0-8-8h-8v-2.01A10.708,10.708,0,0,0,194.5,183.243ZM212,203.9V232H115.269a36.081,36.081,0,0,1-22.951-8.264l-29.16-24.128,20.8-20.422L114.4,203.045a4,4,0,0,0,2.468.852H187a4,4,0,0,0,3.715-2.517l3.929-9.843a2.712,2.712,0,0,1,1.356,2.35v6.01a4,4,0,0,0,4,4Z\"></path><path d=\"M223.084,484.672,200.87,469.863V346.36A44.1,44.1,0,0,0,195.327,325l-17.183-30.94a4,4,0,0,0-7,3.884l17.184,30.94a36.073,36.073,0,0,1,4.537,17.478V468H164.333a4,4,0,1,0,0,8h31.321l12,8H152.865V352a4,4,0,0,0-.358-1.655l-25.454-56A4,4,0,0,0,123.411,292H114.2a4,4,0,0,0-3.945,4.658l8.862,53.175a36.016,36.016,0,0,1-1.951,18.949L78.642,468H48.333a4,4,0,1,0,0,8H80.377L92,484H32.088L76.63,361.366a4.017,4.017,0,0,0,.183-2.044L61.1,268H136a4,4,0,0,0,0-8H59.233L30.555,173.966A19.723,19.723,0,0,1,49.27,148H76a12,12,0,0,0,24,0h15.2a21.975,21.975,0,0,1,8.395,1.652l10.889,4.458a4,4,0,1,0,3.032-7.4L126.63,142.25A29.938,29.938,0,0,0,115.2,140H100v-4.527A16.014,16.014,0,0,0,112,120V103.473A16.014,16.014,0,0,0,124,88V80a4,4,0,0,0-4-4H90A22.025,22.025,0,0,0,68,98v18a12.02,12.02,0,0,0,8,11.314V140H49.27a27.723,27.723,0,0,0-26.305,36.5l29.493,88.482,16.29,94.655-46.128,127A4,4,0,0,0,26.38,492h78.485a4,4,0,0,0,2.268-7.3L86.3,470.368l38.318-98.69a44.018,44.018,0,0,0,2.385-23.16L118.921,300h1.914l24.03,52.867V488a4,4,0,0,0,4,4h72a4,4,0,0,0,2.219-7.328ZM76,98A14.015,14.015,0,0,1,90,84h26v4a8.009,8.009,0,0,1-8,8H92a4,4,0,0,0-4,4,11.962,11.962,0,0,1-1.53,5.881A12.044,12.044,0,0,0,76,104.686Zm4,14a3.981,3.981,0,0,1,3.407,1.9,4,4,0,0,0,5.956.975c.207-.171.7-.648.7-.648.032-.028.061-.057.09-.087A19.907,19.907,0,0,0,95.6,104H104v16a8.009,8.009,0,0,1-8,8,12.133,12.133,0,0,1-2.681-.3,4,4,0,1,0-1.775,7.8c.151.035.3.06.456.091V148a4,4,0,1,1-8,0V124a4,4,0,0,0-4-4,4,4,0,0,1,0-8Z\"></path></g></svg>				\n									<h5>\n							arbejde udført med ansvar						\n					</h5>\n				<p>Vi lover ikke mere, end vi kan holde – men vi holder det, vi lover.</p>			<h2>KONTAKT OS</h2>		<p>Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.</p>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 13:39:53', '2026-01-26 13:39:53', '', 10, 'https://mrarif.me/cpnordic/?p=539', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(556, 1, '2026-01-26 13:55:36', '2026-01-26 13:55:36', '<h1>CP NORDIC ApS</h1>					<h4>Byggeri – Tømrerarbejde og tagdækning</h4>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle ANMELDELSER\n					</a>\n					<h2>HVORFOR VÆLGE CP NORDIC ApS?</h2>		<p>Når du vælger CP NORDIC ApS, får du:</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 450 450\" width=\"512\"><g><g><path d=\"m225 165.2c-25.9 0-48.9-18.8-53.3-45.2-2.4-14.2.9-28.6 9.3-40.3 8.4-11.8 20.9-19.5 35.1-21.9 29.4-4.9 57.3 15 62.2 44.5 4.9 29.4-15 57.3-44.4 62.2-3 .5-6 .7-8.9.7zm-7.6-99.8c-12.2 2-22.9 8.7-30.1 18.8s-10.1 22.4-8 34.6c3.8 22.7 23.5 38.8 45.7 38.8 2.5 0 5.1-.2 7.6-.6 25.2-4.2 42.3-28.1 38.1-53.4s-28.1-42.4-53.3-38.2z\"></path><path d=\"m255.2 115c-2.1 0-3.8-1.7-3.8-3.8 0-14.6-11.8-26.4-26.4-26.4-2.1 0-3.8-1.7-3.8-3.8s1.7-3.8 3.8-3.8c18.8 0 34.1 15.3 34.1 34.1 0 2-1.8 3.7-3.9 3.7z\"></path><path d=\"m236.1 203h-22.2c-2.1 0-3.8-1.7-3.8-3.8v-14.1c-3.1-.6-6.1-1.4-9.1-2.4l-7 12.2c-1.1 1.8-3.4 2.5-5.3 1.4l-19.2-11.1c-.9-.5-1.5-1.4-1.8-2.3-.3-1-.1-2 .4-2.9l7-12.1c-2.4-2.1-4.6-4.3-6.7-6.6l-12.1 7c-1.8 1.1-4.2.4-5.2-1.4l-11.1-19.2c-1.1-1.8-.4-4.2 1.4-5.2l11.9-6.8c-1-3-1.9-6.1-2.6-9.3h-13.7c-2.1 0-3.8-1.7-3.8-3.8v-22.2c0-2.1 1.7-3.8 3.8-3.8h13.4c.6-3.2 1.4-6.4 2.4-9.5l-11.5-6.6c-1.8-1.1-2.5-3.4-1.4-5.3l11.1-19.6c.5-.9 1.4-1.5 2.3-1.8s2-.1 2.9.4l11.3 6.6c2.2-2.5 4.5-4.8 7-7l-6.5-11.3c-.5-.9-.6-1.9-.4-2.9.3-1 .9-1.8 1.8-2.3l19.2-11.1c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l6.4 11.2c3.1-1.1 6.4-1.9 9.7-2.6v-13c0-2.1 1.7-3.8 3.8-3.8h22.2c2.1 0 3.8 1.7 3.8 3.8v12.8c3.3.7 6.5 1.5 9.7 2.6l6.5-11.2c.5-.9 1.4-1.5 2.3-1.8 1-.3 2-.1 2.9.4l19.2 11.1c.9.5 1.5 1.3 1.8 2.3s.1 2-.4 2.9l-6.5 11.3c2.5 2.2 4.8 4.5 7 7.1l11.3-6.6c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l11.1 19.2c1.1 1.8.4 4.2-1.4 5.3l-11.5 6.6c1 3.1 1.8 6.3 2.5 9.5h13.6c2.1 0 3.8 1.7 3.8 3.8v22.2c0 2.1-1.7 3.8-3.8 3.8h-13.6c-.6 3.1-1.5 6.2-2.5 9.3l11.9 6.8c1.8 1.1 2.5 3.4 1.4 5.2l-11.2 19.5c-1.1 1.8-3.4 2.5-5.2 1.4l-12-7c-2.1 2.4-4.4 4.6-6.7 6.6l7 12.1c.5.9.6 1.9.4 2.9s-.9 1.8-1.8 2.3l-19.2 11.1c-1.8 1.1-4.2.4-5.2-1.4l-7-12.2c-3 1-6 1.8-9.1 2.4v14.1c-.2 2.3-2 4-4.1 4zm-18.4-7.7h14.5v-13.5c0-1.9 1.4-3.5 3.3-3.8 4.7-.7 9.4-2 13.8-3.7 1.8-.7 3.8 0 4.7 1.7l6.7 11.6 12.6-7.3-6.7-11.6c-1-1.6-.5-3.7.9-4.9 3.7-3 7.2-6.4 10.2-10.1 1.2-1.5 3.3-1.8 4.9-.9l11.5 6.6 7.3-12.6-11.3-6.5c-1.6-.9-2.4-3-1.6-4.7 1.8-4.5 3.1-9.2 3.9-14 .3-1.9 1.9-3.2 3.8-3.2h13v-14.6h-12.8c-1.9 0-3.5-1.4-3.8-3.3-.7-4.8-2-9.6-3.7-14.2-.7-1.8 0-3.7 1.7-4.7l10.9-6.3-7.3-12.6-10.8 6.3c-1.6.9-3.7.6-4.9-.9-3.1-3.9-6.6-7.4-10.4-10.6-1.5-1.2-1.9-3.3-.9-4.9l6.2-10.7-12.6-7.3-6.1 10.6c-1 1.6-3 2.3-4.7 1.7-4.6-1.8-9.5-3.1-14.4-3.9-1.9-.3-3.3-1.9-3.3-3.8v-12.2h-14.5v12.3c0 1.9-1.4 3.5-3.3 3.8-5 .8-9.8 2.1-14.4 3.9-1.8.7-3.8 0-4.7-1.7l-6.1-10.6-12.6 7.3 6.2 10.7c.9 1.6.6 3.7-.9 4.9-3.9 3.1-7.4 6.7-10.4 10.6-1.2 1.5-3.3 1.9-4.9.9l-10.8-6.3-7.3 12.6 10.9 6.3c1.6.9 2.3 2.9 1.7 4.7-1.7 4.6-3 9.4-3.7 14.2-.3 1.9-1.9 3.3-3.8 3.3h-12.8v14.5h13c1.9 0 3.5 1.4 3.8 3.2.8 4.8 2.1 9.5 3.9 14 .7 1.8 0 3.8-1.6 4.7l-11.3 6.5 7.3 12.6 11.5-6.6c1.6-.9 3.7-.6 4.9.9 3 3.7 6.5 7.1 10.3 10.1 1.5 1.2 1.9 3.3.9 4.9l-6.7 11.6 12.6 7.3 6.7-11.6c.9-1.6 2.9-2.3 4.7-1.7 4.5 1.7 9.1 2.9 13.8 3.7 1.9.3 3.3 1.9 3.3 3.8z\"></path></g><g><g><g><path d=\"m45.3 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m153.9 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path></g><g><path d=\"m189.3 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.2c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c0 2.1-1.7 3.8-3.8 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m73.3 326.4c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m126 326.4c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m99.7 325.6c-.6 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4s4.1 1.1 4.4 3.2c2.4 16.5 12.3 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m50.2 266.6c-.1 0-.2 0-.3 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.7 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-8.9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.5 2.2zm81.8-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13.1-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.4-.7 2.3-.7z\"></path></g></g></g><g><g><path d=\"m296.1 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m404.7 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path></g><g><path d=\"m440 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.1c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c.2 2.1-1.6 3.8-3.7 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m324 326.3c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m376.7 326.3c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m350.4 325.6c-.5 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4 2.1-.3 4 1.1 4.4 3.2 2.4 16.5 12.4 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m301 266.6c-.1 0-.2 0-.4 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.6 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.4 2.2zm81.7-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.5-.7 2.3-.7z\"></path></g></g></g></g></g></svg>				\n									<h5>\n							et ungt og engageret team						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"496pt\" viewBox=\"0 0 496 496\" width=\"496pt\"><path d=\"m440 328h-28.207031c5.078125-6.703125 8.207031-14.960938 8.207031-24 0-8.824219-7.175781-16-16-16h-12v-19.960938c59.574219-14.445312 104-68.085937 104-132.039062 0-74.992188-61.007812-136-136-136s-136 61.007812-136 136c0 63.953125 44.425781 117.59375 104 132.039062v19.960938h-8.449219c-6.167969 0-12.359375 1.464844-17.886719 4.214844l-50.480468 25.25c-3.320313 1.664062-7.03125 2.535156-10.734375 2.535156h-40.449219v-16h-104v16h56v56h16v-56h16v128h-16v-56h-16v56h-56v16h104v-16h40.449219c3.703125 0 7.414062.871094 10.734375 2.527344l34.488281 17.25c5.519531 2.757812 11.710937 4.222656 17.878906 4.222656h24.449219v24h64v-24h48c13.230469 0 24-10.769531 24-24 0-6.167969-2.40625-11.742188-6.238281-16 3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16 0-13.230469-10.769531-24-24-24zm8 24c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm-208-280c0-66.167969 53.832031-120 120-120s120 53.832031 120 120-53.832031 120-120 120-120-53.832031-120-120zm104 134.976562c5.257812.617188 10.574219 1.023438 16 1.023438s10.742188-.40625 16-1.023438v17.023438h-32zm-40.449219 185.023438c-3.703125 0-7.414062-.871094-10.734375-2.527344l-34.488281-17.25c-5.519531-2.757812-11.710937-4.222656-17.878906-4.222656h-40.449219v-96h40.449219c6.167969 0 12.359375-1.464844 17.886719-4.214844l50.480468-25.25c3.320313-1.664062 7.03125-2.535156 10.734375-2.535156h84.449219c0 13.230469-10.769531 24-24 24h-48.28125l-23.863281 35.808594c-6.101563 9.160156-14.527344 16.589844-24.367188 21.503906-8.753906 4.375-18.542969 6.6875-28.320312 6.6875h-15.167969v16h15.167969c12.246093 0 24.519531-2.894531 35.472656-8.375 12.328125-6.160156 22.878906-15.480469 30.527344-26.945312l6.832031-10.253907v93.574219zm40.449219 24v-136h17.472656c-.898437 2.511719-1.472656 5.183594-1.472656 8 0 6.167969 2.40625 11.742188 6.238281 16-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16 0 10.414062 6.710938 19.214844 16 22.527344v9.472656zm96-24h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8s-3.59375 8-8 8zm0 0\"></path><path d=\"m394.878906 73.007812-7.757812 13.984376c17.816406 9.878906 28.878906 28.664062 28.878906 49.007812h16c0-26.160156-14.222656-50.296875-37.121094-62.992188zm0 0\"></path><path d=\"m360 80c4.734375 0 9.449219.59375 14.007812 1.769531l3.976563-15.503906c-5.855469-1.496094-11.90625-2.265625-17.984375-2.265625zm0 0\"></path><path d=\"m360 48c48.519531 0 88 39.480469 88 88 0 20.753906-7.398438 40.910156-20.832031 56.785156l12.207031 10.34375c15.882812-18.761718 24.625-42.601562 24.625-67.128906 0-57.34375-46.65625-104-104-104-24.527344 0-48.367188 8.753906-67.128906 24.632812l10.335937 12.199219c15.871094-13.433593 36.039063-20.832031 56.792969-20.832031zm0 0\"></path><path d=\"m427.128906 215.367188-10.335937-12.199219c-15.871094 13.433593-36.039063 20.832031-56.792969 20.832031-48.519531 0-88-39.480469-88-88 0-20.753906 7.398438-40.910156 20.832031-56.785156l-12.207031-10.34375c-15.882812 18.761718-24.625 42.601562-24.625 67.128906 0 57.34375 46.65625 104 104 104 24.527344 0 48.367188-8.753906 67.128906-24.632812zm0 0\"></path><path d=\"m121.214844 165.640625c4.953125-1.375 9.695312-3.34375 14.183594-5.878906l9.769531 4.886719 19.472656-19.480469-4.886719-9.769531c2.535156-4.496094 4.503906-9.230469 5.886719-14.183594l10.359375-3.445313v-27.53125l-10.351562-3.453125c-1.375-4.953125-3.34375-9.707031-5.886719-14.183594l4.886719-9.777343-19.472657-19.472657-9.769531 4.886719c-4.484375-2.535156-9.230469-4.503906-14.183594-5.878906l-3.453125-10.359375h-27.539062l-3.445313 10.359375c-4.953125 1.375-9.695312 3.34375-14.183594 5.878906l-9.777343-4.886719-19.472657 19.472657 4.886719 9.777343c-2.535156 4.488282-4.503906 9.230469-5.886719 14.183594l-10.351562 3.445313v27.53125l10.351562 3.453125c1.375 4.953125 3.34375 9.695312 5.886719 14.183594l-4.886719 9.769531 19.472657 19.480469 9.769531-4.886719c4.484375 2.535156 9.230469 4.503906 14.183594 5.878906l3.453125 10.359375h27.539062zm-12.304688-13.679687-2.679687 8.039062h-4.460938l-2.679687-8.039062-4.554688-.90625c-6.128906-1.222657-11.878906-3.605469-17.109375-7.09375l-3.867187-2.578126-7.574219 3.800782-3.160156-3.167969 3.792969-7.582031-2.578126-3.859375c-3.488281-5.222657-5.871093-10.980469-7.09375-17.109375l-.914062-4.554688-8.03125-2.679687v-4.46875l8.03125-2.671875.914062-4.554688c1.222657-6.136718 3.613282-11.886718 7.09375-17.109375l2.578126-3.859375-3.792969-7.589844 3.160156-3.160156 7.574219 3.800782 3.867187-2.578126c5.222657-3.488281 10.980469-5.863281 17.109375-7.09375l4.554688-.90625 2.679687-8.039062h4.460938l2.679687 8.039062 4.554688.90625c6.128906 1.222657 11.878906 3.605469 17.109375 7.09375l3.867187 2.578126 7.574219-3.800782 3.160156 3.160156-3.792969 7.589844 2.578126 3.859375c3.488281 5.214844 5.871093 10.972657 7.09375 17.109375l.914062 4.554688 8.03125 2.679687v4.46875l-8.03125 2.671875-.914062 4.554688c-1.222657 6.128906-3.613282 11.878906-7.09375 17.109375l-2.578126 3.859375 3.792969 7.582031-3.160156 3.167969-7.574219-3.800782-3.867187 2.578126c-5.222657 3.488281-10.980469 5.863281-17.109375 7.09375zm0 0\"></path><path d=\"m104 72c-17.648438 0-32 14.351562-32 32s14.351562 32 32 32 32-14.351562 32-32-14.351562-32-32-32zm0 48c-8.824219 0-16-7.175781-16-16s7.175781-16 16-16 16 7.175781 16 16-7.175781 16-16 16zm0 0\"></path><path d=\"m160 248v-40h48v-208h-208v208h106.664062zm-144-232h176v176h-48v24l-32-24h-96zm0 0\"></path><path d=\"m0 272h16v16h-16zm0 0\"></path><path d=\"m32 272h16v16h-16zm0 0\"></path><path d=\"m64 272h16v16h-16zm0 0\"></path><path d=\"m32 304h16v16h-16zm0 0\"></path><path d=\"m64 304h16v16h-16zm0 0\"></path><path d=\"m0 480h16v16h-16zm0 0\"></path><path d=\"m32 480h16v16h-16zm0 0\"></path><path d=\"m64 480h16v16h-16zm0 0\"></path><path d=\"m32 448h16v16h-16zm0 0\"></path><path d=\"m64 448h16v16h-16zm0 0\"></path></svg>				\n									<h5>\n							fokus på kvalitet og detaljer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m469.12 408.93-67.26-33.63v-22.13c10.71-7.69 18.6-19.07 21.78-32.27h5.28c8.81 0 15.98-7.17 15.98-15.98v-5.29c0-6.35-3.74-11.84-9.12-14.41 5.19-18.64-1.65-39.76-19.44-59.78-12.58-14.16-30.67-22.27-49.62-22.27-18.93 0-37.01 8.12-49.59 22.27-13.38 15.05-20.95 41.01-14.03 59.62-5.56 2.5-9.45 8.09-9.45 14.57v5.29c0 8.81 7.17 15.98 15.98 15.98h5.55c3.16 13.09 10.94 24.39 21.51 32.08v22.32l-67.26 33.63c-16.7 5.87-27.89 21.6-27.89 39.28v41.63c0 3.31 2.69 6 6 6h243.46c3.31 0 6-2.69 6-6v-41.63c0-17.68-11.19-33.41-27.88-39.28zm-62.24-17.7-15.83 27.66-13.29-13.29 19.29-19.29zm-37.61 5.88-20.59-20.58v-16.91c6.41 2.57 13.4 4.01 20.72 4.01 7.22 0 14.11-1.39 20.45-3.9v16.8zm63.63-97.48v5.29c0 2.16-1.82 3.98-3.98 3.98h-3.74c.01-.36.03-.71.03-1.07v-12.18h3.71c2.15-.01 3.98 1.82 3.98 3.98zm-119.29 8.2v1.07h-3.98c-2.16 0-3.98-1.82-3.98-3.98v-5.29c0-2.16 1.82-3.98 3.98-3.98l3.98.22zm1.95-24.19c-7.33-13.69-.89-37.39 10.53-50.24 10.31-11.6 25.12-18.25 40.63-18.25 15.52 0 30.34 6.65 40.65 18.25 8.43 9.48 21.3 27.59 17.4 46.39-5.66-.35-10.67-2.55-14.4-6.36-5.37-5.49-7.72-14-6.63-23.94.29-2.62-1.17-5.13-3.6-6.17s-5.25-.37-6.95 1.65c-19.33 22.92-45.95 36.76-73.9 38.68h-3.73zm10.05 24.19v-12.73c24.57-2.92 47.92-14.05 66.73-31.8 1.43 7.26 4.63 13.6 9.45 18.52 3.27 3.35 7.14 5.89 11.41 7.58v18.42c0 24.15-19.65 43.8-43.8 43.8s-43.79-19.64-43.79-43.79zm15.89 78.48 19.29 19.29-13.29 13.29-15.84-27.66zm3.22 97.53h-39.42v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.76v-35.63c0-12.68 8.1-23.95 20.15-28.05.26-.09.51-.19.75-.31l46.47-23.23 20.07 35.06c.93 1.62 2.56 2.72 4.41 2.97.27.04.53.05.79.05 1.58 0 3.11-.62 4.24-1.76l.14-.14zm12.08 0 7.41-64.69 5.06-5.06 4.84 4.84 7.86 64.92h-25.17zm128.2 0h-39.76v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.18l-6.2-51.17.25.25c1.13 1.13 2.66 1.76 4.24 1.76.26 0 .53-.02.79-.05 1.85-.25 3.48-1.34 4.41-2.97l20.07-35.06 46.47 23.23c.24.12.49.23.75.31 12.05 4.1 20.15 15.38 20.15 28.05v35.65zm-67.04-346.65h-10.84l28.38 39.84 28.38-39.84h-10.84c-3.31 0-6-2.69-6-6v-64.58h-98.7c-3.31 0-6-2.69-6-6s2.69-6 6-6h104.7c3.31 0 6 2.69 6 6v64.58h16.48c2.25 0 4.3 1.25 5.33 3.25s.86 4.4-.45 6.23l-40.02 56.18c-1.13 1.58-2.95 2.52-4.89 2.52s-3.76-.94-4.89-2.52l-40.02-56.18c-1.3-1.83-1.48-4.23-.45-6.23s3.09-3.25 5.33-3.25h16.48v-23.5h-65.38c-3.31 0-6-2.69-6-6s2.69-6 6-6h71.38c3.31 0 6 2.69 6 6v35.5c.02 3.31-2.67 6-5.98 6zm-118.44 50.65v-133.26c0-21.18-17.23-38.41-38.41-38.41h-207.7c-21.18-.01-38.41 17.23-38.41 38.41v133.26c0 21.18 17.23 38.41 38.41 38.41h105.8l64.8 55.11c1.11.94 2.49 1.43 3.89 1.43.85 0 1.71-.18 2.52-.55 2.12-.98 3.48-3.11 3.48-5.45v-50.54h27.21c21.18 0 38.41-17.23 38.41-38.41zm-71.62 26.41c-3.31 0-6 2.69-6 6v43.56l-56.59-48.13c-1.08-.92-2.46-1.43-3.89-1.43h-108.01c-14.56 0-26.41-11.85-26.41-26.41v-133.26c0-14.56 11.85-26.41 26.41-26.41h207.69c14.56 0 26.41 11.85 26.41 26.41v133.26c0 14.56-11.85 26.41-26.41 26.41zm-156.34-87.87h56.97c3.31 0 6-2.69 6-6v-39.2l8.55-8.55c2.34-2.34 2.34-6.14 0-8.49-2.34-2.34-6.14-2.34-8.48 0l-.7.7c-.98-1.97-3.01-3.32-5.36-3.32h-56.98c-3.31 0-6 2.69-6 6v52.85c0 3.32 2.69 6.01 6 6.01zm6-52.86h44.97v2.69l-18.16 18.16-8.84-8.84c-2.34-2.34-6.14-2.34-8.49 0-2.34 2.34-2.34 6.14 0 8.49l13.08 13.08c1.17 1.17 2.71 1.76 4.24 1.76s3.07-.59 4.24-1.76l13.92-13.92v21.2h-44.96zm173.62 3.08c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 31.92c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 36.52c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.68 5.99 6zm0 31.92c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.69 5.99 6zm-119.36 165.01h10.84l-28.38-39.84-28.38 39.84h10.84c3.31 0 6 2.69 6 6v64.58h98.7c3.31 0 6 2.69 6 6s-2.69 6-6 6h-104.69c-3.31 0-6-2.69-6-6v-64.58h-16.48c-2.25 0-4.3-1.25-5.33-3.25s-.86-4.4.45-6.23l40.02-56.18c1.13-1.58 2.95-2.52 4.89-2.52s3.76.94 4.89 2.52l40.02 56.18c1.3 1.83 1.48 4.23.45 6.23s-3.09 3.25-5.33 3.25h-16.48v23.5h65.38c3.31 0 6 2.69 6 6s-2.69 6-6 6h-71.38c-3.31 0-6-2.69-6-6v-35.5c-.03-3.31 2.66-6 5.97-6z\"></path></svg>				\n									<h5>\n							ærlig<br> rådgivning						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 510 510\"><path d=\"m192.036 385.845c-4.787-46.972-19.459-64.336-30.658-82.352-8.672-13.951-15.5-28.245-15.5-54.252 0-60.242 48.865-109.109 109.135-109.109 60.242 0 109.109 48.866 109.109 109.109 0 26.007-6.828 40.301-15.5 54.252-11.199 18.016-25.871 35.38-30.658 82.352 9.985 2.864 17.345 12.101 17.345 22.975v36.44c0 13.109-10.747 23.866-23.893 23.866h-10.334v9.945c0 12.588-10.341 22.929-22.93 22.929h-46.304c-12.589 0-22.93-10.341-22.93-22.929v-9.945h-10.334c-13.146 0-23.893-10.757-23.893-23.866v-36.44c0-10.874 7.36-20.111 17.345-22.975zm111.948-.917c4.199-42.194 15.78-62.332 26.488-79.049 10.147-15.842 19.65-28.207 19.65-56.638 0-52.513-42.597-95.109-95.109-95.109-52.537 0-95.135 42.596-95.135 95.109 0 28.431 9.503 40.796 19.65 56.638 10.708 16.717 22.289 36.855 26.488 79.049zm2.554-78.61c-1.175 13.701-11.985 24.191-24.783 24.191-13.527 0-24.862-12.086-24.862-26.673v-99.328c0-14.12 11.335-26.673 24.862-26.673 11.309 0 21.031 8.139 23.975 19.497 9.12 3.904 15.688 13.438 15.688 24.78 0 1.153-.068 2.289-.201 3.403 5.078 5.326 8.283 12.802 8.283 21.117 0 6.39-1.889 12.262-5.06 17.053 1.996 4.099 3.13 8.773 3.13 13.76 0 14.1-9.065 25.697-21.032 28.873zm-16.452-109.977c-1.964-2.729-4.916-4.506-8.331-4.506-6.192 0-10.862 6.21-10.862 12.673v99.328c0 6.677 4.67 12.673 10.862 12.673 5.516 0 9.822-4.614 10.717-10.425-4.709-1.416-8.923-4.144-12.279-7.814-2.607-2.852-2.409-7.283.443-9.89 2.851-2.607 7.282-2.408 9.889.443 2.416 2.642 5.72 4.356 9.402 4.356 7.733 0 13.643-7.218 13.643-15.734s-5.91-15.734-13.643-15.734c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7 5.352 0 10.388 1.655 14.658 4.533.593-1.743.915-3.634.915-5.612 0-2.11-.366-4.128-1.036-5.972-.769.858-1.588 1.66-2.453 2.397-2.94 2.507-7.361 2.156-9.869-.784-2.507-2.939-2.155-7.361.784-9.868 2.773-2.365 4.492-6.122 4.492-10.293 0-6.072-3.705-11.374-8.898-12.467-.154-.023-.307-.052-.458-.085-.499-.08-1.01-.121-1.532-.121-2.947 0-5.591 1.389-7.515 3.525-2.585 2.87-7.015 3.101-9.886.515-2.87-2.586-3.101-7.015-.515-9.886 3.111-3.453 7.059-5.988 11.472-7.252zm-104.526 67.344c-3.171-4.791-5.06-10.663-5.06-17.053 0-8.307 3.198-15.777 8.284-21.104-.133-1.118-.202-2.258-.202-3.416 0-11.354 6.582-20.897 15.717-24.792 2.948-11.354 12.67-19.485 23.946-19.485 13.56 0 24.888 12.555 24.888 26.673v99.328c0 14.585-11.328 26.673-24.888 26.673-12.765 0-23.578-10.484-24.757-24.184-11.98-3.166-21.058-14.769-21.058-28.88 0-4.987 1.134-9.661 3.13-13.76zm9.982-23.036c-.675 1.847-1.042 3.869-1.042 5.983 0 1.978.322 3.869.915 5.612 4.27-2.878 9.306-4.533 14.658-4.533 3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7-7.733 0-13.643 7.218-13.643 15.734s5.91 15.734 13.643 15.734c3.682 0 6.986-1.714 9.402-4.356 2.607-2.851 7.038-3.05 9.889-.443 2.852 2.607 3.05 7.038.443 9.89-3.35 3.664-7.556 6.389-12.255 7.807.891 5.813 5.192 10.432 10.693 10.432 6.21 0 10.888-5.993 10.888-12.673v-99.328c0-6.466-4.678-12.673-10.888-12.673-3.404 0-6.349 1.777-8.309 4.507 4.421 1.264 8.367 3.8 11.476 7.251 2.586 2.871 2.355 7.3-.516 9.886-2.87 2.586-7.3 2.355-9.886-.515-1.926-2.138-4.574-3.525-7.54-3.525-.493 0-.976.037-1.448.108-.196.045-.395.082-.596.11-5.165 1.118-8.844 6.404-8.844 12.455 0 1.243.153 2.45.442 3.594.101.284.183.572.246.862.748 2.326 2.071 4.346 3.814 5.823 2.947 2.498 3.311 6.919.813 9.866s-6.919 3.312-9.866.814c-.878-.745-1.71-1.554-2.489-2.422zm3.042 158.279c-5.442 0-9.893 4.451-9.893 9.892v36.44c0 5.423 4.454 9.866 9.893 9.866h17.334c3.866 0 7 3.134 7 7v16.945c0 4.902 4.027 8.929 8.93 8.929h46.304c4.903 0 8.93-4.027 8.93-8.929v-16.945c0-3.866 3.134-7 7-7h17.334c5.439 0 9.893-4.443 9.893-9.866v-36.44c0-5.441-4.451-9.892-9.893-9.892zm63.416-314.093 2.907-5.412c1.828-3.403 6.075-4.683 9.479-2.854 3.403 1.828 4.682 6.075 2.854 9.479l-16.073 29.925c-1.22 2.271-3.589 3.688-6.167 3.688s-4.947-1.417-6.167-3.688l-16.073-29.925c-1.828-3.404-.549-7.651 2.854-9.479 3.404-1.829 7.651-.549 9.479 2.854l2.907 5.412v-69.835c0-3.863 3.137-7 7-7s7 3.137 7 7zm-132.198 54.758-49.381-49.381c-2.732-2.731-2.732-7.167 0-9.899s7.168-2.732 9.9 0l49.38 49.38-1.771-5.881c-1.114-3.7.985-7.608 4.684-8.722 3.7-1.114 7.607.985 8.721 4.685l9.796 32.526c.743 2.468.069 5.145-1.753 6.968-1.823 1.823-4.5 2.496-6.969 1.753l-32.526-9.795c-3.699-1.114-5.798-5.022-4.684-8.721s5.022-5.798 8.721-4.684zm-44.859 122.299h-69.835c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7h69.835l-5.412-2.907c-3.403-1.828-4.682-6.076-2.854-9.479 1.828-3.404 6.075-4.683 9.479-2.855l29.926 16.074c2.271 1.22 3.688 3.589 3.688 6.167 0 2.577-1.417 4.947-3.688 6.166l-29.926 16.074c-3.404 1.828-7.651.549-9.479-2.855-1.828-3.403-.549-7.651 2.854-9.479zm54.758 118.198-49.38 49.38c-2.732 2.732-7.168 2.732-9.9 0s-2.732-7.167 0-9.899l49.381-49.381-5.882 1.772c-3.699 1.114-7.607-.985-8.721-4.685-1.114-3.699.985-7.607 4.684-8.721l32.526-9.795c2.469-.743 5.146-.07 6.969 1.753 1.822 1.823 2.496 4.5 1.753 6.968l-9.796 32.527c-1.114 3.699-5.021 5.798-8.721 4.684-3.699-1.114-5.798-5.022-4.684-8.721zm240.497-240.497 5.882-1.771c3.699-1.114 7.607.985 8.721 4.684s-.985 7.607-4.684 8.721l-32.526 9.795c-2.469.743-5.146.07-6.969-1.753-1.822-1.823-2.496-4.5-1.753-6.968l9.796-32.526c1.114-3.7 5.021-5.799 8.721-4.685 3.699 1.114 5.798 5.022 4.684 8.722l-1.771 5.881 49.38-49.38c2.732-2.732 7.168-2.732 9.9 0s2.732 7.168 0 9.899zm44.859 122.299 5.412 2.906c3.403 1.828 4.682 6.076 2.854 9.479-1.828 3.404-6.075 4.683-9.479 2.855l-29.926-16.074c-2.271-1.219-3.688-3.589-3.688-6.166 0-2.578 1.417-4.947 3.688-6.167l29.926-16.074c3.404-1.828 7.651-.549 9.479 2.855 1.828 3.403.549 7.651-2.854 9.479l-5.412 2.907h69.835c3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7zm-54.758 118.198 1.771 5.882c1.114 3.699-.985 7.607-4.684 8.721-3.7 1.114-7.607-.985-8.721-4.684l-9.796-32.527c-.743-2.468-.069-5.145 1.753-6.968 1.823-1.823 4.5-2.496 6.969-1.753l32.526 9.795c3.699 1.114 5.798 5.022 4.684 8.721-1.114 3.7-5.022 5.799-8.721 4.685l-5.882-1.772 49.381 49.381c2.732 2.732 2.732 7.167 0 9.899s-7.168 2.732-9.9 0z\"></path></svg>				\n									<h5>\n							gennemtænkte løsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"outline\"><path d=\"M486.41,144A28,28,0,0,0,472,92H349.123l5.457-21.828a48.513,48.513,0,0,0-12.848-46.153A41.035,41.035,0,0,0,312.609,12H308a8.009,8.009,0,0,0-8,8V47.413l-19.233,64.112A17.376,17.376,0,0,1,268,123.539V112a4,4,0,0,0-4-4H152a4,4,0,0,0-4,4v72a4,4,0,0,0,8,0V116h72V276H156V248a4,4,0,0,0-8,0v32a4,4,0,0,0,4,4H264a4,4,0,0,0,4-4V268.5h11.168A37.07,37.07,0,0,1,305.092,279a45.025,45.025,0,0,0,31.48,12.752L440,292a27.987,27.987,0,0,0,19.369-48.2,27.987,27.987,0,0,0,16-48A28,28,0,0,0,486.41,144ZM260,276H236V116h24Zm212-88H396a4,4,0,0,0,0,8h60a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h40a20,20,0,0,1,.01,40l-103.428-.25a37.07,37.07,0,0,1-25.924-10.5,45.031,45.031,0,0,0-31.49-12.752H268V131.686a25.317,25.317,0,0,0,20.429-17.862l19.4-64.675A4,4,0,0,0,308,48V20h4.609a33.082,33.082,0,0,1,23.481,9.69,40.507,40.507,0,0,1,10.728,38.541l-6.7,26.8A4,4,0,0,0,344,100H472a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h72a20,20,0,0,1,0,40Z\"></path><path d=\"M194.5,183.243l-1.9-.217a4,4,0,0,0-4.169,2.491L184.29,195.9H135.278l-3.539-9.317a4,4,0,0,0-7.478,2.84l2.459,6.477h-8.474L68.452,156.872a4,4,0,1,0-4.935,6.3L77.6,174.209,56.961,194.48l-6.636-5.491a4,4,0,1,0-5.1,6.163L87.219,229.9a44.1,44.1,0,0,0,28.05,10.1H212a8.009,8.009,0,0,0,8-8V203.9a8.009,8.009,0,0,0-8-8h-8v-2.01A10.708,10.708,0,0,0,194.5,183.243ZM212,203.9V232H115.269a36.081,36.081,0,0,1-22.951-8.264l-29.16-24.128,20.8-20.422L114.4,203.045a4,4,0,0,0,2.468.852H187a4,4,0,0,0,3.715-2.517l3.929-9.843a2.712,2.712,0,0,1,1.356,2.35v6.01a4,4,0,0,0,4,4Z\"></path><path d=\"M223.084,484.672,200.87,469.863V346.36A44.1,44.1,0,0,0,195.327,325l-17.183-30.94a4,4,0,0,0-7,3.884l17.184,30.94a36.073,36.073,0,0,1,4.537,17.478V468H164.333a4,4,0,1,0,0,8h31.321l12,8H152.865V352a4,4,0,0,0-.358-1.655l-25.454-56A4,4,0,0,0,123.411,292H114.2a4,4,0,0,0-3.945,4.658l8.862,53.175a36.016,36.016,0,0,1-1.951,18.949L78.642,468H48.333a4,4,0,1,0,0,8H80.377L92,484H32.088L76.63,361.366a4.017,4.017,0,0,0,.183-2.044L61.1,268H136a4,4,0,0,0,0-8H59.233L30.555,173.966A19.723,19.723,0,0,1,49.27,148H76a12,12,0,0,0,24,0h15.2a21.975,21.975,0,0,1,8.395,1.652l10.889,4.458a4,4,0,1,0,3.032-7.4L126.63,142.25A29.938,29.938,0,0,0,115.2,140H100v-4.527A16.014,16.014,0,0,0,112,120V103.473A16.014,16.014,0,0,0,124,88V80a4,4,0,0,0-4-4H90A22.025,22.025,0,0,0,68,98v18a12.02,12.02,0,0,0,8,11.314V140H49.27a27.723,27.723,0,0,0-26.305,36.5l29.493,88.482,16.29,94.655-46.128,127A4,4,0,0,0,26.38,492h78.485a4,4,0,0,0,2.268-7.3L86.3,470.368l38.318-98.69a44.018,44.018,0,0,0,2.385-23.16L118.921,300h1.914l24.03,52.867V488a4,4,0,0,0,4,4h72a4,4,0,0,0,2.219-7.328ZM76,98A14.015,14.015,0,0,1,90,84h26v4a8.009,8.009,0,0,1-8,8H92a4,4,0,0,0-4,4,11.962,11.962,0,0,1-1.53,5.881A12.044,12.044,0,0,0,76,104.686Zm4,14a3.981,3.981,0,0,1,3.407,1.9,4,4,0,0,0,5.956.975c.207-.171.7-.648.7-.648.032-.028.061-.057.09-.087A19.907,19.907,0,0,0,95.6,104H104v16a8.009,8.009,0,0,1-8,8,12.133,12.133,0,0,1-2.681-.3,4,4,0,1,0-1.775,7.8c.151.035.3.06.456.091V148a4,4,0,1,1-8,0V124a4,4,0,0,0-4-4,4,4,0,0,1,0-8Z\"></path></g></svg>				\n									<h5>\n							arbejde udført med ansvar						\n					</h5>\n				<p>Vi lover ikke mere, end vi kan holde – men vi holder det, vi lover.</p>			<h2>KONTAKT OS</h2>		<p>Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.</p>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 13:55:36', '2026-01-26 13:55:36', '', 10, 'https://mrarif.me/cpnordic/?p=556', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(540, 1, '2026-01-26 13:39:54', '2026-01-26 13:39:54', '<h1>CP NORDIC ApS</h1>					<h4>Byggeri – Tømrerarbejde og tagdækning</h4>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>					\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle ANMELDELSER\n					</a>\n					<h2>HVORFOR VÆLGE CP NORDIC ApS?</h2>		<p>Når du vælger CP NORDIC ApS, får du:</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 450 450\" width=\"512\"><g><g><path d=\"m225 165.2c-25.9 0-48.9-18.8-53.3-45.2-2.4-14.2.9-28.6 9.3-40.3 8.4-11.8 20.9-19.5 35.1-21.9 29.4-4.9 57.3 15 62.2 44.5 4.9 29.4-15 57.3-44.4 62.2-3 .5-6 .7-8.9.7zm-7.6-99.8c-12.2 2-22.9 8.7-30.1 18.8s-10.1 22.4-8 34.6c3.8 22.7 23.5 38.8 45.7 38.8 2.5 0 5.1-.2 7.6-.6 25.2-4.2 42.3-28.1 38.1-53.4s-28.1-42.4-53.3-38.2z\"></path><path d=\"m255.2 115c-2.1 0-3.8-1.7-3.8-3.8 0-14.6-11.8-26.4-26.4-26.4-2.1 0-3.8-1.7-3.8-3.8s1.7-3.8 3.8-3.8c18.8 0 34.1 15.3 34.1 34.1 0 2-1.8 3.7-3.9 3.7z\"></path><path d=\"m236.1 203h-22.2c-2.1 0-3.8-1.7-3.8-3.8v-14.1c-3.1-.6-6.1-1.4-9.1-2.4l-7 12.2c-1.1 1.8-3.4 2.5-5.3 1.4l-19.2-11.1c-.9-.5-1.5-1.4-1.8-2.3-.3-1-.1-2 .4-2.9l7-12.1c-2.4-2.1-4.6-4.3-6.7-6.6l-12.1 7c-1.8 1.1-4.2.4-5.2-1.4l-11.1-19.2c-1.1-1.8-.4-4.2 1.4-5.2l11.9-6.8c-1-3-1.9-6.1-2.6-9.3h-13.7c-2.1 0-3.8-1.7-3.8-3.8v-22.2c0-2.1 1.7-3.8 3.8-3.8h13.4c.6-3.2 1.4-6.4 2.4-9.5l-11.5-6.6c-1.8-1.1-2.5-3.4-1.4-5.3l11.1-19.6c.5-.9 1.4-1.5 2.3-1.8s2-.1 2.9.4l11.3 6.6c2.2-2.5 4.5-4.8 7-7l-6.5-11.3c-.5-.9-.6-1.9-.4-2.9.3-1 .9-1.8 1.8-2.3l19.2-11.1c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l6.4 11.2c3.1-1.1 6.4-1.9 9.7-2.6v-13c0-2.1 1.7-3.8 3.8-3.8h22.2c2.1 0 3.8 1.7 3.8 3.8v12.8c3.3.7 6.5 1.5 9.7 2.6l6.5-11.2c.5-.9 1.4-1.5 2.3-1.8 1-.3 2-.1 2.9.4l19.2 11.1c.9.5 1.5 1.3 1.8 2.3s.1 2-.4 2.9l-6.5 11.3c2.5 2.2 4.8 4.5 7 7.1l11.3-6.6c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l11.1 19.2c1.1 1.8.4 4.2-1.4 5.3l-11.5 6.6c1 3.1 1.8 6.3 2.5 9.5h13.6c2.1 0 3.8 1.7 3.8 3.8v22.2c0 2.1-1.7 3.8-3.8 3.8h-13.6c-.6 3.1-1.5 6.2-2.5 9.3l11.9 6.8c1.8 1.1 2.5 3.4 1.4 5.2l-11.2 19.5c-1.1 1.8-3.4 2.5-5.2 1.4l-12-7c-2.1 2.4-4.4 4.6-6.7 6.6l7 12.1c.5.9.6 1.9.4 2.9s-.9 1.8-1.8 2.3l-19.2 11.1c-1.8 1.1-4.2.4-5.2-1.4l-7-12.2c-3 1-6 1.8-9.1 2.4v14.1c-.2 2.3-2 4-4.1 4zm-18.4-7.7h14.5v-13.5c0-1.9 1.4-3.5 3.3-3.8 4.7-.7 9.4-2 13.8-3.7 1.8-.7 3.8 0 4.7 1.7l6.7 11.6 12.6-7.3-6.7-11.6c-1-1.6-.5-3.7.9-4.9 3.7-3 7.2-6.4 10.2-10.1 1.2-1.5 3.3-1.8 4.9-.9l11.5 6.6 7.3-12.6-11.3-6.5c-1.6-.9-2.4-3-1.6-4.7 1.8-4.5 3.1-9.2 3.9-14 .3-1.9 1.9-3.2 3.8-3.2h13v-14.6h-12.8c-1.9 0-3.5-1.4-3.8-3.3-.7-4.8-2-9.6-3.7-14.2-.7-1.8 0-3.7 1.7-4.7l10.9-6.3-7.3-12.6-10.8 6.3c-1.6.9-3.7.6-4.9-.9-3.1-3.9-6.6-7.4-10.4-10.6-1.5-1.2-1.9-3.3-.9-4.9l6.2-10.7-12.6-7.3-6.1 10.6c-1 1.6-3 2.3-4.7 1.7-4.6-1.8-9.5-3.1-14.4-3.9-1.9-.3-3.3-1.9-3.3-3.8v-12.2h-14.5v12.3c0 1.9-1.4 3.5-3.3 3.8-5 .8-9.8 2.1-14.4 3.9-1.8.7-3.8 0-4.7-1.7l-6.1-10.6-12.6 7.3 6.2 10.7c.9 1.6.6 3.7-.9 4.9-3.9 3.1-7.4 6.7-10.4 10.6-1.2 1.5-3.3 1.9-4.9.9l-10.8-6.3-7.3 12.6 10.9 6.3c1.6.9 2.3 2.9 1.7 4.7-1.7 4.6-3 9.4-3.7 14.2-.3 1.9-1.9 3.3-3.8 3.3h-12.8v14.5h13c1.9 0 3.5 1.4 3.8 3.2.8 4.8 2.1 9.5 3.9 14 .7 1.8 0 3.8-1.6 4.7l-11.3 6.5 7.3 12.6 11.5-6.6c1.6-.9 3.7-.6 4.9.9 3 3.7 6.5 7.1 10.3 10.1 1.5 1.2 1.9 3.3.9 4.9l-6.7 11.6 12.6 7.3 6.7-11.6c.9-1.6 2.9-2.3 4.7-1.7 4.5 1.7 9.1 2.9 13.8 3.7 1.9.3 3.3 1.9 3.3 3.8z\"></path></g><g><g><g><path d=\"m45.3 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m153.9 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path></g><g><path d=\"m189.3 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.2c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c0 2.1-1.7 3.8-3.8 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m73.3 326.4c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m126 326.4c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m99.7 325.6c-.6 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4s4.1 1.1 4.4 3.2c2.4 16.5 12.3 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m50.2 266.6c-.1 0-.2 0-.3 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.7 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-8.9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.5 2.2zm81.8-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13.1-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.4-.7 2.3-.7z\"></path></g></g></g><g><g><path d=\"m296.1 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m404.7 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path></g><g><path d=\"m440 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.1c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c.2 2.1-1.6 3.8-3.7 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m324 326.3c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m376.7 326.3c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m350.4 325.6c-.5 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4 2.1-.3 4 1.1 4.4 3.2 2.4 16.5 12.4 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m301 266.6c-.1 0-.2 0-.4 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.6 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.4 2.2zm81.7-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.5-.7 2.3-.7z\"></path></g></g></g></g></g></svg>				\n									<h5>\n							et ungt og engageret team						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"496pt\" viewBox=\"0 0 496 496\" width=\"496pt\"><path d=\"m440 328h-28.207031c5.078125-6.703125 8.207031-14.960938 8.207031-24 0-8.824219-7.175781-16-16-16h-12v-19.960938c59.574219-14.445312 104-68.085937 104-132.039062 0-74.992188-61.007812-136-136-136s-136 61.007812-136 136c0 63.953125 44.425781 117.59375 104 132.039062v19.960938h-8.449219c-6.167969 0-12.359375 1.464844-17.886719 4.214844l-50.480468 25.25c-3.320313 1.664062-7.03125 2.535156-10.734375 2.535156h-40.449219v-16h-104v16h56v56h16v-56h16v128h-16v-56h-16v56h-56v16h104v-16h40.449219c3.703125 0 7.414062.871094 10.734375 2.527344l34.488281 17.25c5.519531 2.757812 11.710937 4.222656 17.878906 4.222656h24.449219v24h64v-24h48c13.230469 0 24-10.769531 24-24 0-6.167969-2.40625-11.742188-6.238281-16 3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16 0-13.230469-10.769531-24-24-24zm8 24c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm-208-280c0-66.167969 53.832031-120 120-120s120 53.832031 120 120-53.832031 120-120 120-120-53.832031-120-120zm104 134.976562c5.257812.617188 10.574219 1.023438 16 1.023438s10.742188-.40625 16-1.023438v17.023438h-32zm-40.449219 185.023438c-3.703125 0-7.414062-.871094-10.734375-2.527344l-34.488281-17.25c-5.519531-2.757812-11.710937-4.222656-17.878906-4.222656h-40.449219v-96h40.449219c6.167969 0 12.359375-1.464844 17.886719-4.214844l50.480468-25.25c3.320313-1.664062 7.03125-2.535156 10.734375-2.535156h84.449219c0 13.230469-10.769531 24-24 24h-48.28125l-23.863281 35.808594c-6.101563 9.160156-14.527344 16.589844-24.367188 21.503906-8.753906 4.375-18.542969 6.6875-28.320312 6.6875h-15.167969v16h15.167969c12.246093 0 24.519531-2.894531 35.472656-8.375 12.328125-6.160156 22.878906-15.480469 30.527344-26.945312l6.832031-10.253907v93.574219zm40.449219 24v-136h17.472656c-.898437 2.511719-1.472656 5.183594-1.472656 8 0 6.167969 2.40625 11.742188 6.238281 16-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16 0 10.414062 6.710938 19.214844 16 22.527344v9.472656zm96-24h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8s-3.59375 8-8 8zm0 0\"></path><path d=\"m394.878906 73.007812-7.757812 13.984376c17.816406 9.878906 28.878906 28.664062 28.878906 49.007812h16c0-26.160156-14.222656-50.296875-37.121094-62.992188zm0 0\"></path><path d=\"m360 80c4.734375 0 9.449219.59375 14.007812 1.769531l3.976563-15.503906c-5.855469-1.496094-11.90625-2.265625-17.984375-2.265625zm0 0\"></path><path d=\"m360 48c48.519531 0 88 39.480469 88 88 0 20.753906-7.398438 40.910156-20.832031 56.785156l12.207031 10.34375c15.882812-18.761718 24.625-42.601562 24.625-67.128906 0-57.34375-46.65625-104-104-104-24.527344 0-48.367188 8.753906-67.128906 24.632812l10.335937 12.199219c15.871094-13.433593 36.039063-20.832031 56.792969-20.832031zm0 0\"></path><path d=\"m427.128906 215.367188-10.335937-12.199219c-15.871094 13.433593-36.039063 20.832031-56.792969 20.832031-48.519531 0-88-39.480469-88-88 0-20.753906 7.398438-40.910156 20.832031-56.785156l-12.207031-10.34375c-15.882812 18.761718-24.625 42.601562-24.625 67.128906 0 57.34375 46.65625 104 104 104 24.527344 0 48.367188-8.753906 67.128906-24.632812zm0 0\"></path><path d=\"m121.214844 165.640625c4.953125-1.375 9.695312-3.34375 14.183594-5.878906l9.769531 4.886719 19.472656-19.480469-4.886719-9.769531c2.535156-4.496094 4.503906-9.230469 5.886719-14.183594l10.359375-3.445313v-27.53125l-10.351562-3.453125c-1.375-4.953125-3.34375-9.707031-5.886719-14.183594l4.886719-9.777343-19.472657-19.472657-9.769531 4.886719c-4.484375-2.535156-9.230469-4.503906-14.183594-5.878906l-3.453125-10.359375h-27.539062l-3.445313 10.359375c-4.953125 1.375-9.695312 3.34375-14.183594 5.878906l-9.777343-4.886719-19.472657 19.472657 4.886719 9.777343c-2.535156 4.488282-4.503906 9.230469-5.886719 14.183594l-10.351562 3.445313v27.53125l10.351562 3.453125c1.375 4.953125 3.34375 9.695312 5.886719 14.183594l-4.886719 9.769531 19.472657 19.480469 9.769531-4.886719c4.484375 2.535156 9.230469 4.503906 14.183594 5.878906l3.453125 10.359375h27.539062zm-12.304688-13.679687-2.679687 8.039062h-4.460938l-2.679687-8.039062-4.554688-.90625c-6.128906-1.222657-11.878906-3.605469-17.109375-7.09375l-3.867187-2.578126-7.574219 3.800782-3.160156-3.167969 3.792969-7.582031-2.578126-3.859375c-3.488281-5.222657-5.871093-10.980469-7.09375-17.109375l-.914062-4.554688-8.03125-2.679687v-4.46875l8.03125-2.671875.914062-4.554688c1.222657-6.136718 3.613282-11.886718 7.09375-17.109375l2.578126-3.859375-3.792969-7.589844 3.160156-3.160156 7.574219 3.800782 3.867187-2.578126c5.222657-3.488281 10.980469-5.863281 17.109375-7.09375l4.554688-.90625 2.679687-8.039062h4.460938l2.679687 8.039062 4.554688.90625c6.128906 1.222657 11.878906 3.605469 17.109375 7.09375l3.867187 2.578126 7.574219-3.800782 3.160156 3.160156-3.792969 7.589844 2.578126 3.859375c3.488281 5.214844 5.871093 10.972657 7.09375 17.109375l.914062 4.554688 8.03125 2.679687v4.46875l-8.03125 2.671875-.914062 4.554688c-1.222657 6.128906-3.613282 11.878906-7.09375 17.109375l-2.578126 3.859375 3.792969 7.582031-3.160156 3.167969-7.574219-3.800782-3.867187 2.578126c-5.222657 3.488281-10.980469 5.863281-17.109375 7.09375zm0 0\"></path><path d=\"m104 72c-17.648438 0-32 14.351562-32 32s14.351562 32 32 32 32-14.351562 32-32-14.351562-32-32-32zm0 48c-8.824219 0-16-7.175781-16-16s7.175781-16 16-16 16 7.175781 16 16-7.175781 16-16 16zm0 0\"></path><path d=\"m160 248v-40h48v-208h-208v208h106.664062zm-144-232h176v176h-48v24l-32-24h-96zm0 0\"></path><path d=\"m0 272h16v16h-16zm0 0\"></path><path d=\"m32 272h16v16h-16zm0 0\"></path><path d=\"m64 272h16v16h-16zm0 0\"></path><path d=\"m32 304h16v16h-16zm0 0\"></path><path d=\"m64 304h16v16h-16zm0 0\"></path><path d=\"m0 480h16v16h-16zm0 0\"></path><path d=\"m32 480h16v16h-16zm0 0\"></path><path d=\"m64 480h16v16h-16zm0 0\"></path><path d=\"m32 448h16v16h-16zm0 0\"></path><path d=\"m64 448h16v16h-16zm0 0\"></path></svg>				\n									<h5>\n							fokus på kvalitet og detaljer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m469.12 408.93-67.26-33.63v-22.13c10.71-7.69 18.6-19.07 21.78-32.27h5.28c8.81 0 15.98-7.17 15.98-15.98v-5.29c0-6.35-3.74-11.84-9.12-14.41 5.19-18.64-1.65-39.76-19.44-59.78-12.58-14.16-30.67-22.27-49.62-22.27-18.93 0-37.01 8.12-49.59 22.27-13.38 15.05-20.95 41.01-14.03 59.62-5.56 2.5-9.45 8.09-9.45 14.57v5.29c0 8.81 7.17 15.98 15.98 15.98h5.55c3.16 13.09 10.94 24.39 21.51 32.08v22.32l-67.26 33.63c-16.7 5.87-27.89 21.6-27.89 39.28v41.63c0 3.31 2.69 6 6 6h243.46c3.31 0 6-2.69 6-6v-41.63c0-17.68-11.19-33.41-27.88-39.28zm-62.24-17.7-15.83 27.66-13.29-13.29 19.29-19.29zm-37.61 5.88-20.59-20.58v-16.91c6.41 2.57 13.4 4.01 20.72 4.01 7.22 0 14.11-1.39 20.45-3.9v16.8zm63.63-97.48v5.29c0 2.16-1.82 3.98-3.98 3.98h-3.74c.01-.36.03-.71.03-1.07v-12.18h3.71c2.15-.01 3.98 1.82 3.98 3.98zm-119.29 8.2v1.07h-3.98c-2.16 0-3.98-1.82-3.98-3.98v-5.29c0-2.16 1.82-3.98 3.98-3.98l3.98.22zm1.95-24.19c-7.33-13.69-.89-37.39 10.53-50.24 10.31-11.6 25.12-18.25 40.63-18.25 15.52 0 30.34 6.65 40.65 18.25 8.43 9.48 21.3 27.59 17.4 46.39-5.66-.35-10.67-2.55-14.4-6.36-5.37-5.49-7.72-14-6.63-23.94.29-2.62-1.17-5.13-3.6-6.17s-5.25-.37-6.95 1.65c-19.33 22.92-45.95 36.76-73.9 38.68h-3.73zm10.05 24.19v-12.73c24.57-2.92 47.92-14.05 66.73-31.8 1.43 7.26 4.63 13.6 9.45 18.52 3.27 3.35 7.14 5.89 11.41 7.58v18.42c0 24.15-19.65 43.8-43.8 43.8s-43.79-19.64-43.79-43.79zm15.89 78.48 19.29 19.29-13.29 13.29-15.84-27.66zm3.22 97.53h-39.42v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.76v-35.63c0-12.68 8.1-23.95 20.15-28.05.26-.09.51-.19.75-.31l46.47-23.23 20.07 35.06c.93 1.62 2.56 2.72 4.41 2.97.27.04.53.05.79.05 1.58 0 3.11-.62 4.24-1.76l.14-.14zm12.08 0 7.41-64.69 5.06-5.06 4.84 4.84 7.86 64.92h-25.17zm128.2 0h-39.76v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.18l-6.2-51.17.25.25c1.13 1.13 2.66 1.76 4.24 1.76.26 0 .53-.02.79-.05 1.85-.25 3.48-1.34 4.41-2.97l20.07-35.06 46.47 23.23c.24.12.49.23.75.31 12.05 4.1 20.15 15.38 20.15 28.05v35.65zm-67.04-346.65h-10.84l28.38 39.84 28.38-39.84h-10.84c-3.31 0-6-2.69-6-6v-64.58h-98.7c-3.31 0-6-2.69-6-6s2.69-6 6-6h104.7c3.31 0 6 2.69 6 6v64.58h16.48c2.25 0 4.3 1.25 5.33 3.25s.86 4.4-.45 6.23l-40.02 56.18c-1.13 1.58-2.95 2.52-4.89 2.52s-3.76-.94-4.89-2.52l-40.02-56.18c-1.3-1.83-1.48-4.23-.45-6.23s3.09-3.25 5.33-3.25h16.48v-23.5h-65.38c-3.31 0-6-2.69-6-6s2.69-6 6-6h71.38c3.31 0 6 2.69 6 6v35.5c.02 3.31-2.67 6-5.98 6zm-118.44 50.65v-133.26c0-21.18-17.23-38.41-38.41-38.41h-207.7c-21.18-.01-38.41 17.23-38.41 38.41v133.26c0 21.18 17.23 38.41 38.41 38.41h105.8l64.8 55.11c1.11.94 2.49 1.43 3.89 1.43.85 0 1.71-.18 2.52-.55 2.12-.98 3.48-3.11 3.48-5.45v-50.54h27.21c21.18 0 38.41-17.23 38.41-38.41zm-71.62 26.41c-3.31 0-6 2.69-6 6v43.56l-56.59-48.13c-1.08-.92-2.46-1.43-3.89-1.43h-108.01c-14.56 0-26.41-11.85-26.41-26.41v-133.26c0-14.56 11.85-26.41 26.41-26.41h207.69c14.56 0 26.41 11.85 26.41 26.41v133.26c0 14.56-11.85 26.41-26.41 26.41zm-156.34-87.87h56.97c3.31 0 6-2.69 6-6v-39.2l8.55-8.55c2.34-2.34 2.34-6.14 0-8.49-2.34-2.34-6.14-2.34-8.48 0l-.7.7c-.98-1.97-3.01-3.32-5.36-3.32h-56.98c-3.31 0-6 2.69-6 6v52.85c0 3.32 2.69 6.01 6 6.01zm6-52.86h44.97v2.69l-18.16 18.16-8.84-8.84c-2.34-2.34-6.14-2.34-8.49 0-2.34 2.34-2.34 6.14 0 8.49l13.08 13.08c1.17 1.17 2.71 1.76 4.24 1.76s3.07-.59 4.24-1.76l13.92-13.92v21.2h-44.96zm173.62 3.08c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 31.92c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 36.52c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.68 5.99 6zm0 31.92c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.69 5.99 6zm-119.36 165.01h10.84l-28.38-39.84-28.38 39.84h10.84c3.31 0 6 2.69 6 6v64.58h98.7c3.31 0 6 2.69 6 6s-2.69 6-6 6h-104.69c-3.31 0-6-2.69-6-6v-64.58h-16.48c-2.25 0-4.3-1.25-5.33-3.25s-.86-4.4.45-6.23l40.02-56.18c1.13-1.58 2.95-2.52 4.89-2.52s3.76.94 4.89 2.52l40.02 56.18c1.3 1.83 1.48 4.23.45 6.23s-3.09 3.25-5.33 3.25h-16.48v23.5h65.38c3.31 0 6 2.69 6 6s-2.69 6-6 6h-71.38c-3.31 0-6-2.69-6-6v-35.5c-.03-3.31 2.66-6 5.97-6z\"></path></svg>				\n									<h5>\n							ærlig<br> rådgivning						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 510 510\"><path d=\"m192.036 385.845c-4.787-46.972-19.459-64.336-30.658-82.352-8.672-13.951-15.5-28.245-15.5-54.252 0-60.242 48.865-109.109 109.135-109.109 60.242 0 109.109 48.866 109.109 109.109 0 26.007-6.828 40.301-15.5 54.252-11.199 18.016-25.871 35.38-30.658 82.352 9.985 2.864 17.345 12.101 17.345 22.975v36.44c0 13.109-10.747 23.866-23.893 23.866h-10.334v9.945c0 12.588-10.341 22.929-22.93 22.929h-46.304c-12.589 0-22.93-10.341-22.93-22.929v-9.945h-10.334c-13.146 0-23.893-10.757-23.893-23.866v-36.44c0-10.874 7.36-20.111 17.345-22.975zm111.948-.917c4.199-42.194 15.78-62.332 26.488-79.049 10.147-15.842 19.65-28.207 19.65-56.638 0-52.513-42.597-95.109-95.109-95.109-52.537 0-95.135 42.596-95.135 95.109 0 28.431 9.503 40.796 19.65 56.638 10.708 16.717 22.289 36.855 26.488 79.049zm2.554-78.61c-1.175 13.701-11.985 24.191-24.783 24.191-13.527 0-24.862-12.086-24.862-26.673v-99.328c0-14.12 11.335-26.673 24.862-26.673 11.309 0 21.031 8.139 23.975 19.497 9.12 3.904 15.688 13.438 15.688 24.78 0 1.153-.068 2.289-.201 3.403 5.078 5.326 8.283 12.802 8.283 21.117 0 6.39-1.889 12.262-5.06 17.053 1.996 4.099 3.13 8.773 3.13 13.76 0 14.1-9.065 25.697-21.032 28.873zm-16.452-109.977c-1.964-2.729-4.916-4.506-8.331-4.506-6.192 0-10.862 6.21-10.862 12.673v99.328c0 6.677 4.67 12.673 10.862 12.673 5.516 0 9.822-4.614 10.717-10.425-4.709-1.416-8.923-4.144-12.279-7.814-2.607-2.852-2.409-7.283.443-9.89 2.851-2.607 7.282-2.408 9.889.443 2.416 2.642 5.72 4.356 9.402 4.356 7.733 0 13.643-7.218 13.643-15.734s-5.91-15.734-13.643-15.734c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7 5.352 0 10.388 1.655 14.658 4.533.593-1.743.915-3.634.915-5.612 0-2.11-.366-4.128-1.036-5.972-.769.858-1.588 1.66-2.453 2.397-2.94 2.507-7.361 2.156-9.869-.784-2.507-2.939-2.155-7.361.784-9.868 2.773-2.365 4.492-6.122 4.492-10.293 0-6.072-3.705-11.374-8.898-12.467-.154-.023-.307-.052-.458-.085-.499-.08-1.01-.121-1.532-.121-2.947 0-5.591 1.389-7.515 3.525-2.585 2.87-7.015 3.101-9.886.515-2.87-2.586-3.101-7.015-.515-9.886 3.111-3.453 7.059-5.988 11.472-7.252zm-104.526 67.344c-3.171-4.791-5.06-10.663-5.06-17.053 0-8.307 3.198-15.777 8.284-21.104-.133-1.118-.202-2.258-.202-3.416 0-11.354 6.582-20.897 15.717-24.792 2.948-11.354 12.67-19.485 23.946-19.485 13.56 0 24.888 12.555 24.888 26.673v99.328c0 14.585-11.328 26.673-24.888 26.673-12.765 0-23.578-10.484-24.757-24.184-11.98-3.166-21.058-14.769-21.058-28.88 0-4.987 1.134-9.661 3.13-13.76zm9.982-23.036c-.675 1.847-1.042 3.869-1.042 5.983 0 1.978.322 3.869.915 5.612 4.27-2.878 9.306-4.533 14.658-4.533 3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7-7.733 0-13.643 7.218-13.643 15.734s5.91 15.734 13.643 15.734c3.682 0 6.986-1.714 9.402-4.356 2.607-2.851 7.038-3.05 9.889-.443 2.852 2.607 3.05 7.038.443 9.89-3.35 3.664-7.556 6.389-12.255 7.807.891 5.813 5.192 10.432 10.693 10.432 6.21 0 10.888-5.993 10.888-12.673v-99.328c0-6.466-4.678-12.673-10.888-12.673-3.404 0-6.349 1.777-8.309 4.507 4.421 1.264 8.367 3.8 11.476 7.251 2.586 2.871 2.355 7.3-.516 9.886-2.87 2.586-7.3 2.355-9.886-.515-1.926-2.138-4.574-3.525-7.54-3.525-.493 0-.976.037-1.448.108-.196.045-.395.082-.596.11-5.165 1.118-8.844 6.404-8.844 12.455 0 1.243.153 2.45.442 3.594.101.284.183.572.246.862.748 2.326 2.071 4.346 3.814 5.823 2.947 2.498 3.311 6.919.813 9.866s-6.919 3.312-9.866.814c-.878-.745-1.71-1.554-2.489-2.422zm3.042 158.279c-5.442 0-9.893 4.451-9.893 9.892v36.44c0 5.423 4.454 9.866 9.893 9.866h17.334c3.866 0 7 3.134 7 7v16.945c0 4.902 4.027 8.929 8.93 8.929h46.304c4.903 0 8.93-4.027 8.93-8.929v-16.945c0-3.866 3.134-7 7-7h17.334c5.439 0 9.893-4.443 9.893-9.866v-36.44c0-5.441-4.451-9.892-9.893-9.892zm63.416-314.093 2.907-5.412c1.828-3.403 6.075-4.683 9.479-2.854 3.403 1.828 4.682 6.075 2.854 9.479l-16.073 29.925c-1.22 2.271-3.589 3.688-6.167 3.688s-4.947-1.417-6.167-3.688l-16.073-29.925c-1.828-3.404-.549-7.651 2.854-9.479 3.404-1.829 7.651-.549 9.479 2.854l2.907 5.412v-69.835c0-3.863 3.137-7 7-7s7 3.137 7 7zm-132.198 54.758-49.381-49.381c-2.732-2.731-2.732-7.167 0-9.899s7.168-2.732 9.9 0l49.38 49.38-1.771-5.881c-1.114-3.7.985-7.608 4.684-8.722 3.7-1.114 7.607.985 8.721 4.685l9.796 32.526c.743 2.468.069 5.145-1.753 6.968-1.823 1.823-4.5 2.496-6.969 1.753l-32.526-9.795c-3.699-1.114-5.798-5.022-4.684-8.721s5.022-5.798 8.721-4.684zm-44.859 122.299h-69.835c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7h69.835l-5.412-2.907c-3.403-1.828-4.682-6.076-2.854-9.479 1.828-3.404 6.075-4.683 9.479-2.855l29.926 16.074c2.271 1.22 3.688 3.589 3.688 6.167 0 2.577-1.417 4.947-3.688 6.166l-29.926 16.074c-3.404 1.828-7.651.549-9.479-2.855-1.828-3.403-.549-7.651 2.854-9.479zm54.758 118.198-49.38 49.38c-2.732 2.732-7.168 2.732-9.9 0s-2.732-7.167 0-9.899l49.381-49.381-5.882 1.772c-3.699 1.114-7.607-.985-8.721-4.685-1.114-3.699.985-7.607 4.684-8.721l32.526-9.795c2.469-.743 5.146-.07 6.969 1.753 1.822 1.823 2.496 4.5 1.753 6.968l-9.796 32.527c-1.114 3.699-5.021 5.798-8.721 4.684-3.699-1.114-5.798-5.022-4.684-8.721zm240.497-240.497 5.882-1.771c3.699-1.114 7.607.985 8.721 4.684s-.985 7.607-4.684 8.721l-32.526 9.795c-2.469.743-5.146.07-6.969-1.753-1.822-1.823-2.496-4.5-1.753-6.968l9.796-32.526c1.114-3.7 5.021-5.799 8.721-4.685 3.699 1.114 5.798 5.022 4.684 8.722l-1.771 5.881 49.38-49.38c2.732-2.732 7.168-2.732 9.9 0s2.732 7.168 0 9.899zm44.859 122.299 5.412 2.906c3.403 1.828 4.682 6.076 2.854 9.479-1.828 3.404-6.075 4.683-9.479 2.855l-29.926-16.074c-2.271-1.219-3.688-3.589-3.688-6.166 0-2.578 1.417-4.947 3.688-6.167l29.926-16.074c3.404-1.828 7.651-.549 9.479 2.855 1.828 3.403.549 7.651-2.854 9.479l-5.412 2.907h69.835c3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7zm-54.758 118.198 1.771 5.882c1.114 3.699-.985 7.607-4.684 8.721-3.7 1.114-7.607-.985-8.721-4.684l-9.796-32.527c-.743-2.468-.069-5.145 1.753-6.968 1.823-1.823 4.5-2.496 6.969-1.753l32.526 9.795c3.699 1.114 5.798 5.022 4.684 8.721-1.114 3.7-5.022 5.799-8.721 4.685l-5.882-1.772 49.381 49.381c2.732 2.732 2.732 7.167 0 9.899s-7.168 2.732-9.9 0z\"></path></svg>				\n									<h5>\n							gennemtænkte løsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"outline\"><path d=\"M486.41,144A28,28,0,0,0,472,92H349.123l5.457-21.828a48.513,48.513,0,0,0-12.848-46.153A41.035,41.035,0,0,0,312.609,12H308a8.009,8.009,0,0,0-8,8V47.413l-19.233,64.112A17.376,17.376,0,0,1,268,123.539V112a4,4,0,0,0-4-4H152a4,4,0,0,0-4,4v72a4,4,0,0,0,8,0V116h72V276H156V248a4,4,0,0,0-8,0v32a4,4,0,0,0,4,4H264a4,4,0,0,0,4-4V268.5h11.168A37.07,37.07,0,0,1,305.092,279a45.025,45.025,0,0,0,31.48,12.752L440,292a27.987,27.987,0,0,0,19.369-48.2,27.987,27.987,0,0,0,16-48A28,28,0,0,0,486.41,144ZM260,276H236V116h24Zm212-88H396a4,4,0,0,0,0,8h60a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h40a20,20,0,0,1,.01,40l-103.428-.25a37.07,37.07,0,0,1-25.924-10.5,45.031,45.031,0,0,0-31.49-12.752H268V131.686a25.317,25.317,0,0,0,20.429-17.862l19.4-64.675A4,4,0,0,0,308,48V20h4.609a33.082,33.082,0,0,1,23.481,9.69,40.507,40.507,0,0,1,10.728,38.541l-6.7,26.8A4,4,0,0,0,344,100H472a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h72a20,20,0,0,1,0,40Z\"></path><path d=\"M194.5,183.243l-1.9-.217a4,4,0,0,0-4.169,2.491L184.29,195.9H135.278l-3.539-9.317a4,4,0,0,0-7.478,2.84l2.459,6.477h-8.474L68.452,156.872a4,4,0,1,0-4.935,6.3L77.6,174.209,56.961,194.48l-6.636-5.491a4,4,0,1,0-5.1,6.163L87.219,229.9a44.1,44.1,0,0,0,28.05,10.1H212a8.009,8.009,0,0,0,8-8V203.9a8.009,8.009,0,0,0-8-8h-8v-2.01A10.708,10.708,0,0,0,194.5,183.243ZM212,203.9V232H115.269a36.081,36.081,0,0,1-22.951-8.264l-29.16-24.128,20.8-20.422L114.4,203.045a4,4,0,0,0,2.468.852H187a4,4,0,0,0,3.715-2.517l3.929-9.843a2.712,2.712,0,0,1,1.356,2.35v6.01a4,4,0,0,0,4,4Z\"></path><path d=\"M223.084,484.672,200.87,469.863V346.36A44.1,44.1,0,0,0,195.327,325l-17.183-30.94a4,4,0,0,0-7,3.884l17.184,30.94a36.073,36.073,0,0,1,4.537,17.478V468H164.333a4,4,0,1,0,0,8h31.321l12,8H152.865V352a4,4,0,0,0-.358-1.655l-25.454-56A4,4,0,0,0,123.411,292H114.2a4,4,0,0,0-3.945,4.658l8.862,53.175a36.016,36.016,0,0,1-1.951,18.949L78.642,468H48.333a4,4,0,1,0,0,8H80.377L92,484H32.088L76.63,361.366a4.017,4.017,0,0,0,.183-2.044L61.1,268H136a4,4,0,0,0,0-8H59.233L30.555,173.966A19.723,19.723,0,0,1,49.27,148H76a12,12,0,0,0,24,0h15.2a21.975,21.975,0,0,1,8.395,1.652l10.889,4.458a4,4,0,1,0,3.032-7.4L126.63,142.25A29.938,29.938,0,0,0,115.2,140H100v-4.527A16.014,16.014,0,0,0,112,120V103.473A16.014,16.014,0,0,0,124,88V80a4,4,0,0,0-4-4H90A22.025,22.025,0,0,0,68,98v18a12.02,12.02,0,0,0,8,11.314V140H49.27a27.723,27.723,0,0,0-26.305,36.5l29.493,88.482,16.29,94.655-46.128,127A4,4,0,0,0,26.38,492h78.485a4,4,0,0,0,2.268-7.3L86.3,470.368l38.318-98.69a44.018,44.018,0,0,0,2.385-23.16L118.921,300h1.914l24.03,52.867V488a4,4,0,0,0,4,4h72a4,4,0,0,0,2.219-7.328ZM76,98A14.015,14.015,0,0,1,90,84h26v4a8.009,8.009,0,0,1-8,8H92a4,4,0,0,0-4,4,11.962,11.962,0,0,1-1.53,5.881A12.044,12.044,0,0,0,76,104.686Zm4,14a3.981,3.981,0,0,1,3.407,1.9,4,4,0,0,0,5.956.975c.207-.171.7-.648.7-.648.032-.028.061-.057.09-.087A19.907,19.907,0,0,0,95.6,104H104v16a8.009,8.009,0,0,1-8,8,12.133,12.133,0,0,1-2.681-.3,4,4,0,1,0-1.775,7.8c.151.035.3.06.456.091V148a4,4,0,1,1-8,0V124a4,4,0,0,0-4-4,4,4,0,0,1,0-8Z\"></path></g></svg>				\n									<h5>\n							arbejde udført med ansvar						\n					</h5>\n				<p>Vi lover ikke mere, end vi kan holde – men vi holder det, vi lover.</p>			<h2>KONTAKT OS</h2>		<p>Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.</p>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 13:39:54', '2026-01-26 13:39:54', '', 10, 'https://mrarif.me/cpnordic/?p=540', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(541, 1, '2026-01-26 13:40:26', '2026-01-26 13:40:26', '<h1>CP NORDIC ApS</h1>					<h4>Byggeri – Tømrerarbejde og tagdækning</h4>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>					\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle ANMELDELSER\n					</a>\n					<h2>HVORFOR VÆLGE CP NORDIC ApS?</h2>		<p>Når du vælger CP NORDIC ApS, får du:</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 450 450\" width=\"512\"><g><g><path d=\"m225 165.2c-25.9 0-48.9-18.8-53.3-45.2-2.4-14.2.9-28.6 9.3-40.3 8.4-11.8 20.9-19.5 35.1-21.9 29.4-4.9 57.3 15 62.2 44.5 4.9 29.4-15 57.3-44.4 62.2-3 .5-6 .7-8.9.7zm-7.6-99.8c-12.2 2-22.9 8.7-30.1 18.8s-10.1 22.4-8 34.6c3.8 22.7 23.5 38.8 45.7 38.8 2.5 0 5.1-.2 7.6-.6 25.2-4.2 42.3-28.1 38.1-53.4s-28.1-42.4-53.3-38.2z\"></path><path d=\"m255.2 115c-2.1 0-3.8-1.7-3.8-3.8 0-14.6-11.8-26.4-26.4-26.4-2.1 0-3.8-1.7-3.8-3.8s1.7-3.8 3.8-3.8c18.8 0 34.1 15.3 34.1 34.1 0 2-1.8 3.7-3.9 3.7z\"></path><path d=\"m236.1 203h-22.2c-2.1 0-3.8-1.7-3.8-3.8v-14.1c-3.1-.6-6.1-1.4-9.1-2.4l-7 12.2c-1.1 1.8-3.4 2.5-5.3 1.4l-19.2-11.1c-.9-.5-1.5-1.4-1.8-2.3-.3-1-.1-2 .4-2.9l7-12.1c-2.4-2.1-4.6-4.3-6.7-6.6l-12.1 7c-1.8 1.1-4.2.4-5.2-1.4l-11.1-19.2c-1.1-1.8-.4-4.2 1.4-5.2l11.9-6.8c-1-3-1.9-6.1-2.6-9.3h-13.7c-2.1 0-3.8-1.7-3.8-3.8v-22.2c0-2.1 1.7-3.8 3.8-3.8h13.4c.6-3.2 1.4-6.4 2.4-9.5l-11.5-6.6c-1.8-1.1-2.5-3.4-1.4-5.3l11.1-19.6c.5-.9 1.4-1.5 2.3-1.8s2-.1 2.9.4l11.3 6.6c2.2-2.5 4.5-4.8 7-7l-6.5-11.3c-.5-.9-.6-1.9-.4-2.9.3-1 .9-1.8 1.8-2.3l19.2-11.1c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l6.4 11.2c3.1-1.1 6.4-1.9 9.7-2.6v-13c0-2.1 1.7-3.8 3.8-3.8h22.2c2.1 0 3.8 1.7 3.8 3.8v12.8c3.3.7 6.5 1.5 9.7 2.6l6.5-11.2c.5-.9 1.4-1.5 2.3-1.8 1-.3 2-.1 2.9.4l19.2 11.1c.9.5 1.5 1.3 1.8 2.3s.1 2-.4 2.9l-6.5 11.3c2.5 2.2 4.8 4.5 7 7.1l11.3-6.6c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l11.1 19.2c1.1 1.8.4 4.2-1.4 5.3l-11.5 6.6c1 3.1 1.8 6.3 2.5 9.5h13.6c2.1 0 3.8 1.7 3.8 3.8v22.2c0 2.1-1.7 3.8-3.8 3.8h-13.6c-.6 3.1-1.5 6.2-2.5 9.3l11.9 6.8c1.8 1.1 2.5 3.4 1.4 5.2l-11.2 19.5c-1.1 1.8-3.4 2.5-5.2 1.4l-12-7c-2.1 2.4-4.4 4.6-6.7 6.6l7 12.1c.5.9.6 1.9.4 2.9s-.9 1.8-1.8 2.3l-19.2 11.1c-1.8 1.1-4.2.4-5.2-1.4l-7-12.2c-3 1-6 1.8-9.1 2.4v14.1c-.2 2.3-2 4-4.1 4zm-18.4-7.7h14.5v-13.5c0-1.9 1.4-3.5 3.3-3.8 4.7-.7 9.4-2 13.8-3.7 1.8-.7 3.8 0 4.7 1.7l6.7 11.6 12.6-7.3-6.7-11.6c-1-1.6-.5-3.7.9-4.9 3.7-3 7.2-6.4 10.2-10.1 1.2-1.5 3.3-1.8 4.9-.9l11.5 6.6 7.3-12.6-11.3-6.5c-1.6-.9-2.4-3-1.6-4.7 1.8-4.5 3.1-9.2 3.9-14 .3-1.9 1.9-3.2 3.8-3.2h13v-14.6h-12.8c-1.9 0-3.5-1.4-3.8-3.3-.7-4.8-2-9.6-3.7-14.2-.7-1.8 0-3.7 1.7-4.7l10.9-6.3-7.3-12.6-10.8 6.3c-1.6.9-3.7.6-4.9-.9-3.1-3.9-6.6-7.4-10.4-10.6-1.5-1.2-1.9-3.3-.9-4.9l6.2-10.7-12.6-7.3-6.1 10.6c-1 1.6-3 2.3-4.7 1.7-4.6-1.8-9.5-3.1-14.4-3.9-1.9-.3-3.3-1.9-3.3-3.8v-12.2h-14.5v12.3c0 1.9-1.4 3.5-3.3 3.8-5 .8-9.8 2.1-14.4 3.9-1.8.7-3.8 0-4.7-1.7l-6.1-10.6-12.6 7.3 6.2 10.7c.9 1.6.6 3.7-.9 4.9-3.9 3.1-7.4 6.7-10.4 10.6-1.2 1.5-3.3 1.9-4.9.9l-10.8-6.3-7.3 12.6 10.9 6.3c1.6.9 2.3 2.9 1.7 4.7-1.7 4.6-3 9.4-3.7 14.2-.3 1.9-1.9 3.3-3.8 3.3h-12.8v14.5h13c1.9 0 3.5 1.4 3.8 3.2.8 4.8 2.1 9.5 3.9 14 .7 1.8 0 3.8-1.6 4.7l-11.3 6.5 7.3 12.6 11.5-6.6c1.6-.9 3.7-.6 4.9.9 3 3.7 6.5 7.1 10.3 10.1 1.5 1.2 1.9 3.3.9 4.9l-6.7 11.6 12.6 7.3 6.7-11.6c.9-1.6 2.9-2.3 4.7-1.7 4.5 1.7 9.1 2.9 13.8 3.7 1.9.3 3.3 1.9 3.3 3.8z\"></path></g><g><g><g><path d=\"m45.3 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m153.9 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path></g><g><path d=\"m189.3 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.2c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c0 2.1-1.7 3.8-3.8 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m73.3 326.4c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m126 326.4c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m99.7 325.6c-.6 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4s4.1 1.1 4.4 3.2c2.4 16.5 12.3 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m50.2 266.6c-.1 0-.2 0-.3 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.7 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-8.9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.5 2.2zm81.8-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13.1-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.4-.7 2.3-.7z\"></path></g></g></g><g><g><path d=\"m296.1 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m404.7 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path></g><g><path d=\"m440 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.1c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c.2 2.1-1.6 3.8-3.7 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m324 326.3c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m376.7 326.3c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m350.4 325.6c-.5 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4 2.1-.3 4 1.1 4.4 3.2 2.4 16.5 12.4 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m301 266.6c-.1 0-.2 0-.4 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.6 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.4 2.2zm81.7-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.5-.7 2.3-.7z\"></path></g></g></g></g></g></svg>				\n									<h5>\n							et ungt og engageret team						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"496pt\" viewBox=\"0 0 496 496\" width=\"496pt\"><path d=\"m440 328h-28.207031c5.078125-6.703125 8.207031-14.960938 8.207031-24 0-8.824219-7.175781-16-16-16h-12v-19.960938c59.574219-14.445312 104-68.085937 104-132.039062 0-74.992188-61.007812-136-136-136s-136 61.007812-136 136c0 63.953125 44.425781 117.59375 104 132.039062v19.960938h-8.449219c-6.167969 0-12.359375 1.464844-17.886719 4.214844l-50.480468 25.25c-3.320313 1.664062-7.03125 2.535156-10.734375 2.535156h-40.449219v-16h-104v16h56v56h16v-56h16v128h-16v-56h-16v56h-56v16h104v-16h40.449219c3.703125 0 7.414062.871094 10.734375 2.527344l34.488281 17.25c5.519531 2.757812 11.710937 4.222656 17.878906 4.222656h24.449219v24h64v-24h48c13.230469 0 24-10.769531 24-24 0-6.167969-2.40625-11.742188-6.238281-16 3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16 0-13.230469-10.769531-24-24-24zm8 24c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm-208-280c0-66.167969 53.832031-120 120-120s120 53.832031 120 120-53.832031 120-120 120-120-53.832031-120-120zm104 134.976562c5.257812.617188 10.574219 1.023438 16 1.023438s10.742188-.40625 16-1.023438v17.023438h-32zm-40.449219 185.023438c-3.703125 0-7.414062-.871094-10.734375-2.527344l-34.488281-17.25c-5.519531-2.757812-11.710937-4.222656-17.878906-4.222656h-40.449219v-96h40.449219c6.167969 0 12.359375-1.464844 17.886719-4.214844l50.480468-25.25c3.320313-1.664062 7.03125-2.535156 10.734375-2.535156h84.449219c0 13.230469-10.769531 24-24 24h-48.28125l-23.863281 35.808594c-6.101563 9.160156-14.527344 16.589844-24.367188 21.503906-8.753906 4.375-18.542969 6.6875-28.320312 6.6875h-15.167969v16h15.167969c12.246093 0 24.519531-2.894531 35.472656-8.375 12.328125-6.160156 22.878906-15.480469 30.527344-26.945312l6.832031-10.253907v93.574219zm40.449219 24v-136h17.472656c-.898437 2.511719-1.472656 5.183594-1.472656 8 0 6.167969 2.40625 11.742188 6.238281 16-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16 0 10.414062 6.710938 19.214844 16 22.527344v9.472656zm96-24h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8s-3.59375 8-8 8zm0 0\"></path><path d=\"m394.878906 73.007812-7.757812 13.984376c17.816406 9.878906 28.878906 28.664062 28.878906 49.007812h16c0-26.160156-14.222656-50.296875-37.121094-62.992188zm0 0\"></path><path d=\"m360 80c4.734375 0 9.449219.59375 14.007812 1.769531l3.976563-15.503906c-5.855469-1.496094-11.90625-2.265625-17.984375-2.265625zm0 0\"></path><path d=\"m360 48c48.519531 0 88 39.480469 88 88 0 20.753906-7.398438 40.910156-20.832031 56.785156l12.207031 10.34375c15.882812-18.761718 24.625-42.601562 24.625-67.128906 0-57.34375-46.65625-104-104-104-24.527344 0-48.367188 8.753906-67.128906 24.632812l10.335937 12.199219c15.871094-13.433593 36.039063-20.832031 56.792969-20.832031zm0 0\"></path><path d=\"m427.128906 215.367188-10.335937-12.199219c-15.871094 13.433593-36.039063 20.832031-56.792969 20.832031-48.519531 0-88-39.480469-88-88 0-20.753906 7.398438-40.910156 20.832031-56.785156l-12.207031-10.34375c-15.882812 18.761718-24.625 42.601562-24.625 67.128906 0 57.34375 46.65625 104 104 104 24.527344 0 48.367188-8.753906 67.128906-24.632812zm0 0\"></path><path d=\"m121.214844 165.640625c4.953125-1.375 9.695312-3.34375 14.183594-5.878906l9.769531 4.886719 19.472656-19.480469-4.886719-9.769531c2.535156-4.496094 4.503906-9.230469 5.886719-14.183594l10.359375-3.445313v-27.53125l-10.351562-3.453125c-1.375-4.953125-3.34375-9.707031-5.886719-14.183594l4.886719-9.777343-19.472657-19.472657-9.769531 4.886719c-4.484375-2.535156-9.230469-4.503906-14.183594-5.878906l-3.453125-10.359375h-27.539062l-3.445313 10.359375c-4.953125 1.375-9.695312 3.34375-14.183594 5.878906l-9.777343-4.886719-19.472657 19.472657 4.886719 9.777343c-2.535156 4.488282-4.503906 9.230469-5.886719 14.183594l-10.351562 3.445313v27.53125l10.351562 3.453125c1.375 4.953125 3.34375 9.695312 5.886719 14.183594l-4.886719 9.769531 19.472657 19.480469 9.769531-4.886719c4.484375 2.535156 9.230469 4.503906 14.183594 5.878906l3.453125 10.359375h27.539062zm-12.304688-13.679687-2.679687 8.039062h-4.460938l-2.679687-8.039062-4.554688-.90625c-6.128906-1.222657-11.878906-3.605469-17.109375-7.09375l-3.867187-2.578126-7.574219 3.800782-3.160156-3.167969 3.792969-7.582031-2.578126-3.859375c-3.488281-5.222657-5.871093-10.980469-7.09375-17.109375l-.914062-4.554688-8.03125-2.679687v-4.46875l8.03125-2.671875.914062-4.554688c1.222657-6.136718 3.613282-11.886718 7.09375-17.109375l2.578126-3.859375-3.792969-7.589844 3.160156-3.160156 7.574219 3.800782 3.867187-2.578126c5.222657-3.488281 10.980469-5.863281 17.109375-7.09375l4.554688-.90625 2.679687-8.039062h4.460938l2.679687 8.039062 4.554688.90625c6.128906 1.222657 11.878906 3.605469 17.109375 7.09375l3.867187 2.578126 7.574219-3.800782 3.160156 3.160156-3.792969 7.589844 2.578126 3.859375c3.488281 5.214844 5.871093 10.972657 7.09375 17.109375l.914062 4.554688 8.03125 2.679687v4.46875l-8.03125 2.671875-.914062 4.554688c-1.222657 6.128906-3.613282 11.878906-7.09375 17.109375l-2.578126 3.859375 3.792969 7.582031-3.160156 3.167969-7.574219-3.800782-3.867187 2.578126c-5.222657 3.488281-10.980469 5.863281-17.109375 7.09375zm0 0\"></path><path d=\"m104 72c-17.648438 0-32 14.351562-32 32s14.351562 32 32 32 32-14.351562 32-32-14.351562-32-32-32zm0 48c-8.824219 0-16-7.175781-16-16s7.175781-16 16-16 16 7.175781 16 16-7.175781 16-16 16zm0 0\"></path><path d=\"m160 248v-40h48v-208h-208v208h106.664062zm-144-232h176v176h-48v24l-32-24h-96zm0 0\"></path><path d=\"m0 272h16v16h-16zm0 0\"></path><path d=\"m32 272h16v16h-16zm0 0\"></path><path d=\"m64 272h16v16h-16zm0 0\"></path><path d=\"m32 304h16v16h-16zm0 0\"></path><path d=\"m64 304h16v16h-16zm0 0\"></path><path d=\"m0 480h16v16h-16zm0 0\"></path><path d=\"m32 480h16v16h-16zm0 0\"></path><path d=\"m64 480h16v16h-16zm0 0\"></path><path d=\"m32 448h16v16h-16zm0 0\"></path><path d=\"m64 448h16v16h-16zm0 0\"></path></svg>				\n									<h5>\n							fokus på kvalitet og detaljer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m469.12 408.93-67.26-33.63v-22.13c10.71-7.69 18.6-19.07 21.78-32.27h5.28c8.81 0 15.98-7.17 15.98-15.98v-5.29c0-6.35-3.74-11.84-9.12-14.41 5.19-18.64-1.65-39.76-19.44-59.78-12.58-14.16-30.67-22.27-49.62-22.27-18.93 0-37.01 8.12-49.59 22.27-13.38 15.05-20.95 41.01-14.03 59.62-5.56 2.5-9.45 8.09-9.45 14.57v5.29c0 8.81 7.17 15.98 15.98 15.98h5.55c3.16 13.09 10.94 24.39 21.51 32.08v22.32l-67.26 33.63c-16.7 5.87-27.89 21.6-27.89 39.28v41.63c0 3.31 2.69 6 6 6h243.46c3.31 0 6-2.69 6-6v-41.63c0-17.68-11.19-33.41-27.88-39.28zm-62.24-17.7-15.83 27.66-13.29-13.29 19.29-19.29zm-37.61 5.88-20.59-20.58v-16.91c6.41 2.57 13.4 4.01 20.72 4.01 7.22 0 14.11-1.39 20.45-3.9v16.8zm63.63-97.48v5.29c0 2.16-1.82 3.98-3.98 3.98h-3.74c.01-.36.03-.71.03-1.07v-12.18h3.71c2.15-.01 3.98 1.82 3.98 3.98zm-119.29 8.2v1.07h-3.98c-2.16 0-3.98-1.82-3.98-3.98v-5.29c0-2.16 1.82-3.98 3.98-3.98l3.98.22zm1.95-24.19c-7.33-13.69-.89-37.39 10.53-50.24 10.31-11.6 25.12-18.25 40.63-18.25 15.52 0 30.34 6.65 40.65 18.25 8.43 9.48 21.3 27.59 17.4 46.39-5.66-.35-10.67-2.55-14.4-6.36-5.37-5.49-7.72-14-6.63-23.94.29-2.62-1.17-5.13-3.6-6.17s-5.25-.37-6.95 1.65c-19.33 22.92-45.95 36.76-73.9 38.68h-3.73zm10.05 24.19v-12.73c24.57-2.92 47.92-14.05 66.73-31.8 1.43 7.26 4.63 13.6 9.45 18.52 3.27 3.35 7.14 5.89 11.41 7.58v18.42c0 24.15-19.65 43.8-43.8 43.8s-43.79-19.64-43.79-43.79zm15.89 78.48 19.29 19.29-13.29 13.29-15.84-27.66zm3.22 97.53h-39.42v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.76v-35.63c0-12.68 8.1-23.95 20.15-28.05.26-.09.51-.19.75-.31l46.47-23.23 20.07 35.06c.93 1.62 2.56 2.72 4.41 2.97.27.04.53.05.79.05 1.58 0 3.11-.62 4.24-1.76l.14-.14zm12.08 0 7.41-64.69 5.06-5.06 4.84 4.84 7.86 64.92h-25.17zm128.2 0h-39.76v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.18l-6.2-51.17.25.25c1.13 1.13 2.66 1.76 4.24 1.76.26 0 .53-.02.79-.05 1.85-.25 3.48-1.34 4.41-2.97l20.07-35.06 46.47 23.23c.24.12.49.23.75.31 12.05 4.1 20.15 15.38 20.15 28.05v35.65zm-67.04-346.65h-10.84l28.38 39.84 28.38-39.84h-10.84c-3.31 0-6-2.69-6-6v-64.58h-98.7c-3.31 0-6-2.69-6-6s2.69-6 6-6h104.7c3.31 0 6 2.69 6 6v64.58h16.48c2.25 0 4.3 1.25 5.33 3.25s.86 4.4-.45 6.23l-40.02 56.18c-1.13 1.58-2.95 2.52-4.89 2.52s-3.76-.94-4.89-2.52l-40.02-56.18c-1.3-1.83-1.48-4.23-.45-6.23s3.09-3.25 5.33-3.25h16.48v-23.5h-65.38c-3.31 0-6-2.69-6-6s2.69-6 6-6h71.38c3.31 0 6 2.69 6 6v35.5c.02 3.31-2.67 6-5.98 6zm-118.44 50.65v-133.26c0-21.18-17.23-38.41-38.41-38.41h-207.7c-21.18-.01-38.41 17.23-38.41 38.41v133.26c0 21.18 17.23 38.41 38.41 38.41h105.8l64.8 55.11c1.11.94 2.49 1.43 3.89 1.43.85 0 1.71-.18 2.52-.55 2.12-.98 3.48-3.11 3.48-5.45v-50.54h27.21c21.18 0 38.41-17.23 38.41-38.41zm-71.62 26.41c-3.31 0-6 2.69-6 6v43.56l-56.59-48.13c-1.08-.92-2.46-1.43-3.89-1.43h-108.01c-14.56 0-26.41-11.85-26.41-26.41v-133.26c0-14.56 11.85-26.41 26.41-26.41h207.69c14.56 0 26.41 11.85 26.41 26.41v133.26c0 14.56-11.85 26.41-26.41 26.41zm-156.34-87.87h56.97c3.31 0 6-2.69 6-6v-39.2l8.55-8.55c2.34-2.34 2.34-6.14 0-8.49-2.34-2.34-6.14-2.34-8.48 0l-.7.7c-.98-1.97-3.01-3.32-5.36-3.32h-56.98c-3.31 0-6 2.69-6 6v52.85c0 3.32 2.69 6.01 6 6.01zm6-52.86h44.97v2.69l-18.16 18.16-8.84-8.84c-2.34-2.34-6.14-2.34-8.49 0-2.34 2.34-2.34 6.14 0 8.49l13.08 13.08c1.17 1.17 2.71 1.76 4.24 1.76s3.07-.59 4.24-1.76l13.92-13.92v21.2h-44.96zm173.62 3.08c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 31.92c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 36.52c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.68 5.99 6zm0 31.92c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.69 5.99 6zm-119.36 165.01h10.84l-28.38-39.84-28.38 39.84h10.84c3.31 0 6 2.69 6 6v64.58h98.7c3.31 0 6 2.69 6 6s-2.69 6-6 6h-104.69c-3.31 0-6-2.69-6-6v-64.58h-16.48c-2.25 0-4.3-1.25-5.33-3.25s-.86-4.4.45-6.23l40.02-56.18c1.13-1.58 2.95-2.52 4.89-2.52s3.76.94 4.89 2.52l40.02 56.18c1.3 1.83 1.48 4.23.45 6.23s-3.09 3.25-5.33 3.25h-16.48v23.5h65.38c3.31 0 6 2.69 6 6s-2.69 6-6 6h-71.38c-3.31 0-6-2.69-6-6v-35.5c-.03-3.31 2.66-6 5.97-6z\"></path></svg>				\n									<h5>\n							ærlig<br> rådgivning						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 510 510\"><path d=\"m192.036 385.845c-4.787-46.972-19.459-64.336-30.658-82.352-8.672-13.951-15.5-28.245-15.5-54.252 0-60.242 48.865-109.109 109.135-109.109 60.242 0 109.109 48.866 109.109 109.109 0 26.007-6.828 40.301-15.5 54.252-11.199 18.016-25.871 35.38-30.658 82.352 9.985 2.864 17.345 12.101 17.345 22.975v36.44c0 13.109-10.747 23.866-23.893 23.866h-10.334v9.945c0 12.588-10.341 22.929-22.93 22.929h-46.304c-12.589 0-22.93-10.341-22.93-22.929v-9.945h-10.334c-13.146 0-23.893-10.757-23.893-23.866v-36.44c0-10.874 7.36-20.111 17.345-22.975zm111.948-.917c4.199-42.194 15.78-62.332 26.488-79.049 10.147-15.842 19.65-28.207 19.65-56.638 0-52.513-42.597-95.109-95.109-95.109-52.537 0-95.135 42.596-95.135 95.109 0 28.431 9.503 40.796 19.65 56.638 10.708 16.717 22.289 36.855 26.488 79.049zm2.554-78.61c-1.175 13.701-11.985 24.191-24.783 24.191-13.527 0-24.862-12.086-24.862-26.673v-99.328c0-14.12 11.335-26.673 24.862-26.673 11.309 0 21.031 8.139 23.975 19.497 9.12 3.904 15.688 13.438 15.688 24.78 0 1.153-.068 2.289-.201 3.403 5.078 5.326 8.283 12.802 8.283 21.117 0 6.39-1.889 12.262-5.06 17.053 1.996 4.099 3.13 8.773 3.13 13.76 0 14.1-9.065 25.697-21.032 28.873zm-16.452-109.977c-1.964-2.729-4.916-4.506-8.331-4.506-6.192 0-10.862 6.21-10.862 12.673v99.328c0 6.677 4.67 12.673 10.862 12.673 5.516 0 9.822-4.614 10.717-10.425-4.709-1.416-8.923-4.144-12.279-7.814-2.607-2.852-2.409-7.283.443-9.89 2.851-2.607 7.282-2.408 9.889.443 2.416 2.642 5.72 4.356 9.402 4.356 7.733 0 13.643-7.218 13.643-15.734s-5.91-15.734-13.643-15.734c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7 5.352 0 10.388 1.655 14.658 4.533.593-1.743.915-3.634.915-5.612 0-2.11-.366-4.128-1.036-5.972-.769.858-1.588 1.66-2.453 2.397-2.94 2.507-7.361 2.156-9.869-.784-2.507-2.939-2.155-7.361.784-9.868 2.773-2.365 4.492-6.122 4.492-10.293 0-6.072-3.705-11.374-8.898-12.467-.154-.023-.307-.052-.458-.085-.499-.08-1.01-.121-1.532-.121-2.947 0-5.591 1.389-7.515 3.525-2.585 2.87-7.015 3.101-9.886.515-2.87-2.586-3.101-7.015-.515-9.886 3.111-3.453 7.059-5.988 11.472-7.252zm-104.526 67.344c-3.171-4.791-5.06-10.663-5.06-17.053 0-8.307 3.198-15.777 8.284-21.104-.133-1.118-.202-2.258-.202-3.416 0-11.354 6.582-20.897 15.717-24.792 2.948-11.354 12.67-19.485 23.946-19.485 13.56 0 24.888 12.555 24.888 26.673v99.328c0 14.585-11.328 26.673-24.888 26.673-12.765 0-23.578-10.484-24.757-24.184-11.98-3.166-21.058-14.769-21.058-28.88 0-4.987 1.134-9.661 3.13-13.76zm9.982-23.036c-.675 1.847-1.042 3.869-1.042 5.983 0 1.978.322 3.869.915 5.612 4.27-2.878 9.306-4.533 14.658-4.533 3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7-7.733 0-13.643 7.218-13.643 15.734s5.91 15.734 13.643 15.734c3.682 0 6.986-1.714 9.402-4.356 2.607-2.851 7.038-3.05 9.889-.443 2.852 2.607 3.05 7.038.443 9.89-3.35 3.664-7.556 6.389-12.255 7.807.891 5.813 5.192 10.432 10.693 10.432 6.21 0 10.888-5.993 10.888-12.673v-99.328c0-6.466-4.678-12.673-10.888-12.673-3.404 0-6.349 1.777-8.309 4.507 4.421 1.264 8.367 3.8 11.476 7.251 2.586 2.871 2.355 7.3-.516 9.886-2.87 2.586-7.3 2.355-9.886-.515-1.926-2.138-4.574-3.525-7.54-3.525-.493 0-.976.037-1.448.108-.196.045-.395.082-.596.11-5.165 1.118-8.844 6.404-8.844 12.455 0 1.243.153 2.45.442 3.594.101.284.183.572.246.862.748 2.326 2.071 4.346 3.814 5.823 2.947 2.498 3.311 6.919.813 9.866s-6.919 3.312-9.866.814c-.878-.745-1.71-1.554-2.489-2.422zm3.042 158.279c-5.442 0-9.893 4.451-9.893 9.892v36.44c0 5.423 4.454 9.866 9.893 9.866h17.334c3.866 0 7 3.134 7 7v16.945c0 4.902 4.027 8.929 8.93 8.929h46.304c4.903 0 8.93-4.027 8.93-8.929v-16.945c0-3.866 3.134-7 7-7h17.334c5.439 0 9.893-4.443 9.893-9.866v-36.44c0-5.441-4.451-9.892-9.893-9.892zm63.416-314.093 2.907-5.412c1.828-3.403 6.075-4.683 9.479-2.854 3.403 1.828 4.682 6.075 2.854 9.479l-16.073 29.925c-1.22 2.271-3.589 3.688-6.167 3.688s-4.947-1.417-6.167-3.688l-16.073-29.925c-1.828-3.404-.549-7.651 2.854-9.479 3.404-1.829 7.651-.549 9.479 2.854l2.907 5.412v-69.835c0-3.863 3.137-7 7-7s7 3.137 7 7zm-132.198 54.758-49.381-49.381c-2.732-2.731-2.732-7.167 0-9.899s7.168-2.732 9.9 0l49.38 49.38-1.771-5.881c-1.114-3.7.985-7.608 4.684-8.722 3.7-1.114 7.607.985 8.721 4.685l9.796 32.526c.743 2.468.069 5.145-1.753 6.968-1.823 1.823-4.5 2.496-6.969 1.753l-32.526-9.795c-3.699-1.114-5.798-5.022-4.684-8.721s5.022-5.798 8.721-4.684zm-44.859 122.299h-69.835c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7h69.835l-5.412-2.907c-3.403-1.828-4.682-6.076-2.854-9.479 1.828-3.404 6.075-4.683 9.479-2.855l29.926 16.074c2.271 1.22 3.688 3.589 3.688 6.167 0 2.577-1.417 4.947-3.688 6.166l-29.926 16.074c-3.404 1.828-7.651.549-9.479-2.855-1.828-3.403-.549-7.651 2.854-9.479zm54.758 118.198-49.38 49.38c-2.732 2.732-7.168 2.732-9.9 0s-2.732-7.167 0-9.899l49.381-49.381-5.882 1.772c-3.699 1.114-7.607-.985-8.721-4.685-1.114-3.699.985-7.607 4.684-8.721l32.526-9.795c2.469-.743 5.146-.07 6.969 1.753 1.822 1.823 2.496 4.5 1.753 6.968l-9.796 32.527c-1.114 3.699-5.021 5.798-8.721 4.684-3.699-1.114-5.798-5.022-4.684-8.721zm240.497-240.497 5.882-1.771c3.699-1.114 7.607.985 8.721 4.684s-.985 7.607-4.684 8.721l-32.526 9.795c-2.469.743-5.146.07-6.969-1.753-1.822-1.823-2.496-4.5-1.753-6.968l9.796-32.526c1.114-3.7 5.021-5.799 8.721-4.685 3.699 1.114 5.798 5.022 4.684 8.722l-1.771 5.881 49.38-49.38c2.732-2.732 7.168-2.732 9.9 0s2.732 7.168 0 9.899zm44.859 122.299 5.412 2.906c3.403 1.828 4.682 6.076 2.854 9.479-1.828 3.404-6.075 4.683-9.479 2.855l-29.926-16.074c-2.271-1.219-3.688-3.589-3.688-6.166 0-2.578 1.417-4.947 3.688-6.167l29.926-16.074c3.404-1.828 7.651-.549 9.479 2.855 1.828 3.403.549 7.651-2.854 9.479l-5.412 2.907h69.835c3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7zm-54.758 118.198 1.771 5.882c1.114 3.699-.985 7.607-4.684 8.721-3.7 1.114-7.607-.985-8.721-4.684l-9.796-32.527c-.743-2.468-.069-5.145 1.753-6.968 1.823-1.823 4.5-2.496 6.969-1.753l32.526 9.795c3.699 1.114 5.798 5.022 4.684 8.721-1.114 3.7-5.022 5.799-8.721 4.685l-5.882-1.772 49.381 49.381c2.732 2.732 2.732 7.167 0 9.899s-7.168 2.732-9.9 0z\"></path></svg>				\n									<h5>\n							gennemtænkte løsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"outline\"><path d=\"M486.41,144A28,28,0,0,0,472,92H349.123l5.457-21.828a48.513,48.513,0,0,0-12.848-46.153A41.035,41.035,0,0,0,312.609,12H308a8.009,8.009,0,0,0-8,8V47.413l-19.233,64.112A17.376,17.376,0,0,1,268,123.539V112a4,4,0,0,0-4-4H152a4,4,0,0,0-4,4v72a4,4,0,0,0,8,0V116h72V276H156V248a4,4,0,0,0-8,0v32a4,4,0,0,0,4,4H264a4,4,0,0,0,4-4V268.5h11.168A37.07,37.07,0,0,1,305.092,279a45.025,45.025,0,0,0,31.48,12.752L440,292a27.987,27.987,0,0,0,19.369-48.2,27.987,27.987,0,0,0,16-48A28,28,0,0,0,486.41,144ZM260,276H236V116h24Zm212-88H396a4,4,0,0,0,0,8h60a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h40a20,20,0,0,1,.01,40l-103.428-.25a37.07,37.07,0,0,1-25.924-10.5,45.031,45.031,0,0,0-31.49-12.752H268V131.686a25.317,25.317,0,0,0,20.429-17.862l19.4-64.675A4,4,0,0,0,308,48V20h4.609a33.082,33.082,0,0,1,23.481,9.69,40.507,40.507,0,0,1,10.728,38.541l-6.7,26.8A4,4,0,0,0,344,100H472a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h72a20,20,0,0,1,0,40Z\"></path><path d=\"M194.5,183.243l-1.9-.217a4,4,0,0,0-4.169,2.491L184.29,195.9H135.278l-3.539-9.317a4,4,0,0,0-7.478,2.84l2.459,6.477h-8.474L68.452,156.872a4,4,0,1,0-4.935,6.3L77.6,174.209,56.961,194.48l-6.636-5.491a4,4,0,1,0-5.1,6.163L87.219,229.9a44.1,44.1,0,0,0,28.05,10.1H212a8.009,8.009,0,0,0,8-8V203.9a8.009,8.009,0,0,0-8-8h-8v-2.01A10.708,10.708,0,0,0,194.5,183.243ZM212,203.9V232H115.269a36.081,36.081,0,0,1-22.951-8.264l-29.16-24.128,20.8-20.422L114.4,203.045a4,4,0,0,0,2.468.852H187a4,4,0,0,0,3.715-2.517l3.929-9.843a2.712,2.712,0,0,1,1.356,2.35v6.01a4,4,0,0,0,4,4Z\"></path><path d=\"M223.084,484.672,200.87,469.863V346.36A44.1,44.1,0,0,0,195.327,325l-17.183-30.94a4,4,0,0,0-7,3.884l17.184,30.94a36.073,36.073,0,0,1,4.537,17.478V468H164.333a4,4,0,1,0,0,8h31.321l12,8H152.865V352a4,4,0,0,0-.358-1.655l-25.454-56A4,4,0,0,0,123.411,292H114.2a4,4,0,0,0-3.945,4.658l8.862,53.175a36.016,36.016,0,0,1-1.951,18.949L78.642,468H48.333a4,4,0,1,0,0,8H80.377L92,484H32.088L76.63,361.366a4.017,4.017,0,0,0,.183-2.044L61.1,268H136a4,4,0,0,0,0-8H59.233L30.555,173.966A19.723,19.723,0,0,1,49.27,148H76a12,12,0,0,0,24,0h15.2a21.975,21.975,0,0,1,8.395,1.652l10.889,4.458a4,4,0,1,0,3.032-7.4L126.63,142.25A29.938,29.938,0,0,0,115.2,140H100v-4.527A16.014,16.014,0,0,0,112,120V103.473A16.014,16.014,0,0,0,124,88V80a4,4,0,0,0-4-4H90A22.025,22.025,0,0,0,68,98v18a12.02,12.02,0,0,0,8,11.314V140H49.27a27.723,27.723,0,0,0-26.305,36.5l29.493,88.482,16.29,94.655-46.128,127A4,4,0,0,0,26.38,492h78.485a4,4,0,0,0,2.268-7.3L86.3,470.368l38.318-98.69a44.018,44.018,0,0,0,2.385-23.16L118.921,300h1.914l24.03,52.867V488a4,4,0,0,0,4,4h72a4,4,0,0,0,2.219-7.328ZM76,98A14.015,14.015,0,0,1,90,84h26v4a8.009,8.009,0,0,1-8,8H92a4,4,0,0,0-4,4,11.962,11.962,0,0,1-1.53,5.881A12.044,12.044,0,0,0,76,104.686Zm4,14a3.981,3.981,0,0,1,3.407,1.9,4,4,0,0,0,5.956.975c.207-.171.7-.648.7-.648.032-.028.061-.057.09-.087A19.907,19.907,0,0,0,95.6,104H104v16a8.009,8.009,0,0,1-8,8,12.133,12.133,0,0,1-2.681-.3,4,4,0,1,0-1.775,7.8c.151.035.3.06.456.091V148a4,4,0,1,1-8,0V124a4,4,0,0,0-4-4,4,4,0,0,1,0-8Z\"></path></g></svg>				\n									<h5>\n							arbejde udført med ansvar						\n					</h5>\n				<p>Vi lover ikke mere, end vi kan holde – men vi holder det, vi lover.</p>			<h2>KONTAKT OS</h2>		<p>Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.</p>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 13:40:26', '2026-01-26 13:40:26', '', 10, 'https://mrarif.me/cpnordic/?p=541', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(542, 1, '2026-01-26 13:40:26', '2026-01-26 13:40:26', '<h1>CP NORDIC ApS</h1>					<h4>Byggeri – Tømrerarbejde og tagdækning</h4>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>					\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle ANMELDELSER\n					</a>\n					<h2>HVORFOR VÆLGE CP NORDIC ApS?</h2>		<p>Når du vælger CP NORDIC ApS, får du:</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 450 450\" width=\"512\"><g><g><path d=\"m225 165.2c-25.9 0-48.9-18.8-53.3-45.2-2.4-14.2.9-28.6 9.3-40.3 8.4-11.8 20.9-19.5 35.1-21.9 29.4-4.9 57.3 15 62.2 44.5 4.9 29.4-15 57.3-44.4 62.2-3 .5-6 .7-8.9.7zm-7.6-99.8c-12.2 2-22.9 8.7-30.1 18.8s-10.1 22.4-8 34.6c3.8 22.7 23.5 38.8 45.7 38.8 2.5 0 5.1-.2 7.6-.6 25.2-4.2 42.3-28.1 38.1-53.4s-28.1-42.4-53.3-38.2z\"></path><path d=\"m255.2 115c-2.1 0-3.8-1.7-3.8-3.8 0-14.6-11.8-26.4-26.4-26.4-2.1 0-3.8-1.7-3.8-3.8s1.7-3.8 3.8-3.8c18.8 0 34.1 15.3 34.1 34.1 0 2-1.8 3.7-3.9 3.7z\"></path><path d=\"m236.1 203h-22.2c-2.1 0-3.8-1.7-3.8-3.8v-14.1c-3.1-.6-6.1-1.4-9.1-2.4l-7 12.2c-1.1 1.8-3.4 2.5-5.3 1.4l-19.2-11.1c-.9-.5-1.5-1.4-1.8-2.3-.3-1-.1-2 .4-2.9l7-12.1c-2.4-2.1-4.6-4.3-6.7-6.6l-12.1 7c-1.8 1.1-4.2.4-5.2-1.4l-11.1-19.2c-1.1-1.8-.4-4.2 1.4-5.2l11.9-6.8c-1-3-1.9-6.1-2.6-9.3h-13.7c-2.1 0-3.8-1.7-3.8-3.8v-22.2c0-2.1 1.7-3.8 3.8-3.8h13.4c.6-3.2 1.4-6.4 2.4-9.5l-11.5-6.6c-1.8-1.1-2.5-3.4-1.4-5.3l11.1-19.6c.5-.9 1.4-1.5 2.3-1.8s2-.1 2.9.4l11.3 6.6c2.2-2.5 4.5-4.8 7-7l-6.5-11.3c-.5-.9-.6-1.9-.4-2.9.3-1 .9-1.8 1.8-2.3l19.2-11.1c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l6.4 11.2c3.1-1.1 6.4-1.9 9.7-2.6v-13c0-2.1 1.7-3.8 3.8-3.8h22.2c2.1 0 3.8 1.7 3.8 3.8v12.8c3.3.7 6.5 1.5 9.7 2.6l6.5-11.2c.5-.9 1.4-1.5 2.3-1.8 1-.3 2-.1 2.9.4l19.2 11.1c.9.5 1.5 1.3 1.8 2.3s.1 2-.4 2.9l-6.5 11.3c2.5 2.2 4.8 4.5 7 7.1l11.3-6.6c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l11.1 19.2c1.1 1.8.4 4.2-1.4 5.3l-11.5 6.6c1 3.1 1.8 6.3 2.5 9.5h13.6c2.1 0 3.8 1.7 3.8 3.8v22.2c0 2.1-1.7 3.8-3.8 3.8h-13.6c-.6 3.1-1.5 6.2-2.5 9.3l11.9 6.8c1.8 1.1 2.5 3.4 1.4 5.2l-11.2 19.5c-1.1 1.8-3.4 2.5-5.2 1.4l-12-7c-2.1 2.4-4.4 4.6-6.7 6.6l7 12.1c.5.9.6 1.9.4 2.9s-.9 1.8-1.8 2.3l-19.2 11.1c-1.8 1.1-4.2.4-5.2-1.4l-7-12.2c-3 1-6 1.8-9.1 2.4v14.1c-.2 2.3-2 4-4.1 4zm-18.4-7.7h14.5v-13.5c0-1.9 1.4-3.5 3.3-3.8 4.7-.7 9.4-2 13.8-3.7 1.8-.7 3.8 0 4.7 1.7l6.7 11.6 12.6-7.3-6.7-11.6c-1-1.6-.5-3.7.9-4.9 3.7-3 7.2-6.4 10.2-10.1 1.2-1.5 3.3-1.8 4.9-.9l11.5 6.6 7.3-12.6-11.3-6.5c-1.6-.9-2.4-3-1.6-4.7 1.8-4.5 3.1-9.2 3.9-14 .3-1.9 1.9-3.2 3.8-3.2h13v-14.6h-12.8c-1.9 0-3.5-1.4-3.8-3.3-.7-4.8-2-9.6-3.7-14.2-.7-1.8 0-3.7 1.7-4.7l10.9-6.3-7.3-12.6-10.8 6.3c-1.6.9-3.7.6-4.9-.9-3.1-3.9-6.6-7.4-10.4-10.6-1.5-1.2-1.9-3.3-.9-4.9l6.2-10.7-12.6-7.3-6.1 10.6c-1 1.6-3 2.3-4.7 1.7-4.6-1.8-9.5-3.1-14.4-3.9-1.9-.3-3.3-1.9-3.3-3.8v-12.2h-14.5v12.3c0 1.9-1.4 3.5-3.3 3.8-5 .8-9.8 2.1-14.4 3.9-1.8.7-3.8 0-4.7-1.7l-6.1-10.6-12.6 7.3 6.2 10.7c.9 1.6.6 3.7-.9 4.9-3.9 3.1-7.4 6.7-10.4 10.6-1.2 1.5-3.3 1.9-4.9.9l-10.8-6.3-7.3 12.6 10.9 6.3c1.6.9 2.3 2.9 1.7 4.7-1.7 4.6-3 9.4-3.7 14.2-.3 1.9-1.9 3.3-3.8 3.3h-12.8v14.5h13c1.9 0 3.5 1.4 3.8 3.2.8 4.8 2.1 9.5 3.9 14 .7 1.8 0 3.8-1.6 4.7l-11.3 6.5 7.3 12.6 11.5-6.6c1.6-.9 3.7-.6 4.9.9 3 3.7 6.5 7.1 10.3 10.1 1.5 1.2 1.9 3.3.9 4.9l-6.7 11.6 12.6 7.3 6.7-11.6c.9-1.6 2.9-2.3 4.7-1.7 4.5 1.7 9.1 2.9 13.8 3.7 1.9.3 3.3 1.9 3.3 3.8z\"></path></g><g><g><g><path d=\"m45.3 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m153.9 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path></g><g><path d=\"m189.3 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.2c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c0 2.1-1.7 3.8-3.8 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m73.3 326.4c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m126 326.4c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m99.7 325.6c-.6 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4s4.1 1.1 4.4 3.2c2.4 16.5 12.3 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m50.2 266.6c-.1 0-.2 0-.3 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.7 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-8.9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.5 2.2zm81.8-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13.1-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.4-.7 2.3-.7z\"></path></g></g></g><g><g><path d=\"m296.1 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m404.7 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path></g><g><path d=\"m440 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.1c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c.2 2.1-1.6 3.8-3.7 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m324 326.3c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m376.7 326.3c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m350.4 325.6c-.5 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4 2.1-.3 4 1.1 4.4 3.2 2.4 16.5 12.4 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m301 266.6c-.1 0-.2 0-.4 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.6 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.4 2.2zm81.7-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.5-.7 2.3-.7z\"></path></g></g></g></g></g></svg>				\n									<h5>\n							et ungt og engageret team						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"496pt\" viewBox=\"0 0 496 496\" width=\"496pt\"><path d=\"m440 328h-28.207031c5.078125-6.703125 8.207031-14.960938 8.207031-24 0-8.824219-7.175781-16-16-16h-12v-19.960938c59.574219-14.445312 104-68.085937 104-132.039062 0-74.992188-61.007812-136-136-136s-136 61.007812-136 136c0 63.953125 44.425781 117.59375 104 132.039062v19.960938h-8.449219c-6.167969 0-12.359375 1.464844-17.886719 4.214844l-50.480468 25.25c-3.320313 1.664062-7.03125 2.535156-10.734375 2.535156h-40.449219v-16h-104v16h56v56h16v-56h16v128h-16v-56h-16v56h-56v16h104v-16h40.449219c3.703125 0 7.414062.871094 10.734375 2.527344l34.488281 17.25c5.519531 2.757812 11.710937 4.222656 17.878906 4.222656h24.449219v24h64v-24h48c13.230469 0 24-10.769531 24-24 0-6.167969-2.40625-11.742188-6.238281-16 3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16 0-13.230469-10.769531-24-24-24zm8 24c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm-208-280c0-66.167969 53.832031-120 120-120s120 53.832031 120 120-53.832031 120-120 120-120-53.832031-120-120zm104 134.976562c5.257812.617188 10.574219 1.023438 16 1.023438s10.742188-.40625 16-1.023438v17.023438h-32zm-40.449219 185.023438c-3.703125 0-7.414062-.871094-10.734375-2.527344l-34.488281-17.25c-5.519531-2.757812-11.710937-4.222656-17.878906-4.222656h-40.449219v-96h40.449219c6.167969 0 12.359375-1.464844 17.886719-4.214844l50.480468-25.25c3.320313-1.664062 7.03125-2.535156 10.734375-2.535156h84.449219c0 13.230469-10.769531 24-24 24h-48.28125l-23.863281 35.808594c-6.101563 9.160156-14.527344 16.589844-24.367188 21.503906-8.753906 4.375-18.542969 6.6875-28.320312 6.6875h-15.167969v16h15.167969c12.246093 0 24.519531-2.894531 35.472656-8.375 12.328125-6.160156 22.878906-15.480469 30.527344-26.945312l6.832031-10.253907v93.574219zm40.449219 24v-136h17.472656c-.898437 2.511719-1.472656 5.183594-1.472656 8 0 6.167969 2.40625 11.742188 6.238281 16-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16 0 10.414062 6.710938 19.214844 16 22.527344v9.472656zm96-24h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8s-3.59375 8-8 8zm0 0\"></path><path d=\"m394.878906 73.007812-7.757812 13.984376c17.816406 9.878906 28.878906 28.664062 28.878906 49.007812h16c0-26.160156-14.222656-50.296875-37.121094-62.992188zm0 0\"></path><path d=\"m360 80c4.734375 0 9.449219.59375 14.007812 1.769531l3.976563-15.503906c-5.855469-1.496094-11.90625-2.265625-17.984375-2.265625zm0 0\"></path><path d=\"m360 48c48.519531 0 88 39.480469 88 88 0 20.753906-7.398438 40.910156-20.832031 56.785156l12.207031 10.34375c15.882812-18.761718 24.625-42.601562 24.625-67.128906 0-57.34375-46.65625-104-104-104-24.527344 0-48.367188 8.753906-67.128906 24.632812l10.335937 12.199219c15.871094-13.433593 36.039063-20.832031 56.792969-20.832031zm0 0\"></path><path d=\"m427.128906 215.367188-10.335937-12.199219c-15.871094 13.433593-36.039063 20.832031-56.792969 20.832031-48.519531 0-88-39.480469-88-88 0-20.753906 7.398438-40.910156 20.832031-56.785156l-12.207031-10.34375c-15.882812 18.761718-24.625 42.601562-24.625 67.128906 0 57.34375 46.65625 104 104 104 24.527344 0 48.367188-8.753906 67.128906-24.632812zm0 0\"></path><path d=\"m121.214844 165.640625c4.953125-1.375 9.695312-3.34375 14.183594-5.878906l9.769531 4.886719 19.472656-19.480469-4.886719-9.769531c2.535156-4.496094 4.503906-9.230469 5.886719-14.183594l10.359375-3.445313v-27.53125l-10.351562-3.453125c-1.375-4.953125-3.34375-9.707031-5.886719-14.183594l4.886719-9.777343-19.472657-19.472657-9.769531 4.886719c-4.484375-2.535156-9.230469-4.503906-14.183594-5.878906l-3.453125-10.359375h-27.539062l-3.445313 10.359375c-4.953125 1.375-9.695312 3.34375-14.183594 5.878906l-9.777343-4.886719-19.472657 19.472657 4.886719 9.777343c-2.535156 4.488282-4.503906 9.230469-5.886719 14.183594l-10.351562 3.445313v27.53125l10.351562 3.453125c1.375 4.953125 3.34375 9.695312 5.886719 14.183594l-4.886719 9.769531 19.472657 19.480469 9.769531-4.886719c4.484375 2.535156 9.230469 4.503906 14.183594 5.878906l3.453125 10.359375h27.539062zm-12.304688-13.679687-2.679687 8.039062h-4.460938l-2.679687-8.039062-4.554688-.90625c-6.128906-1.222657-11.878906-3.605469-17.109375-7.09375l-3.867187-2.578126-7.574219 3.800782-3.160156-3.167969 3.792969-7.582031-2.578126-3.859375c-3.488281-5.222657-5.871093-10.980469-7.09375-17.109375l-.914062-4.554688-8.03125-2.679687v-4.46875l8.03125-2.671875.914062-4.554688c1.222657-6.136718 3.613282-11.886718 7.09375-17.109375l2.578126-3.859375-3.792969-7.589844 3.160156-3.160156 7.574219 3.800782 3.867187-2.578126c5.222657-3.488281 10.980469-5.863281 17.109375-7.09375l4.554688-.90625 2.679687-8.039062h4.460938l2.679687 8.039062 4.554688.90625c6.128906 1.222657 11.878906 3.605469 17.109375 7.09375l3.867187 2.578126 7.574219-3.800782 3.160156 3.160156-3.792969 7.589844 2.578126 3.859375c3.488281 5.214844 5.871093 10.972657 7.09375 17.109375l.914062 4.554688 8.03125 2.679687v4.46875l-8.03125 2.671875-.914062 4.554688c-1.222657 6.128906-3.613282 11.878906-7.09375 17.109375l-2.578126 3.859375 3.792969 7.582031-3.160156 3.167969-7.574219-3.800782-3.867187 2.578126c-5.222657 3.488281-10.980469 5.863281-17.109375 7.09375zm0 0\"></path><path d=\"m104 72c-17.648438 0-32 14.351562-32 32s14.351562 32 32 32 32-14.351562 32-32-14.351562-32-32-32zm0 48c-8.824219 0-16-7.175781-16-16s7.175781-16 16-16 16 7.175781 16 16-7.175781 16-16 16zm0 0\"></path><path d=\"m160 248v-40h48v-208h-208v208h106.664062zm-144-232h176v176h-48v24l-32-24h-96zm0 0\"></path><path d=\"m0 272h16v16h-16zm0 0\"></path><path d=\"m32 272h16v16h-16zm0 0\"></path><path d=\"m64 272h16v16h-16zm0 0\"></path><path d=\"m32 304h16v16h-16zm0 0\"></path><path d=\"m64 304h16v16h-16zm0 0\"></path><path d=\"m0 480h16v16h-16zm0 0\"></path><path d=\"m32 480h16v16h-16zm0 0\"></path><path d=\"m64 480h16v16h-16zm0 0\"></path><path d=\"m32 448h16v16h-16zm0 0\"></path><path d=\"m64 448h16v16h-16zm0 0\"></path></svg>				\n									<h5>\n							fokus på kvalitet og detaljer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m469.12 408.93-67.26-33.63v-22.13c10.71-7.69 18.6-19.07 21.78-32.27h5.28c8.81 0 15.98-7.17 15.98-15.98v-5.29c0-6.35-3.74-11.84-9.12-14.41 5.19-18.64-1.65-39.76-19.44-59.78-12.58-14.16-30.67-22.27-49.62-22.27-18.93 0-37.01 8.12-49.59 22.27-13.38 15.05-20.95 41.01-14.03 59.62-5.56 2.5-9.45 8.09-9.45 14.57v5.29c0 8.81 7.17 15.98 15.98 15.98h5.55c3.16 13.09 10.94 24.39 21.51 32.08v22.32l-67.26 33.63c-16.7 5.87-27.89 21.6-27.89 39.28v41.63c0 3.31 2.69 6 6 6h243.46c3.31 0 6-2.69 6-6v-41.63c0-17.68-11.19-33.41-27.88-39.28zm-62.24-17.7-15.83 27.66-13.29-13.29 19.29-19.29zm-37.61 5.88-20.59-20.58v-16.91c6.41 2.57 13.4 4.01 20.72 4.01 7.22 0 14.11-1.39 20.45-3.9v16.8zm63.63-97.48v5.29c0 2.16-1.82 3.98-3.98 3.98h-3.74c.01-.36.03-.71.03-1.07v-12.18h3.71c2.15-.01 3.98 1.82 3.98 3.98zm-119.29 8.2v1.07h-3.98c-2.16 0-3.98-1.82-3.98-3.98v-5.29c0-2.16 1.82-3.98 3.98-3.98l3.98.22zm1.95-24.19c-7.33-13.69-.89-37.39 10.53-50.24 10.31-11.6 25.12-18.25 40.63-18.25 15.52 0 30.34 6.65 40.65 18.25 8.43 9.48 21.3 27.59 17.4 46.39-5.66-.35-10.67-2.55-14.4-6.36-5.37-5.49-7.72-14-6.63-23.94.29-2.62-1.17-5.13-3.6-6.17s-5.25-.37-6.95 1.65c-19.33 22.92-45.95 36.76-73.9 38.68h-3.73zm10.05 24.19v-12.73c24.57-2.92 47.92-14.05 66.73-31.8 1.43 7.26 4.63 13.6 9.45 18.52 3.27 3.35 7.14 5.89 11.41 7.58v18.42c0 24.15-19.65 43.8-43.8 43.8s-43.79-19.64-43.79-43.79zm15.89 78.48 19.29 19.29-13.29 13.29-15.84-27.66zm3.22 97.53h-39.42v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.76v-35.63c0-12.68 8.1-23.95 20.15-28.05.26-.09.51-.19.75-.31l46.47-23.23 20.07 35.06c.93 1.62 2.56 2.72 4.41 2.97.27.04.53.05.79.05 1.58 0 3.11-.62 4.24-1.76l.14-.14zm12.08 0 7.41-64.69 5.06-5.06 4.84 4.84 7.86 64.92h-25.17zm128.2 0h-39.76v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.18l-6.2-51.17.25.25c1.13 1.13 2.66 1.76 4.24 1.76.26 0 .53-.02.79-.05 1.85-.25 3.48-1.34 4.41-2.97l20.07-35.06 46.47 23.23c.24.12.49.23.75.31 12.05 4.1 20.15 15.38 20.15 28.05v35.65zm-67.04-346.65h-10.84l28.38 39.84 28.38-39.84h-10.84c-3.31 0-6-2.69-6-6v-64.58h-98.7c-3.31 0-6-2.69-6-6s2.69-6 6-6h104.7c3.31 0 6 2.69 6 6v64.58h16.48c2.25 0 4.3 1.25 5.33 3.25s.86 4.4-.45 6.23l-40.02 56.18c-1.13 1.58-2.95 2.52-4.89 2.52s-3.76-.94-4.89-2.52l-40.02-56.18c-1.3-1.83-1.48-4.23-.45-6.23s3.09-3.25 5.33-3.25h16.48v-23.5h-65.38c-3.31 0-6-2.69-6-6s2.69-6 6-6h71.38c3.31 0 6 2.69 6 6v35.5c.02 3.31-2.67 6-5.98 6zm-118.44 50.65v-133.26c0-21.18-17.23-38.41-38.41-38.41h-207.7c-21.18-.01-38.41 17.23-38.41 38.41v133.26c0 21.18 17.23 38.41 38.41 38.41h105.8l64.8 55.11c1.11.94 2.49 1.43 3.89 1.43.85 0 1.71-.18 2.52-.55 2.12-.98 3.48-3.11 3.48-5.45v-50.54h27.21c21.18 0 38.41-17.23 38.41-38.41zm-71.62 26.41c-3.31 0-6 2.69-6 6v43.56l-56.59-48.13c-1.08-.92-2.46-1.43-3.89-1.43h-108.01c-14.56 0-26.41-11.85-26.41-26.41v-133.26c0-14.56 11.85-26.41 26.41-26.41h207.69c14.56 0 26.41 11.85 26.41 26.41v133.26c0 14.56-11.85 26.41-26.41 26.41zm-156.34-87.87h56.97c3.31 0 6-2.69 6-6v-39.2l8.55-8.55c2.34-2.34 2.34-6.14 0-8.49-2.34-2.34-6.14-2.34-8.48 0l-.7.7c-.98-1.97-3.01-3.32-5.36-3.32h-56.98c-3.31 0-6 2.69-6 6v52.85c0 3.32 2.69 6.01 6 6.01zm6-52.86h44.97v2.69l-18.16 18.16-8.84-8.84c-2.34-2.34-6.14-2.34-8.49 0-2.34 2.34-2.34 6.14 0 8.49l13.08 13.08c1.17 1.17 2.71 1.76 4.24 1.76s3.07-.59 4.24-1.76l13.92-13.92v21.2h-44.96zm173.62 3.08c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 31.92c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 36.52c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.68 5.99 6zm0 31.92c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.69 5.99 6zm-119.36 165.01h10.84l-28.38-39.84-28.38 39.84h10.84c3.31 0 6 2.69 6 6v64.58h98.7c3.31 0 6 2.69 6 6s-2.69 6-6 6h-104.69c-3.31 0-6-2.69-6-6v-64.58h-16.48c-2.25 0-4.3-1.25-5.33-3.25s-.86-4.4.45-6.23l40.02-56.18c1.13-1.58 2.95-2.52 4.89-2.52s3.76.94 4.89 2.52l40.02 56.18c1.3 1.83 1.48 4.23.45 6.23s-3.09 3.25-5.33 3.25h-16.48v23.5h65.38c3.31 0 6 2.69 6 6s-2.69 6-6 6h-71.38c-3.31 0-6-2.69-6-6v-35.5c-.03-3.31 2.66-6 5.97-6z\"></path></svg>				\n									<h5>\n							ærlig<br> rådgivning						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 510 510\"><path d=\"m192.036 385.845c-4.787-46.972-19.459-64.336-30.658-82.352-8.672-13.951-15.5-28.245-15.5-54.252 0-60.242 48.865-109.109 109.135-109.109 60.242 0 109.109 48.866 109.109 109.109 0 26.007-6.828 40.301-15.5 54.252-11.199 18.016-25.871 35.38-30.658 82.352 9.985 2.864 17.345 12.101 17.345 22.975v36.44c0 13.109-10.747 23.866-23.893 23.866h-10.334v9.945c0 12.588-10.341 22.929-22.93 22.929h-46.304c-12.589 0-22.93-10.341-22.93-22.929v-9.945h-10.334c-13.146 0-23.893-10.757-23.893-23.866v-36.44c0-10.874 7.36-20.111 17.345-22.975zm111.948-.917c4.199-42.194 15.78-62.332 26.488-79.049 10.147-15.842 19.65-28.207 19.65-56.638 0-52.513-42.597-95.109-95.109-95.109-52.537 0-95.135 42.596-95.135 95.109 0 28.431 9.503 40.796 19.65 56.638 10.708 16.717 22.289 36.855 26.488 79.049zm2.554-78.61c-1.175 13.701-11.985 24.191-24.783 24.191-13.527 0-24.862-12.086-24.862-26.673v-99.328c0-14.12 11.335-26.673 24.862-26.673 11.309 0 21.031 8.139 23.975 19.497 9.12 3.904 15.688 13.438 15.688 24.78 0 1.153-.068 2.289-.201 3.403 5.078 5.326 8.283 12.802 8.283 21.117 0 6.39-1.889 12.262-5.06 17.053 1.996 4.099 3.13 8.773 3.13 13.76 0 14.1-9.065 25.697-21.032 28.873zm-16.452-109.977c-1.964-2.729-4.916-4.506-8.331-4.506-6.192 0-10.862 6.21-10.862 12.673v99.328c0 6.677 4.67 12.673 10.862 12.673 5.516 0 9.822-4.614 10.717-10.425-4.709-1.416-8.923-4.144-12.279-7.814-2.607-2.852-2.409-7.283.443-9.89 2.851-2.607 7.282-2.408 9.889.443 2.416 2.642 5.72 4.356 9.402 4.356 7.733 0 13.643-7.218 13.643-15.734s-5.91-15.734-13.643-15.734c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7 5.352 0 10.388 1.655 14.658 4.533.593-1.743.915-3.634.915-5.612 0-2.11-.366-4.128-1.036-5.972-.769.858-1.588 1.66-2.453 2.397-2.94 2.507-7.361 2.156-9.869-.784-2.507-2.939-2.155-7.361.784-9.868 2.773-2.365 4.492-6.122 4.492-10.293 0-6.072-3.705-11.374-8.898-12.467-.154-.023-.307-.052-.458-.085-.499-.08-1.01-.121-1.532-.121-2.947 0-5.591 1.389-7.515 3.525-2.585 2.87-7.015 3.101-9.886.515-2.87-2.586-3.101-7.015-.515-9.886 3.111-3.453 7.059-5.988 11.472-7.252zm-104.526 67.344c-3.171-4.791-5.06-10.663-5.06-17.053 0-8.307 3.198-15.777 8.284-21.104-.133-1.118-.202-2.258-.202-3.416 0-11.354 6.582-20.897 15.717-24.792 2.948-11.354 12.67-19.485 23.946-19.485 13.56 0 24.888 12.555 24.888 26.673v99.328c0 14.585-11.328 26.673-24.888 26.673-12.765 0-23.578-10.484-24.757-24.184-11.98-3.166-21.058-14.769-21.058-28.88 0-4.987 1.134-9.661 3.13-13.76zm9.982-23.036c-.675 1.847-1.042 3.869-1.042 5.983 0 1.978.322 3.869.915 5.612 4.27-2.878 9.306-4.533 14.658-4.533 3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7-7.733 0-13.643 7.218-13.643 15.734s5.91 15.734 13.643 15.734c3.682 0 6.986-1.714 9.402-4.356 2.607-2.851 7.038-3.05 9.889-.443 2.852 2.607 3.05 7.038.443 9.89-3.35 3.664-7.556 6.389-12.255 7.807.891 5.813 5.192 10.432 10.693 10.432 6.21 0 10.888-5.993 10.888-12.673v-99.328c0-6.466-4.678-12.673-10.888-12.673-3.404 0-6.349 1.777-8.309 4.507 4.421 1.264 8.367 3.8 11.476 7.251 2.586 2.871 2.355 7.3-.516 9.886-2.87 2.586-7.3 2.355-9.886-.515-1.926-2.138-4.574-3.525-7.54-3.525-.493 0-.976.037-1.448.108-.196.045-.395.082-.596.11-5.165 1.118-8.844 6.404-8.844 12.455 0 1.243.153 2.45.442 3.594.101.284.183.572.246.862.748 2.326 2.071 4.346 3.814 5.823 2.947 2.498 3.311 6.919.813 9.866s-6.919 3.312-9.866.814c-.878-.745-1.71-1.554-2.489-2.422zm3.042 158.279c-5.442 0-9.893 4.451-9.893 9.892v36.44c0 5.423 4.454 9.866 9.893 9.866h17.334c3.866 0 7 3.134 7 7v16.945c0 4.902 4.027 8.929 8.93 8.929h46.304c4.903 0 8.93-4.027 8.93-8.929v-16.945c0-3.866 3.134-7 7-7h17.334c5.439 0 9.893-4.443 9.893-9.866v-36.44c0-5.441-4.451-9.892-9.893-9.892zm63.416-314.093 2.907-5.412c1.828-3.403 6.075-4.683 9.479-2.854 3.403 1.828 4.682 6.075 2.854 9.479l-16.073 29.925c-1.22 2.271-3.589 3.688-6.167 3.688s-4.947-1.417-6.167-3.688l-16.073-29.925c-1.828-3.404-.549-7.651 2.854-9.479 3.404-1.829 7.651-.549 9.479 2.854l2.907 5.412v-69.835c0-3.863 3.137-7 7-7s7 3.137 7 7zm-132.198 54.758-49.381-49.381c-2.732-2.731-2.732-7.167 0-9.899s7.168-2.732 9.9 0l49.38 49.38-1.771-5.881c-1.114-3.7.985-7.608 4.684-8.722 3.7-1.114 7.607.985 8.721 4.685l9.796 32.526c.743 2.468.069 5.145-1.753 6.968-1.823 1.823-4.5 2.496-6.969 1.753l-32.526-9.795c-3.699-1.114-5.798-5.022-4.684-8.721s5.022-5.798 8.721-4.684zm-44.859 122.299h-69.835c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7h69.835l-5.412-2.907c-3.403-1.828-4.682-6.076-2.854-9.479 1.828-3.404 6.075-4.683 9.479-2.855l29.926 16.074c2.271 1.22 3.688 3.589 3.688 6.167 0 2.577-1.417 4.947-3.688 6.166l-29.926 16.074c-3.404 1.828-7.651.549-9.479-2.855-1.828-3.403-.549-7.651 2.854-9.479zm54.758 118.198-49.38 49.38c-2.732 2.732-7.168 2.732-9.9 0s-2.732-7.167 0-9.899l49.381-49.381-5.882 1.772c-3.699 1.114-7.607-.985-8.721-4.685-1.114-3.699.985-7.607 4.684-8.721l32.526-9.795c2.469-.743 5.146-.07 6.969 1.753 1.822 1.823 2.496 4.5 1.753 6.968l-9.796 32.527c-1.114 3.699-5.021 5.798-8.721 4.684-3.699-1.114-5.798-5.022-4.684-8.721zm240.497-240.497 5.882-1.771c3.699-1.114 7.607.985 8.721 4.684s-.985 7.607-4.684 8.721l-32.526 9.795c-2.469.743-5.146.07-6.969-1.753-1.822-1.823-2.496-4.5-1.753-6.968l9.796-32.526c1.114-3.7 5.021-5.799 8.721-4.685 3.699 1.114 5.798 5.022 4.684 8.722l-1.771 5.881 49.38-49.38c2.732-2.732 7.168-2.732 9.9 0s2.732 7.168 0 9.899zm44.859 122.299 5.412 2.906c3.403 1.828 4.682 6.076 2.854 9.479-1.828 3.404-6.075 4.683-9.479 2.855l-29.926-16.074c-2.271-1.219-3.688-3.589-3.688-6.166 0-2.578 1.417-4.947 3.688-6.167l29.926-16.074c3.404-1.828 7.651-.549 9.479 2.855 1.828 3.403.549 7.651-2.854 9.479l-5.412 2.907h69.835c3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7zm-54.758 118.198 1.771 5.882c1.114 3.699-.985 7.607-4.684 8.721-3.7 1.114-7.607-.985-8.721-4.684l-9.796-32.527c-.743-2.468-.069-5.145 1.753-6.968 1.823-1.823 4.5-2.496 6.969-1.753l32.526 9.795c3.699 1.114 5.798 5.022 4.684 8.721-1.114 3.7-5.022 5.799-8.721 4.685l-5.882-1.772 49.381 49.381c2.732 2.732 2.732 7.167 0 9.899s-7.168 2.732-9.9 0z\"></path></svg>				\n									<h5>\n							gennemtænkte løsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"outline\"><path d=\"M486.41,144A28,28,0,0,0,472,92H349.123l5.457-21.828a48.513,48.513,0,0,0-12.848-46.153A41.035,41.035,0,0,0,312.609,12H308a8.009,8.009,0,0,0-8,8V47.413l-19.233,64.112A17.376,17.376,0,0,1,268,123.539V112a4,4,0,0,0-4-4H152a4,4,0,0,0-4,4v72a4,4,0,0,0,8,0V116h72V276H156V248a4,4,0,0,0-8,0v32a4,4,0,0,0,4,4H264a4,4,0,0,0,4-4V268.5h11.168A37.07,37.07,0,0,1,305.092,279a45.025,45.025,0,0,0,31.48,12.752L440,292a27.987,27.987,0,0,0,19.369-48.2,27.987,27.987,0,0,0,16-48A28,28,0,0,0,486.41,144ZM260,276H236V116h24Zm212-88H396a4,4,0,0,0,0,8h60a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h40a20,20,0,0,1,.01,40l-103.428-.25a37.07,37.07,0,0,1-25.924-10.5,45.031,45.031,0,0,0-31.49-12.752H268V131.686a25.317,25.317,0,0,0,20.429-17.862l19.4-64.675A4,4,0,0,0,308,48V20h4.609a33.082,33.082,0,0,1,23.481,9.69,40.507,40.507,0,0,1,10.728,38.541l-6.7,26.8A4,4,0,0,0,344,100H472a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h72a20,20,0,0,1,0,40Z\"></path><path d=\"M194.5,183.243l-1.9-.217a4,4,0,0,0-4.169,2.491L184.29,195.9H135.278l-3.539-9.317a4,4,0,0,0-7.478,2.84l2.459,6.477h-8.474L68.452,156.872a4,4,0,1,0-4.935,6.3L77.6,174.209,56.961,194.48l-6.636-5.491a4,4,0,1,0-5.1,6.163L87.219,229.9a44.1,44.1,0,0,0,28.05,10.1H212a8.009,8.009,0,0,0,8-8V203.9a8.009,8.009,0,0,0-8-8h-8v-2.01A10.708,10.708,0,0,0,194.5,183.243ZM212,203.9V232H115.269a36.081,36.081,0,0,1-22.951-8.264l-29.16-24.128,20.8-20.422L114.4,203.045a4,4,0,0,0,2.468.852H187a4,4,0,0,0,3.715-2.517l3.929-9.843a2.712,2.712,0,0,1,1.356,2.35v6.01a4,4,0,0,0,4,4Z\"></path><path d=\"M223.084,484.672,200.87,469.863V346.36A44.1,44.1,0,0,0,195.327,325l-17.183-30.94a4,4,0,0,0-7,3.884l17.184,30.94a36.073,36.073,0,0,1,4.537,17.478V468H164.333a4,4,0,1,0,0,8h31.321l12,8H152.865V352a4,4,0,0,0-.358-1.655l-25.454-56A4,4,0,0,0,123.411,292H114.2a4,4,0,0,0-3.945,4.658l8.862,53.175a36.016,36.016,0,0,1-1.951,18.949L78.642,468H48.333a4,4,0,1,0,0,8H80.377L92,484H32.088L76.63,361.366a4.017,4.017,0,0,0,.183-2.044L61.1,268H136a4,4,0,0,0,0-8H59.233L30.555,173.966A19.723,19.723,0,0,1,49.27,148H76a12,12,0,0,0,24,0h15.2a21.975,21.975,0,0,1,8.395,1.652l10.889,4.458a4,4,0,1,0,3.032-7.4L126.63,142.25A29.938,29.938,0,0,0,115.2,140H100v-4.527A16.014,16.014,0,0,0,112,120V103.473A16.014,16.014,0,0,0,124,88V80a4,4,0,0,0-4-4H90A22.025,22.025,0,0,0,68,98v18a12.02,12.02,0,0,0,8,11.314V140H49.27a27.723,27.723,0,0,0-26.305,36.5l29.493,88.482,16.29,94.655-46.128,127A4,4,0,0,0,26.38,492h78.485a4,4,0,0,0,2.268-7.3L86.3,470.368l38.318-98.69a44.018,44.018,0,0,0,2.385-23.16L118.921,300h1.914l24.03,52.867V488a4,4,0,0,0,4,4h72a4,4,0,0,0,2.219-7.328ZM76,98A14.015,14.015,0,0,1,90,84h26v4a8.009,8.009,0,0,1-8,8H92a4,4,0,0,0-4,4,11.962,11.962,0,0,1-1.53,5.881A12.044,12.044,0,0,0,76,104.686Zm4,14a3.981,3.981,0,0,1,3.407,1.9,4,4,0,0,0,5.956.975c.207-.171.7-.648.7-.648.032-.028.061-.057.09-.087A19.907,19.907,0,0,0,95.6,104H104v16a8.009,8.009,0,0,1-8,8,12.133,12.133,0,0,1-2.681-.3,4,4,0,1,0-1.775,7.8c.151.035.3.06.456.091V148a4,4,0,1,1-8,0V124a4,4,0,0,0-4-4,4,4,0,0,1,0-8Z\"></path></g></svg>				\n									<h5>\n							arbejde udført med ansvar						\n					</h5>\n				<p>Vi lover ikke mere, end vi kan holde – men vi holder det, vi lover.</p>			<h2>KONTAKT OS</h2>		<p>Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.</p>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 13:40:26', '2026-01-26 13:40:26', '', 10, 'https://mrarif.me/cpnordic/?p=542', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(543, 1, '2026-01-26 13:40:27', '2026-01-26 13:40:27', '<h1>CP NORDIC ApS</h1>					<h4>Byggeri – Tømrerarbejde og tagdækning</h4>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>					\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle ANMELDELSER\n					</a>\n					<h2>HVORFOR VÆLGE CP NORDIC ApS?</h2>		<p>Når du vælger CP NORDIC ApS, får du:</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 450 450\" width=\"512\"><g><g><path d=\"m225 165.2c-25.9 0-48.9-18.8-53.3-45.2-2.4-14.2.9-28.6 9.3-40.3 8.4-11.8 20.9-19.5 35.1-21.9 29.4-4.9 57.3 15 62.2 44.5 4.9 29.4-15 57.3-44.4 62.2-3 .5-6 .7-8.9.7zm-7.6-99.8c-12.2 2-22.9 8.7-30.1 18.8s-10.1 22.4-8 34.6c3.8 22.7 23.5 38.8 45.7 38.8 2.5 0 5.1-.2 7.6-.6 25.2-4.2 42.3-28.1 38.1-53.4s-28.1-42.4-53.3-38.2z\"></path><path d=\"m255.2 115c-2.1 0-3.8-1.7-3.8-3.8 0-14.6-11.8-26.4-26.4-26.4-2.1 0-3.8-1.7-3.8-3.8s1.7-3.8 3.8-3.8c18.8 0 34.1 15.3 34.1 34.1 0 2-1.8 3.7-3.9 3.7z\"></path><path d=\"m236.1 203h-22.2c-2.1 0-3.8-1.7-3.8-3.8v-14.1c-3.1-.6-6.1-1.4-9.1-2.4l-7 12.2c-1.1 1.8-3.4 2.5-5.3 1.4l-19.2-11.1c-.9-.5-1.5-1.4-1.8-2.3-.3-1-.1-2 .4-2.9l7-12.1c-2.4-2.1-4.6-4.3-6.7-6.6l-12.1 7c-1.8 1.1-4.2.4-5.2-1.4l-11.1-19.2c-1.1-1.8-.4-4.2 1.4-5.2l11.9-6.8c-1-3-1.9-6.1-2.6-9.3h-13.7c-2.1 0-3.8-1.7-3.8-3.8v-22.2c0-2.1 1.7-3.8 3.8-3.8h13.4c.6-3.2 1.4-6.4 2.4-9.5l-11.5-6.6c-1.8-1.1-2.5-3.4-1.4-5.3l11.1-19.6c.5-.9 1.4-1.5 2.3-1.8s2-.1 2.9.4l11.3 6.6c2.2-2.5 4.5-4.8 7-7l-6.5-11.3c-.5-.9-.6-1.9-.4-2.9.3-1 .9-1.8 1.8-2.3l19.2-11.1c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l6.4 11.2c3.1-1.1 6.4-1.9 9.7-2.6v-13c0-2.1 1.7-3.8 3.8-3.8h22.2c2.1 0 3.8 1.7 3.8 3.8v12.8c3.3.7 6.5 1.5 9.7 2.6l6.5-11.2c.5-.9 1.4-1.5 2.3-1.8 1-.3 2-.1 2.9.4l19.2 11.1c.9.5 1.5 1.3 1.8 2.3s.1 2-.4 2.9l-6.5 11.3c2.5 2.2 4.8 4.5 7 7.1l11.3-6.6c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l11.1 19.2c1.1 1.8.4 4.2-1.4 5.3l-11.5 6.6c1 3.1 1.8 6.3 2.5 9.5h13.6c2.1 0 3.8 1.7 3.8 3.8v22.2c0 2.1-1.7 3.8-3.8 3.8h-13.6c-.6 3.1-1.5 6.2-2.5 9.3l11.9 6.8c1.8 1.1 2.5 3.4 1.4 5.2l-11.2 19.5c-1.1 1.8-3.4 2.5-5.2 1.4l-12-7c-2.1 2.4-4.4 4.6-6.7 6.6l7 12.1c.5.9.6 1.9.4 2.9s-.9 1.8-1.8 2.3l-19.2 11.1c-1.8 1.1-4.2.4-5.2-1.4l-7-12.2c-3 1-6 1.8-9.1 2.4v14.1c-.2 2.3-2 4-4.1 4zm-18.4-7.7h14.5v-13.5c0-1.9 1.4-3.5 3.3-3.8 4.7-.7 9.4-2 13.8-3.7 1.8-.7 3.8 0 4.7 1.7l6.7 11.6 12.6-7.3-6.7-11.6c-1-1.6-.5-3.7.9-4.9 3.7-3 7.2-6.4 10.2-10.1 1.2-1.5 3.3-1.8 4.9-.9l11.5 6.6 7.3-12.6-11.3-6.5c-1.6-.9-2.4-3-1.6-4.7 1.8-4.5 3.1-9.2 3.9-14 .3-1.9 1.9-3.2 3.8-3.2h13v-14.6h-12.8c-1.9 0-3.5-1.4-3.8-3.3-.7-4.8-2-9.6-3.7-14.2-.7-1.8 0-3.7 1.7-4.7l10.9-6.3-7.3-12.6-10.8 6.3c-1.6.9-3.7.6-4.9-.9-3.1-3.9-6.6-7.4-10.4-10.6-1.5-1.2-1.9-3.3-.9-4.9l6.2-10.7-12.6-7.3-6.1 10.6c-1 1.6-3 2.3-4.7 1.7-4.6-1.8-9.5-3.1-14.4-3.9-1.9-.3-3.3-1.9-3.3-3.8v-12.2h-14.5v12.3c0 1.9-1.4 3.5-3.3 3.8-5 .8-9.8 2.1-14.4 3.9-1.8.7-3.8 0-4.7-1.7l-6.1-10.6-12.6 7.3 6.2 10.7c.9 1.6.6 3.7-.9 4.9-3.9 3.1-7.4 6.7-10.4 10.6-1.2 1.5-3.3 1.9-4.9.9l-10.8-6.3-7.3 12.6 10.9 6.3c1.6.9 2.3 2.9 1.7 4.7-1.7 4.6-3 9.4-3.7 14.2-.3 1.9-1.9 3.3-3.8 3.3h-12.8v14.5h13c1.9 0 3.5 1.4 3.8 3.2.8 4.8 2.1 9.5 3.9 14 .7 1.8 0 3.8-1.6 4.7l-11.3 6.5 7.3 12.6 11.5-6.6c1.6-.9 3.7-.6 4.9.9 3 3.7 6.5 7.1 10.3 10.1 1.5 1.2 1.9 3.3.9 4.9l-6.7 11.6 12.6 7.3 6.7-11.6c.9-1.6 2.9-2.3 4.7-1.7 4.5 1.7 9.1 2.9 13.8 3.7 1.9.3 3.3 1.9 3.3 3.8z\"></path></g><g><g><g><path d=\"m45.3 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m153.9 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path></g><g><path d=\"m189.3 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.2c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c0 2.1-1.7 3.8-3.8 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m73.3 326.4c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m126 326.4c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m99.7 325.6c-.6 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4s4.1 1.1 4.4 3.2c2.4 16.5 12.3 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m50.2 266.6c-.1 0-.2 0-.3 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.7 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-8.9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.5 2.2zm81.8-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13.1-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.4-.7 2.3-.7z\"></path></g></g></g><g><g><path d=\"m296.1 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m404.7 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path></g><g><path d=\"m440 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.1c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c.2 2.1-1.6 3.8-3.7 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m324 326.3c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m376.7 326.3c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m350.4 325.6c-.5 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4 2.1-.3 4 1.1 4.4 3.2 2.4 16.5 12.4 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m301 266.6c-.1 0-.2 0-.4 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.6 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.4 2.2zm81.7-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.5-.7 2.3-.7z\"></path></g></g></g></g></g></svg>				\n									<h5>\n							et ungt og engageret team						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"496pt\" viewBox=\"0 0 496 496\" width=\"496pt\"><path d=\"m440 328h-28.207031c5.078125-6.703125 8.207031-14.960938 8.207031-24 0-8.824219-7.175781-16-16-16h-12v-19.960938c59.574219-14.445312 104-68.085937 104-132.039062 0-74.992188-61.007812-136-136-136s-136 61.007812-136 136c0 63.953125 44.425781 117.59375 104 132.039062v19.960938h-8.449219c-6.167969 0-12.359375 1.464844-17.886719 4.214844l-50.480468 25.25c-3.320313 1.664062-7.03125 2.535156-10.734375 2.535156h-40.449219v-16h-104v16h56v56h16v-56h16v128h-16v-56h-16v56h-56v16h104v-16h40.449219c3.703125 0 7.414062.871094 10.734375 2.527344l34.488281 17.25c5.519531 2.757812 11.710937 4.222656 17.878906 4.222656h24.449219v24h64v-24h48c13.230469 0 24-10.769531 24-24 0-6.167969-2.40625-11.742188-6.238281-16 3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16 0-13.230469-10.769531-24-24-24zm8 24c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm-208-280c0-66.167969 53.832031-120 120-120s120 53.832031 120 120-53.832031 120-120 120-120-53.832031-120-120zm104 134.976562c5.257812.617188 10.574219 1.023438 16 1.023438s10.742188-.40625 16-1.023438v17.023438h-32zm-40.449219 185.023438c-3.703125 0-7.414062-.871094-10.734375-2.527344l-34.488281-17.25c-5.519531-2.757812-11.710937-4.222656-17.878906-4.222656h-40.449219v-96h40.449219c6.167969 0 12.359375-1.464844 17.886719-4.214844l50.480468-25.25c3.320313-1.664062 7.03125-2.535156 10.734375-2.535156h84.449219c0 13.230469-10.769531 24-24 24h-48.28125l-23.863281 35.808594c-6.101563 9.160156-14.527344 16.589844-24.367188 21.503906-8.753906 4.375-18.542969 6.6875-28.320312 6.6875h-15.167969v16h15.167969c12.246093 0 24.519531-2.894531 35.472656-8.375 12.328125-6.160156 22.878906-15.480469 30.527344-26.945312l6.832031-10.253907v93.574219zm40.449219 24v-136h17.472656c-.898437 2.511719-1.472656 5.183594-1.472656 8 0 6.167969 2.40625 11.742188 6.238281 16-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16 0 10.414062 6.710938 19.214844 16 22.527344v9.472656zm96-24h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8s-3.59375 8-8 8zm0 0\"></path><path d=\"m394.878906 73.007812-7.757812 13.984376c17.816406 9.878906 28.878906 28.664062 28.878906 49.007812h16c0-26.160156-14.222656-50.296875-37.121094-62.992188zm0 0\"></path><path d=\"m360 80c4.734375 0 9.449219.59375 14.007812 1.769531l3.976563-15.503906c-5.855469-1.496094-11.90625-2.265625-17.984375-2.265625zm0 0\"></path><path d=\"m360 48c48.519531 0 88 39.480469 88 88 0 20.753906-7.398438 40.910156-20.832031 56.785156l12.207031 10.34375c15.882812-18.761718 24.625-42.601562 24.625-67.128906 0-57.34375-46.65625-104-104-104-24.527344 0-48.367188 8.753906-67.128906 24.632812l10.335937 12.199219c15.871094-13.433593 36.039063-20.832031 56.792969-20.832031zm0 0\"></path><path d=\"m427.128906 215.367188-10.335937-12.199219c-15.871094 13.433593-36.039063 20.832031-56.792969 20.832031-48.519531 0-88-39.480469-88-88 0-20.753906 7.398438-40.910156 20.832031-56.785156l-12.207031-10.34375c-15.882812 18.761718-24.625 42.601562-24.625 67.128906 0 57.34375 46.65625 104 104 104 24.527344 0 48.367188-8.753906 67.128906-24.632812zm0 0\"></path><path d=\"m121.214844 165.640625c4.953125-1.375 9.695312-3.34375 14.183594-5.878906l9.769531 4.886719 19.472656-19.480469-4.886719-9.769531c2.535156-4.496094 4.503906-9.230469 5.886719-14.183594l10.359375-3.445313v-27.53125l-10.351562-3.453125c-1.375-4.953125-3.34375-9.707031-5.886719-14.183594l4.886719-9.777343-19.472657-19.472657-9.769531 4.886719c-4.484375-2.535156-9.230469-4.503906-14.183594-5.878906l-3.453125-10.359375h-27.539062l-3.445313 10.359375c-4.953125 1.375-9.695312 3.34375-14.183594 5.878906l-9.777343-4.886719-19.472657 19.472657 4.886719 9.777343c-2.535156 4.488282-4.503906 9.230469-5.886719 14.183594l-10.351562 3.445313v27.53125l10.351562 3.453125c1.375 4.953125 3.34375 9.695312 5.886719 14.183594l-4.886719 9.769531 19.472657 19.480469 9.769531-4.886719c4.484375 2.535156 9.230469 4.503906 14.183594 5.878906l3.453125 10.359375h27.539062zm-12.304688-13.679687-2.679687 8.039062h-4.460938l-2.679687-8.039062-4.554688-.90625c-6.128906-1.222657-11.878906-3.605469-17.109375-7.09375l-3.867187-2.578126-7.574219 3.800782-3.160156-3.167969 3.792969-7.582031-2.578126-3.859375c-3.488281-5.222657-5.871093-10.980469-7.09375-17.109375l-.914062-4.554688-8.03125-2.679687v-4.46875l8.03125-2.671875.914062-4.554688c1.222657-6.136718 3.613282-11.886718 7.09375-17.109375l2.578126-3.859375-3.792969-7.589844 3.160156-3.160156 7.574219 3.800782 3.867187-2.578126c5.222657-3.488281 10.980469-5.863281 17.109375-7.09375l4.554688-.90625 2.679687-8.039062h4.460938l2.679687 8.039062 4.554688.90625c6.128906 1.222657 11.878906 3.605469 17.109375 7.09375l3.867187 2.578126 7.574219-3.800782 3.160156 3.160156-3.792969 7.589844 2.578126 3.859375c3.488281 5.214844 5.871093 10.972657 7.09375 17.109375l.914062 4.554688 8.03125 2.679687v4.46875l-8.03125 2.671875-.914062 4.554688c-1.222657 6.128906-3.613282 11.878906-7.09375 17.109375l-2.578126 3.859375 3.792969 7.582031-3.160156 3.167969-7.574219-3.800782-3.867187 2.578126c-5.222657 3.488281-10.980469 5.863281-17.109375 7.09375zm0 0\"></path><path d=\"m104 72c-17.648438 0-32 14.351562-32 32s14.351562 32 32 32 32-14.351562 32-32-14.351562-32-32-32zm0 48c-8.824219 0-16-7.175781-16-16s7.175781-16 16-16 16 7.175781 16 16-7.175781 16-16 16zm0 0\"></path><path d=\"m160 248v-40h48v-208h-208v208h106.664062zm-144-232h176v176h-48v24l-32-24h-96zm0 0\"></path><path d=\"m0 272h16v16h-16zm0 0\"></path><path d=\"m32 272h16v16h-16zm0 0\"></path><path d=\"m64 272h16v16h-16zm0 0\"></path><path d=\"m32 304h16v16h-16zm0 0\"></path><path d=\"m64 304h16v16h-16zm0 0\"></path><path d=\"m0 480h16v16h-16zm0 0\"></path><path d=\"m32 480h16v16h-16zm0 0\"></path><path d=\"m64 480h16v16h-16zm0 0\"></path><path d=\"m32 448h16v16h-16zm0 0\"></path><path d=\"m64 448h16v16h-16zm0 0\"></path></svg>				\n									<h5>\n							fokus på kvalitet og detaljer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m469.12 408.93-67.26-33.63v-22.13c10.71-7.69 18.6-19.07 21.78-32.27h5.28c8.81 0 15.98-7.17 15.98-15.98v-5.29c0-6.35-3.74-11.84-9.12-14.41 5.19-18.64-1.65-39.76-19.44-59.78-12.58-14.16-30.67-22.27-49.62-22.27-18.93 0-37.01 8.12-49.59 22.27-13.38 15.05-20.95 41.01-14.03 59.62-5.56 2.5-9.45 8.09-9.45 14.57v5.29c0 8.81 7.17 15.98 15.98 15.98h5.55c3.16 13.09 10.94 24.39 21.51 32.08v22.32l-67.26 33.63c-16.7 5.87-27.89 21.6-27.89 39.28v41.63c0 3.31 2.69 6 6 6h243.46c3.31 0 6-2.69 6-6v-41.63c0-17.68-11.19-33.41-27.88-39.28zm-62.24-17.7-15.83 27.66-13.29-13.29 19.29-19.29zm-37.61 5.88-20.59-20.58v-16.91c6.41 2.57 13.4 4.01 20.72 4.01 7.22 0 14.11-1.39 20.45-3.9v16.8zm63.63-97.48v5.29c0 2.16-1.82 3.98-3.98 3.98h-3.74c.01-.36.03-.71.03-1.07v-12.18h3.71c2.15-.01 3.98 1.82 3.98 3.98zm-119.29 8.2v1.07h-3.98c-2.16 0-3.98-1.82-3.98-3.98v-5.29c0-2.16 1.82-3.98 3.98-3.98l3.98.22zm1.95-24.19c-7.33-13.69-.89-37.39 10.53-50.24 10.31-11.6 25.12-18.25 40.63-18.25 15.52 0 30.34 6.65 40.65 18.25 8.43 9.48 21.3 27.59 17.4 46.39-5.66-.35-10.67-2.55-14.4-6.36-5.37-5.49-7.72-14-6.63-23.94.29-2.62-1.17-5.13-3.6-6.17s-5.25-.37-6.95 1.65c-19.33 22.92-45.95 36.76-73.9 38.68h-3.73zm10.05 24.19v-12.73c24.57-2.92 47.92-14.05 66.73-31.8 1.43 7.26 4.63 13.6 9.45 18.52 3.27 3.35 7.14 5.89 11.41 7.58v18.42c0 24.15-19.65 43.8-43.8 43.8s-43.79-19.64-43.79-43.79zm15.89 78.48 19.29 19.29-13.29 13.29-15.84-27.66zm3.22 97.53h-39.42v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.76v-35.63c0-12.68 8.1-23.95 20.15-28.05.26-.09.51-.19.75-.31l46.47-23.23 20.07 35.06c.93 1.62 2.56 2.72 4.41 2.97.27.04.53.05.79.05 1.58 0 3.11-.62 4.24-1.76l.14-.14zm12.08 0 7.41-64.69 5.06-5.06 4.84 4.84 7.86 64.92h-25.17zm128.2 0h-39.76v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.18l-6.2-51.17.25.25c1.13 1.13 2.66 1.76 4.24 1.76.26 0 .53-.02.79-.05 1.85-.25 3.48-1.34 4.41-2.97l20.07-35.06 46.47 23.23c.24.12.49.23.75.31 12.05 4.1 20.15 15.38 20.15 28.05v35.65zm-67.04-346.65h-10.84l28.38 39.84 28.38-39.84h-10.84c-3.31 0-6-2.69-6-6v-64.58h-98.7c-3.31 0-6-2.69-6-6s2.69-6 6-6h104.7c3.31 0 6 2.69 6 6v64.58h16.48c2.25 0 4.3 1.25 5.33 3.25s.86 4.4-.45 6.23l-40.02 56.18c-1.13 1.58-2.95 2.52-4.89 2.52s-3.76-.94-4.89-2.52l-40.02-56.18c-1.3-1.83-1.48-4.23-.45-6.23s3.09-3.25 5.33-3.25h16.48v-23.5h-65.38c-3.31 0-6-2.69-6-6s2.69-6 6-6h71.38c3.31 0 6 2.69 6 6v35.5c.02 3.31-2.67 6-5.98 6zm-118.44 50.65v-133.26c0-21.18-17.23-38.41-38.41-38.41h-207.7c-21.18-.01-38.41 17.23-38.41 38.41v133.26c0 21.18 17.23 38.41 38.41 38.41h105.8l64.8 55.11c1.11.94 2.49 1.43 3.89 1.43.85 0 1.71-.18 2.52-.55 2.12-.98 3.48-3.11 3.48-5.45v-50.54h27.21c21.18 0 38.41-17.23 38.41-38.41zm-71.62 26.41c-3.31 0-6 2.69-6 6v43.56l-56.59-48.13c-1.08-.92-2.46-1.43-3.89-1.43h-108.01c-14.56 0-26.41-11.85-26.41-26.41v-133.26c0-14.56 11.85-26.41 26.41-26.41h207.69c14.56 0 26.41 11.85 26.41 26.41v133.26c0 14.56-11.85 26.41-26.41 26.41zm-156.34-87.87h56.97c3.31 0 6-2.69 6-6v-39.2l8.55-8.55c2.34-2.34 2.34-6.14 0-8.49-2.34-2.34-6.14-2.34-8.48 0l-.7.7c-.98-1.97-3.01-3.32-5.36-3.32h-56.98c-3.31 0-6 2.69-6 6v52.85c0 3.32 2.69 6.01 6 6.01zm6-52.86h44.97v2.69l-18.16 18.16-8.84-8.84c-2.34-2.34-6.14-2.34-8.49 0-2.34 2.34-2.34 6.14 0 8.49l13.08 13.08c1.17 1.17 2.71 1.76 4.24 1.76s3.07-.59 4.24-1.76l13.92-13.92v21.2h-44.96zm173.62 3.08c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 31.92c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 36.52c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.68 5.99 6zm0 31.92c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.69 5.99 6zm-119.36 165.01h10.84l-28.38-39.84-28.38 39.84h10.84c3.31 0 6 2.69 6 6v64.58h98.7c3.31 0 6 2.69 6 6s-2.69 6-6 6h-104.69c-3.31 0-6-2.69-6-6v-64.58h-16.48c-2.25 0-4.3-1.25-5.33-3.25s-.86-4.4.45-6.23l40.02-56.18c1.13-1.58 2.95-2.52 4.89-2.52s3.76.94 4.89 2.52l40.02 56.18c1.3 1.83 1.48 4.23.45 6.23s-3.09 3.25-5.33 3.25h-16.48v23.5h65.38c3.31 0 6 2.69 6 6s-2.69 6-6 6h-71.38c-3.31 0-6-2.69-6-6v-35.5c-.03-3.31 2.66-6 5.97-6z\"></path></svg>				\n									<h5>\n							ærlig<br> rådgivning						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 510 510\"><path d=\"m192.036 385.845c-4.787-46.972-19.459-64.336-30.658-82.352-8.672-13.951-15.5-28.245-15.5-54.252 0-60.242 48.865-109.109 109.135-109.109 60.242 0 109.109 48.866 109.109 109.109 0 26.007-6.828 40.301-15.5 54.252-11.199 18.016-25.871 35.38-30.658 82.352 9.985 2.864 17.345 12.101 17.345 22.975v36.44c0 13.109-10.747 23.866-23.893 23.866h-10.334v9.945c0 12.588-10.341 22.929-22.93 22.929h-46.304c-12.589 0-22.93-10.341-22.93-22.929v-9.945h-10.334c-13.146 0-23.893-10.757-23.893-23.866v-36.44c0-10.874 7.36-20.111 17.345-22.975zm111.948-.917c4.199-42.194 15.78-62.332 26.488-79.049 10.147-15.842 19.65-28.207 19.65-56.638 0-52.513-42.597-95.109-95.109-95.109-52.537 0-95.135 42.596-95.135 95.109 0 28.431 9.503 40.796 19.65 56.638 10.708 16.717 22.289 36.855 26.488 79.049zm2.554-78.61c-1.175 13.701-11.985 24.191-24.783 24.191-13.527 0-24.862-12.086-24.862-26.673v-99.328c0-14.12 11.335-26.673 24.862-26.673 11.309 0 21.031 8.139 23.975 19.497 9.12 3.904 15.688 13.438 15.688 24.78 0 1.153-.068 2.289-.201 3.403 5.078 5.326 8.283 12.802 8.283 21.117 0 6.39-1.889 12.262-5.06 17.053 1.996 4.099 3.13 8.773 3.13 13.76 0 14.1-9.065 25.697-21.032 28.873zm-16.452-109.977c-1.964-2.729-4.916-4.506-8.331-4.506-6.192 0-10.862 6.21-10.862 12.673v99.328c0 6.677 4.67 12.673 10.862 12.673 5.516 0 9.822-4.614 10.717-10.425-4.709-1.416-8.923-4.144-12.279-7.814-2.607-2.852-2.409-7.283.443-9.89 2.851-2.607 7.282-2.408 9.889.443 2.416 2.642 5.72 4.356 9.402 4.356 7.733 0 13.643-7.218 13.643-15.734s-5.91-15.734-13.643-15.734c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7 5.352 0 10.388 1.655 14.658 4.533.593-1.743.915-3.634.915-5.612 0-2.11-.366-4.128-1.036-5.972-.769.858-1.588 1.66-2.453 2.397-2.94 2.507-7.361 2.156-9.869-.784-2.507-2.939-2.155-7.361.784-9.868 2.773-2.365 4.492-6.122 4.492-10.293 0-6.072-3.705-11.374-8.898-12.467-.154-.023-.307-.052-.458-.085-.499-.08-1.01-.121-1.532-.121-2.947 0-5.591 1.389-7.515 3.525-2.585 2.87-7.015 3.101-9.886.515-2.87-2.586-3.101-7.015-.515-9.886 3.111-3.453 7.059-5.988 11.472-7.252zm-104.526 67.344c-3.171-4.791-5.06-10.663-5.06-17.053 0-8.307 3.198-15.777 8.284-21.104-.133-1.118-.202-2.258-.202-3.416 0-11.354 6.582-20.897 15.717-24.792 2.948-11.354 12.67-19.485 23.946-19.485 13.56 0 24.888 12.555 24.888 26.673v99.328c0 14.585-11.328 26.673-24.888 26.673-12.765 0-23.578-10.484-24.757-24.184-11.98-3.166-21.058-14.769-21.058-28.88 0-4.987 1.134-9.661 3.13-13.76zm9.982-23.036c-.675 1.847-1.042 3.869-1.042 5.983 0 1.978.322 3.869.915 5.612 4.27-2.878 9.306-4.533 14.658-4.533 3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7-7.733 0-13.643 7.218-13.643 15.734s5.91 15.734 13.643 15.734c3.682 0 6.986-1.714 9.402-4.356 2.607-2.851 7.038-3.05 9.889-.443 2.852 2.607 3.05 7.038.443 9.89-3.35 3.664-7.556 6.389-12.255 7.807.891 5.813 5.192 10.432 10.693 10.432 6.21 0 10.888-5.993 10.888-12.673v-99.328c0-6.466-4.678-12.673-10.888-12.673-3.404 0-6.349 1.777-8.309 4.507 4.421 1.264 8.367 3.8 11.476 7.251 2.586 2.871 2.355 7.3-.516 9.886-2.87 2.586-7.3 2.355-9.886-.515-1.926-2.138-4.574-3.525-7.54-3.525-.493 0-.976.037-1.448.108-.196.045-.395.082-.596.11-5.165 1.118-8.844 6.404-8.844 12.455 0 1.243.153 2.45.442 3.594.101.284.183.572.246.862.748 2.326 2.071 4.346 3.814 5.823 2.947 2.498 3.311 6.919.813 9.866s-6.919 3.312-9.866.814c-.878-.745-1.71-1.554-2.489-2.422zm3.042 158.279c-5.442 0-9.893 4.451-9.893 9.892v36.44c0 5.423 4.454 9.866 9.893 9.866h17.334c3.866 0 7 3.134 7 7v16.945c0 4.902 4.027 8.929 8.93 8.929h46.304c4.903 0 8.93-4.027 8.93-8.929v-16.945c0-3.866 3.134-7 7-7h17.334c5.439 0 9.893-4.443 9.893-9.866v-36.44c0-5.441-4.451-9.892-9.893-9.892zm63.416-314.093 2.907-5.412c1.828-3.403 6.075-4.683 9.479-2.854 3.403 1.828 4.682 6.075 2.854 9.479l-16.073 29.925c-1.22 2.271-3.589 3.688-6.167 3.688s-4.947-1.417-6.167-3.688l-16.073-29.925c-1.828-3.404-.549-7.651 2.854-9.479 3.404-1.829 7.651-.549 9.479 2.854l2.907 5.412v-69.835c0-3.863 3.137-7 7-7s7 3.137 7 7zm-132.198 54.758-49.381-49.381c-2.732-2.731-2.732-7.167 0-9.899s7.168-2.732 9.9 0l49.38 49.38-1.771-5.881c-1.114-3.7.985-7.608 4.684-8.722 3.7-1.114 7.607.985 8.721 4.685l9.796 32.526c.743 2.468.069 5.145-1.753 6.968-1.823 1.823-4.5 2.496-6.969 1.753l-32.526-9.795c-3.699-1.114-5.798-5.022-4.684-8.721s5.022-5.798 8.721-4.684zm-44.859 122.299h-69.835c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7h69.835l-5.412-2.907c-3.403-1.828-4.682-6.076-2.854-9.479 1.828-3.404 6.075-4.683 9.479-2.855l29.926 16.074c2.271 1.22 3.688 3.589 3.688 6.167 0 2.577-1.417 4.947-3.688 6.166l-29.926 16.074c-3.404 1.828-7.651.549-9.479-2.855-1.828-3.403-.549-7.651 2.854-9.479zm54.758 118.198-49.38 49.38c-2.732 2.732-7.168 2.732-9.9 0s-2.732-7.167 0-9.899l49.381-49.381-5.882 1.772c-3.699 1.114-7.607-.985-8.721-4.685-1.114-3.699.985-7.607 4.684-8.721l32.526-9.795c2.469-.743 5.146-.07 6.969 1.753 1.822 1.823 2.496 4.5 1.753 6.968l-9.796 32.527c-1.114 3.699-5.021 5.798-8.721 4.684-3.699-1.114-5.798-5.022-4.684-8.721zm240.497-240.497 5.882-1.771c3.699-1.114 7.607.985 8.721 4.684s-.985 7.607-4.684 8.721l-32.526 9.795c-2.469.743-5.146.07-6.969-1.753-1.822-1.823-2.496-4.5-1.753-6.968l9.796-32.526c1.114-3.7 5.021-5.799 8.721-4.685 3.699 1.114 5.798 5.022 4.684 8.722l-1.771 5.881 49.38-49.38c2.732-2.732 7.168-2.732 9.9 0s2.732 7.168 0 9.899zm44.859 122.299 5.412 2.906c3.403 1.828 4.682 6.076 2.854 9.479-1.828 3.404-6.075 4.683-9.479 2.855l-29.926-16.074c-2.271-1.219-3.688-3.589-3.688-6.166 0-2.578 1.417-4.947 3.688-6.167l29.926-16.074c3.404-1.828 7.651-.549 9.479 2.855 1.828 3.403.549 7.651-2.854 9.479l-5.412 2.907h69.835c3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7zm-54.758 118.198 1.771 5.882c1.114 3.699-.985 7.607-4.684 8.721-3.7 1.114-7.607-.985-8.721-4.684l-9.796-32.527c-.743-2.468-.069-5.145 1.753-6.968 1.823-1.823 4.5-2.496 6.969-1.753l32.526 9.795c3.699 1.114 5.798 5.022 4.684 8.721-1.114 3.7-5.022 5.799-8.721 4.685l-5.882-1.772 49.381 49.381c2.732 2.732 2.732 7.167 0 9.899s-7.168 2.732-9.9 0z\"></path></svg>				\n									<h5>\n							gennemtænkte løsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"outline\"><path d=\"M486.41,144A28,28,0,0,0,472,92H349.123l5.457-21.828a48.513,48.513,0,0,0-12.848-46.153A41.035,41.035,0,0,0,312.609,12H308a8.009,8.009,0,0,0-8,8V47.413l-19.233,64.112A17.376,17.376,0,0,1,268,123.539V112a4,4,0,0,0-4-4H152a4,4,0,0,0-4,4v72a4,4,0,0,0,8,0V116h72V276H156V248a4,4,0,0,0-8,0v32a4,4,0,0,0,4,4H264a4,4,0,0,0,4-4V268.5h11.168A37.07,37.07,0,0,1,305.092,279a45.025,45.025,0,0,0,31.48,12.752L440,292a27.987,27.987,0,0,0,19.369-48.2,27.987,27.987,0,0,0,16-48A28,28,0,0,0,486.41,144ZM260,276H236V116h24Zm212-88H396a4,4,0,0,0,0,8h60a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h40a20,20,0,0,1,.01,40l-103.428-.25a37.07,37.07,0,0,1-25.924-10.5,45.031,45.031,0,0,0-31.49-12.752H268V131.686a25.317,25.317,0,0,0,20.429-17.862l19.4-64.675A4,4,0,0,0,308,48V20h4.609a33.082,33.082,0,0,1,23.481,9.69,40.507,40.507,0,0,1,10.728,38.541l-6.7,26.8A4,4,0,0,0,344,100H472a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h72a20,20,0,0,1,0,40Z\"></path><path d=\"M194.5,183.243l-1.9-.217a4,4,0,0,0-4.169,2.491L184.29,195.9H135.278l-3.539-9.317a4,4,0,0,0-7.478,2.84l2.459,6.477h-8.474L68.452,156.872a4,4,0,1,0-4.935,6.3L77.6,174.209,56.961,194.48l-6.636-5.491a4,4,0,1,0-5.1,6.163L87.219,229.9a44.1,44.1,0,0,0,28.05,10.1H212a8.009,8.009,0,0,0,8-8V203.9a8.009,8.009,0,0,0-8-8h-8v-2.01A10.708,10.708,0,0,0,194.5,183.243ZM212,203.9V232H115.269a36.081,36.081,0,0,1-22.951-8.264l-29.16-24.128,20.8-20.422L114.4,203.045a4,4,0,0,0,2.468.852H187a4,4,0,0,0,3.715-2.517l3.929-9.843a2.712,2.712,0,0,1,1.356,2.35v6.01a4,4,0,0,0,4,4Z\"></path><path d=\"M223.084,484.672,200.87,469.863V346.36A44.1,44.1,0,0,0,195.327,325l-17.183-30.94a4,4,0,0,0-7,3.884l17.184,30.94a36.073,36.073,0,0,1,4.537,17.478V468H164.333a4,4,0,1,0,0,8h31.321l12,8H152.865V352a4,4,0,0,0-.358-1.655l-25.454-56A4,4,0,0,0,123.411,292H114.2a4,4,0,0,0-3.945,4.658l8.862,53.175a36.016,36.016,0,0,1-1.951,18.949L78.642,468H48.333a4,4,0,1,0,0,8H80.377L92,484H32.088L76.63,361.366a4.017,4.017,0,0,0,.183-2.044L61.1,268H136a4,4,0,0,0,0-8H59.233L30.555,173.966A19.723,19.723,0,0,1,49.27,148H76a12,12,0,0,0,24,0h15.2a21.975,21.975,0,0,1,8.395,1.652l10.889,4.458a4,4,0,1,0,3.032-7.4L126.63,142.25A29.938,29.938,0,0,0,115.2,140H100v-4.527A16.014,16.014,0,0,0,112,120V103.473A16.014,16.014,0,0,0,124,88V80a4,4,0,0,0-4-4H90A22.025,22.025,0,0,0,68,98v18a12.02,12.02,0,0,0,8,11.314V140H49.27a27.723,27.723,0,0,0-26.305,36.5l29.493,88.482,16.29,94.655-46.128,127A4,4,0,0,0,26.38,492h78.485a4,4,0,0,0,2.268-7.3L86.3,470.368l38.318-98.69a44.018,44.018,0,0,0,2.385-23.16L118.921,300h1.914l24.03,52.867V488a4,4,0,0,0,4,4h72a4,4,0,0,0,2.219-7.328ZM76,98A14.015,14.015,0,0,1,90,84h26v4a8.009,8.009,0,0,1-8,8H92a4,4,0,0,0-4,4,11.962,11.962,0,0,1-1.53,5.881A12.044,12.044,0,0,0,76,104.686Zm4,14a3.981,3.981,0,0,1,3.407,1.9,4,4,0,0,0,5.956.975c.207-.171.7-.648.7-.648.032-.028.061-.057.09-.087A19.907,19.907,0,0,0,95.6,104H104v16a8.009,8.009,0,0,1-8,8,12.133,12.133,0,0,1-2.681-.3,4,4,0,1,0-1.775,7.8c.151.035.3.06.456.091V148a4,4,0,1,1-8,0V124a4,4,0,0,0-4-4,4,4,0,0,1,0-8Z\"></path></g></svg>				\n									<h5>\n							arbejde udført med ansvar						\n					</h5>\n				<p>Vi lover ikke mere, end vi kan holde – men vi holder det, vi lover.</p>			<h2>KONTAKT OS</h2>		<p>Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.</p>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 13:40:27', '2026-01-26 13:40:27', '', 10, 'https://mrarif.me/cpnordic/?p=543', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(544, 1, '2026-01-26 13:41:20', '2026-01-26 13:41:20', '<h1>CP NORDIC ApS</h1>					<h4>Byggeri – Tømrerarbejde og tagdækning</h4>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>					\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle ANMELDELSER\n					</a>\n					<h2>HVORFOR VÆLGE CP NORDIC ApS?</h2>		<p>Når du vælger CP NORDIC ApS, får du:</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 450 450\" width=\"512\"><g><g><path d=\"m225 165.2c-25.9 0-48.9-18.8-53.3-45.2-2.4-14.2.9-28.6 9.3-40.3 8.4-11.8 20.9-19.5 35.1-21.9 29.4-4.9 57.3 15 62.2 44.5 4.9 29.4-15 57.3-44.4 62.2-3 .5-6 .7-8.9.7zm-7.6-99.8c-12.2 2-22.9 8.7-30.1 18.8s-10.1 22.4-8 34.6c3.8 22.7 23.5 38.8 45.7 38.8 2.5 0 5.1-.2 7.6-.6 25.2-4.2 42.3-28.1 38.1-53.4s-28.1-42.4-53.3-38.2z\"></path><path d=\"m255.2 115c-2.1 0-3.8-1.7-3.8-3.8 0-14.6-11.8-26.4-26.4-26.4-2.1 0-3.8-1.7-3.8-3.8s1.7-3.8 3.8-3.8c18.8 0 34.1 15.3 34.1 34.1 0 2-1.8 3.7-3.9 3.7z\"></path><path d=\"m236.1 203h-22.2c-2.1 0-3.8-1.7-3.8-3.8v-14.1c-3.1-.6-6.1-1.4-9.1-2.4l-7 12.2c-1.1 1.8-3.4 2.5-5.3 1.4l-19.2-11.1c-.9-.5-1.5-1.4-1.8-2.3-.3-1-.1-2 .4-2.9l7-12.1c-2.4-2.1-4.6-4.3-6.7-6.6l-12.1 7c-1.8 1.1-4.2.4-5.2-1.4l-11.1-19.2c-1.1-1.8-.4-4.2 1.4-5.2l11.9-6.8c-1-3-1.9-6.1-2.6-9.3h-13.7c-2.1 0-3.8-1.7-3.8-3.8v-22.2c0-2.1 1.7-3.8 3.8-3.8h13.4c.6-3.2 1.4-6.4 2.4-9.5l-11.5-6.6c-1.8-1.1-2.5-3.4-1.4-5.3l11.1-19.6c.5-.9 1.4-1.5 2.3-1.8s2-.1 2.9.4l11.3 6.6c2.2-2.5 4.5-4.8 7-7l-6.5-11.3c-.5-.9-.6-1.9-.4-2.9.3-1 .9-1.8 1.8-2.3l19.2-11.1c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l6.4 11.2c3.1-1.1 6.4-1.9 9.7-2.6v-13c0-2.1 1.7-3.8 3.8-3.8h22.2c2.1 0 3.8 1.7 3.8 3.8v12.8c3.3.7 6.5 1.5 9.7 2.6l6.5-11.2c.5-.9 1.4-1.5 2.3-1.8 1-.3 2-.1 2.9.4l19.2 11.1c.9.5 1.5 1.3 1.8 2.3s.1 2-.4 2.9l-6.5 11.3c2.5 2.2 4.8 4.5 7 7.1l11.3-6.6c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l11.1 19.2c1.1 1.8.4 4.2-1.4 5.3l-11.5 6.6c1 3.1 1.8 6.3 2.5 9.5h13.6c2.1 0 3.8 1.7 3.8 3.8v22.2c0 2.1-1.7 3.8-3.8 3.8h-13.6c-.6 3.1-1.5 6.2-2.5 9.3l11.9 6.8c1.8 1.1 2.5 3.4 1.4 5.2l-11.2 19.5c-1.1 1.8-3.4 2.5-5.2 1.4l-12-7c-2.1 2.4-4.4 4.6-6.7 6.6l7 12.1c.5.9.6 1.9.4 2.9s-.9 1.8-1.8 2.3l-19.2 11.1c-1.8 1.1-4.2.4-5.2-1.4l-7-12.2c-3 1-6 1.8-9.1 2.4v14.1c-.2 2.3-2 4-4.1 4zm-18.4-7.7h14.5v-13.5c0-1.9 1.4-3.5 3.3-3.8 4.7-.7 9.4-2 13.8-3.7 1.8-.7 3.8 0 4.7 1.7l6.7 11.6 12.6-7.3-6.7-11.6c-1-1.6-.5-3.7.9-4.9 3.7-3 7.2-6.4 10.2-10.1 1.2-1.5 3.3-1.8 4.9-.9l11.5 6.6 7.3-12.6-11.3-6.5c-1.6-.9-2.4-3-1.6-4.7 1.8-4.5 3.1-9.2 3.9-14 .3-1.9 1.9-3.2 3.8-3.2h13v-14.6h-12.8c-1.9 0-3.5-1.4-3.8-3.3-.7-4.8-2-9.6-3.7-14.2-.7-1.8 0-3.7 1.7-4.7l10.9-6.3-7.3-12.6-10.8 6.3c-1.6.9-3.7.6-4.9-.9-3.1-3.9-6.6-7.4-10.4-10.6-1.5-1.2-1.9-3.3-.9-4.9l6.2-10.7-12.6-7.3-6.1 10.6c-1 1.6-3 2.3-4.7 1.7-4.6-1.8-9.5-3.1-14.4-3.9-1.9-.3-3.3-1.9-3.3-3.8v-12.2h-14.5v12.3c0 1.9-1.4 3.5-3.3 3.8-5 .8-9.8 2.1-14.4 3.9-1.8.7-3.8 0-4.7-1.7l-6.1-10.6-12.6 7.3 6.2 10.7c.9 1.6.6 3.7-.9 4.9-3.9 3.1-7.4 6.7-10.4 10.6-1.2 1.5-3.3 1.9-4.9.9l-10.8-6.3-7.3 12.6 10.9 6.3c1.6.9 2.3 2.9 1.7 4.7-1.7 4.6-3 9.4-3.7 14.2-.3 1.9-1.9 3.3-3.8 3.3h-12.8v14.5h13c1.9 0 3.5 1.4 3.8 3.2.8 4.8 2.1 9.5 3.9 14 .7 1.8 0 3.8-1.6 4.7l-11.3 6.5 7.3 12.6 11.5-6.6c1.6-.9 3.7-.6 4.9.9 3 3.7 6.5 7.1 10.3 10.1 1.5 1.2 1.9 3.3.9 4.9l-6.7 11.6 12.6 7.3 6.7-11.6c.9-1.6 2.9-2.3 4.7-1.7 4.5 1.7 9.1 2.9 13.8 3.7 1.9.3 3.3 1.9 3.3 3.8z\"></path></g><g><g><g><path d=\"m45.3 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m153.9 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path></g><g><path d=\"m189.3 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.2c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c0 2.1-1.7 3.8-3.8 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m73.3 326.4c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m126 326.4c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m99.7 325.6c-.6 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4s4.1 1.1 4.4 3.2c2.4 16.5 12.3 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m50.2 266.6c-.1 0-.2 0-.3 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.7 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-8.9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.5 2.2zm81.8-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13.1-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.4-.7 2.3-.7z\"></path></g></g></g><g><g><path d=\"m296.1 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m404.7 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path></g><g><path d=\"m440 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.1c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c.2 2.1-1.6 3.8-3.7 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m324 326.3c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m376.7 326.3c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m350.4 325.6c-.5 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4 2.1-.3 4 1.1 4.4 3.2 2.4 16.5 12.4 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m301 266.6c-.1 0-.2 0-.4 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.6 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.4 2.2zm81.7-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.5-.7 2.3-.7z\"></path></g></g></g></g></g></svg>				\n									<h5>\n							et ungt og engageret team						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"496pt\" viewBox=\"0 0 496 496\" width=\"496pt\"><path d=\"m440 328h-28.207031c5.078125-6.703125 8.207031-14.960938 8.207031-24 0-8.824219-7.175781-16-16-16h-12v-19.960938c59.574219-14.445312 104-68.085937 104-132.039062 0-74.992188-61.007812-136-136-136s-136 61.007812-136 136c0 63.953125 44.425781 117.59375 104 132.039062v19.960938h-8.449219c-6.167969 0-12.359375 1.464844-17.886719 4.214844l-50.480468 25.25c-3.320313 1.664062-7.03125 2.535156-10.734375 2.535156h-40.449219v-16h-104v16h56v56h16v-56h16v128h-16v-56h-16v56h-56v16h104v-16h40.449219c3.703125 0 7.414062.871094 10.734375 2.527344l34.488281 17.25c5.519531 2.757812 11.710937 4.222656 17.878906 4.222656h24.449219v24h64v-24h48c13.230469 0 24-10.769531 24-24 0-6.167969-2.40625-11.742188-6.238281-16 3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16 0-13.230469-10.769531-24-24-24zm8 24c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm-208-280c0-66.167969 53.832031-120 120-120s120 53.832031 120 120-53.832031 120-120 120-120-53.832031-120-120zm104 134.976562c5.257812.617188 10.574219 1.023438 16 1.023438s10.742188-.40625 16-1.023438v17.023438h-32zm-40.449219 185.023438c-3.703125 0-7.414062-.871094-10.734375-2.527344l-34.488281-17.25c-5.519531-2.757812-11.710937-4.222656-17.878906-4.222656h-40.449219v-96h40.449219c6.167969 0 12.359375-1.464844 17.886719-4.214844l50.480468-25.25c3.320313-1.664062 7.03125-2.535156 10.734375-2.535156h84.449219c0 13.230469-10.769531 24-24 24h-48.28125l-23.863281 35.808594c-6.101563 9.160156-14.527344 16.589844-24.367188 21.503906-8.753906 4.375-18.542969 6.6875-28.320312 6.6875h-15.167969v16h15.167969c12.246093 0 24.519531-2.894531 35.472656-8.375 12.328125-6.160156 22.878906-15.480469 30.527344-26.945312l6.832031-10.253907v93.574219zm40.449219 24v-136h17.472656c-.898437 2.511719-1.472656 5.183594-1.472656 8 0 6.167969 2.40625 11.742188 6.238281 16-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16 0 10.414062 6.710938 19.214844 16 22.527344v9.472656zm96-24h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8s-3.59375 8-8 8zm0 0\"></path><path d=\"m394.878906 73.007812-7.757812 13.984376c17.816406 9.878906 28.878906 28.664062 28.878906 49.007812h16c0-26.160156-14.222656-50.296875-37.121094-62.992188zm0 0\"></path><path d=\"m360 80c4.734375 0 9.449219.59375 14.007812 1.769531l3.976563-15.503906c-5.855469-1.496094-11.90625-2.265625-17.984375-2.265625zm0 0\"></path><path d=\"m360 48c48.519531 0 88 39.480469 88 88 0 20.753906-7.398438 40.910156-20.832031 56.785156l12.207031 10.34375c15.882812-18.761718 24.625-42.601562 24.625-67.128906 0-57.34375-46.65625-104-104-104-24.527344 0-48.367188 8.753906-67.128906 24.632812l10.335937 12.199219c15.871094-13.433593 36.039063-20.832031 56.792969-20.832031zm0 0\"></path><path d=\"m427.128906 215.367188-10.335937-12.199219c-15.871094 13.433593-36.039063 20.832031-56.792969 20.832031-48.519531 0-88-39.480469-88-88 0-20.753906 7.398438-40.910156 20.832031-56.785156l-12.207031-10.34375c-15.882812 18.761718-24.625 42.601562-24.625 67.128906 0 57.34375 46.65625 104 104 104 24.527344 0 48.367188-8.753906 67.128906-24.632812zm0 0\"></path><path d=\"m121.214844 165.640625c4.953125-1.375 9.695312-3.34375 14.183594-5.878906l9.769531 4.886719 19.472656-19.480469-4.886719-9.769531c2.535156-4.496094 4.503906-9.230469 5.886719-14.183594l10.359375-3.445313v-27.53125l-10.351562-3.453125c-1.375-4.953125-3.34375-9.707031-5.886719-14.183594l4.886719-9.777343-19.472657-19.472657-9.769531 4.886719c-4.484375-2.535156-9.230469-4.503906-14.183594-5.878906l-3.453125-10.359375h-27.539062l-3.445313 10.359375c-4.953125 1.375-9.695312 3.34375-14.183594 5.878906l-9.777343-4.886719-19.472657 19.472657 4.886719 9.777343c-2.535156 4.488282-4.503906 9.230469-5.886719 14.183594l-10.351562 3.445313v27.53125l10.351562 3.453125c1.375 4.953125 3.34375 9.695312 5.886719 14.183594l-4.886719 9.769531 19.472657 19.480469 9.769531-4.886719c4.484375 2.535156 9.230469 4.503906 14.183594 5.878906l3.453125 10.359375h27.539062zm-12.304688-13.679687-2.679687 8.039062h-4.460938l-2.679687-8.039062-4.554688-.90625c-6.128906-1.222657-11.878906-3.605469-17.109375-7.09375l-3.867187-2.578126-7.574219 3.800782-3.160156-3.167969 3.792969-7.582031-2.578126-3.859375c-3.488281-5.222657-5.871093-10.980469-7.09375-17.109375l-.914062-4.554688-8.03125-2.679687v-4.46875l8.03125-2.671875.914062-4.554688c1.222657-6.136718 3.613282-11.886718 7.09375-17.109375l2.578126-3.859375-3.792969-7.589844 3.160156-3.160156 7.574219 3.800782 3.867187-2.578126c5.222657-3.488281 10.980469-5.863281 17.109375-7.09375l4.554688-.90625 2.679687-8.039062h4.460938l2.679687 8.039062 4.554688.90625c6.128906 1.222657 11.878906 3.605469 17.109375 7.09375l3.867187 2.578126 7.574219-3.800782 3.160156 3.160156-3.792969 7.589844 2.578126 3.859375c3.488281 5.214844 5.871093 10.972657 7.09375 17.109375l.914062 4.554688 8.03125 2.679687v4.46875l-8.03125 2.671875-.914062 4.554688c-1.222657 6.128906-3.613282 11.878906-7.09375 17.109375l-2.578126 3.859375 3.792969 7.582031-3.160156 3.167969-7.574219-3.800782-3.867187 2.578126c-5.222657 3.488281-10.980469 5.863281-17.109375 7.09375zm0 0\"></path><path d=\"m104 72c-17.648438 0-32 14.351562-32 32s14.351562 32 32 32 32-14.351562 32-32-14.351562-32-32-32zm0 48c-8.824219 0-16-7.175781-16-16s7.175781-16 16-16 16 7.175781 16 16-7.175781 16-16 16zm0 0\"></path><path d=\"m160 248v-40h48v-208h-208v208h106.664062zm-144-232h176v176h-48v24l-32-24h-96zm0 0\"></path><path d=\"m0 272h16v16h-16zm0 0\"></path><path d=\"m32 272h16v16h-16zm0 0\"></path><path d=\"m64 272h16v16h-16zm0 0\"></path><path d=\"m32 304h16v16h-16zm0 0\"></path><path d=\"m64 304h16v16h-16zm0 0\"></path><path d=\"m0 480h16v16h-16zm0 0\"></path><path d=\"m32 480h16v16h-16zm0 0\"></path><path d=\"m64 480h16v16h-16zm0 0\"></path><path d=\"m32 448h16v16h-16zm0 0\"></path><path d=\"m64 448h16v16h-16zm0 0\"></path></svg>				\n									<h5>\n							fokus på kvalitet og detaljer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m469.12 408.93-67.26-33.63v-22.13c10.71-7.69 18.6-19.07 21.78-32.27h5.28c8.81 0 15.98-7.17 15.98-15.98v-5.29c0-6.35-3.74-11.84-9.12-14.41 5.19-18.64-1.65-39.76-19.44-59.78-12.58-14.16-30.67-22.27-49.62-22.27-18.93 0-37.01 8.12-49.59 22.27-13.38 15.05-20.95 41.01-14.03 59.62-5.56 2.5-9.45 8.09-9.45 14.57v5.29c0 8.81 7.17 15.98 15.98 15.98h5.55c3.16 13.09 10.94 24.39 21.51 32.08v22.32l-67.26 33.63c-16.7 5.87-27.89 21.6-27.89 39.28v41.63c0 3.31 2.69 6 6 6h243.46c3.31 0 6-2.69 6-6v-41.63c0-17.68-11.19-33.41-27.88-39.28zm-62.24-17.7-15.83 27.66-13.29-13.29 19.29-19.29zm-37.61 5.88-20.59-20.58v-16.91c6.41 2.57 13.4 4.01 20.72 4.01 7.22 0 14.11-1.39 20.45-3.9v16.8zm63.63-97.48v5.29c0 2.16-1.82 3.98-3.98 3.98h-3.74c.01-.36.03-.71.03-1.07v-12.18h3.71c2.15-.01 3.98 1.82 3.98 3.98zm-119.29 8.2v1.07h-3.98c-2.16 0-3.98-1.82-3.98-3.98v-5.29c0-2.16 1.82-3.98 3.98-3.98l3.98.22zm1.95-24.19c-7.33-13.69-.89-37.39 10.53-50.24 10.31-11.6 25.12-18.25 40.63-18.25 15.52 0 30.34 6.65 40.65 18.25 8.43 9.48 21.3 27.59 17.4 46.39-5.66-.35-10.67-2.55-14.4-6.36-5.37-5.49-7.72-14-6.63-23.94.29-2.62-1.17-5.13-3.6-6.17s-5.25-.37-6.95 1.65c-19.33 22.92-45.95 36.76-73.9 38.68h-3.73zm10.05 24.19v-12.73c24.57-2.92 47.92-14.05 66.73-31.8 1.43 7.26 4.63 13.6 9.45 18.52 3.27 3.35 7.14 5.89 11.41 7.58v18.42c0 24.15-19.65 43.8-43.8 43.8s-43.79-19.64-43.79-43.79zm15.89 78.48 19.29 19.29-13.29 13.29-15.84-27.66zm3.22 97.53h-39.42v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.76v-35.63c0-12.68 8.1-23.95 20.15-28.05.26-.09.51-.19.75-.31l46.47-23.23 20.07 35.06c.93 1.62 2.56 2.72 4.41 2.97.27.04.53.05.79.05 1.58 0 3.11-.62 4.24-1.76l.14-.14zm12.08 0 7.41-64.69 5.06-5.06 4.84 4.84 7.86 64.92h-25.17zm128.2 0h-39.76v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.18l-6.2-51.17.25.25c1.13 1.13 2.66 1.76 4.24 1.76.26 0 .53-.02.79-.05 1.85-.25 3.48-1.34 4.41-2.97l20.07-35.06 46.47 23.23c.24.12.49.23.75.31 12.05 4.1 20.15 15.38 20.15 28.05v35.65zm-67.04-346.65h-10.84l28.38 39.84 28.38-39.84h-10.84c-3.31 0-6-2.69-6-6v-64.58h-98.7c-3.31 0-6-2.69-6-6s2.69-6 6-6h104.7c3.31 0 6 2.69 6 6v64.58h16.48c2.25 0 4.3 1.25 5.33 3.25s.86 4.4-.45 6.23l-40.02 56.18c-1.13 1.58-2.95 2.52-4.89 2.52s-3.76-.94-4.89-2.52l-40.02-56.18c-1.3-1.83-1.48-4.23-.45-6.23s3.09-3.25 5.33-3.25h16.48v-23.5h-65.38c-3.31 0-6-2.69-6-6s2.69-6 6-6h71.38c3.31 0 6 2.69 6 6v35.5c.02 3.31-2.67 6-5.98 6zm-118.44 50.65v-133.26c0-21.18-17.23-38.41-38.41-38.41h-207.7c-21.18-.01-38.41 17.23-38.41 38.41v133.26c0 21.18 17.23 38.41 38.41 38.41h105.8l64.8 55.11c1.11.94 2.49 1.43 3.89 1.43.85 0 1.71-.18 2.52-.55 2.12-.98 3.48-3.11 3.48-5.45v-50.54h27.21c21.18 0 38.41-17.23 38.41-38.41zm-71.62 26.41c-3.31 0-6 2.69-6 6v43.56l-56.59-48.13c-1.08-.92-2.46-1.43-3.89-1.43h-108.01c-14.56 0-26.41-11.85-26.41-26.41v-133.26c0-14.56 11.85-26.41 26.41-26.41h207.69c14.56 0 26.41 11.85 26.41 26.41v133.26c0 14.56-11.85 26.41-26.41 26.41zm-156.34-87.87h56.97c3.31 0 6-2.69 6-6v-39.2l8.55-8.55c2.34-2.34 2.34-6.14 0-8.49-2.34-2.34-6.14-2.34-8.48 0l-.7.7c-.98-1.97-3.01-3.32-5.36-3.32h-56.98c-3.31 0-6 2.69-6 6v52.85c0 3.32 2.69 6.01 6 6.01zm6-52.86h44.97v2.69l-18.16 18.16-8.84-8.84c-2.34-2.34-6.14-2.34-8.49 0-2.34 2.34-2.34 6.14 0 8.49l13.08 13.08c1.17 1.17 2.71 1.76 4.24 1.76s3.07-.59 4.24-1.76l13.92-13.92v21.2h-44.96zm173.62 3.08c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 31.92c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 36.52c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.68 5.99 6zm0 31.92c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.69 5.99 6zm-119.36 165.01h10.84l-28.38-39.84-28.38 39.84h10.84c3.31 0 6 2.69 6 6v64.58h98.7c3.31 0 6 2.69 6 6s-2.69 6-6 6h-104.69c-3.31 0-6-2.69-6-6v-64.58h-16.48c-2.25 0-4.3-1.25-5.33-3.25s-.86-4.4.45-6.23l40.02-56.18c1.13-1.58 2.95-2.52 4.89-2.52s3.76.94 4.89 2.52l40.02 56.18c1.3 1.83 1.48 4.23.45 6.23s-3.09 3.25-5.33 3.25h-16.48v23.5h65.38c3.31 0 6 2.69 6 6s-2.69 6-6 6h-71.38c-3.31 0-6-2.69-6-6v-35.5c-.03-3.31 2.66-6 5.97-6z\"></path></svg>				\n									<h5>\n							ærlig<br> rådgivning						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 510 510\"><path d=\"m192.036 385.845c-4.787-46.972-19.459-64.336-30.658-82.352-8.672-13.951-15.5-28.245-15.5-54.252 0-60.242 48.865-109.109 109.135-109.109 60.242 0 109.109 48.866 109.109 109.109 0 26.007-6.828 40.301-15.5 54.252-11.199 18.016-25.871 35.38-30.658 82.352 9.985 2.864 17.345 12.101 17.345 22.975v36.44c0 13.109-10.747 23.866-23.893 23.866h-10.334v9.945c0 12.588-10.341 22.929-22.93 22.929h-46.304c-12.589 0-22.93-10.341-22.93-22.929v-9.945h-10.334c-13.146 0-23.893-10.757-23.893-23.866v-36.44c0-10.874 7.36-20.111 17.345-22.975zm111.948-.917c4.199-42.194 15.78-62.332 26.488-79.049 10.147-15.842 19.65-28.207 19.65-56.638 0-52.513-42.597-95.109-95.109-95.109-52.537 0-95.135 42.596-95.135 95.109 0 28.431 9.503 40.796 19.65 56.638 10.708 16.717 22.289 36.855 26.488 79.049zm2.554-78.61c-1.175 13.701-11.985 24.191-24.783 24.191-13.527 0-24.862-12.086-24.862-26.673v-99.328c0-14.12 11.335-26.673 24.862-26.673 11.309 0 21.031 8.139 23.975 19.497 9.12 3.904 15.688 13.438 15.688 24.78 0 1.153-.068 2.289-.201 3.403 5.078 5.326 8.283 12.802 8.283 21.117 0 6.39-1.889 12.262-5.06 17.053 1.996 4.099 3.13 8.773 3.13 13.76 0 14.1-9.065 25.697-21.032 28.873zm-16.452-109.977c-1.964-2.729-4.916-4.506-8.331-4.506-6.192 0-10.862 6.21-10.862 12.673v99.328c0 6.677 4.67 12.673 10.862 12.673 5.516 0 9.822-4.614 10.717-10.425-4.709-1.416-8.923-4.144-12.279-7.814-2.607-2.852-2.409-7.283.443-9.89 2.851-2.607 7.282-2.408 9.889.443 2.416 2.642 5.72 4.356 9.402 4.356 7.733 0 13.643-7.218 13.643-15.734s-5.91-15.734-13.643-15.734c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7 5.352 0 10.388 1.655 14.658 4.533.593-1.743.915-3.634.915-5.612 0-2.11-.366-4.128-1.036-5.972-.769.858-1.588 1.66-2.453 2.397-2.94 2.507-7.361 2.156-9.869-.784-2.507-2.939-2.155-7.361.784-9.868 2.773-2.365 4.492-6.122 4.492-10.293 0-6.072-3.705-11.374-8.898-12.467-.154-.023-.307-.052-.458-.085-.499-.08-1.01-.121-1.532-.121-2.947 0-5.591 1.389-7.515 3.525-2.585 2.87-7.015 3.101-9.886.515-2.87-2.586-3.101-7.015-.515-9.886 3.111-3.453 7.059-5.988 11.472-7.252zm-104.526 67.344c-3.171-4.791-5.06-10.663-5.06-17.053 0-8.307 3.198-15.777 8.284-21.104-.133-1.118-.202-2.258-.202-3.416 0-11.354 6.582-20.897 15.717-24.792 2.948-11.354 12.67-19.485 23.946-19.485 13.56 0 24.888 12.555 24.888 26.673v99.328c0 14.585-11.328 26.673-24.888 26.673-12.765 0-23.578-10.484-24.757-24.184-11.98-3.166-21.058-14.769-21.058-28.88 0-4.987 1.134-9.661 3.13-13.76zm9.982-23.036c-.675 1.847-1.042 3.869-1.042 5.983 0 1.978.322 3.869.915 5.612 4.27-2.878 9.306-4.533 14.658-4.533 3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7-7.733 0-13.643 7.218-13.643 15.734s5.91 15.734 13.643 15.734c3.682 0 6.986-1.714 9.402-4.356 2.607-2.851 7.038-3.05 9.889-.443 2.852 2.607 3.05 7.038.443 9.89-3.35 3.664-7.556 6.389-12.255 7.807.891 5.813 5.192 10.432 10.693 10.432 6.21 0 10.888-5.993 10.888-12.673v-99.328c0-6.466-4.678-12.673-10.888-12.673-3.404 0-6.349 1.777-8.309 4.507 4.421 1.264 8.367 3.8 11.476 7.251 2.586 2.871 2.355 7.3-.516 9.886-2.87 2.586-7.3 2.355-9.886-.515-1.926-2.138-4.574-3.525-7.54-3.525-.493 0-.976.037-1.448.108-.196.045-.395.082-.596.11-5.165 1.118-8.844 6.404-8.844 12.455 0 1.243.153 2.45.442 3.594.101.284.183.572.246.862.748 2.326 2.071 4.346 3.814 5.823 2.947 2.498 3.311 6.919.813 9.866s-6.919 3.312-9.866.814c-.878-.745-1.71-1.554-2.489-2.422zm3.042 158.279c-5.442 0-9.893 4.451-9.893 9.892v36.44c0 5.423 4.454 9.866 9.893 9.866h17.334c3.866 0 7 3.134 7 7v16.945c0 4.902 4.027 8.929 8.93 8.929h46.304c4.903 0 8.93-4.027 8.93-8.929v-16.945c0-3.866 3.134-7 7-7h17.334c5.439 0 9.893-4.443 9.893-9.866v-36.44c0-5.441-4.451-9.892-9.893-9.892zm63.416-314.093 2.907-5.412c1.828-3.403 6.075-4.683 9.479-2.854 3.403 1.828 4.682 6.075 2.854 9.479l-16.073 29.925c-1.22 2.271-3.589 3.688-6.167 3.688s-4.947-1.417-6.167-3.688l-16.073-29.925c-1.828-3.404-.549-7.651 2.854-9.479 3.404-1.829 7.651-.549 9.479 2.854l2.907 5.412v-69.835c0-3.863 3.137-7 7-7s7 3.137 7 7zm-132.198 54.758-49.381-49.381c-2.732-2.731-2.732-7.167 0-9.899s7.168-2.732 9.9 0l49.38 49.38-1.771-5.881c-1.114-3.7.985-7.608 4.684-8.722 3.7-1.114 7.607.985 8.721 4.685l9.796 32.526c.743 2.468.069 5.145-1.753 6.968-1.823 1.823-4.5 2.496-6.969 1.753l-32.526-9.795c-3.699-1.114-5.798-5.022-4.684-8.721s5.022-5.798 8.721-4.684zm-44.859 122.299h-69.835c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7h69.835l-5.412-2.907c-3.403-1.828-4.682-6.076-2.854-9.479 1.828-3.404 6.075-4.683 9.479-2.855l29.926 16.074c2.271 1.22 3.688 3.589 3.688 6.167 0 2.577-1.417 4.947-3.688 6.166l-29.926 16.074c-3.404 1.828-7.651.549-9.479-2.855-1.828-3.403-.549-7.651 2.854-9.479zm54.758 118.198-49.38 49.38c-2.732 2.732-7.168 2.732-9.9 0s-2.732-7.167 0-9.899l49.381-49.381-5.882 1.772c-3.699 1.114-7.607-.985-8.721-4.685-1.114-3.699.985-7.607 4.684-8.721l32.526-9.795c2.469-.743 5.146-.07 6.969 1.753 1.822 1.823 2.496 4.5 1.753 6.968l-9.796 32.527c-1.114 3.699-5.021 5.798-8.721 4.684-3.699-1.114-5.798-5.022-4.684-8.721zm240.497-240.497 5.882-1.771c3.699-1.114 7.607.985 8.721 4.684s-.985 7.607-4.684 8.721l-32.526 9.795c-2.469.743-5.146.07-6.969-1.753-1.822-1.823-2.496-4.5-1.753-6.968l9.796-32.526c1.114-3.7 5.021-5.799 8.721-4.685 3.699 1.114 5.798 5.022 4.684 8.722l-1.771 5.881 49.38-49.38c2.732-2.732 7.168-2.732 9.9 0s2.732 7.168 0 9.899zm44.859 122.299 5.412 2.906c3.403 1.828 4.682 6.076 2.854 9.479-1.828 3.404-6.075 4.683-9.479 2.855l-29.926-16.074c-2.271-1.219-3.688-3.589-3.688-6.166 0-2.578 1.417-4.947 3.688-6.167l29.926-16.074c3.404-1.828 7.651-.549 9.479 2.855 1.828 3.403.549 7.651-2.854 9.479l-5.412 2.907h69.835c3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7zm-54.758 118.198 1.771 5.882c1.114 3.699-.985 7.607-4.684 8.721-3.7 1.114-7.607-.985-8.721-4.684l-9.796-32.527c-.743-2.468-.069-5.145 1.753-6.968 1.823-1.823 4.5-2.496 6.969-1.753l32.526 9.795c3.699 1.114 5.798 5.022 4.684 8.721-1.114 3.7-5.022 5.799-8.721 4.685l-5.882-1.772 49.381 49.381c2.732 2.732 2.732 7.167 0 9.899s-7.168 2.732-9.9 0z\"></path></svg>				\n									<h5>\n							gennemtænkte løsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"outline\"><path d=\"M486.41,144A28,28,0,0,0,472,92H349.123l5.457-21.828a48.513,48.513,0,0,0-12.848-46.153A41.035,41.035,0,0,0,312.609,12H308a8.009,8.009,0,0,0-8,8V47.413l-19.233,64.112A17.376,17.376,0,0,1,268,123.539V112a4,4,0,0,0-4-4H152a4,4,0,0,0-4,4v72a4,4,0,0,0,8,0V116h72V276H156V248a4,4,0,0,0-8,0v32a4,4,0,0,0,4,4H264a4,4,0,0,0,4-4V268.5h11.168A37.07,37.07,0,0,1,305.092,279a45.025,45.025,0,0,0,31.48,12.752L440,292a27.987,27.987,0,0,0,19.369-48.2,27.987,27.987,0,0,0,16-48A28,28,0,0,0,486.41,144ZM260,276H236V116h24Zm212-88H396a4,4,0,0,0,0,8h60a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h40a20,20,0,0,1,.01,40l-103.428-.25a37.07,37.07,0,0,1-25.924-10.5,45.031,45.031,0,0,0-31.49-12.752H268V131.686a25.317,25.317,0,0,0,20.429-17.862l19.4-64.675A4,4,0,0,0,308,48V20h4.609a33.082,33.082,0,0,1,23.481,9.69,40.507,40.507,0,0,1,10.728,38.541l-6.7,26.8A4,4,0,0,0,344,100H472a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h72a20,20,0,0,1,0,40Z\"></path><path d=\"M194.5,183.243l-1.9-.217a4,4,0,0,0-4.169,2.491L184.29,195.9H135.278l-3.539-9.317a4,4,0,0,0-7.478,2.84l2.459,6.477h-8.474L68.452,156.872a4,4,0,1,0-4.935,6.3L77.6,174.209,56.961,194.48l-6.636-5.491a4,4,0,1,0-5.1,6.163L87.219,229.9a44.1,44.1,0,0,0,28.05,10.1H212a8.009,8.009,0,0,0,8-8V203.9a8.009,8.009,0,0,0-8-8h-8v-2.01A10.708,10.708,0,0,0,194.5,183.243ZM212,203.9V232H115.269a36.081,36.081,0,0,1-22.951-8.264l-29.16-24.128,20.8-20.422L114.4,203.045a4,4,0,0,0,2.468.852H187a4,4,0,0,0,3.715-2.517l3.929-9.843a2.712,2.712,0,0,1,1.356,2.35v6.01a4,4,0,0,0,4,4Z\"></path><path d=\"M223.084,484.672,200.87,469.863V346.36A44.1,44.1,0,0,0,195.327,325l-17.183-30.94a4,4,0,0,0-7,3.884l17.184,30.94a36.073,36.073,0,0,1,4.537,17.478V468H164.333a4,4,0,1,0,0,8h31.321l12,8H152.865V352a4,4,0,0,0-.358-1.655l-25.454-56A4,4,0,0,0,123.411,292H114.2a4,4,0,0,0-3.945,4.658l8.862,53.175a36.016,36.016,0,0,1-1.951,18.949L78.642,468H48.333a4,4,0,1,0,0,8H80.377L92,484H32.088L76.63,361.366a4.017,4.017,0,0,0,.183-2.044L61.1,268H136a4,4,0,0,0,0-8H59.233L30.555,173.966A19.723,19.723,0,0,1,49.27,148H76a12,12,0,0,0,24,0h15.2a21.975,21.975,0,0,1,8.395,1.652l10.889,4.458a4,4,0,1,0,3.032-7.4L126.63,142.25A29.938,29.938,0,0,0,115.2,140H100v-4.527A16.014,16.014,0,0,0,112,120V103.473A16.014,16.014,0,0,0,124,88V80a4,4,0,0,0-4-4H90A22.025,22.025,0,0,0,68,98v18a12.02,12.02,0,0,0,8,11.314V140H49.27a27.723,27.723,0,0,0-26.305,36.5l29.493,88.482,16.29,94.655-46.128,127A4,4,0,0,0,26.38,492h78.485a4,4,0,0,0,2.268-7.3L86.3,470.368l38.318-98.69a44.018,44.018,0,0,0,2.385-23.16L118.921,300h1.914l24.03,52.867V488a4,4,0,0,0,4,4h72a4,4,0,0,0,2.219-7.328ZM76,98A14.015,14.015,0,0,1,90,84h26v4a8.009,8.009,0,0,1-8,8H92a4,4,0,0,0-4,4,11.962,11.962,0,0,1-1.53,5.881A12.044,12.044,0,0,0,76,104.686Zm4,14a3.981,3.981,0,0,1,3.407,1.9,4,4,0,0,0,5.956.975c.207-.171.7-.648.7-.648.032-.028.061-.057.09-.087A19.907,19.907,0,0,0,95.6,104H104v16a8.009,8.009,0,0,1-8,8,12.133,12.133,0,0,1-2.681-.3,4,4,0,1,0-1.775,7.8c.151.035.3.06.456.091V148a4,4,0,1,1-8,0V124a4,4,0,0,0-4-4,4,4,0,0,1,0-8Z\"></path></g></svg>				\n									<h5>\n							arbejde udført med ansvar						\n					</h5>\n				<p>Vi lover ikke mere, end vi kan holde – men vi holder det, vi lover.</p>			<h2>KONTAKT OS</h2>		<p>Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.</p>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 13:41:20', '2026-01-26 13:41:20', '', 10, 'https://mrarif.me/cpnordic/?p=544', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(545, 1, '2026-01-26 13:41:20', '2026-01-26 13:41:20', '<h1>CP NORDIC ApS</h1>					<h4>Byggeri – Tømrerarbejde og tagdækning</h4>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>					\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle ANMELDELSER\n					</a>\n					<h2>HVORFOR VÆLGE CP NORDIC ApS?</h2>		<p>Når du vælger CP NORDIC ApS, får du:</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 450 450\" width=\"512\"><g><g><path d=\"m225 165.2c-25.9 0-48.9-18.8-53.3-45.2-2.4-14.2.9-28.6 9.3-40.3 8.4-11.8 20.9-19.5 35.1-21.9 29.4-4.9 57.3 15 62.2 44.5 4.9 29.4-15 57.3-44.4 62.2-3 .5-6 .7-8.9.7zm-7.6-99.8c-12.2 2-22.9 8.7-30.1 18.8s-10.1 22.4-8 34.6c3.8 22.7 23.5 38.8 45.7 38.8 2.5 0 5.1-.2 7.6-.6 25.2-4.2 42.3-28.1 38.1-53.4s-28.1-42.4-53.3-38.2z\"></path><path d=\"m255.2 115c-2.1 0-3.8-1.7-3.8-3.8 0-14.6-11.8-26.4-26.4-26.4-2.1 0-3.8-1.7-3.8-3.8s1.7-3.8 3.8-3.8c18.8 0 34.1 15.3 34.1 34.1 0 2-1.8 3.7-3.9 3.7z\"></path><path d=\"m236.1 203h-22.2c-2.1 0-3.8-1.7-3.8-3.8v-14.1c-3.1-.6-6.1-1.4-9.1-2.4l-7 12.2c-1.1 1.8-3.4 2.5-5.3 1.4l-19.2-11.1c-.9-.5-1.5-1.4-1.8-2.3-.3-1-.1-2 .4-2.9l7-12.1c-2.4-2.1-4.6-4.3-6.7-6.6l-12.1 7c-1.8 1.1-4.2.4-5.2-1.4l-11.1-19.2c-1.1-1.8-.4-4.2 1.4-5.2l11.9-6.8c-1-3-1.9-6.1-2.6-9.3h-13.7c-2.1 0-3.8-1.7-3.8-3.8v-22.2c0-2.1 1.7-3.8 3.8-3.8h13.4c.6-3.2 1.4-6.4 2.4-9.5l-11.5-6.6c-1.8-1.1-2.5-3.4-1.4-5.3l11.1-19.6c.5-.9 1.4-1.5 2.3-1.8s2-.1 2.9.4l11.3 6.6c2.2-2.5 4.5-4.8 7-7l-6.5-11.3c-.5-.9-.6-1.9-.4-2.9.3-1 .9-1.8 1.8-2.3l19.2-11.1c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l6.4 11.2c3.1-1.1 6.4-1.9 9.7-2.6v-13c0-2.1 1.7-3.8 3.8-3.8h22.2c2.1 0 3.8 1.7 3.8 3.8v12.8c3.3.7 6.5 1.5 9.7 2.6l6.5-11.2c.5-.9 1.4-1.5 2.3-1.8 1-.3 2-.1 2.9.4l19.2 11.1c.9.5 1.5 1.3 1.8 2.3s.1 2-.4 2.9l-6.5 11.3c2.5 2.2 4.8 4.5 7 7.1l11.3-6.6c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l11.1 19.2c1.1 1.8.4 4.2-1.4 5.3l-11.5 6.6c1 3.1 1.8 6.3 2.5 9.5h13.6c2.1 0 3.8 1.7 3.8 3.8v22.2c0 2.1-1.7 3.8-3.8 3.8h-13.6c-.6 3.1-1.5 6.2-2.5 9.3l11.9 6.8c1.8 1.1 2.5 3.4 1.4 5.2l-11.2 19.5c-1.1 1.8-3.4 2.5-5.2 1.4l-12-7c-2.1 2.4-4.4 4.6-6.7 6.6l7 12.1c.5.9.6 1.9.4 2.9s-.9 1.8-1.8 2.3l-19.2 11.1c-1.8 1.1-4.2.4-5.2-1.4l-7-12.2c-3 1-6 1.8-9.1 2.4v14.1c-.2 2.3-2 4-4.1 4zm-18.4-7.7h14.5v-13.5c0-1.9 1.4-3.5 3.3-3.8 4.7-.7 9.4-2 13.8-3.7 1.8-.7 3.8 0 4.7 1.7l6.7 11.6 12.6-7.3-6.7-11.6c-1-1.6-.5-3.7.9-4.9 3.7-3 7.2-6.4 10.2-10.1 1.2-1.5 3.3-1.8 4.9-.9l11.5 6.6 7.3-12.6-11.3-6.5c-1.6-.9-2.4-3-1.6-4.7 1.8-4.5 3.1-9.2 3.9-14 .3-1.9 1.9-3.2 3.8-3.2h13v-14.6h-12.8c-1.9 0-3.5-1.4-3.8-3.3-.7-4.8-2-9.6-3.7-14.2-.7-1.8 0-3.7 1.7-4.7l10.9-6.3-7.3-12.6-10.8 6.3c-1.6.9-3.7.6-4.9-.9-3.1-3.9-6.6-7.4-10.4-10.6-1.5-1.2-1.9-3.3-.9-4.9l6.2-10.7-12.6-7.3-6.1 10.6c-1 1.6-3 2.3-4.7 1.7-4.6-1.8-9.5-3.1-14.4-3.9-1.9-.3-3.3-1.9-3.3-3.8v-12.2h-14.5v12.3c0 1.9-1.4 3.5-3.3 3.8-5 .8-9.8 2.1-14.4 3.9-1.8.7-3.8 0-4.7-1.7l-6.1-10.6-12.6 7.3 6.2 10.7c.9 1.6.6 3.7-.9 4.9-3.9 3.1-7.4 6.7-10.4 10.6-1.2 1.5-3.3 1.9-4.9.9l-10.8-6.3-7.3 12.6 10.9 6.3c1.6.9 2.3 2.9 1.7 4.7-1.7 4.6-3 9.4-3.7 14.2-.3 1.9-1.9 3.3-3.8 3.3h-12.8v14.5h13c1.9 0 3.5 1.4 3.8 3.2.8 4.8 2.1 9.5 3.9 14 .7 1.8 0 3.8-1.6 4.7l-11.3 6.5 7.3 12.6 11.5-6.6c1.6-.9 3.7-.6 4.9.9 3 3.7 6.5 7.1 10.3 10.1 1.5 1.2 1.9 3.3.9 4.9l-6.7 11.6 12.6 7.3 6.7-11.6c.9-1.6 2.9-2.3 4.7-1.7 4.5 1.7 9.1 2.9 13.8 3.7 1.9.3 3.3 1.9 3.3 3.8z\"></path></g><g><g><g><path d=\"m45.3 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m153.9 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path></g><g><path d=\"m189.3 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.2c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c0 2.1-1.7 3.8-3.8 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m73.3 326.4c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m126 326.4c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m99.7 325.6c-.6 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4s4.1 1.1 4.4 3.2c2.4 16.5 12.3 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m50.2 266.6c-.1 0-.2 0-.3 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.7 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-8.9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.5 2.2zm81.8-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13.1-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.4-.7 2.3-.7z\"></path></g></g></g><g><g><path d=\"m296.1 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m404.7 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path></g><g><path d=\"m440 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.1c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c.2 2.1-1.6 3.8-3.7 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m324 326.3c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m376.7 326.3c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m350.4 325.6c-.5 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4 2.1-.3 4 1.1 4.4 3.2 2.4 16.5 12.4 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m301 266.6c-.1 0-.2 0-.4 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.6 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.4 2.2zm81.7-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.5-.7 2.3-.7z\"></path></g></g></g></g></g></svg>				\n									<h5>\n							et ungt og engageret team						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"496pt\" viewBox=\"0 0 496 496\" width=\"496pt\"><path d=\"m440 328h-28.207031c5.078125-6.703125 8.207031-14.960938 8.207031-24 0-8.824219-7.175781-16-16-16h-12v-19.960938c59.574219-14.445312 104-68.085937 104-132.039062 0-74.992188-61.007812-136-136-136s-136 61.007812-136 136c0 63.953125 44.425781 117.59375 104 132.039062v19.960938h-8.449219c-6.167969 0-12.359375 1.464844-17.886719 4.214844l-50.480468 25.25c-3.320313 1.664062-7.03125 2.535156-10.734375 2.535156h-40.449219v-16h-104v16h56v56h16v-56h16v128h-16v-56h-16v56h-56v16h104v-16h40.449219c3.703125 0 7.414062.871094 10.734375 2.527344l34.488281 17.25c5.519531 2.757812 11.710937 4.222656 17.878906 4.222656h24.449219v24h64v-24h48c13.230469 0 24-10.769531 24-24 0-6.167969-2.40625-11.742188-6.238281-16 3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16 0-13.230469-10.769531-24-24-24zm8 24c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm-208-280c0-66.167969 53.832031-120 120-120s120 53.832031 120 120-53.832031 120-120 120-120-53.832031-120-120zm104 134.976562c5.257812.617188 10.574219 1.023438 16 1.023438s10.742188-.40625 16-1.023438v17.023438h-32zm-40.449219 185.023438c-3.703125 0-7.414062-.871094-10.734375-2.527344l-34.488281-17.25c-5.519531-2.757812-11.710937-4.222656-17.878906-4.222656h-40.449219v-96h40.449219c6.167969 0 12.359375-1.464844 17.886719-4.214844l50.480468-25.25c3.320313-1.664062 7.03125-2.535156 10.734375-2.535156h84.449219c0 13.230469-10.769531 24-24 24h-48.28125l-23.863281 35.808594c-6.101563 9.160156-14.527344 16.589844-24.367188 21.503906-8.753906 4.375-18.542969 6.6875-28.320312 6.6875h-15.167969v16h15.167969c12.246093 0 24.519531-2.894531 35.472656-8.375 12.328125-6.160156 22.878906-15.480469 30.527344-26.945312l6.832031-10.253907v93.574219zm40.449219 24v-136h17.472656c-.898437 2.511719-1.472656 5.183594-1.472656 8 0 6.167969 2.40625 11.742188 6.238281 16-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16 0 10.414062 6.710938 19.214844 16 22.527344v9.472656zm96-24h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8s-3.59375 8-8 8zm0 0\"></path><path d=\"m394.878906 73.007812-7.757812 13.984376c17.816406 9.878906 28.878906 28.664062 28.878906 49.007812h16c0-26.160156-14.222656-50.296875-37.121094-62.992188zm0 0\"></path><path d=\"m360 80c4.734375 0 9.449219.59375 14.007812 1.769531l3.976563-15.503906c-5.855469-1.496094-11.90625-2.265625-17.984375-2.265625zm0 0\"></path><path d=\"m360 48c48.519531 0 88 39.480469 88 88 0 20.753906-7.398438 40.910156-20.832031 56.785156l12.207031 10.34375c15.882812-18.761718 24.625-42.601562 24.625-67.128906 0-57.34375-46.65625-104-104-104-24.527344 0-48.367188 8.753906-67.128906 24.632812l10.335937 12.199219c15.871094-13.433593 36.039063-20.832031 56.792969-20.832031zm0 0\"></path><path d=\"m427.128906 215.367188-10.335937-12.199219c-15.871094 13.433593-36.039063 20.832031-56.792969 20.832031-48.519531 0-88-39.480469-88-88 0-20.753906 7.398438-40.910156 20.832031-56.785156l-12.207031-10.34375c-15.882812 18.761718-24.625 42.601562-24.625 67.128906 0 57.34375 46.65625 104 104 104 24.527344 0 48.367188-8.753906 67.128906-24.632812zm0 0\"></path><path d=\"m121.214844 165.640625c4.953125-1.375 9.695312-3.34375 14.183594-5.878906l9.769531 4.886719 19.472656-19.480469-4.886719-9.769531c2.535156-4.496094 4.503906-9.230469 5.886719-14.183594l10.359375-3.445313v-27.53125l-10.351562-3.453125c-1.375-4.953125-3.34375-9.707031-5.886719-14.183594l4.886719-9.777343-19.472657-19.472657-9.769531 4.886719c-4.484375-2.535156-9.230469-4.503906-14.183594-5.878906l-3.453125-10.359375h-27.539062l-3.445313 10.359375c-4.953125 1.375-9.695312 3.34375-14.183594 5.878906l-9.777343-4.886719-19.472657 19.472657 4.886719 9.777343c-2.535156 4.488282-4.503906 9.230469-5.886719 14.183594l-10.351562 3.445313v27.53125l10.351562 3.453125c1.375 4.953125 3.34375 9.695312 5.886719 14.183594l-4.886719 9.769531 19.472657 19.480469 9.769531-4.886719c4.484375 2.535156 9.230469 4.503906 14.183594 5.878906l3.453125 10.359375h27.539062zm-12.304688-13.679687-2.679687 8.039062h-4.460938l-2.679687-8.039062-4.554688-.90625c-6.128906-1.222657-11.878906-3.605469-17.109375-7.09375l-3.867187-2.578126-7.574219 3.800782-3.160156-3.167969 3.792969-7.582031-2.578126-3.859375c-3.488281-5.222657-5.871093-10.980469-7.09375-17.109375l-.914062-4.554688-8.03125-2.679687v-4.46875l8.03125-2.671875.914062-4.554688c1.222657-6.136718 3.613282-11.886718 7.09375-17.109375l2.578126-3.859375-3.792969-7.589844 3.160156-3.160156 7.574219 3.800782 3.867187-2.578126c5.222657-3.488281 10.980469-5.863281 17.109375-7.09375l4.554688-.90625 2.679687-8.039062h4.460938l2.679687 8.039062 4.554688.90625c6.128906 1.222657 11.878906 3.605469 17.109375 7.09375l3.867187 2.578126 7.574219-3.800782 3.160156 3.160156-3.792969 7.589844 2.578126 3.859375c3.488281 5.214844 5.871093 10.972657 7.09375 17.109375l.914062 4.554688 8.03125 2.679687v4.46875l-8.03125 2.671875-.914062 4.554688c-1.222657 6.128906-3.613282 11.878906-7.09375 17.109375l-2.578126 3.859375 3.792969 7.582031-3.160156 3.167969-7.574219-3.800782-3.867187 2.578126c-5.222657 3.488281-10.980469 5.863281-17.109375 7.09375zm0 0\"></path><path d=\"m104 72c-17.648438 0-32 14.351562-32 32s14.351562 32 32 32 32-14.351562 32-32-14.351562-32-32-32zm0 48c-8.824219 0-16-7.175781-16-16s7.175781-16 16-16 16 7.175781 16 16-7.175781 16-16 16zm0 0\"></path><path d=\"m160 248v-40h48v-208h-208v208h106.664062zm-144-232h176v176h-48v24l-32-24h-96zm0 0\"></path><path d=\"m0 272h16v16h-16zm0 0\"></path><path d=\"m32 272h16v16h-16zm0 0\"></path><path d=\"m64 272h16v16h-16zm0 0\"></path><path d=\"m32 304h16v16h-16zm0 0\"></path><path d=\"m64 304h16v16h-16zm0 0\"></path><path d=\"m0 480h16v16h-16zm0 0\"></path><path d=\"m32 480h16v16h-16zm0 0\"></path><path d=\"m64 480h16v16h-16zm0 0\"></path><path d=\"m32 448h16v16h-16zm0 0\"></path><path d=\"m64 448h16v16h-16zm0 0\"></path></svg>				\n									<h5>\n							fokus på kvalitet og detaljer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m469.12 408.93-67.26-33.63v-22.13c10.71-7.69 18.6-19.07 21.78-32.27h5.28c8.81 0 15.98-7.17 15.98-15.98v-5.29c0-6.35-3.74-11.84-9.12-14.41 5.19-18.64-1.65-39.76-19.44-59.78-12.58-14.16-30.67-22.27-49.62-22.27-18.93 0-37.01 8.12-49.59 22.27-13.38 15.05-20.95 41.01-14.03 59.62-5.56 2.5-9.45 8.09-9.45 14.57v5.29c0 8.81 7.17 15.98 15.98 15.98h5.55c3.16 13.09 10.94 24.39 21.51 32.08v22.32l-67.26 33.63c-16.7 5.87-27.89 21.6-27.89 39.28v41.63c0 3.31 2.69 6 6 6h243.46c3.31 0 6-2.69 6-6v-41.63c0-17.68-11.19-33.41-27.88-39.28zm-62.24-17.7-15.83 27.66-13.29-13.29 19.29-19.29zm-37.61 5.88-20.59-20.58v-16.91c6.41 2.57 13.4 4.01 20.72 4.01 7.22 0 14.11-1.39 20.45-3.9v16.8zm63.63-97.48v5.29c0 2.16-1.82 3.98-3.98 3.98h-3.74c.01-.36.03-.71.03-1.07v-12.18h3.71c2.15-.01 3.98 1.82 3.98 3.98zm-119.29 8.2v1.07h-3.98c-2.16 0-3.98-1.82-3.98-3.98v-5.29c0-2.16 1.82-3.98 3.98-3.98l3.98.22zm1.95-24.19c-7.33-13.69-.89-37.39 10.53-50.24 10.31-11.6 25.12-18.25 40.63-18.25 15.52 0 30.34 6.65 40.65 18.25 8.43 9.48 21.3 27.59 17.4 46.39-5.66-.35-10.67-2.55-14.4-6.36-5.37-5.49-7.72-14-6.63-23.94.29-2.62-1.17-5.13-3.6-6.17s-5.25-.37-6.95 1.65c-19.33 22.92-45.95 36.76-73.9 38.68h-3.73zm10.05 24.19v-12.73c24.57-2.92 47.92-14.05 66.73-31.8 1.43 7.26 4.63 13.6 9.45 18.52 3.27 3.35 7.14 5.89 11.41 7.58v18.42c0 24.15-19.65 43.8-43.8 43.8s-43.79-19.64-43.79-43.79zm15.89 78.48 19.29 19.29-13.29 13.29-15.84-27.66zm3.22 97.53h-39.42v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.76v-35.63c0-12.68 8.1-23.95 20.15-28.05.26-.09.51-.19.75-.31l46.47-23.23 20.07 35.06c.93 1.62 2.56 2.72 4.41 2.97.27.04.53.05.79.05 1.58 0 3.11-.62 4.24-1.76l.14-.14zm12.08 0 7.41-64.69 5.06-5.06 4.84 4.84 7.86 64.92h-25.17zm128.2 0h-39.76v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.18l-6.2-51.17.25.25c1.13 1.13 2.66 1.76 4.24 1.76.26 0 .53-.02.79-.05 1.85-.25 3.48-1.34 4.41-2.97l20.07-35.06 46.47 23.23c.24.12.49.23.75.31 12.05 4.1 20.15 15.38 20.15 28.05v35.65zm-67.04-346.65h-10.84l28.38 39.84 28.38-39.84h-10.84c-3.31 0-6-2.69-6-6v-64.58h-98.7c-3.31 0-6-2.69-6-6s2.69-6 6-6h104.7c3.31 0 6 2.69 6 6v64.58h16.48c2.25 0 4.3 1.25 5.33 3.25s.86 4.4-.45 6.23l-40.02 56.18c-1.13 1.58-2.95 2.52-4.89 2.52s-3.76-.94-4.89-2.52l-40.02-56.18c-1.3-1.83-1.48-4.23-.45-6.23s3.09-3.25 5.33-3.25h16.48v-23.5h-65.38c-3.31 0-6-2.69-6-6s2.69-6 6-6h71.38c3.31 0 6 2.69 6 6v35.5c.02 3.31-2.67 6-5.98 6zm-118.44 50.65v-133.26c0-21.18-17.23-38.41-38.41-38.41h-207.7c-21.18-.01-38.41 17.23-38.41 38.41v133.26c0 21.18 17.23 38.41 38.41 38.41h105.8l64.8 55.11c1.11.94 2.49 1.43 3.89 1.43.85 0 1.71-.18 2.52-.55 2.12-.98 3.48-3.11 3.48-5.45v-50.54h27.21c21.18 0 38.41-17.23 38.41-38.41zm-71.62 26.41c-3.31 0-6 2.69-6 6v43.56l-56.59-48.13c-1.08-.92-2.46-1.43-3.89-1.43h-108.01c-14.56 0-26.41-11.85-26.41-26.41v-133.26c0-14.56 11.85-26.41 26.41-26.41h207.69c14.56 0 26.41 11.85 26.41 26.41v133.26c0 14.56-11.85 26.41-26.41 26.41zm-156.34-87.87h56.97c3.31 0 6-2.69 6-6v-39.2l8.55-8.55c2.34-2.34 2.34-6.14 0-8.49-2.34-2.34-6.14-2.34-8.48 0l-.7.7c-.98-1.97-3.01-3.32-5.36-3.32h-56.98c-3.31 0-6 2.69-6 6v52.85c0 3.32 2.69 6.01 6 6.01zm6-52.86h44.97v2.69l-18.16 18.16-8.84-8.84c-2.34-2.34-6.14-2.34-8.49 0-2.34 2.34-2.34 6.14 0 8.49l13.08 13.08c1.17 1.17 2.71 1.76 4.24 1.76s3.07-.59 4.24-1.76l13.92-13.92v21.2h-44.96zm173.62 3.08c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 31.92c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 36.52c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.68 5.99 6zm0 31.92c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.69 5.99 6zm-119.36 165.01h10.84l-28.38-39.84-28.38 39.84h10.84c3.31 0 6 2.69 6 6v64.58h98.7c3.31 0 6 2.69 6 6s-2.69 6-6 6h-104.69c-3.31 0-6-2.69-6-6v-64.58h-16.48c-2.25 0-4.3-1.25-5.33-3.25s-.86-4.4.45-6.23l40.02-56.18c1.13-1.58 2.95-2.52 4.89-2.52s3.76.94 4.89 2.52l40.02 56.18c1.3 1.83 1.48 4.23.45 6.23s-3.09 3.25-5.33 3.25h-16.48v23.5h65.38c3.31 0 6 2.69 6 6s-2.69 6-6 6h-71.38c-3.31 0-6-2.69-6-6v-35.5c-.03-3.31 2.66-6 5.97-6z\"></path></svg>				\n									<h5>\n							ærlig<br> rådgivning						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 510 510\"><path d=\"m192.036 385.845c-4.787-46.972-19.459-64.336-30.658-82.352-8.672-13.951-15.5-28.245-15.5-54.252 0-60.242 48.865-109.109 109.135-109.109 60.242 0 109.109 48.866 109.109 109.109 0 26.007-6.828 40.301-15.5 54.252-11.199 18.016-25.871 35.38-30.658 82.352 9.985 2.864 17.345 12.101 17.345 22.975v36.44c0 13.109-10.747 23.866-23.893 23.866h-10.334v9.945c0 12.588-10.341 22.929-22.93 22.929h-46.304c-12.589 0-22.93-10.341-22.93-22.929v-9.945h-10.334c-13.146 0-23.893-10.757-23.893-23.866v-36.44c0-10.874 7.36-20.111 17.345-22.975zm111.948-.917c4.199-42.194 15.78-62.332 26.488-79.049 10.147-15.842 19.65-28.207 19.65-56.638 0-52.513-42.597-95.109-95.109-95.109-52.537 0-95.135 42.596-95.135 95.109 0 28.431 9.503 40.796 19.65 56.638 10.708 16.717 22.289 36.855 26.488 79.049zm2.554-78.61c-1.175 13.701-11.985 24.191-24.783 24.191-13.527 0-24.862-12.086-24.862-26.673v-99.328c0-14.12 11.335-26.673 24.862-26.673 11.309 0 21.031 8.139 23.975 19.497 9.12 3.904 15.688 13.438 15.688 24.78 0 1.153-.068 2.289-.201 3.403 5.078 5.326 8.283 12.802 8.283 21.117 0 6.39-1.889 12.262-5.06 17.053 1.996 4.099 3.13 8.773 3.13 13.76 0 14.1-9.065 25.697-21.032 28.873zm-16.452-109.977c-1.964-2.729-4.916-4.506-8.331-4.506-6.192 0-10.862 6.21-10.862 12.673v99.328c0 6.677 4.67 12.673 10.862 12.673 5.516 0 9.822-4.614 10.717-10.425-4.709-1.416-8.923-4.144-12.279-7.814-2.607-2.852-2.409-7.283.443-9.89 2.851-2.607 7.282-2.408 9.889.443 2.416 2.642 5.72 4.356 9.402 4.356 7.733 0 13.643-7.218 13.643-15.734s-5.91-15.734-13.643-15.734c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7 5.352 0 10.388 1.655 14.658 4.533.593-1.743.915-3.634.915-5.612 0-2.11-.366-4.128-1.036-5.972-.769.858-1.588 1.66-2.453 2.397-2.94 2.507-7.361 2.156-9.869-.784-2.507-2.939-2.155-7.361.784-9.868 2.773-2.365 4.492-6.122 4.492-10.293 0-6.072-3.705-11.374-8.898-12.467-.154-.023-.307-.052-.458-.085-.499-.08-1.01-.121-1.532-.121-2.947 0-5.591 1.389-7.515 3.525-2.585 2.87-7.015 3.101-9.886.515-2.87-2.586-3.101-7.015-.515-9.886 3.111-3.453 7.059-5.988 11.472-7.252zm-104.526 67.344c-3.171-4.791-5.06-10.663-5.06-17.053 0-8.307 3.198-15.777 8.284-21.104-.133-1.118-.202-2.258-.202-3.416 0-11.354 6.582-20.897 15.717-24.792 2.948-11.354 12.67-19.485 23.946-19.485 13.56 0 24.888 12.555 24.888 26.673v99.328c0 14.585-11.328 26.673-24.888 26.673-12.765 0-23.578-10.484-24.757-24.184-11.98-3.166-21.058-14.769-21.058-28.88 0-4.987 1.134-9.661 3.13-13.76zm9.982-23.036c-.675 1.847-1.042 3.869-1.042 5.983 0 1.978.322 3.869.915 5.612 4.27-2.878 9.306-4.533 14.658-4.533 3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7-7.733 0-13.643 7.218-13.643 15.734s5.91 15.734 13.643 15.734c3.682 0 6.986-1.714 9.402-4.356 2.607-2.851 7.038-3.05 9.889-.443 2.852 2.607 3.05 7.038.443 9.89-3.35 3.664-7.556 6.389-12.255 7.807.891 5.813 5.192 10.432 10.693 10.432 6.21 0 10.888-5.993 10.888-12.673v-99.328c0-6.466-4.678-12.673-10.888-12.673-3.404 0-6.349 1.777-8.309 4.507 4.421 1.264 8.367 3.8 11.476 7.251 2.586 2.871 2.355 7.3-.516 9.886-2.87 2.586-7.3 2.355-9.886-.515-1.926-2.138-4.574-3.525-7.54-3.525-.493 0-.976.037-1.448.108-.196.045-.395.082-.596.11-5.165 1.118-8.844 6.404-8.844 12.455 0 1.243.153 2.45.442 3.594.101.284.183.572.246.862.748 2.326 2.071 4.346 3.814 5.823 2.947 2.498 3.311 6.919.813 9.866s-6.919 3.312-9.866.814c-.878-.745-1.71-1.554-2.489-2.422zm3.042 158.279c-5.442 0-9.893 4.451-9.893 9.892v36.44c0 5.423 4.454 9.866 9.893 9.866h17.334c3.866 0 7 3.134 7 7v16.945c0 4.902 4.027 8.929 8.93 8.929h46.304c4.903 0 8.93-4.027 8.93-8.929v-16.945c0-3.866 3.134-7 7-7h17.334c5.439 0 9.893-4.443 9.893-9.866v-36.44c0-5.441-4.451-9.892-9.893-9.892zm63.416-314.093 2.907-5.412c1.828-3.403 6.075-4.683 9.479-2.854 3.403 1.828 4.682 6.075 2.854 9.479l-16.073 29.925c-1.22 2.271-3.589 3.688-6.167 3.688s-4.947-1.417-6.167-3.688l-16.073-29.925c-1.828-3.404-.549-7.651 2.854-9.479 3.404-1.829 7.651-.549 9.479 2.854l2.907 5.412v-69.835c0-3.863 3.137-7 7-7s7 3.137 7 7zm-132.198 54.758-49.381-49.381c-2.732-2.731-2.732-7.167 0-9.899s7.168-2.732 9.9 0l49.38 49.38-1.771-5.881c-1.114-3.7.985-7.608 4.684-8.722 3.7-1.114 7.607.985 8.721 4.685l9.796 32.526c.743 2.468.069 5.145-1.753 6.968-1.823 1.823-4.5 2.496-6.969 1.753l-32.526-9.795c-3.699-1.114-5.798-5.022-4.684-8.721s5.022-5.798 8.721-4.684zm-44.859 122.299h-69.835c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7h69.835l-5.412-2.907c-3.403-1.828-4.682-6.076-2.854-9.479 1.828-3.404 6.075-4.683 9.479-2.855l29.926 16.074c2.271 1.22 3.688 3.589 3.688 6.167 0 2.577-1.417 4.947-3.688 6.166l-29.926 16.074c-3.404 1.828-7.651.549-9.479-2.855-1.828-3.403-.549-7.651 2.854-9.479zm54.758 118.198-49.38 49.38c-2.732 2.732-7.168 2.732-9.9 0s-2.732-7.167 0-9.899l49.381-49.381-5.882 1.772c-3.699 1.114-7.607-.985-8.721-4.685-1.114-3.699.985-7.607 4.684-8.721l32.526-9.795c2.469-.743 5.146-.07 6.969 1.753 1.822 1.823 2.496 4.5 1.753 6.968l-9.796 32.527c-1.114 3.699-5.021 5.798-8.721 4.684-3.699-1.114-5.798-5.022-4.684-8.721zm240.497-240.497 5.882-1.771c3.699-1.114 7.607.985 8.721 4.684s-.985 7.607-4.684 8.721l-32.526 9.795c-2.469.743-5.146.07-6.969-1.753-1.822-1.823-2.496-4.5-1.753-6.968l9.796-32.526c1.114-3.7 5.021-5.799 8.721-4.685 3.699 1.114 5.798 5.022 4.684 8.722l-1.771 5.881 49.38-49.38c2.732-2.732 7.168-2.732 9.9 0s2.732 7.168 0 9.899zm44.859 122.299 5.412 2.906c3.403 1.828 4.682 6.076 2.854 9.479-1.828 3.404-6.075 4.683-9.479 2.855l-29.926-16.074c-2.271-1.219-3.688-3.589-3.688-6.166 0-2.578 1.417-4.947 3.688-6.167l29.926-16.074c3.404-1.828 7.651-.549 9.479 2.855 1.828 3.403.549 7.651-2.854 9.479l-5.412 2.907h69.835c3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7zm-54.758 118.198 1.771 5.882c1.114 3.699-.985 7.607-4.684 8.721-3.7 1.114-7.607-.985-8.721-4.684l-9.796-32.527c-.743-2.468-.069-5.145 1.753-6.968 1.823-1.823 4.5-2.496 6.969-1.753l32.526 9.795c3.699 1.114 5.798 5.022 4.684 8.721-1.114 3.7-5.022 5.799-8.721 4.685l-5.882-1.772 49.381 49.381c2.732 2.732 2.732 7.167 0 9.899s-7.168 2.732-9.9 0z\"></path></svg>				\n									<h5>\n							gennemtænkte løsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"outline\"><path d=\"M486.41,144A28,28,0,0,0,472,92H349.123l5.457-21.828a48.513,48.513,0,0,0-12.848-46.153A41.035,41.035,0,0,0,312.609,12H308a8.009,8.009,0,0,0-8,8V47.413l-19.233,64.112A17.376,17.376,0,0,1,268,123.539V112a4,4,0,0,0-4-4H152a4,4,0,0,0-4,4v72a4,4,0,0,0,8,0V116h72V276H156V248a4,4,0,0,0-8,0v32a4,4,0,0,0,4,4H264a4,4,0,0,0,4-4V268.5h11.168A37.07,37.07,0,0,1,305.092,279a45.025,45.025,0,0,0,31.48,12.752L440,292a27.987,27.987,0,0,0,19.369-48.2,27.987,27.987,0,0,0,16-48A28,28,0,0,0,486.41,144ZM260,276H236V116h24Zm212-88H396a4,4,0,0,0,0,8h60a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h40a20,20,0,0,1,.01,40l-103.428-.25a37.07,37.07,0,0,1-25.924-10.5,45.031,45.031,0,0,0-31.49-12.752H268V131.686a25.317,25.317,0,0,0,20.429-17.862l19.4-64.675A4,4,0,0,0,308,48V20h4.609a33.082,33.082,0,0,1,23.481,9.69,40.507,40.507,0,0,1,10.728,38.541l-6.7,26.8A4,4,0,0,0,344,100H472a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h72a20,20,0,0,1,0,40Z\"></path><path d=\"M194.5,183.243l-1.9-.217a4,4,0,0,0-4.169,2.491L184.29,195.9H135.278l-3.539-9.317a4,4,0,0,0-7.478,2.84l2.459,6.477h-8.474L68.452,156.872a4,4,0,1,0-4.935,6.3L77.6,174.209,56.961,194.48l-6.636-5.491a4,4,0,1,0-5.1,6.163L87.219,229.9a44.1,44.1,0,0,0,28.05,10.1H212a8.009,8.009,0,0,0,8-8V203.9a8.009,8.009,0,0,0-8-8h-8v-2.01A10.708,10.708,0,0,0,194.5,183.243ZM212,203.9V232H115.269a36.081,36.081,0,0,1-22.951-8.264l-29.16-24.128,20.8-20.422L114.4,203.045a4,4,0,0,0,2.468.852H187a4,4,0,0,0,3.715-2.517l3.929-9.843a2.712,2.712,0,0,1,1.356,2.35v6.01a4,4,0,0,0,4,4Z\"></path><path d=\"M223.084,484.672,200.87,469.863V346.36A44.1,44.1,0,0,0,195.327,325l-17.183-30.94a4,4,0,0,0-7,3.884l17.184,30.94a36.073,36.073,0,0,1,4.537,17.478V468H164.333a4,4,0,1,0,0,8h31.321l12,8H152.865V352a4,4,0,0,0-.358-1.655l-25.454-56A4,4,0,0,0,123.411,292H114.2a4,4,0,0,0-3.945,4.658l8.862,53.175a36.016,36.016,0,0,1-1.951,18.949L78.642,468H48.333a4,4,0,1,0,0,8H80.377L92,484H32.088L76.63,361.366a4.017,4.017,0,0,0,.183-2.044L61.1,268H136a4,4,0,0,0,0-8H59.233L30.555,173.966A19.723,19.723,0,0,1,49.27,148H76a12,12,0,0,0,24,0h15.2a21.975,21.975,0,0,1,8.395,1.652l10.889,4.458a4,4,0,1,0,3.032-7.4L126.63,142.25A29.938,29.938,0,0,0,115.2,140H100v-4.527A16.014,16.014,0,0,0,112,120V103.473A16.014,16.014,0,0,0,124,88V80a4,4,0,0,0-4-4H90A22.025,22.025,0,0,0,68,98v18a12.02,12.02,0,0,0,8,11.314V140H49.27a27.723,27.723,0,0,0-26.305,36.5l29.493,88.482,16.29,94.655-46.128,127A4,4,0,0,0,26.38,492h78.485a4,4,0,0,0,2.268-7.3L86.3,470.368l38.318-98.69a44.018,44.018,0,0,0,2.385-23.16L118.921,300h1.914l24.03,52.867V488a4,4,0,0,0,4,4h72a4,4,0,0,0,2.219-7.328ZM76,98A14.015,14.015,0,0,1,90,84h26v4a8.009,8.009,0,0,1-8,8H92a4,4,0,0,0-4,4,11.962,11.962,0,0,1-1.53,5.881A12.044,12.044,0,0,0,76,104.686Zm4,14a3.981,3.981,0,0,1,3.407,1.9,4,4,0,0,0,5.956.975c.207-.171.7-.648.7-.648.032-.028.061-.057.09-.087A19.907,19.907,0,0,0,95.6,104H104v16a8.009,8.009,0,0,1-8,8,12.133,12.133,0,0,1-2.681-.3,4,4,0,1,0-1.775,7.8c.151.035.3.06.456.091V148a4,4,0,1,1-8,0V124a4,4,0,0,0-4-4,4,4,0,0,1,0-8Z\"></path></g></svg>				\n									<h5>\n							arbejde udført med ansvar						\n					</h5>\n				<p>Vi lover ikke mere, end vi kan holde – men vi holder det, vi lover.</p>			<h2>KONTAKT OS</h2>		<p>Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.</p>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 13:41:20', '2026-01-26 13:41:20', '', 10, 'https://mrarif.me/cpnordic/?p=545', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(546, 1, '2026-01-26 13:41:21', '2026-01-26 13:41:21', '<h1>CP NORDIC ApS</h1>					<h4>Byggeri – Tømrerarbejde og tagdækning</h4>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>					\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle ANMELDELSER\n					</a>\n					<h2>HVORFOR VÆLGE CP NORDIC ApS?</h2>		<p>Når du vælger CP NORDIC ApS, får du:</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 450 450\" width=\"512\"><g><g><path d=\"m225 165.2c-25.9 0-48.9-18.8-53.3-45.2-2.4-14.2.9-28.6 9.3-40.3 8.4-11.8 20.9-19.5 35.1-21.9 29.4-4.9 57.3 15 62.2 44.5 4.9 29.4-15 57.3-44.4 62.2-3 .5-6 .7-8.9.7zm-7.6-99.8c-12.2 2-22.9 8.7-30.1 18.8s-10.1 22.4-8 34.6c3.8 22.7 23.5 38.8 45.7 38.8 2.5 0 5.1-.2 7.6-.6 25.2-4.2 42.3-28.1 38.1-53.4s-28.1-42.4-53.3-38.2z\"></path><path d=\"m255.2 115c-2.1 0-3.8-1.7-3.8-3.8 0-14.6-11.8-26.4-26.4-26.4-2.1 0-3.8-1.7-3.8-3.8s1.7-3.8 3.8-3.8c18.8 0 34.1 15.3 34.1 34.1 0 2-1.8 3.7-3.9 3.7z\"></path><path d=\"m236.1 203h-22.2c-2.1 0-3.8-1.7-3.8-3.8v-14.1c-3.1-.6-6.1-1.4-9.1-2.4l-7 12.2c-1.1 1.8-3.4 2.5-5.3 1.4l-19.2-11.1c-.9-.5-1.5-1.4-1.8-2.3-.3-1-.1-2 .4-2.9l7-12.1c-2.4-2.1-4.6-4.3-6.7-6.6l-12.1 7c-1.8 1.1-4.2.4-5.2-1.4l-11.1-19.2c-1.1-1.8-.4-4.2 1.4-5.2l11.9-6.8c-1-3-1.9-6.1-2.6-9.3h-13.7c-2.1 0-3.8-1.7-3.8-3.8v-22.2c0-2.1 1.7-3.8 3.8-3.8h13.4c.6-3.2 1.4-6.4 2.4-9.5l-11.5-6.6c-1.8-1.1-2.5-3.4-1.4-5.3l11.1-19.6c.5-.9 1.4-1.5 2.3-1.8s2-.1 2.9.4l11.3 6.6c2.2-2.5 4.5-4.8 7-7l-6.5-11.3c-.5-.9-.6-1.9-.4-2.9.3-1 .9-1.8 1.8-2.3l19.2-11.1c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l6.4 11.2c3.1-1.1 6.4-1.9 9.7-2.6v-13c0-2.1 1.7-3.8 3.8-3.8h22.2c2.1 0 3.8 1.7 3.8 3.8v12.8c3.3.7 6.5 1.5 9.7 2.6l6.5-11.2c.5-.9 1.4-1.5 2.3-1.8 1-.3 2-.1 2.9.4l19.2 11.1c.9.5 1.5 1.3 1.8 2.3s.1 2-.4 2.9l-6.5 11.3c2.5 2.2 4.8 4.5 7 7.1l11.3-6.6c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l11.1 19.2c1.1 1.8.4 4.2-1.4 5.3l-11.5 6.6c1 3.1 1.8 6.3 2.5 9.5h13.6c2.1 0 3.8 1.7 3.8 3.8v22.2c0 2.1-1.7 3.8-3.8 3.8h-13.6c-.6 3.1-1.5 6.2-2.5 9.3l11.9 6.8c1.8 1.1 2.5 3.4 1.4 5.2l-11.2 19.5c-1.1 1.8-3.4 2.5-5.2 1.4l-12-7c-2.1 2.4-4.4 4.6-6.7 6.6l7 12.1c.5.9.6 1.9.4 2.9s-.9 1.8-1.8 2.3l-19.2 11.1c-1.8 1.1-4.2.4-5.2-1.4l-7-12.2c-3 1-6 1.8-9.1 2.4v14.1c-.2 2.3-2 4-4.1 4zm-18.4-7.7h14.5v-13.5c0-1.9 1.4-3.5 3.3-3.8 4.7-.7 9.4-2 13.8-3.7 1.8-.7 3.8 0 4.7 1.7l6.7 11.6 12.6-7.3-6.7-11.6c-1-1.6-.5-3.7.9-4.9 3.7-3 7.2-6.4 10.2-10.1 1.2-1.5 3.3-1.8 4.9-.9l11.5 6.6 7.3-12.6-11.3-6.5c-1.6-.9-2.4-3-1.6-4.7 1.8-4.5 3.1-9.2 3.9-14 .3-1.9 1.9-3.2 3.8-3.2h13v-14.6h-12.8c-1.9 0-3.5-1.4-3.8-3.3-.7-4.8-2-9.6-3.7-14.2-.7-1.8 0-3.7 1.7-4.7l10.9-6.3-7.3-12.6-10.8 6.3c-1.6.9-3.7.6-4.9-.9-3.1-3.9-6.6-7.4-10.4-10.6-1.5-1.2-1.9-3.3-.9-4.9l6.2-10.7-12.6-7.3-6.1 10.6c-1 1.6-3 2.3-4.7 1.7-4.6-1.8-9.5-3.1-14.4-3.9-1.9-.3-3.3-1.9-3.3-3.8v-12.2h-14.5v12.3c0 1.9-1.4 3.5-3.3 3.8-5 .8-9.8 2.1-14.4 3.9-1.8.7-3.8 0-4.7-1.7l-6.1-10.6-12.6 7.3 6.2 10.7c.9 1.6.6 3.7-.9 4.9-3.9 3.1-7.4 6.7-10.4 10.6-1.2 1.5-3.3 1.9-4.9.9l-10.8-6.3-7.3 12.6 10.9 6.3c1.6.9 2.3 2.9 1.7 4.7-1.7 4.6-3 9.4-3.7 14.2-.3 1.9-1.9 3.3-3.8 3.3h-12.8v14.5h13c1.9 0 3.5 1.4 3.8 3.2.8 4.8 2.1 9.5 3.9 14 .7 1.8 0 3.8-1.6 4.7l-11.3 6.5 7.3 12.6 11.5-6.6c1.6-.9 3.7-.6 4.9.9 3 3.7 6.5 7.1 10.3 10.1 1.5 1.2 1.9 3.3.9 4.9l-6.7 11.6 12.6 7.3 6.7-11.6c.9-1.6 2.9-2.3 4.7-1.7 4.5 1.7 9.1 2.9 13.8 3.7 1.9.3 3.3 1.9 3.3 3.8z\"></path></g><g><g><g><path d=\"m45.3 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m153.9 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path></g><g><path d=\"m189.3 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.2c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c0 2.1-1.7 3.8-3.8 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m73.3 326.4c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m126 326.4c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m99.7 325.6c-.6 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4s4.1 1.1 4.4 3.2c2.4 16.5 12.3 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m50.2 266.6c-.1 0-.2 0-.3 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.7 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-8.9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.5 2.2zm81.8-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13.1-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.4-.7 2.3-.7z\"></path></g></g></g><g><g><path d=\"m296.1 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m404.7 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path></g><g><path d=\"m440 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.1c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c.2 2.1-1.6 3.8-3.7 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m324 326.3c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m376.7 326.3c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m350.4 325.6c-.5 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4 2.1-.3 4 1.1 4.4 3.2 2.4 16.5 12.4 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m301 266.6c-.1 0-.2 0-.4 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.6 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.4 2.2zm81.7-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.5-.7 2.3-.7z\"></path></g></g></g></g></g></svg>				\n									<h5>\n							et ungt og engageret team						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"496pt\" viewBox=\"0 0 496 496\" width=\"496pt\"><path d=\"m440 328h-28.207031c5.078125-6.703125 8.207031-14.960938 8.207031-24 0-8.824219-7.175781-16-16-16h-12v-19.960938c59.574219-14.445312 104-68.085937 104-132.039062 0-74.992188-61.007812-136-136-136s-136 61.007812-136 136c0 63.953125 44.425781 117.59375 104 132.039062v19.960938h-8.449219c-6.167969 0-12.359375 1.464844-17.886719 4.214844l-50.480468 25.25c-3.320313 1.664062-7.03125 2.535156-10.734375 2.535156h-40.449219v-16h-104v16h56v56h16v-56h16v128h-16v-56h-16v56h-56v16h104v-16h40.449219c3.703125 0 7.414062.871094 10.734375 2.527344l34.488281 17.25c5.519531 2.757812 11.710937 4.222656 17.878906 4.222656h24.449219v24h64v-24h48c13.230469 0 24-10.769531 24-24 0-6.167969-2.40625-11.742188-6.238281-16 3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16 0-13.230469-10.769531-24-24-24zm8 24c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm-208-280c0-66.167969 53.832031-120 120-120s120 53.832031 120 120-53.832031 120-120 120-120-53.832031-120-120zm104 134.976562c5.257812.617188 10.574219 1.023438 16 1.023438s10.742188-.40625 16-1.023438v17.023438h-32zm-40.449219 185.023438c-3.703125 0-7.414062-.871094-10.734375-2.527344l-34.488281-17.25c-5.519531-2.757812-11.710937-4.222656-17.878906-4.222656h-40.449219v-96h40.449219c6.167969 0 12.359375-1.464844 17.886719-4.214844l50.480468-25.25c3.320313-1.664062 7.03125-2.535156 10.734375-2.535156h84.449219c0 13.230469-10.769531 24-24 24h-48.28125l-23.863281 35.808594c-6.101563 9.160156-14.527344 16.589844-24.367188 21.503906-8.753906 4.375-18.542969 6.6875-28.320312 6.6875h-15.167969v16h15.167969c12.246093 0 24.519531-2.894531 35.472656-8.375 12.328125-6.160156 22.878906-15.480469 30.527344-26.945312l6.832031-10.253907v93.574219zm40.449219 24v-136h17.472656c-.898437 2.511719-1.472656 5.183594-1.472656 8 0 6.167969 2.40625 11.742188 6.238281 16-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16 0 10.414062 6.710938 19.214844 16 22.527344v9.472656zm96-24h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8s-3.59375 8-8 8zm0 0\"></path><path d=\"m394.878906 73.007812-7.757812 13.984376c17.816406 9.878906 28.878906 28.664062 28.878906 49.007812h16c0-26.160156-14.222656-50.296875-37.121094-62.992188zm0 0\"></path><path d=\"m360 80c4.734375 0 9.449219.59375 14.007812 1.769531l3.976563-15.503906c-5.855469-1.496094-11.90625-2.265625-17.984375-2.265625zm0 0\"></path><path d=\"m360 48c48.519531 0 88 39.480469 88 88 0 20.753906-7.398438 40.910156-20.832031 56.785156l12.207031 10.34375c15.882812-18.761718 24.625-42.601562 24.625-67.128906 0-57.34375-46.65625-104-104-104-24.527344 0-48.367188 8.753906-67.128906 24.632812l10.335937 12.199219c15.871094-13.433593 36.039063-20.832031 56.792969-20.832031zm0 0\"></path><path d=\"m427.128906 215.367188-10.335937-12.199219c-15.871094 13.433593-36.039063 20.832031-56.792969 20.832031-48.519531 0-88-39.480469-88-88 0-20.753906 7.398438-40.910156 20.832031-56.785156l-12.207031-10.34375c-15.882812 18.761718-24.625 42.601562-24.625 67.128906 0 57.34375 46.65625 104 104 104 24.527344 0 48.367188-8.753906 67.128906-24.632812zm0 0\"></path><path d=\"m121.214844 165.640625c4.953125-1.375 9.695312-3.34375 14.183594-5.878906l9.769531 4.886719 19.472656-19.480469-4.886719-9.769531c2.535156-4.496094 4.503906-9.230469 5.886719-14.183594l10.359375-3.445313v-27.53125l-10.351562-3.453125c-1.375-4.953125-3.34375-9.707031-5.886719-14.183594l4.886719-9.777343-19.472657-19.472657-9.769531 4.886719c-4.484375-2.535156-9.230469-4.503906-14.183594-5.878906l-3.453125-10.359375h-27.539062l-3.445313 10.359375c-4.953125 1.375-9.695312 3.34375-14.183594 5.878906l-9.777343-4.886719-19.472657 19.472657 4.886719 9.777343c-2.535156 4.488282-4.503906 9.230469-5.886719 14.183594l-10.351562 3.445313v27.53125l10.351562 3.453125c1.375 4.953125 3.34375 9.695312 5.886719 14.183594l-4.886719 9.769531 19.472657 19.480469 9.769531-4.886719c4.484375 2.535156 9.230469 4.503906 14.183594 5.878906l3.453125 10.359375h27.539062zm-12.304688-13.679687-2.679687 8.039062h-4.460938l-2.679687-8.039062-4.554688-.90625c-6.128906-1.222657-11.878906-3.605469-17.109375-7.09375l-3.867187-2.578126-7.574219 3.800782-3.160156-3.167969 3.792969-7.582031-2.578126-3.859375c-3.488281-5.222657-5.871093-10.980469-7.09375-17.109375l-.914062-4.554688-8.03125-2.679687v-4.46875l8.03125-2.671875.914062-4.554688c1.222657-6.136718 3.613282-11.886718 7.09375-17.109375l2.578126-3.859375-3.792969-7.589844 3.160156-3.160156 7.574219 3.800782 3.867187-2.578126c5.222657-3.488281 10.980469-5.863281 17.109375-7.09375l4.554688-.90625 2.679687-8.039062h4.460938l2.679687 8.039062 4.554688.90625c6.128906 1.222657 11.878906 3.605469 17.109375 7.09375l3.867187 2.578126 7.574219-3.800782 3.160156 3.160156-3.792969 7.589844 2.578126 3.859375c3.488281 5.214844 5.871093 10.972657 7.09375 17.109375l.914062 4.554688 8.03125 2.679687v4.46875l-8.03125 2.671875-.914062 4.554688c-1.222657 6.128906-3.613282 11.878906-7.09375 17.109375l-2.578126 3.859375 3.792969 7.582031-3.160156 3.167969-7.574219-3.800782-3.867187 2.578126c-5.222657 3.488281-10.980469 5.863281-17.109375 7.09375zm0 0\"></path><path d=\"m104 72c-17.648438 0-32 14.351562-32 32s14.351562 32 32 32 32-14.351562 32-32-14.351562-32-32-32zm0 48c-8.824219 0-16-7.175781-16-16s7.175781-16 16-16 16 7.175781 16 16-7.175781 16-16 16zm0 0\"></path><path d=\"m160 248v-40h48v-208h-208v208h106.664062zm-144-232h176v176h-48v24l-32-24h-96zm0 0\"></path><path d=\"m0 272h16v16h-16zm0 0\"></path><path d=\"m32 272h16v16h-16zm0 0\"></path><path d=\"m64 272h16v16h-16zm0 0\"></path><path d=\"m32 304h16v16h-16zm0 0\"></path><path d=\"m64 304h16v16h-16zm0 0\"></path><path d=\"m0 480h16v16h-16zm0 0\"></path><path d=\"m32 480h16v16h-16zm0 0\"></path><path d=\"m64 480h16v16h-16zm0 0\"></path><path d=\"m32 448h16v16h-16zm0 0\"></path><path d=\"m64 448h16v16h-16zm0 0\"></path></svg>				\n									<h5>\n							fokus på kvalitet og detaljer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m469.12 408.93-67.26-33.63v-22.13c10.71-7.69 18.6-19.07 21.78-32.27h5.28c8.81 0 15.98-7.17 15.98-15.98v-5.29c0-6.35-3.74-11.84-9.12-14.41 5.19-18.64-1.65-39.76-19.44-59.78-12.58-14.16-30.67-22.27-49.62-22.27-18.93 0-37.01 8.12-49.59 22.27-13.38 15.05-20.95 41.01-14.03 59.62-5.56 2.5-9.45 8.09-9.45 14.57v5.29c0 8.81 7.17 15.98 15.98 15.98h5.55c3.16 13.09 10.94 24.39 21.51 32.08v22.32l-67.26 33.63c-16.7 5.87-27.89 21.6-27.89 39.28v41.63c0 3.31 2.69 6 6 6h243.46c3.31 0 6-2.69 6-6v-41.63c0-17.68-11.19-33.41-27.88-39.28zm-62.24-17.7-15.83 27.66-13.29-13.29 19.29-19.29zm-37.61 5.88-20.59-20.58v-16.91c6.41 2.57 13.4 4.01 20.72 4.01 7.22 0 14.11-1.39 20.45-3.9v16.8zm63.63-97.48v5.29c0 2.16-1.82 3.98-3.98 3.98h-3.74c.01-.36.03-.71.03-1.07v-12.18h3.71c2.15-.01 3.98 1.82 3.98 3.98zm-119.29 8.2v1.07h-3.98c-2.16 0-3.98-1.82-3.98-3.98v-5.29c0-2.16 1.82-3.98 3.98-3.98l3.98.22zm1.95-24.19c-7.33-13.69-.89-37.39 10.53-50.24 10.31-11.6 25.12-18.25 40.63-18.25 15.52 0 30.34 6.65 40.65 18.25 8.43 9.48 21.3 27.59 17.4 46.39-5.66-.35-10.67-2.55-14.4-6.36-5.37-5.49-7.72-14-6.63-23.94.29-2.62-1.17-5.13-3.6-6.17s-5.25-.37-6.95 1.65c-19.33 22.92-45.95 36.76-73.9 38.68h-3.73zm10.05 24.19v-12.73c24.57-2.92 47.92-14.05 66.73-31.8 1.43 7.26 4.63 13.6 9.45 18.52 3.27 3.35 7.14 5.89 11.41 7.58v18.42c0 24.15-19.65 43.8-43.8 43.8s-43.79-19.64-43.79-43.79zm15.89 78.48 19.29 19.29-13.29 13.29-15.84-27.66zm3.22 97.53h-39.42v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.76v-35.63c0-12.68 8.1-23.95 20.15-28.05.26-.09.51-.19.75-.31l46.47-23.23 20.07 35.06c.93 1.62 2.56 2.72 4.41 2.97.27.04.53.05.79.05 1.58 0 3.11-.62 4.24-1.76l.14-.14zm12.08 0 7.41-64.69 5.06-5.06 4.84 4.84 7.86 64.92h-25.17zm128.2 0h-39.76v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.18l-6.2-51.17.25.25c1.13 1.13 2.66 1.76 4.24 1.76.26 0 .53-.02.79-.05 1.85-.25 3.48-1.34 4.41-2.97l20.07-35.06 46.47 23.23c.24.12.49.23.75.31 12.05 4.1 20.15 15.38 20.15 28.05v35.65zm-67.04-346.65h-10.84l28.38 39.84 28.38-39.84h-10.84c-3.31 0-6-2.69-6-6v-64.58h-98.7c-3.31 0-6-2.69-6-6s2.69-6 6-6h104.7c3.31 0 6 2.69 6 6v64.58h16.48c2.25 0 4.3 1.25 5.33 3.25s.86 4.4-.45 6.23l-40.02 56.18c-1.13 1.58-2.95 2.52-4.89 2.52s-3.76-.94-4.89-2.52l-40.02-56.18c-1.3-1.83-1.48-4.23-.45-6.23s3.09-3.25 5.33-3.25h16.48v-23.5h-65.38c-3.31 0-6-2.69-6-6s2.69-6 6-6h71.38c3.31 0 6 2.69 6 6v35.5c.02 3.31-2.67 6-5.98 6zm-118.44 50.65v-133.26c0-21.18-17.23-38.41-38.41-38.41h-207.7c-21.18-.01-38.41 17.23-38.41 38.41v133.26c0 21.18 17.23 38.41 38.41 38.41h105.8l64.8 55.11c1.11.94 2.49 1.43 3.89 1.43.85 0 1.71-.18 2.52-.55 2.12-.98 3.48-3.11 3.48-5.45v-50.54h27.21c21.18 0 38.41-17.23 38.41-38.41zm-71.62 26.41c-3.31 0-6 2.69-6 6v43.56l-56.59-48.13c-1.08-.92-2.46-1.43-3.89-1.43h-108.01c-14.56 0-26.41-11.85-26.41-26.41v-133.26c0-14.56 11.85-26.41 26.41-26.41h207.69c14.56 0 26.41 11.85 26.41 26.41v133.26c0 14.56-11.85 26.41-26.41 26.41zm-156.34-87.87h56.97c3.31 0 6-2.69 6-6v-39.2l8.55-8.55c2.34-2.34 2.34-6.14 0-8.49-2.34-2.34-6.14-2.34-8.48 0l-.7.7c-.98-1.97-3.01-3.32-5.36-3.32h-56.98c-3.31 0-6 2.69-6 6v52.85c0 3.32 2.69 6.01 6 6.01zm6-52.86h44.97v2.69l-18.16 18.16-8.84-8.84c-2.34-2.34-6.14-2.34-8.49 0-2.34 2.34-2.34 6.14 0 8.49l13.08 13.08c1.17 1.17 2.71 1.76 4.24 1.76s3.07-.59 4.24-1.76l13.92-13.92v21.2h-44.96zm173.62 3.08c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 31.92c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 36.52c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.68 5.99 6zm0 31.92c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.69 5.99 6zm-119.36 165.01h10.84l-28.38-39.84-28.38 39.84h10.84c3.31 0 6 2.69 6 6v64.58h98.7c3.31 0 6 2.69 6 6s-2.69 6-6 6h-104.69c-3.31 0-6-2.69-6-6v-64.58h-16.48c-2.25 0-4.3-1.25-5.33-3.25s-.86-4.4.45-6.23l40.02-56.18c1.13-1.58 2.95-2.52 4.89-2.52s3.76.94 4.89 2.52l40.02 56.18c1.3 1.83 1.48 4.23.45 6.23s-3.09 3.25-5.33 3.25h-16.48v23.5h65.38c3.31 0 6 2.69 6 6s-2.69 6-6 6h-71.38c-3.31 0-6-2.69-6-6v-35.5c-.03-3.31 2.66-6 5.97-6z\"></path></svg>				\n									<h5>\n							ærlig<br> rådgivning						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 510 510\"><path d=\"m192.036 385.845c-4.787-46.972-19.459-64.336-30.658-82.352-8.672-13.951-15.5-28.245-15.5-54.252 0-60.242 48.865-109.109 109.135-109.109 60.242 0 109.109 48.866 109.109 109.109 0 26.007-6.828 40.301-15.5 54.252-11.199 18.016-25.871 35.38-30.658 82.352 9.985 2.864 17.345 12.101 17.345 22.975v36.44c0 13.109-10.747 23.866-23.893 23.866h-10.334v9.945c0 12.588-10.341 22.929-22.93 22.929h-46.304c-12.589 0-22.93-10.341-22.93-22.929v-9.945h-10.334c-13.146 0-23.893-10.757-23.893-23.866v-36.44c0-10.874 7.36-20.111 17.345-22.975zm111.948-.917c4.199-42.194 15.78-62.332 26.488-79.049 10.147-15.842 19.65-28.207 19.65-56.638 0-52.513-42.597-95.109-95.109-95.109-52.537 0-95.135 42.596-95.135 95.109 0 28.431 9.503 40.796 19.65 56.638 10.708 16.717 22.289 36.855 26.488 79.049zm2.554-78.61c-1.175 13.701-11.985 24.191-24.783 24.191-13.527 0-24.862-12.086-24.862-26.673v-99.328c0-14.12 11.335-26.673 24.862-26.673 11.309 0 21.031 8.139 23.975 19.497 9.12 3.904 15.688 13.438 15.688 24.78 0 1.153-.068 2.289-.201 3.403 5.078 5.326 8.283 12.802 8.283 21.117 0 6.39-1.889 12.262-5.06 17.053 1.996 4.099 3.13 8.773 3.13 13.76 0 14.1-9.065 25.697-21.032 28.873zm-16.452-109.977c-1.964-2.729-4.916-4.506-8.331-4.506-6.192 0-10.862 6.21-10.862 12.673v99.328c0 6.677 4.67 12.673 10.862 12.673 5.516 0 9.822-4.614 10.717-10.425-4.709-1.416-8.923-4.144-12.279-7.814-2.607-2.852-2.409-7.283.443-9.89 2.851-2.607 7.282-2.408 9.889.443 2.416 2.642 5.72 4.356 9.402 4.356 7.733 0 13.643-7.218 13.643-15.734s-5.91-15.734-13.643-15.734c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7 5.352 0 10.388 1.655 14.658 4.533.593-1.743.915-3.634.915-5.612 0-2.11-.366-4.128-1.036-5.972-.769.858-1.588 1.66-2.453 2.397-2.94 2.507-7.361 2.156-9.869-.784-2.507-2.939-2.155-7.361.784-9.868 2.773-2.365 4.492-6.122 4.492-10.293 0-6.072-3.705-11.374-8.898-12.467-.154-.023-.307-.052-.458-.085-.499-.08-1.01-.121-1.532-.121-2.947 0-5.591 1.389-7.515 3.525-2.585 2.87-7.015 3.101-9.886.515-2.87-2.586-3.101-7.015-.515-9.886 3.111-3.453 7.059-5.988 11.472-7.252zm-104.526 67.344c-3.171-4.791-5.06-10.663-5.06-17.053 0-8.307 3.198-15.777 8.284-21.104-.133-1.118-.202-2.258-.202-3.416 0-11.354 6.582-20.897 15.717-24.792 2.948-11.354 12.67-19.485 23.946-19.485 13.56 0 24.888 12.555 24.888 26.673v99.328c0 14.585-11.328 26.673-24.888 26.673-12.765 0-23.578-10.484-24.757-24.184-11.98-3.166-21.058-14.769-21.058-28.88 0-4.987 1.134-9.661 3.13-13.76zm9.982-23.036c-.675 1.847-1.042 3.869-1.042 5.983 0 1.978.322 3.869.915 5.612 4.27-2.878 9.306-4.533 14.658-4.533 3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7-7.733 0-13.643 7.218-13.643 15.734s5.91 15.734 13.643 15.734c3.682 0 6.986-1.714 9.402-4.356 2.607-2.851 7.038-3.05 9.889-.443 2.852 2.607 3.05 7.038.443 9.89-3.35 3.664-7.556 6.389-12.255 7.807.891 5.813 5.192 10.432 10.693 10.432 6.21 0 10.888-5.993 10.888-12.673v-99.328c0-6.466-4.678-12.673-10.888-12.673-3.404 0-6.349 1.777-8.309 4.507 4.421 1.264 8.367 3.8 11.476 7.251 2.586 2.871 2.355 7.3-.516 9.886-2.87 2.586-7.3 2.355-9.886-.515-1.926-2.138-4.574-3.525-7.54-3.525-.493 0-.976.037-1.448.108-.196.045-.395.082-.596.11-5.165 1.118-8.844 6.404-8.844 12.455 0 1.243.153 2.45.442 3.594.101.284.183.572.246.862.748 2.326 2.071 4.346 3.814 5.823 2.947 2.498 3.311 6.919.813 9.866s-6.919 3.312-9.866.814c-.878-.745-1.71-1.554-2.489-2.422zm3.042 158.279c-5.442 0-9.893 4.451-9.893 9.892v36.44c0 5.423 4.454 9.866 9.893 9.866h17.334c3.866 0 7 3.134 7 7v16.945c0 4.902 4.027 8.929 8.93 8.929h46.304c4.903 0 8.93-4.027 8.93-8.929v-16.945c0-3.866 3.134-7 7-7h17.334c5.439 0 9.893-4.443 9.893-9.866v-36.44c0-5.441-4.451-9.892-9.893-9.892zm63.416-314.093 2.907-5.412c1.828-3.403 6.075-4.683 9.479-2.854 3.403 1.828 4.682 6.075 2.854 9.479l-16.073 29.925c-1.22 2.271-3.589 3.688-6.167 3.688s-4.947-1.417-6.167-3.688l-16.073-29.925c-1.828-3.404-.549-7.651 2.854-9.479 3.404-1.829 7.651-.549 9.479 2.854l2.907 5.412v-69.835c0-3.863 3.137-7 7-7s7 3.137 7 7zm-132.198 54.758-49.381-49.381c-2.732-2.731-2.732-7.167 0-9.899s7.168-2.732 9.9 0l49.38 49.38-1.771-5.881c-1.114-3.7.985-7.608 4.684-8.722 3.7-1.114 7.607.985 8.721 4.685l9.796 32.526c.743 2.468.069 5.145-1.753 6.968-1.823 1.823-4.5 2.496-6.969 1.753l-32.526-9.795c-3.699-1.114-5.798-5.022-4.684-8.721s5.022-5.798 8.721-4.684zm-44.859 122.299h-69.835c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7h69.835l-5.412-2.907c-3.403-1.828-4.682-6.076-2.854-9.479 1.828-3.404 6.075-4.683 9.479-2.855l29.926 16.074c2.271 1.22 3.688 3.589 3.688 6.167 0 2.577-1.417 4.947-3.688 6.166l-29.926 16.074c-3.404 1.828-7.651.549-9.479-2.855-1.828-3.403-.549-7.651 2.854-9.479zm54.758 118.198-49.38 49.38c-2.732 2.732-7.168 2.732-9.9 0s-2.732-7.167 0-9.899l49.381-49.381-5.882 1.772c-3.699 1.114-7.607-.985-8.721-4.685-1.114-3.699.985-7.607 4.684-8.721l32.526-9.795c2.469-.743 5.146-.07 6.969 1.753 1.822 1.823 2.496 4.5 1.753 6.968l-9.796 32.527c-1.114 3.699-5.021 5.798-8.721 4.684-3.699-1.114-5.798-5.022-4.684-8.721zm240.497-240.497 5.882-1.771c3.699-1.114 7.607.985 8.721 4.684s-.985 7.607-4.684 8.721l-32.526 9.795c-2.469.743-5.146.07-6.969-1.753-1.822-1.823-2.496-4.5-1.753-6.968l9.796-32.526c1.114-3.7 5.021-5.799 8.721-4.685 3.699 1.114 5.798 5.022 4.684 8.722l-1.771 5.881 49.38-49.38c2.732-2.732 7.168-2.732 9.9 0s2.732 7.168 0 9.899zm44.859 122.299 5.412 2.906c3.403 1.828 4.682 6.076 2.854 9.479-1.828 3.404-6.075 4.683-9.479 2.855l-29.926-16.074c-2.271-1.219-3.688-3.589-3.688-6.166 0-2.578 1.417-4.947 3.688-6.167l29.926-16.074c3.404-1.828 7.651-.549 9.479 2.855 1.828 3.403.549 7.651-2.854 9.479l-5.412 2.907h69.835c3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7zm-54.758 118.198 1.771 5.882c1.114 3.699-.985 7.607-4.684 8.721-3.7 1.114-7.607-.985-8.721-4.684l-9.796-32.527c-.743-2.468-.069-5.145 1.753-6.968 1.823-1.823 4.5-2.496 6.969-1.753l32.526 9.795c3.699 1.114 5.798 5.022 4.684 8.721-1.114 3.7-5.022 5.799-8.721 4.685l-5.882-1.772 49.381 49.381c2.732 2.732 2.732 7.167 0 9.899s-7.168 2.732-9.9 0z\"></path></svg>				\n									<h5>\n							gennemtænkte løsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"outline\"><path d=\"M486.41,144A28,28,0,0,0,472,92H349.123l5.457-21.828a48.513,48.513,0,0,0-12.848-46.153A41.035,41.035,0,0,0,312.609,12H308a8.009,8.009,0,0,0-8,8V47.413l-19.233,64.112A17.376,17.376,0,0,1,268,123.539V112a4,4,0,0,0-4-4H152a4,4,0,0,0-4,4v72a4,4,0,0,0,8,0V116h72V276H156V248a4,4,0,0,0-8,0v32a4,4,0,0,0,4,4H264a4,4,0,0,0,4-4V268.5h11.168A37.07,37.07,0,0,1,305.092,279a45.025,45.025,0,0,0,31.48,12.752L440,292a27.987,27.987,0,0,0,19.369-48.2,27.987,27.987,0,0,0,16-48A28,28,0,0,0,486.41,144ZM260,276H236V116h24Zm212-88H396a4,4,0,0,0,0,8h60a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h40a20,20,0,0,1,.01,40l-103.428-.25a37.07,37.07,0,0,1-25.924-10.5,45.031,45.031,0,0,0-31.49-12.752H268V131.686a25.317,25.317,0,0,0,20.429-17.862l19.4-64.675A4,4,0,0,0,308,48V20h4.609a33.082,33.082,0,0,1,23.481,9.69,40.507,40.507,0,0,1,10.728,38.541l-6.7,26.8A4,4,0,0,0,344,100H472a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h72a20,20,0,0,1,0,40Z\"></path><path d=\"M194.5,183.243l-1.9-.217a4,4,0,0,0-4.169,2.491L184.29,195.9H135.278l-3.539-9.317a4,4,0,0,0-7.478,2.84l2.459,6.477h-8.474L68.452,156.872a4,4,0,1,0-4.935,6.3L77.6,174.209,56.961,194.48l-6.636-5.491a4,4,0,1,0-5.1,6.163L87.219,229.9a44.1,44.1,0,0,0,28.05,10.1H212a8.009,8.009,0,0,0,8-8V203.9a8.009,8.009,0,0,0-8-8h-8v-2.01A10.708,10.708,0,0,0,194.5,183.243ZM212,203.9V232H115.269a36.081,36.081,0,0,1-22.951-8.264l-29.16-24.128,20.8-20.422L114.4,203.045a4,4,0,0,0,2.468.852H187a4,4,0,0,0,3.715-2.517l3.929-9.843a2.712,2.712,0,0,1,1.356,2.35v6.01a4,4,0,0,0,4,4Z\"></path><path d=\"M223.084,484.672,200.87,469.863V346.36A44.1,44.1,0,0,0,195.327,325l-17.183-30.94a4,4,0,0,0-7,3.884l17.184,30.94a36.073,36.073,0,0,1,4.537,17.478V468H164.333a4,4,0,1,0,0,8h31.321l12,8H152.865V352a4,4,0,0,0-.358-1.655l-25.454-56A4,4,0,0,0,123.411,292H114.2a4,4,0,0,0-3.945,4.658l8.862,53.175a36.016,36.016,0,0,1-1.951,18.949L78.642,468H48.333a4,4,0,1,0,0,8H80.377L92,484H32.088L76.63,361.366a4.017,4.017,0,0,0,.183-2.044L61.1,268H136a4,4,0,0,0,0-8H59.233L30.555,173.966A19.723,19.723,0,0,1,49.27,148H76a12,12,0,0,0,24,0h15.2a21.975,21.975,0,0,1,8.395,1.652l10.889,4.458a4,4,0,1,0,3.032-7.4L126.63,142.25A29.938,29.938,0,0,0,115.2,140H100v-4.527A16.014,16.014,0,0,0,112,120V103.473A16.014,16.014,0,0,0,124,88V80a4,4,0,0,0-4-4H90A22.025,22.025,0,0,0,68,98v18a12.02,12.02,0,0,0,8,11.314V140H49.27a27.723,27.723,0,0,0-26.305,36.5l29.493,88.482,16.29,94.655-46.128,127A4,4,0,0,0,26.38,492h78.485a4,4,0,0,0,2.268-7.3L86.3,470.368l38.318-98.69a44.018,44.018,0,0,0,2.385-23.16L118.921,300h1.914l24.03,52.867V488a4,4,0,0,0,4,4h72a4,4,0,0,0,2.219-7.328ZM76,98A14.015,14.015,0,0,1,90,84h26v4a8.009,8.009,0,0,1-8,8H92a4,4,0,0,0-4,4,11.962,11.962,0,0,1-1.53,5.881A12.044,12.044,0,0,0,76,104.686Zm4,14a3.981,3.981,0,0,1,3.407,1.9,4,4,0,0,0,5.956.975c.207-.171.7-.648.7-.648.032-.028.061-.057.09-.087A19.907,19.907,0,0,0,95.6,104H104v16a8.009,8.009,0,0,1-8,8,12.133,12.133,0,0,1-2.681-.3,4,4,0,1,0-1.775,7.8c.151.035.3.06.456.091V148a4,4,0,1,1-8,0V124a4,4,0,0,0-4-4,4,4,0,0,1,0-8Z\"></path></g></svg>				\n									<h5>\n							arbejde udført med ansvar						\n					</h5>\n				<p>Vi lover ikke mere, end vi kan holde – men vi holder det, vi lover.</p>			<h2>KONTAKT OS</h2>		<p>Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.</p>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 13:41:21', '2026-01-26 13:41:21', '', 10, 'https://mrarif.me/cpnordic/?p=546', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(547, 1, '2026-01-26 13:41:51', '2026-01-26 13:41:51', '<img width=\"2560\" height=\"1157\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-scaled.png\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-scaled.png 2560w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-300x136.png 300w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-1024x463.png 1024w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-768x347.png 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-1536x694.png 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-2048x925.png 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />													<p>Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.</p>			<h5>Quick Links</h5>							<ul>\n							<li>\n											<a href=\"https://mrarif.me/cpnordic/\">\n											Hjem\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/cpnordic/tjenester/\">\n											Tjenester\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/cpnordic/referencer/\">\n											Referencer\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/cpnordic/om-os/\">\n											Om os\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/cpnordic/kontakt/\">\n											Kontakt\n											</a>\n									</li>\n						</ul>\n							<h5>Contact Info</h5>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										Fyn, Denmark\n									</li>\n								<li>\n											<a href=\"tel:41600040\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										41 60 00 40\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:kontakt@cp-nordic.dk\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										kontakt@cp-nordic.dk\n											</a>\n									</li>\n						</ul>\n					<a href=\"https://www.facebook.com/cpnordic/\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"https://www.instagram.com/cpnordic/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n									<ul>\n							<li>\n										© Copyright 2026 all rights reserved\n									</li>\n						</ul>', 'Footer', '', 'inherit', 'closed', 'closed', '', '104-revision-v1', '', '', '2026-01-26 13:41:51', '2026-01-26 13:41:51', '', 104, 'https://mrarif.me/cpnordic/?p=547', 0, 'revision', '', 0),
(548, 1, '2026-01-26 13:42:11', '2026-01-26 13:42:11', '<img width=\"2560\" height=\"1157\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-scaled.png\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-scaled.png 2560w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-300x136.png 300w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-1024x463.png 1024w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-768x347.png 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-1536x694.png 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-2048x925.png 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />													<p>Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.</p>			<h5>Quick Links</h5>							<ul>\n							<li>\n											<a href=\"https://mrarif.me/cpnordic/\">\n											Hjem\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/cpnordic/tjenester/\">\n											Tjenester\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/cpnordic/referencer/\">\n											Referencer\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/cpnordic/om-os/\">\n											Om os\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/cpnordic/kontakt/\">\n											Kontakt\n											</a>\n									</li>\n						</ul>\n							<h5>Contact Info</h5>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										Fyn, Denmark\n									</li>\n								<li>\n											<a href=\"tel:41600040\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										41 60 00 40\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:kontakt@cp-nordic.dk\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										kontakt@cp-nordic.dk\n											</a>\n									</li>\n						</ul>\n					<a href=\"https://www.facebook.com/cpnordic/\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"https://www.instagram.com/cpnordic/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n									<ul>\n							<li>\n										© Copyright 2026 all rights reserved\n									</li>\n						</ul>', 'Footer', '', 'inherit', 'closed', 'closed', '', '104-revision-v1', '', '', '2026-01-26 13:42:11', '2026-01-26 13:42:11', '', 104, 'https://mrarif.me/cpnordic/?p=548', 0, 'revision', '', 0),
(549, 1, '2026-01-26 13:43:18', '2026-01-26 13:43:18', '<img width=\"2560\" height=\"1157\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-scaled.png\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-scaled.png 2560w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-300x136.png 300w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-1024x463.png 1024w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-768x347.png 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-1536x694.png 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-2048x925.png 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />													<p>Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.</p>			<h5>Quick Links</h5>							<ul>\n							<li>\n											<a href=\"https://mrarif.me/cpnordic/\">\n											Hjem\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/cpnordic/tjenester/\">\n											Tjenester\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/cpnordic/referencer/\">\n											Referencer\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/cpnordic/om-os/\">\n											Om os\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/cpnordic/kontakt/\">\n											Kontakt\n											</a>\n									</li>\n						</ul>\n							<h5>Contact Info</h5>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										Fyn, Denmark\n									</li>\n								<li>\n											<a href=\"tel:41600040\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										41 60 00 40\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:kontakt@cp-nordic.dk\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										kontakt@cp-nordic.dk\n											</a>\n									</li>\n						</ul>\n					<a href=\"https://www.facebook.com/cpnordic/\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"https://www.instagram.com/cpnordic/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n									<ul>\n							<li>\n										© Copyright 2026 all rights reserved\n									</li>\n						</ul>', 'Footer', '', 'inherit', 'closed', 'closed', '', '104-revision-v1', '', '', '2026-01-26 13:43:18', '2026-01-26 13:43:18', '', 104, 'https://mrarif.me/cpnordic/?p=549', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(552, 1, '2026-01-26 13:50:23', '2026-01-26 13:50:23', '<h1>CP NORDIC ApS</h1>					<h4>Byggeri – Tømrerarbejde og tagdækning</h4>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>					\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle ANMELDELSER\n					</a>\n					<h2>HVORFOR VÆLGE CP NORDIC ApS?</h2>		<p>Når du vælger CP NORDIC ApS, får du:</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 450 450\" width=\"512\"><g><g><path d=\"m225 165.2c-25.9 0-48.9-18.8-53.3-45.2-2.4-14.2.9-28.6 9.3-40.3 8.4-11.8 20.9-19.5 35.1-21.9 29.4-4.9 57.3 15 62.2 44.5 4.9 29.4-15 57.3-44.4 62.2-3 .5-6 .7-8.9.7zm-7.6-99.8c-12.2 2-22.9 8.7-30.1 18.8s-10.1 22.4-8 34.6c3.8 22.7 23.5 38.8 45.7 38.8 2.5 0 5.1-.2 7.6-.6 25.2-4.2 42.3-28.1 38.1-53.4s-28.1-42.4-53.3-38.2z\"></path><path d=\"m255.2 115c-2.1 0-3.8-1.7-3.8-3.8 0-14.6-11.8-26.4-26.4-26.4-2.1 0-3.8-1.7-3.8-3.8s1.7-3.8 3.8-3.8c18.8 0 34.1 15.3 34.1 34.1 0 2-1.8 3.7-3.9 3.7z\"></path><path d=\"m236.1 203h-22.2c-2.1 0-3.8-1.7-3.8-3.8v-14.1c-3.1-.6-6.1-1.4-9.1-2.4l-7 12.2c-1.1 1.8-3.4 2.5-5.3 1.4l-19.2-11.1c-.9-.5-1.5-1.4-1.8-2.3-.3-1-.1-2 .4-2.9l7-12.1c-2.4-2.1-4.6-4.3-6.7-6.6l-12.1 7c-1.8 1.1-4.2.4-5.2-1.4l-11.1-19.2c-1.1-1.8-.4-4.2 1.4-5.2l11.9-6.8c-1-3-1.9-6.1-2.6-9.3h-13.7c-2.1 0-3.8-1.7-3.8-3.8v-22.2c0-2.1 1.7-3.8 3.8-3.8h13.4c.6-3.2 1.4-6.4 2.4-9.5l-11.5-6.6c-1.8-1.1-2.5-3.4-1.4-5.3l11.1-19.6c.5-.9 1.4-1.5 2.3-1.8s2-.1 2.9.4l11.3 6.6c2.2-2.5 4.5-4.8 7-7l-6.5-11.3c-.5-.9-.6-1.9-.4-2.9.3-1 .9-1.8 1.8-2.3l19.2-11.1c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l6.4 11.2c3.1-1.1 6.4-1.9 9.7-2.6v-13c0-2.1 1.7-3.8 3.8-3.8h22.2c2.1 0 3.8 1.7 3.8 3.8v12.8c3.3.7 6.5 1.5 9.7 2.6l6.5-11.2c.5-.9 1.4-1.5 2.3-1.8 1-.3 2-.1 2.9.4l19.2 11.1c.9.5 1.5 1.3 1.8 2.3s.1 2-.4 2.9l-6.5 11.3c2.5 2.2 4.8 4.5 7 7.1l11.3-6.6c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l11.1 19.2c1.1 1.8.4 4.2-1.4 5.3l-11.5 6.6c1 3.1 1.8 6.3 2.5 9.5h13.6c2.1 0 3.8 1.7 3.8 3.8v22.2c0 2.1-1.7 3.8-3.8 3.8h-13.6c-.6 3.1-1.5 6.2-2.5 9.3l11.9 6.8c1.8 1.1 2.5 3.4 1.4 5.2l-11.2 19.5c-1.1 1.8-3.4 2.5-5.2 1.4l-12-7c-2.1 2.4-4.4 4.6-6.7 6.6l7 12.1c.5.9.6 1.9.4 2.9s-.9 1.8-1.8 2.3l-19.2 11.1c-1.8 1.1-4.2.4-5.2-1.4l-7-12.2c-3 1-6 1.8-9.1 2.4v14.1c-.2 2.3-2 4-4.1 4zm-18.4-7.7h14.5v-13.5c0-1.9 1.4-3.5 3.3-3.8 4.7-.7 9.4-2 13.8-3.7 1.8-.7 3.8 0 4.7 1.7l6.7 11.6 12.6-7.3-6.7-11.6c-1-1.6-.5-3.7.9-4.9 3.7-3 7.2-6.4 10.2-10.1 1.2-1.5 3.3-1.8 4.9-.9l11.5 6.6 7.3-12.6-11.3-6.5c-1.6-.9-2.4-3-1.6-4.7 1.8-4.5 3.1-9.2 3.9-14 .3-1.9 1.9-3.2 3.8-3.2h13v-14.6h-12.8c-1.9 0-3.5-1.4-3.8-3.3-.7-4.8-2-9.6-3.7-14.2-.7-1.8 0-3.7 1.7-4.7l10.9-6.3-7.3-12.6-10.8 6.3c-1.6.9-3.7.6-4.9-.9-3.1-3.9-6.6-7.4-10.4-10.6-1.5-1.2-1.9-3.3-.9-4.9l6.2-10.7-12.6-7.3-6.1 10.6c-1 1.6-3 2.3-4.7 1.7-4.6-1.8-9.5-3.1-14.4-3.9-1.9-.3-3.3-1.9-3.3-3.8v-12.2h-14.5v12.3c0 1.9-1.4 3.5-3.3 3.8-5 .8-9.8 2.1-14.4 3.9-1.8.7-3.8 0-4.7-1.7l-6.1-10.6-12.6 7.3 6.2 10.7c.9 1.6.6 3.7-.9 4.9-3.9 3.1-7.4 6.7-10.4 10.6-1.2 1.5-3.3 1.9-4.9.9l-10.8-6.3-7.3 12.6 10.9 6.3c1.6.9 2.3 2.9 1.7 4.7-1.7 4.6-3 9.4-3.7 14.2-.3 1.9-1.9 3.3-3.8 3.3h-12.8v14.5h13c1.9 0 3.5 1.4 3.8 3.2.8 4.8 2.1 9.5 3.9 14 .7 1.8 0 3.8-1.6 4.7l-11.3 6.5 7.3 12.6 11.5-6.6c1.6-.9 3.7-.6 4.9.9 3 3.7 6.5 7.1 10.3 10.1 1.5 1.2 1.9 3.3.9 4.9l-6.7 11.6 12.6 7.3 6.7-11.6c.9-1.6 2.9-2.3 4.7-1.7 4.5 1.7 9.1 2.9 13.8 3.7 1.9.3 3.3 1.9 3.3 3.8z\"></path></g><g><g><g><path d=\"m45.3 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m153.9 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path></g><g><path d=\"m189.3 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.2c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c0 2.1-1.7 3.8-3.8 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m73.3 326.4c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m126 326.4c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m99.7 325.6c-.6 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4s4.1 1.1 4.4 3.2c2.4 16.5 12.3 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m50.2 266.6c-.1 0-.2 0-.3 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.7 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-8.9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.5 2.2zm81.8-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13.1-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.4-.7 2.3-.7z\"></path></g></g></g><g><g><path d=\"m296.1 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m404.7 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path></g><g><path d=\"m440 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.1c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c.2 2.1-1.6 3.8-3.7 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m324 326.3c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m376.7 326.3c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m350.4 325.6c-.5 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4 2.1-.3 4 1.1 4.4 3.2 2.4 16.5 12.4 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m301 266.6c-.1 0-.2 0-.4 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.6 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.4 2.2zm81.7-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.5-.7 2.3-.7z\"></path></g></g></g></g></g></svg>				\n									<h5>\n							et ungt og engageret team						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"496pt\" viewBox=\"0 0 496 496\" width=\"496pt\"><path d=\"m440 328h-28.207031c5.078125-6.703125 8.207031-14.960938 8.207031-24 0-8.824219-7.175781-16-16-16h-12v-19.960938c59.574219-14.445312 104-68.085937 104-132.039062 0-74.992188-61.007812-136-136-136s-136 61.007812-136 136c0 63.953125 44.425781 117.59375 104 132.039062v19.960938h-8.449219c-6.167969 0-12.359375 1.464844-17.886719 4.214844l-50.480468 25.25c-3.320313 1.664062-7.03125 2.535156-10.734375 2.535156h-40.449219v-16h-104v16h56v56h16v-56h16v128h-16v-56h-16v56h-56v16h104v-16h40.449219c3.703125 0 7.414062.871094 10.734375 2.527344l34.488281 17.25c5.519531 2.757812 11.710937 4.222656 17.878906 4.222656h24.449219v24h64v-24h48c13.230469 0 24-10.769531 24-24 0-6.167969-2.40625-11.742188-6.238281-16 3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16 0-13.230469-10.769531-24-24-24zm8 24c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm-208-280c0-66.167969 53.832031-120 120-120s120 53.832031 120 120-53.832031 120-120 120-120-53.832031-120-120zm104 134.976562c5.257812.617188 10.574219 1.023438 16 1.023438s10.742188-.40625 16-1.023438v17.023438h-32zm-40.449219 185.023438c-3.703125 0-7.414062-.871094-10.734375-2.527344l-34.488281-17.25c-5.519531-2.757812-11.710937-4.222656-17.878906-4.222656h-40.449219v-96h40.449219c6.167969 0 12.359375-1.464844 17.886719-4.214844l50.480468-25.25c3.320313-1.664062 7.03125-2.535156 10.734375-2.535156h84.449219c0 13.230469-10.769531 24-24 24h-48.28125l-23.863281 35.808594c-6.101563 9.160156-14.527344 16.589844-24.367188 21.503906-8.753906 4.375-18.542969 6.6875-28.320312 6.6875h-15.167969v16h15.167969c12.246093 0 24.519531-2.894531 35.472656-8.375 12.328125-6.160156 22.878906-15.480469 30.527344-26.945312l6.832031-10.253907v93.574219zm40.449219 24v-136h17.472656c-.898437 2.511719-1.472656 5.183594-1.472656 8 0 6.167969 2.40625 11.742188 6.238281 16-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16 0 10.414062 6.710938 19.214844 16 22.527344v9.472656zm96-24h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8s-3.59375 8-8 8zm0 0\"></path><path d=\"m394.878906 73.007812-7.757812 13.984376c17.816406 9.878906 28.878906 28.664062 28.878906 49.007812h16c0-26.160156-14.222656-50.296875-37.121094-62.992188zm0 0\"></path><path d=\"m360 80c4.734375 0 9.449219.59375 14.007812 1.769531l3.976563-15.503906c-5.855469-1.496094-11.90625-2.265625-17.984375-2.265625zm0 0\"></path><path d=\"m360 48c48.519531 0 88 39.480469 88 88 0 20.753906-7.398438 40.910156-20.832031 56.785156l12.207031 10.34375c15.882812-18.761718 24.625-42.601562 24.625-67.128906 0-57.34375-46.65625-104-104-104-24.527344 0-48.367188 8.753906-67.128906 24.632812l10.335937 12.199219c15.871094-13.433593 36.039063-20.832031 56.792969-20.832031zm0 0\"></path><path d=\"m427.128906 215.367188-10.335937-12.199219c-15.871094 13.433593-36.039063 20.832031-56.792969 20.832031-48.519531 0-88-39.480469-88-88 0-20.753906 7.398438-40.910156 20.832031-56.785156l-12.207031-10.34375c-15.882812 18.761718-24.625 42.601562-24.625 67.128906 0 57.34375 46.65625 104 104 104 24.527344 0 48.367188-8.753906 67.128906-24.632812zm0 0\"></path><path d=\"m121.214844 165.640625c4.953125-1.375 9.695312-3.34375 14.183594-5.878906l9.769531 4.886719 19.472656-19.480469-4.886719-9.769531c2.535156-4.496094 4.503906-9.230469 5.886719-14.183594l10.359375-3.445313v-27.53125l-10.351562-3.453125c-1.375-4.953125-3.34375-9.707031-5.886719-14.183594l4.886719-9.777343-19.472657-19.472657-9.769531 4.886719c-4.484375-2.535156-9.230469-4.503906-14.183594-5.878906l-3.453125-10.359375h-27.539062l-3.445313 10.359375c-4.953125 1.375-9.695312 3.34375-14.183594 5.878906l-9.777343-4.886719-19.472657 19.472657 4.886719 9.777343c-2.535156 4.488282-4.503906 9.230469-5.886719 14.183594l-10.351562 3.445313v27.53125l10.351562 3.453125c1.375 4.953125 3.34375 9.695312 5.886719 14.183594l-4.886719 9.769531 19.472657 19.480469 9.769531-4.886719c4.484375 2.535156 9.230469 4.503906 14.183594 5.878906l3.453125 10.359375h27.539062zm-12.304688-13.679687-2.679687 8.039062h-4.460938l-2.679687-8.039062-4.554688-.90625c-6.128906-1.222657-11.878906-3.605469-17.109375-7.09375l-3.867187-2.578126-7.574219 3.800782-3.160156-3.167969 3.792969-7.582031-2.578126-3.859375c-3.488281-5.222657-5.871093-10.980469-7.09375-17.109375l-.914062-4.554688-8.03125-2.679687v-4.46875l8.03125-2.671875.914062-4.554688c1.222657-6.136718 3.613282-11.886718 7.09375-17.109375l2.578126-3.859375-3.792969-7.589844 3.160156-3.160156 7.574219 3.800782 3.867187-2.578126c5.222657-3.488281 10.980469-5.863281 17.109375-7.09375l4.554688-.90625 2.679687-8.039062h4.460938l2.679687 8.039062 4.554688.90625c6.128906 1.222657 11.878906 3.605469 17.109375 7.09375l3.867187 2.578126 7.574219-3.800782 3.160156 3.160156-3.792969 7.589844 2.578126 3.859375c3.488281 5.214844 5.871093 10.972657 7.09375 17.109375l.914062 4.554688 8.03125 2.679687v4.46875l-8.03125 2.671875-.914062 4.554688c-1.222657 6.128906-3.613282 11.878906-7.09375 17.109375l-2.578126 3.859375 3.792969 7.582031-3.160156 3.167969-7.574219-3.800782-3.867187 2.578126c-5.222657 3.488281-10.980469 5.863281-17.109375 7.09375zm0 0\"></path><path d=\"m104 72c-17.648438 0-32 14.351562-32 32s14.351562 32 32 32 32-14.351562 32-32-14.351562-32-32-32zm0 48c-8.824219 0-16-7.175781-16-16s7.175781-16 16-16 16 7.175781 16 16-7.175781 16-16 16zm0 0\"></path><path d=\"m160 248v-40h48v-208h-208v208h106.664062zm-144-232h176v176h-48v24l-32-24h-96zm0 0\"></path><path d=\"m0 272h16v16h-16zm0 0\"></path><path d=\"m32 272h16v16h-16zm0 0\"></path><path d=\"m64 272h16v16h-16zm0 0\"></path><path d=\"m32 304h16v16h-16zm0 0\"></path><path d=\"m64 304h16v16h-16zm0 0\"></path><path d=\"m0 480h16v16h-16zm0 0\"></path><path d=\"m32 480h16v16h-16zm0 0\"></path><path d=\"m64 480h16v16h-16zm0 0\"></path><path d=\"m32 448h16v16h-16zm0 0\"></path><path d=\"m64 448h16v16h-16zm0 0\"></path></svg>				\n									<h5>\n							fokus på kvalitet og detaljer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m469.12 408.93-67.26-33.63v-22.13c10.71-7.69 18.6-19.07 21.78-32.27h5.28c8.81 0 15.98-7.17 15.98-15.98v-5.29c0-6.35-3.74-11.84-9.12-14.41 5.19-18.64-1.65-39.76-19.44-59.78-12.58-14.16-30.67-22.27-49.62-22.27-18.93 0-37.01 8.12-49.59 22.27-13.38 15.05-20.95 41.01-14.03 59.62-5.56 2.5-9.45 8.09-9.45 14.57v5.29c0 8.81 7.17 15.98 15.98 15.98h5.55c3.16 13.09 10.94 24.39 21.51 32.08v22.32l-67.26 33.63c-16.7 5.87-27.89 21.6-27.89 39.28v41.63c0 3.31 2.69 6 6 6h243.46c3.31 0 6-2.69 6-6v-41.63c0-17.68-11.19-33.41-27.88-39.28zm-62.24-17.7-15.83 27.66-13.29-13.29 19.29-19.29zm-37.61 5.88-20.59-20.58v-16.91c6.41 2.57 13.4 4.01 20.72 4.01 7.22 0 14.11-1.39 20.45-3.9v16.8zm63.63-97.48v5.29c0 2.16-1.82 3.98-3.98 3.98h-3.74c.01-.36.03-.71.03-1.07v-12.18h3.71c2.15-.01 3.98 1.82 3.98 3.98zm-119.29 8.2v1.07h-3.98c-2.16 0-3.98-1.82-3.98-3.98v-5.29c0-2.16 1.82-3.98 3.98-3.98l3.98.22zm1.95-24.19c-7.33-13.69-.89-37.39 10.53-50.24 10.31-11.6 25.12-18.25 40.63-18.25 15.52 0 30.34 6.65 40.65 18.25 8.43 9.48 21.3 27.59 17.4 46.39-5.66-.35-10.67-2.55-14.4-6.36-5.37-5.49-7.72-14-6.63-23.94.29-2.62-1.17-5.13-3.6-6.17s-5.25-.37-6.95 1.65c-19.33 22.92-45.95 36.76-73.9 38.68h-3.73zm10.05 24.19v-12.73c24.57-2.92 47.92-14.05 66.73-31.8 1.43 7.26 4.63 13.6 9.45 18.52 3.27 3.35 7.14 5.89 11.41 7.58v18.42c0 24.15-19.65 43.8-43.8 43.8s-43.79-19.64-43.79-43.79zm15.89 78.48 19.29 19.29-13.29 13.29-15.84-27.66zm3.22 97.53h-39.42v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.76v-35.63c0-12.68 8.1-23.95 20.15-28.05.26-.09.51-.19.75-.31l46.47-23.23 20.07 35.06c.93 1.62 2.56 2.72 4.41 2.97.27.04.53.05.79.05 1.58 0 3.11-.62 4.24-1.76l.14-.14zm12.08 0 7.41-64.69 5.06-5.06 4.84 4.84 7.86 64.92h-25.17zm128.2 0h-39.76v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.18l-6.2-51.17.25.25c1.13 1.13 2.66 1.76 4.24 1.76.26 0 .53-.02.79-.05 1.85-.25 3.48-1.34 4.41-2.97l20.07-35.06 46.47 23.23c.24.12.49.23.75.31 12.05 4.1 20.15 15.38 20.15 28.05v35.65zm-67.04-346.65h-10.84l28.38 39.84 28.38-39.84h-10.84c-3.31 0-6-2.69-6-6v-64.58h-98.7c-3.31 0-6-2.69-6-6s2.69-6 6-6h104.7c3.31 0 6 2.69 6 6v64.58h16.48c2.25 0 4.3 1.25 5.33 3.25s.86 4.4-.45 6.23l-40.02 56.18c-1.13 1.58-2.95 2.52-4.89 2.52s-3.76-.94-4.89-2.52l-40.02-56.18c-1.3-1.83-1.48-4.23-.45-6.23s3.09-3.25 5.33-3.25h16.48v-23.5h-65.38c-3.31 0-6-2.69-6-6s2.69-6 6-6h71.38c3.31 0 6 2.69 6 6v35.5c.02 3.31-2.67 6-5.98 6zm-118.44 50.65v-133.26c0-21.18-17.23-38.41-38.41-38.41h-207.7c-21.18-.01-38.41 17.23-38.41 38.41v133.26c0 21.18 17.23 38.41 38.41 38.41h105.8l64.8 55.11c1.11.94 2.49 1.43 3.89 1.43.85 0 1.71-.18 2.52-.55 2.12-.98 3.48-3.11 3.48-5.45v-50.54h27.21c21.18 0 38.41-17.23 38.41-38.41zm-71.62 26.41c-3.31 0-6 2.69-6 6v43.56l-56.59-48.13c-1.08-.92-2.46-1.43-3.89-1.43h-108.01c-14.56 0-26.41-11.85-26.41-26.41v-133.26c0-14.56 11.85-26.41 26.41-26.41h207.69c14.56 0 26.41 11.85 26.41 26.41v133.26c0 14.56-11.85 26.41-26.41 26.41zm-156.34-87.87h56.97c3.31 0 6-2.69 6-6v-39.2l8.55-8.55c2.34-2.34 2.34-6.14 0-8.49-2.34-2.34-6.14-2.34-8.48 0l-.7.7c-.98-1.97-3.01-3.32-5.36-3.32h-56.98c-3.31 0-6 2.69-6 6v52.85c0 3.32 2.69 6.01 6 6.01zm6-52.86h44.97v2.69l-18.16 18.16-8.84-8.84c-2.34-2.34-6.14-2.34-8.49 0-2.34 2.34-2.34 6.14 0 8.49l13.08 13.08c1.17 1.17 2.71 1.76 4.24 1.76s3.07-.59 4.24-1.76l13.92-13.92v21.2h-44.96zm173.62 3.08c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 31.92c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 36.52c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.68 5.99 6zm0 31.92c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.69 5.99 6zm-119.36 165.01h10.84l-28.38-39.84-28.38 39.84h10.84c3.31 0 6 2.69 6 6v64.58h98.7c3.31 0 6 2.69 6 6s-2.69 6-6 6h-104.69c-3.31 0-6-2.69-6-6v-64.58h-16.48c-2.25 0-4.3-1.25-5.33-3.25s-.86-4.4.45-6.23l40.02-56.18c1.13-1.58 2.95-2.52 4.89-2.52s3.76.94 4.89 2.52l40.02 56.18c1.3 1.83 1.48 4.23.45 6.23s-3.09 3.25-5.33 3.25h-16.48v23.5h65.38c3.31 0 6 2.69 6 6s-2.69 6-6 6h-71.38c-3.31 0-6-2.69-6-6v-35.5c-.03-3.31 2.66-6 5.97-6z\"></path></svg>				\n									<h5>\n							ærlig<br> rådgivning						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 510 510\"><path d=\"m192.036 385.845c-4.787-46.972-19.459-64.336-30.658-82.352-8.672-13.951-15.5-28.245-15.5-54.252 0-60.242 48.865-109.109 109.135-109.109 60.242 0 109.109 48.866 109.109 109.109 0 26.007-6.828 40.301-15.5 54.252-11.199 18.016-25.871 35.38-30.658 82.352 9.985 2.864 17.345 12.101 17.345 22.975v36.44c0 13.109-10.747 23.866-23.893 23.866h-10.334v9.945c0 12.588-10.341 22.929-22.93 22.929h-46.304c-12.589 0-22.93-10.341-22.93-22.929v-9.945h-10.334c-13.146 0-23.893-10.757-23.893-23.866v-36.44c0-10.874 7.36-20.111 17.345-22.975zm111.948-.917c4.199-42.194 15.78-62.332 26.488-79.049 10.147-15.842 19.65-28.207 19.65-56.638 0-52.513-42.597-95.109-95.109-95.109-52.537 0-95.135 42.596-95.135 95.109 0 28.431 9.503 40.796 19.65 56.638 10.708 16.717 22.289 36.855 26.488 79.049zm2.554-78.61c-1.175 13.701-11.985 24.191-24.783 24.191-13.527 0-24.862-12.086-24.862-26.673v-99.328c0-14.12 11.335-26.673 24.862-26.673 11.309 0 21.031 8.139 23.975 19.497 9.12 3.904 15.688 13.438 15.688 24.78 0 1.153-.068 2.289-.201 3.403 5.078 5.326 8.283 12.802 8.283 21.117 0 6.39-1.889 12.262-5.06 17.053 1.996 4.099 3.13 8.773 3.13 13.76 0 14.1-9.065 25.697-21.032 28.873zm-16.452-109.977c-1.964-2.729-4.916-4.506-8.331-4.506-6.192 0-10.862 6.21-10.862 12.673v99.328c0 6.677 4.67 12.673 10.862 12.673 5.516 0 9.822-4.614 10.717-10.425-4.709-1.416-8.923-4.144-12.279-7.814-2.607-2.852-2.409-7.283.443-9.89 2.851-2.607 7.282-2.408 9.889.443 2.416 2.642 5.72 4.356 9.402 4.356 7.733 0 13.643-7.218 13.643-15.734s-5.91-15.734-13.643-15.734c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7 5.352 0 10.388 1.655 14.658 4.533.593-1.743.915-3.634.915-5.612 0-2.11-.366-4.128-1.036-5.972-.769.858-1.588 1.66-2.453 2.397-2.94 2.507-7.361 2.156-9.869-.784-2.507-2.939-2.155-7.361.784-9.868 2.773-2.365 4.492-6.122 4.492-10.293 0-6.072-3.705-11.374-8.898-12.467-.154-.023-.307-.052-.458-.085-.499-.08-1.01-.121-1.532-.121-2.947 0-5.591 1.389-7.515 3.525-2.585 2.87-7.015 3.101-9.886.515-2.87-2.586-3.101-7.015-.515-9.886 3.111-3.453 7.059-5.988 11.472-7.252zm-104.526 67.344c-3.171-4.791-5.06-10.663-5.06-17.053 0-8.307 3.198-15.777 8.284-21.104-.133-1.118-.202-2.258-.202-3.416 0-11.354 6.582-20.897 15.717-24.792 2.948-11.354 12.67-19.485 23.946-19.485 13.56 0 24.888 12.555 24.888 26.673v99.328c0 14.585-11.328 26.673-24.888 26.673-12.765 0-23.578-10.484-24.757-24.184-11.98-3.166-21.058-14.769-21.058-28.88 0-4.987 1.134-9.661 3.13-13.76zm9.982-23.036c-.675 1.847-1.042 3.869-1.042 5.983 0 1.978.322 3.869.915 5.612 4.27-2.878 9.306-4.533 14.658-4.533 3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7-7.733 0-13.643 7.218-13.643 15.734s5.91 15.734 13.643 15.734c3.682 0 6.986-1.714 9.402-4.356 2.607-2.851 7.038-3.05 9.889-.443 2.852 2.607 3.05 7.038.443 9.89-3.35 3.664-7.556 6.389-12.255 7.807.891 5.813 5.192 10.432 10.693 10.432 6.21 0 10.888-5.993 10.888-12.673v-99.328c0-6.466-4.678-12.673-10.888-12.673-3.404 0-6.349 1.777-8.309 4.507 4.421 1.264 8.367 3.8 11.476 7.251 2.586 2.871 2.355 7.3-.516 9.886-2.87 2.586-7.3 2.355-9.886-.515-1.926-2.138-4.574-3.525-7.54-3.525-.493 0-.976.037-1.448.108-.196.045-.395.082-.596.11-5.165 1.118-8.844 6.404-8.844 12.455 0 1.243.153 2.45.442 3.594.101.284.183.572.246.862.748 2.326 2.071 4.346 3.814 5.823 2.947 2.498 3.311 6.919.813 9.866s-6.919 3.312-9.866.814c-.878-.745-1.71-1.554-2.489-2.422zm3.042 158.279c-5.442 0-9.893 4.451-9.893 9.892v36.44c0 5.423 4.454 9.866 9.893 9.866h17.334c3.866 0 7 3.134 7 7v16.945c0 4.902 4.027 8.929 8.93 8.929h46.304c4.903 0 8.93-4.027 8.93-8.929v-16.945c0-3.866 3.134-7 7-7h17.334c5.439 0 9.893-4.443 9.893-9.866v-36.44c0-5.441-4.451-9.892-9.893-9.892zm63.416-314.093 2.907-5.412c1.828-3.403 6.075-4.683 9.479-2.854 3.403 1.828 4.682 6.075 2.854 9.479l-16.073 29.925c-1.22 2.271-3.589 3.688-6.167 3.688s-4.947-1.417-6.167-3.688l-16.073-29.925c-1.828-3.404-.549-7.651 2.854-9.479 3.404-1.829 7.651-.549 9.479 2.854l2.907 5.412v-69.835c0-3.863 3.137-7 7-7s7 3.137 7 7zm-132.198 54.758-49.381-49.381c-2.732-2.731-2.732-7.167 0-9.899s7.168-2.732 9.9 0l49.38 49.38-1.771-5.881c-1.114-3.7.985-7.608 4.684-8.722 3.7-1.114 7.607.985 8.721 4.685l9.796 32.526c.743 2.468.069 5.145-1.753 6.968-1.823 1.823-4.5 2.496-6.969 1.753l-32.526-9.795c-3.699-1.114-5.798-5.022-4.684-8.721s5.022-5.798 8.721-4.684zm-44.859 122.299h-69.835c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7h69.835l-5.412-2.907c-3.403-1.828-4.682-6.076-2.854-9.479 1.828-3.404 6.075-4.683 9.479-2.855l29.926 16.074c2.271 1.22 3.688 3.589 3.688 6.167 0 2.577-1.417 4.947-3.688 6.166l-29.926 16.074c-3.404 1.828-7.651.549-9.479-2.855-1.828-3.403-.549-7.651 2.854-9.479zm54.758 118.198-49.38 49.38c-2.732 2.732-7.168 2.732-9.9 0s-2.732-7.167 0-9.899l49.381-49.381-5.882 1.772c-3.699 1.114-7.607-.985-8.721-4.685-1.114-3.699.985-7.607 4.684-8.721l32.526-9.795c2.469-.743 5.146-.07 6.969 1.753 1.822 1.823 2.496 4.5 1.753 6.968l-9.796 32.527c-1.114 3.699-5.021 5.798-8.721 4.684-3.699-1.114-5.798-5.022-4.684-8.721zm240.497-240.497 5.882-1.771c3.699-1.114 7.607.985 8.721 4.684s-.985 7.607-4.684 8.721l-32.526 9.795c-2.469.743-5.146.07-6.969-1.753-1.822-1.823-2.496-4.5-1.753-6.968l9.796-32.526c1.114-3.7 5.021-5.799 8.721-4.685 3.699 1.114 5.798 5.022 4.684 8.722l-1.771 5.881 49.38-49.38c2.732-2.732 7.168-2.732 9.9 0s2.732 7.168 0 9.899zm44.859 122.299 5.412 2.906c3.403 1.828 4.682 6.076 2.854 9.479-1.828 3.404-6.075 4.683-9.479 2.855l-29.926-16.074c-2.271-1.219-3.688-3.589-3.688-6.166 0-2.578 1.417-4.947 3.688-6.167l29.926-16.074c3.404-1.828 7.651-.549 9.479 2.855 1.828 3.403.549 7.651-2.854 9.479l-5.412 2.907h69.835c3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7zm-54.758 118.198 1.771 5.882c1.114 3.699-.985 7.607-4.684 8.721-3.7 1.114-7.607-.985-8.721-4.684l-9.796-32.527c-.743-2.468-.069-5.145 1.753-6.968 1.823-1.823 4.5-2.496 6.969-1.753l32.526 9.795c3.699 1.114 5.798 5.022 4.684 8.721-1.114 3.7-5.022 5.799-8.721 4.685l-5.882-1.772 49.381 49.381c2.732 2.732 2.732 7.167 0 9.899s-7.168 2.732-9.9 0z\"></path></svg>				\n									<h5>\n							gennemtænkte løsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"outline\"><path d=\"M486.41,144A28,28,0,0,0,472,92H349.123l5.457-21.828a48.513,48.513,0,0,0-12.848-46.153A41.035,41.035,0,0,0,312.609,12H308a8.009,8.009,0,0,0-8,8V47.413l-19.233,64.112A17.376,17.376,0,0,1,268,123.539V112a4,4,0,0,0-4-4H152a4,4,0,0,0-4,4v72a4,4,0,0,0,8,0V116h72V276H156V248a4,4,0,0,0-8,0v32a4,4,0,0,0,4,4H264a4,4,0,0,0,4-4V268.5h11.168A37.07,37.07,0,0,1,305.092,279a45.025,45.025,0,0,0,31.48,12.752L440,292a27.987,27.987,0,0,0,19.369-48.2,27.987,27.987,0,0,0,16-48A28,28,0,0,0,486.41,144ZM260,276H236V116h24Zm212-88H396a4,4,0,0,0,0,8h60a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h40a20,20,0,0,1,.01,40l-103.428-.25a37.07,37.07,0,0,1-25.924-10.5,45.031,45.031,0,0,0-31.49-12.752H268V131.686a25.317,25.317,0,0,0,20.429-17.862l19.4-64.675A4,4,0,0,0,308,48V20h4.609a33.082,33.082,0,0,1,23.481,9.69,40.507,40.507,0,0,1,10.728,38.541l-6.7,26.8A4,4,0,0,0,344,100H472a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h72a20,20,0,0,1,0,40Z\"></path><path d=\"M194.5,183.243l-1.9-.217a4,4,0,0,0-4.169,2.491L184.29,195.9H135.278l-3.539-9.317a4,4,0,0,0-7.478,2.84l2.459,6.477h-8.474L68.452,156.872a4,4,0,1,0-4.935,6.3L77.6,174.209,56.961,194.48l-6.636-5.491a4,4,0,1,0-5.1,6.163L87.219,229.9a44.1,44.1,0,0,0,28.05,10.1H212a8.009,8.009,0,0,0,8-8V203.9a8.009,8.009,0,0,0-8-8h-8v-2.01A10.708,10.708,0,0,0,194.5,183.243ZM212,203.9V232H115.269a36.081,36.081,0,0,1-22.951-8.264l-29.16-24.128,20.8-20.422L114.4,203.045a4,4,0,0,0,2.468.852H187a4,4,0,0,0,3.715-2.517l3.929-9.843a2.712,2.712,0,0,1,1.356,2.35v6.01a4,4,0,0,0,4,4Z\"></path><path d=\"M223.084,484.672,200.87,469.863V346.36A44.1,44.1,0,0,0,195.327,325l-17.183-30.94a4,4,0,0,0-7,3.884l17.184,30.94a36.073,36.073,0,0,1,4.537,17.478V468H164.333a4,4,0,1,0,0,8h31.321l12,8H152.865V352a4,4,0,0,0-.358-1.655l-25.454-56A4,4,0,0,0,123.411,292H114.2a4,4,0,0,0-3.945,4.658l8.862,53.175a36.016,36.016,0,0,1-1.951,18.949L78.642,468H48.333a4,4,0,1,0,0,8H80.377L92,484H32.088L76.63,361.366a4.017,4.017,0,0,0,.183-2.044L61.1,268H136a4,4,0,0,0,0-8H59.233L30.555,173.966A19.723,19.723,0,0,1,49.27,148H76a12,12,0,0,0,24,0h15.2a21.975,21.975,0,0,1,8.395,1.652l10.889,4.458a4,4,0,1,0,3.032-7.4L126.63,142.25A29.938,29.938,0,0,0,115.2,140H100v-4.527A16.014,16.014,0,0,0,112,120V103.473A16.014,16.014,0,0,0,124,88V80a4,4,0,0,0-4-4H90A22.025,22.025,0,0,0,68,98v18a12.02,12.02,0,0,0,8,11.314V140H49.27a27.723,27.723,0,0,0-26.305,36.5l29.493,88.482,16.29,94.655-46.128,127A4,4,0,0,0,26.38,492h78.485a4,4,0,0,0,2.268-7.3L86.3,470.368l38.318-98.69a44.018,44.018,0,0,0,2.385-23.16L118.921,300h1.914l24.03,52.867V488a4,4,0,0,0,4,4h72a4,4,0,0,0,2.219-7.328ZM76,98A14.015,14.015,0,0,1,90,84h26v4a8.009,8.009,0,0,1-8,8H92a4,4,0,0,0-4,4,11.962,11.962,0,0,1-1.53,5.881A12.044,12.044,0,0,0,76,104.686Zm4,14a3.981,3.981,0,0,1,3.407,1.9,4,4,0,0,0,5.956.975c.207-.171.7-.648.7-.648.032-.028.061-.057.09-.087A19.907,19.907,0,0,0,95.6,104H104v16a8.009,8.009,0,0,1-8,8,12.133,12.133,0,0,1-2.681-.3,4,4,0,1,0-1.775,7.8c.151.035.3.06.456.091V148a4,4,0,1,1-8,0V124a4,4,0,0,0-4-4,4,4,0,0,1,0-8Z\"></path></g></svg>				\n									<h5>\n							arbejde udført med ansvar						\n					</h5>\n				<p>Vi lover ikke mere, end vi kan holde – men vi holder det, vi lover.</p>			<h2>KONTAKT OS</h2>		<p>Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.</p>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 13:50:23', '2026-01-26 13:50:23', '', 10, 'https://mrarif.me/cpnordic/?p=552', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(553, 1, '2026-01-26 13:50:24', '2026-01-26 13:50:24', '<h1>CP NORDIC ApS</h1>					<h4>Byggeri – Tømrerarbejde og tagdækning</h4>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>					\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle ANMELDELSER\n					</a>\n					<h2>HVORFOR VÆLGE CP NORDIC ApS?</h2>		<p>Når du vælger CP NORDIC ApS, får du:</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 450 450\" width=\"512\"><g><g><path d=\"m225 165.2c-25.9 0-48.9-18.8-53.3-45.2-2.4-14.2.9-28.6 9.3-40.3 8.4-11.8 20.9-19.5 35.1-21.9 29.4-4.9 57.3 15 62.2 44.5 4.9 29.4-15 57.3-44.4 62.2-3 .5-6 .7-8.9.7zm-7.6-99.8c-12.2 2-22.9 8.7-30.1 18.8s-10.1 22.4-8 34.6c3.8 22.7 23.5 38.8 45.7 38.8 2.5 0 5.1-.2 7.6-.6 25.2-4.2 42.3-28.1 38.1-53.4s-28.1-42.4-53.3-38.2z\"></path><path d=\"m255.2 115c-2.1 0-3.8-1.7-3.8-3.8 0-14.6-11.8-26.4-26.4-26.4-2.1 0-3.8-1.7-3.8-3.8s1.7-3.8 3.8-3.8c18.8 0 34.1 15.3 34.1 34.1 0 2-1.8 3.7-3.9 3.7z\"></path><path d=\"m236.1 203h-22.2c-2.1 0-3.8-1.7-3.8-3.8v-14.1c-3.1-.6-6.1-1.4-9.1-2.4l-7 12.2c-1.1 1.8-3.4 2.5-5.3 1.4l-19.2-11.1c-.9-.5-1.5-1.4-1.8-2.3-.3-1-.1-2 .4-2.9l7-12.1c-2.4-2.1-4.6-4.3-6.7-6.6l-12.1 7c-1.8 1.1-4.2.4-5.2-1.4l-11.1-19.2c-1.1-1.8-.4-4.2 1.4-5.2l11.9-6.8c-1-3-1.9-6.1-2.6-9.3h-13.7c-2.1 0-3.8-1.7-3.8-3.8v-22.2c0-2.1 1.7-3.8 3.8-3.8h13.4c.6-3.2 1.4-6.4 2.4-9.5l-11.5-6.6c-1.8-1.1-2.5-3.4-1.4-5.3l11.1-19.6c.5-.9 1.4-1.5 2.3-1.8s2-.1 2.9.4l11.3 6.6c2.2-2.5 4.5-4.8 7-7l-6.5-11.3c-.5-.9-.6-1.9-.4-2.9.3-1 .9-1.8 1.8-2.3l19.2-11.1c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l6.4 11.2c3.1-1.1 6.4-1.9 9.7-2.6v-13c0-2.1 1.7-3.8 3.8-3.8h22.2c2.1 0 3.8 1.7 3.8 3.8v12.8c3.3.7 6.5 1.5 9.7 2.6l6.5-11.2c.5-.9 1.4-1.5 2.3-1.8 1-.3 2-.1 2.9.4l19.2 11.1c.9.5 1.5 1.3 1.8 2.3s.1 2-.4 2.9l-6.5 11.3c2.5 2.2 4.8 4.5 7 7.1l11.3-6.6c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l11.1 19.2c1.1 1.8.4 4.2-1.4 5.3l-11.5 6.6c1 3.1 1.8 6.3 2.5 9.5h13.6c2.1 0 3.8 1.7 3.8 3.8v22.2c0 2.1-1.7 3.8-3.8 3.8h-13.6c-.6 3.1-1.5 6.2-2.5 9.3l11.9 6.8c1.8 1.1 2.5 3.4 1.4 5.2l-11.2 19.5c-1.1 1.8-3.4 2.5-5.2 1.4l-12-7c-2.1 2.4-4.4 4.6-6.7 6.6l7 12.1c.5.9.6 1.9.4 2.9s-.9 1.8-1.8 2.3l-19.2 11.1c-1.8 1.1-4.2.4-5.2-1.4l-7-12.2c-3 1-6 1.8-9.1 2.4v14.1c-.2 2.3-2 4-4.1 4zm-18.4-7.7h14.5v-13.5c0-1.9 1.4-3.5 3.3-3.8 4.7-.7 9.4-2 13.8-3.7 1.8-.7 3.8 0 4.7 1.7l6.7 11.6 12.6-7.3-6.7-11.6c-1-1.6-.5-3.7.9-4.9 3.7-3 7.2-6.4 10.2-10.1 1.2-1.5 3.3-1.8 4.9-.9l11.5 6.6 7.3-12.6-11.3-6.5c-1.6-.9-2.4-3-1.6-4.7 1.8-4.5 3.1-9.2 3.9-14 .3-1.9 1.9-3.2 3.8-3.2h13v-14.6h-12.8c-1.9 0-3.5-1.4-3.8-3.3-.7-4.8-2-9.6-3.7-14.2-.7-1.8 0-3.7 1.7-4.7l10.9-6.3-7.3-12.6-10.8 6.3c-1.6.9-3.7.6-4.9-.9-3.1-3.9-6.6-7.4-10.4-10.6-1.5-1.2-1.9-3.3-.9-4.9l6.2-10.7-12.6-7.3-6.1 10.6c-1 1.6-3 2.3-4.7 1.7-4.6-1.8-9.5-3.1-14.4-3.9-1.9-.3-3.3-1.9-3.3-3.8v-12.2h-14.5v12.3c0 1.9-1.4 3.5-3.3 3.8-5 .8-9.8 2.1-14.4 3.9-1.8.7-3.8 0-4.7-1.7l-6.1-10.6-12.6 7.3 6.2 10.7c.9 1.6.6 3.7-.9 4.9-3.9 3.1-7.4 6.7-10.4 10.6-1.2 1.5-3.3 1.9-4.9.9l-10.8-6.3-7.3 12.6 10.9 6.3c1.6.9 2.3 2.9 1.7 4.7-1.7 4.6-3 9.4-3.7 14.2-.3 1.9-1.9 3.3-3.8 3.3h-12.8v14.5h13c1.9 0 3.5 1.4 3.8 3.2.8 4.8 2.1 9.5 3.9 14 .7 1.8 0 3.8-1.6 4.7l-11.3 6.5 7.3 12.6 11.5-6.6c1.6-.9 3.7-.6 4.9.9 3 3.7 6.5 7.1 10.3 10.1 1.5 1.2 1.9 3.3.9 4.9l-6.7 11.6 12.6 7.3 6.7-11.6c.9-1.6 2.9-2.3 4.7-1.7 4.5 1.7 9.1 2.9 13.8 3.7 1.9.3 3.3 1.9 3.3 3.8z\"></path></g><g><g><g><path d=\"m45.3 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m153.9 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path></g><g><path d=\"m189.3 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.2c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c0 2.1-1.7 3.8-3.8 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m73.3 326.4c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m126 326.4c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m99.7 325.6c-.6 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4s4.1 1.1 4.4 3.2c2.4 16.5 12.3 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m50.2 266.6c-.1 0-.2 0-.3 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.7 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-8.9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.5 2.2zm81.8-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13.1-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.4-.7 2.3-.7z\"></path></g></g></g><g><g><path d=\"m296.1 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m404.7 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path></g><g><path d=\"m440 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.1c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c.2 2.1-1.6 3.8-3.7 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m324 326.3c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m376.7 326.3c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m350.4 325.6c-.5 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4 2.1-.3 4 1.1 4.4 3.2 2.4 16.5 12.4 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m301 266.6c-.1 0-.2 0-.4 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.6 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.4 2.2zm81.7-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.5-.7 2.3-.7z\"></path></g></g></g></g></g></svg>				\n									<h5>\n							et ungt og engageret team						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"496pt\" viewBox=\"0 0 496 496\" width=\"496pt\"><path d=\"m440 328h-28.207031c5.078125-6.703125 8.207031-14.960938 8.207031-24 0-8.824219-7.175781-16-16-16h-12v-19.960938c59.574219-14.445312 104-68.085937 104-132.039062 0-74.992188-61.007812-136-136-136s-136 61.007812-136 136c0 63.953125 44.425781 117.59375 104 132.039062v19.960938h-8.449219c-6.167969 0-12.359375 1.464844-17.886719 4.214844l-50.480468 25.25c-3.320313 1.664062-7.03125 2.535156-10.734375 2.535156h-40.449219v-16h-104v16h56v56h16v-56h16v128h-16v-56h-16v56h-56v16h104v-16h40.449219c3.703125 0 7.414062.871094 10.734375 2.527344l34.488281 17.25c5.519531 2.757812 11.710937 4.222656 17.878906 4.222656h24.449219v24h64v-24h48c13.230469 0 24-10.769531 24-24 0-6.167969-2.40625-11.742188-6.238281-16 3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16 0-13.230469-10.769531-24-24-24zm8 24c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm-208-280c0-66.167969 53.832031-120 120-120s120 53.832031 120 120-53.832031 120-120 120-120-53.832031-120-120zm104 134.976562c5.257812.617188 10.574219 1.023438 16 1.023438s10.742188-.40625 16-1.023438v17.023438h-32zm-40.449219 185.023438c-3.703125 0-7.414062-.871094-10.734375-2.527344l-34.488281-17.25c-5.519531-2.757812-11.710937-4.222656-17.878906-4.222656h-40.449219v-96h40.449219c6.167969 0 12.359375-1.464844 17.886719-4.214844l50.480468-25.25c3.320313-1.664062 7.03125-2.535156 10.734375-2.535156h84.449219c0 13.230469-10.769531 24-24 24h-48.28125l-23.863281 35.808594c-6.101563 9.160156-14.527344 16.589844-24.367188 21.503906-8.753906 4.375-18.542969 6.6875-28.320312 6.6875h-15.167969v16h15.167969c12.246093 0 24.519531-2.894531 35.472656-8.375 12.328125-6.160156 22.878906-15.480469 30.527344-26.945312l6.832031-10.253907v93.574219zm40.449219 24v-136h17.472656c-.898437 2.511719-1.472656 5.183594-1.472656 8 0 6.167969 2.40625 11.742188 6.238281 16-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16 0 10.414062 6.710938 19.214844 16 22.527344v9.472656zm96-24h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8s-3.59375 8-8 8zm0 0\"></path><path d=\"m394.878906 73.007812-7.757812 13.984376c17.816406 9.878906 28.878906 28.664062 28.878906 49.007812h16c0-26.160156-14.222656-50.296875-37.121094-62.992188zm0 0\"></path><path d=\"m360 80c4.734375 0 9.449219.59375 14.007812 1.769531l3.976563-15.503906c-5.855469-1.496094-11.90625-2.265625-17.984375-2.265625zm0 0\"></path><path d=\"m360 48c48.519531 0 88 39.480469 88 88 0 20.753906-7.398438 40.910156-20.832031 56.785156l12.207031 10.34375c15.882812-18.761718 24.625-42.601562 24.625-67.128906 0-57.34375-46.65625-104-104-104-24.527344 0-48.367188 8.753906-67.128906 24.632812l10.335937 12.199219c15.871094-13.433593 36.039063-20.832031 56.792969-20.832031zm0 0\"></path><path d=\"m427.128906 215.367188-10.335937-12.199219c-15.871094 13.433593-36.039063 20.832031-56.792969 20.832031-48.519531 0-88-39.480469-88-88 0-20.753906 7.398438-40.910156 20.832031-56.785156l-12.207031-10.34375c-15.882812 18.761718-24.625 42.601562-24.625 67.128906 0 57.34375 46.65625 104 104 104 24.527344 0 48.367188-8.753906 67.128906-24.632812zm0 0\"></path><path d=\"m121.214844 165.640625c4.953125-1.375 9.695312-3.34375 14.183594-5.878906l9.769531 4.886719 19.472656-19.480469-4.886719-9.769531c2.535156-4.496094 4.503906-9.230469 5.886719-14.183594l10.359375-3.445313v-27.53125l-10.351562-3.453125c-1.375-4.953125-3.34375-9.707031-5.886719-14.183594l4.886719-9.777343-19.472657-19.472657-9.769531 4.886719c-4.484375-2.535156-9.230469-4.503906-14.183594-5.878906l-3.453125-10.359375h-27.539062l-3.445313 10.359375c-4.953125 1.375-9.695312 3.34375-14.183594 5.878906l-9.777343-4.886719-19.472657 19.472657 4.886719 9.777343c-2.535156 4.488282-4.503906 9.230469-5.886719 14.183594l-10.351562 3.445313v27.53125l10.351562 3.453125c1.375 4.953125 3.34375 9.695312 5.886719 14.183594l-4.886719 9.769531 19.472657 19.480469 9.769531-4.886719c4.484375 2.535156 9.230469 4.503906 14.183594 5.878906l3.453125 10.359375h27.539062zm-12.304688-13.679687-2.679687 8.039062h-4.460938l-2.679687-8.039062-4.554688-.90625c-6.128906-1.222657-11.878906-3.605469-17.109375-7.09375l-3.867187-2.578126-7.574219 3.800782-3.160156-3.167969 3.792969-7.582031-2.578126-3.859375c-3.488281-5.222657-5.871093-10.980469-7.09375-17.109375l-.914062-4.554688-8.03125-2.679687v-4.46875l8.03125-2.671875.914062-4.554688c1.222657-6.136718 3.613282-11.886718 7.09375-17.109375l2.578126-3.859375-3.792969-7.589844 3.160156-3.160156 7.574219 3.800782 3.867187-2.578126c5.222657-3.488281 10.980469-5.863281 17.109375-7.09375l4.554688-.90625 2.679687-8.039062h4.460938l2.679687 8.039062 4.554688.90625c6.128906 1.222657 11.878906 3.605469 17.109375 7.09375l3.867187 2.578126 7.574219-3.800782 3.160156 3.160156-3.792969 7.589844 2.578126 3.859375c3.488281 5.214844 5.871093 10.972657 7.09375 17.109375l.914062 4.554688 8.03125 2.679687v4.46875l-8.03125 2.671875-.914062 4.554688c-1.222657 6.128906-3.613282 11.878906-7.09375 17.109375l-2.578126 3.859375 3.792969 7.582031-3.160156 3.167969-7.574219-3.800782-3.867187 2.578126c-5.222657 3.488281-10.980469 5.863281-17.109375 7.09375zm0 0\"></path><path d=\"m104 72c-17.648438 0-32 14.351562-32 32s14.351562 32 32 32 32-14.351562 32-32-14.351562-32-32-32zm0 48c-8.824219 0-16-7.175781-16-16s7.175781-16 16-16 16 7.175781 16 16-7.175781 16-16 16zm0 0\"></path><path d=\"m160 248v-40h48v-208h-208v208h106.664062zm-144-232h176v176h-48v24l-32-24h-96zm0 0\"></path><path d=\"m0 272h16v16h-16zm0 0\"></path><path d=\"m32 272h16v16h-16zm0 0\"></path><path d=\"m64 272h16v16h-16zm0 0\"></path><path d=\"m32 304h16v16h-16zm0 0\"></path><path d=\"m64 304h16v16h-16zm0 0\"></path><path d=\"m0 480h16v16h-16zm0 0\"></path><path d=\"m32 480h16v16h-16zm0 0\"></path><path d=\"m64 480h16v16h-16zm0 0\"></path><path d=\"m32 448h16v16h-16zm0 0\"></path><path d=\"m64 448h16v16h-16zm0 0\"></path></svg>				\n									<h5>\n							fokus på kvalitet og detaljer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m469.12 408.93-67.26-33.63v-22.13c10.71-7.69 18.6-19.07 21.78-32.27h5.28c8.81 0 15.98-7.17 15.98-15.98v-5.29c0-6.35-3.74-11.84-9.12-14.41 5.19-18.64-1.65-39.76-19.44-59.78-12.58-14.16-30.67-22.27-49.62-22.27-18.93 0-37.01 8.12-49.59 22.27-13.38 15.05-20.95 41.01-14.03 59.62-5.56 2.5-9.45 8.09-9.45 14.57v5.29c0 8.81 7.17 15.98 15.98 15.98h5.55c3.16 13.09 10.94 24.39 21.51 32.08v22.32l-67.26 33.63c-16.7 5.87-27.89 21.6-27.89 39.28v41.63c0 3.31 2.69 6 6 6h243.46c3.31 0 6-2.69 6-6v-41.63c0-17.68-11.19-33.41-27.88-39.28zm-62.24-17.7-15.83 27.66-13.29-13.29 19.29-19.29zm-37.61 5.88-20.59-20.58v-16.91c6.41 2.57 13.4 4.01 20.72 4.01 7.22 0 14.11-1.39 20.45-3.9v16.8zm63.63-97.48v5.29c0 2.16-1.82 3.98-3.98 3.98h-3.74c.01-.36.03-.71.03-1.07v-12.18h3.71c2.15-.01 3.98 1.82 3.98 3.98zm-119.29 8.2v1.07h-3.98c-2.16 0-3.98-1.82-3.98-3.98v-5.29c0-2.16 1.82-3.98 3.98-3.98l3.98.22zm1.95-24.19c-7.33-13.69-.89-37.39 10.53-50.24 10.31-11.6 25.12-18.25 40.63-18.25 15.52 0 30.34 6.65 40.65 18.25 8.43 9.48 21.3 27.59 17.4 46.39-5.66-.35-10.67-2.55-14.4-6.36-5.37-5.49-7.72-14-6.63-23.94.29-2.62-1.17-5.13-3.6-6.17s-5.25-.37-6.95 1.65c-19.33 22.92-45.95 36.76-73.9 38.68h-3.73zm10.05 24.19v-12.73c24.57-2.92 47.92-14.05 66.73-31.8 1.43 7.26 4.63 13.6 9.45 18.52 3.27 3.35 7.14 5.89 11.41 7.58v18.42c0 24.15-19.65 43.8-43.8 43.8s-43.79-19.64-43.79-43.79zm15.89 78.48 19.29 19.29-13.29 13.29-15.84-27.66zm3.22 97.53h-39.42v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.76v-35.63c0-12.68 8.1-23.95 20.15-28.05.26-.09.51-.19.75-.31l46.47-23.23 20.07 35.06c.93 1.62 2.56 2.72 4.41 2.97.27.04.53.05.79.05 1.58 0 3.11-.62 4.24-1.76l.14-.14zm12.08 0 7.41-64.69 5.06-5.06 4.84 4.84 7.86 64.92h-25.17zm128.2 0h-39.76v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.18l-6.2-51.17.25.25c1.13 1.13 2.66 1.76 4.24 1.76.26 0 .53-.02.79-.05 1.85-.25 3.48-1.34 4.41-2.97l20.07-35.06 46.47 23.23c.24.12.49.23.75.31 12.05 4.1 20.15 15.38 20.15 28.05v35.65zm-67.04-346.65h-10.84l28.38 39.84 28.38-39.84h-10.84c-3.31 0-6-2.69-6-6v-64.58h-98.7c-3.31 0-6-2.69-6-6s2.69-6 6-6h104.7c3.31 0 6 2.69 6 6v64.58h16.48c2.25 0 4.3 1.25 5.33 3.25s.86 4.4-.45 6.23l-40.02 56.18c-1.13 1.58-2.95 2.52-4.89 2.52s-3.76-.94-4.89-2.52l-40.02-56.18c-1.3-1.83-1.48-4.23-.45-6.23s3.09-3.25 5.33-3.25h16.48v-23.5h-65.38c-3.31 0-6-2.69-6-6s2.69-6 6-6h71.38c3.31 0 6 2.69 6 6v35.5c.02 3.31-2.67 6-5.98 6zm-118.44 50.65v-133.26c0-21.18-17.23-38.41-38.41-38.41h-207.7c-21.18-.01-38.41 17.23-38.41 38.41v133.26c0 21.18 17.23 38.41 38.41 38.41h105.8l64.8 55.11c1.11.94 2.49 1.43 3.89 1.43.85 0 1.71-.18 2.52-.55 2.12-.98 3.48-3.11 3.48-5.45v-50.54h27.21c21.18 0 38.41-17.23 38.41-38.41zm-71.62 26.41c-3.31 0-6 2.69-6 6v43.56l-56.59-48.13c-1.08-.92-2.46-1.43-3.89-1.43h-108.01c-14.56 0-26.41-11.85-26.41-26.41v-133.26c0-14.56 11.85-26.41 26.41-26.41h207.69c14.56 0 26.41 11.85 26.41 26.41v133.26c0 14.56-11.85 26.41-26.41 26.41zm-156.34-87.87h56.97c3.31 0 6-2.69 6-6v-39.2l8.55-8.55c2.34-2.34 2.34-6.14 0-8.49-2.34-2.34-6.14-2.34-8.48 0l-.7.7c-.98-1.97-3.01-3.32-5.36-3.32h-56.98c-3.31 0-6 2.69-6 6v52.85c0 3.32 2.69 6.01 6 6.01zm6-52.86h44.97v2.69l-18.16 18.16-8.84-8.84c-2.34-2.34-6.14-2.34-8.49 0-2.34 2.34-2.34 6.14 0 8.49l13.08 13.08c1.17 1.17 2.71 1.76 4.24 1.76s3.07-.59 4.24-1.76l13.92-13.92v21.2h-44.96zm173.62 3.08c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 31.92c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 36.52c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.68 5.99 6zm0 31.92c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.69 5.99 6zm-119.36 165.01h10.84l-28.38-39.84-28.38 39.84h10.84c3.31 0 6 2.69 6 6v64.58h98.7c3.31 0 6 2.69 6 6s-2.69 6-6 6h-104.69c-3.31 0-6-2.69-6-6v-64.58h-16.48c-2.25 0-4.3-1.25-5.33-3.25s-.86-4.4.45-6.23l40.02-56.18c1.13-1.58 2.95-2.52 4.89-2.52s3.76.94 4.89 2.52l40.02 56.18c1.3 1.83 1.48 4.23.45 6.23s-3.09 3.25-5.33 3.25h-16.48v23.5h65.38c3.31 0 6 2.69 6 6s-2.69 6-6 6h-71.38c-3.31 0-6-2.69-6-6v-35.5c-.03-3.31 2.66-6 5.97-6z\"></path></svg>				\n									<h5>\n							ærlig<br> rådgivning						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 510 510\"><path d=\"m192.036 385.845c-4.787-46.972-19.459-64.336-30.658-82.352-8.672-13.951-15.5-28.245-15.5-54.252 0-60.242 48.865-109.109 109.135-109.109 60.242 0 109.109 48.866 109.109 109.109 0 26.007-6.828 40.301-15.5 54.252-11.199 18.016-25.871 35.38-30.658 82.352 9.985 2.864 17.345 12.101 17.345 22.975v36.44c0 13.109-10.747 23.866-23.893 23.866h-10.334v9.945c0 12.588-10.341 22.929-22.93 22.929h-46.304c-12.589 0-22.93-10.341-22.93-22.929v-9.945h-10.334c-13.146 0-23.893-10.757-23.893-23.866v-36.44c0-10.874 7.36-20.111 17.345-22.975zm111.948-.917c4.199-42.194 15.78-62.332 26.488-79.049 10.147-15.842 19.65-28.207 19.65-56.638 0-52.513-42.597-95.109-95.109-95.109-52.537 0-95.135 42.596-95.135 95.109 0 28.431 9.503 40.796 19.65 56.638 10.708 16.717 22.289 36.855 26.488 79.049zm2.554-78.61c-1.175 13.701-11.985 24.191-24.783 24.191-13.527 0-24.862-12.086-24.862-26.673v-99.328c0-14.12 11.335-26.673 24.862-26.673 11.309 0 21.031 8.139 23.975 19.497 9.12 3.904 15.688 13.438 15.688 24.78 0 1.153-.068 2.289-.201 3.403 5.078 5.326 8.283 12.802 8.283 21.117 0 6.39-1.889 12.262-5.06 17.053 1.996 4.099 3.13 8.773 3.13 13.76 0 14.1-9.065 25.697-21.032 28.873zm-16.452-109.977c-1.964-2.729-4.916-4.506-8.331-4.506-6.192 0-10.862 6.21-10.862 12.673v99.328c0 6.677 4.67 12.673 10.862 12.673 5.516 0 9.822-4.614 10.717-10.425-4.709-1.416-8.923-4.144-12.279-7.814-2.607-2.852-2.409-7.283.443-9.89 2.851-2.607 7.282-2.408 9.889.443 2.416 2.642 5.72 4.356 9.402 4.356 7.733 0 13.643-7.218 13.643-15.734s-5.91-15.734-13.643-15.734c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7 5.352 0 10.388 1.655 14.658 4.533.593-1.743.915-3.634.915-5.612 0-2.11-.366-4.128-1.036-5.972-.769.858-1.588 1.66-2.453 2.397-2.94 2.507-7.361 2.156-9.869-.784-2.507-2.939-2.155-7.361.784-9.868 2.773-2.365 4.492-6.122 4.492-10.293 0-6.072-3.705-11.374-8.898-12.467-.154-.023-.307-.052-.458-.085-.499-.08-1.01-.121-1.532-.121-2.947 0-5.591 1.389-7.515 3.525-2.585 2.87-7.015 3.101-9.886.515-2.87-2.586-3.101-7.015-.515-9.886 3.111-3.453 7.059-5.988 11.472-7.252zm-104.526 67.344c-3.171-4.791-5.06-10.663-5.06-17.053 0-8.307 3.198-15.777 8.284-21.104-.133-1.118-.202-2.258-.202-3.416 0-11.354 6.582-20.897 15.717-24.792 2.948-11.354 12.67-19.485 23.946-19.485 13.56 0 24.888 12.555 24.888 26.673v99.328c0 14.585-11.328 26.673-24.888 26.673-12.765 0-23.578-10.484-24.757-24.184-11.98-3.166-21.058-14.769-21.058-28.88 0-4.987 1.134-9.661 3.13-13.76zm9.982-23.036c-.675 1.847-1.042 3.869-1.042 5.983 0 1.978.322 3.869.915 5.612 4.27-2.878 9.306-4.533 14.658-4.533 3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7-7.733 0-13.643 7.218-13.643 15.734s5.91 15.734 13.643 15.734c3.682 0 6.986-1.714 9.402-4.356 2.607-2.851 7.038-3.05 9.889-.443 2.852 2.607 3.05 7.038.443 9.89-3.35 3.664-7.556 6.389-12.255 7.807.891 5.813 5.192 10.432 10.693 10.432 6.21 0 10.888-5.993 10.888-12.673v-99.328c0-6.466-4.678-12.673-10.888-12.673-3.404 0-6.349 1.777-8.309 4.507 4.421 1.264 8.367 3.8 11.476 7.251 2.586 2.871 2.355 7.3-.516 9.886-2.87 2.586-7.3 2.355-9.886-.515-1.926-2.138-4.574-3.525-7.54-3.525-.493 0-.976.037-1.448.108-.196.045-.395.082-.596.11-5.165 1.118-8.844 6.404-8.844 12.455 0 1.243.153 2.45.442 3.594.101.284.183.572.246.862.748 2.326 2.071 4.346 3.814 5.823 2.947 2.498 3.311 6.919.813 9.866s-6.919 3.312-9.866.814c-.878-.745-1.71-1.554-2.489-2.422zm3.042 158.279c-5.442 0-9.893 4.451-9.893 9.892v36.44c0 5.423 4.454 9.866 9.893 9.866h17.334c3.866 0 7 3.134 7 7v16.945c0 4.902 4.027 8.929 8.93 8.929h46.304c4.903 0 8.93-4.027 8.93-8.929v-16.945c0-3.866 3.134-7 7-7h17.334c5.439 0 9.893-4.443 9.893-9.866v-36.44c0-5.441-4.451-9.892-9.893-9.892zm63.416-314.093 2.907-5.412c1.828-3.403 6.075-4.683 9.479-2.854 3.403 1.828 4.682 6.075 2.854 9.479l-16.073 29.925c-1.22 2.271-3.589 3.688-6.167 3.688s-4.947-1.417-6.167-3.688l-16.073-29.925c-1.828-3.404-.549-7.651 2.854-9.479 3.404-1.829 7.651-.549 9.479 2.854l2.907 5.412v-69.835c0-3.863 3.137-7 7-7s7 3.137 7 7zm-132.198 54.758-49.381-49.381c-2.732-2.731-2.732-7.167 0-9.899s7.168-2.732 9.9 0l49.38 49.38-1.771-5.881c-1.114-3.7.985-7.608 4.684-8.722 3.7-1.114 7.607.985 8.721 4.685l9.796 32.526c.743 2.468.069 5.145-1.753 6.968-1.823 1.823-4.5 2.496-6.969 1.753l-32.526-9.795c-3.699-1.114-5.798-5.022-4.684-8.721s5.022-5.798 8.721-4.684zm-44.859 122.299h-69.835c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7h69.835l-5.412-2.907c-3.403-1.828-4.682-6.076-2.854-9.479 1.828-3.404 6.075-4.683 9.479-2.855l29.926 16.074c2.271 1.22 3.688 3.589 3.688 6.167 0 2.577-1.417 4.947-3.688 6.166l-29.926 16.074c-3.404 1.828-7.651.549-9.479-2.855-1.828-3.403-.549-7.651 2.854-9.479zm54.758 118.198-49.38 49.38c-2.732 2.732-7.168 2.732-9.9 0s-2.732-7.167 0-9.899l49.381-49.381-5.882 1.772c-3.699 1.114-7.607-.985-8.721-4.685-1.114-3.699.985-7.607 4.684-8.721l32.526-9.795c2.469-.743 5.146-.07 6.969 1.753 1.822 1.823 2.496 4.5 1.753 6.968l-9.796 32.527c-1.114 3.699-5.021 5.798-8.721 4.684-3.699-1.114-5.798-5.022-4.684-8.721zm240.497-240.497 5.882-1.771c3.699-1.114 7.607.985 8.721 4.684s-.985 7.607-4.684 8.721l-32.526 9.795c-2.469.743-5.146.07-6.969-1.753-1.822-1.823-2.496-4.5-1.753-6.968l9.796-32.526c1.114-3.7 5.021-5.799 8.721-4.685 3.699 1.114 5.798 5.022 4.684 8.722l-1.771 5.881 49.38-49.38c2.732-2.732 7.168-2.732 9.9 0s2.732 7.168 0 9.899zm44.859 122.299 5.412 2.906c3.403 1.828 4.682 6.076 2.854 9.479-1.828 3.404-6.075 4.683-9.479 2.855l-29.926-16.074c-2.271-1.219-3.688-3.589-3.688-6.166 0-2.578 1.417-4.947 3.688-6.167l29.926-16.074c3.404-1.828 7.651-.549 9.479 2.855 1.828 3.403.549 7.651-2.854 9.479l-5.412 2.907h69.835c3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7zm-54.758 118.198 1.771 5.882c1.114 3.699-.985 7.607-4.684 8.721-3.7 1.114-7.607-.985-8.721-4.684l-9.796-32.527c-.743-2.468-.069-5.145 1.753-6.968 1.823-1.823 4.5-2.496 6.969-1.753l32.526 9.795c3.699 1.114 5.798 5.022 4.684 8.721-1.114 3.7-5.022 5.799-8.721 4.685l-5.882-1.772 49.381 49.381c2.732 2.732 2.732 7.167 0 9.899s-7.168 2.732-9.9 0z\"></path></svg>				\n									<h5>\n							gennemtænkte løsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"outline\"><path d=\"M486.41,144A28,28,0,0,0,472,92H349.123l5.457-21.828a48.513,48.513,0,0,0-12.848-46.153A41.035,41.035,0,0,0,312.609,12H308a8.009,8.009,0,0,0-8,8V47.413l-19.233,64.112A17.376,17.376,0,0,1,268,123.539V112a4,4,0,0,0-4-4H152a4,4,0,0,0-4,4v72a4,4,0,0,0,8,0V116h72V276H156V248a4,4,0,0,0-8,0v32a4,4,0,0,0,4,4H264a4,4,0,0,0,4-4V268.5h11.168A37.07,37.07,0,0,1,305.092,279a45.025,45.025,0,0,0,31.48,12.752L440,292a27.987,27.987,0,0,0,19.369-48.2,27.987,27.987,0,0,0,16-48A28,28,0,0,0,486.41,144ZM260,276H236V116h24Zm212-88H396a4,4,0,0,0,0,8h60a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h40a20,20,0,0,1,.01,40l-103.428-.25a37.07,37.07,0,0,1-25.924-10.5,45.031,45.031,0,0,0-31.49-12.752H268V131.686a25.317,25.317,0,0,0,20.429-17.862l19.4-64.675A4,4,0,0,0,308,48V20h4.609a33.082,33.082,0,0,1,23.481,9.69,40.507,40.507,0,0,1,10.728,38.541l-6.7,26.8A4,4,0,0,0,344,100H472a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h72a20,20,0,0,1,0,40Z\"></path><path d=\"M194.5,183.243l-1.9-.217a4,4,0,0,0-4.169,2.491L184.29,195.9H135.278l-3.539-9.317a4,4,0,0,0-7.478,2.84l2.459,6.477h-8.474L68.452,156.872a4,4,0,1,0-4.935,6.3L77.6,174.209,56.961,194.48l-6.636-5.491a4,4,0,1,0-5.1,6.163L87.219,229.9a44.1,44.1,0,0,0,28.05,10.1H212a8.009,8.009,0,0,0,8-8V203.9a8.009,8.009,0,0,0-8-8h-8v-2.01A10.708,10.708,0,0,0,194.5,183.243ZM212,203.9V232H115.269a36.081,36.081,0,0,1-22.951-8.264l-29.16-24.128,20.8-20.422L114.4,203.045a4,4,0,0,0,2.468.852H187a4,4,0,0,0,3.715-2.517l3.929-9.843a2.712,2.712,0,0,1,1.356,2.35v6.01a4,4,0,0,0,4,4Z\"></path><path d=\"M223.084,484.672,200.87,469.863V346.36A44.1,44.1,0,0,0,195.327,325l-17.183-30.94a4,4,0,0,0-7,3.884l17.184,30.94a36.073,36.073,0,0,1,4.537,17.478V468H164.333a4,4,0,1,0,0,8h31.321l12,8H152.865V352a4,4,0,0,0-.358-1.655l-25.454-56A4,4,0,0,0,123.411,292H114.2a4,4,0,0,0-3.945,4.658l8.862,53.175a36.016,36.016,0,0,1-1.951,18.949L78.642,468H48.333a4,4,0,1,0,0,8H80.377L92,484H32.088L76.63,361.366a4.017,4.017,0,0,0,.183-2.044L61.1,268H136a4,4,0,0,0,0-8H59.233L30.555,173.966A19.723,19.723,0,0,1,49.27,148H76a12,12,0,0,0,24,0h15.2a21.975,21.975,0,0,1,8.395,1.652l10.889,4.458a4,4,0,1,0,3.032-7.4L126.63,142.25A29.938,29.938,0,0,0,115.2,140H100v-4.527A16.014,16.014,0,0,0,112,120V103.473A16.014,16.014,0,0,0,124,88V80a4,4,0,0,0-4-4H90A22.025,22.025,0,0,0,68,98v18a12.02,12.02,0,0,0,8,11.314V140H49.27a27.723,27.723,0,0,0-26.305,36.5l29.493,88.482,16.29,94.655-46.128,127A4,4,0,0,0,26.38,492h78.485a4,4,0,0,0,2.268-7.3L86.3,470.368l38.318-98.69a44.018,44.018,0,0,0,2.385-23.16L118.921,300h1.914l24.03,52.867V488a4,4,0,0,0,4,4h72a4,4,0,0,0,2.219-7.328ZM76,98A14.015,14.015,0,0,1,90,84h26v4a8.009,8.009,0,0,1-8,8H92a4,4,0,0,0-4,4,11.962,11.962,0,0,1-1.53,5.881A12.044,12.044,0,0,0,76,104.686Zm4,14a3.981,3.981,0,0,1,3.407,1.9,4,4,0,0,0,5.956.975c.207-.171.7-.648.7-.648.032-.028.061-.057.09-.087A19.907,19.907,0,0,0,95.6,104H104v16a8.009,8.009,0,0,1-8,8,12.133,12.133,0,0,1-2.681-.3,4,4,0,1,0-1.775,7.8c.151.035.3.06.456.091V148a4,4,0,1,1-8,0V124a4,4,0,0,0-4-4,4,4,0,0,1,0-8Z\"></path></g></svg>				\n									<h5>\n							arbejde udført med ansvar						\n					</h5>\n				<p>Vi lover ikke mere, end vi kan holde – men vi holder det, vi lover.</p>			<h2>KONTAKT OS</h2>		<p>Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.</p>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 13:50:24', '2026-01-26 13:50:24', '', 10, 'https://mrarif.me/cpnordic/?p=553', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(554, 1, '2026-01-26 13:55:36', '2026-01-26 13:55:36', '<h1>CP NORDIC ApS</h1>					<h4>Byggeri – Tømrerarbejde og tagdækning</h4>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>					\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle ANMELDELSER\n					</a>\n					<h2>HVORFOR VÆLGE CP NORDIC ApS?</h2>		<p>Når du vælger CP NORDIC ApS, får du:</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 450 450\" width=\"512\"><g><g><path d=\"m225 165.2c-25.9 0-48.9-18.8-53.3-45.2-2.4-14.2.9-28.6 9.3-40.3 8.4-11.8 20.9-19.5 35.1-21.9 29.4-4.9 57.3 15 62.2 44.5 4.9 29.4-15 57.3-44.4 62.2-3 .5-6 .7-8.9.7zm-7.6-99.8c-12.2 2-22.9 8.7-30.1 18.8s-10.1 22.4-8 34.6c3.8 22.7 23.5 38.8 45.7 38.8 2.5 0 5.1-.2 7.6-.6 25.2-4.2 42.3-28.1 38.1-53.4s-28.1-42.4-53.3-38.2z\"></path><path d=\"m255.2 115c-2.1 0-3.8-1.7-3.8-3.8 0-14.6-11.8-26.4-26.4-26.4-2.1 0-3.8-1.7-3.8-3.8s1.7-3.8 3.8-3.8c18.8 0 34.1 15.3 34.1 34.1 0 2-1.8 3.7-3.9 3.7z\"></path><path d=\"m236.1 203h-22.2c-2.1 0-3.8-1.7-3.8-3.8v-14.1c-3.1-.6-6.1-1.4-9.1-2.4l-7 12.2c-1.1 1.8-3.4 2.5-5.3 1.4l-19.2-11.1c-.9-.5-1.5-1.4-1.8-2.3-.3-1-.1-2 .4-2.9l7-12.1c-2.4-2.1-4.6-4.3-6.7-6.6l-12.1 7c-1.8 1.1-4.2.4-5.2-1.4l-11.1-19.2c-1.1-1.8-.4-4.2 1.4-5.2l11.9-6.8c-1-3-1.9-6.1-2.6-9.3h-13.7c-2.1 0-3.8-1.7-3.8-3.8v-22.2c0-2.1 1.7-3.8 3.8-3.8h13.4c.6-3.2 1.4-6.4 2.4-9.5l-11.5-6.6c-1.8-1.1-2.5-3.4-1.4-5.3l11.1-19.6c.5-.9 1.4-1.5 2.3-1.8s2-.1 2.9.4l11.3 6.6c2.2-2.5 4.5-4.8 7-7l-6.5-11.3c-.5-.9-.6-1.9-.4-2.9.3-1 .9-1.8 1.8-2.3l19.2-11.1c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l6.4 11.2c3.1-1.1 6.4-1.9 9.7-2.6v-13c0-2.1 1.7-3.8 3.8-3.8h22.2c2.1 0 3.8 1.7 3.8 3.8v12.8c3.3.7 6.5 1.5 9.7 2.6l6.5-11.2c.5-.9 1.4-1.5 2.3-1.8 1-.3 2-.1 2.9.4l19.2 11.1c.9.5 1.5 1.3 1.8 2.3s.1 2-.4 2.9l-6.5 11.3c2.5 2.2 4.8 4.5 7 7.1l11.3-6.6c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l11.1 19.2c1.1 1.8.4 4.2-1.4 5.3l-11.5 6.6c1 3.1 1.8 6.3 2.5 9.5h13.6c2.1 0 3.8 1.7 3.8 3.8v22.2c0 2.1-1.7 3.8-3.8 3.8h-13.6c-.6 3.1-1.5 6.2-2.5 9.3l11.9 6.8c1.8 1.1 2.5 3.4 1.4 5.2l-11.2 19.5c-1.1 1.8-3.4 2.5-5.2 1.4l-12-7c-2.1 2.4-4.4 4.6-6.7 6.6l7 12.1c.5.9.6 1.9.4 2.9s-.9 1.8-1.8 2.3l-19.2 11.1c-1.8 1.1-4.2.4-5.2-1.4l-7-12.2c-3 1-6 1.8-9.1 2.4v14.1c-.2 2.3-2 4-4.1 4zm-18.4-7.7h14.5v-13.5c0-1.9 1.4-3.5 3.3-3.8 4.7-.7 9.4-2 13.8-3.7 1.8-.7 3.8 0 4.7 1.7l6.7 11.6 12.6-7.3-6.7-11.6c-1-1.6-.5-3.7.9-4.9 3.7-3 7.2-6.4 10.2-10.1 1.2-1.5 3.3-1.8 4.9-.9l11.5 6.6 7.3-12.6-11.3-6.5c-1.6-.9-2.4-3-1.6-4.7 1.8-4.5 3.1-9.2 3.9-14 .3-1.9 1.9-3.2 3.8-3.2h13v-14.6h-12.8c-1.9 0-3.5-1.4-3.8-3.3-.7-4.8-2-9.6-3.7-14.2-.7-1.8 0-3.7 1.7-4.7l10.9-6.3-7.3-12.6-10.8 6.3c-1.6.9-3.7.6-4.9-.9-3.1-3.9-6.6-7.4-10.4-10.6-1.5-1.2-1.9-3.3-.9-4.9l6.2-10.7-12.6-7.3-6.1 10.6c-1 1.6-3 2.3-4.7 1.7-4.6-1.8-9.5-3.1-14.4-3.9-1.9-.3-3.3-1.9-3.3-3.8v-12.2h-14.5v12.3c0 1.9-1.4 3.5-3.3 3.8-5 .8-9.8 2.1-14.4 3.9-1.8.7-3.8 0-4.7-1.7l-6.1-10.6-12.6 7.3 6.2 10.7c.9 1.6.6 3.7-.9 4.9-3.9 3.1-7.4 6.7-10.4 10.6-1.2 1.5-3.3 1.9-4.9.9l-10.8-6.3-7.3 12.6 10.9 6.3c1.6.9 2.3 2.9 1.7 4.7-1.7 4.6-3 9.4-3.7 14.2-.3 1.9-1.9 3.3-3.8 3.3h-12.8v14.5h13c1.9 0 3.5 1.4 3.8 3.2.8 4.8 2.1 9.5 3.9 14 .7 1.8 0 3.8-1.6 4.7l-11.3 6.5 7.3 12.6 11.5-6.6c1.6-.9 3.7-.6 4.9.9 3 3.7 6.5 7.1 10.3 10.1 1.5 1.2 1.9 3.3.9 4.9l-6.7 11.6 12.6 7.3 6.7-11.6c.9-1.6 2.9-2.3 4.7-1.7 4.5 1.7 9.1 2.9 13.8 3.7 1.9.3 3.3 1.9 3.3 3.8z\"></path></g><g><g><g><path d=\"m45.3 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m153.9 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path></g><g><path d=\"m189.3 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.2c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c0 2.1-1.7 3.8-3.8 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m73.3 326.4c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m126 326.4c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m99.7 325.6c-.6 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4s4.1 1.1 4.4 3.2c2.4 16.5 12.3 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m50.2 266.6c-.1 0-.2 0-.3 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.7 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-8.9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.5 2.2zm81.8-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13.1-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.4-.7 2.3-.7z\"></path></g></g></g><g><g><path d=\"m296.1 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m404.7 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path></g><g><path d=\"m440 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.1c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c.2 2.1-1.6 3.8-3.7 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m324 326.3c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m376.7 326.3c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m350.4 325.6c-.5 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4 2.1-.3 4 1.1 4.4 3.2 2.4 16.5 12.4 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m301 266.6c-.1 0-.2 0-.4 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.6 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.4 2.2zm81.7-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.5-.7 2.3-.7z\"></path></g></g></g></g></g></svg>				\n									<h5>\n							et ungt og engageret team						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"496pt\" viewBox=\"0 0 496 496\" width=\"496pt\"><path d=\"m440 328h-28.207031c5.078125-6.703125 8.207031-14.960938 8.207031-24 0-8.824219-7.175781-16-16-16h-12v-19.960938c59.574219-14.445312 104-68.085937 104-132.039062 0-74.992188-61.007812-136-136-136s-136 61.007812-136 136c0 63.953125 44.425781 117.59375 104 132.039062v19.960938h-8.449219c-6.167969 0-12.359375 1.464844-17.886719 4.214844l-50.480468 25.25c-3.320313 1.664062-7.03125 2.535156-10.734375 2.535156h-40.449219v-16h-104v16h56v56h16v-56h16v128h-16v-56h-16v56h-56v16h104v-16h40.449219c3.703125 0 7.414062.871094 10.734375 2.527344l34.488281 17.25c5.519531 2.757812 11.710937 4.222656 17.878906 4.222656h24.449219v24h64v-24h48c13.230469 0 24-10.769531 24-24 0-6.167969-2.40625-11.742188-6.238281-16 3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16 0-13.230469-10.769531-24-24-24zm8 24c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm-208-280c0-66.167969 53.832031-120 120-120s120 53.832031 120 120-53.832031 120-120 120-120-53.832031-120-120zm104 134.976562c5.257812.617188 10.574219 1.023438 16 1.023438s10.742188-.40625 16-1.023438v17.023438h-32zm-40.449219 185.023438c-3.703125 0-7.414062-.871094-10.734375-2.527344l-34.488281-17.25c-5.519531-2.757812-11.710937-4.222656-17.878906-4.222656h-40.449219v-96h40.449219c6.167969 0 12.359375-1.464844 17.886719-4.214844l50.480468-25.25c3.320313-1.664062 7.03125-2.535156 10.734375-2.535156h84.449219c0 13.230469-10.769531 24-24 24h-48.28125l-23.863281 35.808594c-6.101563 9.160156-14.527344 16.589844-24.367188 21.503906-8.753906 4.375-18.542969 6.6875-28.320312 6.6875h-15.167969v16h15.167969c12.246093 0 24.519531-2.894531 35.472656-8.375 12.328125-6.160156 22.878906-15.480469 30.527344-26.945312l6.832031-10.253907v93.574219zm40.449219 24v-136h17.472656c-.898437 2.511719-1.472656 5.183594-1.472656 8 0 6.167969 2.40625 11.742188 6.238281 16-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16 0 10.414062 6.710938 19.214844 16 22.527344v9.472656zm96-24h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8s-3.59375 8-8 8zm0 0\"></path><path d=\"m394.878906 73.007812-7.757812 13.984376c17.816406 9.878906 28.878906 28.664062 28.878906 49.007812h16c0-26.160156-14.222656-50.296875-37.121094-62.992188zm0 0\"></path><path d=\"m360 80c4.734375 0 9.449219.59375 14.007812 1.769531l3.976563-15.503906c-5.855469-1.496094-11.90625-2.265625-17.984375-2.265625zm0 0\"></path><path d=\"m360 48c48.519531 0 88 39.480469 88 88 0 20.753906-7.398438 40.910156-20.832031 56.785156l12.207031 10.34375c15.882812-18.761718 24.625-42.601562 24.625-67.128906 0-57.34375-46.65625-104-104-104-24.527344 0-48.367188 8.753906-67.128906 24.632812l10.335937 12.199219c15.871094-13.433593 36.039063-20.832031 56.792969-20.832031zm0 0\"></path><path d=\"m427.128906 215.367188-10.335937-12.199219c-15.871094 13.433593-36.039063 20.832031-56.792969 20.832031-48.519531 0-88-39.480469-88-88 0-20.753906 7.398438-40.910156 20.832031-56.785156l-12.207031-10.34375c-15.882812 18.761718-24.625 42.601562-24.625 67.128906 0 57.34375 46.65625 104 104 104 24.527344 0 48.367188-8.753906 67.128906-24.632812zm0 0\"></path><path d=\"m121.214844 165.640625c4.953125-1.375 9.695312-3.34375 14.183594-5.878906l9.769531 4.886719 19.472656-19.480469-4.886719-9.769531c2.535156-4.496094 4.503906-9.230469 5.886719-14.183594l10.359375-3.445313v-27.53125l-10.351562-3.453125c-1.375-4.953125-3.34375-9.707031-5.886719-14.183594l4.886719-9.777343-19.472657-19.472657-9.769531 4.886719c-4.484375-2.535156-9.230469-4.503906-14.183594-5.878906l-3.453125-10.359375h-27.539062l-3.445313 10.359375c-4.953125 1.375-9.695312 3.34375-14.183594 5.878906l-9.777343-4.886719-19.472657 19.472657 4.886719 9.777343c-2.535156 4.488282-4.503906 9.230469-5.886719 14.183594l-10.351562 3.445313v27.53125l10.351562 3.453125c1.375 4.953125 3.34375 9.695312 5.886719 14.183594l-4.886719 9.769531 19.472657 19.480469 9.769531-4.886719c4.484375 2.535156 9.230469 4.503906 14.183594 5.878906l3.453125 10.359375h27.539062zm-12.304688-13.679687-2.679687 8.039062h-4.460938l-2.679687-8.039062-4.554688-.90625c-6.128906-1.222657-11.878906-3.605469-17.109375-7.09375l-3.867187-2.578126-7.574219 3.800782-3.160156-3.167969 3.792969-7.582031-2.578126-3.859375c-3.488281-5.222657-5.871093-10.980469-7.09375-17.109375l-.914062-4.554688-8.03125-2.679687v-4.46875l8.03125-2.671875.914062-4.554688c1.222657-6.136718 3.613282-11.886718 7.09375-17.109375l2.578126-3.859375-3.792969-7.589844 3.160156-3.160156 7.574219 3.800782 3.867187-2.578126c5.222657-3.488281 10.980469-5.863281 17.109375-7.09375l4.554688-.90625 2.679687-8.039062h4.460938l2.679687 8.039062 4.554688.90625c6.128906 1.222657 11.878906 3.605469 17.109375 7.09375l3.867187 2.578126 7.574219-3.800782 3.160156 3.160156-3.792969 7.589844 2.578126 3.859375c3.488281 5.214844 5.871093 10.972657 7.09375 17.109375l.914062 4.554688 8.03125 2.679687v4.46875l-8.03125 2.671875-.914062 4.554688c-1.222657 6.128906-3.613282 11.878906-7.09375 17.109375l-2.578126 3.859375 3.792969 7.582031-3.160156 3.167969-7.574219-3.800782-3.867187 2.578126c-5.222657 3.488281-10.980469 5.863281-17.109375 7.09375zm0 0\"></path><path d=\"m104 72c-17.648438 0-32 14.351562-32 32s14.351562 32 32 32 32-14.351562 32-32-14.351562-32-32-32zm0 48c-8.824219 0-16-7.175781-16-16s7.175781-16 16-16 16 7.175781 16 16-7.175781 16-16 16zm0 0\"></path><path d=\"m160 248v-40h48v-208h-208v208h106.664062zm-144-232h176v176h-48v24l-32-24h-96zm0 0\"></path><path d=\"m0 272h16v16h-16zm0 0\"></path><path d=\"m32 272h16v16h-16zm0 0\"></path><path d=\"m64 272h16v16h-16zm0 0\"></path><path d=\"m32 304h16v16h-16zm0 0\"></path><path d=\"m64 304h16v16h-16zm0 0\"></path><path d=\"m0 480h16v16h-16zm0 0\"></path><path d=\"m32 480h16v16h-16zm0 0\"></path><path d=\"m64 480h16v16h-16zm0 0\"></path><path d=\"m32 448h16v16h-16zm0 0\"></path><path d=\"m64 448h16v16h-16zm0 0\"></path></svg>				\n									<h5>\n							fokus på kvalitet og detaljer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m469.12 408.93-67.26-33.63v-22.13c10.71-7.69 18.6-19.07 21.78-32.27h5.28c8.81 0 15.98-7.17 15.98-15.98v-5.29c0-6.35-3.74-11.84-9.12-14.41 5.19-18.64-1.65-39.76-19.44-59.78-12.58-14.16-30.67-22.27-49.62-22.27-18.93 0-37.01 8.12-49.59 22.27-13.38 15.05-20.95 41.01-14.03 59.62-5.56 2.5-9.45 8.09-9.45 14.57v5.29c0 8.81 7.17 15.98 15.98 15.98h5.55c3.16 13.09 10.94 24.39 21.51 32.08v22.32l-67.26 33.63c-16.7 5.87-27.89 21.6-27.89 39.28v41.63c0 3.31 2.69 6 6 6h243.46c3.31 0 6-2.69 6-6v-41.63c0-17.68-11.19-33.41-27.88-39.28zm-62.24-17.7-15.83 27.66-13.29-13.29 19.29-19.29zm-37.61 5.88-20.59-20.58v-16.91c6.41 2.57 13.4 4.01 20.72 4.01 7.22 0 14.11-1.39 20.45-3.9v16.8zm63.63-97.48v5.29c0 2.16-1.82 3.98-3.98 3.98h-3.74c.01-.36.03-.71.03-1.07v-12.18h3.71c2.15-.01 3.98 1.82 3.98 3.98zm-119.29 8.2v1.07h-3.98c-2.16 0-3.98-1.82-3.98-3.98v-5.29c0-2.16 1.82-3.98 3.98-3.98l3.98.22zm1.95-24.19c-7.33-13.69-.89-37.39 10.53-50.24 10.31-11.6 25.12-18.25 40.63-18.25 15.52 0 30.34 6.65 40.65 18.25 8.43 9.48 21.3 27.59 17.4 46.39-5.66-.35-10.67-2.55-14.4-6.36-5.37-5.49-7.72-14-6.63-23.94.29-2.62-1.17-5.13-3.6-6.17s-5.25-.37-6.95 1.65c-19.33 22.92-45.95 36.76-73.9 38.68h-3.73zm10.05 24.19v-12.73c24.57-2.92 47.92-14.05 66.73-31.8 1.43 7.26 4.63 13.6 9.45 18.52 3.27 3.35 7.14 5.89 11.41 7.58v18.42c0 24.15-19.65 43.8-43.8 43.8s-43.79-19.64-43.79-43.79zm15.89 78.48 19.29 19.29-13.29 13.29-15.84-27.66zm3.22 97.53h-39.42v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.76v-35.63c0-12.68 8.1-23.95 20.15-28.05.26-.09.51-.19.75-.31l46.47-23.23 20.07 35.06c.93 1.62 2.56 2.72 4.41 2.97.27.04.53.05.79.05 1.58 0 3.11-.62 4.24-1.76l.14-.14zm12.08 0 7.41-64.69 5.06-5.06 4.84 4.84 7.86 64.92h-25.17zm128.2 0h-39.76v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.18l-6.2-51.17.25.25c1.13 1.13 2.66 1.76 4.24 1.76.26 0 .53-.02.79-.05 1.85-.25 3.48-1.34 4.41-2.97l20.07-35.06 46.47 23.23c.24.12.49.23.75.31 12.05 4.1 20.15 15.38 20.15 28.05v35.65zm-67.04-346.65h-10.84l28.38 39.84 28.38-39.84h-10.84c-3.31 0-6-2.69-6-6v-64.58h-98.7c-3.31 0-6-2.69-6-6s2.69-6 6-6h104.7c3.31 0 6 2.69 6 6v64.58h16.48c2.25 0 4.3 1.25 5.33 3.25s.86 4.4-.45 6.23l-40.02 56.18c-1.13 1.58-2.95 2.52-4.89 2.52s-3.76-.94-4.89-2.52l-40.02-56.18c-1.3-1.83-1.48-4.23-.45-6.23s3.09-3.25 5.33-3.25h16.48v-23.5h-65.38c-3.31 0-6-2.69-6-6s2.69-6 6-6h71.38c3.31 0 6 2.69 6 6v35.5c.02 3.31-2.67 6-5.98 6zm-118.44 50.65v-133.26c0-21.18-17.23-38.41-38.41-38.41h-207.7c-21.18-.01-38.41 17.23-38.41 38.41v133.26c0 21.18 17.23 38.41 38.41 38.41h105.8l64.8 55.11c1.11.94 2.49 1.43 3.89 1.43.85 0 1.71-.18 2.52-.55 2.12-.98 3.48-3.11 3.48-5.45v-50.54h27.21c21.18 0 38.41-17.23 38.41-38.41zm-71.62 26.41c-3.31 0-6 2.69-6 6v43.56l-56.59-48.13c-1.08-.92-2.46-1.43-3.89-1.43h-108.01c-14.56 0-26.41-11.85-26.41-26.41v-133.26c0-14.56 11.85-26.41 26.41-26.41h207.69c14.56 0 26.41 11.85 26.41 26.41v133.26c0 14.56-11.85 26.41-26.41 26.41zm-156.34-87.87h56.97c3.31 0 6-2.69 6-6v-39.2l8.55-8.55c2.34-2.34 2.34-6.14 0-8.49-2.34-2.34-6.14-2.34-8.48 0l-.7.7c-.98-1.97-3.01-3.32-5.36-3.32h-56.98c-3.31 0-6 2.69-6 6v52.85c0 3.32 2.69 6.01 6 6.01zm6-52.86h44.97v2.69l-18.16 18.16-8.84-8.84c-2.34-2.34-6.14-2.34-8.49 0-2.34 2.34-2.34 6.14 0 8.49l13.08 13.08c1.17 1.17 2.71 1.76 4.24 1.76s3.07-.59 4.24-1.76l13.92-13.92v21.2h-44.96zm173.62 3.08c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 31.92c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 36.52c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.68 5.99 6zm0 31.92c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.69 5.99 6zm-119.36 165.01h10.84l-28.38-39.84-28.38 39.84h10.84c3.31 0 6 2.69 6 6v64.58h98.7c3.31 0 6 2.69 6 6s-2.69 6-6 6h-104.69c-3.31 0-6-2.69-6-6v-64.58h-16.48c-2.25 0-4.3-1.25-5.33-3.25s-.86-4.4.45-6.23l40.02-56.18c1.13-1.58 2.95-2.52 4.89-2.52s3.76.94 4.89 2.52l40.02 56.18c1.3 1.83 1.48 4.23.45 6.23s-3.09 3.25-5.33 3.25h-16.48v23.5h65.38c3.31 0 6 2.69 6 6s-2.69 6-6 6h-71.38c-3.31 0-6-2.69-6-6v-35.5c-.03-3.31 2.66-6 5.97-6z\"></path></svg>				\n									<h5>\n							ærlig<br> rådgivning						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 510 510\"><path d=\"m192.036 385.845c-4.787-46.972-19.459-64.336-30.658-82.352-8.672-13.951-15.5-28.245-15.5-54.252 0-60.242 48.865-109.109 109.135-109.109 60.242 0 109.109 48.866 109.109 109.109 0 26.007-6.828 40.301-15.5 54.252-11.199 18.016-25.871 35.38-30.658 82.352 9.985 2.864 17.345 12.101 17.345 22.975v36.44c0 13.109-10.747 23.866-23.893 23.866h-10.334v9.945c0 12.588-10.341 22.929-22.93 22.929h-46.304c-12.589 0-22.93-10.341-22.93-22.929v-9.945h-10.334c-13.146 0-23.893-10.757-23.893-23.866v-36.44c0-10.874 7.36-20.111 17.345-22.975zm111.948-.917c4.199-42.194 15.78-62.332 26.488-79.049 10.147-15.842 19.65-28.207 19.65-56.638 0-52.513-42.597-95.109-95.109-95.109-52.537 0-95.135 42.596-95.135 95.109 0 28.431 9.503 40.796 19.65 56.638 10.708 16.717 22.289 36.855 26.488 79.049zm2.554-78.61c-1.175 13.701-11.985 24.191-24.783 24.191-13.527 0-24.862-12.086-24.862-26.673v-99.328c0-14.12 11.335-26.673 24.862-26.673 11.309 0 21.031 8.139 23.975 19.497 9.12 3.904 15.688 13.438 15.688 24.78 0 1.153-.068 2.289-.201 3.403 5.078 5.326 8.283 12.802 8.283 21.117 0 6.39-1.889 12.262-5.06 17.053 1.996 4.099 3.13 8.773 3.13 13.76 0 14.1-9.065 25.697-21.032 28.873zm-16.452-109.977c-1.964-2.729-4.916-4.506-8.331-4.506-6.192 0-10.862 6.21-10.862 12.673v99.328c0 6.677 4.67 12.673 10.862 12.673 5.516 0 9.822-4.614 10.717-10.425-4.709-1.416-8.923-4.144-12.279-7.814-2.607-2.852-2.409-7.283.443-9.89 2.851-2.607 7.282-2.408 9.889.443 2.416 2.642 5.72 4.356 9.402 4.356 7.733 0 13.643-7.218 13.643-15.734s-5.91-15.734-13.643-15.734c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7 5.352 0 10.388 1.655 14.658 4.533.593-1.743.915-3.634.915-5.612 0-2.11-.366-4.128-1.036-5.972-.769.858-1.588 1.66-2.453 2.397-2.94 2.507-7.361 2.156-9.869-.784-2.507-2.939-2.155-7.361.784-9.868 2.773-2.365 4.492-6.122 4.492-10.293 0-6.072-3.705-11.374-8.898-12.467-.154-.023-.307-.052-.458-.085-.499-.08-1.01-.121-1.532-.121-2.947 0-5.591 1.389-7.515 3.525-2.585 2.87-7.015 3.101-9.886.515-2.87-2.586-3.101-7.015-.515-9.886 3.111-3.453 7.059-5.988 11.472-7.252zm-104.526 67.344c-3.171-4.791-5.06-10.663-5.06-17.053 0-8.307 3.198-15.777 8.284-21.104-.133-1.118-.202-2.258-.202-3.416 0-11.354 6.582-20.897 15.717-24.792 2.948-11.354 12.67-19.485 23.946-19.485 13.56 0 24.888 12.555 24.888 26.673v99.328c0 14.585-11.328 26.673-24.888 26.673-12.765 0-23.578-10.484-24.757-24.184-11.98-3.166-21.058-14.769-21.058-28.88 0-4.987 1.134-9.661 3.13-13.76zm9.982-23.036c-.675 1.847-1.042 3.869-1.042 5.983 0 1.978.322 3.869.915 5.612 4.27-2.878 9.306-4.533 14.658-4.533 3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7-7.733 0-13.643 7.218-13.643 15.734s5.91 15.734 13.643 15.734c3.682 0 6.986-1.714 9.402-4.356 2.607-2.851 7.038-3.05 9.889-.443 2.852 2.607 3.05 7.038.443 9.89-3.35 3.664-7.556 6.389-12.255 7.807.891 5.813 5.192 10.432 10.693 10.432 6.21 0 10.888-5.993 10.888-12.673v-99.328c0-6.466-4.678-12.673-10.888-12.673-3.404 0-6.349 1.777-8.309 4.507 4.421 1.264 8.367 3.8 11.476 7.251 2.586 2.871 2.355 7.3-.516 9.886-2.87 2.586-7.3 2.355-9.886-.515-1.926-2.138-4.574-3.525-7.54-3.525-.493 0-.976.037-1.448.108-.196.045-.395.082-.596.11-5.165 1.118-8.844 6.404-8.844 12.455 0 1.243.153 2.45.442 3.594.101.284.183.572.246.862.748 2.326 2.071 4.346 3.814 5.823 2.947 2.498 3.311 6.919.813 9.866s-6.919 3.312-9.866.814c-.878-.745-1.71-1.554-2.489-2.422zm3.042 158.279c-5.442 0-9.893 4.451-9.893 9.892v36.44c0 5.423 4.454 9.866 9.893 9.866h17.334c3.866 0 7 3.134 7 7v16.945c0 4.902 4.027 8.929 8.93 8.929h46.304c4.903 0 8.93-4.027 8.93-8.929v-16.945c0-3.866 3.134-7 7-7h17.334c5.439 0 9.893-4.443 9.893-9.866v-36.44c0-5.441-4.451-9.892-9.893-9.892zm63.416-314.093 2.907-5.412c1.828-3.403 6.075-4.683 9.479-2.854 3.403 1.828 4.682 6.075 2.854 9.479l-16.073 29.925c-1.22 2.271-3.589 3.688-6.167 3.688s-4.947-1.417-6.167-3.688l-16.073-29.925c-1.828-3.404-.549-7.651 2.854-9.479 3.404-1.829 7.651-.549 9.479 2.854l2.907 5.412v-69.835c0-3.863 3.137-7 7-7s7 3.137 7 7zm-132.198 54.758-49.381-49.381c-2.732-2.731-2.732-7.167 0-9.899s7.168-2.732 9.9 0l49.38 49.38-1.771-5.881c-1.114-3.7.985-7.608 4.684-8.722 3.7-1.114 7.607.985 8.721 4.685l9.796 32.526c.743 2.468.069 5.145-1.753 6.968-1.823 1.823-4.5 2.496-6.969 1.753l-32.526-9.795c-3.699-1.114-5.798-5.022-4.684-8.721s5.022-5.798 8.721-4.684zm-44.859 122.299h-69.835c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7h69.835l-5.412-2.907c-3.403-1.828-4.682-6.076-2.854-9.479 1.828-3.404 6.075-4.683 9.479-2.855l29.926 16.074c2.271 1.22 3.688 3.589 3.688 6.167 0 2.577-1.417 4.947-3.688 6.166l-29.926 16.074c-3.404 1.828-7.651.549-9.479-2.855-1.828-3.403-.549-7.651 2.854-9.479zm54.758 118.198-49.38 49.38c-2.732 2.732-7.168 2.732-9.9 0s-2.732-7.167 0-9.899l49.381-49.381-5.882 1.772c-3.699 1.114-7.607-.985-8.721-4.685-1.114-3.699.985-7.607 4.684-8.721l32.526-9.795c2.469-.743 5.146-.07 6.969 1.753 1.822 1.823 2.496 4.5 1.753 6.968l-9.796 32.527c-1.114 3.699-5.021 5.798-8.721 4.684-3.699-1.114-5.798-5.022-4.684-8.721zm240.497-240.497 5.882-1.771c3.699-1.114 7.607.985 8.721 4.684s-.985 7.607-4.684 8.721l-32.526 9.795c-2.469.743-5.146.07-6.969-1.753-1.822-1.823-2.496-4.5-1.753-6.968l9.796-32.526c1.114-3.7 5.021-5.799 8.721-4.685 3.699 1.114 5.798 5.022 4.684 8.722l-1.771 5.881 49.38-49.38c2.732-2.732 7.168-2.732 9.9 0s2.732 7.168 0 9.899zm44.859 122.299 5.412 2.906c3.403 1.828 4.682 6.076 2.854 9.479-1.828 3.404-6.075 4.683-9.479 2.855l-29.926-16.074c-2.271-1.219-3.688-3.589-3.688-6.166 0-2.578 1.417-4.947 3.688-6.167l29.926-16.074c3.404-1.828 7.651-.549 9.479 2.855 1.828 3.403.549 7.651-2.854 9.479l-5.412 2.907h69.835c3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7zm-54.758 118.198 1.771 5.882c1.114 3.699-.985 7.607-4.684 8.721-3.7 1.114-7.607-.985-8.721-4.684l-9.796-32.527c-.743-2.468-.069-5.145 1.753-6.968 1.823-1.823 4.5-2.496 6.969-1.753l32.526 9.795c3.699 1.114 5.798 5.022 4.684 8.721-1.114 3.7-5.022 5.799-8.721 4.685l-5.882-1.772 49.381 49.381c2.732 2.732 2.732 7.167 0 9.899s-7.168 2.732-9.9 0z\"></path></svg>				\n									<h5>\n							gennemtænkte løsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"outline\"><path d=\"M486.41,144A28,28,0,0,0,472,92H349.123l5.457-21.828a48.513,48.513,0,0,0-12.848-46.153A41.035,41.035,0,0,0,312.609,12H308a8.009,8.009,0,0,0-8,8V47.413l-19.233,64.112A17.376,17.376,0,0,1,268,123.539V112a4,4,0,0,0-4-4H152a4,4,0,0,0-4,4v72a4,4,0,0,0,8,0V116h72V276H156V248a4,4,0,0,0-8,0v32a4,4,0,0,0,4,4H264a4,4,0,0,0,4-4V268.5h11.168A37.07,37.07,0,0,1,305.092,279a45.025,45.025,0,0,0,31.48,12.752L440,292a27.987,27.987,0,0,0,19.369-48.2,27.987,27.987,0,0,0,16-48A28,28,0,0,0,486.41,144ZM260,276H236V116h24Zm212-88H396a4,4,0,0,0,0,8h60a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h40a20,20,0,0,1,.01,40l-103.428-.25a37.07,37.07,0,0,1-25.924-10.5,45.031,45.031,0,0,0-31.49-12.752H268V131.686a25.317,25.317,0,0,0,20.429-17.862l19.4-64.675A4,4,0,0,0,308,48V20h4.609a33.082,33.082,0,0,1,23.481,9.69,40.507,40.507,0,0,1,10.728,38.541l-6.7,26.8A4,4,0,0,0,344,100H472a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h72a20,20,0,0,1,0,40Z\"></path><path d=\"M194.5,183.243l-1.9-.217a4,4,0,0,0-4.169,2.491L184.29,195.9H135.278l-3.539-9.317a4,4,0,0,0-7.478,2.84l2.459,6.477h-8.474L68.452,156.872a4,4,0,1,0-4.935,6.3L77.6,174.209,56.961,194.48l-6.636-5.491a4,4,0,1,0-5.1,6.163L87.219,229.9a44.1,44.1,0,0,0,28.05,10.1H212a8.009,8.009,0,0,0,8-8V203.9a8.009,8.009,0,0,0-8-8h-8v-2.01A10.708,10.708,0,0,0,194.5,183.243ZM212,203.9V232H115.269a36.081,36.081,0,0,1-22.951-8.264l-29.16-24.128,20.8-20.422L114.4,203.045a4,4,0,0,0,2.468.852H187a4,4,0,0,0,3.715-2.517l3.929-9.843a2.712,2.712,0,0,1,1.356,2.35v6.01a4,4,0,0,0,4,4Z\"></path><path d=\"M223.084,484.672,200.87,469.863V346.36A44.1,44.1,0,0,0,195.327,325l-17.183-30.94a4,4,0,0,0-7,3.884l17.184,30.94a36.073,36.073,0,0,1,4.537,17.478V468H164.333a4,4,0,1,0,0,8h31.321l12,8H152.865V352a4,4,0,0,0-.358-1.655l-25.454-56A4,4,0,0,0,123.411,292H114.2a4,4,0,0,0-3.945,4.658l8.862,53.175a36.016,36.016,0,0,1-1.951,18.949L78.642,468H48.333a4,4,0,1,0,0,8H80.377L92,484H32.088L76.63,361.366a4.017,4.017,0,0,0,.183-2.044L61.1,268H136a4,4,0,0,0,0-8H59.233L30.555,173.966A19.723,19.723,0,0,1,49.27,148H76a12,12,0,0,0,24,0h15.2a21.975,21.975,0,0,1,8.395,1.652l10.889,4.458a4,4,0,1,0,3.032-7.4L126.63,142.25A29.938,29.938,0,0,0,115.2,140H100v-4.527A16.014,16.014,0,0,0,112,120V103.473A16.014,16.014,0,0,0,124,88V80a4,4,0,0,0-4-4H90A22.025,22.025,0,0,0,68,98v18a12.02,12.02,0,0,0,8,11.314V140H49.27a27.723,27.723,0,0,0-26.305,36.5l29.493,88.482,16.29,94.655-46.128,127A4,4,0,0,0,26.38,492h78.485a4,4,0,0,0,2.268-7.3L86.3,470.368l38.318-98.69a44.018,44.018,0,0,0,2.385-23.16L118.921,300h1.914l24.03,52.867V488a4,4,0,0,0,4,4h72a4,4,0,0,0,2.219-7.328ZM76,98A14.015,14.015,0,0,1,90,84h26v4a8.009,8.009,0,0,1-8,8H92a4,4,0,0,0-4,4,11.962,11.962,0,0,1-1.53,5.881A12.044,12.044,0,0,0,76,104.686Zm4,14a3.981,3.981,0,0,1,3.407,1.9,4,4,0,0,0,5.956.975c.207-.171.7-.648.7-.648.032-.028.061-.057.09-.087A19.907,19.907,0,0,0,95.6,104H104v16a8.009,8.009,0,0,1-8,8,12.133,12.133,0,0,1-2.681-.3,4,4,0,1,0-1.775,7.8c.151.035.3.06.456.091V148a4,4,0,1,1-8,0V124a4,4,0,0,0-4-4,4,4,0,0,1,0-8Z\"></path></g></svg>				\n									<h5>\n							arbejde udført med ansvar						\n					</h5>\n				<p>Vi lover ikke mere, end vi kan holde – men vi holder det, vi lover.</p>			<h2>KONTAKT OS</h2>		<p>Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.</p>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 13:55:36', '2026-01-26 13:55:36', '', 10, 'https://mrarif.me/cpnordic/?p=554', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(555, 1, '2026-01-26 13:55:36', '2026-01-26 13:55:36', '<h1>CP NORDIC ApS</h1>					<h4>Byggeri – Tømrerarbejde og tagdækning</h4>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>					\n									<h3>\n						Terrasser					</h3>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							Totalrenoveringer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Tilbygninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Carporte						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Udskiftning og montering af døre og vinduer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Specialtilpassede løsninger						\n					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>Roofing</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Line\" viewBox=\"0 0 64 64\"><path d=\"m59.67942 40.42284-11.01486-19.08194a2.56 2.56 0 0 0 -2.21256-1.27812h-28.90606a2.61145 2.61145 0 0 0 -2.21205 1.27713l-2.44639 4.23829v-3.29214a1.25545 1.25545 0 0 0 -1.2542-1.25469h-5.39758a1.25545 1.25545 0 0 0 -1.2542 1.25469v16.989l-.66252 1.14778a2.35594 2.35594 0 0 0 2.029 3.51308h51.30237a2.35665 2.35665 0 0 0 2.02905-3.51308zm-19.66334 1.51343-3.32942-5.76666h7.87345l3.32949 5.76666zm-10.16166 0-3.32863-5.76666h7.85148l3.32943 5.76666zm-3.62192-19.87381 2.86093 4.95527h-7.85032l-2.86026-4.95527zm10.18247 0 2.86103 4.95527h-7.87318l-2.86094-4.95527zm-6.167 6.955 2.97481 5.1525h-7.8513l-2.97408-5.1525zm5.28419 5.1525-2.97481-5.1525h7.87321l2.97493 5.1525zm7.20784-5.15254h8.04682l2.97408 5.1525h-8.0459zm4.19239-6.67766 2.7002 4.678h-8.04711l-2.86106-4.95527h7.72758a.55358.55358 0 0 1 .48041.27727zm-39.9512.6913h3.9066v6.01156l-3.9066 6.7681zm-.93 18.73434a.33181.33181 0 0 1 0-.34272l10.59865-18.36184 10.89525 18.87543h-21.19709a.3319.3319 0 0 1 -.29682-.17087zm51.89609 0a.33323.33323 0 0 1 -.29683.17087h-7.4514l-3.32956-5.76666h8.04567l3.03211 5.25307a.332.332 0 0 1 0 .34272z\"></path><path d=\"m19.27467 31.54534h-5.24722a.99958.99958 0 0 0 -.99984.99984v5.24819a.99959.99959 0 0 0 .99984.99985h5.24722a.99958.99958 0 0 0 .99984-.99985v-5.24819a.99957.99957 0 0 0 -.99984-.99984zm-.99984 5.24819h-3.24753v-3.24853h3.24753z\"></path></svg>				\n									<h5>\n							Flat roofing 						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 1000 1000\"><path d=\"M125.78,467.86a13,13,0,0,1-13-13V153.7a13,13,0,0,1,26,0V454.86A13,13,0,0,1,125.78,467.86Z\"></path><path d=\"M350.67,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM138.79,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,138.79,160.4Z\"></path><path d=\"M575.56,467.86a13,13,0,0,1-6.61-1.8,208.31,208.31,0,0,0-211.33-.21l-.35.21a13,13,0,0,1-19.6-11.2V153.71a13,13,0,0,1,5.3-10.47l.16-.12a201.91,201.91,0,0,1,240,0l.14.1a13,13,0,0,1,5.29,10.47V454.86a13,13,0,0,1-13,13ZM363.67,160.4V433.31a234.44,234.44,0,0,1,198.89,0V160.4A174.91,174.91,0,0,0,363.67,160.4Z\"></path><path d=\"M800.44,467.86a13,13,0,0,1-6.6-1.8,208.31,208.31,0,0,0-211.33-.21l-.36.21a13,13,0,0,1-19.59-11.2V153.71a13,13,0,0,1,5.26-10.45l.16-.11a201.89,201.89,0,0,1,240,0l.17.12a13,13,0,0,1,5.26,10.45V454.86a13,13,0,0,1-13,13ZM588.56,160.4V433.31a234.38,234.38,0,0,1,198.88,0V160.4A174.9,174.9,0,0,0,588.56,160.4Z\"></path><path d=\"M225.33,682.14a13,13,0,0,1-6.6-1.81,207.71,207.71,0,0,0-118-28.55,13,13,0,0,1-1.51-26,233.38,233.38,0,0,1,113.08,21.76v-223a13,13,0,1,1,26,0V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M225.34,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.1,234.1,0,0,1,198.88,0V424.51a13,13,0,0,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.27-.24l-.33.2A13,13,0,0,1,225.34,682.14Z\"></path><path d=\"M450.22,682.14a13,13,0,0,1-13-13V424.51a13,13,0,0,1,26,0V647.6a234.13,234.13,0,0,1,198.89,0V424.51a13,13,0,1,1,26,0V669.14a13,13,0,0,1-19.6,11.19,208.23,208.23,0,0,0-211.29-.23l-.33.19A13,13,0,0,1,450.22,682.14Z\"></path><path d=\"M900,682.14a12.89,12.89,0,0,1-6.6-1.81,208.25,208.25,0,0,0-211.28-.24l-.32.2a13,13,0,0,1-19.69-11.15V424.51a13,13,0,1,1,26,0V647.6a234.12,234.12,0,0,1,198.89,0V374.69a175.3,175.3,0,0,0-87.43-30.41,13,13,0,1,1,1.76-25.94,201.39,201.39,0,0,1,105.74,38.71A13,13,0,0,1,913,368V669.14a13,13,0,0,1-13,13Z\"></path><path d=\"M100,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.44,234.44,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19A208.33,208.33,0,0,0,107,894.36l-.32.19A13,13,0,0,1,100,896.4Z\"></path><path d=\"M324.89,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V861.85a234.41,234.41,0,0,1,198.89,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.61,11.19,208.36,208.36,0,0,0-211.28-.23l-.33.19A13,13,0,0,1,324.89,896.4Z\"></path><path d=\"M549.78,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0v223a234.42,234.42,0,0,1,198.88,0V638.8a13,13,0,0,1,26,0V883.4a13,13,0,0,1-19.6,11.19,208.36,208.36,0,0,0-211.28-.24l-.32.2A13,13,0,0,1,549.78,896.4Z\"></path><path d=\"M774.66,896.4a13,13,0,0,1-13-13V638.8a13,13,0,0,1,26,0V883.4A13,13,0,0,1,774.66,896.4Z\"></path></svg>				\n									<h5>\n							2-layer professionally welded roofing						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 512 512\"><g transform=\"translate(-3082 -615)\"><g><path d=\"m3219.78 942.379h-127.78v-45.989l153.17.246 58.86 105.854c1.38-9.768 7.17-18.631 16.35-20.486 6.16-1.247 12.4.415 18.71 1.68 1.48.288.61-.368.6-1.593-.02-8.863 2.94-18.049 10.27-23.132 5.39-3.734 12.22-5.642 18.42-4.124 8.24 2.017 14.72 8.71 19.89 15.742.83-2.199 1.77-4.357 2.84-6.453 4.05-7.89 10.45-15.114 18.78-17.88-9.61-16.892-20.45-33.126-33.03-47.703-8.02-9.302-17.14-18.741-28.06-21.763-1.7-.487-2.3-.729-3.41-1.198-10.87-4.563-19.07-14.083-26.23-23.732-16.32-22.016-28.11-47.217-38.21-72.788-.37-.961-.79-2.142-.79-2.142l9.52-3.011c.03.083.06.166.09.248 1.9 4.914 8.41 9.057 14.67 13.027 14.91 9.455 31.68 16.001 48.17 21.975 22.34 8.262 38.47 29.779 48.56 49.929.99 1.966 1.94 3.947 2.86 5.943-2.02-11.866-3.88-23.75-5.55-35.658-2.54-18.109-5.71-36.241-2.93-54.678 4.47-29.703 15.53-58.557 31.83-83.797l.08-.12c2.93.256 5.86.511 8.79.767 11.25 26.366 20.8 53.643 25.26 81.992 3.17 20.098.05 40.561-2.65 60.959-1.4 10.55-2.87 21.087-4.41 31.614 3.05-5.416 6.37-10.632 9.96-15.605 10.61-14.685 24.6-27.322 42.44-33.301 20.23-6.644 40.84-13.13 58.46-25.034 3.29-2.223 6.76-4.571 8.81-7.822.09-.149.2-.388.29-.603 3.14 1.104 6.27 2.208 9.41 3.312-.27.958-.75 1.847-1.16 2.768-10.74 23.957-23.26 47.364-39.72 67.404-8.47 10.309-18.23 20.395-30.94 24.106-18.18 5.306-31.8 20.327-44.23 35.649-10.16 12.529-19.46 25.796-27.87 39.547l-.07.426c.04.063.08.126.12.189 3.47 5.432 5.34 11.773 6.4 18.168 0 0-.92.892 1.11-.599 4.87-3.544 10.9-5.278 17.03-5.187 5.42.12 10.78 1.901 14.84 5.778 6.05 5.782 8.58 14.321 9.7 22.332 0 0 7.05-1.922 13.12-1.528 13.06.848 24.24 11.762 26.39 25.162 1.21 7.58.7 15.39-.91 22.84l-.43 1.83s-1.69 1.5-1.85 1.64l-.48 5.92h-243.8zm-2.78-35.952v25.952h8.69l61.29 111.121h176.08l-162.38-26.45-61.42-110.458zm200.98 48.536c-8.26.052-14.9 7.54-18.24 14.259-2.24 4.522-3.9 9.361-4.83 14.276 0 0-9.39 1.471-9.39 1.471-4.14-8.101-10.01-16.553-17.73-19.818-5.38-2.277-12.41.713-15.47 5.458-2.89 4.478-2.79 10.248-2.46 15.198 0 0 .01 6.488-5.41 7.933-6.05 1.613-12.22-2.128-19.1-2.19-3.99-.035-7.64 1.843-9.53 6.217-1.53 3.533-2.37 7.403-2.03 11.283 0 0 202.23 32.94 202.23 32.94.9-.51 2.12-1.43 2.12-1.43 2.24-12.11 1.98-26.91-9.65-32.67-6.51-3.23-14.88-2.1-21.59 1.24 0 0-7.32-4.41-7.32-4.41-.05-11.692-3.93-25.33-15.94-25.198-7.11.078-14.05 4.565-16.61 11.402 0 0-9.71-1.874-9.71-1.874.35-8.427-.97-17.366-4.63-24.485-2.74-5.334-8.19-9.527-14.5-9.601-.07-.001-.14-.001-.21-.001zm49.41 48.107c2.54.05 4.99.91 7.16 2.25l4.35 2.74-5.33 8.46c-2.77-1.74-5.09-4.27-8.56-2.91-3.37 1.34-7.03 2.21-10.45 1.03 0 0-4.94-1.83-4.94-1.83l3.47-9.38c2.22.82 4.32 2.45 6.72 1.51 2.47-1.01 4.58-1.9 7.58-1.87zm-72.32-6.152c3.87 2.618 8.44 3.282 13.7 2.583 4.97-.638 9.72 1.009 14.62 3.239 2.1.94 4.51.86 6.87-.15l5.16-2.18 3.89 9.22c-6.55 2.76-12.96 5.48-20.28 2.12-.86-.4-1.72-.83-2.58-1.24-6.34-2.98-13.86 1.31-22.09-2.49-1.72-.79-3.35-1.77-4.91-2.83l-4.3-2.94 5.65-8.257c1.42.975 2.85 1.95 4.27 2.925zm-31.45-1.507c1.78 2.043 3.79 3.964 7.45 2.546 0 0 4.91-2.053 4.91-2.053l3.87 9.226-4.77 2c-5.6 2.27-12.53 2.04-17.04-2.87-.83-.9-1.94-2.26-1.94-2.26l-3.41-3.872 7.5-6.612c1.15 1.298 2.29 2.597 3.43 3.895zm75.46-94.691c4.87-29.868 9.36-59.753 12.54-89.635 1.47-13.767 1.75-27.402-.98-41.692-4.21-22.041-11.48-43.387-19.69-64.344 0 0-.02-.539-.21-.194-12.4 22.361-21.65 46.523-25.38 71.847-1.37 9.284-.62 18.733.26 28.136 2.64 28.509 7.88 56.769 13.27 84.951 3.2 16.697 6.6 33.355 10.14 49.983 2.39-13.208 5.7-26.367 10.05-39.052zm-139.97-104.615c9.64 20.97 20.17 42.124 35.47 58.808 5.15 5.618 11.29 10.517 18.35 12.639 14.25 4.393 25.2 16.604 35.06 28.701 10.04 12.326 18.82 25.674 27.01 39.322-6.57-34.896-16.36-70.619-39.09-97.343-7.96-9.354-18.19-16.554-29.95-20.848-16.24-5.953-32.34-12.57-46.87-21.757 0 0-.62-.925.02.478zm-182.11 110.285v25.989h90v-25.989zm-10 0h-5v25.989h5zm337.05 25.634c13.48-19.645 28-38.847 47.22-52.045 5.26-3.617 11.03-6.48 17.27-8.066 9.5-2.496 16.96-9.882 23.77-17.624 13.02-14.801 22.99-32.045 32.06-49.582 0 0 .52-.504-.13-.132-16.88 9.605-35.48 16.081-53.89 22.001-21.91 7.195-38.11 27.548-48.15 46.537-5.67 10.738-10.25 22.012-14 33.593-1.35 8.445-2.74 16.885-4.15 25.318z\"></path></g></g></svg>				\n									<h5>\n							Ready for sedum						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"solar-panels\" height=\"512\" viewBox=\"0 0 300 300\" width=\"512\"><g><path d=\"m258.377 95.217c1.389-1.027 1.963-2.828 1.422-4.469s-2.072-2.748-3.799-2.748h-28c-.855 0-1.689.275-2.377.783l-21.896 16.184-6.59-8.792 9.594-7.191c1.768-1.326 2.127-3.832.803-5.6l-7.678-10.244c-.637-.85-1.584-1.41-2.635-1.561-1.045-.15-2.117.121-2.965.758l-129.953 97.403c-.85.637-1.41 1.584-1.561 2.635s.123 2.117.758 2.965l7.678 10.242c.787 1.049 1.988 1.602 3.205 1.602.834 0 1.676-.26 2.395-.799l8.332-6.245 6.03 8.044-49.517 36.599c-1.389 1.027-1.963 2.828-1.422 4.469s2.072 2.748 3.799 2.748h28c.855 0 1.689-.275 2.377-.783l21.623-15.982v40.765c0 2.209 1.791 4 4 4s4-1.791 4-4v-46.678zm-183.197 82.367-2.879-3.842 123.553-92.604 2.881 3.842-115.219 86.356c-.001.001-.003.001-.005.002s-.002.003-.003.004zm16.331-2.242 99.225-74.368 6.558 8.749-99.721 73.707zm-20.829 48.658h-14.541l173.177-128h14.541z\"></path><path d=\"m256 176h-52c-2.209 0-4 1.791-4 4v76c0 2.209 1.791 4 4 4s4-1.791 4-4v-72h48c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m256 188h-40c-2.209 0-4 1.791-4 4v64c0 2.209 1.791 4 4 4s4-1.791 4-4v-60h36c2.209 0 4-1.791 4-4s-1.791-4-4-4z\"></path><path d=\"m84 96c15.439 0 28-12.561 28-28s-12.561-28-28-28-28 12.561-28 28 12.561 28 28 28zm0-48c11.027 0 20 8.973 20 20s-8.973 20-20 20-20-8.973-20-20 8.973-20 20-20z\"></path><path d=\"m71.398 71.324c2.016 0 3.75-1.521 3.971-3.572.473-4.389 4.436-7.562 8.811-7.1 2.139.232 4.166-1.352 4.404-3.549.236-2.197-1.352-4.168-3.549-4.404-8.77-.943-16.678 5.424-17.619 14.197-.236 2.197 1.352 4.168 3.549 4.404.144.016.289.024.433.024z\"></path><path d=\"m109.172 93.172c-1.562 1.562-1.562 4.094 0 5.656l12 12c.781.781 1.805 1.172 2.828 1.172s2.047-.391 2.828-1.172c1.562-1.562 1.562-4.094 0-5.656l-12-12c-1.562-1.563-4.094-1.563-5.656 0z\"></path><path d=\"m124 72h20c2.209 0 4-1.791 4-4s-1.791-4-4-4h-20c-2.209 0-4 1.791-4 4s1.791 4 4 4z\"></path><path d=\"m80 108v16c0 2.209 1.791 4 4 4s4-1.791 4-4v-16c0-2.209-1.791-4-4-4s-4 1.791-4 4z\"></path></g></svg>				\n									<h5>\n							Listed roofing on pitched roofs						\n					</h5>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle ANMELDELSER\n					</a>\n					<h2>HVORFOR VÆLGE CP NORDIC ApS?</h2>		<p>Når du vælger CP NORDIC ApS, får du:</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 450 450\" width=\"512\"><g><g><path d=\"m225 165.2c-25.9 0-48.9-18.8-53.3-45.2-2.4-14.2.9-28.6 9.3-40.3 8.4-11.8 20.9-19.5 35.1-21.9 29.4-4.9 57.3 15 62.2 44.5 4.9 29.4-15 57.3-44.4 62.2-3 .5-6 .7-8.9.7zm-7.6-99.8c-12.2 2-22.9 8.7-30.1 18.8s-10.1 22.4-8 34.6c3.8 22.7 23.5 38.8 45.7 38.8 2.5 0 5.1-.2 7.6-.6 25.2-4.2 42.3-28.1 38.1-53.4s-28.1-42.4-53.3-38.2z\"></path><path d=\"m255.2 115c-2.1 0-3.8-1.7-3.8-3.8 0-14.6-11.8-26.4-26.4-26.4-2.1 0-3.8-1.7-3.8-3.8s1.7-3.8 3.8-3.8c18.8 0 34.1 15.3 34.1 34.1 0 2-1.8 3.7-3.9 3.7z\"></path><path d=\"m236.1 203h-22.2c-2.1 0-3.8-1.7-3.8-3.8v-14.1c-3.1-.6-6.1-1.4-9.1-2.4l-7 12.2c-1.1 1.8-3.4 2.5-5.3 1.4l-19.2-11.1c-.9-.5-1.5-1.4-1.8-2.3-.3-1-.1-2 .4-2.9l7-12.1c-2.4-2.1-4.6-4.3-6.7-6.6l-12.1 7c-1.8 1.1-4.2.4-5.2-1.4l-11.1-19.2c-1.1-1.8-.4-4.2 1.4-5.2l11.9-6.8c-1-3-1.9-6.1-2.6-9.3h-13.7c-2.1 0-3.8-1.7-3.8-3.8v-22.2c0-2.1 1.7-3.8 3.8-3.8h13.4c.6-3.2 1.4-6.4 2.4-9.5l-11.5-6.6c-1.8-1.1-2.5-3.4-1.4-5.3l11.1-19.6c.5-.9 1.4-1.5 2.3-1.8s2-.1 2.9.4l11.3 6.6c2.2-2.5 4.5-4.8 7-7l-6.5-11.3c-.5-.9-.6-1.9-.4-2.9.3-1 .9-1.8 1.8-2.3l19.2-11.1c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l6.4 11.2c3.1-1.1 6.4-1.9 9.7-2.6v-13c0-2.1 1.7-3.8 3.8-3.8h22.2c2.1 0 3.8 1.7 3.8 3.8v12.8c3.3.7 6.5 1.5 9.7 2.6l6.5-11.2c.5-.9 1.4-1.5 2.3-1.8 1-.3 2-.1 2.9.4l19.2 11.1c.9.5 1.5 1.3 1.8 2.3s.1 2-.4 2.9l-6.5 11.3c2.5 2.2 4.8 4.5 7 7.1l11.3-6.6c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l11.1 19.2c1.1 1.8.4 4.2-1.4 5.3l-11.5 6.6c1 3.1 1.8 6.3 2.5 9.5h13.6c2.1 0 3.8 1.7 3.8 3.8v22.2c0 2.1-1.7 3.8-3.8 3.8h-13.6c-.6 3.1-1.5 6.2-2.5 9.3l11.9 6.8c1.8 1.1 2.5 3.4 1.4 5.2l-11.2 19.5c-1.1 1.8-3.4 2.5-5.2 1.4l-12-7c-2.1 2.4-4.4 4.6-6.7 6.6l7 12.1c.5.9.6 1.9.4 2.9s-.9 1.8-1.8 2.3l-19.2 11.1c-1.8 1.1-4.2.4-5.2-1.4l-7-12.2c-3 1-6 1.8-9.1 2.4v14.1c-.2 2.3-2 4-4.1 4zm-18.4-7.7h14.5v-13.5c0-1.9 1.4-3.5 3.3-3.8 4.7-.7 9.4-2 13.8-3.7 1.8-.7 3.8 0 4.7 1.7l6.7 11.6 12.6-7.3-6.7-11.6c-1-1.6-.5-3.7.9-4.9 3.7-3 7.2-6.4 10.2-10.1 1.2-1.5 3.3-1.8 4.9-.9l11.5 6.6 7.3-12.6-11.3-6.5c-1.6-.9-2.4-3-1.6-4.7 1.8-4.5 3.1-9.2 3.9-14 .3-1.9 1.9-3.2 3.8-3.2h13v-14.6h-12.8c-1.9 0-3.5-1.4-3.8-3.3-.7-4.8-2-9.6-3.7-14.2-.7-1.8 0-3.7 1.7-4.7l10.9-6.3-7.3-12.6-10.8 6.3c-1.6.9-3.7.6-4.9-.9-3.1-3.9-6.6-7.4-10.4-10.6-1.5-1.2-1.9-3.3-.9-4.9l6.2-10.7-12.6-7.3-6.1 10.6c-1 1.6-3 2.3-4.7 1.7-4.6-1.8-9.5-3.1-14.4-3.9-1.9-.3-3.3-1.9-3.3-3.8v-12.2h-14.5v12.3c0 1.9-1.4 3.5-3.3 3.8-5 .8-9.8 2.1-14.4 3.9-1.8.7-3.8 0-4.7-1.7l-6.1-10.6-12.6 7.3 6.2 10.7c.9 1.6.6 3.7-.9 4.9-3.9 3.1-7.4 6.7-10.4 10.6-1.2 1.5-3.3 1.9-4.9.9l-10.8-6.3-7.3 12.6 10.9 6.3c1.6.9 2.3 2.9 1.7 4.7-1.7 4.6-3 9.4-3.7 14.2-.3 1.9-1.9 3.3-3.8 3.3h-12.8v14.5h13c1.9 0 3.5 1.4 3.8 3.2.8 4.8 2.1 9.5 3.9 14 .7 1.8 0 3.8-1.6 4.7l-11.3 6.5 7.3 12.6 11.5-6.6c1.6-.9 3.7-.6 4.9.9 3 3.7 6.5 7.1 10.3 10.1 1.5 1.2 1.9 3.3.9 4.9l-6.7 11.6 12.6 7.3 6.7-11.6c.9-1.6 2.9-2.3 4.7-1.7 4.5 1.7 9.1 2.9 13.8 3.7 1.9.3 3.3 1.9 3.3 3.8z\"></path></g><g><g><g><path d=\"m45.3 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m153.9 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path></g><g><path d=\"m189.3 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.2c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c0 2.1-1.7 3.8-3.8 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m73.3 326.4c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m126 326.4c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m99.7 325.6c-.6 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4s4.1 1.1 4.4 3.2c2.4 16.5 12.3 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m50.2 266.6c-.1 0-.2 0-.3 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.7 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-8.9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.5 2.2zm81.8-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13.1-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.4-.7 2.3-.7z\"></path></g></g></g><g><g><path d=\"m296.1 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m404.7 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path></g><g><path d=\"m440 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.1c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c.2 2.1-1.6 3.8-3.7 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m324 326.3c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m376.7 326.3c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m350.4 325.6c-.5 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4 2.1-.3 4 1.1 4.4 3.2 2.4 16.5 12.4 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m301 266.6c-.1 0-.2 0-.4 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.6 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.4 2.2zm81.7-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.5-.7 2.3-.7z\"></path></g></g></g></g></g></svg>				\n									<h5>\n							et ungt og engageret team						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"496pt\" viewBox=\"0 0 496 496\" width=\"496pt\"><path d=\"m440 328h-28.207031c5.078125-6.703125 8.207031-14.960938 8.207031-24 0-8.824219-7.175781-16-16-16h-12v-19.960938c59.574219-14.445312 104-68.085937 104-132.039062 0-74.992188-61.007812-136-136-136s-136 61.007812-136 136c0 63.953125 44.425781 117.59375 104 132.039062v19.960938h-8.449219c-6.167969 0-12.359375 1.464844-17.886719 4.214844l-50.480468 25.25c-3.320313 1.664062-7.03125 2.535156-10.734375 2.535156h-40.449219v-16h-104v16h56v56h16v-56h16v128h-16v-56h-16v56h-56v16h104v-16h40.449219c3.703125 0 7.414062.871094 10.734375 2.527344l34.488281 17.25c5.519531 2.757812 11.710937 4.222656 17.878906 4.222656h24.449219v24h64v-24h48c13.230469 0 24-10.769531 24-24 0-6.167969-2.40625-11.742188-6.238281-16 3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16 0-13.230469-10.769531-24-24-24zm8 24c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm-208-280c0-66.167969 53.832031-120 120-120s120 53.832031 120 120-53.832031 120-120 120-120-53.832031-120-120zm104 134.976562c5.257812.617188 10.574219 1.023438 16 1.023438s10.742188-.40625 16-1.023438v17.023438h-32zm-40.449219 185.023438c-3.703125 0-7.414062-.871094-10.734375-2.527344l-34.488281-17.25c-5.519531-2.757812-11.710937-4.222656-17.878906-4.222656h-40.449219v-96h40.449219c6.167969 0 12.359375-1.464844 17.886719-4.214844l50.480468-25.25c3.320313-1.664062 7.03125-2.535156 10.734375-2.535156h84.449219c0 13.230469-10.769531 24-24 24h-48.28125l-23.863281 35.808594c-6.101563 9.160156-14.527344 16.589844-24.367188 21.503906-8.753906 4.375-18.542969 6.6875-28.320312 6.6875h-15.167969v16h15.167969c12.246093 0 24.519531-2.894531 35.472656-8.375 12.328125-6.160156 22.878906-15.480469 30.527344-26.945312l6.832031-10.253907v93.574219zm40.449219 24v-136h17.472656c-.898437 2.511719-1.472656 5.183594-1.472656 8 0 6.167969 2.40625 11.742188 6.238281 16-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16 0 10.414062 6.710938 19.214844 16 22.527344v9.472656zm96-24h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8s-3.59375 8-8 8zm0 0\"></path><path d=\"m394.878906 73.007812-7.757812 13.984376c17.816406 9.878906 28.878906 28.664062 28.878906 49.007812h16c0-26.160156-14.222656-50.296875-37.121094-62.992188zm0 0\"></path><path d=\"m360 80c4.734375 0 9.449219.59375 14.007812 1.769531l3.976563-15.503906c-5.855469-1.496094-11.90625-2.265625-17.984375-2.265625zm0 0\"></path><path d=\"m360 48c48.519531 0 88 39.480469 88 88 0 20.753906-7.398438 40.910156-20.832031 56.785156l12.207031 10.34375c15.882812-18.761718 24.625-42.601562 24.625-67.128906 0-57.34375-46.65625-104-104-104-24.527344 0-48.367188 8.753906-67.128906 24.632812l10.335937 12.199219c15.871094-13.433593 36.039063-20.832031 56.792969-20.832031zm0 0\"></path><path d=\"m427.128906 215.367188-10.335937-12.199219c-15.871094 13.433593-36.039063 20.832031-56.792969 20.832031-48.519531 0-88-39.480469-88-88 0-20.753906 7.398438-40.910156 20.832031-56.785156l-12.207031-10.34375c-15.882812 18.761718-24.625 42.601562-24.625 67.128906 0 57.34375 46.65625 104 104 104 24.527344 0 48.367188-8.753906 67.128906-24.632812zm0 0\"></path><path d=\"m121.214844 165.640625c4.953125-1.375 9.695312-3.34375 14.183594-5.878906l9.769531 4.886719 19.472656-19.480469-4.886719-9.769531c2.535156-4.496094 4.503906-9.230469 5.886719-14.183594l10.359375-3.445313v-27.53125l-10.351562-3.453125c-1.375-4.953125-3.34375-9.707031-5.886719-14.183594l4.886719-9.777343-19.472657-19.472657-9.769531 4.886719c-4.484375-2.535156-9.230469-4.503906-14.183594-5.878906l-3.453125-10.359375h-27.539062l-3.445313 10.359375c-4.953125 1.375-9.695312 3.34375-14.183594 5.878906l-9.777343-4.886719-19.472657 19.472657 4.886719 9.777343c-2.535156 4.488282-4.503906 9.230469-5.886719 14.183594l-10.351562 3.445313v27.53125l10.351562 3.453125c1.375 4.953125 3.34375 9.695312 5.886719 14.183594l-4.886719 9.769531 19.472657 19.480469 9.769531-4.886719c4.484375 2.535156 9.230469 4.503906 14.183594 5.878906l3.453125 10.359375h27.539062zm-12.304688-13.679687-2.679687 8.039062h-4.460938l-2.679687-8.039062-4.554688-.90625c-6.128906-1.222657-11.878906-3.605469-17.109375-7.09375l-3.867187-2.578126-7.574219 3.800782-3.160156-3.167969 3.792969-7.582031-2.578126-3.859375c-3.488281-5.222657-5.871093-10.980469-7.09375-17.109375l-.914062-4.554688-8.03125-2.679687v-4.46875l8.03125-2.671875.914062-4.554688c1.222657-6.136718 3.613282-11.886718 7.09375-17.109375l2.578126-3.859375-3.792969-7.589844 3.160156-3.160156 7.574219 3.800782 3.867187-2.578126c5.222657-3.488281 10.980469-5.863281 17.109375-7.09375l4.554688-.90625 2.679687-8.039062h4.460938l2.679687 8.039062 4.554688.90625c6.128906 1.222657 11.878906 3.605469 17.109375 7.09375l3.867187 2.578126 7.574219-3.800782 3.160156 3.160156-3.792969 7.589844 2.578126 3.859375c3.488281 5.214844 5.871093 10.972657 7.09375 17.109375l.914062 4.554688 8.03125 2.679687v4.46875l-8.03125 2.671875-.914062 4.554688c-1.222657 6.128906-3.613282 11.878906-7.09375 17.109375l-2.578126 3.859375 3.792969 7.582031-3.160156 3.167969-7.574219-3.800782-3.867187 2.578126c-5.222657 3.488281-10.980469 5.863281-17.109375 7.09375zm0 0\"></path><path d=\"m104 72c-17.648438 0-32 14.351562-32 32s14.351562 32 32 32 32-14.351562 32-32-14.351562-32-32-32zm0 48c-8.824219 0-16-7.175781-16-16s7.175781-16 16-16 16 7.175781 16 16-7.175781 16-16 16zm0 0\"></path><path d=\"m160 248v-40h48v-208h-208v208h106.664062zm-144-232h176v176h-48v24l-32-24h-96zm0 0\"></path><path d=\"m0 272h16v16h-16zm0 0\"></path><path d=\"m32 272h16v16h-16zm0 0\"></path><path d=\"m64 272h16v16h-16zm0 0\"></path><path d=\"m32 304h16v16h-16zm0 0\"></path><path d=\"m64 304h16v16h-16zm0 0\"></path><path d=\"m0 480h16v16h-16zm0 0\"></path><path d=\"m32 480h16v16h-16zm0 0\"></path><path d=\"m64 480h16v16h-16zm0 0\"></path><path d=\"m32 448h16v16h-16zm0 0\"></path><path d=\"m64 448h16v16h-16zm0 0\"></path></svg>				\n									<h5>\n							fokus på kvalitet og detaljer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m469.12 408.93-67.26-33.63v-22.13c10.71-7.69 18.6-19.07 21.78-32.27h5.28c8.81 0 15.98-7.17 15.98-15.98v-5.29c0-6.35-3.74-11.84-9.12-14.41 5.19-18.64-1.65-39.76-19.44-59.78-12.58-14.16-30.67-22.27-49.62-22.27-18.93 0-37.01 8.12-49.59 22.27-13.38 15.05-20.95 41.01-14.03 59.62-5.56 2.5-9.45 8.09-9.45 14.57v5.29c0 8.81 7.17 15.98 15.98 15.98h5.55c3.16 13.09 10.94 24.39 21.51 32.08v22.32l-67.26 33.63c-16.7 5.87-27.89 21.6-27.89 39.28v41.63c0 3.31 2.69 6 6 6h243.46c3.31 0 6-2.69 6-6v-41.63c0-17.68-11.19-33.41-27.88-39.28zm-62.24-17.7-15.83 27.66-13.29-13.29 19.29-19.29zm-37.61 5.88-20.59-20.58v-16.91c6.41 2.57 13.4 4.01 20.72 4.01 7.22 0 14.11-1.39 20.45-3.9v16.8zm63.63-97.48v5.29c0 2.16-1.82 3.98-3.98 3.98h-3.74c.01-.36.03-.71.03-1.07v-12.18h3.71c2.15-.01 3.98 1.82 3.98 3.98zm-119.29 8.2v1.07h-3.98c-2.16 0-3.98-1.82-3.98-3.98v-5.29c0-2.16 1.82-3.98 3.98-3.98l3.98.22zm1.95-24.19c-7.33-13.69-.89-37.39 10.53-50.24 10.31-11.6 25.12-18.25 40.63-18.25 15.52 0 30.34 6.65 40.65 18.25 8.43 9.48 21.3 27.59 17.4 46.39-5.66-.35-10.67-2.55-14.4-6.36-5.37-5.49-7.72-14-6.63-23.94.29-2.62-1.17-5.13-3.6-6.17s-5.25-.37-6.95 1.65c-19.33 22.92-45.95 36.76-73.9 38.68h-3.73zm10.05 24.19v-12.73c24.57-2.92 47.92-14.05 66.73-31.8 1.43 7.26 4.63 13.6 9.45 18.52 3.27 3.35 7.14 5.89 11.41 7.58v18.42c0 24.15-19.65 43.8-43.8 43.8s-43.79-19.64-43.79-43.79zm15.89 78.48 19.29 19.29-13.29 13.29-15.84-27.66zm3.22 97.53h-39.42v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.76v-35.63c0-12.68 8.1-23.95 20.15-28.05.26-.09.51-.19.75-.31l46.47-23.23 20.07 35.06c.93 1.62 2.56 2.72 4.41 2.97.27.04.53.05.79.05 1.58 0 3.11-.62 4.24-1.76l.14-.14zm12.08 0 7.41-64.69 5.06-5.06 4.84 4.84 7.86 64.92h-25.17zm128.2 0h-39.76v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.18l-6.2-51.17.25.25c1.13 1.13 2.66 1.76 4.24 1.76.26 0 .53-.02.79-.05 1.85-.25 3.48-1.34 4.41-2.97l20.07-35.06 46.47 23.23c.24.12.49.23.75.31 12.05 4.1 20.15 15.38 20.15 28.05v35.65zm-67.04-346.65h-10.84l28.38 39.84 28.38-39.84h-10.84c-3.31 0-6-2.69-6-6v-64.58h-98.7c-3.31 0-6-2.69-6-6s2.69-6 6-6h104.7c3.31 0 6 2.69 6 6v64.58h16.48c2.25 0 4.3 1.25 5.33 3.25s.86 4.4-.45 6.23l-40.02 56.18c-1.13 1.58-2.95 2.52-4.89 2.52s-3.76-.94-4.89-2.52l-40.02-56.18c-1.3-1.83-1.48-4.23-.45-6.23s3.09-3.25 5.33-3.25h16.48v-23.5h-65.38c-3.31 0-6-2.69-6-6s2.69-6 6-6h71.38c3.31 0 6 2.69 6 6v35.5c.02 3.31-2.67 6-5.98 6zm-118.44 50.65v-133.26c0-21.18-17.23-38.41-38.41-38.41h-207.7c-21.18-.01-38.41 17.23-38.41 38.41v133.26c0 21.18 17.23 38.41 38.41 38.41h105.8l64.8 55.11c1.11.94 2.49 1.43 3.89 1.43.85 0 1.71-.18 2.52-.55 2.12-.98 3.48-3.11 3.48-5.45v-50.54h27.21c21.18 0 38.41-17.23 38.41-38.41zm-71.62 26.41c-3.31 0-6 2.69-6 6v43.56l-56.59-48.13c-1.08-.92-2.46-1.43-3.89-1.43h-108.01c-14.56 0-26.41-11.85-26.41-26.41v-133.26c0-14.56 11.85-26.41 26.41-26.41h207.69c14.56 0 26.41 11.85 26.41 26.41v133.26c0 14.56-11.85 26.41-26.41 26.41zm-156.34-87.87h56.97c3.31 0 6-2.69 6-6v-39.2l8.55-8.55c2.34-2.34 2.34-6.14 0-8.49-2.34-2.34-6.14-2.34-8.48 0l-.7.7c-.98-1.97-3.01-3.32-5.36-3.32h-56.98c-3.31 0-6 2.69-6 6v52.85c0 3.32 2.69 6.01 6 6.01zm6-52.86h44.97v2.69l-18.16 18.16-8.84-8.84c-2.34-2.34-6.14-2.34-8.49 0-2.34 2.34-2.34 6.14 0 8.49l13.08 13.08c1.17 1.17 2.71 1.76 4.24 1.76s3.07-.59 4.24-1.76l13.92-13.92v21.2h-44.96zm173.62 3.08c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 31.92c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 36.52c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.68 5.99 6zm0 31.92c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.69 5.99 6zm-119.36 165.01h10.84l-28.38-39.84-28.38 39.84h10.84c3.31 0 6 2.69 6 6v64.58h98.7c3.31 0 6 2.69 6 6s-2.69 6-6 6h-104.69c-3.31 0-6-2.69-6-6v-64.58h-16.48c-2.25 0-4.3-1.25-5.33-3.25s-.86-4.4.45-6.23l40.02-56.18c1.13-1.58 2.95-2.52 4.89-2.52s3.76.94 4.89 2.52l40.02 56.18c1.3 1.83 1.48 4.23.45 6.23s-3.09 3.25-5.33 3.25h-16.48v23.5h65.38c3.31 0 6 2.69 6 6s-2.69 6-6 6h-71.38c-3.31 0-6-2.69-6-6v-35.5c-.03-3.31 2.66-6 5.97-6z\"></path></svg>				\n									<h5>\n							ærlig<br> rådgivning						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 510 510\"><path d=\"m192.036 385.845c-4.787-46.972-19.459-64.336-30.658-82.352-8.672-13.951-15.5-28.245-15.5-54.252 0-60.242 48.865-109.109 109.135-109.109 60.242 0 109.109 48.866 109.109 109.109 0 26.007-6.828 40.301-15.5 54.252-11.199 18.016-25.871 35.38-30.658 82.352 9.985 2.864 17.345 12.101 17.345 22.975v36.44c0 13.109-10.747 23.866-23.893 23.866h-10.334v9.945c0 12.588-10.341 22.929-22.93 22.929h-46.304c-12.589 0-22.93-10.341-22.93-22.929v-9.945h-10.334c-13.146 0-23.893-10.757-23.893-23.866v-36.44c0-10.874 7.36-20.111 17.345-22.975zm111.948-.917c4.199-42.194 15.78-62.332 26.488-79.049 10.147-15.842 19.65-28.207 19.65-56.638 0-52.513-42.597-95.109-95.109-95.109-52.537 0-95.135 42.596-95.135 95.109 0 28.431 9.503 40.796 19.65 56.638 10.708 16.717 22.289 36.855 26.488 79.049zm2.554-78.61c-1.175 13.701-11.985 24.191-24.783 24.191-13.527 0-24.862-12.086-24.862-26.673v-99.328c0-14.12 11.335-26.673 24.862-26.673 11.309 0 21.031 8.139 23.975 19.497 9.12 3.904 15.688 13.438 15.688 24.78 0 1.153-.068 2.289-.201 3.403 5.078 5.326 8.283 12.802 8.283 21.117 0 6.39-1.889 12.262-5.06 17.053 1.996 4.099 3.13 8.773 3.13 13.76 0 14.1-9.065 25.697-21.032 28.873zm-16.452-109.977c-1.964-2.729-4.916-4.506-8.331-4.506-6.192 0-10.862 6.21-10.862 12.673v99.328c0 6.677 4.67 12.673 10.862 12.673 5.516 0 9.822-4.614 10.717-10.425-4.709-1.416-8.923-4.144-12.279-7.814-2.607-2.852-2.409-7.283.443-9.89 2.851-2.607 7.282-2.408 9.889.443 2.416 2.642 5.72 4.356 9.402 4.356 7.733 0 13.643-7.218 13.643-15.734s-5.91-15.734-13.643-15.734c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7 5.352 0 10.388 1.655 14.658 4.533.593-1.743.915-3.634.915-5.612 0-2.11-.366-4.128-1.036-5.972-.769.858-1.588 1.66-2.453 2.397-2.94 2.507-7.361 2.156-9.869-.784-2.507-2.939-2.155-7.361.784-9.868 2.773-2.365 4.492-6.122 4.492-10.293 0-6.072-3.705-11.374-8.898-12.467-.154-.023-.307-.052-.458-.085-.499-.08-1.01-.121-1.532-.121-2.947 0-5.591 1.389-7.515 3.525-2.585 2.87-7.015 3.101-9.886.515-2.87-2.586-3.101-7.015-.515-9.886 3.111-3.453 7.059-5.988 11.472-7.252zm-104.526 67.344c-3.171-4.791-5.06-10.663-5.06-17.053 0-8.307 3.198-15.777 8.284-21.104-.133-1.118-.202-2.258-.202-3.416 0-11.354 6.582-20.897 15.717-24.792 2.948-11.354 12.67-19.485 23.946-19.485 13.56 0 24.888 12.555 24.888 26.673v99.328c0 14.585-11.328 26.673-24.888 26.673-12.765 0-23.578-10.484-24.757-24.184-11.98-3.166-21.058-14.769-21.058-28.88 0-4.987 1.134-9.661 3.13-13.76zm9.982-23.036c-.675 1.847-1.042 3.869-1.042 5.983 0 1.978.322 3.869.915 5.612 4.27-2.878 9.306-4.533 14.658-4.533 3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7-7.733 0-13.643 7.218-13.643 15.734s5.91 15.734 13.643 15.734c3.682 0 6.986-1.714 9.402-4.356 2.607-2.851 7.038-3.05 9.889-.443 2.852 2.607 3.05 7.038.443 9.89-3.35 3.664-7.556 6.389-12.255 7.807.891 5.813 5.192 10.432 10.693 10.432 6.21 0 10.888-5.993 10.888-12.673v-99.328c0-6.466-4.678-12.673-10.888-12.673-3.404 0-6.349 1.777-8.309 4.507 4.421 1.264 8.367 3.8 11.476 7.251 2.586 2.871 2.355 7.3-.516 9.886-2.87 2.586-7.3 2.355-9.886-.515-1.926-2.138-4.574-3.525-7.54-3.525-.493 0-.976.037-1.448.108-.196.045-.395.082-.596.11-5.165 1.118-8.844 6.404-8.844 12.455 0 1.243.153 2.45.442 3.594.101.284.183.572.246.862.748 2.326 2.071 4.346 3.814 5.823 2.947 2.498 3.311 6.919.813 9.866s-6.919 3.312-9.866.814c-.878-.745-1.71-1.554-2.489-2.422zm3.042 158.279c-5.442 0-9.893 4.451-9.893 9.892v36.44c0 5.423 4.454 9.866 9.893 9.866h17.334c3.866 0 7 3.134 7 7v16.945c0 4.902 4.027 8.929 8.93 8.929h46.304c4.903 0 8.93-4.027 8.93-8.929v-16.945c0-3.866 3.134-7 7-7h17.334c5.439 0 9.893-4.443 9.893-9.866v-36.44c0-5.441-4.451-9.892-9.893-9.892zm63.416-314.093 2.907-5.412c1.828-3.403 6.075-4.683 9.479-2.854 3.403 1.828 4.682 6.075 2.854 9.479l-16.073 29.925c-1.22 2.271-3.589 3.688-6.167 3.688s-4.947-1.417-6.167-3.688l-16.073-29.925c-1.828-3.404-.549-7.651 2.854-9.479 3.404-1.829 7.651-.549 9.479 2.854l2.907 5.412v-69.835c0-3.863 3.137-7 7-7s7 3.137 7 7zm-132.198 54.758-49.381-49.381c-2.732-2.731-2.732-7.167 0-9.899s7.168-2.732 9.9 0l49.38 49.38-1.771-5.881c-1.114-3.7.985-7.608 4.684-8.722 3.7-1.114 7.607.985 8.721 4.685l9.796 32.526c.743 2.468.069 5.145-1.753 6.968-1.823 1.823-4.5 2.496-6.969 1.753l-32.526-9.795c-3.699-1.114-5.798-5.022-4.684-8.721s5.022-5.798 8.721-4.684zm-44.859 122.299h-69.835c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7h69.835l-5.412-2.907c-3.403-1.828-4.682-6.076-2.854-9.479 1.828-3.404 6.075-4.683 9.479-2.855l29.926 16.074c2.271 1.22 3.688 3.589 3.688 6.167 0 2.577-1.417 4.947-3.688 6.166l-29.926 16.074c-3.404 1.828-7.651.549-9.479-2.855-1.828-3.403-.549-7.651 2.854-9.479zm54.758 118.198-49.38 49.38c-2.732 2.732-7.168 2.732-9.9 0s-2.732-7.167 0-9.899l49.381-49.381-5.882 1.772c-3.699 1.114-7.607-.985-8.721-4.685-1.114-3.699.985-7.607 4.684-8.721l32.526-9.795c2.469-.743 5.146-.07 6.969 1.753 1.822 1.823 2.496 4.5 1.753 6.968l-9.796 32.527c-1.114 3.699-5.021 5.798-8.721 4.684-3.699-1.114-5.798-5.022-4.684-8.721zm240.497-240.497 5.882-1.771c3.699-1.114 7.607.985 8.721 4.684s-.985 7.607-4.684 8.721l-32.526 9.795c-2.469.743-5.146.07-6.969-1.753-1.822-1.823-2.496-4.5-1.753-6.968l9.796-32.526c1.114-3.7 5.021-5.799 8.721-4.685 3.699 1.114 5.798 5.022 4.684 8.722l-1.771 5.881 49.38-49.38c2.732-2.732 7.168-2.732 9.9 0s2.732 7.168 0 9.899zm44.859 122.299 5.412 2.906c3.403 1.828 4.682 6.076 2.854 9.479-1.828 3.404-6.075 4.683-9.479 2.855l-29.926-16.074c-2.271-1.219-3.688-3.589-3.688-6.166 0-2.578 1.417-4.947 3.688-6.167l29.926-16.074c3.404-1.828 7.651-.549 9.479 2.855 1.828 3.403.549 7.651-2.854 9.479l-5.412 2.907h69.835c3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7zm-54.758 118.198 1.771 5.882c1.114 3.699-.985 7.607-4.684 8.721-3.7 1.114-7.607-.985-8.721-4.684l-9.796-32.527c-.743-2.468-.069-5.145 1.753-6.968 1.823-1.823 4.5-2.496 6.969-1.753l32.526 9.795c3.699 1.114 5.798 5.022 4.684 8.721-1.114 3.7-5.022 5.799-8.721 4.685l-5.882-1.772 49.381 49.381c2.732 2.732 2.732 7.167 0 9.899s-7.168 2.732-9.9 0z\"></path></svg>				\n									<h5>\n							gennemtænkte løsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"outline\"><path d=\"M486.41,144A28,28,0,0,0,472,92H349.123l5.457-21.828a48.513,48.513,0,0,0-12.848-46.153A41.035,41.035,0,0,0,312.609,12H308a8.009,8.009,0,0,0-8,8V47.413l-19.233,64.112A17.376,17.376,0,0,1,268,123.539V112a4,4,0,0,0-4-4H152a4,4,0,0,0-4,4v72a4,4,0,0,0,8,0V116h72V276H156V248a4,4,0,0,0-8,0v32a4,4,0,0,0,4,4H264a4,4,0,0,0,4-4V268.5h11.168A37.07,37.07,0,0,1,305.092,279a45.025,45.025,0,0,0,31.48,12.752L440,292a27.987,27.987,0,0,0,19.369-48.2,27.987,27.987,0,0,0,16-48A28,28,0,0,0,486.41,144ZM260,276H236V116h24Zm212-88H396a4,4,0,0,0,0,8h60a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h40a20,20,0,0,1,.01,40l-103.428-.25a37.07,37.07,0,0,1-25.924-10.5,45.031,45.031,0,0,0-31.49-12.752H268V131.686a25.317,25.317,0,0,0,20.429-17.862l19.4-64.675A4,4,0,0,0,308,48V20h4.609a33.082,33.082,0,0,1,23.481,9.69,40.507,40.507,0,0,1,10.728,38.541l-6.7,26.8A4,4,0,0,0,344,100H472a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h72a20,20,0,0,1,0,40Z\"></path><path d=\"M194.5,183.243l-1.9-.217a4,4,0,0,0-4.169,2.491L184.29,195.9H135.278l-3.539-9.317a4,4,0,0,0-7.478,2.84l2.459,6.477h-8.474L68.452,156.872a4,4,0,1,0-4.935,6.3L77.6,174.209,56.961,194.48l-6.636-5.491a4,4,0,1,0-5.1,6.163L87.219,229.9a44.1,44.1,0,0,0,28.05,10.1H212a8.009,8.009,0,0,0,8-8V203.9a8.009,8.009,0,0,0-8-8h-8v-2.01A10.708,10.708,0,0,0,194.5,183.243ZM212,203.9V232H115.269a36.081,36.081,0,0,1-22.951-8.264l-29.16-24.128,20.8-20.422L114.4,203.045a4,4,0,0,0,2.468.852H187a4,4,0,0,0,3.715-2.517l3.929-9.843a2.712,2.712,0,0,1,1.356,2.35v6.01a4,4,0,0,0,4,4Z\"></path><path d=\"M223.084,484.672,200.87,469.863V346.36A44.1,44.1,0,0,0,195.327,325l-17.183-30.94a4,4,0,0,0-7,3.884l17.184,30.94a36.073,36.073,0,0,1,4.537,17.478V468H164.333a4,4,0,1,0,0,8h31.321l12,8H152.865V352a4,4,0,0,0-.358-1.655l-25.454-56A4,4,0,0,0,123.411,292H114.2a4,4,0,0,0-3.945,4.658l8.862,53.175a36.016,36.016,0,0,1-1.951,18.949L78.642,468H48.333a4,4,0,1,0,0,8H80.377L92,484H32.088L76.63,361.366a4.017,4.017,0,0,0,.183-2.044L61.1,268H136a4,4,0,0,0,0-8H59.233L30.555,173.966A19.723,19.723,0,0,1,49.27,148H76a12,12,0,0,0,24,0h15.2a21.975,21.975,0,0,1,8.395,1.652l10.889,4.458a4,4,0,1,0,3.032-7.4L126.63,142.25A29.938,29.938,0,0,0,115.2,140H100v-4.527A16.014,16.014,0,0,0,112,120V103.473A16.014,16.014,0,0,0,124,88V80a4,4,0,0,0-4-4H90A22.025,22.025,0,0,0,68,98v18a12.02,12.02,0,0,0,8,11.314V140H49.27a27.723,27.723,0,0,0-26.305,36.5l29.493,88.482,16.29,94.655-46.128,127A4,4,0,0,0,26.38,492h78.485a4,4,0,0,0,2.268-7.3L86.3,470.368l38.318-98.69a44.018,44.018,0,0,0,2.385-23.16L118.921,300h1.914l24.03,52.867V488a4,4,0,0,0,4,4h72a4,4,0,0,0,2.219-7.328ZM76,98A14.015,14.015,0,0,1,90,84h26v4a8.009,8.009,0,0,1-8,8H92a4,4,0,0,0-4,4,11.962,11.962,0,0,1-1.53,5.881A12.044,12.044,0,0,0,76,104.686Zm4,14a3.981,3.981,0,0,1,3.407,1.9,4,4,0,0,0,5.956.975c.207-.171.7-.648.7-.648.032-.028.061-.057.09-.087A19.907,19.907,0,0,0,95.6,104H104v16a8.009,8.009,0,0,1-8,8,12.133,12.133,0,0,1-2.681-.3,4,4,0,1,0-1.775,7.8c.151.035.3.06.456.091V148a4,4,0,1,1-8,0V124a4,4,0,0,0-4-4,4,4,0,0,1,0-8Z\"></path></g></svg>				\n									<h5>\n							arbejde udført med ansvar						\n					</h5>\n				<p>Vi lover ikke mere, end vi kan holde – men vi holder det, vi lover.</p>			<h2>KONTAKT OS</h2>		<p>Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.</p>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 13:55:36', '2026-01-26 13:55:36', '', 10, 'https://mrarif.me/cpnordic/?p=555', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(557, 1, '2026-01-26 13:55:50', '2026-01-26 13:55:50', '<h1>CP NORDIC ApS</h1>					<h4>Byggeri – Tømrerarbejde og tagdækning</h4>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle ANMELDELSER\n					</a>\n					<h2>HVORFOR VÆLGE CP NORDIC ApS?</h2>		<p>Når du vælger CP NORDIC ApS, får du:</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 450 450\" width=\"512\"><g><g><path d=\"m225 165.2c-25.9 0-48.9-18.8-53.3-45.2-2.4-14.2.9-28.6 9.3-40.3 8.4-11.8 20.9-19.5 35.1-21.9 29.4-4.9 57.3 15 62.2 44.5 4.9 29.4-15 57.3-44.4 62.2-3 .5-6 .7-8.9.7zm-7.6-99.8c-12.2 2-22.9 8.7-30.1 18.8s-10.1 22.4-8 34.6c3.8 22.7 23.5 38.8 45.7 38.8 2.5 0 5.1-.2 7.6-.6 25.2-4.2 42.3-28.1 38.1-53.4s-28.1-42.4-53.3-38.2z\"></path><path d=\"m255.2 115c-2.1 0-3.8-1.7-3.8-3.8 0-14.6-11.8-26.4-26.4-26.4-2.1 0-3.8-1.7-3.8-3.8s1.7-3.8 3.8-3.8c18.8 0 34.1 15.3 34.1 34.1 0 2-1.8 3.7-3.9 3.7z\"></path><path d=\"m236.1 203h-22.2c-2.1 0-3.8-1.7-3.8-3.8v-14.1c-3.1-.6-6.1-1.4-9.1-2.4l-7 12.2c-1.1 1.8-3.4 2.5-5.3 1.4l-19.2-11.1c-.9-.5-1.5-1.4-1.8-2.3-.3-1-.1-2 .4-2.9l7-12.1c-2.4-2.1-4.6-4.3-6.7-6.6l-12.1 7c-1.8 1.1-4.2.4-5.2-1.4l-11.1-19.2c-1.1-1.8-.4-4.2 1.4-5.2l11.9-6.8c-1-3-1.9-6.1-2.6-9.3h-13.7c-2.1 0-3.8-1.7-3.8-3.8v-22.2c0-2.1 1.7-3.8 3.8-3.8h13.4c.6-3.2 1.4-6.4 2.4-9.5l-11.5-6.6c-1.8-1.1-2.5-3.4-1.4-5.3l11.1-19.6c.5-.9 1.4-1.5 2.3-1.8s2-.1 2.9.4l11.3 6.6c2.2-2.5 4.5-4.8 7-7l-6.5-11.3c-.5-.9-.6-1.9-.4-2.9.3-1 .9-1.8 1.8-2.3l19.2-11.1c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l6.4 11.2c3.1-1.1 6.4-1.9 9.7-2.6v-13c0-2.1 1.7-3.8 3.8-3.8h22.2c2.1 0 3.8 1.7 3.8 3.8v12.8c3.3.7 6.5 1.5 9.7 2.6l6.5-11.2c.5-.9 1.4-1.5 2.3-1.8 1-.3 2-.1 2.9.4l19.2 11.1c.9.5 1.5 1.3 1.8 2.3s.1 2-.4 2.9l-6.5 11.3c2.5 2.2 4.8 4.5 7 7.1l11.3-6.6c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l11.1 19.2c1.1 1.8.4 4.2-1.4 5.3l-11.5 6.6c1 3.1 1.8 6.3 2.5 9.5h13.6c2.1 0 3.8 1.7 3.8 3.8v22.2c0 2.1-1.7 3.8-3.8 3.8h-13.6c-.6 3.1-1.5 6.2-2.5 9.3l11.9 6.8c1.8 1.1 2.5 3.4 1.4 5.2l-11.2 19.5c-1.1 1.8-3.4 2.5-5.2 1.4l-12-7c-2.1 2.4-4.4 4.6-6.7 6.6l7 12.1c.5.9.6 1.9.4 2.9s-.9 1.8-1.8 2.3l-19.2 11.1c-1.8 1.1-4.2.4-5.2-1.4l-7-12.2c-3 1-6 1.8-9.1 2.4v14.1c-.2 2.3-2 4-4.1 4zm-18.4-7.7h14.5v-13.5c0-1.9 1.4-3.5 3.3-3.8 4.7-.7 9.4-2 13.8-3.7 1.8-.7 3.8 0 4.7 1.7l6.7 11.6 12.6-7.3-6.7-11.6c-1-1.6-.5-3.7.9-4.9 3.7-3 7.2-6.4 10.2-10.1 1.2-1.5 3.3-1.8 4.9-.9l11.5 6.6 7.3-12.6-11.3-6.5c-1.6-.9-2.4-3-1.6-4.7 1.8-4.5 3.1-9.2 3.9-14 .3-1.9 1.9-3.2 3.8-3.2h13v-14.6h-12.8c-1.9 0-3.5-1.4-3.8-3.3-.7-4.8-2-9.6-3.7-14.2-.7-1.8 0-3.7 1.7-4.7l10.9-6.3-7.3-12.6-10.8 6.3c-1.6.9-3.7.6-4.9-.9-3.1-3.9-6.6-7.4-10.4-10.6-1.5-1.2-1.9-3.3-.9-4.9l6.2-10.7-12.6-7.3-6.1 10.6c-1 1.6-3 2.3-4.7 1.7-4.6-1.8-9.5-3.1-14.4-3.9-1.9-.3-3.3-1.9-3.3-3.8v-12.2h-14.5v12.3c0 1.9-1.4 3.5-3.3 3.8-5 .8-9.8 2.1-14.4 3.9-1.8.7-3.8 0-4.7-1.7l-6.1-10.6-12.6 7.3 6.2 10.7c.9 1.6.6 3.7-.9 4.9-3.9 3.1-7.4 6.7-10.4 10.6-1.2 1.5-3.3 1.9-4.9.9l-10.8-6.3-7.3 12.6 10.9 6.3c1.6.9 2.3 2.9 1.7 4.7-1.7 4.6-3 9.4-3.7 14.2-.3 1.9-1.9 3.3-3.8 3.3h-12.8v14.5h13c1.9 0 3.5 1.4 3.8 3.2.8 4.8 2.1 9.5 3.9 14 .7 1.8 0 3.8-1.6 4.7l-11.3 6.5 7.3 12.6 11.5-6.6c1.6-.9 3.7-.6 4.9.9 3 3.7 6.5 7.1 10.3 10.1 1.5 1.2 1.9 3.3.9 4.9l-6.7 11.6 12.6 7.3 6.7-11.6c.9-1.6 2.9-2.3 4.7-1.7 4.5 1.7 9.1 2.9 13.8 3.7 1.9.3 3.3 1.9 3.3 3.8z\"></path></g><g><g><g><path d=\"m45.3 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m153.9 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path></g><g><path d=\"m189.3 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.2c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c0 2.1-1.7 3.8-3.8 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m73.3 326.4c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m126 326.4c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m99.7 325.6c-.6 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4s4.1 1.1 4.4 3.2c2.4 16.5 12.3 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m50.2 266.6c-.1 0-.2 0-.3 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.7 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-8.9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.5 2.2zm81.8-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13.1-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.4-.7 2.3-.7z\"></path></g></g></g><g><g><path d=\"m296.1 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m404.7 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path></g><g><path d=\"m440 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.1c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c.2 2.1-1.6 3.8-3.7 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m324 326.3c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m376.7 326.3c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m350.4 325.6c-.5 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4 2.1-.3 4 1.1 4.4 3.2 2.4 16.5 12.4 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m301 266.6c-.1 0-.2 0-.4 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.6 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.4 2.2zm81.7-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.5-.7 2.3-.7z\"></path></g></g></g></g></g></svg>				\n									<h5>\n							et ungt og engageret team						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"496pt\" viewBox=\"0 0 496 496\" width=\"496pt\"><path d=\"m440 328h-28.207031c5.078125-6.703125 8.207031-14.960938 8.207031-24 0-8.824219-7.175781-16-16-16h-12v-19.960938c59.574219-14.445312 104-68.085937 104-132.039062 0-74.992188-61.007812-136-136-136s-136 61.007812-136 136c0 63.953125 44.425781 117.59375 104 132.039062v19.960938h-8.449219c-6.167969 0-12.359375 1.464844-17.886719 4.214844l-50.480468 25.25c-3.320313 1.664062-7.03125 2.535156-10.734375 2.535156h-40.449219v-16h-104v16h56v56h16v-56h16v128h-16v-56h-16v56h-56v16h104v-16h40.449219c3.703125 0 7.414062.871094 10.734375 2.527344l34.488281 17.25c5.519531 2.757812 11.710937 4.222656 17.878906 4.222656h24.449219v24h64v-24h48c13.230469 0 24-10.769531 24-24 0-6.167969-2.40625-11.742188-6.238281-16 3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16 0-13.230469-10.769531-24-24-24zm8 24c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm-208-280c0-66.167969 53.832031-120 120-120s120 53.832031 120 120-53.832031 120-120 120-120-53.832031-120-120zm104 134.976562c5.257812.617188 10.574219 1.023438 16 1.023438s10.742188-.40625 16-1.023438v17.023438h-32zm-40.449219 185.023438c-3.703125 0-7.414062-.871094-10.734375-2.527344l-34.488281-17.25c-5.519531-2.757812-11.710937-4.222656-17.878906-4.222656h-40.449219v-96h40.449219c6.167969 0 12.359375-1.464844 17.886719-4.214844l50.480468-25.25c3.320313-1.664062 7.03125-2.535156 10.734375-2.535156h84.449219c0 13.230469-10.769531 24-24 24h-48.28125l-23.863281 35.808594c-6.101563 9.160156-14.527344 16.589844-24.367188 21.503906-8.753906 4.375-18.542969 6.6875-28.320312 6.6875h-15.167969v16h15.167969c12.246093 0 24.519531-2.894531 35.472656-8.375 12.328125-6.160156 22.878906-15.480469 30.527344-26.945312l6.832031-10.253907v93.574219zm40.449219 24v-136h17.472656c-.898437 2.511719-1.472656 5.183594-1.472656 8 0 6.167969 2.40625 11.742188 6.238281 16-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16 0 10.414062 6.710938 19.214844 16 22.527344v9.472656zm96-24h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8s-3.59375 8-8 8zm0 0\"></path><path d=\"m394.878906 73.007812-7.757812 13.984376c17.816406 9.878906 28.878906 28.664062 28.878906 49.007812h16c0-26.160156-14.222656-50.296875-37.121094-62.992188zm0 0\"></path><path d=\"m360 80c4.734375 0 9.449219.59375 14.007812 1.769531l3.976563-15.503906c-5.855469-1.496094-11.90625-2.265625-17.984375-2.265625zm0 0\"></path><path d=\"m360 48c48.519531 0 88 39.480469 88 88 0 20.753906-7.398438 40.910156-20.832031 56.785156l12.207031 10.34375c15.882812-18.761718 24.625-42.601562 24.625-67.128906 0-57.34375-46.65625-104-104-104-24.527344 0-48.367188 8.753906-67.128906 24.632812l10.335937 12.199219c15.871094-13.433593 36.039063-20.832031 56.792969-20.832031zm0 0\"></path><path d=\"m427.128906 215.367188-10.335937-12.199219c-15.871094 13.433593-36.039063 20.832031-56.792969 20.832031-48.519531 0-88-39.480469-88-88 0-20.753906 7.398438-40.910156 20.832031-56.785156l-12.207031-10.34375c-15.882812 18.761718-24.625 42.601562-24.625 67.128906 0 57.34375 46.65625 104 104 104 24.527344 0 48.367188-8.753906 67.128906-24.632812zm0 0\"></path><path d=\"m121.214844 165.640625c4.953125-1.375 9.695312-3.34375 14.183594-5.878906l9.769531 4.886719 19.472656-19.480469-4.886719-9.769531c2.535156-4.496094 4.503906-9.230469 5.886719-14.183594l10.359375-3.445313v-27.53125l-10.351562-3.453125c-1.375-4.953125-3.34375-9.707031-5.886719-14.183594l4.886719-9.777343-19.472657-19.472657-9.769531 4.886719c-4.484375-2.535156-9.230469-4.503906-14.183594-5.878906l-3.453125-10.359375h-27.539062l-3.445313 10.359375c-4.953125 1.375-9.695312 3.34375-14.183594 5.878906l-9.777343-4.886719-19.472657 19.472657 4.886719 9.777343c-2.535156 4.488282-4.503906 9.230469-5.886719 14.183594l-10.351562 3.445313v27.53125l10.351562 3.453125c1.375 4.953125 3.34375 9.695312 5.886719 14.183594l-4.886719 9.769531 19.472657 19.480469 9.769531-4.886719c4.484375 2.535156 9.230469 4.503906 14.183594 5.878906l3.453125 10.359375h27.539062zm-12.304688-13.679687-2.679687 8.039062h-4.460938l-2.679687-8.039062-4.554688-.90625c-6.128906-1.222657-11.878906-3.605469-17.109375-7.09375l-3.867187-2.578126-7.574219 3.800782-3.160156-3.167969 3.792969-7.582031-2.578126-3.859375c-3.488281-5.222657-5.871093-10.980469-7.09375-17.109375l-.914062-4.554688-8.03125-2.679687v-4.46875l8.03125-2.671875.914062-4.554688c1.222657-6.136718 3.613282-11.886718 7.09375-17.109375l2.578126-3.859375-3.792969-7.589844 3.160156-3.160156 7.574219 3.800782 3.867187-2.578126c5.222657-3.488281 10.980469-5.863281 17.109375-7.09375l4.554688-.90625 2.679687-8.039062h4.460938l2.679687 8.039062 4.554688.90625c6.128906 1.222657 11.878906 3.605469 17.109375 7.09375l3.867187 2.578126 7.574219-3.800782 3.160156 3.160156-3.792969 7.589844 2.578126 3.859375c3.488281 5.214844 5.871093 10.972657 7.09375 17.109375l.914062 4.554688 8.03125 2.679687v4.46875l-8.03125 2.671875-.914062 4.554688c-1.222657 6.128906-3.613282 11.878906-7.09375 17.109375l-2.578126 3.859375 3.792969 7.582031-3.160156 3.167969-7.574219-3.800782-3.867187 2.578126c-5.222657 3.488281-10.980469 5.863281-17.109375 7.09375zm0 0\"></path><path d=\"m104 72c-17.648438 0-32 14.351562-32 32s14.351562 32 32 32 32-14.351562 32-32-14.351562-32-32-32zm0 48c-8.824219 0-16-7.175781-16-16s7.175781-16 16-16 16 7.175781 16 16-7.175781 16-16 16zm0 0\"></path><path d=\"m160 248v-40h48v-208h-208v208h106.664062zm-144-232h176v176h-48v24l-32-24h-96zm0 0\"></path><path d=\"m0 272h16v16h-16zm0 0\"></path><path d=\"m32 272h16v16h-16zm0 0\"></path><path d=\"m64 272h16v16h-16zm0 0\"></path><path d=\"m32 304h16v16h-16zm0 0\"></path><path d=\"m64 304h16v16h-16zm0 0\"></path><path d=\"m0 480h16v16h-16zm0 0\"></path><path d=\"m32 480h16v16h-16zm0 0\"></path><path d=\"m64 480h16v16h-16zm0 0\"></path><path d=\"m32 448h16v16h-16zm0 0\"></path><path d=\"m64 448h16v16h-16zm0 0\"></path></svg>				\n									<h5>\n							fokus på kvalitet og detaljer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m469.12 408.93-67.26-33.63v-22.13c10.71-7.69 18.6-19.07 21.78-32.27h5.28c8.81 0 15.98-7.17 15.98-15.98v-5.29c0-6.35-3.74-11.84-9.12-14.41 5.19-18.64-1.65-39.76-19.44-59.78-12.58-14.16-30.67-22.27-49.62-22.27-18.93 0-37.01 8.12-49.59 22.27-13.38 15.05-20.95 41.01-14.03 59.62-5.56 2.5-9.45 8.09-9.45 14.57v5.29c0 8.81 7.17 15.98 15.98 15.98h5.55c3.16 13.09 10.94 24.39 21.51 32.08v22.32l-67.26 33.63c-16.7 5.87-27.89 21.6-27.89 39.28v41.63c0 3.31 2.69 6 6 6h243.46c3.31 0 6-2.69 6-6v-41.63c0-17.68-11.19-33.41-27.88-39.28zm-62.24-17.7-15.83 27.66-13.29-13.29 19.29-19.29zm-37.61 5.88-20.59-20.58v-16.91c6.41 2.57 13.4 4.01 20.72 4.01 7.22 0 14.11-1.39 20.45-3.9v16.8zm63.63-97.48v5.29c0 2.16-1.82 3.98-3.98 3.98h-3.74c.01-.36.03-.71.03-1.07v-12.18h3.71c2.15-.01 3.98 1.82 3.98 3.98zm-119.29 8.2v1.07h-3.98c-2.16 0-3.98-1.82-3.98-3.98v-5.29c0-2.16 1.82-3.98 3.98-3.98l3.98.22zm1.95-24.19c-7.33-13.69-.89-37.39 10.53-50.24 10.31-11.6 25.12-18.25 40.63-18.25 15.52 0 30.34 6.65 40.65 18.25 8.43 9.48 21.3 27.59 17.4 46.39-5.66-.35-10.67-2.55-14.4-6.36-5.37-5.49-7.72-14-6.63-23.94.29-2.62-1.17-5.13-3.6-6.17s-5.25-.37-6.95 1.65c-19.33 22.92-45.95 36.76-73.9 38.68h-3.73zm10.05 24.19v-12.73c24.57-2.92 47.92-14.05 66.73-31.8 1.43 7.26 4.63 13.6 9.45 18.52 3.27 3.35 7.14 5.89 11.41 7.58v18.42c0 24.15-19.65 43.8-43.8 43.8s-43.79-19.64-43.79-43.79zm15.89 78.48 19.29 19.29-13.29 13.29-15.84-27.66zm3.22 97.53h-39.42v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.76v-35.63c0-12.68 8.1-23.95 20.15-28.05.26-.09.51-.19.75-.31l46.47-23.23 20.07 35.06c.93 1.62 2.56 2.72 4.41 2.97.27.04.53.05.79.05 1.58 0 3.11-.62 4.24-1.76l.14-.14zm12.08 0 7.41-64.69 5.06-5.06 4.84 4.84 7.86 64.92h-25.17zm128.2 0h-39.76v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.18l-6.2-51.17.25.25c1.13 1.13 2.66 1.76 4.24 1.76.26 0 .53-.02.79-.05 1.85-.25 3.48-1.34 4.41-2.97l20.07-35.06 46.47 23.23c.24.12.49.23.75.31 12.05 4.1 20.15 15.38 20.15 28.05v35.65zm-67.04-346.65h-10.84l28.38 39.84 28.38-39.84h-10.84c-3.31 0-6-2.69-6-6v-64.58h-98.7c-3.31 0-6-2.69-6-6s2.69-6 6-6h104.7c3.31 0 6 2.69 6 6v64.58h16.48c2.25 0 4.3 1.25 5.33 3.25s.86 4.4-.45 6.23l-40.02 56.18c-1.13 1.58-2.95 2.52-4.89 2.52s-3.76-.94-4.89-2.52l-40.02-56.18c-1.3-1.83-1.48-4.23-.45-6.23s3.09-3.25 5.33-3.25h16.48v-23.5h-65.38c-3.31 0-6-2.69-6-6s2.69-6 6-6h71.38c3.31 0 6 2.69 6 6v35.5c.02 3.31-2.67 6-5.98 6zm-118.44 50.65v-133.26c0-21.18-17.23-38.41-38.41-38.41h-207.7c-21.18-.01-38.41 17.23-38.41 38.41v133.26c0 21.18 17.23 38.41 38.41 38.41h105.8l64.8 55.11c1.11.94 2.49 1.43 3.89 1.43.85 0 1.71-.18 2.52-.55 2.12-.98 3.48-3.11 3.48-5.45v-50.54h27.21c21.18 0 38.41-17.23 38.41-38.41zm-71.62 26.41c-3.31 0-6 2.69-6 6v43.56l-56.59-48.13c-1.08-.92-2.46-1.43-3.89-1.43h-108.01c-14.56 0-26.41-11.85-26.41-26.41v-133.26c0-14.56 11.85-26.41 26.41-26.41h207.69c14.56 0 26.41 11.85 26.41 26.41v133.26c0 14.56-11.85 26.41-26.41 26.41zm-156.34-87.87h56.97c3.31 0 6-2.69 6-6v-39.2l8.55-8.55c2.34-2.34 2.34-6.14 0-8.49-2.34-2.34-6.14-2.34-8.48 0l-.7.7c-.98-1.97-3.01-3.32-5.36-3.32h-56.98c-3.31 0-6 2.69-6 6v52.85c0 3.32 2.69 6.01 6 6.01zm6-52.86h44.97v2.69l-18.16 18.16-8.84-8.84c-2.34-2.34-6.14-2.34-8.49 0-2.34 2.34-2.34 6.14 0 8.49l13.08 13.08c1.17 1.17 2.71 1.76 4.24 1.76s3.07-.59 4.24-1.76l13.92-13.92v21.2h-44.96zm173.62 3.08c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 31.92c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 36.52c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.68 5.99 6zm0 31.92c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.69 5.99 6zm-119.36 165.01h10.84l-28.38-39.84-28.38 39.84h10.84c3.31 0 6 2.69 6 6v64.58h98.7c3.31 0 6 2.69 6 6s-2.69 6-6 6h-104.69c-3.31 0-6-2.69-6-6v-64.58h-16.48c-2.25 0-4.3-1.25-5.33-3.25s-.86-4.4.45-6.23l40.02-56.18c1.13-1.58 2.95-2.52 4.89-2.52s3.76.94 4.89 2.52l40.02 56.18c1.3 1.83 1.48 4.23.45 6.23s-3.09 3.25-5.33 3.25h-16.48v23.5h65.38c3.31 0 6 2.69 6 6s-2.69 6-6 6h-71.38c-3.31 0-6-2.69-6-6v-35.5c-.03-3.31 2.66-6 5.97-6z\"></path></svg>				\n									<h5>\n							ærlig<br> rådgivning						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 510 510\"><path d=\"m192.036 385.845c-4.787-46.972-19.459-64.336-30.658-82.352-8.672-13.951-15.5-28.245-15.5-54.252 0-60.242 48.865-109.109 109.135-109.109 60.242 0 109.109 48.866 109.109 109.109 0 26.007-6.828 40.301-15.5 54.252-11.199 18.016-25.871 35.38-30.658 82.352 9.985 2.864 17.345 12.101 17.345 22.975v36.44c0 13.109-10.747 23.866-23.893 23.866h-10.334v9.945c0 12.588-10.341 22.929-22.93 22.929h-46.304c-12.589 0-22.93-10.341-22.93-22.929v-9.945h-10.334c-13.146 0-23.893-10.757-23.893-23.866v-36.44c0-10.874 7.36-20.111 17.345-22.975zm111.948-.917c4.199-42.194 15.78-62.332 26.488-79.049 10.147-15.842 19.65-28.207 19.65-56.638 0-52.513-42.597-95.109-95.109-95.109-52.537 0-95.135 42.596-95.135 95.109 0 28.431 9.503 40.796 19.65 56.638 10.708 16.717 22.289 36.855 26.488 79.049zm2.554-78.61c-1.175 13.701-11.985 24.191-24.783 24.191-13.527 0-24.862-12.086-24.862-26.673v-99.328c0-14.12 11.335-26.673 24.862-26.673 11.309 0 21.031 8.139 23.975 19.497 9.12 3.904 15.688 13.438 15.688 24.78 0 1.153-.068 2.289-.201 3.403 5.078 5.326 8.283 12.802 8.283 21.117 0 6.39-1.889 12.262-5.06 17.053 1.996 4.099 3.13 8.773 3.13 13.76 0 14.1-9.065 25.697-21.032 28.873zm-16.452-109.977c-1.964-2.729-4.916-4.506-8.331-4.506-6.192 0-10.862 6.21-10.862 12.673v99.328c0 6.677 4.67 12.673 10.862 12.673 5.516 0 9.822-4.614 10.717-10.425-4.709-1.416-8.923-4.144-12.279-7.814-2.607-2.852-2.409-7.283.443-9.89 2.851-2.607 7.282-2.408 9.889.443 2.416 2.642 5.72 4.356 9.402 4.356 7.733 0 13.643-7.218 13.643-15.734s-5.91-15.734-13.643-15.734c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7 5.352 0 10.388 1.655 14.658 4.533.593-1.743.915-3.634.915-5.612 0-2.11-.366-4.128-1.036-5.972-.769.858-1.588 1.66-2.453 2.397-2.94 2.507-7.361 2.156-9.869-.784-2.507-2.939-2.155-7.361.784-9.868 2.773-2.365 4.492-6.122 4.492-10.293 0-6.072-3.705-11.374-8.898-12.467-.154-.023-.307-.052-.458-.085-.499-.08-1.01-.121-1.532-.121-2.947 0-5.591 1.389-7.515 3.525-2.585 2.87-7.015 3.101-9.886.515-2.87-2.586-3.101-7.015-.515-9.886 3.111-3.453 7.059-5.988 11.472-7.252zm-104.526 67.344c-3.171-4.791-5.06-10.663-5.06-17.053 0-8.307 3.198-15.777 8.284-21.104-.133-1.118-.202-2.258-.202-3.416 0-11.354 6.582-20.897 15.717-24.792 2.948-11.354 12.67-19.485 23.946-19.485 13.56 0 24.888 12.555 24.888 26.673v99.328c0 14.585-11.328 26.673-24.888 26.673-12.765 0-23.578-10.484-24.757-24.184-11.98-3.166-21.058-14.769-21.058-28.88 0-4.987 1.134-9.661 3.13-13.76zm9.982-23.036c-.675 1.847-1.042 3.869-1.042 5.983 0 1.978.322 3.869.915 5.612 4.27-2.878 9.306-4.533 14.658-4.533 3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7-7.733 0-13.643 7.218-13.643 15.734s5.91 15.734 13.643 15.734c3.682 0 6.986-1.714 9.402-4.356 2.607-2.851 7.038-3.05 9.889-.443 2.852 2.607 3.05 7.038.443 9.89-3.35 3.664-7.556 6.389-12.255 7.807.891 5.813 5.192 10.432 10.693 10.432 6.21 0 10.888-5.993 10.888-12.673v-99.328c0-6.466-4.678-12.673-10.888-12.673-3.404 0-6.349 1.777-8.309 4.507 4.421 1.264 8.367 3.8 11.476 7.251 2.586 2.871 2.355 7.3-.516 9.886-2.87 2.586-7.3 2.355-9.886-.515-1.926-2.138-4.574-3.525-7.54-3.525-.493 0-.976.037-1.448.108-.196.045-.395.082-.596.11-5.165 1.118-8.844 6.404-8.844 12.455 0 1.243.153 2.45.442 3.594.101.284.183.572.246.862.748 2.326 2.071 4.346 3.814 5.823 2.947 2.498 3.311 6.919.813 9.866s-6.919 3.312-9.866.814c-.878-.745-1.71-1.554-2.489-2.422zm3.042 158.279c-5.442 0-9.893 4.451-9.893 9.892v36.44c0 5.423 4.454 9.866 9.893 9.866h17.334c3.866 0 7 3.134 7 7v16.945c0 4.902 4.027 8.929 8.93 8.929h46.304c4.903 0 8.93-4.027 8.93-8.929v-16.945c0-3.866 3.134-7 7-7h17.334c5.439 0 9.893-4.443 9.893-9.866v-36.44c0-5.441-4.451-9.892-9.893-9.892zm63.416-314.093 2.907-5.412c1.828-3.403 6.075-4.683 9.479-2.854 3.403 1.828 4.682 6.075 2.854 9.479l-16.073 29.925c-1.22 2.271-3.589 3.688-6.167 3.688s-4.947-1.417-6.167-3.688l-16.073-29.925c-1.828-3.404-.549-7.651 2.854-9.479 3.404-1.829 7.651-.549 9.479 2.854l2.907 5.412v-69.835c0-3.863 3.137-7 7-7s7 3.137 7 7zm-132.198 54.758-49.381-49.381c-2.732-2.731-2.732-7.167 0-9.899s7.168-2.732 9.9 0l49.38 49.38-1.771-5.881c-1.114-3.7.985-7.608 4.684-8.722 3.7-1.114 7.607.985 8.721 4.685l9.796 32.526c.743 2.468.069 5.145-1.753 6.968-1.823 1.823-4.5 2.496-6.969 1.753l-32.526-9.795c-3.699-1.114-5.798-5.022-4.684-8.721s5.022-5.798 8.721-4.684zm-44.859 122.299h-69.835c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7h69.835l-5.412-2.907c-3.403-1.828-4.682-6.076-2.854-9.479 1.828-3.404 6.075-4.683 9.479-2.855l29.926 16.074c2.271 1.22 3.688 3.589 3.688 6.167 0 2.577-1.417 4.947-3.688 6.166l-29.926 16.074c-3.404 1.828-7.651.549-9.479-2.855-1.828-3.403-.549-7.651 2.854-9.479zm54.758 118.198-49.38 49.38c-2.732 2.732-7.168 2.732-9.9 0s-2.732-7.167 0-9.899l49.381-49.381-5.882 1.772c-3.699 1.114-7.607-.985-8.721-4.685-1.114-3.699.985-7.607 4.684-8.721l32.526-9.795c2.469-.743 5.146-.07 6.969 1.753 1.822 1.823 2.496 4.5 1.753 6.968l-9.796 32.527c-1.114 3.699-5.021 5.798-8.721 4.684-3.699-1.114-5.798-5.022-4.684-8.721zm240.497-240.497 5.882-1.771c3.699-1.114 7.607.985 8.721 4.684s-.985 7.607-4.684 8.721l-32.526 9.795c-2.469.743-5.146.07-6.969-1.753-1.822-1.823-2.496-4.5-1.753-6.968l9.796-32.526c1.114-3.7 5.021-5.799 8.721-4.685 3.699 1.114 5.798 5.022 4.684 8.722l-1.771 5.881 49.38-49.38c2.732-2.732 7.168-2.732 9.9 0s2.732 7.168 0 9.899zm44.859 122.299 5.412 2.906c3.403 1.828 4.682 6.076 2.854 9.479-1.828 3.404-6.075 4.683-9.479 2.855l-29.926-16.074c-2.271-1.219-3.688-3.589-3.688-6.166 0-2.578 1.417-4.947 3.688-6.167l29.926-16.074c3.404-1.828 7.651-.549 9.479 2.855 1.828 3.403.549 7.651-2.854 9.479l-5.412 2.907h69.835c3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7zm-54.758 118.198 1.771 5.882c1.114 3.699-.985 7.607-4.684 8.721-3.7 1.114-7.607-.985-8.721-4.684l-9.796-32.527c-.743-2.468-.069-5.145 1.753-6.968 1.823-1.823 4.5-2.496 6.969-1.753l32.526 9.795c3.699 1.114 5.798 5.022 4.684 8.721-1.114 3.7-5.022 5.799-8.721 4.685l-5.882-1.772 49.381 49.381c2.732 2.732 2.732 7.167 0 9.899s-7.168 2.732-9.9 0z\"></path></svg>				\n									<h5>\n							gennemtænkte løsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"outline\"><path d=\"M486.41,144A28,28,0,0,0,472,92H349.123l5.457-21.828a48.513,48.513,0,0,0-12.848-46.153A41.035,41.035,0,0,0,312.609,12H308a8.009,8.009,0,0,0-8,8V47.413l-19.233,64.112A17.376,17.376,0,0,1,268,123.539V112a4,4,0,0,0-4-4H152a4,4,0,0,0-4,4v72a4,4,0,0,0,8,0V116h72V276H156V248a4,4,0,0,0-8,0v32a4,4,0,0,0,4,4H264a4,4,0,0,0,4-4V268.5h11.168A37.07,37.07,0,0,1,305.092,279a45.025,45.025,0,0,0,31.48,12.752L440,292a27.987,27.987,0,0,0,19.369-48.2,27.987,27.987,0,0,0,16-48A28,28,0,0,0,486.41,144ZM260,276H236V116h24Zm212-88H396a4,4,0,0,0,0,8h60a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h40a20,20,0,0,1,.01,40l-103.428-.25a37.07,37.07,0,0,1-25.924-10.5,45.031,45.031,0,0,0-31.49-12.752H268V131.686a25.317,25.317,0,0,0,20.429-17.862l19.4-64.675A4,4,0,0,0,308,48V20h4.609a33.082,33.082,0,0,1,23.481,9.69,40.507,40.507,0,0,1,10.728,38.541l-6.7,26.8A4,4,0,0,0,344,100H472a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h72a20,20,0,0,1,0,40Z\"></path><path d=\"M194.5,183.243l-1.9-.217a4,4,0,0,0-4.169,2.491L184.29,195.9H135.278l-3.539-9.317a4,4,0,0,0-7.478,2.84l2.459,6.477h-8.474L68.452,156.872a4,4,0,1,0-4.935,6.3L77.6,174.209,56.961,194.48l-6.636-5.491a4,4,0,1,0-5.1,6.163L87.219,229.9a44.1,44.1,0,0,0,28.05,10.1H212a8.009,8.009,0,0,0,8-8V203.9a8.009,8.009,0,0,0-8-8h-8v-2.01A10.708,10.708,0,0,0,194.5,183.243ZM212,203.9V232H115.269a36.081,36.081,0,0,1-22.951-8.264l-29.16-24.128,20.8-20.422L114.4,203.045a4,4,0,0,0,2.468.852H187a4,4,0,0,0,3.715-2.517l3.929-9.843a2.712,2.712,0,0,1,1.356,2.35v6.01a4,4,0,0,0,4,4Z\"></path><path d=\"M223.084,484.672,200.87,469.863V346.36A44.1,44.1,0,0,0,195.327,325l-17.183-30.94a4,4,0,0,0-7,3.884l17.184,30.94a36.073,36.073,0,0,1,4.537,17.478V468H164.333a4,4,0,1,0,0,8h31.321l12,8H152.865V352a4,4,0,0,0-.358-1.655l-25.454-56A4,4,0,0,0,123.411,292H114.2a4,4,0,0,0-3.945,4.658l8.862,53.175a36.016,36.016,0,0,1-1.951,18.949L78.642,468H48.333a4,4,0,1,0,0,8H80.377L92,484H32.088L76.63,361.366a4.017,4.017,0,0,0,.183-2.044L61.1,268H136a4,4,0,0,0,0-8H59.233L30.555,173.966A19.723,19.723,0,0,1,49.27,148H76a12,12,0,0,0,24,0h15.2a21.975,21.975,0,0,1,8.395,1.652l10.889,4.458a4,4,0,1,0,3.032-7.4L126.63,142.25A29.938,29.938,0,0,0,115.2,140H100v-4.527A16.014,16.014,0,0,0,112,120V103.473A16.014,16.014,0,0,0,124,88V80a4,4,0,0,0-4-4H90A22.025,22.025,0,0,0,68,98v18a12.02,12.02,0,0,0,8,11.314V140H49.27a27.723,27.723,0,0,0-26.305,36.5l29.493,88.482,16.29,94.655-46.128,127A4,4,0,0,0,26.38,492h78.485a4,4,0,0,0,2.268-7.3L86.3,470.368l38.318-98.69a44.018,44.018,0,0,0,2.385-23.16L118.921,300h1.914l24.03,52.867V488a4,4,0,0,0,4,4h72a4,4,0,0,0,2.219-7.328ZM76,98A14.015,14.015,0,0,1,90,84h26v4a8.009,8.009,0,0,1-8,8H92a4,4,0,0,0-4,4,11.962,11.962,0,0,1-1.53,5.881A12.044,12.044,0,0,0,76,104.686Zm4,14a3.981,3.981,0,0,1,3.407,1.9,4,4,0,0,0,5.956.975c.207-.171.7-.648.7-.648.032-.028.061-.057.09-.087A19.907,19.907,0,0,0,95.6,104H104v16a8.009,8.009,0,0,1-8,8,12.133,12.133,0,0,1-2.681-.3,4,4,0,1,0-1.775,7.8c.151.035.3.06.456.091V148a4,4,0,1,1-8,0V124a4,4,0,0,0-4-4,4,4,0,0,1,0-8Z\"></path></g></svg>				\n									<h5>\n							arbejde udført med ansvar						\n					</h5>\n				<p>Vi lover ikke mere, end vi kan holde – men vi holder det, vi lover.</p>			<h2>KONTAKT OS</h2>		<p>Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.</p>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 13:55:50', '2026-01-26 13:55:50', '', 10, 'https://mrarif.me/cpnordic/?p=557', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(558, 1, '2026-01-26 13:55:50', '2026-01-26 13:55:50', '<h1>CP NORDIC ApS</h1>					<h4>Byggeri – Tømrerarbejde og tagdækning</h4>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle ANMELDELSER\n					</a>\n					<h2>HVORFOR VÆLGE CP NORDIC ApS?</h2>		<p>Når du vælger CP NORDIC ApS, får du:</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 450 450\" width=\"512\"><g><g><path d=\"m225 165.2c-25.9 0-48.9-18.8-53.3-45.2-2.4-14.2.9-28.6 9.3-40.3 8.4-11.8 20.9-19.5 35.1-21.9 29.4-4.9 57.3 15 62.2 44.5 4.9 29.4-15 57.3-44.4 62.2-3 .5-6 .7-8.9.7zm-7.6-99.8c-12.2 2-22.9 8.7-30.1 18.8s-10.1 22.4-8 34.6c3.8 22.7 23.5 38.8 45.7 38.8 2.5 0 5.1-.2 7.6-.6 25.2-4.2 42.3-28.1 38.1-53.4s-28.1-42.4-53.3-38.2z\"></path><path d=\"m255.2 115c-2.1 0-3.8-1.7-3.8-3.8 0-14.6-11.8-26.4-26.4-26.4-2.1 0-3.8-1.7-3.8-3.8s1.7-3.8 3.8-3.8c18.8 0 34.1 15.3 34.1 34.1 0 2-1.8 3.7-3.9 3.7z\"></path><path d=\"m236.1 203h-22.2c-2.1 0-3.8-1.7-3.8-3.8v-14.1c-3.1-.6-6.1-1.4-9.1-2.4l-7 12.2c-1.1 1.8-3.4 2.5-5.3 1.4l-19.2-11.1c-.9-.5-1.5-1.4-1.8-2.3-.3-1-.1-2 .4-2.9l7-12.1c-2.4-2.1-4.6-4.3-6.7-6.6l-12.1 7c-1.8 1.1-4.2.4-5.2-1.4l-11.1-19.2c-1.1-1.8-.4-4.2 1.4-5.2l11.9-6.8c-1-3-1.9-6.1-2.6-9.3h-13.7c-2.1 0-3.8-1.7-3.8-3.8v-22.2c0-2.1 1.7-3.8 3.8-3.8h13.4c.6-3.2 1.4-6.4 2.4-9.5l-11.5-6.6c-1.8-1.1-2.5-3.4-1.4-5.3l11.1-19.6c.5-.9 1.4-1.5 2.3-1.8s2-.1 2.9.4l11.3 6.6c2.2-2.5 4.5-4.8 7-7l-6.5-11.3c-.5-.9-.6-1.9-.4-2.9.3-1 .9-1.8 1.8-2.3l19.2-11.1c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l6.4 11.2c3.1-1.1 6.4-1.9 9.7-2.6v-13c0-2.1 1.7-3.8 3.8-3.8h22.2c2.1 0 3.8 1.7 3.8 3.8v12.8c3.3.7 6.5 1.5 9.7 2.6l6.5-11.2c.5-.9 1.4-1.5 2.3-1.8 1-.3 2-.1 2.9.4l19.2 11.1c.9.5 1.5 1.3 1.8 2.3s.1 2-.4 2.9l-6.5 11.3c2.5 2.2 4.8 4.5 7 7.1l11.3-6.6c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l11.1 19.2c1.1 1.8.4 4.2-1.4 5.3l-11.5 6.6c1 3.1 1.8 6.3 2.5 9.5h13.6c2.1 0 3.8 1.7 3.8 3.8v22.2c0 2.1-1.7 3.8-3.8 3.8h-13.6c-.6 3.1-1.5 6.2-2.5 9.3l11.9 6.8c1.8 1.1 2.5 3.4 1.4 5.2l-11.2 19.5c-1.1 1.8-3.4 2.5-5.2 1.4l-12-7c-2.1 2.4-4.4 4.6-6.7 6.6l7 12.1c.5.9.6 1.9.4 2.9s-.9 1.8-1.8 2.3l-19.2 11.1c-1.8 1.1-4.2.4-5.2-1.4l-7-12.2c-3 1-6 1.8-9.1 2.4v14.1c-.2 2.3-2 4-4.1 4zm-18.4-7.7h14.5v-13.5c0-1.9 1.4-3.5 3.3-3.8 4.7-.7 9.4-2 13.8-3.7 1.8-.7 3.8 0 4.7 1.7l6.7 11.6 12.6-7.3-6.7-11.6c-1-1.6-.5-3.7.9-4.9 3.7-3 7.2-6.4 10.2-10.1 1.2-1.5 3.3-1.8 4.9-.9l11.5 6.6 7.3-12.6-11.3-6.5c-1.6-.9-2.4-3-1.6-4.7 1.8-4.5 3.1-9.2 3.9-14 .3-1.9 1.9-3.2 3.8-3.2h13v-14.6h-12.8c-1.9 0-3.5-1.4-3.8-3.3-.7-4.8-2-9.6-3.7-14.2-.7-1.8 0-3.7 1.7-4.7l10.9-6.3-7.3-12.6-10.8 6.3c-1.6.9-3.7.6-4.9-.9-3.1-3.9-6.6-7.4-10.4-10.6-1.5-1.2-1.9-3.3-.9-4.9l6.2-10.7-12.6-7.3-6.1 10.6c-1 1.6-3 2.3-4.7 1.7-4.6-1.8-9.5-3.1-14.4-3.9-1.9-.3-3.3-1.9-3.3-3.8v-12.2h-14.5v12.3c0 1.9-1.4 3.5-3.3 3.8-5 .8-9.8 2.1-14.4 3.9-1.8.7-3.8 0-4.7-1.7l-6.1-10.6-12.6 7.3 6.2 10.7c.9 1.6.6 3.7-.9 4.9-3.9 3.1-7.4 6.7-10.4 10.6-1.2 1.5-3.3 1.9-4.9.9l-10.8-6.3-7.3 12.6 10.9 6.3c1.6.9 2.3 2.9 1.7 4.7-1.7 4.6-3 9.4-3.7 14.2-.3 1.9-1.9 3.3-3.8 3.3h-12.8v14.5h13c1.9 0 3.5 1.4 3.8 3.2.8 4.8 2.1 9.5 3.9 14 .7 1.8 0 3.8-1.6 4.7l-11.3 6.5 7.3 12.6 11.5-6.6c1.6-.9 3.7-.6 4.9.9 3 3.7 6.5 7.1 10.3 10.1 1.5 1.2 1.9 3.3.9 4.9l-6.7 11.6 12.6 7.3 6.7-11.6c.9-1.6 2.9-2.3 4.7-1.7 4.5 1.7 9.1 2.9 13.8 3.7 1.9.3 3.3 1.9 3.3 3.8z\"></path></g><g><g><g><path d=\"m45.3 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m153.9 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path></g><g><path d=\"m189.3 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.2c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c0 2.1-1.7 3.8-3.8 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m73.3 326.4c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m126 326.4c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m99.7 325.6c-.6 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4s4.1 1.1 4.4 3.2c2.4 16.5 12.3 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m50.2 266.6c-.1 0-.2 0-.3 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.7 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-8.9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.5 2.2zm81.8-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13.1-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.4-.7 2.3-.7z\"></path></g></g></g><g><g><path d=\"m296.1 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m404.7 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path></g><g><path d=\"m440 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.1c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c.2 2.1-1.6 3.8-3.7 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m324 326.3c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m376.7 326.3c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m350.4 325.6c-.5 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4 2.1-.3 4 1.1 4.4 3.2 2.4 16.5 12.4 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m301 266.6c-.1 0-.2 0-.4 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.6 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.4 2.2zm81.7-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.5-.7 2.3-.7z\"></path></g></g></g></g></g></svg>				\n									<h5>\n							et ungt og engageret team						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"496pt\" viewBox=\"0 0 496 496\" width=\"496pt\"><path d=\"m440 328h-28.207031c5.078125-6.703125 8.207031-14.960938 8.207031-24 0-8.824219-7.175781-16-16-16h-12v-19.960938c59.574219-14.445312 104-68.085937 104-132.039062 0-74.992188-61.007812-136-136-136s-136 61.007812-136 136c0 63.953125 44.425781 117.59375 104 132.039062v19.960938h-8.449219c-6.167969 0-12.359375 1.464844-17.886719 4.214844l-50.480468 25.25c-3.320313 1.664062-7.03125 2.535156-10.734375 2.535156h-40.449219v-16h-104v16h56v56h16v-56h16v128h-16v-56h-16v56h-56v16h104v-16h40.449219c3.703125 0 7.414062.871094 10.734375 2.527344l34.488281 17.25c5.519531 2.757812 11.710937 4.222656 17.878906 4.222656h24.449219v24h64v-24h48c13.230469 0 24-10.769531 24-24 0-6.167969-2.40625-11.742188-6.238281-16 3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16 0-13.230469-10.769531-24-24-24zm8 24c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm-208-280c0-66.167969 53.832031-120 120-120s120 53.832031 120 120-53.832031 120-120 120-120-53.832031-120-120zm104 134.976562c5.257812.617188 10.574219 1.023438 16 1.023438s10.742188-.40625 16-1.023438v17.023438h-32zm-40.449219 185.023438c-3.703125 0-7.414062-.871094-10.734375-2.527344l-34.488281-17.25c-5.519531-2.757812-11.710937-4.222656-17.878906-4.222656h-40.449219v-96h40.449219c6.167969 0 12.359375-1.464844 17.886719-4.214844l50.480468-25.25c3.320313-1.664062 7.03125-2.535156 10.734375-2.535156h84.449219c0 13.230469-10.769531 24-24 24h-48.28125l-23.863281 35.808594c-6.101563 9.160156-14.527344 16.589844-24.367188 21.503906-8.753906 4.375-18.542969 6.6875-28.320312 6.6875h-15.167969v16h15.167969c12.246093 0 24.519531-2.894531 35.472656-8.375 12.328125-6.160156 22.878906-15.480469 30.527344-26.945312l6.832031-10.253907v93.574219zm40.449219 24v-136h17.472656c-.898437 2.511719-1.472656 5.183594-1.472656 8 0 6.167969 2.40625 11.742188 6.238281 16-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16 0 10.414062 6.710938 19.214844 16 22.527344v9.472656zm96-24h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8s-3.59375 8-8 8zm0 0\"></path><path d=\"m394.878906 73.007812-7.757812 13.984376c17.816406 9.878906 28.878906 28.664062 28.878906 49.007812h16c0-26.160156-14.222656-50.296875-37.121094-62.992188zm0 0\"></path><path d=\"m360 80c4.734375 0 9.449219.59375 14.007812 1.769531l3.976563-15.503906c-5.855469-1.496094-11.90625-2.265625-17.984375-2.265625zm0 0\"></path><path d=\"m360 48c48.519531 0 88 39.480469 88 88 0 20.753906-7.398438 40.910156-20.832031 56.785156l12.207031 10.34375c15.882812-18.761718 24.625-42.601562 24.625-67.128906 0-57.34375-46.65625-104-104-104-24.527344 0-48.367188 8.753906-67.128906 24.632812l10.335937 12.199219c15.871094-13.433593 36.039063-20.832031 56.792969-20.832031zm0 0\"></path><path d=\"m427.128906 215.367188-10.335937-12.199219c-15.871094 13.433593-36.039063 20.832031-56.792969 20.832031-48.519531 0-88-39.480469-88-88 0-20.753906 7.398438-40.910156 20.832031-56.785156l-12.207031-10.34375c-15.882812 18.761718-24.625 42.601562-24.625 67.128906 0 57.34375 46.65625 104 104 104 24.527344 0 48.367188-8.753906 67.128906-24.632812zm0 0\"></path><path d=\"m121.214844 165.640625c4.953125-1.375 9.695312-3.34375 14.183594-5.878906l9.769531 4.886719 19.472656-19.480469-4.886719-9.769531c2.535156-4.496094 4.503906-9.230469 5.886719-14.183594l10.359375-3.445313v-27.53125l-10.351562-3.453125c-1.375-4.953125-3.34375-9.707031-5.886719-14.183594l4.886719-9.777343-19.472657-19.472657-9.769531 4.886719c-4.484375-2.535156-9.230469-4.503906-14.183594-5.878906l-3.453125-10.359375h-27.539062l-3.445313 10.359375c-4.953125 1.375-9.695312 3.34375-14.183594 5.878906l-9.777343-4.886719-19.472657 19.472657 4.886719 9.777343c-2.535156 4.488282-4.503906 9.230469-5.886719 14.183594l-10.351562 3.445313v27.53125l10.351562 3.453125c1.375 4.953125 3.34375 9.695312 5.886719 14.183594l-4.886719 9.769531 19.472657 19.480469 9.769531-4.886719c4.484375 2.535156 9.230469 4.503906 14.183594 5.878906l3.453125 10.359375h27.539062zm-12.304688-13.679687-2.679687 8.039062h-4.460938l-2.679687-8.039062-4.554688-.90625c-6.128906-1.222657-11.878906-3.605469-17.109375-7.09375l-3.867187-2.578126-7.574219 3.800782-3.160156-3.167969 3.792969-7.582031-2.578126-3.859375c-3.488281-5.222657-5.871093-10.980469-7.09375-17.109375l-.914062-4.554688-8.03125-2.679687v-4.46875l8.03125-2.671875.914062-4.554688c1.222657-6.136718 3.613282-11.886718 7.09375-17.109375l2.578126-3.859375-3.792969-7.589844 3.160156-3.160156 7.574219 3.800782 3.867187-2.578126c5.222657-3.488281 10.980469-5.863281 17.109375-7.09375l4.554688-.90625 2.679687-8.039062h4.460938l2.679687 8.039062 4.554688.90625c6.128906 1.222657 11.878906 3.605469 17.109375 7.09375l3.867187 2.578126 7.574219-3.800782 3.160156 3.160156-3.792969 7.589844 2.578126 3.859375c3.488281 5.214844 5.871093 10.972657 7.09375 17.109375l.914062 4.554688 8.03125 2.679687v4.46875l-8.03125 2.671875-.914062 4.554688c-1.222657 6.128906-3.613282 11.878906-7.09375 17.109375l-2.578126 3.859375 3.792969 7.582031-3.160156 3.167969-7.574219-3.800782-3.867187 2.578126c-5.222657 3.488281-10.980469 5.863281-17.109375 7.09375zm0 0\"></path><path d=\"m104 72c-17.648438 0-32 14.351562-32 32s14.351562 32 32 32 32-14.351562 32-32-14.351562-32-32-32zm0 48c-8.824219 0-16-7.175781-16-16s7.175781-16 16-16 16 7.175781 16 16-7.175781 16-16 16zm0 0\"></path><path d=\"m160 248v-40h48v-208h-208v208h106.664062zm-144-232h176v176h-48v24l-32-24h-96zm0 0\"></path><path d=\"m0 272h16v16h-16zm0 0\"></path><path d=\"m32 272h16v16h-16zm0 0\"></path><path d=\"m64 272h16v16h-16zm0 0\"></path><path d=\"m32 304h16v16h-16zm0 0\"></path><path d=\"m64 304h16v16h-16zm0 0\"></path><path d=\"m0 480h16v16h-16zm0 0\"></path><path d=\"m32 480h16v16h-16zm0 0\"></path><path d=\"m64 480h16v16h-16zm0 0\"></path><path d=\"m32 448h16v16h-16zm0 0\"></path><path d=\"m64 448h16v16h-16zm0 0\"></path></svg>				\n									<h5>\n							fokus på kvalitet og detaljer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m469.12 408.93-67.26-33.63v-22.13c10.71-7.69 18.6-19.07 21.78-32.27h5.28c8.81 0 15.98-7.17 15.98-15.98v-5.29c0-6.35-3.74-11.84-9.12-14.41 5.19-18.64-1.65-39.76-19.44-59.78-12.58-14.16-30.67-22.27-49.62-22.27-18.93 0-37.01 8.12-49.59 22.27-13.38 15.05-20.95 41.01-14.03 59.62-5.56 2.5-9.45 8.09-9.45 14.57v5.29c0 8.81 7.17 15.98 15.98 15.98h5.55c3.16 13.09 10.94 24.39 21.51 32.08v22.32l-67.26 33.63c-16.7 5.87-27.89 21.6-27.89 39.28v41.63c0 3.31 2.69 6 6 6h243.46c3.31 0 6-2.69 6-6v-41.63c0-17.68-11.19-33.41-27.88-39.28zm-62.24-17.7-15.83 27.66-13.29-13.29 19.29-19.29zm-37.61 5.88-20.59-20.58v-16.91c6.41 2.57 13.4 4.01 20.72 4.01 7.22 0 14.11-1.39 20.45-3.9v16.8zm63.63-97.48v5.29c0 2.16-1.82 3.98-3.98 3.98h-3.74c.01-.36.03-.71.03-1.07v-12.18h3.71c2.15-.01 3.98 1.82 3.98 3.98zm-119.29 8.2v1.07h-3.98c-2.16 0-3.98-1.82-3.98-3.98v-5.29c0-2.16 1.82-3.98 3.98-3.98l3.98.22zm1.95-24.19c-7.33-13.69-.89-37.39 10.53-50.24 10.31-11.6 25.12-18.25 40.63-18.25 15.52 0 30.34 6.65 40.65 18.25 8.43 9.48 21.3 27.59 17.4 46.39-5.66-.35-10.67-2.55-14.4-6.36-5.37-5.49-7.72-14-6.63-23.94.29-2.62-1.17-5.13-3.6-6.17s-5.25-.37-6.95 1.65c-19.33 22.92-45.95 36.76-73.9 38.68h-3.73zm10.05 24.19v-12.73c24.57-2.92 47.92-14.05 66.73-31.8 1.43 7.26 4.63 13.6 9.45 18.52 3.27 3.35 7.14 5.89 11.41 7.58v18.42c0 24.15-19.65 43.8-43.8 43.8s-43.79-19.64-43.79-43.79zm15.89 78.48 19.29 19.29-13.29 13.29-15.84-27.66zm3.22 97.53h-39.42v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.76v-35.63c0-12.68 8.1-23.95 20.15-28.05.26-.09.51-.19.75-.31l46.47-23.23 20.07 35.06c.93 1.62 2.56 2.72 4.41 2.97.27.04.53.05.79.05 1.58 0 3.11-.62 4.24-1.76l.14-.14zm12.08 0 7.41-64.69 5.06-5.06 4.84 4.84 7.86 64.92h-25.17zm128.2 0h-39.76v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.18l-6.2-51.17.25.25c1.13 1.13 2.66 1.76 4.24 1.76.26 0 .53-.02.79-.05 1.85-.25 3.48-1.34 4.41-2.97l20.07-35.06 46.47 23.23c.24.12.49.23.75.31 12.05 4.1 20.15 15.38 20.15 28.05v35.65zm-67.04-346.65h-10.84l28.38 39.84 28.38-39.84h-10.84c-3.31 0-6-2.69-6-6v-64.58h-98.7c-3.31 0-6-2.69-6-6s2.69-6 6-6h104.7c3.31 0 6 2.69 6 6v64.58h16.48c2.25 0 4.3 1.25 5.33 3.25s.86 4.4-.45 6.23l-40.02 56.18c-1.13 1.58-2.95 2.52-4.89 2.52s-3.76-.94-4.89-2.52l-40.02-56.18c-1.3-1.83-1.48-4.23-.45-6.23s3.09-3.25 5.33-3.25h16.48v-23.5h-65.38c-3.31 0-6-2.69-6-6s2.69-6 6-6h71.38c3.31 0 6 2.69 6 6v35.5c.02 3.31-2.67 6-5.98 6zm-118.44 50.65v-133.26c0-21.18-17.23-38.41-38.41-38.41h-207.7c-21.18-.01-38.41 17.23-38.41 38.41v133.26c0 21.18 17.23 38.41 38.41 38.41h105.8l64.8 55.11c1.11.94 2.49 1.43 3.89 1.43.85 0 1.71-.18 2.52-.55 2.12-.98 3.48-3.11 3.48-5.45v-50.54h27.21c21.18 0 38.41-17.23 38.41-38.41zm-71.62 26.41c-3.31 0-6 2.69-6 6v43.56l-56.59-48.13c-1.08-.92-2.46-1.43-3.89-1.43h-108.01c-14.56 0-26.41-11.85-26.41-26.41v-133.26c0-14.56 11.85-26.41 26.41-26.41h207.69c14.56 0 26.41 11.85 26.41 26.41v133.26c0 14.56-11.85 26.41-26.41 26.41zm-156.34-87.87h56.97c3.31 0 6-2.69 6-6v-39.2l8.55-8.55c2.34-2.34 2.34-6.14 0-8.49-2.34-2.34-6.14-2.34-8.48 0l-.7.7c-.98-1.97-3.01-3.32-5.36-3.32h-56.98c-3.31 0-6 2.69-6 6v52.85c0 3.32 2.69 6.01 6 6.01zm6-52.86h44.97v2.69l-18.16 18.16-8.84-8.84c-2.34-2.34-6.14-2.34-8.49 0-2.34 2.34-2.34 6.14 0 8.49l13.08 13.08c1.17 1.17 2.71 1.76 4.24 1.76s3.07-.59 4.24-1.76l13.92-13.92v21.2h-44.96zm173.62 3.08c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 31.92c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 36.52c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.68 5.99 6zm0 31.92c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.69 5.99 6zm-119.36 165.01h10.84l-28.38-39.84-28.38 39.84h10.84c3.31 0 6 2.69 6 6v64.58h98.7c3.31 0 6 2.69 6 6s-2.69 6-6 6h-104.69c-3.31 0-6-2.69-6-6v-64.58h-16.48c-2.25 0-4.3-1.25-5.33-3.25s-.86-4.4.45-6.23l40.02-56.18c1.13-1.58 2.95-2.52 4.89-2.52s3.76.94 4.89 2.52l40.02 56.18c1.3 1.83 1.48 4.23.45 6.23s-3.09 3.25-5.33 3.25h-16.48v23.5h65.38c3.31 0 6 2.69 6 6s-2.69 6-6 6h-71.38c-3.31 0-6-2.69-6-6v-35.5c-.03-3.31 2.66-6 5.97-6z\"></path></svg>				\n									<h5>\n							ærlig<br> rådgivning						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 510 510\"><path d=\"m192.036 385.845c-4.787-46.972-19.459-64.336-30.658-82.352-8.672-13.951-15.5-28.245-15.5-54.252 0-60.242 48.865-109.109 109.135-109.109 60.242 0 109.109 48.866 109.109 109.109 0 26.007-6.828 40.301-15.5 54.252-11.199 18.016-25.871 35.38-30.658 82.352 9.985 2.864 17.345 12.101 17.345 22.975v36.44c0 13.109-10.747 23.866-23.893 23.866h-10.334v9.945c0 12.588-10.341 22.929-22.93 22.929h-46.304c-12.589 0-22.93-10.341-22.93-22.929v-9.945h-10.334c-13.146 0-23.893-10.757-23.893-23.866v-36.44c0-10.874 7.36-20.111 17.345-22.975zm111.948-.917c4.199-42.194 15.78-62.332 26.488-79.049 10.147-15.842 19.65-28.207 19.65-56.638 0-52.513-42.597-95.109-95.109-95.109-52.537 0-95.135 42.596-95.135 95.109 0 28.431 9.503 40.796 19.65 56.638 10.708 16.717 22.289 36.855 26.488 79.049zm2.554-78.61c-1.175 13.701-11.985 24.191-24.783 24.191-13.527 0-24.862-12.086-24.862-26.673v-99.328c0-14.12 11.335-26.673 24.862-26.673 11.309 0 21.031 8.139 23.975 19.497 9.12 3.904 15.688 13.438 15.688 24.78 0 1.153-.068 2.289-.201 3.403 5.078 5.326 8.283 12.802 8.283 21.117 0 6.39-1.889 12.262-5.06 17.053 1.996 4.099 3.13 8.773 3.13 13.76 0 14.1-9.065 25.697-21.032 28.873zm-16.452-109.977c-1.964-2.729-4.916-4.506-8.331-4.506-6.192 0-10.862 6.21-10.862 12.673v99.328c0 6.677 4.67 12.673 10.862 12.673 5.516 0 9.822-4.614 10.717-10.425-4.709-1.416-8.923-4.144-12.279-7.814-2.607-2.852-2.409-7.283.443-9.89 2.851-2.607 7.282-2.408 9.889.443 2.416 2.642 5.72 4.356 9.402 4.356 7.733 0 13.643-7.218 13.643-15.734s-5.91-15.734-13.643-15.734c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7 5.352 0 10.388 1.655 14.658 4.533.593-1.743.915-3.634.915-5.612 0-2.11-.366-4.128-1.036-5.972-.769.858-1.588 1.66-2.453 2.397-2.94 2.507-7.361 2.156-9.869-.784-2.507-2.939-2.155-7.361.784-9.868 2.773-2.365 4.492-6.122 4.492-10.293 0-6.072-3.705-11.374-8.898-12.467-.154-.023-.307-.052-.458-.085-.499-.08-1.01-.121-1.532-.121-2.947 0-5.591 1.389-7.515 3.525-2.585 2.87-7.015 3.101-9.886.515-2.87-2.586-3.101-7.015-.515-9.886 3.111-3.453 7.059-5.988 11.472-7.252zm-104.526 67.344c-3.171-4.791-5.06-10.663-5.06-17.053 0-8.307 3.198-15.777 8.284-21.104-.133-1.118-.202-2.258-.202-3.416 0-11.354 6.582-20.897 15.717-24.792 2.948-11.354 12.67-19.485 23.946-19.485 13.56 0 24.888 12.555 24.888 26.673v99.328c0 14.585-11.328 26.673-24.888 26.673-12.765 0-23.578-10.484-24.757-24.184-11.98-3.166-21.058-14.769-21.058-28.88 0-4.987 1.134-9.661 3.13-13.76zm9.982-23.036c-.675 1.847-1.042 3.869-1.042 5.983 0 1.978.322 3.869.915 5.612 4.27-2.878 9.306-4.533 14.658-4.533 3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7-7.733 0-13.643 7.218-13.643 15.734s5.91 15.734 13.643 15.734c3.682 0 6.986-1.714 9.402-4.356 2.607-2.851 7.038-3.05 9.889-.443 2.852 2.607 3.05 7.038.443 9.89-3.35 3.664-7.556 6.389-12.255 7.807.891 5.813 5.192 10.432 10.693 10.432 6.21 0 10.888-5.993 10.888-12.673v-99.328c0-6.466-4.678-12.673-10.888-12.673-3.404 0-6.349 1.777-8.309 4.507 4.421 1.264 8.367 3.8 11.476 7.251 2.586 2.871 2.355 7.3-.516 9.886-2.87 2.586-7.3 2.355-9.886-.515-1.926-2.138-4.574-3.525-7.54-3.525-.493 0-.976.037-1.448.108-.196.045-.395.082-.596.11-5.165 1.118-8.844 6.404-8.844 12.455 0 1.243.153 2.45.442 3.594.101.284.183.572.246.862.748 2.326 2.071 4.346 3.814 5.823 2.947 2.498 3.311 6.919.813 9.866s-6.919 3.312-9.866.814c-.878-.745-1.71-1.554-2.489-2.422zm3.042 158.279c-5.442 0-9.893 4.451-9.893 9.892v36.44c0 5.423 4.454 9.866 9.893 9.866h17.334c3.866 0 7 3.134 7 7v16.945c0 4.902 4.027 8.929 8.93 8.929h46.304c4.903 0 8.93-4.027 8.93-8.929v-16.945c0-3.866 3.134-7 7-7h17.334c5.439 0 9.893-4.443 9.893-9.866v-36.44c0-5.441-4.451-9.892-9.893-9.892zm63.416-314.093 2.907-5.412c1.828-3.403 6.075-4.683 9.479-2.854 3.403 1.828 4.682 6.075 2.854 9.479l-16.073 29.925c-1.22 2.271-3.589 3.688-6.167 3.688s-4.947-1.417-6.167-3.688l-16.073-29.925c-1.828-3.404-.549-7.651 2.854-9.479 3.404-1.829 7.651-.549 9.479 2.854l2.907 5.412v-69.835c0-3.863 3.137-7 7-7s7 3.137 7 7zm-132.198 54.758-49.381-49.381c-2.732-2.731-2.732-7.167 0-9.899s7.168-2.732 9.9 0l49.38 49.38-1.771-5.881c-1.114-3.7.985-7.608 4.684-8.722 3.7-1.114 7.607.985 8.721 4.685l9.796 32.526c.743 2.468.069 5.145-1.753 6.968-1.823 1.823-4.5 2.496-6.969 1.753l-32.526-9.795c-3.699-1.114-5.798-5.022-4.684-8.721s5.022-5.798 8.721-4.684zm-44.859 122.299h-69.835c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7h69.835l-5.412-2.907c-3.403-1.828-4.682-6.076-2.854-9.479 1.828-3.404 6.075-4.683 9.479-2.855l29.926 16.074c2.271 1.22 3.688 3.589 3.688 6.167 0 2.577-1.417 4.947-3.688 6.166l-29.926 16.074c-3.404 1.828-7.651.549-9.479-2.855-1.828-3.403-.549-7.651 2.854-9.479zm54.758 118.198-49.38 49.38c-2.732 2.732-7.168 2.732-9.9 0s-2.732-7.167 0-9.899l49.381-49.381-5.882 1.772c-3.699 1.114-7.607-.985-8.721-4.685-1.114-3.699.985-7.607 4.684-8.721l32.526-9.795c2.469-.743 5.146-.07 6.969 1.753 1.822 1.823 2.496 4.5 1.753 6.968l-9.796 32.527c-1.114 3.699-5.021 5.798-8.721 4.684-3.699-1.114-5.798-5.022-4.684-8.721zm240.497-240.497 5.882-1.771c3.699-1.114 7.607.985 8.721 4.684s-.985 7.607-4.684 8.721l-32.526 9.795c-2.469.743-5.146.07-6.969-1.753-1.822-1.823-2.496-4.5-1.753-6.968l9.796-32.526c1.114-3.7 5.021-5.799 8.721-4.685 3.699 1.114 5.798 5.022 4.684 8.722l-1.771 5.881 49.38-49.38c2.732-2.732 7.168-2.732 9.9 0s2.732 7.168 0 9.899zm44.859 122.299 5.412 2.906c3.403 1.828 4.682 6.076 2.854 9.479-1.828 3.404-6.075 4.683-9.479 2.855l-29.926-16.074c-2.271-1.219-3.688-3.589-3.688-6.166 0-2.578 1.417-4.947 3.688-6.167l29.926-16.074c3.404-1.828 7.651-.549 9.479 2.855 1.828 3.403.549 7.651-2.854 9.479l-5.412 2.907h69.835c3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7zm-54.758 118.198 1.771 5.882c1.114 3.699-.985 7.607-4.684 8.721-3.7 1.114-7.607-.985-8.721-4.684l-9.796-32.527c-.743-2.468-.069-5.145 1.753-6.968 1.823-1.823 4.5-2.496 6.969-1.753l32.526 9.795c3.699 1.114 5.798 5.022 4.684 8.721-1.114 3.7-5.022 5.799-8.721 4.685l-5.882-1.772 49.381 49.381c2.732 2.732 2.732 7.167 0 9.899s-7.168 2.732-9.9 0z\"></path></svg>				\n									<h5>\n							gennemtænkte løsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"outline\"><path d=\"M486.41,144A28,28,0,0,0,472,92H349.123l5.457-21.828a48.513,48.513,0,0,0-12.848-46.153A41.035,41.035,0,0,0,312.609,12H308a8.009,8.009,0,0,0-8,8V47.413l-19.233,64.112A17.376,17.376,0,0,1,268,123.539V112a4,4,0,0,0-4-4H152a4,4,0,0,0-4,4v72a4,4,0,0,0,8,0V116h72V276H156V248a4,4,0,0,0-8,0v32a4,4,0,0,0,4,4H264a4,4,0,0,0,4-4V268.5h11.168A37.07,37.07,0,0,1,305.092,279a45.025,45.025,0,0,0,31.48,12.752L440,292a27.987,27.987,0,0,0,19.369-48.2,27.987,27.987,0,0,0,16-48A28,28,0,0,0,486.41,144ZM260,276H236V116h24Zm212-88H396a4,4,0,0,0,0,8h60a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h40a20,20,0,0,1,.01,40l-103.428-.25a37.07,37.07,0,0,1-25.924-10.5,45.031,45.031,0,0,0-31.49-12.752H268V131.686a25.317,25.317,0,0,0,20.429-17.862l19.4-64.675A4,4,0,0,0,308,48V20h4.609a33.082,33.082,0,0,1,23.481,9.69,40.507,40.507,0,0,1,10.728,38.541l-6.7,26.8A4,4,0,0,0,344,100H472a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h72a20,20,0,0,1,0,40Z\"></path><path d=\"M194.5,183.243l-1.9-.217a4,4,0,0,0-4.169,2.491L184.29,195.9H135.278l-3.539-9.317a4,4,0,0,0-7.478,2.84l2.459,6.477h-8.474L68.452,156.872a4,4,0,1,0-4.935,6.3L77.6,174.209,56.961,194.48l-6.636-5.491a4,4,0,1,0-5.1,6.163L87.219,229.9a44.1,44.1,0,0,0,28.05,10.1H212a8.009,8.009,0,0,0,8-8V203.9a8.009,8.009,0,0,0-8-8h-8v-2.01A10.708,10.708,0,0,0,194.5,183.243ZM212,203.9V232H115.269a36.081,36.081,0,0,1-22.951-8.264l-29.16-24.128,20.8-20.422L114.4,203.045a4,4,0,0,0,2.468.852H187a4,4,0,0,0,3.715-2.517l3.929-9.843a2.712,2.712,0,0,1,1.356,2.35v6.01a4,4,0,0,0,4,4Z\"></path><path d=\"M223.084,484.672,200.87,469.863V346.36A44.1,44.1,0,0,0,195.327,325l-17.183-30.94a4,4,0,0,0-7,3.884l17.184,30.94a36.073,36.073,0,0,1,4.537,17.478V468H164.333a4,4,0,1,0,0,8h31.321l12,8H152.865V352a4,4,0,0,0-.358-1.655l-25.454-56A4,4,0,0,0,123.411,292H114.2a4,4,0,0,0-3.945,4.658l8.862,53.175a36.016,36.016,0,0,1-1.951,18.949L78.642,468H48.333a4,4,0,1,0,0,8H80.377L92,484H32.088L76.63,361.366a4.017,4.017,0,0,0,.183-2.044L61.1,268H136a4,4,0,0,0,0-8H59.233L30.555,173.966A19.723,19.723,0,0,1,49.27,148H76a12,12,0,0,0,24,0h15.2a21.975,21.975,0,0,1,8.395,1.652l10.889,4.458a4,4,0,1,0,3.032-7.4L126.63,142.25A29.938,29.938,0,0,0,115.2,140H100v-4.527A16.014,16.014,0,0,0,112,120V103.473A16.014,16.014,0,0,0,124,88V80a4,4,0,0,0-4-4H90A22.025,22.025,0,0,0,68,98v18a12.02,12.02,0,0,0,8,11.314V140H49.27a27.723,27.723,0,0,0-26.305,36.5l29.493,88.482,16.29,94.655-46.128,127A4,4,0,0,0,26.38,492h78.485a4,4,0,0,0,2.268-7.3L86.3,470.368l38.318-98.69a44.018,44.018,0,0,0,2.385-23.16L118.921,300h1.914l24.03,52.867V488a4,4,0,0,0,4,4h72a4,4,0,0,0,2.219-7.328ZM76,98A14.015,14.015,0,0,1,90,84h26v4a8.009,8.009,0,0,1-8,8H92a4,4,0,0,0-4,4,11.962,11.962,0,0,1-1.53,5.881A12.044,12.044,0,0,0,76,104.686Zm4,14a3.981,3.981,0,0,1,3.407,1.9,4,4,0,0,0,5.956.975c.207-.171.7-.648.7-.648.032-.028.061-.057.09-.087A19.907,19.907,0,0,0,95.6,104H104v16a8.009,8.009,0,0,1-8,8,12.133,12.133,0,0,1-2.681-.3,4,4,0,1,0-1.775,7.8c.151.035.3.06.456.091V148a4,4,0,1,1-8,0V124a4,4,0,0,0-4-4,4,4,0,0,1,0-8Z\"></path></g></svg>				\n									<h5>\n							arbejde udført med ansvar						\n					</h5>\n				<p>Vi lover ikke mere, end vi kan holde – men vi holder det, vi lover.</p>			<h2>KONTAKT OS</h2>		<p>Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.</p>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 13:55:50', '2026-01-26 13:55:50', '', 10, 'https://mrarif.me/cpnordic/?p=558', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(559, 1, '2026-01-26 13:55:50', '2026-01-26 13:55:50', '<h1>CP NORDIC ApS</h1>					<h4>Byggeri – Tømrerarbejde og tagdækning</h4>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle ANMELDELSER\n					</a>\n					<h2>HVORFOR VÆLGE CP NORDIC ApS?</h2>		<p>Når du vælger CP NORDIC ApS, får du:</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 450 450\" width=\"512\"><g><g><path d=\"m225 165.2c-25.9 0-48.9-18.8-53.3-45.2-2.4-14.2.9-28.6 9.3-40.3 8.4-11.8 20.9-19.5 35.1-21.9 29.4-4.9 57.3 15 62.2 44.5 4.9 29.4-15 57.3-44.4 62.2-3 .5-6 .7-8.9.7zm-7.6-99.8c-12.2 2-22.9 8.7-30.1 18.8s-10.1 22.4-8 34.6c3.8 22.7 23.5 38.8 45.7 38.8 2.5 0 5.1-.2 7.6-.6 25.2-4.2 42.3-28.1 38.1-53.4s-28.1-42.4-53.3-38.2z\"></path><path d=\"m255.2 115c-2.1 0-3.8-1.7-3.8-3.8 0-14.6-11.8-26.4-26.4-26.4-2.1 0-3.8-1.7-3.8-3.8s1.7-3.8 3.8-3.8c18.8 0 34.1 15.3 34.1 34.1 0 2-1.8 3.7-3.9 3.7z\"></path><path d=\"m236.1 203h-22.2c-2.1 0-3.8-1.7-3.8-3.8v-14.1c-3.1-.6-6.1-1.4-9.1-2.4l-7 12.2c-1.1 1.8-3.4 2.5-5.3 1.4l-19.2-11.1c-.9-.5-1.5-1.4-1.8-2.3-.3-1-.1-2 .4-2.9l7-12.1c-2.4-2.1-4.6-4.3-6.7-6.6l-12.1 7c-1.8 1.1-4.2.4-5.2-1.4l-11.1-19.2c-1.1-1.8-.4-4.2 1.4-5.2l11.9-6.8c-1-3-1.9-6.1-2.6-9.3h-13.7c-2.1 0-3.8-1.7-3.8-3.8v-22.2c0-2.1 1.7-3.8 3.8-3.8h13.4c.6-3.2 1.4-6.4 2.4-9.5l-11.5-6.6c-1.8-1.1-2.5-3.4-1.4-5.3l11.1-19.6c.5-.9 1.4-1.5 2.3-1.8s2-.1 2.9.4l11.3 6.6c2.2-2.5 4.5-4.8 7-7l-6.5-11.3c-.5-.9-.6-1.9-.4-2.9.3-1 .9-1.8 1.8-2.3l19.2-11.1c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l6.4 11.2c3.1-1.1 6.4-1.9 9.7-2.6v-13c0-2.1 1.7-3.8 3.8-3.8h22.2c2.1 0 3.8 1.7 3.8 3.8v12.8c3.3.7 6.5 1.5 9.7 2.6l6.5-11.2c.5-.9 1.4-1.5 2.3-1.8 1-.3 2-.1 2.9.4l19.2 11.1c.9.5 1.5 1.3 1.8 2.3s.1 2-.4 2.9l-6.5 11.3c2.5 2.2 4.8 4.5 7 7.1l11.3-6.6c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l11.1 19.2c1.1 1.8.4 4.2-1.4 5.3l-11.5 6.6c1 3.1 1.8 6.3 2.5 9.5h13.6c2.1 0 3.8 1.7 3.8 3.8v22.2c0 2.1-1.7 3.8-3.8 3.8h-13.6c-.6 3.1-1.5 6.2-2.5 9.3l11.9 6.8c1.8 1.1 2.5 3.4 1.4 5.2l-11.2 19.5c-1.1 1.8-3.4 2.5-5.2 1.4l-12-7c-2.1 2.4-4.4 4.6-6.7 6.6l7 12.1c.5.9.6 1.9.4 2.9s-.9 1.8-1.8 2.3l-19.2 11.1c-1.8 1.1-4.2.4-5.2-1.4l-7-12.2c-3 1-6 1.8-9.1 2.4v14.1c-.2 2.3-2 4-4.1 4zm-18.4-7.7h14.5v-13.5c0-1.9 1.4-3.5 3.3-3.8 4.7-.7 9.4-2 13.8-3.7 1.8-.7 3.8 0 4.7 1.7l6.7 11.6 12.6-7.3-6.7-11.6c-1-1.6-.5-3.7.9-4.9 3.7-3 7.2-6.4 10.2-10.1 1.2-1.5 3.3-1.8 4.9-.9l11.5 6.6 7.3-12.6-11.3-6.5c-1.6-.9-2.4-3-1.6-4.7 1.8-4.5 3.1-9.2 3.9-14 .3-1.9 1.9-3.2 3.8-3.2h13v-14.6h-12.8c-1.9 0-3.5-1.4-3.8-3.3-.7-4.8-2-9.6-3.7-14.2-.7-1.8 0-3.7 1.7-4.7l10.9-6.3-7.3-12.6-10.8 6.3c-1.6.9-3.7.6-4.9-.9-3.1-3.9-6.6-7.4-10.4-10.6-1.5-1.2-1.9-3.3-.9-4.9l6.2-10.7-12.6-7.3-6.1 10.6c-1 1.6-3 2.3-4.7 1.7-4.6-1.8-9.5-3.1-14.4-3.9-1.9-.3-3.3-1.9-3.3-3.8v-12.2h-14.5v12.3c0 1.9-1.4 3.5-3.3 3.8-5 .8-9.8 2.1-14.4 3.9-1.8.7-3.8 0-4.7-1.7l-6.1-10.6-12.6 7.3 6.2 10.7c.9 1.6.6 3.7-.9 4.9-3.9 3.1-7.4 6.7-10.4 10.6-1.2 1.5-3.3 1.9-4.9.9l-10.8-6.3-7.3 12.6 10.9 6.3c1.6.9 2.3 2.9 1.7 4.7-1.7 4.6-3 9.4-3.7 14.2-.3 1.9-1.9 3.3-3.8 3.3h-12.8v14.5h13c1.9 0 3.5 1.4 3.8 3.2.8 4.8 2.1 9.5 3.9 14 .7 1.8 0 3.8-1.6 4.7l-11.3 6.5 7.3 12.6 11.5-6.6c1.6-.9 3.7-.6 4.9.9 3 3.7 6.5 7.1 10.3 10.1 1.5 1.2 1.9 3.3.9 4.9l-6.7 11.6 12.6 7.3 6.7-11.6c.9-1.6 2.9-2.3 4.7-1.7 4.5 1.7 9.1 2.9 13.8 3.7 1.9.3 3.3 1.9 3.3 3.8z\"></path></g><g><g><g><path d=\"m45.3 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m153.9 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path></g><g><path d=\"m189.3 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.2c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c0 2.1-1.7 3.8-3.8 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m73.3 326.4c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m126 326.4c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m99.7 325.6c-.6 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4s4.1 1.1 4.4 3.2c2.4 16.5 12.3 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m50.2 266.6c-.1 0-.2 0-.3 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.7 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-8.9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.5 2.2zm81.8-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13.1-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.4-.7 2.3-.7z\"></path></g></g></g><g><g><path d=\"m296.1 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m404.7 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path></g><g><path d=\"m440 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.1c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c.2 2.1-1.6 3.8-3.7 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m324 326.3c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m376.7 326.3c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m350.4 325.6c-.5 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4 2.1-.3 4 1.1 4.4 3.2 2.4 16.5 12.4 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m301 266.6c-.1 0-.2 0-.4 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.6 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.4 2.2zm81.7-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.5-.7 2.3-.7z\"></path></g></g></g></g></g></svg>				\n									<h5>\n							et ungt og engageret team						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"496pt\" viewBox=\"0 0 496 496\" width=\"496pt\"><path d=\"m440 328h-28.207031c5.078125-6.703125 8.207031-14.960938 8.207031-24 0-8.824219-7.175781-16-16-16h-12v-19.960938c59.574219-14.445312 104-68.085937 104-132.039062 0-74.992188-61.007812-136-136-136s-136 61.007812-136 136c0 63.953125 44.425781 117.59375 104 132.039062v19.960938h-8.449219c-6.167969 0-12.359375 1.464844-17.886719 4.214844l-50.480468 25.25c-3.320313 1.664062-7.03125 2.535156-10.734375 2.535156h-40.449219v-16h-104v16h56v56h16v-56h16v128h-16v-56h-16v56h-56v16h104v-16h40.449219c3.703125 0 7.414062.871094 10.734375 2.527344l34.488281 17.25c5.519531 2.757812 11.710937 4.222656 17.878906 4.222656h24.449219v24h64v-24h48c13.230469 0 24-10.769531 24-24 0-6.167969-2.40625-11.742188-6.238281-16 3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16 0-13.230469-10.769531-24-24-24zm8 24c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm-208-280c0-66.167969 53.832031-120 120-120s120 53.832031 120 120-53.832031 120-120 120-120-53.832031-120-120zm104 134.976562c5.257812.617188 10.574219 1.023438 16 1.023438s10.742188-.40625 16-1.023438v17.023438h-32zm-40.449219 185.023438c-3.703125 0-7.414062-.871094-10.734375-2.527344l-34.488281-17.25c-5.519531-2.757812-11.710937-4.222656-17.878906-4.222656h-40.449219v-96h40.449219c6.167969 0 12.359375-1.464844 17.886719-4.214844l50.480468-25.25c3.320313-1.664062 7.03125-2.535156 10.734375-2.535156h84.449219c0 13.230469-10.769531 24-24 24h-48.28125l-23.863281 35.808594c-6.101563 9.160156-14.527344 16.589844-24.367188 21.503906-8.753906 4.375-18.542969 6.6875-28.320312 6.6875h-15.167969v16h15.167969c12.246093 0 24.519531-2.894531 35.472656-8.375 12.328125-6.160156 22.878906-15.480469 30.527344-26.945312l6.832031-10.253907v93.574219zm40.449219 24v-136h17.472656c-.898437 2.511719-1.472656 5.183594-1.472656 8 0 6.167969 2.40625 11.742188 6.238281 16-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16 0 10.414062 6.710938 19.214844 16 22.527344v9.472656zm96-24h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8s-3.59375 8-8 8zm0 0\"></path><path d=\"m394.878906 73.007812-7.757812 13.984376c17.816406 9.878906 28.878906 28.664062 28.878906 49.007812h16c0-26.160156-14.222656-50.296875-37.121094-62.992188zm0 0\"></path><path d=\"m360 80c4.734375 0 9.449219.59375 14.007812 1.769531l3.976563-15.503906c-5.855469-1.496094-11.90625-2.265625-17.984375-2.265625zm0 0\"></path><path d=\"m360 48c48.519531 0 88 39.480469 88 88 0 20.753906-7.398438 40.910156-20.832031 56.785156l12.207031 10.34375c15.882812-18.761718 24.625-42.601562 24.625-67.128906 0-57.34375-46.65625-104-104-104-24.527344 0-48.367188 8.753906-67.128906 24.632812l10.335937 12.199219c15.871094-13.433593 36.039063-20.832031 56.792969-20.832031zm0 0\"></path><path d=\"m427.128906 215.367188-10.335937-12.199219c-15.871094 13.433593-36.039063 20.832031-56.792969 20.832031-48.519531 0-88-39.480469-88-88 0-20.753906 7.398438-40.910156 20.832031-56.785156l-12.207031-10.34375c-15.882812 18.761718-24.625 42.601562-24.625 67.128906 0 57.34375 46.65625 104 104 104 24.527344 0 48.367188-8.753906 67.128906-24.632812zm0 0\"></path><path d=\"m121.214844 165.640625c4.953125-1.375 9.695312-3.34375 14.183594-5.878906l9.769531 4.886719 19.472656-19.480469-4.886719-9.769531c2.535156-4.496094 4.503906-9.230469 5.886719-14.183594l10.359375-3.445313v-27.53125l-10.351562-3.453125c-1.375-4.953125-3.34375-9.707031-5.886719-14.183594l4.886719-9.777343-19.472657-19.472657-9.769531 4.886719c-4.484375-2.535156-9.230469-4.503906-14.183594-5.878906l-3.453125-10.359375h-27.539062l-3.445313 10.359375c-4.953125 1.375-9.695312 3.34375-14.183594 5.878906l-9.777343-4.886719-19.472657 19.472657 4.886719 9.777343c-2.535156 4.488282-4.503906 9.230469-5.886719 14.183594l-10.351562 3.445313v27.53125l10.351562 3.453125c1.375 4.953125 3.34375 9.695312 5.886719 14.183594l-4.886719 9.769531 19.472657 19.480469 9.769531-4.886719c4.484375 2.535156 9.230469 4.503906 14.183594 5.878906l3.453125 10.359375h27.539062zm-12.304688-13.679687-2.679687 8.039062h-4.460938l-2.679687-8.039062-4.554688-.90625c-6.128906-1.222657-11.878906-3.605469-17.109375-7.09375l-3.867187-2.578126-7.574219 3.800782-3.160156-3.167969 3.792969-7.582031-2.578126-3.859375c-3.488281-5.222657-5.871093-10.980469-7.09375-17.109375l-.914062-4.554688-8.03125-2.679687v-4.46875l8.03125-2.671875.914062-4.554688c1.222657-6.136718 3.613282-11.886718 7.09375-17.109375l2.578126-3.859375-3.792969-7.589844 3.160156-3.160156 7.574219 3.800782 3.867187-2.578126c5.222657-3.488281 10.980469-5.863281 17.109375-7.09375l4.554688-.90625 2.679687-8.039062h4.460938l2.679687 8.039062 4.554688.90625c6.128906 1.222657 11.878906 3.605469 17.109375 7.09375l3.867187 2.578126 7.574219-3.800782 3.160156 3.160156-3.792969 7.589844 2.578126 3.859375c3.488281 5.214844 5.871093 10.972657 7.09375 17.109375l.914062 4.554688 8.03125 2.679687v4.46875l-8.03125 2.671875-.914062 4.554688c-1.222657 6.128906-3.613282 11.878906-7.09375 17.109375l-2.578126 3.859375 3.792969 7.582031-3.160156 3.167969-7.574219-3.800782-3.867187 2.578126c-5.222657 3.488281-10.980469 5.863281-17.109375 7.09375zm0 0\"></path><path d=\"m104 72c-17.648438 0-32 14.351562-32 32s14.351562 32 32 32 32-14.351562 32-32-14.351562-32-32-32zm0 48c-8.824219 0-16-7.175781-16-16s7.175781-16 16-16 16 7.175781 16 16-7.175781 16-16 16zm0 0\"></path><path d=\"m160 248v-40h48v-208h-208v208h106.664062zm-144-232h176v176h-48v24l-32-24h-96zm0 0\"></path><path d=\"m0 272h16v16h-16zm0 0\"></path><path d=\"m32 272h16v16h-16zm0 0\"></path><path d=\"m64 272h16v16h-16zm0 0\"></path><path d=\"m32 304h16v16h-16zm0 0\"></path><path d=\"m64 304h16v16h-16zm0 0\"></path><path d=\"m0 480h16v16h-16zm0 0\"></path><path d=\"m32 480h16v16h-16zm0 0\"></path><path d=\"m64 480h16v16h-16zm0 0\"></path><path d=\"m32 448h16v16h-16zm0 0\"></path><path d=\"m64 448h16v16h-16zm0 0\"></path></svg>				\n									<h5>\n							fokus på kvalitet og detaljer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m469.12 408.93-67.26-33.63v-22.13c10.71-7.69 18.6-19.07 21.78-32.27h5.28c8.81 0 15.98-7.17 15.98-15.98v-5.29c0-6.35-3.74-11.84-9.12-14.41 5.19-18.64-1.65-39.76-19.44-59.78-12.58-14.16-30.67-22.27-49.62-22.27-18.93 0-37.01 8.12-49.59 22.27-13.38 15.05-20.95 41.01-14.03 59.62-5.56 2.5-9.45 8.09-9.45 14.57v5.29c0 8.81 7.17 15.98 15.98 15.98h5.55c3.16 13.09 10.94 24.39 21.51 32.08v22.32l-67.26 33.63c-16.7 5.87-27.89 21.6-27.89 39.28v41.63c0 3.31 2.69 6 6 6h243.46c3.31 0 6-2.69 6-6v-41.63c0-17.68-11.19-33.41-27.88-39.28zm-62.24-17.7-15.83 27.66-13.29-13.29 19.29-19.29zm-37.61 5.88-20.59-20.58v-16.91c6.41 2.57 13.4 4.01 20.72 4.01 7.22 0 14.11-1.39 20.45-3.9v16.8zm63.63-97.48v5.29c0 2.16-1.82 3.98-3.98 3.98h-3.74c.01-.36.03-.71.03-1.07v-12.18h3.71c2.15-.01 3.98 1.82 3.98 3.98zm-119.29 8.2v1.07h-3.98c-2.16 0-3.98-1.82-3.98-3.98v-5.29c0-2.16 1.82-3.98 3.98-3.98l3.98.22zm1.95-24.19c-7.33-13.69-.89-37.39 10.53-50.24 10.31-11.6 25.12-18.25 40.63-18.25 15.52 0 30.34 6.65 40.65 18.25 8.43 9.48 21.3 27.59 17.4 46.39-5.66-.35-10.67-2.55-14.4-6.36-5.37-5.49-7.72-14-6.63-23.94.29-2.62-1.17-5.13-3.6-6.17s-5.25-.37-6.95 1.65c-19.33 22.92-45.95 36.76-73.9 38.68h-3.73zm10.05 24.19v-12.73c24.57-2.92 47.92-14.05 66.73-31.8 1.43 7.26 4.63 13.6 9.45 18.52 3.27 3.35 7.14 5.89 11.41 7.58v18.42c0 24.15-19.65 43.8-43.8 43.8s-43.79-19.64-43.79-43.79zm15.89 78.48 19.29 19.29-13.29 13.29-15.84-27.66zm3.22 97.53h-39.42v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.76v-35.63c0-12.68 8.1-23.95 20.15-28.05.26-.09.51-.19.75-.31l46.47-23.23 20.07 35.06c.93 1.62 2.56 2.72 4.41 2.97.27.04.53.05.79.05 1.58 0 3.11-.62 4.24-1.76l.14-.14zm12.08 0 7.41-64.69 5.06-5.06 4.84 4.84 7.86 64.92h-25.17zm128.2 0h-39.76v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.18l-6.2-51.17.25.25c1.13 1.13 2.66 1.76 4.24 1.76.26 0 .53-.02.79-.05 1.85-.25 3.48-1.34 4.41-2.97l20.07-35.06 46.47 23.23c.24.12.49.23.75.31 12.05 4.1 20.15 15.38 20.15 28.05v35.65zm-67.04-346.65h-10.84l28.38 39.84 28.38-39.84h-10.84c-3.31 0-6-2.69-6-6v-64.58h-98.7c-3.31 0-6-2.69-6-6s2.69-6 6-6h104.7c3.31 0 6 2.69 6 6v64.58h16.48c2.25 0 4.3 1.25 5.33 3.25s.86 4.4-.45 6.23l-40.02 56.18c-1.13 1.58-2.95 2.52-4.89 2.52s-3.76-.94-4.89-2.52l-40.02-56.18c-1.3-1.83-1.48-4.23-.45-6.23s3.09-3.25 5.33-3.25h16.48v-23.5h-65.38c-3.31 0-6-2.69-6-6s2.69-6 6-6h71.38c3.31 0 6 2.69 6 6v35.5c.02 3.31-2.67 6-5.98 6zm-118.44 50.65v-133.26c0-21.18-17.23-38.41-38.41-38.41h-207.7c-21.18-.01-38.41 17.23-38.41 38.41v133.26c0 21.18 17.23 38.41 38.41 38.41h105.8l64.8 55.11c1.11.94 2.49 1.43 3.89 1.43.85 0 1.71-.18 2.52-.55 2.12-.98 3.48-3.11 3.48-5.45v-50.54h27.21c21.18 0 38.41-17.23 38.41-38.41zm-71.62 26.41c-3.31 0-6 2.69-6 6v43.56l-56.59-48.13c-1.08-.92-2.46-1.43-3.89-1.43h-108.01c-14.56 0-26.41-11.85-26.41-26.41v-133.26c0-14.56 11.85-26.41 26.41-26.41h207.69c14.56 0 26.41 11.85 26.41 26.41v133.26c0 14.56-11.85 26.41-26.41 26.41zm-156.34-87.87h56.97c3.31 0 6-2.69 6-6v-39.2l8.55-8.55c2.34-2.34 2.34-6.14 0-8.49-2.34-2.34-6.14-2.34-8.48 0l-.7.7c-.98-1.97-3.01-3.32-5.36-3.32h-56.98c-3.31 0-6 2.69-6 6v52.85c0 3.32 2.69 6.01 6 6.01zm6-52.86h44.97v2.69l-18.16 18.16-8.84-8.84c-2.34-2.34-6.14-2.34-8.49 0-2.34 2.34-2.34 6.14 0 8.49l13.08 13.08c1.17 1.17 2.71 1.76 4.24 1.76s3.07-.59 4.24-1.76l13.92-13.92v21.2h-44.96zm173.62 3.08c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 31.92c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 36.52c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.68 5.99 6zm0 31.92c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.69 5.99 6zm-119.36 165.01h10.84l-28.38-39.84-28.38 39.84h10.84c3.31 0 6 2.69 6 6v64.58h98.7c3.31 0 6 2.69 6 6s-2.69 6-6 6h-104.69c-3.31 0-6-2.69-6-6v-64.58h-16.48c-2.25 0-4.3-1.25-5.33-3.25s-.86-4.4.45-6.23l40.02-56.18c1.13-1.58 2.95-2.52 4.89-2.52s3.76.94 4.89 2.52l40.02 56.18c1.3 1.83 1.48 4.23.45 6.23s-3.09 3.25-5.33 3.25h-16.48v23.5h65.38c3.31 0 6 2.69 6 6s-2.69 6-6 6h-71.38c-3.31 0-6-2.69-6-6v-35.5c-.03-3.31 2.66-6 5.97-6z\"></path></svg>				\n									<h5>\n							ærlig<br> rådgivning						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 510 510\"><path d=\"m192.036 385.845c-4.787-46.972-19.459-64.336-30.658-82.352-8.672-13.951-15.5-28.245-15.5-54.252 0-60.242 48.865-109.109 109.135-109.109 60.242 0 109.109 48.866 109.109 109.109 0 26.007-6.828 40.301-15.5 54.252-11.199 18.016-25.871 35.38-30.658 82.352 9.985 2.864 17.345 12.101 17.345 22.975v36.44c0 13.109-10.747 23.866-23.893 23.866h-10.334v9.945c0 12.588-10.341 22.929-22.93 22.929h-46.304c-12.589 0-22.93-10.341-22.93-22.929v-9.945h-10.334c-13.146 0-23.893-10.757-23.893-23.866v-36.44c0-10.874 7.36-20.111 17.345-22.975zm111.948-.917c4.199-42.194 15.78-62.332 26.488-79.049 10.147-15.842 19.65-28.207 19.65-56.638 0-52.513-42.597-95.109-95.109-95.109-52.537 0-95.135 42.596-95.135 95.109 0 28.431 9.503 40.796 19.65 56.638 10.708 16.717 22.289 36.855 26.488 79.049zm2.554-78.61c-1.175 13.701-11.985 24.191-24.783 24.191-13.527 0-24.862-12.086-24.862-26.673v-99.328c0-14.12 11.335-26.673 24.862-26.673 11.309 0 21.031 8.139 23.975 19.497 9.12 3.904 15.688 13.438 15.688 24.78 0 1.153-.068 2.289-.201 3.403 5.078 5.326 8.283 12.802 8.283 21.117 0 6.39-1.889 12.262-5.06 17.053 1.996 4.099 3.13 8.773 3.13 13.76 0 14.1-9.065 25.697-21.032 28.873zm-16.452-109.977c-1.964-2.729-4.916-4.506-8.331-4.506-6.192 0-10.862 6.21-10.862 12.673v99.328c0 6.677 4.67 12.673 10.862 12.673 5.516 0 9.822-4.614 10.717-10.425-4.709-1.416-8.923-4.144-12.279-7.814-2.607-2.852-2.409-7.283.443-9.89 2.851-2.607 7.282-2.408 9.889.443 2.416 2.642 5.72 4.356 9.402 4.356 7.733 0 13.643-7.218 13.643-15.734s-5.91-15.734-13.643-15.734c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7 5.352 0 10.388 1.655 14.658 4.533.593-1.743.915-3.634.915-5.612 0-2.11-.366-4.128-1.036-5.972-.769.858-1.588 1.66-2.453 2.397-2.94 2.507-7.361 2.156-9.869-.784-2.507-2.939-2.155-7.361.784-9.868 2.773-2.365 4.492-6.122 4.492-10.293 0-6.072-3.705-11.374-8.898-12.467-.154-.023-.307-.052-.458-.085-.499-.08-1.01-.121-1.532-.121-2.947 0-5.591 1.389-7.515 3.525-2.585 2.87-7.015 3.101-9.886.515-2.87-2.586-3.101-7.015-.515-9.886 3.111-3.453 7.059-5.988 11.472-7.252zm-104.526 67.344c-3.171-4.791-5.06-10.663-5.06-17.053 0-8.307 3.198-15.777 8.284-21.104-.133-1.118-.202-2.258-.202-3.416 0-11.354 6.582-20.897 15.717-24.792 2.948-11.354 12.67-19.485 23.946-19.485 13.56 0 24.888 12.555 24.888 26.673v99.328c0 14.585-11.328 26.673-24.888 26.673-12.765 0-23.578-10.484-24.757-24.184-11.98-3.166-21.058-14.769-21.058-28.88 0-4.987 1.134-9.661 3.13-13.76zm9.982-23.036c-.675 1.847-1.042 3.869-1.042 5.983 0 1.978.322 3.869.915 5.612 4.27-2.878 9.306-4.533 14.658-4.533 3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7-7.733 0-13.643 7.218-13.643 15.734s5.91 15.734 13.643 15.734c3.682 0 6.986-1.714 9.402-4.356 2.607-2.851 7.038-3.05 9.889-.443 2.852 2.607 3.05 7.038.443 9.89-3.35 3.664-7.556 6.389-12.255 7.807.891 5.813 5.192 10.432 10.693 10.432 6.21 0 10.888-5.993 10.888-12.673v-99.328c0-6.466-4.678-12.673-10.888-12.673-3.404 0-6.349 1.777-8.309 4.507 4.421 1.264 8.367 3.8 11.476 7.251 2.586 2.871 2.355 7.3-.516 9.886-2.87 2.586-7.3 2.355-9.886-.515-1.926-2.138-4.574-3.525-7.54-3.525-.493 0-.976.037-1.448.108-.196.045-.395.082-.596.11-5.165 1.118-8.844 6.404-8.844 12.455 0 1.243.153 2.45.442 3.594.101.284.183.572.246.862.748 2.326 2.071 4.346 3.814 5.823 2.947 2.498 3.311 6.919.813 9.866s-6.919 3.312-9.866.814c-.878-.745-1.71-1.554-2.489-2.422zm3.042 158.279c-5.442 0-9.893 4.451-9.893 9.892v36.44c0 5.423 4.454 9.866 9.893 9.866h17.334c3.866 0 7 3.134 7 7v16.945c0 4.902 4.027 8.929 8.93 8.929h46.304c4.903 0 8.93-4.027 8.93-8.929v-16.945c0-3.866 3.134-7 7-7h17.334c5.439 0 9.893-4.443 9.893-9.866v-36.44c0-5.441-4.451-9.892-9.893-9.892zm63.416-314.093 2.907-5.412c1.828-3.403 6.075-4.683 9.479-2.854 3.403 1.828 4.682 6.075 2.854 9.479l-16.073 29.925c-1.22 2.271-3.589 3.688-6.167 3.688s-4.947-1.417-6.167-3.688l-16.073-29.925c-1.828-3.404-.549-7.651 2.854-9.479 3.404-1.829 7.651-.549 9.479 2.854l2.907 5.412v-69.835c0-3.863 3.137-7 7-7s7 3.137 7 7zm-132.198 54.758-49.381-49.381c-2.732-2.731-2.732-7.167 0-9.899s7.168-2.732 9.9 0l49.38 49.38-1.771-5.881c-1.114-3.7.985-7.608 4.684-8.722 3.7-1.114 7.607.985 8.721 4.685l9.796 32.526c.743 2.468.069 5.145-1.753 6.968-1.823 1.823-4.5 2.496-6.969 1.753l-32.526-9.795c-3.699-1.114-5.798-5.022-4.684-8.721s5.022-5.798 8.721-4.684zm-44.859 122.299h-69.835c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7h69.835l-5.412-2.907c-3.403-1.828-4.682-6.076-2.854-9.479 1.828-3.404 6.075-4.683 9.479-2.855l29.926 16.074c2.271 1.22 3.688 3.589 3.688 6.167 0 2.577-1.417 4.947-3.688 6.166l-29.926 16.074c-3.404 1.828-7.651.549-9.479-2.855-1.828-3.403-.549-7.651 2.854-9.479zm54.758 118.198-49.38 49.38c-2.732 2.732-7.168 2.732-9.9 0s-2.732-7.167 0-9.899l49.381-49.381-5.882 1.772c-3.699 1.114-7.607-.985-8.721-4.685-1.114-3.699.985-7.607 4.684-8.721l32.526-9.795c2.469-.743 5.146-.07 6.969 1.753 1.822 1.823 2.496 4.5 1.753 6.968l-9.796 32.527c-1.114 3.699-5.021 5.798-8.721 4.684-3.699-1.114-5.798-5.022-4.684-8.721zm240.497-240.497 5.882-1.771c3.699-1.114 7.607.985 8.721 4.684s-.985 7.607-4.684 8.721l-32.526 9.795c-2.469.743-5.146.07-6.969-1.753-1.822-1.823-2.496-4.5-1.753-6.968l9.796-32.526c1.114-3.7 5.021-5.799 8.721-4.685 3.699 1.114 5.798 5.022 4.684 8.722l-1.771 5.881 49.38-49.38c2.732-2.732 7.168-2.732 9.9 0s2.732 7.168 0 9.899zm44.859 122.299 5.412 2.906c3.403 1.828 4.682 6.076 2.854 9.479-1.828 3.404-6.075 4.683-9.479 2.855l-29.926-16.074c-2.271-1.219-3.688-3.589-3.688-6.166 0-2.578 1.417-4.947 3.688-6.167l29.926-16.074c3.404-1.828 7.651-.549 9.479 2.855 1.828 3.403.549 7.651-2.854 9.479l-5.412 2.907h69.835c3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7zm-54.758 118.198 1.771 5.882c1.114 3.699-.985 7.607-4.684 8.721-3.7 1.114-7.607-.985-8.721-4.684l-9.796-32.527c-.743-2.468-.069-5.145 1.753-6.968 1.823-1.823 4.5-2.496 6.969-1.753l32.526 9.795c3.699 1.114 5.798 5.022 4.684 8.721-1.114 3.7-5.022 5.799-8.721 4.685l-5.882-1.772 49.381 49.381c2.732 2.732 2.732 7.167 0 9.899s-7.168 2.732-9.9 0z\"></path></svg>				\n									<h5>\n							gennemtænkte løsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"outline\"><path d=\"M486.41,144A28,28,0,0,0,472,92H349.123l5.457-21.828a48.513,48.513,0,0,0-12.848-46.153A41.035,41.035,0,0,0,312.609,12H308a8.009,8.009,0,0,0-8,8V47.413l-19.233,64.112A17.376,17.376,0,0,1,268,123.539V112a4,4,0,0,0-4-4H152a4,4,0,0,0-4,4v72a4,4,0,0,0,8,0V116h72V276H156V248a4,4,0,0,0-8,0v32a4,4,0,0,0,4,4H264a4,4,0,0,0,4-4V268.5h11.168A37.07,37.07,0,0,1,305.092,279a45.025,45.025,0,0,0,31.48,12.752L440,292a27.987,27.987,0,0,0,19.369-48.2,27.987,27.987,0,0,0,16-48A28,28,0,0,0,486.41,144ZM260,276H236V116h24Zm212-88H396a4,4,0,0,0,0,8h60a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h40a20,20,0,0,1,.01,40l-103.428-.25a37.07,37.07,0,0,1-25.924-10.5,45.031,45.031,0,0,0-31.49-12.752H268V131.686a25.317,25.317,0,0,0,20.429-17.862l19.4-64.675A4,4,0,0,0,308,48V20h4.609a33.082,33.082,0,0,1,23.481,9.69,40.507,40.507,0,0,1,10.728,38.541l-6.7,26.8A4,4,0,0,0,344,100H472a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h72a20,20,0,0,1,0,40Z\"></path><path d=\"M194.5,183.243l-1.9-.217a4,4,0,0,0-4.169,2.491L184.29,195.9H135.278l-3.539-9.317a4,4,0,0,0-7.478,2.84l2.459,6.477h-8.474L68.452,156.872a4,4,0,1,0-4.935,6.3L77.6,174.209,56.961,194.48l-6.636-5.491a4,4,0,1,0-5.1,6.163L87.219,229.9a44.1,44.1,0,0,0,28.05,10.1H212a8.009,8.009,0,0,0,8-8V203.9a8.009,8.009,0,0,0-8-8h-8v-2.01A10.708,10.708,0,0,0,194.5,183.243ZM212,203.9V232H115.269a36.081,36.081,0,0,1-22.951-8.264l-29.16-24.128,20.8-20.422L114.4,203.045a4,4,0,0,0,2.468.852H187a4,4,0,0,0,3.715-2.517l3.929-9.843a2.712,2.712,0,0,1,1.356,2.35v6.01a4,4,0,0,0,4,4Z\"></path><path d=\"M223.084,484.672,200.87,469.863V346.36A44.1,44.1,0,0,0,195.327,325l-17.183-30.94a4,4,0,0,0-7,3.884l17.184,30.94a36.073,36.073,0,0,1,4.537,17.478V468H164.333a4,4,0,1,0,0,8h31.321l12,8H152.865V352a4,4,0,0,0-.358-1.655l-25.454-56A4,4,0,0,0,123.411,292H114.2a4,4,0,0,0-3.945,4.658l8.862,53.175a36.016,36.016,0,0,1-1.951,18.949L78.642,468H48.333a4,4,0,1,0,0,8H80.377L92,484H32.088L76.63,361.366a4.017,4.017,0,0,0,.183-2.044L61.1,268H136a4,4,0,0,0,0-8H59.233L30.555,173.966A19.723,19.723,0,0,1,49.27,148H76a12,12,0,0,0,24,0h15.2a21.975,21.975,0,0,1,8.395,1.652l10.889,4.458a4,4,0,1,0,3.032-7.4L126.63,142.25A29.938,29.938,0,0,0,115.2,140H100v-4.527A16.014,16.014,0,0,0,112,120V103.473A16.014,16.014,0,0,0,124,88V80a4,4,0,0,0-4-4H90A22.025,22.025,0,0,0,68,98v18a12.02,12.02,0,0,0,8,11.314V140H49.27a27.723,27.723,0,0,0-26.305,36.5l29.493,88.482,16.29,94.655-46.128,127A4,4,0,0,0,26.38,492h78.485a4,4,0,0,0,2.268-7.3L86.3,470.368l38.318-98.69a44.018,44.018,0,0,0,2.385-23.16L118.921,300h1.914l24.03,52.867V488a4,4,0,0,0,4,4h72a4,4,0,0,0,2.219-7.328ZM76,98A14.015,14.015,0,0,1,90,84h26v4a8.009,8.009,0,0,1-8,8H92a4,4,0,0,0-4,4,11.962,11.962,0,0,1-1.53,5.881A12.044,12.044,0,0,0,76,104.686Zm4,14a3.981,3.981,0,0,1,3.407,1.9,4,4,0,0,0,5.956.975c.207-.171.7-.648.7-.648.032-.028.061-.057.09-.087A19.907,19.907,0,0,0,95.6,104H104v16a8.009,8.009,0,0,1-8,8,12.133,12.133,0,0,1-2.681-.3,4,4,0,1,0-1.775,7.8c.151.035.3.06.456.091V148a4,4,0,1,1-8,0V124a4,4,0,0,0-4-4,4,4,0,0,1,0-8Z\"></path></g></svg>				\n									<h5>\n							arbejde udført med ansvar						\n					</h5>\n				<p>Vi lover ikke mere, end vi kan holde – men vi holder det, vi lover.</p>			<h2>KONTAKT OS</h2>		<p>Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.</p>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 13:55:50', '2026-01-26 13:55:50', '', 10, 'https://mrarif.me/cpnordic/?p=559', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(560, 1, '2026-01-26 13:55:56', '2026-01-26 13:55:56', '<h1>CP NORDIC ApS</h1>					<h4>Byggeri – Tømrerarbejde og tagdækning</h4>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle ANMELDELSER\n					</a>\n					<h2>HVORFOR VÆLGE CP NORDIC ApS?</h2>		<p>Når du vælger CP NORDIC ApS, får du:</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 450 450\" width=\"512\"><g><g><path d=\"m225 165.2c-25.9 0-48.9-18.8-53.3-45.2-2.4-14.2.9-28.6 9.3-40.3 8.4-11.8 20.9-19.5 35.1-21.9 29.4-4.9 57.3 15 62.2 44.5 4.9 29.4-15 57.3-44.4 62.2-3 .5-6 .7-8.9.7zm-7.6-99.8c-12.2 2-22.9 8.7-30.1 18.8s-10.1 22.4-8 34.6c3.8 22.7 23.5 38.8 45.7 38.8 2.5 0 5.1-.2 7.6-.6 25.2-4.2 42.3-28.1 38.1-53.4s-28.1-42.4-53.3-38.2z\"></path><path d=\"m255.2 115c-2.1 0-3.8-1.7-3.8-3.8 0-14.6-11.8-26.4-26.4-26.4-2.1 0-3.8-1.7-3.8-3.8s1.7-3.8 3.8-3.8c18.8 0 34.1 15.3 34.1 34.1 0 2-1.8 3.7-3.9 3.7z\"></path><path d=\"m236.1 203h-22.2c-2.1 0-3.8-1.7-3.8-3.8v-14.1c-3.1-.6-6.1-1.4-9.1-2.4l-7 12.2c-1.1 1.8-3.4 2.5-5.3 1.4l-19.2-11.1c-.9-.5-1.5-1.4-1.8-2.3-.3-1-.1-2 .4-2.9l7-12.1c-2.4-2.1-4.6-4.3-6.7-6.6l-12.1 7c-1.8 1.1-4.2.4-5.2-1.4l-11.1-19.2c-1.1-1.8-.4-4.2 1.4-5.2l11.9-6.8c-1-3-1.9-6.1-2.6-9.3h-13.7c-2.1 0-3.8-1.7-3.8-3.8v-22.2c0-2.1 1.7-3.8 3.8-3.8h13.4c.6-3.2 1.4-6.4 2.4-9.5l-11.5-6.6c-1.8-1.1-2.5-3.4-1.4-5.3l11.1-19.6c.5-.9 1.4-1.5 2.3-1.8s2-.1 2.9.4l11.3 6.6c2.2-2.5 4.5-4.8 7-7l-6.5-11.3c-.5-.9-.6-1.9-.4-2.9.3-1 .9-1.8 1.8-2.3l19.2-11.1c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l6.4 11.2c3.1-1.1 6.4-1.9 9.7-2.6v-13c0-2.1 1.7-3.8 3.8-3.8h22.2c2.1 0 3.8 1.7 3.8 3.8v12.8c3.3.7 6.5 1.5 9.7 2.6l6.5-11.2c.5-.9 1.4-1.5 2.3-1.8 1-.3 2-.1 2.9.4l19.2 11.1c.9.5 1.5 1.3 1.8 2.3s.1 2-.4 2.9l-6.5 11.3c2.5 2.2 4.8 4.5 7 7.1l11.3-6.6c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l11.1 19.2c1.1 1.8.4 4.2-1.4 5.3l-11.5 6.6c1 3.1 1.8 6.3 2.5 9.5h13.6c2.1 0 3.8 1.7 3.8 3.8v22.2c0 2.1-1.7 3.8-3.8 3.8h-13.6c-.6 3.1-1.5 6.2-2.5 9.3l11.9 6.8c1.8 1.1 2.5 3.4 1.4 5.2l-11.2 19.5c-1.1 1.8-3.4 2.5-5.2 1.4l-12-7c-2.1 2.4-4.4 4.6-6.7 6.6l7 12.1c.5.9.6 1.9.4 2.9s-.9 1.8-1.8 2.3l-19.2 11.1c-1.8 1.1-4.2.4-5.2-1.4l-7-12.2c-3 1-6 1.8-9.1 2.4v14.1c-.2 2.3-2 4-4.1 4zm-18.4-7.7h14.5v-13.5c0-1.9 1.4-3.5 3.3-3.8 4.7-.7 9.4-2 13.8-3.7 1.8-.7 3.8 0 4.7 1.7l6.7 11.6 12.6-7.3-6.7-11.6c-1-1.6-.5-3.7.9-4.9 3.7-3 7.2-6.4 10.2-10.1 1.2-1.5 3.3-1.8 4.9-.9l11.5 6.6 7.3-12.6-11.3-6.5c-1.6-.9-2.4-3-1.6-4.7 1.8-4.5 3.1-9.2 3.9-14 .3-1.9 1.9-3.2 3.8-3.2h13v-14.6h-12.8c-1.9 0-3.5-1.4-3.8-3.3-.7-4.8-2-9.6-3.7-14.2-.7-1.8 0-3.7 1.7-4.7l10.9-6.3-7.3-12.6-10.8 6.3c-1.6.9-3.7.6-4.9-.9-3.1-3.9-6.6-7.4-10.4-10.6-1.5-1.2-1.9-3.3-.9-4.9l6.2-10.7-12.6-7.3-6.1 10.6c-1 1.6-3 2.3-4.7 1.7-4.6-1.8-9.5-3.1-14.4-3.9-1.9-.3-3.3-1.9-3.3-3.8v-12.2h-14.5v12.3c0 1.9-1.4 3.5-3.3 3.8-5 .8-9.8 2.1-14.4 3.9-1.8.7-3.8 0-4.7-1.7l-6.1-10.6-12.6 7.3 6.2 10.7c.9 1.6.6 3.7-.9 4.9-3.9 3.1-7.4 6.7-10.4 10.6-1.2 1.5-3.3 1.9-4.9.9l-10.8-6.3-7.3 12.6 10.9 6.3c1.6.9 2.3 2.9 1.7 4.7-1.7 4.6-3 9.4-3.7 14.2-.3 1.9-1.9 3.3-3.8 3.3h-12.8v14.5h13c1.9 0 3.5 1.4 3.8 3.2.8 4.8 2.1 9.5 3.9 14 .7 1.8 0 3.8-1.6 4.7l-11.3 6.5 7.3 12.6 11.5-6.6c1.6-.9 3.7-.6 4.9.9 3 3.7 6.5 7.1 10.3 10.1 1.5 1.2 1.9 3.3.9 4.9l-6.7 11.6 12.6 7.3 6.7-11.6c.9-1.6 2.9-2.3 4.7-1.7 4.5 1.7 9.1 2.9 13.8 3.7 1.9.3 3.3 1.9 3.3 3.8z\"></path></g><g><g><g><path d=\"m45.3 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m153.9 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path></g><g><path d=\"m189.3 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.2c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c0 2.1-1.7 3.8-3.8 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m73.3 326.4c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m126 326.4c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m99.7 325.6c-.6 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4s4.1 1.1 4.4 3.2c2.4 16.5 12.3 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m50.2 266.6c-.1 0-.2 0-.3 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.7 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-8.9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.5 2.2zm81.8-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13.1-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.4-.7 2.3-.7z\"></path></g></g></g><g><g><path d=\"m296.1 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m404.7 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path></g><g><path d=\"m440 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.1c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c.2 2.1-1.6 3.8-3.7 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m324 326.3c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m376.7 326.3c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m350.4 325.6c-.5 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4 2.1-.3 4 1.1 4.4 3.2 2.4 16.5 12.4 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m301 266.6c-.1 0-.2 0-.4 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.6 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.4 2.2zm81.7-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.5-.7 2.3-.7z\"></path></g></g></g></g></g></svg>				\n									<h5>\n							et ungt og engageret team						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"496pt\" viewBox=\"0 0 496 496\" width=\"496pt\"><path d=\"m440 328h-28.207031c5.078125-6.703125 8.207031-14.960938 8.207031-24 0-8.824219-7.175781-16-16-16h-12v-19.960938c59.574219-14.445312 104-68.085937 104-132.039062 0-74.992188-61.007812-136-136-136s-136 61.007812-136 136c0 63.953125 44.425781 117.59375 104 132.039062v19.960938h-8.449219c-6.167969 0-12.359375 1.464844-17.886719 4.214844l-50.480468 25.25c-3.320313 1.664062-7.03125 2.535156-10.734375 2.535156h-40.449219v-16h-104v16h56v56h16v-56h16v128h-16v-56h-16v56h-56v16h104v-16h40.449219c3.703125 0 7.414062.871094 10.734375 2.527344l34.488281 17.25c5.519531 2.757812 11.710937 4.222656 17.878906 4.222656h24.449219v24h64v-24h48c13.230469 0 24-10.769531 24-24 0-6.167969-2.40625-11.742188-6.238281-16 3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16 0-13.230469-10.769531-24-24-24zm8 24c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm-208-280c0-66.167969 53.832031-120 120-120s120 53.832031 120 120-53.832031 120-120 120-120-53.832031-120-120zm104 134.976562c5.257812.617188 10.574219 1.023438 16 1.023438s10.742188-.40625 16-1.023438v17.023438h-32zm-40.449219 185.023438c-3.703125 0-7.414062-.871094-10.734375-2.527344l-34.488281-17.25c-5.519531-2.757812-11.710937-4.222656-17.878906-4.222656h-40.449219v-96h40.449219c6.167969 0 12.359375-1.464844 17.886719-4.214844l50.480468-25.25c3.320313-1.664062 7.03125-2.535156 10.734375-2.535156h84.449219c0 13.230469-10.769531 24-24 24h-48.28125l-23.863281 35.808594c-6.101563 9.160156-14.527344 16.589844-24.367188 21.503906-8.753906 4.375-18.542969 6.6875-28.320312 6.6875h-15.167969v16h15.167969c12.246093 0 24.519531-2.894531 35.472656-8.375 12.328125-6.160156 22.878906-15.480469 30.527344-26.945312l6.832031-10.253907v93.574219zm40.449219 24v-136h17.472656c-.898437 2.511719-1.472656 5.183594-1.472656 8 0 6.167969 2.40625 11.742188 6.238281 16-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16 0 10.414062 6.710938 19.214844 16 22.527344v9.472656zm96-24h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8s-3.59375 8-8 8zm0 0\"></path><path d=\"m394.878906 73.007812-7.757812 13.984376c17.816406 9.878906 28.878906 28.664062 28.878906 49.007812h16c0-26.160156-14.222656-50.296875-37.121094-62.992188zm0 0\"></path><path d=\"m360 80c4.734375 0 9.449219.59375 14.007812 1.769531l3.976563-15.503906c-5.855469-1.496094-11.90625-2.265625-17.984375-2.265625zm0 0\"></path><path d=\"m360 48c48.519531 0 88 39.480469 88 88 0 20.753906-7.398438 40.910156-20.832031 56.785156l12.207031 10.34375c15.882812-18.761718 24.625-42.601562 24.625-67.128906 0-57.34375-46.65625-104-104-104-24.527344 0-48.367188 8.753906-67.128906 24.632812l10.335937 12.199219c15.871094-13.433593 36.039063-20.832031 56.792969-20.832031zm0 0\"></path><path d=\"m427.128906 215.367188-10.335937-12.199219c-15.871094 13.433593-36.039063 20.832031-56.792969 20.832031-48.519531 0-88-39.480469-88-88 0-20.753906 7.398438-40.910156 20.832031-56.785156l-12.207031-10.34375c-15.882812 18.761718-24.625 42.601562-24.625 67.128906 0 57.34375 46.65625 104 104 104 24.527344 0 48.367188-8.753906 67.128906-24.632812zm0 0\"></path><path d=\"m121.214844 165.640625c4.953125-1.375 9.695312-3.34375 14.183594-5.878906l9.769531 4.886719 19.472656-19.480469-4.886719-9.769531c2.535156-4.496094 4.503906-9.230469 5.886719-14.183594l10.359375-3.445313v-27.53125l-10.351562-3.453125c-1.375-4.953125-3.34375-9.707031-5.886719-14.183594l4.886719-9.777343-19.472657-19.472657-9.769531 4.886719c-4.484375-2.535156-9.230469-4.503906-14.183594-5.878906l-3.453125-10.359375h-27.539062l-3.445313 10.359375c-4.953125 1.375-9.695312 3.34375-14.183594 5.878906l-9.777343-4.886719-19.472657 19.472657 4.886719 9.777343c-2.535156 4.488282-4.503906 9.230469-5.886719 14.183594l-10.351562 3.445313v27.53125l10.351562 3.453125c1.375 4.953125 3.34375 9.695312 5.886719 14.183594l-4.886719 9.769531 19.472657 19.480469 9.769531-4.886719c4.484375 2.535156 9.230469 4.503906 14.183594 5.878906l3.453125 10.359375h27.539062zm-12.304688-13.679687-2.679687 8.039062h-4.460938l-2.679687-8.039062-4.554688-.90625c-6.128906-1.222657-11.878906-3.605469-17.109375-7.09375l-3.867187-2.578126-7.574219 3.800782-3.160156-3.167969 3.792969-7.582031-2.578126-3.859375c-3.488281-5.222657-5.871093-10.980469-7.09375-17.109375l-.914062-4.554688-8.03125-2.679687v-4.46875l8.03125-2.671875.914062-4.554688c1.222657-6.136718 3.613282-11.886718 7.09375-17.109375l2.578126-3.859375-3.792969-7.589844 3.160156-3.160156 7.574219 3.800782 3.867187-2.578126c5.222657-3.488281 10.980469-5.863281 17.109375-7.09375l4.554688-.90625 2.679687-8.039062h4.460938l2.679687 8.039062 4.554688.90625c6.128906 1.222657 11.878906 3.605469 17.109375 7.09375l3.867187 2.578126 7.574219-3.800782 3.160156 3.160156-3.792969 7.589844 2.578126 3.859375c3.488281 5.214844 5.871093 10.972657 7.09375 17.109375l.914062 4.554688 8.03125 2.679687v4.46875l-8.03125 2.671875-.914062 4.554688c-1.222657 6.128906-3.613282 11.878906-7.09375 17.109375l-2.578126 3.859375 3.792969 7.582031-3.160156 3.167969-7.574219-3.800782-3.867187 2.578126c-5.222657 3.488281-10.980469 5.863281-17.109375 7.09375zm0 0\"></path><path d=\"m104 72c-17.648438 0-32 14.351562-32 32s14.351562 32 32 32 32-14.351562 32-32-14.351562-32-32-32zm0 48c-8.824219 0-16-7.175781-16-16s7.175781-16 16-16 16 7.175781 16 16-7.175781 16-16 16zm0 0\"></path><path d=\"m160 248v-40h48v-208h-208v208h106.664062zm-144-232h176v176h-48v24l-32-24h-96zm0 0\"></path><path d=\"m0 272h16v16h-16zm0 0\"></path><path d=\"m32 272h16v16h-16zm0 0\"></path><path d=\"m64 272h16v16h-16zm0 0\"></path><path d=\"m32 304h16v16h-16zm0 0\"></path><path d=\"m64 304h16v16h-16zm0 0\"></path><path d=\"m0 480h16v16h-16zm0 0\"></path><path d=\"m32 480h16v16h-16zm0 0\"></path><path d=\"m64 480h16v16h-16zm0 0\"></path><path d=\"m32 448h16v16h-16zm0 0\"></path><path d=\"m64 448h16v16h-16zm0 0\"></path></svg>				\n									<h5>\n							fokus på kvalitet og detaljer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m469.12 408.93-67.26-33.63v-22.13c10.71-7.69 18.6-19.07 21.78-32.27h5.28c8.81 0 15.98-7.17 15.98-15.98v-5.29c0-6.35-3.74-11.84-9.12-14.41 5.19-18.64-1.65-39.76-19.44-59.78-12.58-14.16-30.67-22.27-49.62-22.27-18.93 0-37.01 8.12-49.59 22.27-13.38 15.05-20.95 41.01-14.03 59.62-5.56 2.5-9.45 8.09-9.45 14.57v5.29c0 8.81 7.17 15.98 15.98 15.98h5.55c3.16 13.09 10.94 24.39 21.51 32.08v22.32l-67.26 33.63c-16.7 5.87-27.89 21.6-27.89 39.28v41.63c0 3.31 2.69 6 6 6h243.46c3.31 0 6-2.69 6-6v-41.63c0-17.68-11.19-33.41-27.88-39.28zm-62.24-17.7-15.83 27.66-13.29-13.29 19.29-19.29zm-37.61 5.88-20.59-20.58v-16.91c6.41 2.57 13.4 4.01 20.72 4.01 7.22 0 14.11-1.39 20.45-3.9v16.8zm63.63-97.48v5.29c0 2.16-1.82 3.98-3.98 3.98h-3.74c.01-.36.03-.71.03-1.07v-12.18h3.71c2.15-.01 3.98 1.82 3.98 3.98zm-119.29 8.2v1.07h-3.98c-2.16 0-3.98-1.82-3.98-3.98v-5.29c0-2.16 1.82-3.98 3.98-3.98l3.98.22zm1.95-24.19c-7.33-13.69-.89-37.39 10.53-50.24 10.31-11.6 25.12-18.25 40.63-18.25 15.52 0 30.34 6.65 40.65 18.25 8.43 9.48 21.3 27.59 17.4 46.39-5.66-.35-10.67-2.55-14.4-6.36-5.37-5.49-7.72-14-6.63-23.94.29-2.62-1.17-5.13-3.6-6.17s-5.25-.37-6.95 1.65c-19.33 22.92-45.95 36.76-73.9 38.68h-3.73zm10.05 24.19v-12.73c24.57-2.92 47.92-14.05 66.73-31.8 1.43 7.26 4.63 13.6 9.45 18.52 3.27 3.35 7.14 5.89 11.41 7.58v18.42c0 24.15-19.65 43.8-43.8 43.8s-43.79-19.64-43.79-43.79zm15.89 78.48 19.29 19.29-13.29 13.29-15.84-27.66zm3.22 97.53h-39.42v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.76v-35.63c0-12.68 8.1-23.95 20.15-28.05.26-.09.51-.19.75-.31l46.47-23.23 20.07 35.06c.93 1.62 2.56 2.72 4.41 2.97.27.04.53.05.79.05 1.58 0 3.11-.62 4.24-1.76l.14-.14zm12.08 0 7.41-64.69 5.06-5.06 4.84 4.84 7.86 64.92h-25.17zm128.2 0h-39.76v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.18l-6.2-51.17.25.25c1.13 1.13 2.66 1.76 4.24 1.76.26 0 .53-.02.79-.05 1.85-.25 3.48-1.34 4.41-2.97l20.07-35.06 46.47 23.23c.24.12.49.23.75.31 12.05 4.1 20.15 15.38 20.15 28.05v35.65zm-67.04-346.65h-10.84l28.38 39.84 28.38-39.84h-10.84c-3.31 0-6-2.69-6-6v-64.58h-98.7c-3.31 0-6-2.69-6-6s2.69-6 6-6h104.7c3.31 0 6 2.69 6 6v64.58h16.48c2.25 0 4.3 1.25 5.33 3.25s.86 4.4-.45 6.23l-40.02 56.18c-1.13 1.58-2.95 2.52-4.89 2.52s-3.76-.94-4.89-2.52l-40.02-56.18c-1.3-1.83-1.48-4.23-.45-6.23s3.09-3.25 5.33-3.25h16.48v-23.5h-65.38c-3.31 0-6-2.69-6-6s2.69-6 6-6h71.38c3.31 0 6 2.69 6 6v35.5c.02 3.31-2.67 6-5.98 6zm-118.44 50.65v-133.26c0-21.18-17.23-38.41-38.41-38.41h-207.7c-21.18-.01-38.41 17.23-38.41 38.41v133.26c0 21.18 17.23 38.41 38.41 38.41h105.8l64.8 55.11c1.11.94 2.49 1.43 3.89 1.43.85 0 1.71-.18 2.52-.55 2.12-.98 3.48-3.11 3.48-5.45v-50.54h27.21c21.18 0 38.41-17.23 38.41-38.41zm-71.62 26.41c-3.31 0-6 2.69-6 6v43.56l-56.59-48.13c-1.08-.92-2.46-1.43-3.89-1.43h-108.01c-14.56 0-26.41-11.85-26.41-26.41v-133.26c0-14.56 11.85-26.41 26.41-26.41h207.69c14.56 0 26.41 11.85 26.41 26.41v133.26c0 14.56-11.85 26.41-26.41 26.41zm-156.34-87.87h56.97c3.31 0 6-2.69 6-6v-39.2l8.55-8.55c2.34-2.34 2.34-6.14 0-8.49-2.34-2.34-6.14-2.34-8.48 0l-.7.7c-.98-1.97-3.01-3.32-5.36-3.32h-56.98c-3.31 0-6 2.69-6 6v52.85c0 3.32 2.69 6.01 6 6.01zm6-52.86h44.97v2.69l-18.16 18.16-8.84-8.84c-2.34-2.34-6.14-2.34-8.49 0-2.34 2.34-2.34 6.14 0 8.49l13.08 13.08c1.17 1.17 2.71 1.76 4.24 1.76s3.07-.59 4.24-1.76l13.92-13.92v21.2h-44.96zm173.62 3.08c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 31.92c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 36.52c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.68 5.99 6zm0 31.92c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.69 5.99 6zm-119.36 165.01h10.84l-28.38-39.84-28.38 39.84h10.84c3.31 0 6 2.69 6 6v64.58h98.7c3.31 0 6 2.69 6 6s-2.69 6-6 6h-104.69c-3.31 0-6-2.69-6-6v-64.58h-16.48c-2.25 0-4.3-1.25-5.33-3.25s-.86-4.4.45-6.23l40.02-56.18c1.13-1.58 2.95-2.52 4.89-2.52s3.76.94 4.89 2.52l40.02 56.18c1.3 1.83 1.48 4.23.45 6.23s-3.09 3.25-5.33 3.25h-16.48v23.5h65.38c3.31 0 6 2.69 6 6s-2.69 6-6 6h-71.38c-3.31 0-6-2.69-6-6v-35.5c-.03-3.31 2.66-6 5.97-6z\"></path></svg>				\n									<h5>\n							ærlig<br> rådgivning						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 510 510\"><path d=\"m192.036 385.845c-4.787-46.972-19.459-64.336-30.658-82.352-8.672-13.951-15.5-28.245-15.5-54.252 0-60.242 48.865-109.109 109.135-109.109 60.242 0 109.109 48.866 109.109 109.109 0 26.007-6.828 40.301-15.5 54.252-11.199 18.016-25.871 35.38-30.658 82.352 9.985 2.864 17.345 12.101 17.345 22.975v36.44c0 13.109-10.747 23.866-23.893 23.866h-10.334v9.945c0 12.588-10.341 22.929-22.93 22.929h-46.304c-12.589 0-22.93-10.341-22.93-22.929v-9.945h-10.334c-13.146 0-23.893-10.757-23.893-23.866v-36.44c0-10.874 7.36-20.111 17.345-22.975zm111.948-.917c4.199-42.194 15.78-62.332 26.488-79.049 10.147-15.842 19.65-28.207 19.65-56.638 0-52.513-42.597-95.109-95.109-95.109-52.537 0-95.135 42.596-95.135 95.109 0 28.431 9.503 40.796 19.65 56.638 10.708 16.717 22.289 36.855 26.488 79.049zm2.554-78.61c-1.175 13.701-11.985 24.191-24.783 24.191-13.527 0-24.862-12.086-24.862-26.673v-99.328c0-14.12 11.335-26.673 24.862-26.673 11.309 0 21.031 8.139 23.975 19.497 9.12 3.904 15.688 13.438 15.688 24.78 0 1.153-.068 2.289-.201 3.403 5.078 5.326 8.283 12.802 8.283 21.117 0 6.39-1.889 12.262-5.06 17.053 1.996 4.099 3.13 8.773 3.13 13.76 0 14.1-9.065 25.697-21.032 28.873zm-16.452-109.977c-1.964-2.729-4.916-4.506-8.331-4.506-6.192 0-10.862 6.21-10.862 12.673v99.328c0 6.677 4.67 12.673 10.862 12.673 5.516 0 9.822-4.614 10.717-10.425-4.709-1.416-8.923-4.144-12.279-7.814-2.607-2.852-2.409-7.283.443-9.89 2.851-2.607 7.282-2.408 9.889.443 2.416 2.642 5.72 4.356 9.402 4.356 7.733 0 13.643-7.218 13.643-15.734s-5.91-15.734-13.643-15.734c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7 5.352 0 10.388 1.655 14.658 4.533.593-1.743.915-3.634.915-5.612 0-2.11-.366-4.128-1.036-5.972-.769.858-1.588 1.66-2.453 2.397-2.94 2.507-7.361 2.156-9.869-.784-2.507-2.939-2.155-7.361.784-9.868 2.773-2.365 4.492-6.122 4.492-10.293 0-6.072-3.705-11.374-8.898-12.467-.154-.023-.307-.052-.458-.085-.499-.08-1.01-.121-1.532-.121-2.947 0-5.591 1.389-7.515 3.525-2.585 2.87-7.015 3.101-9.886.515-2.87-2.586-3.101-7.015-.515-9.886 3.111-3.453 7.059-5.988 11.472-7.252zm-104.526 67.344c-3.171-4.791-5.06-10.663-5.06-17.053 0-8.307 3.198-15.777 8.284-21.104-.133-1.118-.202-2.258-.202-3.416 0-11.354 6.582-20.897 15.717-24.792 2.948-11.354 12.67-19.485 23.946-19.485 13.56 0 24.888 12.555 24.888 26.673v99.328c0 14.585-11.328 26.673-24.888 26.673-12.765 0-23.578-10.484-24.757-24.184-11.98-3.166-21.058-14.769-21.058-28.88 0-4.987 1.134-9.661 3.13-13.76zm9.982-23.036c-.675 1.847-1.042 3.869-1.042 5.983 0 1.978.322 3.869.915 5.612 4.27-2.878 9.306-4.533 14.658-4.533 3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7-7.733 0-13.643 7.218-13.643 15.734s5.91 15.734 13.643 15.734c3.682 0 6.986-1.714 9.402-4.356 2.607-2.851 7.038-3.05 9.889-.443 2.852 2.607 3.05 7.038.443 9.89-3.35 3.664-7.556 6.389-12.255 7.807.891 5.813 5.192 10.432 10.693 10.432 6.21 0 10.888-5.993 10.888-12.673v-99.328c0-6.466-4.678-12.673-10.888-12.673-3.404 0-6.349 1.777-8.309 4.507 4.421 1.264 8.367 3.8 11.476 7.251 2.586 2.871 2.355 7.3-.516 9.886-2.87 2.586-7.3 2.355-9.886-.515-1.926-2.138-4.574-3.525-7.54-3.525-.493 0-.976.037-1.448.108-.196.045-.395.082-.596.11-5.165 1.118-8.844 6.404-8.844 12.455 0 1.243.153 2.45.442 3.594.101.284.183.572.246.862.748 2.326 2.071 4.346 3.814 5.823 2.947 2.498 3.311 6.919.813 9.866s-6.919 3.312-9.866.814c-.878-.745-1.71-1.554-2.489-2.422zm3.042 158.279c-5.442 0-9.893 4.451-9.893 9.892v36.44c0 5.423 4.454 9.866 9.893 9.866h17.334c3.866 0 7 3.134 7 7v16.945c0 4.902 4.027 8.929 8.93 8.929h46.304c4.903 0 8.93-4.027 8.93-8.929v-16.945c0-3.866 3.134-7 7-7h17.334c5.439 0 9.893-4.443 9.893-9.866v-36.44c0-5.441-4.451-9.892-9.893-9.892zm63.416-314.093 2.907-5.412c1.828-3.403 6.075-4.683 9.479-2.854 3.403 1.828 4.682 6.075 2.854 9.479l-16.073 29.925c-1.22 2.271-3.589 3.688-6.167 3.688s-4.947-1.417-6.167-3.688l-16.073-29.925c-1.828-3.404-.549-7.651 2.854-9.479 3.404-1.829 7.651-.549 9.479 2.854l2.907 5.412v-69.835c0-3.863 3.137-7 7-7s7 3.137 7 7zm-132.198 54.758-49.381-49.381c-2.732-2.731-2.732-7.167 0-9.899s7.168-2.732 9.9 0l49.38 49.38-1.771-5.881c-1.114-3.7.985-7.608 4.684-8.722 3.7-1.114 7.607.985 8.721 4.685l9.796 32.526c.743 2.468.069 5.145-1.753 6.968-1.823 1.823-4.5 2.496-6.969 1.753l-32.526-9.795c-3.699-1.114-5.798-5.022-4.684-8.721s5.022-5.798 8.721-4.684zm-44.859 122.299h-69.835c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7h69.835l-5.412-2.907c-3.403-1.828-4.682-6.076-2.854-9.479 1.828-3.404 6.075-4.683 9.479-2.855l29.926 16.074c2.271 1.22 3.688 3.589 3.688 6.167 0 2.577-1.417 4.947-3.688 6.166l-29.926 16.074c-3.404 1.828-7.651.549-9.479-2.855-1.828-3.403-.549-7.651 2.854-9.479zm54.758 118.198-49.38 49.38c-2.732 2.732-7.168 2.732-9.9 0s-2.732-7.167 0-9.899l49.381-49.381-5.882 1.772c-3.699 1.114-7.607-.985-8.721-4.685-1.114-3.699.985-7.607 4.684-8.721l32.526-9.795c2.469-.743 5.146-.07 6.969 1.753 1.822 1.823 2.496 4.5 1.753 6.968l-9.796 32.527c-1.114 3.699-5.021 5.798-8.721 4.684-3.699-1.114-5.798-5.022-4.684-8.721zm240.497-240.497 5.882-1.771c3.699-1.114 7.607.985 8.721 4.684s-.985 7.607-4.684 8.721l-32.526 9.795c-2.469.743-5.146.07-6.969-1.753-1.822-1.823-2.496-4.5-1.753-6.968l9.796-32.526c1.114-3.7 5.021-5.799 8.721-4.685 3.699 1.114 5.798 5.022 4.684 8.722l-1.771 5.881 49.38-49.38c2.732-2.732 7.168-2.732 9.9 0s2.732 7.168 0 9.899zm44.859 122.299 5.412 2.906c3.403 1.828 4.682 6.076 2.854 9.479-1.828 3.404-6.075 4.683-9.479 2.855l-29.926-16.074c-2.271-1.219-3.688-3.589-3.688-6.166 0-2.578 1.417-4.947 3.688-6.167l29.926-16.074c3.404-1.828 7.651-.549 9.479 2.855 1.828 3.403.549 7.651-2.854 9.479l-5.412 2.907h69.835c3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7zm-54.758 118.198 1.771 5.882c1.114 3.699-.985 7.607-4.684 8.721-3.7 1.114-7.607-.985-8.721-4.684l-9.796-32.527c-.743-2.468-.069-5.145 1.753-6.968 1.823-1.823 4.5-2.496 6.969-1.753l32.526 9.795c3.699 1.114 5.798 5.022 4.684 8.721-1.114 3.7-5.022 5.799-8.721 4.685l-5.882-1.772 49.381 49.381c2.732 2.732 2.732 7.167 0 9.899s-7.168 2.732-9.9 0z\"></path></svg>				\n									<h5>\n							gennemtænkte løsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"outline\"><path d=\"M486.41,144A28,28,0,0,0,472,92H349.123l5.457-21.828a48.513,48.513,0,0,0-12.848-46.153A41.035,41.035,0,0,0,312.609,12H308a8.009,8.009,0,0,0-8,8V47.413l-19.233,64.112A17.376,17.376,0,0,1,268,123.539V112a4,4,0,0,0-4-4H152a4,4,0,0,0-4,4v72a4,4,0,0,0,8,0V116h72V276H156V248a4,4,0,0,0-8,0v32a4,4,0,0,0,4,4H264a4,4,0,0,0,4-4V268.5h11.168A37.07,37.07,0,0,1,305.092,279a45.025,45.025,0,0,0,31.48,12.752L440,292a27.987,27.987,0,0,0,19.369-48.2,27.987,27.987,0,0,0,16-48A28,28,0,0,0,486.41,144ZM260,276H236V116h24Zm212-88H396a4,4,0,0,0,0,8h60a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h40a20,20,0,0,1,.01,40l-103.428-.25a37.07,37.07,0,0,1-25.924-10.5,45.031,45.031,0,0,0-31.49-12.752H268V131.686a25.317,25.317,0,0,0,20.429-17.862l19.4-64.675A4,4,0,0,0,308,48V20h4.609a33.082,33.082,0,0,1,23.481,9.69,40.507,40.507,0,0,1,10.728,38.541l-6.7,26.8A4,4,0,0,0,344,100H472a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h72a20,20,0,0,1,0,40Z\"></path><path d=\"M194.5,183.243l-1.9-.217a4,4,0,0,0-4.169,2.491L184.29,195.9H135.278l-3.539-9.317a4,4,0,0,0-7.478,2.84l2.459,6.477h-8.474L68.452,156.872a4,4,0,1,0-4.935,6.3L77.6,174.209,56.961,194.48l-6.636-5.491a4,4,0,1,0-5.1,6.163L87.219,229.9a44.1,44.1,0,0,0,28.05,10.1H212a8.009,8.009,0,0,0,8-8V203.9a8.009,8.009,0,0,0-8-8h-8v-2.01A10.708,10.708,0,0,0,194.5,183.243ZM212,203.9V232H115.269a36.081,36.081,0,0,1-22.951-8.264l-29.16-24.128,20.8-20.422L114.4,203.045a4,4,0,0,0,2.468.852H187a4,4,0,0,0,3.715-2.517l3.929-9.843a2.712,2.712,0,0,1,1.356,2.35v6.01a4,4,0,0,0,4,4Z\"></path><path d=\"M223.084,484.672,200.87,469.863V346.36A44.1,44.1,0,0,0,195.327,325l-17.183-30.94a4,4,0,0,0-7,3.884l17.184,30.94a36.073,36.073,0,0,1,4.537,17.478V468H164.333a4,4,0,1,0,0,8h31.321l12,8H152.865V352a4,4,0,0,0-.358-1.655l-25.454-56A4,4,0,0,0,123.411,292H114.2a4,4,0,0,0-3.945,4.658l8.862,53.175a36.016,36.016,0,0,1-1.951,18.949L78.642,468H48.333a4,4,0,1,0,0,8H80.377L92,484H32.088L76.63,361.366a4.017,4.017,0,0,0,.183-2.044L61.1,268H136a4,4,0,0,0,0-8H59.233L30.555,173.966A19.723,19.723,0,0,1,49.27,148H76a12,12,0,0,0,24,0h15.2a21.975,21.975,0,0,1,8.395,1.652l10.889,4.458a4,4,0,1,0,3.032-7.4L126.63,142.25A29.938,29.938,0,0,0,115.2,140H100v-4.527A16.014,16.014,0,0,0,112,120V103.473A16.014,16.014,0,0,0,124,88V80a4,4,0,0,0-4-4H90A22.025,22.025,0,0,0,68,98v18a12.02,12.02,0,0,0,8,11.314V140H49.27a27.723,27.723,0,0,0-26.305,36.5l29.493,88.482,16.29,94.655-46.128,127A4,4,0,0,0,26.38,492h78.485a4,4,0,0,0,2.268-7.3L86.3,470.368l38.318-98.69a44.018,44.018,0,0,0,2.385-23.16L118.921,300h1.914l24.03,52.867V488a4,4,0,0,0,4,4h72a4,4,0,0,0,2.219-7.328ZM76,98A14.015,14.015,0,0,1,90,84h26v4a8.009,8.009,0,0,1-8,8H92a4,4,0,0,0-4,4,11.962,11.962,0,0,1-1.53,5.881A12.044,12.044,0,0,0,76,104.686Zm4,14a3.981,3.981,0,0,1,3.407,1.9,4,4,0,0,0,5.956.975c.207-.171.7-.648.7-.648.032-.028.061-.057.09-.087A19.907,19.907,0,0,0,95.6,104H104v16a8.009,8.009,0,0,1-8,8,12.133,12.133,0,0,1-2.681-.3,4,4,0,1,0-1.775,7.8c.151.035.3.06.456.091V148a4,4,0,1,1-8,0V124a4,4,0,0,0-4-4,4,4,0,0,1,0-8Z\"></path></g></svg>				\n									<h5>\n							arbejde udført med ansvar						\n					</h5>\n				<p>Vi lover ikke mere, end vi kan holde – men vi holder det, vi lover.</p>			<h2>KONTAKT OS</h2>		<p>Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.</p>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 13:55:56', '2026-01-26 13:55:56', '', 10, 'https://mrarif.me/cpnordic/?p=560', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(561, 1, '2026-01-26 13:55:56', '2026-01-26 13:55:56', '<h1>CP NORDIC ApS</h1>					<h4>Byggeri – Tømrerarbejde og tagdækning</h4>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle ANMELDELSER\n					</a>\n					<h2>HVORFOR VÆLGE CP NORDIC ApS?</h2>		<p>Når du vælger CP NORDIC ApS, får du:</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 450 450\" width=\"512\"><g><g><path d=\"m225 165.2c-25.9 0-48.9-18.8-53.3-45.2-2.4-14.2.9-28.6 9.3-40.3 8.4-11.8 20.9-19.5 35.1-21.9 29.4-4.9 57.3 15 62.2 44.5 4.9 29.4-15 57.3-44.4 62.2-3 .5-6 .7-8.9.7zm-7.6-99.8c-12.2 2-22.9 8.7-30.1 18.8s-10.1 22.4-8 34.6c3.8 22.7 23.5 38.8 45.7 38.8 2.5 0 5.1-.2 7.6-.6 25.2-4.2 42.3-28.1 38.1-53.4s-28.1-42.4-53.3-38.2z\"></path><path d=\"m255.2 115c-2.1 0-3.8-1.7-3.8-3.8 0-14.6-11.8-26.4-26.4-26.4-2.1 0-3.8-1.7-3.8-3.8s1.7-3.8 3.8-3.8c18.8 0 34.1 15.3 34.1 34.1 0 2-1.8 3.7-3.9 3.7z\"></path><path d=\"m236.1 203h-22.2c-2.1 0-3.8-1.7-3.8-3.8v-14.1c-3.1-.6-6.1-1.4-9.1-2.4l-7 12.2c-1.1 1.8-3.4 2.5-5.3 1.4l-19.2-11.1c-.9-.5-1.5-1.4-1.8-2.3-.3-1-.1-2 .4-2.9l7-12.1c-2.4-2.1-4.6-4.3-6.7-6.6l-12.1 7c-1.8 1.1-4.2.4-5.2-1.4l-11.1-19.2c-1.1-1.8-.4-4.2 1.4-5.2l11.9-6.8c-1-3-1.9-6.1-2.6-9.3h-13.7c-2.1 0-3.8-1.7-3.8-3.8v-22.2c0-2.1 1.7-3.8 3.8-3.8h13.4c.6-3.2 1.4-6.4 2.4-9.5l-11.5-6.6c-1.8-1.1-2.5-3.4-1.4-5.3l11.1-19.6c.5-.9 1.4-1.5 2.3-1.8s2-.1 2.9.4l11.3 6.6c2.2-2.5 4.5-4.8 7-7l-6.5-11.3c-.5-.9-.6-1.9-.4-2.9.3-1 .9-1.8 1.8-2.3l19.2-11.1c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l6.4 11.2c3.1-1.1 6.4-1.9 9.7-2.6v-13c0-2.1 1.7-3.8 3.8-3.8h22.2c2.1 0 3.8 1.7 3.8 3.8v12.8c3.3.7 6.5 1.5 9.7 2.6l6.5-11.2c.5-.9 1.4-1.5 2.3-1.8 1-.3 2-.1 2.9.4l19.2 11.1c.9.5 1.5 1.3 1.8 2.3s.1 2-.4 2.9l-6.5 11.3c2.5 2.2 4.8 4.5 7 7.1l11.3-6.6c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l11.1 19.2c1.1 1.8.4 4.2-1.4 5.3l-11.5 6.6c1 3.1 1.8 6.3 2.5 9.5h13.6c2.1 0 3.8 1.7 3.8 3.8v22.2c0 2.1-1.7 3.8-3.8 3.8h-13.6c-.6 3.1-1.5 6.2-2.5 9.3l11.9 6.8c1.8 1.1 2.5 3.4 1.4 5.2l-11.2 19.5c-1.1 1.8-3.4 2.5-5.2 1.4l-12-7c-2.1 2.4-4.4 4.6-6.7 6.6l7 12.1c.5.9.6 1.9.4 2.9s-.9 1.8-1.8 2.3l-19.2 11.1c-1.8 1.1-4.2.4-5.2-1.4l-7-12.2c-3 1-6 1.8-9.1 2.4v14.1c-.2 2.3-2 4-4.1 4zm-18.4-7.7h14.5v-13.5c0-1.9 1.4-3.5 3.3-3.8 4.7-.7 9.4-2 13.8-3.7 1.8-.7 3.8 0 4.7 1.7l6.7 11.6 12.6-7.3-6.7-11.6c-1-1.6-.5-3.7.9-4.9 3.7-3 7.2-6.4 10.2-10.1 1.2-1.5 3.3-1.8 4.9-.9l11.5 6.6 7.3-12.6-11.3-6.5c-1.6-.9-2.4-3-1.6-4.7 1.8-4.5 3.1-9.2 3.9-14 .3-1.9 1.9-3.2 3.8-3.2h13v-14.6h-12.8c-1.9 0-3.5-1.4-3.8-3.3-.7-4.8-2-9.6-3.7-14.2-.7-1.8 0-3.7 1.7-4.7l10.9-6.3-7.3-12.6-10.8 6.3c-1.6.9-3.7.6-4.9-.9-3.1-3.9-6.6-7.4-10.4-10.6-1.5-1.2-1.9-3.3-.9-4.9l6.2-10.7-12.6-7.3-6.1 10.6c-1 1.6-3 2.3-4.7 1.7-4.6-1.8-9.5-3.1-14.4-3.9-1.9-.3-3.3-1.9-3.3-3.8v-12.2h-14.5v12.3c0 1.9-1.4 3.5-3.3 3.8-5 .8-9.8 2.1-14.4 3.9-1.8.7-3.8 0-4.7-1.7l-6.1-10.6-12.6 7.3 6.2 10.7c.9 1.6.6 3.7-.9 4.9-3.9 3.1-7.4 6.7-10.4 10.6-1.2 1.5-3.3 1.9-4.9.9l-10.8-6.3-7.3 12.6 10.9 6.3c1.6.9 2.3 2.9 1.7 4.7-1.7 4.6-3 9.4-3.7 14.2-.3 1.9-1.9 3.3-3.8 3.3h-12.8v14.5h13c1.9 0 3.5 1.4 3.8 3.2.8 4.8 2.1 9.5 3.9 14 .7 1.8 0 3.8-1.6 4.7l-11.3 6.5 7.3 12.6 11.5-6.6c1.6-.9 3.7-.6 4.9.9 3 3.7 6.5 7.1 10.3 10.1 1.5 1.2 1.9 3.3.9 4.9l-6.7 11.6 12.6 7.3 6.7-11.6c.9-1.6 2.9-2.3 4.7-1.7 4.5 1.7 9.1 2.9 13.8 3.7 1.9.3 3.3 1.9 3.3 3.8z\"></path></g><g><g><g><path d=\"m45.3 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m153.9 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path></g><g><path d=\"m189.3 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.2c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c0 2.1-1.7 3.8-3.8 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m73.3 326.4c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m126 326.4c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m99.7 325.6c-.6 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4s4.1 1.1 4.4 3.2c2.4 16.5 12.3 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m50.2 266.6c-.1 0-.2 0-.3 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.7 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-8.9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.5 2.2zm81.8-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13.1-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.4-.7 2.3-.7z\"></path></g></g></g><g><g><path d=\"m296.1 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m404.7 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path></g><g><path d=\"m440 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.1c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c.2 2.1-1.6 3.8-3.7 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m324 326.3c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m376.7 326.3c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m350.4 325.6c-.5 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4 2.1-.3 4 1.1 4.4 3.2 2.4 16.5 12.4 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m301 266.6c-.1 0-.2 0-.4 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.6 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.4 2.2zm81.7-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.5-.7 2.3-.7z\"></path></g></g></g></g></g></svg>				\n									<h5>\n							et ungt og engageret team						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"496pt\" viewBox=\"0 0 496 496\" width=\"496pt\"><path d=\"m440 328h-28.207031c5.078125-6.703125 8.207031-14.960938 8.207031-24 0-8.824219-7.175781-16-16-16h-12v-19.960938c59.574219-14.445312 104-68.085937 104-132.039062 0-74.992188-61.007812-136-136-136s-136 61.007812-136 136c0 63.953125 44.425781 117.59375 104 132.039062v19.960938h-8.449219c-6.167969 0-12.359375 1.464844-17.886719 4.214844l-50.480468 25.25c-3.320313 1.664062-7.03125 2.535156-10.734375 2.535156h-40.449219v-16h-104v16h56v56h16v-56h16v128h-16v-56h-16v56h-56v16h104v-16h40.449219c3.703125 0 7.414062.871094 10.734375 2.527344l34.488281 17.25c5.519531 2.757812 11.710937 4.222656 17.878906 4.222656h24.449219v24h64v-24h48c13.230469 0 24-10.769531 24-24 0-6.167969-2.40625-11.742188-6.238281-16 3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16 0-13.230469-10.769531-24-24-24zm8 24c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm-208-280c0-66.167969 53.832031-120 120-120s120 53.832031 120 120-53.832031 120-120 120-120-53.832031-120-120zm104 134.976562c5.257812.617188 10.574219 1.023438 16 1.023438s10.742188-.40625 16-1.023438v17.023438h-32zm-40.449219 185.023438c-3.703125 0-7.414062-.871094-10.734375-2.527344l-34.488281-17.25c-5.519531-2.757812-11.710937-4.222656-17.878906-4.222656h-40.449219v-96h40.449219c6.167969 0 12.359375-1.464844 17.886719-4.214844l50.480468-25.25c3.320313-1.664062 7.03125-2.535156 10.734375-2.535156h84.449219c0 13.230469-10.769531 24-24 24h-48.28125l-23.863281 35.808594c-6.101563 9.160156-14.527344 16.589844-24.367188 21.503906-8.753906 4.375-18.542969 6.6875-28.320312 6.6875h-15.167969v16h15.167969c12.246093 0 24.519531-2.894531 35.472656-8.375 12.328125-6.160156 22.878906-15.480469 30.527344-26.945312l6.832031-10.253907v93.574219zm40.449219 24v-136h17.472656c-.898437 2.511719-1.472656 5.183594-1.472656 8 0 6.167969 2.40625 11.742188 6.238281 16-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16 0 10.414062 6.710938 19.214844 16 22.527344v9.472656zm96-24h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8s-3.59375 8-8 8zm0 0\"></path><path d=\"m394.878906 73.007812-7.757812 13.984376c17.816406 9.878906 28.878906 28.664062 28.878906 49.007812h16c0-26.160156-14.222656-50.296875-37.121094-62.992188zm0 0\"></path><path d=\"m360 80c4.734375 0 9.449219.59375 14.007812 1.769531l3.976563-15.503906c-5.855469-1.496094-11.90625-2.265625-17.984375-2.265625zm0 0\"></path><path d=\"m360 48c48.519531 0 88 39.480469 88 88 0 20.753906-7.398438 40.910156-20.832031 56.785156l12.207031 10.34375c15.882812-18.761718 24.625-42.601562 24.625-67.128906 0-57.34375-46.65625-104-104-104-24.527344 0-48.367188 8.753906-67.128906 24.632812l10.335937 12.199219c15.871094-13.433593 36.039063-20.832031 56.792969-20.832031zm0 0\"></path><path d=\"m427.128906 215.367188-10.335937-12.199219c-15.871094 13.433593-36.039063 20.832031-56.792969 20.832031-48.519531 0-88-39.480469-88-88 0-20.753906 7.398438-40.910156 20.832031-56.785156l-12.207031-10.34375c-15.882812 18.761718-24.625 42.601562-24.625 67.128906 0 57.34375 46.65625 104 104 104 24.527344 0 48.367188-8.753906 67.128906-24.632812zm0 0\"></path><path d=\"m121.214844 165.640625c4.953125-1.375 9.695312-3.34375 14.183594-5.878906l9.769531 4.886719 19.472656-19.480469-4.886719-9.769531c2.535156-4.496094 4.503906-9.230469 5.886719-14.183594l10.359375-3.445313v-27.53125l-10.351562-3.453125c-1.375-4.953125-3.34375-9.707031-5.886719-14.183594l4.886719-9.777343-19.472657-19.472657-9.769531 4.886719c-4.484375-2.535156-9.230469-4.503906-14.183594-5.878906l-3.453125-10.359375h-27.539062l-3.445313 10.359375c-4.953125 1.375-9.695312 3.34375-14.183594 5.878906l-9.777343-4.886719-19.472657 19.472657 4.886719 9.777343c-2.535156 4.488282-4.503906 9.230469-5.886719 14.183594l-10.351562 3.445313v27.53125l10.351562 3.453125c1.375 4.953125 3.34375 9.695312 5.886719 14.183594l-4.886719 9.769531 19.472657 19.480469 9.769531-4.886719c4.484375 2.535156 9.230469 4.503906 14.183594 5.878906l3.453125 10.359375h27.539062zm-12.304688-13.679687-2.679687 8.039062h-4.460938l-2.679687-8.039062-4.554688-.90625c-6.128906-1.222657-11.878906-3.605469-17.109375-7.09375l-3.867187-2.578126-7.574219 3.800782-3.160156-3.167969 3.792969-7.582031-2.578126-3.859375c-3.488281-5.222657-5.871093-10.980469-7.09375-17.109375l-.914062-4.554688-8.03125-2.679687v-4.46875l8.03125-2.671875.914062-4.554688c1.222657-6.136718 3.613282-11.886718 7.09375-17.109375l2.578126-3.859375-3.792969-7.589844 3.160156-3.160156 7.574219 3.800782 3.867187-2.578126c5.222657-3.488281 10.980469-5.863281 17.109375-7.09375l4.554688-.90625 2.679687-8.039062h4.460938l2.679687 8.039062 4.554688.90625c6.128906 1.222657 11.878906 3.605469 17.109375 7.09375l3.867187 2.578126 7.574219-3.800782 3.160156 3.160156-3.792969 7.589844 2.578126 3.859375c3.488281 5.214844 5.871093 10.972657 7.09375 17.109375l.914062 4.554688 8.03125 2.679687v4.46875l-8.03125 2.671875-.914062 4.554688c-1.222657 6.128906-3.613282 11.878906-7.09375 17.109375l-2.578126 3.859375 3.792969 7.582031-3.160156 3.167969-7.574219-3.800782-3.867187 2.578126c-5.222657 3.488281-10.980469 5.863281-17.109375 7.09375zm0 0\"></path><path d=\"m104 72c-17.648438 0-32 14.351562-32 32s14.351562 32 32 32 32-14.351562 32-32-14.351562-32-32-32zm0 48c-8.824219 0-16-7.175781-16-16s7.175781-16 16-16 16 7.175781 16 16-7.175781 16-16 16zm0 0\"></path><path d=\"m160 248v-40h48v-208h-208v208h106.664062zm-144-232h176v176h-48v24l-32-24h-96zm0 0\"></path><path d=\"m0 272h16v16h-16zm0 0\"></path><path d=\"m32 272h16v16h-16zm0 0\"></path><path d=\"m64 272h16v16h-16zm0 0\"></path><path d=\"m32 304h16v16h-16zm0 0\"></path><path d=\"m64 304h16v16h-16zm0 0\"></path><path d=\"m0 480h16v16h-16zm0 0\"></path><path d=\"m32 480h16v16h-16zm0 0\"></path><path d=\"m64 480h16v16h-16zm0 0\"></path><path d=\"m32 448h16v16h-16zm0 0\"></path><path d=\"m64 448h16v16h-16zm0 0\"></path></svg>				\n									<h5>\n							fokus på kvalitet og detaljer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m469.12 408.93-67.26-33.63v-22.13c10.71-7.69 18.6-19.07 21.78-32.27h5.28c8.81 0 15.98-7.17 15.98-15.98v-5.29c0-6.35-3.74-11.84-9.12-14.41 5.19-18.64-1.65-39.76-19.44-59.78-12.58-14.16-30.67-22.27-49.62-22.27-18.93 0-37.01 8.12-49.59 22.27-13.38 15.05-20.95 41.01-14.03 59.62-5.56 2.5-9.45 8.09-9.45 14.57v5.29c0 8.81 7.17 15.98 15.98 15.98h5.55c3.16 13.09 10.94 24.39 21.51 32.08v22.32l-67.26 33.63c-16.7 5.87-27.89 21.6-27.89 39.28v41.63c0 3.31 2.69 6 6 6h243.46c3.31 0 6-2.69 6-6v-41.63c0-17.68-11.19-33.41-27.88-39.28zm-62.24-17.7-15.83 27.66-13.29-13.29 19.29-19.29zm-37.61 5.88-20.59-20.58v-16.91c6.41 2.57 13.4 4.01 20.72 4.01 7.22 0 14.11-1.39 20.45-3.9v16.8zm63.63-97.48v5.29c0 2.16-1.82 3.98-3.98 3.98h-3.74c.01-.36.03-.71.03-1.07v-12.18h3.71c2.15-.01 3.98 1.82 3.98 3.98zm-119.29 8.2v1.07h-3.98c-2.16 0-3.98-1.82-3.98-3.98v-5.29c0-2.16 1.82-3.98 3.98-3.98l3.98.22zm1.95-24.19c-7.33-13.69-.89-37.39 10.53-50.24 10.31-11.6 25.12-18.25 40.63-18.25 15.52 0 30.34 6.65 40.65 18.25 8.43 9.48 21.3 27.59 17.4 46.39-5.66-.35-10.67-2.55-14.4-6.36-5.37-5.49-7.72-14-6.63-23.94.29-2.62-1.17-5.13-3.6-6.17s-5.25-.37-6.95 1.65c-19.33 22.92-45.95 36.76-73.9 38.68h-3.73zm10.05 24.19v-12.73c24.57-2.92 47.92-14.05 66.73-31.8 1.43 7.26 4.63 13.6 9.45 18.52 3.27 3.35 7.14 5.89 11.41 7.58v18.42c0 24.15-19.65 43.8-43.8 43.8s-43.79-19.64-43.79-43.79zm15.89 78.48 19.29 19.29-13.29 13.29-15.84-27.66zm3.22 97.53h-39.42v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.76v-35.63c0-12.68 8.1-23.95 20.15-28.05.26-.09.51-.19.75-.31l46.47-23.23 20.07 35.06c.93 1.62 2.56 2.72 4.41 2.97.27.04.53.05.79.05 1.58 0 3.11-.62 4.24-1.76l.14-.14zm12.08 0 7.41-64.69 5.06-5.06 4.84 4.84 7.86 64.92h-25.17zm128.2 0h-39.76v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.18l-6.2-51.17.25.25c1.13 1.13 2.66 1.76 4.24 1.76.26 0 .53-.02.79-.05 1.85-.25 3.48-1.34 4.41-2.97l20.07-35.06 46.47 23.23c.24.12.49.23.75.31 12.05 4.1 20.15 15.38 20.15 28.05v35.65zm-67.04-346.65h-10.84l28.38 39.84 28.38-39.84h-10.84c-3.31 0-6-2.69-6-6v-64.58h-98.7c-3.31 0-6-2.69-6-6s2.69-6 6-6h104.7c3.31 0 6 2.69 6 6v64.58h16.48c2.25 0 4.3 1.25 5.33 3.25s.86 4.4-.45 6.23l-40.02 56.18c-1.13 1.58-2.95 2.52-4.89 2.52s-3.76-.94-4.89-2.52l-40.02-56.18c-1.3-1.83-1.48-4.23-.45-6.23s3.09-3.25 5.33-3.25h16.48v-23.5h-65.38c-3.31 0-6-2.69-6-6s2.69-6 6-6h71.38c3.31 0 6 2.69 6 6v35.5c.02 3.31-2.67 6-5.98 6zm-118.44 50.65v-133.26c0-21.18-17.23-38.41-38.41-38.41h-207.7c-21.18-.01-38.41 17.23-38.41 38.41v133.26c0 21.18 17.23 38.41 38.41 38.41h105.8l64.8 55.11c1.11.94 2.49 1.43 3.89 1.43.85 0 1.71-.18 2.52-.55 2.12-.98 3.48-3.11 3.48-5.45v-50.54h27.21c21.18 0 38.41-17.23 38.41-38.41zm-71.62 26.41c-3.31 0-6 2.69-6 6v43.56l-56.59-48.13c-1.08-.92-2.46-1.43-3.89-1.43h-108.01c-14.56 0-26.41-11.85-26.41-26.41v-133.26c0-14.56 11.85-26.41 26.41-26.41h207.69c14.56 0 26.41 11.85 26.41 26.41v133.26c0 14.56-11.85 26.41-26.41 26.41zm-156.34-87.87h56.97c3.31 0 6-2.69 6-6v-39.2l8.55-8.55c2.34-2.34 2.34-6.14 0-8.49-2.34-2.34-6.14-2.34-8.48 0l-.7.7c-.98-1.97-3.01-3.32-5.36-3.32h-56.98c-3.31 0-6 2.69-6 6v52.85c0 3.32 2.69 6.01 6 6.01zm6-52.86h44.97v2.69l-18.16 18.16-8.84-8.84c-2.34-2.34-6.14-2.34-8.49 0-2.34 2.34-2.34 6.14 0 8.49l13.08 13.08c1.17 1.17 2.71 1.76 4.24 1.76s3.07-.59 4.24-1.76l13.92-13.92v21.2h-44.96zm173.62 3.08c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 31.92c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 36.52c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.68 5.99 6zm0 31.92c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.69 5.99 6zm-119.36 165.01h10.84l-28.38-39.84-28.38 39.84h10.84c3.31 0 6 2.69 6 6v64.58h98.7c3.31 0 6 2.69 6 6s-2.69 6-6 6h-104.69c-3.31 0-6-2.69-6-6v-64.58h-16.48c-2.25 0-4.3-1.25-5.33-3.25s-.86-4.4.45-6.23l40.02-56.18c1.13-1.58 2.95-2.52 4.89-2.52s3.76.94 4.89 2.52l40.02 56.18c1.3 1.83 1.48 4.23.45 6.23s-3.09 3.25-5.33 3.25h-16.48v23.5h65.38c3.31 0 6 2.69 6 6s-2.69 6-6 6h-71.38c-3.31 0-6-2.69-6-6v-35.5c-.03-3.31 2.66-6 5.97-6z\"></path></svg>				\n									<h5>\n							ærlig<br> rådgivning						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 510 510\"><path d=\"m192.036 385.845c-4.787-46.972-19.459-64.336-30.658-82.352-8.672-13.951-15.5-28.245-15.5-54.252 0-60.242 48.865-109.109 109.135-109.109 60.242 0 109.109 48.866 109.109 109.109 0 26.007-6.828 40.301-15.5 54.252-11.199 18.016-25.871 35.38-30.658 82.352 9.985 2.864 17.345 12.101 17.345 22.975v36.44c0 13.109-10.747 23.866-23.893 23.866h-10.334v9.945c0 12.588-10.341 22.929-22.93 22.929h-46.304c-12.589 0-22.93-10.341-22.93-22.929v-9.945h-10.334c-13.146 0-23.893-10.757-23.893-23.866v-36.44c0-10.874 7.36-20.111 17.345-22.975zm111.948-.917c4.199-42.194 15.78-62.332 26.488-79.049 10.147-15.842 19.65-28.207 19.65-56.638 0-52.513-42.597-95.109-95.109-95.109-52.537 0-95.135 42.596-95.135 95.109 0 28.431 9.503 40.796 19.65 56.638 10.708 16.717 22.289 36.855 26.488 79.049zm2.554-78.61c-1.175 13.701-11.985 24.191-24.783 24.191-13.527 0-24.862-12.086-24.862-26.673v-99.328c0-14.12 11.335-26.673 24.862-26.673 11.309 0 21.031 8.139 23.975 19.497 9.12 3.904 15.688 13.438 15.688 24.78 0 1.153-.068 2.289-.201 3.403 5.078 5.326 8.283 12.802 8.283 21.117 0 6.39-1.889 12.262-5.06 17.053 1.996 4.099 3.13 8.773 3.13 13.76 0 14.1-9.065 25.697-21.032 28.873zm-16.452-109.977c-1.964-2.729-4.916-4.506-8.331-4.506-6.192 0-10.862 6.21-10.862 12.673v99.328c0 6.677 4.67 12.673 10.862 12.673 5.516 0 9.822-4.614 10.717-10.425-4.709-1.416-8.923-4.144-12.279-7.814-2.607-2.852-2.409-7.283.443-9.89 2.851-2.607 7.282-2.408 9.889.443 2.416 2.642 5.72 4.356 9.402 4.356 7.733 0 13.643-7.218 13.643-15.734s-5.91-15.734-13.643-15.734c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7 5.352 0 10.388 1.655 14.658 4.533.593-1.743.915-3.634.915-5.612 0-2.11-.366-4.128-1.036-5.972-.769.858-1.588 1.66-2.453 2.397-2.94 2.507-7.361 2.156-9.869-.784-2.507-2.939-2.155-7.361.784-9.868 2.773-2.365 4.492-6.122 4.492-10.293 0-6.072-3.705-11.374-8.898-12.467-.154-.023-.307-.052-.458-.085-.499-.08-1.01-.121-1.532-.121-2.947 0-5.591 1.389-7.515 3.525-2.585 2.87-7.015 3.101-9.886.515-2.87-2.586-3.101-7.015-.515-9.886 3.111-3.453 7.059-5.988 11.472-7.252zm-104.526 67.344c-3.171-4.791-5.06-10.663-5.06-17.053 0-8.307 3.198-15.777 8.284-21.104-.133-1.118-.202-2.258-.202-3.416 0-11.354 6.582-20.897 15.717-24.792 2.948-11.354 12.67-19.485 23.946-19.485 13.56 0 24.888 12.555 24.888 26.673v99.328c0 14.585-11.328 26.673-24.888 26.673-12.765 0-23.578-10.484-24.757-24.184-11.98-3.166-21.058-14.769-21.058-28.88 0-4.987 1.134-9.661 3.13-13.76zm9.982-23.036c-.675 1.847-1.042 3.869-1.042 5.983 0 1.978.322 3.869.915 5.612 4.27-2.878 9.306-4.533 14.658-4.533 3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7-7.733 0-13.643 7.218-13.643 15.734s5.91 15.734 13.643 15.734c3.682 0 6.986-1.714 9.402-4.356 2.607-2.851 7.038-3.05 9.889-.443 2.852 2.607 3.05 7.038.443 9.89-3.35 3.664-7.556 6.389-12.255 7.807.891 5.813 5.192 10.432 10.693 10.432 6.21 0 10.888-5.993 10.888-12.673v-99.328c0-6.466-4.678-12.673-10.888-12.673-3.404 0-6.349 1.777-8.309 4.507 4.421 1.264 8.367 3.8 11.476 7.251 2.586 2.871 2.355 7.3-.516 9.886-2.87 2.586-7.3 2.355-9.886-.515-1.926-2.138-4.574-3.525-7.54-3.525-.493 0-.976.037-1.448.108-.196.045-.395.082-.596.11-5.165 1.118-8.844 6.404-8.844 12.455 0 1.243.153 2.45.442 3.594.101.284.183.572.246.862.748 2.326 2.071 4.346 3.814 5.823 2.947 2.498 3.311 6.919.813 9.866s-6.919 3.312-9.866.814c-.878-.745-1.71-1.554-2.489-2.422zm3.042 158.279c-5.442 0-9.893 4.451-9.893 9.892v36.44c0 5.423 4.454 9.866 9.893 9.866h17.334c3.866 0 7 3.134 7 7v16.945c0 4.902 4.027 8.929 8.93 8.929h46.304c4.903 0 8.93-4.027 8.93-8.929v-16.945c0-3.866 3.134-7 7-7h17.334c5.439 0 9.893-4.443 9.893-9.866v-36.44c0-5.441-4.451-9.892-9.893-9.892zm63.416-314.093 2.907-5.412c1.828-3.403 6.075-4.683 9.479-2.854 3.403 1.828 4.682 6.075 2.854 9.479l-16.073 29.925c-1.22 2.271-3.589 3.688-6.167 3.688s-4.947-1.417-6.167-3.688l-16.073-29.925c-1.828-3.404-.549-7.651 2.854-9.479 3.404-1.829 7.651-.549 9.479 2.854l2.907 5.412v-69.835c0-3.863 3.137-7 7-7s7 3.137 7 7zm-132.198 54.758-49.381-49.381c-2.732-2.731-2.732-7.167 0-9.899s7.168-2.732 9.9 0l49.38 49.38-1.771-5.881c-1.114-3.7.985-7.608 4.684-8.722 3.7-1.114 7.607.985 8.721 4.685l9.796 32.526c.743 2.468.069 5.145-1.753 6.968-1.823 1.823-4.5 2.496-6.969 1.753l-32.526-9.795c-3.699-1.114-5.798-5.022-4.684-8.721s5.022-5.798 8.721-4.684zm-44.859 122.299h-69.835c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7h69.835l-5.412-2.907c-3.403-1.828-4.682-6.076-2.854-9.479 1.828-3.404 6.075-4.683 9.479-2.855l29.926 16.074c2.271 1.22 3.688 3.589 3.688 6.167 0 2.577-1.417 4.947-3.688 6.166l-29.926 16.074c-3.404 1.828-7.651.549-9.479-2.855-1.828-3.403-.549-7.651 2.854-9.479zm54.758 118.198-49.38 49.38c-2.732 2.732-7.168 2.732-9.9 0s-2.732-7.167 0-9.899l49.381-49.381-5.882 1.772c-3.699 1.114-7.607-.985-8.721-4.685-1.114-3.699.985-7.607 4.684-8.721l32.526-9.795c2.469-.743 5.146-.07 6.969 1.753 1.822 1.823 2.496 4.5 1.753 6.968l-9.796 32.527c-1.114 3.699-5.021 5.798-8.721 4.684-3.699-1.114-5.798-5.022-4.684-8.721zm240.497-240.497 5.882-1.771c3.699-1.114 7.607.985 8.721 4.684s-.985 7.607-4.684 8.721l-32.526 9.795c-2.469.743-5.146.07-6.969-1.753-1.822-1.823-2.496-4.5-1.753-6.968l9.796-32.526c1.114-3.7 5.021-5.799 8.721-4.685 3.699 1.114 5.798 5.022 4.684 8.722l-1.771 5.881 49.38-49.38c2.732-2.732 7.168-2.732 9.9 0s2.732 7.168 0 9.899zm44.859 122.299 5.412 2.906c3.403 1.828 4.682 6.076 2.854 9.479-1.828 3.404-6.075 4.683-9.479 2.855l-29.926-16.074c-2.271-1.219-3.688-3.589-3.688-6.166 0-2.578 1.417-4.947 3.688-6.167l29.926-16.074c3.404-1.828 7.651-.549 9.479 2.855 1.828 3.403.549 7.651-2.854 9.479l-5.412 2.907h69.835c3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7zm-54.758 118.198 1.771 5.882c1.114 3.699-.985 7.607-4.684 8.721-3.7 1.114-7.607-.985-8.721-4.684l-9.796-32.527c-.743-2.468-.069-5.145 1.753-6.968 1.823-1.823 4.5-2.496 6.969-1.753l32.526 9.795c3.699 1.114 5.798 5.022 4.684 8.721-1.114 3.7-5.022 5.799-8.721 4.685l-5.882-1.772 49.381 49.381c2.732 2.732 2.732 7.167 0 9.899s-7.168 2.732-9.9 0z\"></path></svg>				\n									<h5>\n							gennemtænkte løsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"outline\"><path d=\"M486.41,144A28,28,0,0,0,472,92H349.123l5.457-21.828a48.513,48.513,0,0,0-12.848-46.153A41.035,41.035,0,0,0,312.609,12H308a8.009,8.009,0,0,0-8,8V47.413l-19.233,64.112A17.376,17.376,0,0,1,268,123.539V112a4,4,0,0,0-4-4H152a4,4,0,0,0-4,4v72a4,4,0,0,0,8,0V116h72V276H156V248a4,4,0,0,0-8,0v32a4,4,0,0,0,4,4H264a4,4,0,0,0,4-4V268.5h11.168A37.07,37.07,0,0,1,305.092,279a45.025,45.025,0,0,0,31.48,12.752L440,292a27.987,27.987,0,0,0,19.369-48.2,27.987,27.987,0,0,0,16-48A28,28,0,0,0,486.41,144ZM260,276H236V116h24Zm212-88H396a4,4,0,0,0,0,8h60a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h40a20,20,0,0,1,.01,40l-103.428-.25a37.07,37.07,0,0,1-25.924-10.5,45.031,45.031,0,0,0-31.49-12.752H268V131.686a25.317,25.317,0,0,0,20.429-17.862l19.4-64.675A4,4,0,0,0,308,48V20h4.609a33.082,33.082,0,0,1,23.481,9.69,40.507,40.507,0,0,1,10.728,38.541l-6.7,26.8A4,4,0,0,0,344,100H472a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h72a20,20,0,0,1,0,40Z\"></path><path d=\"M194.5,183.243l-1.9-.217a4,4,0,0,0-4.169,2.491L184.29,195.9H135.278l-3.539-9.317a4,4,0,0,0-7.478,2.84l2.459,6.477h-8.474L68.452,156.872a4,4,0,1,0-4.935,6.3L77.6,174.209,56.961,194.48l-6.636-5.491a4,4,0,1,0-5.1,6.163L87.219,229.9a44.1,44.1,0,0,0,28.05,10.1H212a8.009,8.009,0,0,0,8-8V203.9a8.009,8.009,0,0,0-8-8h-8v-2.01A10.708,10.708,0,0,0,194.5,183.243ZM212,203.9V232H115.269a36.081,36.081,0,0,1-22.951-8.264l-29.16-24.128,20.8-20.422L114.4,203.045a4,4,0,0,0,2.468.852H187a4,4,0,0,0,3.715-2.517l3.929-9.843a2.712,2.712,0,0,1,1.356,2.35v6.01a4,4,0,0,0,4,4Z\"></path><path d=\"M223.084,484.672,200.87,469.863V346.36A44.1,44.1,0,0,0,195.327,325l-17.183-30.94a4,4,0,0,0-7,3.884l17.184,30.94a36.073,36.073,0,0,1,4.537,17.478V468H164.333a4,4,0,1,0,0,8h31.321l12,8H152.865V352a4,4,0,0,0-.358-1.655l-25.454-56A4,4,0,0,0,123.411,292H114.2a4,4,0,0,0-3.945,4.658l8.862,53.175a36.016,36.016,0,0,1-1.951,18.949L78.642,468H48.333a4,4,0,1,0,0,8H80.377L92,484H32.088L76.63,361.366a4.017,4.017,0,0,0,.183-2.044L61.1,268H136a4,4,0,0,0,0-8H59.233L30.555,173.966A19.723,19.723,0,0,1,49.27,148H76a12,12,0,0,0,24,0h15.2a21.975,21.975,0,0,1,8.395,1.652l10.889,4.458a4,4,0,1,0,3.032-7.4L126.63,142.25A29.938,29.938,0,0,0,115.2,140H100v-4.527A16.014,16.014,0,0,0,112,120V103.473A16.014,16.014,0,0,0,124,88V80a4,4,0,0,0-4-4H90A22.025,22.025,0,0,0,68,98v18a12.02,12.02,0,0,0,8,11.314V140H49.27a27.723,27.723,0,0,0-26.305,36.5l29.493,88.482,16.29,94.655-46.128,127A4,4,0,0,0,26.38,492h78.485a4,4,0,0,0,2.268-7.3L86.3,470.368l38.318-98.69a44.018,44.018,0,0,0,2.385-23.16L118.921,300h1.914l24.03,52.867V488a4,4,0,0,0,4,4h72a4,4,0,0,0,2.219-7.328ZM76,98A14.015,14.015,0,0,1,90,84h26v4a8.009,8.009,0,0,1-8,8H92a4,4,0,0,0-4,4,11.962,11.962,0,0,1-1.53,5.881A12.044,12.044,0,0,0,76,104.686Zm4,14a3.981,3.981,0,0,1,3.407,1.9,4,4,0,0,0,5.956.975c.207-.171.7-.648.7-.648.032-.028.061-.057.09-.087A19.907,19.907,0,0,0,95.6,104H104v16a8.009,8.009,0,0,1-8,8,12.133,12.133,0,0,1-2.681-.3,4,4,0,1,0-1.775,7.8c.151.035.3.06.456.091V148a4,4,0,1,1-8,0V124a4,4,0,0,0-4-4,4,4,0,0,1,0-8Z\"></path></g></svg>				\n									<h5>\n							arbejde udført med ansvar						\n					</h5>\n				<p>Vi lover ikke mere, end vi kan holde – men vi holder det, vi lover.</p>			<h2>KONTAKT OS</h2>		<p>Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.</p>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 13:55:56', '2026-01-26 13:55:56', '', 10, 'https://mrarif.me/cpnordic/?p=561', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(562, 1, '2026-01-26 13:55:57', '2026-01-26 13:55:57', '<h1>CP NORDIC ApS</h1>					<h4>Byggeri – Tømrerarbejde og tagdækning</h4>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle ANMELDELSER\n					</a>\n					<h2>HVORFOR VÆLGE CP NORDIC ApS?</h2>		<p>Når du vælger CP NORDIC ApS, får du:</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 450 450\" width=\"512\"><g><g><path d=\"m225 165.2c-25.9 0-48.9-18.8-53.3-45.2-2.4-14.2.9-28.6 9.3-40.3 8.4-11.8 20.9-19.5 35.1-21.9 29.4-4.9 57.3 15 62.2 44.5 4.9 29.4-15 57.3-44.4 62.2-3 .5-6 .7-8.9.7zm-7.6-99.8c-12.2 2-22.9 8.7-30.1 18.8s-10.1 22.4-8 34.6c3.8 22.7 23.5 38.8 45.7 38.8 2.5 0 5.1-.2 7.6-.6 25.2-4.2 42.3-28.1 38.1-53.4s-28.1-42.4-53.3-38.2z\"></path><path d=\"m255.2 115c-2.1 0-3.8-1.7-3.8-3.8 0-14.6-11.8-26.4-26.4-26.4-2.1 0-3.8-1.7-3.8-3.8s1.7-3.8 3.8-3.8c18.8 0 34.1 15.3 34.1 34.1 0 2-1.8 3.7-3.9 3.7z\"></path><path d=\"m236.1 203h-22.2c-2.1 0-3.8-1.7-3.8-3.8v-14.1c-3.1-.6-6.1-1.4-9.1-2.4l-7 12.2c-1.1 1.8-3.4 2.5-5.3 1.4l-19.2-11.1c-.9-.5-1.5-1.4-1.8-2.3-.3-1-.1-2 .4-2.9l7-12.1c-2.4-2.1-4.6-4.3-6.7-6.6l-12.1 7c-1.8 1.1-4.2.4-5.2-1.4l-11.1-19.2c-1.1-1.8-.4-4.2 1.4-5.2l11.9-6.8c-1-3-1.9-6.1-2.6-9.3h-13.7c-2.1 0-3.8-1.7-3.8-3.8v-22.2c0-2.1 1.7-3.8 3.8-3.8h13.4c.6-3.2 1.4-6.4 2.4-9.5l-11.5-6.6c-1.8-1.1-2.5-3.4-1.4-5.3l11.1-19.6c.5-.9 1.4-1.5 2.3-1.8s2-.1 2.9.4l11.3 6.6c2.2-2.5 4.5-4.8 7-7l-6.5-11.3c-.5-.9-.6-1.9-.4-2.9.3-1 .9-1.8 1.8-2.3l19.2-11.1c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l6.4 11.2c3.1-1.1 6.4-1.9 9.7-2.6v-13c0-2.1 1.7-3.8 3.8-3.8h22.2c2.1 0 3.8 1.7 3.8 3.8v12.8c3.3.7 6.5 1.5 9.7 2.6l6.5-11.2c.5-.9 1.4-1.5 2.3-1.8 1-.3 2-.1 2.9.4l19.2 11.1c.9.5 1.5 1.3 1.8 2.3s.1 2-.4 2.9l-6.5 11.3c2.5 2.2 4.8 4.5 7 7.1l11.3-6.6c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l11.1 19.2c1.1 1.8.4 4.2-1.4 5.3l-11.5 6.6c1 3.1 1.8 6.3 2.5 9.5h13.6c2.1 0 3.8 1.7 3.8 3.8v22.2c0 2.1-1.7 3.8-3.8 3.8h-13.6c-.6 3.1-1.5 6.2-2.5 9.3l11.9 6.8c1.8 1.1 2.5 3.4 1.4 5.2l-11.2 19.5c-1.1 1.8-3.4 2.5-5.2 1.4l-12-7c-2.1 2.4-4.4 4.6-6.7 6.6l7 12.1c.5.9.6 1.9.4 2.9s-.9 1.8-1.8 2.3l-19.2 11.1c-1.8 1.1-4.2.4-5.2-1.4l-7-12.2c-3 1-6 1.8-9.1 2.4v14.1c-.2 2.3-2 4-4.1 4zm-18.4-7.7h14.5v-13.5c0-1.9 1.4-3.5 3.3-3.8 4.7-.7 9.4-2 13.8-3.7 1.8-.7 3.8 0 4.7 1.7l6.7 11.6 12.6-7.3-6.7-11.6c-1-1.6-.5-3.7.9-4.9 3.7-3 7.2-6.4 10.2-10.1 1.2-1.5 3.3-1.8 4.9-.9l11.5 6.6 7.3-12.6-11.3-6.5c-1.6-.9-2.4-3-1.6-4.7 1.8-4.5 3.1-9.2 3.9-14 .3-1.9 1.9-3.2 3.8-3.2h13v-14.6h-12.8c-1.9 0-3.5-1.4-3.8-3.3-.7-4.8-2-9.6-3.7-14.2-.7-1.8 0-3.7 1.7-4.7l10.9-6.3-7.3-12.6-10.8 6.3c-1.6.9-3.7.6-4.9-.9-3.1-3.9-6.6-7.4-10.4-10.6-1.5-1.2-1.9-3.3-.9-4.9l6.2-10.7-12.6-7.3-6.1 10.6c-1 1.6-3 2.3-4.7 1.7-4.6-1.8-9.5-3.1-14.4-3.9-1.9-.3-3.3-1.9-3.3-3.8v-12.2h-14.5v12.3c0 1.9-1.4 3.5-3.3 3.8-5 .8-9.8 2.1-14.4 3.9-1.8.7-3.8 0-4.7-1.7l-6.1-10.6-12.6 7.3 6.2 10.7c.9 1.6.6 3.7-.9 4.9-3.9 3.1-7.4 6.7-10.4 10.6-1.2 1.5-3.3 1.9-4.9.9l-10.8-6.3-7.3 12.6 10.9 6.3c1.6.9 2.3 2.9 1.7 4.7-1.7 4.6-3 9.4-3.7 14.2-.3 1.9-1.9 3.3-3.8 3.3h-12.8v14.5h13c1.9 0 3.5 1.4 3.8 3.2.8 4.8 2.1 9.5 3.9 14 .7 1.8 0 3.8-1.6 4.7l-11.3 6.5 7.3 12.6 11.5-6.6c1.6-.9 3.7-.6 4.9.9 3 3.7 6.5 7.1 10.3 10.1 1.5 1.2 1.9 3.3.9 4.9l-6.7 11.6 12.6 7.3 6.7-11.6c.9-1.6 2.9-2.3 4.7-1.7 4.5 1.7 9.1 2.9 13.8 3.7 1.9.3 3.3 1.9 3.3 3.8z\"></path></g><g><g><g><path d=\"m45.3 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m153.9 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path></g><g><path d=\"m189.3 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.2c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c0 2.1-1.7 3.8-3.8 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m73.3 326.4c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m126 326.4c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m99.7 325.6c-.6 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4s4.1 1.1 4.4 3.2c2.4 16.5 12.3 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m50.2 266.6c-.1 0-.2 0-.3 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.7 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-8.9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.5 2.2zm81.8-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13.1-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.4-.7 2.3-.7z\"></path></g></g></g><g><g><path d=\"m296.1 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m404.7 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path></g><g><path d=\"m440 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.1c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c.2 2.1-1.6 3.8-3.7 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m324 326.3c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m376.7 326.3c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m350.4 325.6c-.5 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4 2.1-.3 4 1.1 4.4 3.2 2.4 16.5 12.4 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m301 266.6c-.1 0-.2 0-.4 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.6 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.4 2.2zm81.7-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.5-.7 2.3-.7z\"></path></g></g></g></g></g></svg>				\n									<h5>\n							et ungt og engageret team						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"496pt\" viewBox=\"0 0 496 496\" width=\"496pt\"><path d=\"m440 328h-28.207031c5.078125-6.703125 8.207031-14.960938 8.207031-24 0-8.824219-7.175781-16-16-16h-12v-19.960938c59.574219-14.445312 104-68.085937 104-132.039062 0-74.992188-61.007812-136-136-136s-136 61.007812-136 136c0 63.953125 44.425781 117.59375 104 132.039062v19.960938h-8.449219c-6.167969 0-12.359375 1.464844-17.886719 4.214844l-50.480468 25.25c-3.320313 1.664062-7.03125 2.535156-10.734375 2.535156h-40.449219v-16h-104v16h56v56h16v-56h16v128h-16v-56h-16v56h-56v16h104v-16h40.449219c3.703125 0 7.414062.871094 10.734375 2.527344l34.488281 17.25c5.519531 2.757812 11.710937 4.222656 17.878906 4.222656h24.449219v24h64v-24h48c13.230469 0 24-10.769531 24-24 0-6.167969-2.40625-11.742188-6.238281-16 3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16 0-13.230469-10.769531-24-24-24zm8 24c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm-208-280c0-66.167969 53.832031-120 120-120s120 53.832031 120 120-53.832031 120-120 120-120-53.832031-120-120zm104 134.976562c5.257812.617188 10.574219 1.023438 16 1.023438s10.742188-.40625 16-1.023438v17.023438h-32zm-40.449219 185.023438c-3.703125 0-7.414062-.871094-10.734375-2.527344l-34.488281-17.25c-5.519531-2.757812-11.710937-4.222656-17.878906-4.222656h-40.449219v-96h40.449219c6.167969 0 12.359375-1.464844 17.886719-4.214844l50.480468-25.25c3.320313-1.664062 7.03125-2.535156 10.734375-2.535156h84.449219c0 13.230469-10.769531 24-24 24h-48.28125l-23.863281 35.808594c-6.101563 9.160156-14.527344 16.589844-24.367188 21.503906-8.753906 4.375-18.542969 6.6875-28.320312 6.6875h-15.167969v16h15.167969c12.246093 0 24.519531-2.894531 35.472656-8.375 12.328125-6.160156 22.878906-15.480469 30.527344-26.945312l6.832031-10.253907v93.574219zm40.449219 24v-136h17.472656c-.898437 2.511719-1.472656 5.183594-1.472656 8 0 6.167969 2.40625 11.742188 6.238281 16-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16 0 10.414062 6.710938 19.214844 16 22.527344v9.472656zm96-24h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8s-3.59375 8-8 8zm0 0\"></path><path d=\"m394.878906 73.007812-7.757812 13.984376c17.816406 9.878906 28.878906 28.664062 28.878906 49.007812h16c0-26.160156-14.222656-50.296875-37.121094-62.992188zm0 0\"></path><path d=\"m360 80c4.734375 0 9.449219.59375 14.007812 1.769531l3.976563-15.503906c-5.855469-1.496094-11.90625-2.265625-17.984375-2.265625zm0 0\"></path><path d=\"m360 48c48.519531 0 88 39.480469 88 88 0 20.753906-7.398438 40.910156-20.832031 56.785156l12.207031 10.34375c15.882812-18.761718 24.625-42.601562 24.625-67.128906 0-57.34375-46.65625-104-104-104-24.527344 0-48.367188 8.753906-67.128906 24.632812l10.335937 12.199219c15.871094-13.433593 36.039063-20.832031 56.792969-20.832031zm0 0\"></path><path d=\"m427.128906 215.367188-10.335937-12.199219c-15.871094 13.433593-36.039063 20.832031-56.792969 20.832031-48.519531 0-88-39.480469-88-88 0-20.753906 7.398438-40.910156 20.832031-56.785156l-12.207031-10.34375c-15.882812 18.761718-24.625 42.601562-24.625 67.128906 0 57.34375 46.65625 104 104 104 24.527344 0 48.367188-8.753906 67.128906-24.632812zm0 0\"></path><path d=\"m121.214844 165.640625c4.953125-1.375 9.695312-3.34375 14.183594-5.878906l9.769531 4.886719 19.472656-19.480469-4.886719-9.769531c2.535156-4.496094 4.503906-9.230469 5.886719-14.183594l10.359375-3.445313v-27.53125l-10.351562-3.453125c-1.375-4.953125-3.34375-9.707031-5.886719-14.183594l4.886719-9.777343-19.472657-19.472657-9.769531 4.886719c-4.484375-2.535156-9.230469-4.503906-14.183594-5.878906l-3.453125-10.359375h-27.539062l-3.445313 10.359375c-4.953125 1.375-9.695312 3.34375-14.183594 5.878906l-9.777343-4.886719-19.472657 19.472657 4.886719 9.777343c-2.535156 4.488282-4.503906 9.230469-5.886719 14.183594l-10.351562 3.445313v27.53125l10.351562 3.453125c1.375 4.953125 3.34375 9.695312 5.886719 14.183594l-4.886719 9.769531 19.472657 19.480469 9.769531-4.886719c4.484375 2.535156 9.230469 4.503906 14.183594 5.878906l3.453125 10.359375h27.539062zm-12.304688-13.679687-2.679687 8.039062h-4.460938l-2.679687-8.039062-4.554688-.90625c-6.128906-1.222657-11.878906-3.605469-17.109375-7.09375l-3.867187-2.578126-7.574219 3.800782-3.160156-3.167969 3.792969-7.582031-2.578126-3.859375c-3.488281-5.222657-5.871093-10.980469-7.09375-17.109375l-.914062-4.554688-8.03125-2.679687v-4.46875l8.03125-2.671875.914062-4.554688c1.222657-6.136718 3.613282-11.886718 7.09375-17.109375l2.578126-3.859375-3.792969-7.589844 3.160156-3.160156 7.574219 3.800782 3.867187-2.578126c5.222657-3.488281 10.980469-5.863281 17.109375-7.09375l4.554688-.90625 2.679687-8.039062h4.460938l2.679687 8.039062 4.554688.90625c6.128906 1.222657 11.878906 3.605469 17.109375 7.09375l3.867187 2.578126 7.574219-3.800782 3.160156 3.160156-3.792969 7.589844 2.578126 3.859375c3.488281 5.214844 5.871093 10.972657 7.09375 17.109375l.914062 4.554688 8.03125 2.679687v4.46875l-8.03125 2.671875-.914062 4.554688c-1.222657 6.128906-3.613282 11.878906-7.09375 17.109375l-2.578126 3.859375 3.792969 7.582031-3.160156 3.167969-7.574219-3.800782-3.867187 2.578126c-5.222657 3.488281-10.980469 5.863281-17.109375 7.09375zm0 0\"></path><path d=\"m104 72c-17.648438 0-32 14.351562-32 32s14.351562 32 32 32 32-14.351562 32-32-14.351562-32-32-32zm0 48c-8.824219 0-16-7.175781-16-16s7.175781-16 16-16 16 7.175781 16 16-7.175781 16-16 16zm0 0\"></path><path d=\"m160 248v-40h48v-208h-208v208h106.664062zm-144-232h176v176h-48v24l-32-24h-96zm0 0\"></path><path d=\"m0 272h16v16h-16zm0 0\"></path><path d=\"m32 272h16v16h-16zm0 0\"></path><path d=\"m64 272h16v16h-16zm0 0\"></path><path d=\"m32 304h16v16h-16zm0 0\"></path><path d=\"m64 304h16v16h-16zm0 0\"></path><path d=\"m0 480h16v16h-16zm0 0\"></path><path d=\"m32 480h16v16h-16zm0 0\"></path><path d=\"m64 480h16v16h-16zm0 0\"></path><path d=\"m32 448h16v16h-16zm0 0\"></path><path d=\"m64 448h16v16h-16zm0 0\"></path></svg>				\n									<h5>\n							fokus på kvalitet og detaljer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m469.12 408.93-67.26-33.63v-22.13c10.71-7.69 18.6-19.07 21.78-32.27h5.28c8.81 0 15.98-7.17 15.98-15.98v-5.29c0-6.35-3.74-11.84-9.12-14.41 5.19-18.64-1.65-39.76-19.44-59.78-12.58-14.16-30.67-22.27-49.62-22.27-18.93 0-37.01 8.12-49.59 22.27-13.38 15.05-20.95 41.01-14.03 59.62-5.56 2.5-9.45 8.09-9.45 14.57v5.29c0 8.81 7.17 15.98 15.98 15.98h5.55c3.16 13.09 10.94 24.39 21.51 32.08v22.32l-67.26 33.63c-16.7 5.87-27.89 21.6-27.89 39.28v41.63c0 3.31 2.69 6 6 6h243.46c3.31 0 6-2.69 6-6v-41.63c0-17.68-11.19-33.41-27.88-39.28zm-62.24-17.7-15.83 27.66-13.29-13.29 19.29-19.29zm-37.61 5.88-20.59-20.58v-16.91c6.41 2.57 13.4 4.01 20.72 4.01 7.22 0 14.11-1.39 20.45-3.9v16.8zm63.63-97.48v5.29c0 2.16-1.82 3.98-3.98 3.98h-3.74c.01-.36.03-.71.03-1.07v-12.18h3.71c2.15-.01 3.98 1.82 3.98 3.98zm-119.29 8.2v1.07h-3.98c-2.16 0-3.98-1.82-3.98-3.98v-5.29c0-2.16 1.82-3.98 3.98-3.98l3.98.22zm1.95-24.19c-7.33-13.69-.89-37.39 10.53-50.24 10.31-11.6 25.12-18.25 40.63-18.25 15.52 0 30.34 6.65 40.65 18.25 8.43 9.48 21.3 27.59 17.4 46.39-5.66-.35-10.67-2.55-14.4-6.36-5.37-5.49-7.72-14-6.63-23.94.29-2.62-1.17-5.13-3.6-6.17s-5.25-.37-6.95 1.65c-19.33 22.92-45.95 36.76-73.9 38.68h-3.73zm10.05 24.19v-12.73c24.57-2.92 47.92-14.05 66.73-31.8 1.43 7.26 4.63 13.6 9.45 18.52 3.27 3.35 7.14 5.89 11.41 7.58v18.42c0 24.15-19.65 43.8-43.8 43.8s-43.79-19.64-43.79-43.79zm15.89 78.48 19.29 19.29-13.29 13.29-15.84-27.66zm3.22 97.53h-39.42v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.76v-35.63c0-12.68 8.1-23.95 20.15-28.05.26-.09.51-.19.75-.31l46.47-23.23 20.07 35.06c.93 1.62 2.56 2.72 4.41 2.97.27.04.53.05.79.05 1.58 0 3.11-.62 4.24-1.76l.14-.14zm12.08 0 7.41-64.69 5.06-5.06 4.84 4.84 7.86 64.92h-25.17zm128.2 0h-39.76v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.18l-6.2-51.17.25.25c1.13 1.13 2.66 1.76 4.24 1.76.26 0 .53-.02.79-.05 1.85-.25 3.48-1.34 4.41-2.97l20.07-35.06 46.47 23.23c.24.12.49.23.75.31 12.05 4.1 20.15 15.38 20.15 28.05v35.65zm-67.04-346.65h-10.84l28.38 39.84 28.38-39.84h-10.84c-3.31 0-6-2.69-6-6v-64.58h-98.7c-3.31 0-6-2.69-6-6s2.69-6 6-6h104.7c3.31 0 6 2.69 6 6v64.58h16.48c2.25 0 4.3 1.25 5.33 3.25s.86 4.4-.45 6.23l-40.02 56.18c-1.13 1.58-2.95 2.52-4.89 2.52s-3.76-.94-4.89-2.52l-40.02-56.18c-1.3-1.83-1.48-4.23-.45-6.23s3.09-3.25 5.33-3.25h16.48v-23.5h-65.38c-3.31 0-6-2.69-6-6s2.69-6 6-6h71.38c3.31 0 6 2.69 6 6v35.5c.02 3.31-2.67 6-5.98 6zm-118.44 50.65v-133.26c0-21.18-17.23-38.41-38.41-38.41h-207.7c-21.18-.01-38.41 17.23-38.41 38.41v133.26c0 21.18 17.23 38.41 38.41 38.41h105.8l64.8 55.11c1.11.94 2.49 1.43 3.89 1.43.85 0 1.71-.18 2.52-.55 2.12-.98 3.48-3.11 3.48-5.45v-50.54h27.21c21.18 0 38.41-17.23 38.41-38.41zm-71.62 26.41c-3.31 0-6 2.69-6 6v43.56l-56.59-48.13c-1.08-.92-2.46-1.43-3.89-1.43h-108.01c-14.56 0-26.41-11.85-26.41-26.41v-133.26c0-14.56 11.85-26.41 26.41-26.41h207.69c14.56 0 26.41 11.85 26.41 26.41v133.26c0 14.56-11.85 26.41-26.41 26.41zm-156.34-87.87h56.97c3.31 0 6-2.69 6-6v-39.2l8.55-8.55c2.34-2.34 2.34-6.14 0-8.49-2.34-2.34-6.14-2.34-8.48 0l-.7.7c-.98-1.97-3.01-3.32-5.36-3.32h-56.98c-3.31 0-6 2.69-6 6v52.85c0 3.32 2.69 6.01 6 6.01zm6-52.86h44.97v2.69l-18.16 18.16-8.84-8.84c-2.34-2.34-6.14-2.34-8.49 0-2.34 2.34-2.34 6.14 0 8.49l13.08 13.08c1.17 1.17 2.71 1.76 4.24 1.76s3.07-.59 4.24-1.76l13.92-13.92v21.2h-44.96zm173.62 3.08c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 31.92c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 36.52c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.68 5.99 6zm0 31.92c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.69 5.99 6zm-119.36 165.01h10.84l-28.38-39.84-28.38 39.84h10.84c3.31 0 6 2.69 6 6v64.58h98.7c3.31 0 6 2.69 6 6s-2.69 6-6 6h-104.69c-3.31 0-6-2.69-6-6v-64.58h-16.48c-2.25 0-4.3-1.25-5.33-3.25s-.86-4.4.45-6.23l40.02-56.18c1.13-1.58 2.95-2.52 4.89-2.52s3.76.94 4.89 2.52l40.02 56.18c1.3 1.83 1.48 4.23.45 6.23s-3.09 3.25-5.33 3.25h-16.48v23.5h65.38c3.31 0 6 2.69 6 6s-2.69 6-6 6h-71.38c-3.31 0-6-2.69-6-6v-35.5c-.03-3.31 2.66-6 5.97-6z\"></path></svg>				\n									<h5>\n							ærlig<br> rådgivning						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 510 510\"><path d=\"m192.036 385.845c-4.787-46.972-19.459-64.336-30.658-82.352-8.672-13.951-15.5-28.245-15.5-54.252 0-60.242 48.865-109.109 109.135-109.109 60.242 0 109.109 48.866 109.109 109.109 0 26.007-6.828 40.301-15.5 54.252-11.199 18.016-25.871 35.38-30.658 82.352 9.985 2.864 17.345 12.101 17.345 22.975v36.44c0 13.109-10.747 23.866-23.893 23.866h-10.334v9.945c0 12.588-10.341 22.929-22.93 22.929h-46.304c-12.589 0-22.93-10.341-22.93-22.929v-9.945h-10.334c-13.146 0-23.893-10.757-23.893-23.866v-36.44c0-10.874 7.36-20.111 17.345-22.975zm111.948-.917c4.199-42.194 15.78-62.332 26.488-79.049 10.147-15.842 19.65-28.207 19.65-56.638 0-52.513-42.597-95.109-95.109-95.109-52.537 0-95.135 42.596-95.135 95.109 0 28.431 9.503 40.796 19.65 56.638 10.708 16.717 22.289 36.855 26.488 79.049zm2.554-78.61c-1.175 13.701-11.985 24.191-24.783 24.191-13.527 0-24.862-12.086-24.862-26.673v-99.328c0-14.12 11.335-26.673 24.862-26.673 11.309 0 21.031 8.139 23.975 19.497 9.12 3.904 15.688 13.438 15.688 24.78 0 1.153-.068 2.289-.201 3.403 5.078 5.326 8.283 12.802 8.283 21.117 0 6.39-1.889 12.262-5.06 17.053 1.996 4.099 3.13 8.773 3.13 13.76 0 14.1-9.065 25.697-21.032 28.873zm-16.452-109.977c-1.964-2.729-4.916-4.506-8.331-4.506-6.192 0-10.862 6.21-10.862 12.673v99.328c0 6.677 4.67 12.673 10.862 12.673 5.516 0 9.822-4.614 10.717-10.425-4.709-1.416-8.923-4.144-12.279-7.814-2.607-2.852-2.409-7.283.443-9.89 2.851-2.607 7.282-2.408 9.889.443 2.416 2.642 5.72 4.356 9.402 4.356 7.733 0 13.643-7.218 13.643-15.734s-5.91-15.734-13.643-15.734c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7 5.352 0 10.388 1.655 14.658 4.533.593-1.743.915-3.634.915-5.612 0-2.11-.366-4.128-1.036-5.972-.769.858-1.588 1.66-2.453 2.397-2.94 2.507-7.361 2.156-9.869-.784-2.507-2.939-2.155-7.361.784-9.868 2.773-2.365 4.492-6.122 4.492-10.293 0-6.072-3.705-11.374-8.898-12.467-.154-.023-.307-.052-.458-.085-.499-.08-1.01-.121-1.532-.121-2.947 0-5.591 1.389-7.515 3.525-2.585 2.87-7.015 3.101-9.886.515-2.87-2.586-3.101-7.015-.515-9.886 3.111-3.453 7.059-5.988 11.472-7.252zm-104.526 67.344c-3.171-4.791-5.06-10.663-5.06-17.053 0-8.307 3.198-15.777 8.284-21.104-.133-1.118-.202-2.258-.202-3.416 0-11.354 6.582-20.897 15.717-24.792 2.948-11.354 12.67-19.485 23.946-19.485 13.56 0 24.888 12.555 24.888 26.673v99.328c0 14.585-11.328 26.673-24.888 26.673-12.765 0-23.578-10.484-24.757-24.184-11.98-3.166-21.058-14.769-21.058-28.88 0-4.987 1.134-9.661 3.13-13.76zm9.982-23.036c-.675 1.847-1.042 3.869-1.042 5.983 0 1.978.322 3.869.915 5.612 4.27-2.878 9.306-4.533 14.658-4.533 3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7-7.733 0-13.643 7.218-13.643 15.734s5.91 15.734 13.643 15.734c3.682 0 6.986-1.714 9.402-4.356 2.607-2.851 7.038-3.05 9.889-.443 2.852 2.607 3.05 7.038.443 9.89-3.35 3.664-7.556 6.389-12.255 7.807.891 5.813 5.192 10.432 10.693 10.432 6.21 0 10.888-5.993 10.888-12.673v-99.328c0-6.466-4.678-12.673-10.888-12.673-3.404 0-6.349 1.777-8.309 4.507 4.421 1.264 8.367 3.8 11.476 7.251 2.586 2.871 2.355 7.3-.516 9.886-2.87 2.586-7.3 2.355-9.886-.515-1.926-2.138-4.574-3.525-7.54-3.525-.493 0-.976.037-1.448.108-.196.045-.395.082-.596.11-5.165 1.118-8.844 6.404-8.844 12.455 0 1.243.153 2.45.442 3.594.101.284.183.572.246.862.748 2.326 2.071 4.346 3.814 5.823 2.947 2.498 3.311 6.919.813 9.866s-6.919 3.312-9.866.814c-.878-.745-1.71-1.554-2.489-2.422zm3.042 158.279c-5.442 0-9.893 4.451-9.893 9.892v36.44c0 5.423 4.454 9.866 9.893 9.866h17.334c3.866 0 7 3.134 7 7v16.945c0 4.902 4.027 8.929 8.93 8.929h46.304c4.903 0 8.93-4.027 8.93-8.929v-16.945c0-3.866 3.134-7 7-7h17.334c5.439 0 9.893-4.443 9.893-9.866v-36.44c0-5.441-4.451-9.892-9.893-9.892zm63.416-314.093 2.907-5.412c1.828-3.403 6.075-4.683 9.479-2.854 3.403 1.828 4.682 6.075 2.854 9.479l-16.073 29.925c-1.22 2.271-3.589 3.688-6.167 3.688s-4.947-1.417-6.167-3.688l-16.073-29.925c-1.828-3.404-.549-7.651 2.854-9.479 3.404-1.829 7.651-.549 9.479 2.854l2.907 5.412v-69.835c0-3.863 3.137-7 7-7s7 3.137 7 7zm-132.198 54.758-49.381-49.381c-2.732-2.731-2.732-7.167 0-9.899s7.168-2.732 9.9 0l49.38 49.38-1.771-5.881c-1.114-3.7.985-7.608 4.684-8.722 3.7-1.114 7.607.985 8.721 4.685l9.796 32.526c.743 2.468.069 5.145-1.753 6.968-1.823 1.823-4.5 2.496-6.969 1.753l-32.526-9.795c-3.699-1.114-5.798-5.022-4.684-8.721s5.022-5.798 8.721-4.684zm-44.859 122.299h-69.835c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7h69.835l-5.412-2.907c-3.403-1.828-4.682-6.076-2.854-9.479 1.828-3.404 6.075-4.683 9.479-2.855l29.926 16.074c2.271 1.22 3.688 3.589 3.688 6.167 0 2.577-1.417 4.947-3.688 6.166l-29.926 16.074c-3.404 1.828-7.651.549-9.479-2.855-1.828-3.403-.549-7.651 2.854-9.479zm54.758 118.198-49.38 49.38c-2.732 2.732-7.168 2.732-9.9 0s-2.732-7.167 0-9.899l49.381-49.381-5.882 1.772c-3.699 1.114-7.607-.985-8.721-4.685-1.114-3.699.985-7.607 4.684-8.721l32.526-9.795c2.469-.743 5.146-.07 6.969 1.753 1.822 1.823 2.496 4.5 1.753 6.968l-9.796 32.527c-1.114 3.699-5.021 5.798-8.721 4.684-3.699-1.114-5.798-5.022-4.684-8.721zm240.497-240.497 5.882-1.771c3.699-1.114 7.607.985 8.721 4.684s-.985 7.607-4.684 8.721l-32.526 9.795c-2.469.743-5.146.07-6.969-1.753-1.822-1.823-2.496-4.5-1.753-6.968l9.796-32.526c1.114-3.7 5.021-5.799 8.721-4.685 3.699 1.114 5.798 5.022 4.684 8.722l-1.771 5.881 49.38-49.38c2.732-2.732 7.168-2.732 9.9 0s2.732 7.168 0 9.899zm44.859 122.299 5.412 2.906c3.403 1.828 4.682 6.076 2.854 9.479-1.828 3.404-6.075 4.683-9.479 2.855l-29.926-16.074c-2.271-1.219-3.688-3.589-3.688-6.166 0-2.578 1.417-4.947 3.688-6.167l29.926-16.074c3.404-1.828 7.651-.549 9.479 2.855 1.828 3.403.549 7.651-2.854 9.479l-5.412 2.907h69.835c3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7zm-54.758 118.198 1.771 5.882c1.114 3.699-.985 7.607-4.684 8.721-3.7 1.114-7.607-.985-8.721-4.684l-9.796-32.527c-.743-2.468-.069-5.145 1.753-6.968 1.823-1.823 4.5-2.496 6.969-1.753l32.526 9.795c3.699 1.114 5.798 5.022 4.684 8.721-1.114 3.7-5.022 5.799-8.721 4.685l-5.882-1.772 49.381 49.381c2.732 2.732 2.732 7.167 0 9.899s-7.168 2.732-9.9 0z\"></path></svg>				\n									<h5>\n							gennemtænkte løsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"outline\"><path d=\"M486.41,144A28,28,0,0,0,472,92H349.123l5.457-21.828a48.513,48.513,0,0,0-12.848-46.153A41.035,41.035,0,0,0,312.609,12H308a8.009,8.009,0,0,0-8,8V47.413l-19.233,64.112A17.376,17.376,0,0,1,268,123.539V112a4,4,0,0,0-4-4H152a4,4,0,0,0-4,4v72a4,4,0,0,0,8,0V116h72V276H156V248a4,4,0,0,0-8,0v32a4,4,0,0,0,4,4H264a4,4,0,0,0,4-4V268.5h11.168A37.07,37.07,0,0,1,305.092,279a45.025,45.025,0,0,0,31.48,12.752L440,292a27.987,27.987,0,0,0,19.369-48.2,27.987,27.987,0,0,0,16-48A28,28,0,0,0,486.41,144ZM260,276H236V116h24Zm212-88H396a4,4,0,0,0,0,8h60a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h40a20,20,0,0,1,.01,40l-103.428-.25a37.07,37.07,0,0,1-25.924-10.5,45.031,45.031,0,0,0-31.49-12.752H268V131.686a25.317,25.317,0,0,0,20.429-17.862l19.4-64.675A4,4,0,0,0,308,48V20h4.609a33.082,33.082,0,0,1,23.481,9.69,40.507,40.507,0,0,1,10.728,38.541l-6.7,26.8A4,4,0,0,0,344,100H472a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h72a20,20,0,0,1,0,40Z\"></path><path d=\"M194.5,183.243l-1.9-.217a4,4,0,0,0-4.169,2.491L184.29,195.9H135.278l-3.539-9.317a4,4,0,0,0-7.478,2.84l2.459,6.477h-8.474L68.452,156.872a4,4,0,1,0-4.935,6.3L77.6,174.209,56.961,194.48l-6.636-5.491a4,4,0,1,0-5.1,6.163L87.219,229.9a44.1,44.1,0,0,0,28.05,10.1H212a8.009,8.009,0,0,0,8-8V203.9a8.009,8.009,0,0,0-8-8h-8v-2.01A10.708,10.708,0,0,0,194.5,183.243ZM212,203.9V232H115.269a36.081,36.081,0,0,1-22.951-8.264l-29.16-24.128,20.8-20.422L114.4,203.045a4,4,0,0,0,2.468.852H187a4,4,0,0,0,3.715-2.517l3.929-9.843a2.712,2.712,0,0,1,1.356,2.35v6.01a4,4,0,0,0,4,4Z\"></path><path d=\"M223.084,484.672,200.87,469.863V346.36A44.1,44.1,0,0,0,195.327,325l-17.183-30.94a4,4,0,0,0-7,3.884l17.184,30.94a36.073,36.073,0,0,1,4.537,17.478V468H164.333a4,4,0,1,0,0,8h31.321l12,8H152.865V352a4,4,0,0,0-.358-1.655l-25.454-56A4,4,0,0,0,123.411,292H114.2a4,4,0,0,0-3.945,4.658l8.862,53.175a36.016,36.016,0,0,1-1.951,18.949L78.642,468H48.333a4,4,0,1,0,0,8H80.377L92,484H32.088L76.63,361.366a4.017,4.017,0,0,0,.183-2.044L61.1,268H136a4,4,0,0,0,0-8H59.233L30.555,173.966A19.723,19.723,0,0,1,49.27,148H76a12,12,0,0,0,24,0h15.2a21.975,21.975,0,0,1,8.395,1.652l10.889,4.458a4,4,0,1,0,3.032-7.4L126.63,142.25A29.938,29.938,0,0,0,115.2,140H100v-4.527A16.014,16.014,0,0,0,112,120V103.473A16.014,16.014,0,0,0,124,88V80a4,4,0,0,0-4-4H90A22.025,22.025,0,0,0,68,98v18a12.02,12.02,0,0,0,8,11.314V140H49.27a27.723,27.723,0,0,0-26.305,36.5l29.493,88.482,16.29,94.655-46.128,127A4,4,0,0,0,26.38,492h78.485a4,4,0,0,0,2.268-7.3L86.3,470.368l38.318-98.69a44.018,44.018,0,0,0,2.385-23.16L118.921,300h1.914l24.03,52.867V488a4,4,0,0,0,4,4h72a4,4,0,0,0,2.219-7.328ZM76,98A14.015,14.015,0,0,1,90,84h26v4a8.009,8.009,0,0,1-8,8H92a4,4,0,0,0-4,4,11.962,11.962,0,0,1-1.53,5.881A12.044,12.044,0,0,0,76,104.686Zm4,14a3.981,3.981,0,0,1,3.407,1.9,4,4,0,0,0,5.956.975c.207-.171.7-.648.7-.648.032-.028.061-.057.09-.087A19.907,19.907,0,0,0,95.6,104H104v16a8.009,8.009,0,0,1-8,8,12.133,12.133,0,0,1-2.681-.3,4,4,0,1,0-1.775,7.8c.151.035.3.06.456.091V148a4,4,0,1,1-8,0V124a4,4,0,0,0-4-4,4,4,0,0,1,0-8Z\"></path></g></svg>				\n									<h5>\n							arbejde udført med ansvar						\n					</h5>\n				<p>Vi lover ikke mere, end vi kan holde – men vi holder det, vi lover.</p>			<h2>KONTAKT OS</h2>		<p>Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.</p>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 13:55:57', '2026-01-26 13:55:57', '', 10, 'https://mrarif.me/cpnordic/?p=562', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(563, 1, '2026-01-26 13:56:21', '2026-01-26 13:56:21', '<h1>CP NORDIC ApS</h1>					<h4>Byggeri – Tømrerarbejde og tagdækning</h4>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle ANMELDELSER\n					</a>\n					<h2>HVORFOR VÆLGE CP NORDIC ApS?</h2>		<p>Når du vælger CP NORDIC ApS, får du:</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 450 450\" width=\"512\"><g><g><path d=\"m225 165.2c-25.9 0-48.9-18.8-53.3-45.2-2.4-14.2.9-28.6 9.3-40.3 8.4-11.8 20.9-19.5 35.1-21.9 29.4-4.9 57.3 15 62.2 44.5 4.9 29.4-15 57.3-44.4 62.2-3 .5-6 .7-8.9.7zm-7.6-99.8c-12.2 2-22.9 8.7-30.1 18.8s-10.1 22.4-8 34.6c3.8 22.7 23.5 38.8 45.7 38.8 2.5 0 5.1-.2 7.6-.6 25.2-4.2 42.3-28.1 38.1-53.4s-28.1-42.4-53.3-38.2z\"></path><path d=\"m255.2 115c-2.1 0-3.8-1.7-3.8-3.8 0-14.6-11.8-26.4-26.4-26.4-2.1 0-3.8-1.7-3.8-3.8s1.7-3.8 3.8-3.8c18.8 0 34.1 15.3 34.1 34.1 0 2-1.8 3.7-3.9 3.7z\"></path><path d=\"m236.1 203h-22.2c-2.1 0-3.8-1.7-3.8-3.8v-14.1c-3.1-.6-6.1-1.4-9.1-2.4l-7 12.2c-1.1 1.8-3.4 2.5-5.3 1.4l-19.2-11.1c-.9-.5-1.5-1.4-1.8-2.3-.3-1-.1-2 .4-2.9l7-12.1c-2.4-2.1-4.6-4.3-6.7-6.6l-12.1 7c-1.8 1.1-4.2.4-5.2-1.4l-11.1-19.2c-1.1-1.8-.4-4.2 1.4-5.2l11.9-6.8c-1-3-1.9-6.1-2.6-9.3h-13.7c-2.1 0-3.8-1.7-3.8-3.8v-22.2c0-2.1 1.7-3.8 3.8-3.8h13.4c.6-3.2 1.4-6.4 2.4-9.5l-11.5-6.6c-1.8-1.1-2.5-3.4-1.4-5.3l11.1-19.6c.5-.9 1.4-1.5 2.3-1.8s2-.1 2.9.4l11.3 6.6c2.2-2.5 4.5-4.8 7-7l-6.5-11.3c-.5-.9-.6-1.9-.4-2.9.3-1 .9-1.8 1.8-2.3l19.2-11.1c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l6.4 11.2c3.1-1.1 6.4-1.9 9.7-2.6v-13c0-2.1 1.7-3.8 3.8-3.8h22.2c2.1 0 3.8 1.7 3.8 3.8v12.8c3.3.7 6.5 1.5 9.7 2.6l6.5-11.2c.5-.9 1.4-1.5 2.3-1.8 1-.3 2-.1 2.9.4l19.2 11.1c.9.5 1.5 1.3 1.8 2.3s.1 2-.4 2.9l-6.5 11.3c2.5 2.2 4.8 4.5 7 7.1l11.3-6.6c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l11.1 19.2c1.1 1.8.4 4.2-1.4 5.3l-11.5 6.6c1 3.1 1.8 6.3 2.5 9.5h13.6c2.1 0 3.8 1.7 3.8 3.8v22.2c0 2.1-1.7 3.8-3.8 3.8h-13.6c-.6 3.1-1.5 6.2-2.5 9.3l11.9 6.8c1.8 1.1 2.5 3.4 1.4 5.2l-11.2 19.5c-1.1 1.8-3.4 2.5-5.2 1.4l-12-7c-2.1 2.4-4.4 4.6-6.7 6.6l7 12.1c.5.9.6 1.9.4 2.9s-.9 1.8-1.8 2.3l-19.2 11.1c-1.8 1.1-4.2.4-5.2-1.4l-7-12.2c-3 1-6 1.8-9.1 2.4v14.1c-.2 2.3-2 4-4.1 4zm-18.4-7.7h14.5v-13.5c0-1.9 1.4-3.5 3.3-3.8 4.7-.7 9.4-2 13.8-3.7 1.8-.7 3.8 0 4.7 1.7l6.7 11.6 12.6-7.3-6.7-11.6c-1-1.6-.5-3.7.9-4.9 3.7-3 7.2-6.4 10.2-10.1 1.2-1.5 3.3-1.8 4.9-.9l11.5 6.6 7.3-12.6-11.3-6.5c-1.6-.9-2.4-3-1.6-4.7 1.8-4.5 3.1-9.2 3.9-14 .3-1.9 1.9-3.2 3.8-3.2h13v-14.6h-12.8c-1.9 0-3.5-1.4-3.8-3.3-.7-4.8-2-9.6-3.7-14.2-.7-1.8 0-3.7 1.7-4.7l10.9-6.3-7.3-12.6-10.8 6.3c-1.6.9-3.7.6-4.9-.9-3.1-3.9-6.6-7.4-10.4-10.6-1.5-1.2-1.9-3.3-.9-4.9l6.2-10.7-12.6-7.3-6.1 10.6c-1 1.6-3 2.3-4.7 1.7-4.6-1.8-9.5-3.1-14.4-3.9-1.9-.3-3.3-1.9-3.3-3.8v-12.2h-14.5v12.3c0 1.9-1.4 3.5-3.3 3.8-5 .8-9.8 2.1-14.4 3.9-1.8.7-3.8 0-4.7-1.7l-6.1-10.6-12.6 7.3 6.2 10.7c.9 1.6.6 3.7-.9 4.9-3.9 3.1-7.4 6.7-10.4 10.6-1.2 1.5-3.3 1.9-4.9.9l-10.8-6.3-7.3 12.6 10.9 6.3c1.6.9 2.3 2.9 1.7 4.7-1.7 4.6-3 9.4-3.7 14.2-.3 1.9-1.9 3.3-3.8 3.3h-12.8v14.5h13c1.9 0 3.5 1.4 3.8 3.2.8 4.8 2.1 9.5 3.9 14 .7 1.8 0 3.8-1.6 4.7l-11.3 6.5 7.3 12.6 11.5-6.6c1.6-.9 3.7-.6 4.9.9 3 3.7 6.5 7.1 10.3 10.1 1.5 1.2 1.9 3.3.9 4.9l-6.7 11.6 12.6 7.3 6.7-11.6c.9-1.6 2.9-2.3 4.7-1.7 4.5 1.7 9.1 2.9 13.8 3.7 1.9.3 3.3 1.9 3.3 3.8z\"></path></g><g><g><g><path d=\"m45.3 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m153.9 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path></g><g><path d=\"m189.3 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.2c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c0 2.1-1.7 3.8-3.8 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m73.3 326.4c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m126 326.4c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m99.7 325.6c-.6 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4s4.1 1.1 4.4 3.2c2.4 16.5 12.3 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m50.2 266.6c-.1 0-.2 0-.3 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.7 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-8.9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.5 2.2zm81.8-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13.1-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.4-.7 2.3-.7z\"></path></g></g></g><g><g><path d=\"m296.1 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m404.7 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path></g><g><path d=\"m440 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.1c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c.2 2.1-1.6 3.8-3.7 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m324 326.3c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m376.7 326.3c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m350.4 325.6c-.5 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4 2.1-.3 4 1.1 4.4 3.2 2.4 16.5 12.4 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m301 266.6c-.1 0-.2 0-.4 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.6 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.4 2.2zm81.7-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.5-.7 2.3-.7z\"></path></g></g></g></g></g></svg>				\n									<h5>\n							et ungt og engageret team						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"496pt\" viewBox=\"0 0 496 496\" width=\"496pt\"><path d=\"m440 328h-28.207031c5.078125-6.703125 8.207031-14.960938 8.207031-24 0-8.824219-7.175781-16-16-16h-12v-19.960938c59.574219-14.445312 104-68.085937 104-132.039062 0-74.992188-61.007812-136-136-136s-136 61.007812-136 136c0 63.953125 44.425781 117.59375 104 132.039062v19.960938h-8.449219c-6.167969 0-12.359375 1.464844-17.886719 4.214844l-50.480468 25.25c-3.320313 1.664062-7.03125 2.535156-10.734375 2.535156h-40.449219v-16h-104v16h56v56h16v-56h16v128h-16v-56h-16v56h-56v16h104v-16h40.449219c3.703125 0 7.414062.871094 10.734375 2.527344l34.488281 17.25c5.519531 2.757812 11.710937 4.222656 17.878906 4.222656h24.449219v24h64v-24h48c13.230469 0 24-10.769531 24-24 0-6.167969-2.40625-11.742188-6.238281-16 3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16 0-13.230469-10.769531-24-24-24zm8 24c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm-208-280c0-66.167969 53.832031-120 120-120s120 53.832031 120 120-53.832031 120-120 120-120-53.832031-120-120zm104 134.976562c5.257812.617188 10.574219 1.023438 16 1.023438s10.742188-.40625 16-1.023438v17.023438h-32zm-40.449219 185.023438c-3.703125 0-7.414062-.871094-10.734375-2.527344l-34.488281-17.25c-5.519531-2.757812-11.710937-4.222656-17.878906-4.222656h-40.449219v-96h40.449219c6.167969 0 12.359375-1.464844 17.886719-4.214844l50.480468-25.25c3.320313-1.664062 7.03125-2.535156 10.734375-2.535156h84.449219c0 13.230469-10.769531 24-24 24h-48.28125l-23.863281 35.808594c-6.101563 9.160156-14.527344 16.589844-24.367188 21.503906-8.753906 4.375-18.542969 6.6875-28.320312 6.6875h-15.167969v16h15.167969c12.246093 0 24.519531-2.894531 35.472656-8.375 12.328125-6.160156 22.878906-15.480469 30.527344-26.945312l6.832031-10.253907v93.574219zm40.449219 24v-136h17.472656c-.898437 2.511719-1.472656 5.183594-1.472656 8 0 6.167969 2.40625 11.742188 6.238281 16-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16 0 10.414062 6.710938 19.214844 16 22.527344v9.472656zm96-24h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8s-3.59375 8-8 8zm0 0\"></path><path d=\"m394.878906 73.007812-7.757812 13.984376c17.816406 9.878906 28.878906 28.664062 28.878906 49.007812h16c0-26.160156-14.222656-50.296875-37.121094-62.992188zm0 0\"></path><path d=\"m360 80c4.734375 0 9.449219.59375 14.007812 1.769531l3.976563-15.503906c-5.855469-1.496094-11.90625-2.265625-17.984375-2.265625zm0 0\"></path><path d=\"m360 48c48.519531 0 88 39.480469 88 88 0 20.753906-7.398438 40.910156-20.832031 56.785156l12.207031 10.34375c15.882812-18.761718 24.625-42.601562 24.625-67.128906 0-57.34375-46.65625-104-104-104-24.527344 0-48.367188 8.753906-67.128906 24.632812l10.335937 12.199219c15.871094-13.433593 36.039063-20.832031 56.792969-20.832031zm0 0\"></path><path d=\"m427.128906 215.367188-10.335937-12.199219c-15.871094 13.433593-36.039063 20.832031-56.792969 20.832031-48.519531 0-88-39.480469-88-88 0-20.753906 7.398438-40.910156 20.832031-56.785156l-12.207031-10.34375c-15.882812 18.761718-24.625 42.601562-24.625 67.128906 0 57.34375 46.65625 104 104 104 24.527344 0 48.367188-8.753906 67.128906-24.632812zm0 0\"></path><path d=\"m121.214844 165.640625c4.953125-1.375 9.695312-3.34375 14.183594-5.878906l9.769531 4.886719 19.472656-19.480469-4.886719-9.769531c2.535156-4.496094 4.503906-9.230469 5.886719-14.183594l10.359375-3.445313v-27.53125l-10.351562-3.453125c-1.375-4.953125-3.34375-9.707031-5.886719-14.183594l4.886719-9.777343-19.472657-19.472657-9.769531 4.886719c-4.484375-2.535156-9.230469-4.503906-14.183594-5.878906l-3.453125-10.359375h-27.539062l-3.445313 10.359375c-4.953125 1.375-9.695312 3.34375-14.183594 5.878906l-9.777343-4.886719-19.472657 19.472657 4.886719 9.777343c-2.535156 4.488282-4.503906 9.230469-5.886719 14.183594l-10.351562 3.445313v27.53125l10.351562 3.453125c1.375 4.953125 3.34375 9.695312 5.886719 14.183594l-4.886719 9.769531 19.472657 19.480469 9.769531-4.886719c4.484375 2.535156 9.230469 4.503906 14.183594 5.878906l3.453125 10.359375h27.539062zm-12.304688-13.679687-2.679687 8.039062h-4.460938l-2.679687-8.039062-4.554688-.90625c-6.128906-1.222657-11.878906-3.605469-17.109375-7.09375l-3.867187-2.578126-7.574219 3.800782-3.160156-3.167969 3.792969-7.582031-2.578126-3.859375c-3.488281-5.222657-5.871093-10.980469-7.09375-17.109375l-.914062-4.554688-8.03125-2.679687v-4.46875l8.03125-2.671875.914062-4.554688c1.222657-6.136718 3.613282-11.886718 7.09375-17.109375l2.578126-3.859375-3.792969-7.589844 3.160156-3.160156 7.574219 3.800782 3.867187-2.578126c5.222657-3.488281 10.980469-5.863281 17.109375-7.09375l4.554688-.90625 2.679687-8.039062h4.460938l2.679687 8.039062 4.554688.90625c6.128906 1.222657 11.878906 3.605469 17.109375 7.09375l3.867187 2.578126 7.574219-3.800782 3.160156 3.160156-3.792969 7.589844 2.578126 3.859375c3.488281 5.214844 5.871093 10.972657 7.09375 17.109375l.914062 4.554688 8.03125 2.679687v4.46875l-8.03125 2.671875-.914062 4.554688c-1.222657 6.128906-3.613282 11.878906-7.09375 17.109375l-2.578126 3.859375 3.792969 7.582031-3.160156 3.167969-7.574219-3.800782-3.867187 2.578126c-5.222657 3.488281-10.980469 5.863281-17.109375 7.09375zm0 0\"></path><path d=\"m104 72c-17.648438 0-32 14.351562-32 32s14.351562 32 32 32 32-14.351562 32-32-14.351562-32-32-32zm0 48c-8.824219 0-16-7.175781-16-16s7.175781-16 16-16 16 7.175781 16 16-7.175781 16-16 16zm0 0\"></path><path d=\"m160 248v-40h48v-208h-208v208h106.664062zm-144-232h176v176h-48v24l-32-24h-96zm0 0\"></path><path d=\"m0 272h16v16h-16zm0 0\"></path><path d=\"m32 272h16v16h-16zm0 0\"></path><path d=\"m64 272h16v16h-16zm0 0\"></path><path d=\"m32 304h16v16h-16zm0 0\"></path><path d=\"m64 304h16v16h-16zm0 0\"></path><path d=\"m0 480h16v16h-16zm0 0\"></path><path d=\"m32 480h16v16h-16zm0 0\"></path><path d=\"m64 480h16v16h-16zm0 0\"></path><path d=\"m32 448h16v16h-16zm0 0\"></path><path d=\"m64 448h16v16h-16zm0 0\"></path></svg>				\n									<h5>\n							fokus på kvalitet og detaljer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m469.12 408.93-67.26-33.63v-22.13c10.71-7.69 18.6-19.07 21.78-32.27h5.28c8.81 0 15.98-7.17 15.98-15.98v-5.29c0-6.35-3.74-11.84-9.12-14.41 5.19-18.64-1.65-39.76-19.44-59.78-12.58-14.16-30.67-22.27-49.62-22.27-18.93 0-37.01 8.12-49.59 22.27-13.38 15.05-20.95 41.01-14.03 59.62-5.56 2.5-9.45 8.09-9.45 14.57v5.29c0 8.81 7.17 15.98 15.98 15.98h5.55c3.16 13.09 10.94 24.39 21.51 32.08v22.32l-67.26 33.63c-16.7 5.87-27.89 21.6-27.89 39.28v41.63c0 3.31 2.69 6 6 6h243.46c3.31 0 6-2.69 6-6v-41.63c0-17.68-11.19-33.41-27.88-39.28zm-62.24-17.7-15.83 27.66-13.29-13.29 19.29-19.29zm-37.61 5.88-20.59-20.58v-16.91c6.41 2.57 13.4 4.01 20.72 4.01 7.22 0 14.11-1.39 20.45-3.9v16.8zm63.63-97.48v5.29c0 2.16-1.82 3.98-3.98 3.98h-3.74c.01-.36.03-.71.03-1.07v-12.18h3.71c2.15-.01 3.98 1.82 3.98 3.98zm-119.29 8.2v1.07h-3.98c-2.16 0-3.98-1.82-3.98-3.98v-5.29c0-2.16 1.82-3.98 3.98-3.98l3.98.22zm1.95-24.19c-7.33-13.69-.89-37.39 10.53-50.24 10.31-11.6 25.12-18.25 40.63-18.25 15.52 0 30.34 6.65 40.65 18.25 8.43 9.48 21.3 27.59 17.4 46.39-5.66-.35-10.67-2.55-14.4-6.36-5.37-5.49-7.72-14-6.63-23.94.29-2.62-1.17-5.13-3.6-6.17s-5.25-.37-6.95 1.65c-19.33 22.92-45.95 36.76-73.9 38.68h-3.73zm10.05 24.19v-12.73c24.57-2.92 47.92-14.05 66.73-31.8 1.43 7.26 4.63 13.6 9.45 18.52 3.27 3.35 7.14 5.89 11.41 7.58v18.42c0 24.15-19.65 43.8-43.8 43.8s-43.79-19.64-43.79-43.79zm15.89 78.48 19.29 19.29-13.29 13.29-15.84-27.66zm3.22 97.53h-39.42v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.76v-35.63c0-12.68 8.1-23.95 20.15-28.05.26-.09.51-.19.75-.31l46.47-23.23 20.07 35.06c.93 1.62 2.56 2.72 4.41 2.97.27.04.53.05.79.05 1.58 0 3.11-.62 4.24-1.76l.14-.14zm12.08 0 7.41-64.69 5.06-5.06 4.84 4.84 7.86 64.92h-25.17zm128.2 0h-39.76v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.18l-6.2-51.17.25.25c1.13 1.13 2.66 1.76 4.24 1.76.26 0 .53-.02.79-.05 1.85-.25 3.48-1.34 4.41-2.97l20.07-35.06 46.47 23.23c.24.12.49.23.75.31 12.05 4.1 20.15 15.38 20.15 28.05v35.65zm-67.04-346.65h-10.84l28.38 39.84 28.38-39.84h-10.84c-3.31 0-6-2.69-6-6v-64.58h-98.7c-3.31 0-6-2.69-6-6s2.69-6 6-6h104.7c3.31 0 6 2.69 6 6v64.58h16.48c2.25 0 4.3 1.25 5.33 3.25s.86 4.4-.45 6.23l-40.02 56.18c-1.13 1.58-2.95 2.52-4.89 2.52s-3.76-.94-4.89-2.52l-40.02-56.18c-1.3-1.83-1.48-4.23-.45-6.23s3.09-3.25 5.33-3.25h16.48v-23.5h-65.38c-3.31 0-6-2.69-6-6s2.69-6 6-6h71.38c3.31 0 6 2.69 6 6v35.5c.02 3.31-2.67 6-5.98 6zm-118.44 50.65v-133.26c0-21.18-17.23-38.41-38.41-38.41h-207.7c-21.18-.01-38.41 17.23-38.41 38.41v133.26c0 21.18 17.23 38.41 38.41 38.41h105.8l64.8 55.11c1.11.94 2.49 1.43 3.89 1.43.85 0 1.71-.18 2.52-.55 2.12-.98 3.48-3.11 3.48-5.45v-50.54h27.21c21.18 0 38.41-17.23 38.41-38.41zm-71.62 26.41c-3.31 0-6 2.69-6 6v43.56l-56.59-48.13c-1.08-.92-2.46-1.43-3.89-1.43h-108.01c-14.56 0-26.41-11.85-26.41-26.41v-133.26c0-14.56 11.85-26.41 26.41-26.41h207.69c14.56 0 26.41 11.85 26.41 26.41v133.26c0 14.56-11.85 26.41-26.41 26.41zm-156.34-87.87h56.97c3.31 0 6-2.69 6-6v-39.2l8.55-8.55c2.34-2.34 2.34-6.14 0-8.49-2.34-2.34-6.14-2.34-8.48 0l-.7.7c-.98-1.97-3.01-3.32-5.36-3.32h-56.98c-3.31 0-6 2.69-6 6v52.85c0 3.32 2.69 6.01 6 6.01zm6-52.86h44.97v2.69l-18.16 18.16-8.84-8.84c-2.34-2.34-6.14-2.34-8.49 0-2.34 2.34-2.34 6.14 0 8.49l13.08 13.08c1.17 1.17 2.71 1.76 4.24 1.76s3.07-.59 4.24-1.76l13.92-13.92v21.2h-44.96zm173.62 3.08c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 31.92c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 36.52c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.68 5.99 6zm0 31.92c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.69 5.99 6zm-119.36 165.01h10.84l-28.38-39.84-28.38 39.84h10.84c3.31 0 6 2.69 6 6v64.58h98.7c3.31 0 6 2.69 6 6s-2.69 6-6 6h-104.69c-3.31 0-6-2.69-6-6v-64.58h-16.48c-2.25 0-4.3-1.25-5.33-3.25s-.86-4.4.45-6.23l40.02-56.18c1.13-1.58 2.95-2.52 4.89-2.52s3.76.94 4.89 2.52l40.02 56.18c1.3 1.83 1.48 4.23.45 6.23s-3.09 3.25-5.33 3.25h-16.48v23.5h65.38c3.31 0 6 2.69 6 6s-2.69 6-6 6h-71.38c-3.31 0-6-2.69-6-6v-35.5c-.03-3.31 2.66-6 5.97-6z\"></path></svg>				\n									<h5>\n							ærlig<br> rådgivning						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 510 510\"><path d=\"m192.036 385.845c-4.787-46.972-19.459-64.336-30.658-82.352-8.672-13.951-15.5-28.245-15.5-54.252 0-60.242 48.865-109.109 109.135-109.109 60.242 0 109.109 48.866 109.109 109.109 0 26.007-6.828 40.301-15.5 54.252-11.199 18.016-25.871 35.38-30.658 82.352 9.985 2.864 17.345 12.101 17.345 22.975v36.44c0 13.109-10.747 23.866-23.893 23.866h-10.334v9.945c0 12.588-10.341 22.929-22.93 22.929h-46.304c-12.589 0-22.93-10.341-22.93-22.929v-9.945h-10.334c-13.146 0-23.893-10.757-23.893-23.866v-36.44c0-10.874 7.36-20.111 17.345-22.975zm111.948-.917c4.199-42.194 15.78-62.332 26.488-79.049 10.147-15.842 19.65-28.207 19.65-56.638 0-52.513-42.597-95.109-95.109-95.109-52.537 0-95.135 42.596-95.135 95.109 0 28.431 9.503 40.796 19.65 56.638 10.708 16.717 22.289 36.855 26.488 79.049zm2.554-78.61c-1.175 13.701-11.985 24.191-24.783 24.191-13.527 0-24.862-12.086-24.862-26.673v-99.328c0-14.12 11.335-26.673 24.862-26.673 11.309 0 21.031 8.139 23.975 19.497 9.12 3.904 15.688 13.438 15.688 24.78 0 1.153-.068 2.289-.201 3.403 5.078 5.326 8.283 12.802 8.283 21.117 0 6.39-1.889 12.262-5.06 17.053 1.996 4.099 3.13 8.773 3.13 13.76 0 14.1-9.065 25.697-21.032 28.873zm-16.452-109.977c-1.964-2.729-4.916-4.506-8.331-4.506-6.192 0-10.862 6.21-10.862 12.673v99.328c0 6.677 4.67 12.673 10.862 12.673 5.516 0 9.822-4.614 10.717-10.425-4.709-1.416-8.923-4.144-12.279-7.814-2.607-2.852-2.409-7.283.443-9.89 2.851-2.607 7.282-2.408 9.889.443 2.416 2.642 5.72 4.356 9.402 4.356 7.733 0 13.643-7.218 13.643-15.734s-5.91-15.734-13.643-15.734c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7 5.352 0 10.388 1.655 14.658 4.533.593-1.743.915-3.634.915-5.612 0-2.11-.366-4.128-1.036-5.972-.769.858-1.588 1.66-2.453 2.397-2.94 2.507-7.361 2.156-9.869-.784-2.507-2.939-2.155-7.361.784-9.868 2.773-2.365 4.492-6.122 4.492-10.293 0-6.072-3.705-11.374-8.898-12.467-.154-.023-.307-.052-.458-.085-.499-.08-1.01-.121-1.532-.121-2.947 0-5.591 1.389-7.515 3.525-2.585 2.87-7.015 3.101-9.886.515-2.87-2.586-3.101-7.015-.515-9.886 3.111-3.453 7.059-5.988 11.472-7.252zm-104.526 67.344c-3.171-4.791-5.06-10.663-5.06-17.053 0-8.307 3.198-15.777 8.284-21.104-.133-1.118-.202-2.258-.202-3.416 0-11.354 6.582-20.897 15.717-24.792 2.948-11.354 12.67-19.485 23.946-19.485 13.56 0 24.888 12.555 24.888 26.673v99.328c0 14.585-11.328 26.673-24.888 26.673-12.765 0-23.578-10.484-24.757-24.184-11.98-3.166-21.058-14.769-21.058-28.88 0-4.987 1.134-9.661 3.13-13.76zm9.982-23.036c-.675 1.847-1.042 3.869-1.042 5.983 0 1.978.322 3.869.915 5.612 4.27-2.878 9.306-4.533 14.658-4.533 3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7-7.733 0-13.643 7.218-13.643 15.734s5.91 15.734 13.643 15.734c3.682 0 6.986-1.714 9.402-4.356 2.607-2.851 7.038-3.05 9.889-.443 2.852 2.607 3.05 7.038.443 9.89-3.35 3.664-7.556 6.389-12.255 7.807.891 5.813 5.192 10.432 10.693 10.432 6.21 0 10.888-5.993 10.888-12.673v-99.328c0-6.466-4.678-12.673-10.888-12.673-3.404 0-6.349 1.777-8.309 4.507 4.421 1.264 8.367 3.8 11.476 7.251 2.586 2.871 2.355 7.3-.516 9.886-2.87 2.586-7.3 2.355-9.886-.515-1.926-2.138-4.574-3.525-7.54-3.525-.493 0-.976.037-1.448.108-.196.045-.395.082-.596.11-5.165 1.118-8.844 6.404-8.844 12.455 0 1.243.153 2.45.442 3.594.101.284.183.572.246.862.748 2.326 2.071 4.346 3.814 5.823 2.947 2.498 3.311 6.919.813 9.866s-6.919 3.312-9.866.814c-.878-.745-1.71-1.554-2.489-2.422zm3.042 158.279c-5.442 0-9.893 4.451-9.893 9.892v36.44c0 5.423 4.454 9.866 9.893 9.866h17.334c3.866 0 7 3.134 7 7v16.945c0 4.902 4.027 8.929 8.93 8.929h46.304c4.903 0 8.93-4.027 8.93-8.929v-16.945c0-3.866 3.134-7 7-7h17.334c5.439 0 9.893-4.443 9.893-9.866v-36.44c0-5.441-4.451-9.892-9.893-9.892zm63.416-314.093 2.907-5.412c1.828-3.403 6.075-4.683 9.479-2.854 3.403 1.828 4.682 6.075 2.854 9.479l-16.073 29.925c-1.22 2.271-3.589 3.688-6.167 3.688s-4.947-1.417-6.167-3.688l-16.073-29.925c-1.828-3.404-.549-7.651 2.854-9.479 3.404-1.829 7.651-.549 9.479 2.854l2.907 5.412v-69.835c0-3.863 3.137-7 7-7s7 3.137 7 7zm-132.198 54.758-49.381-49.381c-2.732-2.731-2.732-7.167 0-9.899s7.168-2.732 9.9 0l49.38 49.38-1.771-5.881c-1.114-3.7.985-7.608 4.684-8.722 3.7-1.114 7.607.985 8.721 4.685l9.796 32.526c.743 2.468.069 5.145-1.753 6.968-1.823 1.823-4.5 2.496-6.969 1.753l-32.526-9.795c-3.699-1.114-5.798-5.022-4.684-8.721s5.022-5.798 8.721-4.684zm-44.859 122.299h-69.835c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7h69.835l-5.412-2.907c-3.403-1.828-4.682-6.076-2.854-9.479 1.828-3.404 6.075-4.683 9.479-2.855l29.926 16.074c2.271 1.22 3.688 3.589 3.688 6.167 0 2.577-1.417 4.947-3.688 6.166l-29.926 16.074c-3.404 1.828-7.651.549-9.479-2.855-1.828-3.403-.549-7.651 2.854-9.479zm54.758 118.198-49.38 49.38c-2.732 2.732-7.168 2.732-9.9 0s-2.732-7.167 0-9.899l49.381-49.381-5.882 1.772c-3.699 1.114-7.607-.985-8.721-4.685-1.114-3.699.985-7.607 4.684-8.721l32.526-9.795c2.469-.743 5.146-.07 6.969 1.753 1.822 1.823 2.496 4.5 1.753 6.968l-9.796 32.527c-1.114 3.699-5.021 5.798-8.721 4.684-3.699-1.114-5.798-5.022-4.684-8.721zm240.497-240.497 5.882-1.771c3.699-1.114 7.607.985 8.721 4.684s-.985 7.607-4.684 8.721l-32.526 9.795c-2.469.743-5.146.07-6.969-1.753-1.822-1.823-2.496-4.5-1.753-6.968l9.796-32.526c1.114-3.7 5.021-5.799 8.721-4.685 3.699 1.114 5.798 5.022 4.684 8.722l-1.771 5.881 49.38-49.38c2.732-2.732 7.168-2.732 9.9 0s2.732 7.168 0 9.899zm44.859 122.299 5.412 2.906c3.403 1.828 4.682 6.076 2.854 9.479-1.828 3.404-6.075 4.683-9.479 2.855l-29.926-16.074c-2.271-1.219-3.688-3.589-3.688-6.166 0-2.578 1.417-4.947 3.688-6.167l29.926-16.074c3.404-1.828 7.651-.549 9.479 2.855 1.828 3.403.549 7.651-2.854 9.479l-5.412 2.907h69.835c3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7zm-54.758 118.198 1.771 5.882c1.114 3.699-.985 7.607-4.684 8.721-3.7 1.114-7.607-.985-8.721-4.684l-9.796-32.527c-.743-2.468-.069-5.145 1.753-6.968 1.823-1.823 4.5-2.496 6.969-1.753l32.526 9.795c3.699 1.114 5.798 5.022 4.684 8.721-1.114 3.7-5.022 5.799-8.721 4.685l-5.882-1.772 49.381 49.381c2.732 2.732 2.732 7.167 0 9.899s-7.168 2.732-9.9 0z\"></path></svg>				\n									<h5>\n							gennemtænkte løsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"outline\"><path d=\"M486.41,144A28,28,0,0,0,472,92H349.123l5.457-21.828a48.513,48.513,0,0,0-12.848-46.153A41.035,41.035,0,0,0,312.609,12H308a8.009,8.009,0,0,0-8,8V47.413l-19.233,64.112A17.376,17.376,0,0,1,268,123.539V112a4,4,0,0,0-4-4H152a4,4,0,0,0-4,4v72a4,4,0,0,0,8,0V116h72V276H156V248a4,4,0,0,0-8,0v32a4,4,0,0,0,4,4H264a4,4,0,0,0,4-4V268.5h11.168A37.07,37.07,0,0,1,305.092,279a45.025,45.025,0,0,0,31.48,12.752L440,292a27.987,27.987,0,0,0,19.369-48.2,27.987,27.987,0,0,0,16-48A28,28,0,0,0,486.41,144ZM260,276H236V116h24Zm212-88H396a4,4,0,0,0,0,8h60a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h40a20,20,0,0,1,.01,40l-103.428-.25a37.07,37.07,0,0,1-25.924-10.5,45.031,45.031,0,0,0-31.49-12.752H268V131.686a25.317,25.317,0,0,0,20.429-17.862l19.4-64.675A4,4,0,0,0,308,48V20h4.609a33.082,33.082,0,0,1,23.481,9.69,40.507,40.507,0,0,1,10.728,38.541l-6.7,26.8A4,4,0,0,0,344,100H472a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h72a20,20,0,0,1,0,40Z\"></path><path d=\"M194.5,183.243l-1.9-.217a4,4,0,0,0-4.169,2.491L184.29,195.9H135.278l-3.539-9.317a4,4,0,0,0-7.478,2.84l2.459,6.477h-8.474L68.452,156.872a4,4,0,1,0-4.935,6.3L77.6,174.209,56.961,194.48l-6.636-5.491a4,4,0,1,0-5.1,6.163L87.219,229.9a44.1,44.1,0,0,0,28.05,10.1H212a8.009,8.009,0,0,0,8-8V203.9a8.009,8.009,0,0,0-8-8h-8v-2.01A10.708,10.708,0,0,0,194.5,183.243ZM212,203.9V232H115.269a36.081,36.081,0,0,1-22.951-8.264l-29.16-24.128,20.8-20.422L114.4,203.045a4,4,0,0,0,2.468.852H187a4,4,0,0,0,3.715-2.517l3.929-9.843a2.712,2.712,0,0,1,1.356,2.35v6.01a4,4,0,0,0,4,4Z\"></path><path d=\"M223.084,484.672,200.87,469.863V346.36A44.1,44.1,0,0,0,195.327,325l-17.183-30.94a4,4,0,0,0-7,3.884l17.184,30.94a36.073,36.073,0,0,1,4.537,17.478V468H164.333a4,4,0,1,0,0,8h31.321l12,8H152.865V352a4,4,0,0,0-.358-1.655l-25.454-56A4,4,0,0,0,123.411,292H114.2a4,4,0,0,0-3.945,4.658l8.862,53.175a36.016,36.016,0,0,1-1.951,18.949L78.642,468H48.333a4,4,0,1,0,0,8H80.377L92,484H32.088L76.63,361.366a4.017,4.017,0,0,0,.183-2.044L61.1,268H136a4,4,0,0,0,0-8H59.233L30.555,173.966A19.723,19.723,0,0,1,49.27,148H76a12,12,0,0,0,24,0h15.2a21.975,21.975,0,0,1,8.395,1.652l10.889,4.458a4,4,0,1,0,3.032-7.4L126.63,142.25A29.938,29.938,0,0,0,115.2,140H100v-4.527A16.014,16.014,0,0,0,112,120V103.473A16.014,16.014,0,0,0,124,88V80a4,4,0,0,0-4-4H90A22.025,22.025,0,0,0,68,98v18a12.02,12.02,0,0,0,8,11.314V140H49.27a27.723,27.723,0,0,0-26.305,36.5l29.493,88.482,16.29,94.655-46.128,127A4,4,0,0,0,26.38,492h78.485a4,4,0,0,0,2.268-7.3L86.3,470.368l38.318-98.69a44.018,44.018,0,0,0,2.385-23.16L118.921,300h1.914l24.03,52.867V488a4,4,0,0,0,4,4h72a4,4,0,0,0,2.219-7.328ZM76,98A14.015,14.015,0,0,1,90,84h26v4a8.009,8.009,0,0,1-8,8H92a4,4,0,0,0-4,4,11.962,11.962,0,0,1-1.53,5.881A12.044,12.044,0,0,0,76,104.686Zm4,14a3.981,3.981,0,0,1,3.407,1.9,4,4,0,0,0,5.956.975c.207-.171.7-.648.7-.648.032-.028.061-.057.09-.087A19.907,19.907,0,0,0,95.6,104H104v16a8.009,8.009,0,0,1-8,8,12.133,12.133,0,0,1-2.681-.3,4,4,0,1,0-1.775,7.8c.151.035.3.06.456.091V148a4,4,0,1,1-8,0V124a4,4,0,0,0-4-4,4,4,0,0,1,0-8Z\"></path></g></svg>				\n									<h5>\n							arbejde udført med ansvar						\n					</h5>\n				<p>Vi lover ikke mere, end vi kan holde – men vi holder det, vi lover.</p>			<h2>KONTAKT OS</h2>		<p>Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.</p>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 13:56:21', '2026-01-26 13:56:21', '', 10, 'https://mrarif.me/cpnordic/?p=563', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(564, 1, '2026-01-26 13:56:21', '2026-01-26 13:56:21', '<h1>CP NORDIC ApS</h1>					<h4>Byggeri – Tømrerarbejde og tagdækning</h4>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle ANMELDELSER\n					</a>\n					<h2>HVORFOR VÆLGE CP NORDIC ApS?</h2>		<p>Når du vælger CP NORDIC ApS, får du:</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 450 450\" width=\"512\"><g><g><path d=\"m225 165.2c-25.9 0-48.9-18.8-53.3-45.2-2.4-14.2.9-28.6 9.3-40.3 8.4-11.8 20.9-19.5 35.1-21.9 29.4-4.9 57.3 15 62.2 44.5 4.9 29.4-15 57.3-44.4 62.2-3 .5-6 .7-8.9.7zm-7.6-99.8c-12.2 2-22.9 8.7-30.1 18.8s-10.1 22.4-8 34.6c3.8 22.7 23.5 38.8 45.7 38.8 2.5 0 5.1-.2 7.6-.6 25.2-4.2 42.3-28.1 38.1-53.4s-28.1-42.4-53.3-38.2z\"></path><path d=\"m255.2 115c-2.1 0-3.8-1.7-3.8-3.8 0-14.6-11.8-26.4-26.4-26.4-2.1 0-3.8-1.7-3.8-3.8s1.7-3.8 3.8-3.8c18.8 0 34.1 15.3 34.1 34.1 0 2-1.8 3.7-3.9 3.7z\"></path><path d=\"m236.1 203h-22.2c-2.1 0-3.8-1.7-3.8-3.8v-14.1c-3.1-.6-6.1-1.4-9.1-2.4l-7 12.2c-1.1 1.8-3.4 2.5-5.3 1.4l-19.2-11.1c-.9-.5-1.5-1.4-1.8-2.3-.3-1-.1-2 .4-2.9l7-12.1c-2.4-2.1-4.6-4.3-6.7-6.6l-12.1 7c-1.8 1.1-4.2.4-5.2-1.4l-11.1-19.2c-1.1-1.8-.4-4.2 1.4-5.2l11.9-6.8c-1-3-1.9-6.1-2.6-9.3h-13.7c-2.1 0-3.8-1.7-3.8-3.8v-22.2c0-2.1 1.7-3.8 3.8-3.8h13.4c.6-3.2 1.4-6.4 2.4-9.5l-11.5-6.6c-1.8-1.1-2.5-3.4-1.4-5.3l11.1-19.6c.5-.9 1.4-1.5 2.3-1.8s2-.1 2.9.4l11.3 6.6c2.2-2.5 4.5-4.8 7-7l-6.5-11.3c-.5-.9-.6-1.9-.4-2.9.3-1 .9-1.8 1.8-2.3l19.2-11.1c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l6.4 11.2c3.1-1.1 6.4-1.9 9.7-2.6v-13c0-2.1 1.7-3.8 3.8-3.8h22.2c2.1 0 3.8 1.7 3.8 3.8v12.8c3.3.7 6.5 1.5 9.7 2.6l6.5-11.2c.5-.9 1.4-1.5 2.3-1.8 1-.3 2-.1 2.9.4l19.2 11.1c.9.5 1.5 1.3 1.8 2.3s.1 2-.4 2.9l-6.5 11.3c2.5 2.2 4.8 4.5 7 7.1l11.3-6.6c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l11.1 19.2c1.1 1.8.4 4.2-1.4 5.3l-11.5 6.6c1 3.1 1.8 6.3 2.5 9.5h13.6c2.1 0 3.8 1.7 3.8 3.8v22.2c0 2.1-1.7 3.8-3.8 3.8h-13.6c-.6 3.1-1.5 6.2-2.5 9.3l11.9 6.8c1.8 1.1 2.5 3.4 1.4 5.2l-11.2 19.5c-1.1 1.8-3.4 2.5-5.2 1.4l-12-7c-2.1 2.4-4.4 4.6-6.7 6.6l7 12.1c.5.9.6 1.9.4 2.9s-.9 1.8-1.8 2.3l-19.2 11.1c-1.8 1.1-4.2.4-5.2-1.4l-7-12.2c-3 1-6 1.8-9.1 2.4v14.1c-.2 2.3-2 4-4.1 4zm-18.4-7.7h14.5v-13.5c0-1.9 1.4-3.5 3.3-3.8 4.7-.7 9.4-2 13.8-3.7 1.8-.7 3.8 0 4.7 1.7l6.7 11.6 12.6-7.3-6.7-11.6c-1-1.6-.5-3.7.9-4.9 3.7-3 7.2-6.4 10.2-10.1 1.2-1.5 3.3-1.8 4.9-.9l11.5 6.6 7.3-12.6-11.3-6.5c-1.6-.9-2.4-3-1.6-4.7 1.8-4.5 3.1-9.2 3.9-14 .3-1.9 1.9-3.2 3.8-3.2h13v-14.6h-12.8c-1.9 0-3.5-1.4-3.8-3.3-.7-4.8-2-9.6-3.7-14.2-.7-1.8 0-3.7 1.7-4.7l10.9-6.3-7.3-12.6-10.8 6.3c-1.6.9-3.7.6-4.9-.9-3.1-3.9-6.6-7.4-10.4-10.6-1.5-1.2-1.9-3.3-.9-4.9l6.2-10.7-12.6-7.3-6.1 10.6c-1 1.6-3 2.3-4.7 1.7-4.6-1.8-9.5-3.1-14.4-3.9-1.9-.3-3.3-1.9-3.3-3.8v-12.2h-14.5v12.3c0 1.9-1.4 3.5-3.3 3.8-5 .8-9.8 2.1-14.4 3.9-1.8.7-3.8 0-4.7-1.7l-6.1-10.6-12.6 7.3 6.2 10.7c.9 1.6.6 3.7-.9 4.9-3.9 3.1-7.4 6.7-10.4 10.6-1.2 1.5-3.3 1.9-4.9.9l-10.8-6.3-7.3 12.6 10.9 6.3c1.6.9 2.3 2.9 1.7 4.7-1.7 4.6-3 9.4-3.7 14.2-.3 1.9-1.9 3.3-3.8 3.3h-12.8v14.5h13c1.9 0 3.5 1.4 3.8 3.2.8 4.8 2.1 9.5 3.9 14 .7 1.8 0 3.8-1.6 4.7l-11.3 6.5 7.3 12.6 11.5-6.6c1.6-.9 3.7-.6 4.9.9 3 3.7 6.5 7.1 10.3 10.1 1.5 1.2 1.9 3.3.9 4.9l-6.7 11.6 12.6 7.3 6.7-11.6c.9-1.6 2.9-2.3 4.7-1.7 4.5 1.7 9.1 2.9 13.8 3.7 1.9.3 3.3 1.9 3.3 3.8z\"></path></g><g><g><g><path d=\"m45.3 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m153.9 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path></g><g><path d=\"m189.3 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.2c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c0 2.1-1.7 3.8-3.8 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m73.3 326.4c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m126 326.4c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m99.7 325.6c-.6 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4s4.1 1.1 4.4 3.2c2.4 16.5 12.3 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m50.2 266.6c-.1 0-.2 0-.3 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.7 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-8.9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.5 2.2zm81.8-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13.1-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.4-.7 2.3-.7z\"></path></g></g></g><g><g><path d=\"m296.1 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m404.7 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path></g><g><path d=\"m440 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.1c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c.2 2.1-1.6 3.8-3.7 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m324 326.3c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m376.7 326.3c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m350.4 325.6c-.5 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4 2.1-.3 4 1.1 4.4 3.2 2.4 16.5 12.4 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m301 266.6c-.1 0-.2 0-.4 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.6 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.4 2.2zm81.7-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.5-.7 2.3-.7z\"></path></g></g></g></g></g></svg>				\n									<h5>\n							et ungt og engageret team						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"496pt\" viewBox=\"0 0 496 496\" width=\"496pt\"><path d=\"m440 328h-28.207031c5.078125-6.703125 8.207031-14.960938 8.207031-24 0-8.824219-7.175781-16-16-16h-12v-19.960938c59.574219-14.445312 104-68.085937 104-132.039062 0-74.992188-61.007812-136-136-136s-136 61.007812-136 136c0 63.953125 44.425781 117.59375 104 132.039062v19.960938h-8.449219c-6.167969 0-12.359375 1.464844-17.886719 4.214844l-50.480468 25.25c-3.320313 1.664062-7.03125 2.535156-10.734375 2.535156h-40.449219v-16h-104v16h56v56h16v-56h16v128h-16v-56h-16v56h-56v16h104v-16h40.449219c3.703125 0 7.414062.871094 10.734375 2.527344l34.488281 17.25c5.519531 2.757812 11.710937 4.222656 17.878906 4.222656h24.449219v24h64v-24h48c13.230469 0 24-10.769531 24-24 0-6.167969-2.40625-11.742188-6.238281-16 3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16 0-13.230469-10.769531-24-24-24zm8 24c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm-208-280c0-66.167969 53.832031-120 120-120s120 53.832031 120 120-53.832031 120-120 120-120-53.832031-120-120zm104 134.976562c5.257812.617188 10.574219 1.023438 16 1.023438s10.742188-.40625 16-1.023438v17.023438h-32zm-40.449219 185.023438c-3.703125 0-7.414062-.871094-10.734375-2.527344l-34.488281-17.25c-5.519531-2.757812-11.710937-4.222656-17.878906-4.222656h-40.449219v-96h40.449219c6.167969 0 12.359375-1.464844 17.886719-4.214844l50.480468-25.25c3.320313-1.664062 7.03125-2.535156 10.734375-2.535156h84.449219c0 13.230469-10.769531 24-24 24h-48.28125l-23.863281 35.808594c-6.101563 9.160156-14.527344 16.589844-24.367188 21.503906-8.753906 4.375-18.542969 6.6875-28.320312 6.6875h-15.167969v16h15.167969c12.246093 0 24.519531-2.894531 35.472656-8.375 12.328125-6.160156 22.878906-15.480469 30.527344-26.945312l6.832031-10.253907v93.574219zm40.449219 24v-136h17.472656c-.898437 2.511719-1.472656 5.183594-1.472656 8 0 6.167969 2.40625 11.742188 6.238281 16-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16 0 10.414062 6.710938 19.214844 16 22.527344v9.472656zm96-24h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8s-3.59375 8-8 8zm0 0\"></path><path d=\"m394.878906 73.007812-7.757812 13.984376c17.816406 9.878906 28.878906 28.664062 28.878906 49.007812h16c0-26.160156-14.222656-50.296875-37.121094-62.992188zm0 0\"></path><path d=\"m360 80c4.734375 0 9.449219.59375 14.007812 1.769531l3.976563-15.503906c-5.855469-1.496094-11.90625-2.265625-17.984375-2.265625zm0 0\"></path><path d=\"m360 48c48.519531 0 88 39.480469 88 88 0 20.753906-7.398438 40.910156-20.832031 56.785156l12.207031 10.34375c15.882812-18.761718 24.625-42.601562 24.625-67.128906 0-57.34375-46.65625-104-104-104-24.527344 0-48.367188 8.753906-67.128906 24.632812l10.335937 12.199219c15.871094-13.433593 36.039063-20.832031 56.792969-20.832031zm0 0\"></path><path d=\"m427.128906 215.367188-10.335937-12.199219c-15.871094 13.433593-36.039063 20.832031-56.792969 20.832031-48.519531 0-88-39.480469-88-88 0-20.753906 7.398438-40.910156 20.832031-56.785156l-12.207031-10.34375c-15.882812 18.761718-24.625 42.601562-24.625 67.128906 0 57.34375 46.65625 104 104 104 24.527344 0 48.367188-8.753906 67.128906-24.632812zm0 0\"></path><path d=\"m121.214844 165.640625c4.953125-1.375 9.695312-3.34375 14.183594-5.878906l9.769531 4.886719 19.472656-19.480469-4.886719-9.769531c2.535156-4.496094 4.503906-9.230469 5.886719-14.183594l10.359375-3.445313v-27.53125l-10.351562-3.453125c-1.375-4.953125-3.34375-9.707031-5.886719-14.183594l4.886719-9.777343-19.472657-19.472657-9.769531 4.886719c-4.484375-2.535156-9.230469-4.503906-14.183594-5.878906l-3.453125-10.359375h-27.539062l-3.445313 10.359375c-4.953125 1.375-9.695312 3.34375-14.183594 5.878906l-9.777343-4.886719-19.472657 19.472657 4.886719 9.777343c-2.535156 4.488282-4.503906 9.230469-5.886719 14.183594l-10.351562 3.445313v27.53125l10.351562 3.453125c1.375 4.953125 3.34375 9.695312 5.886719 14.183594l-4.886719 9.769531 19.472657 19.480469 9.769531-4.886719c4.484375 2.535156 9.230469 4.503906 14.183594 5.878906l3.453125 10.359375h27.539062zm-12.304688-13.679687-2.679687 8.039062h-4.460938l-2.679687-8.039062-4.554688-.90625c-6.128906-1.222657-11.878906-3.605469-17.109375-7.09375l-3.867187-2.578126-7.574219 3.800782-3.160156-3.167969 3.792969-7.582031-2.578126-3.859375c-3.488281-5.222657-5.871093-10.980469-7.09375-17.109375l-.914062-4.554688-8.03125-2.679687v-4.46875l8.03125-2.671875.914062-4.554688c1.222657-6.136718 3.613282-11.886718 7.09375-17.109375l2.578126-3.859375-3.792969-7.589844 3.160156-3.160156 7.574219 3.800782 3.867187-2.578126c5.222657-3.488281 10.980469-5.863281 17.109375-7.09375l4.554688-.90625 2.679687-8.039062h4.460938l2.679687 8.039062 4.554688.90625c6.128906 1.222657 11.878906 3.605469 17.109375 7.09375l3.867187 2.578126 7.574219-3.800782 3.160156 3.160156-3.792969 7.589844 2.578126 3.859375c3.488281 5.214844 5.871093 10.972657 7.09375 17.109375l.914062 4.554688 8.03125 2.679687v4.46875l-8.03125 2.671875-.914062 4.554688c-1.222657 6.128906-3.613282 11.878906-7.09375 17.109375l-2.578126 3.859375 3.792969 7.582031-3.160156 3.167969-7.574219-3.800782-3.867187 2.578126c-5.222657 3.488281-10.980469 5.863281-17.109375 7.09375zm0 0\"></path><path d=\"m104 72c-17.648438 0-32 14.351562-32 32s14.351562 32 32 32 32-14.351562 32-32-14.351562-32-32-32zm0 48c-8.824219 0-16-7.175781-16-16s7.175781-16 16-16 16 7.175781 16 16-7.175781 16-16 16zm0 0\"></path><path d=\"m160 248v-40h48v-208h-208v208h106.664062zm-144-232h176v176h-48v24l-32-24h-96zm0 0\"></path><path d=\"m0 272h16v16h-16zm0 0\"></path><path d=\"m32 272h16v16h-16zm0 0\"></path><path d=\"m64 272h16v16h-16zm0 0\"></path><path d=\"m32 304h16v16h-16zm0 0\"></path><path d=\"m64 304h16v16h-16zm0 0\"></path><path d=\"m0 480h16v16h-16zm0 0\"></path><path d=\"m32 480h16v16h-16zm0 0\"></path><path d=\"m64 480h16v16h-16zm0 0\"></path><path d=\"m32 448h16v16h-16zm0 0\"></path><path d=\"m64 448h16v16h-16zm0 0\"></path></svg>				\n									<h5>\n							fokus på kvalitet og detaljer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m469.12 408.93-67.26-33.63v-22.13c10.71-7.69 18.6-19.07 21.78-32.27h5.28c8.81 0 15.98-7.17 15.98-15.98v-5.29c0-6.35-3.74-11.84-9.12-14.41 5.19-18.64-1.65-39.76-19.44-59.78-12.58-14.16-30.67-22.27-49.62-22.27-18.93 0-37.01 8.12-49.59 22.27-13.38 15.05-20.95 41.01-14.03 59.62-5.56 2.5-9.45 8.09-9.45 14.57v5.29c0 8.81 7.17 15.98 15.98 15.98h5.55c3.16 13.09 10.94 24.39 21.51 32.08v22.32l-67.26 33.63c-16.7 5.87-27.89 21.6-27.89 39.28v41.63c0 3.31 2.69 6 6 6h243.46c3.31 0 6-2.69 6-6v-41.63c0-17.68-11.19-33.41-27.88-39.28zm-62.24-17.7-15.83 27.66-13.29-13.29 19.29-19.29zm-37.61 5.88-20.59-20.58v-16.91c6.41 2.57 13.4 4.01 20.72 4.01 7.22 0 14.11-1.39 20.45-3.9v16.8zm63.63-97.48v5.29c0 2.16-1.82 3.98-3.98 3.98h-3.74c.01-.36.03-.71.03-1.07v-12.18h3.71c2.15-.01 3.98 1.82 3.98 3.98zm-119.29 8.2v1.07h-3.98c-2.16 0-3.98-1.82-3.98-3.98v-5.29c0-2.16 1.82-3.98 3.98-3.98l3.98.22zm1.95-24.19c-7.33-13.69-.89-37.39 10.53-50.24 10.31-11.6 25.12-18.25 40.63-18.25 15.52 0 30.34 6.65 40.65 18.25 8.43 9.48 21.3 27.59 17.4 46.39-5.66-.35-10.67-2.55-14.4-6.36-5.37-5.49-7.72-14-6.63-23.94.29-2.62-1.17-5.13-3.6-6.17s-5.25-.37-6.95 1.65c-19.33 22.92-45.95 36.76-73.9 38.68h-3.73zm10.05 24.19v-12.73c24.57-2.92 47.92-14.05 66.73-31.8 1.43 7.26 4.63 13.6 9.45 18.52 3.27 3.35 7.14 5.89 11.41 7.58v18.42c0 24.15-19.65 43.8-43.8 43.8s-43.79-19.64-43.79-43.79zm15.89 78.48 19.29 19.29-13.29 13.29-15.84-27.66zm3.22 97.53h-39.42v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.76v-35.63c0-12.68 8.1-23.95 20.15-28.05.26-.09.51-.19.75-.31l46.47-23.23 20.07 35.06c.93 1.62 2.56 2.72 4.41 2.97.27.04.53.05.79.05 1.58 0 3.11-.62 4.24-1.76l.14-.14zm12.08 0 7.41-64.69 5.06-5.06 4.84 4.84 7.86 64.92h-25.17zm128.2 0h-39.76v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.18l-6.2-51.17.25.25c1.13 1.13 2.66 1.76 4.24 1.76.26 0 .53-.02.79-.05 1.85-.25 3.48-1.34 4.41-2.97l20.07-35.06 46.47 23.23c.24.12.49.23.75.31 12.05 4.1 20.15 15.38 20.15 28.05v35.65zm-67.04-346.65h-10.84l28.38 39.84 28.38-39.84h-10.84c-3.31 0-6-2.69-6-6v-64.58h-98.7c-3.31 0-6-2.69-6-6s2.69-6 6-6h104.7c3.31 0 6 2.69 6 6v64.58h16.48c2.25 0 4.3 1.25 5.33 3.25s.86 4.4-.45 6.23l-40.02 56.18c-1.13 1.58-2.95 2.52-4.89 2.52s-3.76-.94-4.89-2.52l-40.02-56.18c-1.3-1.83-1.48-4.23-.45-6.23s3.09-3.25 5.33-3.25h16.48v-23.5h-65.38c-3.31 0-6-2.69-6-6s2.69-6 6-6h71.38c3.31 0 6 2.69 6 6v35.5c.02 3.31-2.67 6-5.98 6zm-118.44 50.65v-133.26c0-21.18-17.23-38.41-38.41-38.41h-207.7c-21.18-.01-38.41 17.23-38.41 38.41v133.26c0 21.18 17.23 38.41 38.41 38.41h105.8l64.8 55.11c1.11.94 2.49 1.43 3.89 1.43.85 0 1.71-.18 2.52-.55 2.12-.98 3.48-3.11 3.48-5.45v-50.54h27.21c21.18 0 38.41-17.23 38.41-38.41zm-71.62 26.41c-3.31 0-6 2.69-6 6v43.56l-56.59-48.13c-1.08-.92-2.46-1.43-3.89-1.43h-108.01c-14.56 0-26.41-11.85-26.41-26.41v-133.26c0-14.56 11.85-26.41 26.41-26.41h207.69c14.56 0 26.41 11.85 26.41 26.41v133.26c0 14.56-11.85 26.41-26.41 26.41zm-156.34-87.87h56.97c3.31 0 6-2.69 6-6v-39.2l8.55-8.55c2.34-2.34 2.34-6.14 0-8.49-2.34-2.34-6.14-2.34-8.48 0l-.7.7c-.98-1.97-3.01-3.32-5.36-3.32h-56.98c-3.31 0-6 2.69-6 6v52.85c0 3.32 2.69 6.01 6 6.01zm6-52.86h44.97v2.69l-18.16 18.16-8.84-8.84c-2.34-2.34-6.14-2.34-8.49 0-2.34 2.34-2.34 6.14 0 8.49l13.08 13.08c1.17 1.17 2.71 1.76 4.24 1.76s3.07-.59 4.24-1.76l13.92-13.92v21.2h-44.96zm173.62 3.08c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 31.92c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 36.52c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.68 5.99 6zm0 31.92c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.69 5.99 6zm-119.36 165.01h10.84l-28.38-39.84-28.38 39.84h10.84c3.31 0 6 2.69 6 6v64.58h98.7c3.31 0 6 2.69 6 6s-2.69 6-6 6h-104.69c-3.31 0-6-2.69-6-6v-64.58h-16.48c-2.25 0-4.3-1.25-5.33-3.25s-.86-4.4.45-6.23l40.02-56.18c1.13-1.58 2.95-2.52 4.89-2.52s3.76.94 4.89 2.52l40.02 56.18c1.3 1.83 1.48 4.23.45 6.23s-3.09 3.25-5.33 3.25h-16.48v23.5h65.38c3.31 0 6 2.69 6 6s-2.69 6-6 6h-71.38c-3.31 0-6-2.69-6-6v-35.5c-.03-3.31 2.66-6 5.97-6z\"></path></svg>				\n									<h5>\n							ærlig<br> rådgivning						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 510 510\"><path d=\"m192.036 385.845c-4.787-46.972-19.459-64.336-30.658-82.352-8.672-13.951-15.5-28.245-15.5-54.252 0-60.242 48.865-109.109 109.135-109.109 60.242 0 109.109 48.866 109.109 109.109 0 26.007-6.828 40.301-15.5 54.252-11.199 18.016-25.871 35.38-30.658 82.352 9.985 2.864 17.345 12.101 17.345 22.975v36.44c0 13.109-10.747 23.866-23.893 23.866h-10.334v9.945c0 12.588-10.341 22.929-22.93 22.929h-46.304c-12.589 0-22.93-10.341-22.93-22.929v-9.945h-10.334c-13.146 0-23.893-10.757-23.893-23.866v-36.44c0-10.874 7.36-20.111 17.345-22.975zm111.948-.917c4.199-42.194 15.78-62.332 26.488-79.049 10.147-15.842 19.65-28.207 19.65-56.638 0-52.513-42.597-95.109-95.109-95.109-52.537 0-95.135 42.596-95.135 95.109 0 28.431 9.503 40.796 19.65 56.638 10.708 16.717 22.289 36.855 26.488 79.049zm2.554-78.61c-1.175 13.701-11.985 24.191-24.783 24.191-13.527 0-24.862-12.086-24.862-26.673v-99.328c0-14.12 11.335-26.673 24.862-26.673 11.309 0 21.031 8.139 23.975 19.497 9.12 3.904 15.688 13.438 15.688 24.78 0 1.153-.068 2.289-.201 3.403 5.078 5.326 8.283 12.802 8.283 21.117 0 6.39-1.889 12.262-5.06 17.053 1.996 4.099 3.13 8.773 3.13 13.76 0 14.1-9.065 25.697-21.032 28.873zm-16.452-109.977c-1.964-2.729-4.916-4.506-8.331-4.506-6.192 0-10.862 6.21-10.862 12.673v99.328c0 6.677 4.67 12.673 10.862 12.673 5.516 0 9.822-4.614 10.717-10.425-4.709-1.416-8.923-4.144-12.279-7.814-2.607-2.852-2.409-7.283.443-9.89 2.851-2.607 7.282-2.408 9.889.443 2.416 2.642 5.72 4.356 9.402 4.356 7.733 0 13.643-7.218 13.643-15.734s-5.91-15.734-13.643-15.734c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7 5.352 0 10.388 1.655 14.658 4.533.593-1.743.915-3.634.915-5.612 0-2.11-.366-4.128-1.036-5.972-.769.858-1.588 1.66-2.453 2.397-2.94 2.507-7.361 2.156-9.869-.784-2.507-2.939-2.155-7.361.784-9.868 2.773-2.365 4.492-6.122 4.492-10.293 0-6.072-3.705-11.374-8.898-12.467-.154-.023-.307-.052-.458-.085-.499-.08-1.01-.121-1.532-.121-2.947 0-5.591 1.389-7.515 3.525-2.585 2.87-7.015 3.101-9.886.515-2.87-2.586-3.101-7.015-.515-9.886 3.111-3.453 7.059-5.988 11.472-7.252zm-104.526 67.344c-3.171-4.791-5.06-10.663-5.06-17.053 0-8.307 3.198-15.777 8.284-21.104-.133-1.118-.202-2.258-.202-3.416 0-11.354 6.582-20.897 15.717-24.792 2.948-11.354 12.67-19.485 23.946-19.485 13.56 0 24.888 12.555 24.888 26.673v99.328c0 14.585-11.328 26.673-24.888 26.673-12.765 0-23.578-10.484-24.757-24.184-11.98-3.166-21.058-14.769-21.058-28.88 0-4.987 1.134-9.661 3.13-13.76zm9.982-23.036c-.675 1.847-1.042 3.869-1.042 5.983 0 1.978.322 3.869.915 5.612 4.27-2.878 9.306-4.533 14.658-4.533 3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7-7.733 0-13.643 7.218-13.643 15.734s5.91 15.734 13.643 15.734c3.682 0 6.986-1.714 9.402-4.356 2.607-2.851 7.038-3.05 9.889-.443 2.852 2.607 3.05 7.038.443 9.89-3.35 3.664-7.556 6.389-12.255 7.807.891 5.813 5.192 10.432 10.693 10.432 6.21 0 10.888-5.993 10.888-12.673v-99.328c0-6.466-4.678-12.673-10.888-12.673-3.404 0-6.349 1.777-8.309 4.507 4.421 1.264 8.367 3.8 11.476 7.251 2.586 2.871 2.355 7.3-.516 9.886-2.87 2.586-7.3 2.355-9.886-.515-1.926-2.138-4.574-3.525-7.54-3.525-.493 0-.976.037-1.448.108-.196.045-.395.082-.596.11-5.165 1.118-8.844 6.404-8.844 12.455 0 1.243.153 2.45.442 3.594.101.284.183.572.246.862.748 2.326 2.071 4.346 3.814 5.823 2.947 2.498 3.311 6.919.813 9.866s-6.919 3.312-9.866.814c-.878-.745-1.71-1.554-2.489-2.422zm3.042 158.279c-5.442 0-9.893 4.451-9.893 9.892v36.44c0 5.423 4.454 9.866 9.893 9.866h17.334c3.866 0 7 3.134 7 7v16.945c0 4.902 4.027 8.929 8.93 8.929h46.304c4.903 0 8.93-4.027 8.93-8.929v-16.945c0-3.866 3.134-7 7-7h17.334c5.439 0 9.893-4.443 9.893-9.866v-36.44c0-5.441-4.451-9.892-9.893-9.892zm63.416-314.093 2.907-5.412c1.828-3.403 6.075-4.683 9.479-2.854 3.403 1.828 4.682 6.075 2.854 9.479l-16.073 29.925c-1.22 2.271-3.589 3.688-6.167 3.688s-4.947-1.417-6.167-3.688l-16.073-29.925c-1.828-3.404-.549-7.651 2.854-9.479 3.404-1.829 7.651-.549 9.479 2.854l2.907 5.412v-69.835c0-3.863 3.137-7 7-7s7 3.137 7 7zm-132.198 54.758-49.381-49.381c-2.732-2.731-2.732-7.167 0-9.899s7.168-2.732 9.9 0l49.38 49.38-1.771-5.881c-1.114-3.7.985-7.608 4.684-8.722 3.7-1.114 7.607.985 8.721 4.685l9.796 32.526c.743 2.468.069 5.145-1.753 6.968-1.823 1.823-4.5 2.496-6.969 1.753l-32.526-9.795c-3.699-1.114-5.798-5.022-4.684-8.721s5.022-5.798 8.721-4.684zm-44.859 122.299h-69.835c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7h69.835l-5.412-2.907c-3.403-1.828-4.682-6.076-2.854-9.479 1.828-3.404 6.075-4.683 9.479-2.855l29.926 16.074c2.271 1.22 3.688 3.589 3.688 6.167 0 2.577-1.417 4.947-3.688 6.166l-29.926 16.074c-3.404 1.828-7.651.549-9.479-2.855-1.828-3.403-.549-7.651 2.854-9.479zm54.758 118.198-49.38 49.38c-2.732 2.732-7.168 2.732-9.9 0s-2.732-7.167 0-9.899l49.381-49.381-5.882 1.772c-3.699 1.114-7.607-.985-8.721-4.685-1.114-3.699.985-7.607 4.684-8.721l32.526-9.795c2.469-.743 5.146-.07 6.969 1.753 1.822 1.823 2.496 4.5 1.753 6.968l-9.796 32.527c-1.114 3.699-5.021 5.798-8.721 4.684-3.699-1.114-5.798-5.022-4.684-8.721zm240.497-240.497 5.882-1.771c3.699-1.114 7.607.985 8.721 4.684s-.985 7.607-4.684 8.721l-32.526 9.795c-2.469.743-5.146.07-6.969-1.753-1.822-1.823-2.496-4.5-1.753-6.968l9.796-32.526c1.114-3.7 5.021-5.799 8.721-4.685 3.699 1.114 5.798 5.022 4.684 8.722l-1.771 5.881 49.38-49.38c2.732-2.732 7.168-2.732 9.9 0s2.732 7.168 0 9.899zm44.859 122.299 5.412 2.906c3.403 1.828 4.682 6.076 2.854 9.479-1.828 3.404-6.075 4.683-9.479 2.855l-29.926-16.074c-2.271-1.219-3.688-3.589-3.688-6.166 0-2.578 1.417-4.947 3.688-6.167l29.926-16.074c3.404-1.828 7.651-.549 9.479 2.855 1.828 3.403.549 7.651-2.854 9.479l-5.412 2.907h69.835c3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7zm-54.758 118.198 1.771 5.882c1.114 3.699-.985 7.607-4.684 8.721-3.7 1.114-7.607-.985-8.721-4.684l-9.796-32.527c-.743-2.468-.069-5.145 1.753-6.968 1.823-1.823 4.5-2.496 6.969-1.753l32.526 9.795c3.699 1.114 5.798 5.022 4.684 8.721-1.114 3.7-5.022 5.799-8.721 4.685l-5.882-1.772 49.381 49.381c2.732 2.732 2.732 7.167 0 9.899s-7.168 2.732-9.9 0z\"></path></svg>				\n									<h5>\n							gennemtænkte løsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"outline\"><path d=\"M486.41,144A28,28,0,0,0,472,92H349.123l5.457-21.828a48.513,48.513,0,0,0-12.848-46.153A41.035,41.035,0,0,0,312.609,12H308a8.009,8.009,0,0,0-8,8V47.413l-19.233,64.112A17.376,17.376,0,0,1,268,123.539V112a4,4,0,0,0-4-4H152a4,4,0,0,0-4,4v72a4,4,0,0,0,8,0V116h72V276H156V248a4,4,0,0,0-8,0v32a4,4,0,0,0,4,4H264a4,4,0,0,0,4-4V268.5h11.168A37.07,37.07,0,0,1,305.092,279a45.025,45.025,0,0,0,31.48,12.752L440,292a27.987,27.987,0,0,0,19.369-48.2,27.987,27.987,0,0,0,16-48A28,28,0,0,0,486.41,144ZM260,276H236V116h24Zm212-88H396a4,4,0,0,0,0,8h60a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h40a20,20,0,0,1,.01,40l-103.428-.25a37.07,37.07,0,0,1-25.924-10.5,45.031,45.031,0,0,0-31.49-12.752H268V131.686a25.317,25.317,0,0,0,20.429-17.862l19.4-64.675A4,4,0,0,0,308,48V20h4.609a33.082,33.082,0,0,1,23.481,9.69,40.507,40.507,0,0,1,10.728,38.541l-6.7,26.8A4,4,0,0,0,344,100H472a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h72a20,20,0,0,1,0,40Z\"></path><path d=\"M194.5,183.243l-1.9-.217a4,4,0,0,0-4.169,2.491L184.29,195.9H135.278l-3.539-9.317a4,4,0,0,0-7.478,2.84l2.459,6.477h-8.474L68.452,156.872a4,4,0,1,0-4.935,6.3L77.6,174.209,56.961,194.48l-6.636-5.491a4,4,0,1,0-5.1,6.163L87.219,229.9a44.1,44.1,0,0,0,28.05,10.1H212a8.009,8.009,0,0,0,8-8V203.9a8.009,8.009,0,0,0-8-8h-8v-2.01A10.708,10.708,0,0,0,194.5,183.243ZM212,203.9V232H115.269a36.081,36.081,0,0,1-22.951-8.264l-29.16-24.128,20.8-20.422L114.4,203.045a4,4,0,0,0,2.468.852H187a4,4,0,0,0,3.715-2.517l3.929-9.843a2.712,2.712,0,0,1,1.356,2.35v6.01a4,4,0,0,0,4,4Z\"></path><path d=\"M223.084,484.672,200.87,469.863V346.36A44.1,44.1,0,0,0,195.327,325l-17.183-30.94a4,4,0,0,0-7,3.884l17.184,30.94a36.073,36.073,0,0,1,4.537,17.478V468H164.333a4,4,0,1,0,0,8h31.321l12,8H152.865V352a4,4,0,0,0-.358-1.655l-25.454-56A4,4,0,0,0,123.411,292H114.2a4,4,0,0,0-3.945,4.658l8.862,53.175a36.016,36.016,0,0,1-1.951,18.949L78.642,468H48.333a4,4,0,1,0,0,8H80.377L92,484H32.088L76.63,361.366a4.017,4.017,0,0,0,.183-2.044L61.1,268H136a4,4,0,0,0,0-8H59.233L30.555,173.966A19.723,19.723,0,0,1,49.27,148H76a12,12,0,0,0,24,0h15.2a21.975,21.975,0,0,1,8.395,1.652l10.889,4.458a4,4,0,1,0,3.032-7.4L126.63,142.25A29.938,29.938,0,0,0,115.2,140H100v-4.527A16.014,16.014,0,0,0,112,120V103.473A16.014,16.014,0,0,0,124,88V80a4,4,0,0,0-4-4H90A22.025,22.025,0,0,0,68,98v18a12.02,12.02,0,0,0,8,11.314V140H49.27a27.723,27.723,0,0,0-26.305,36.5l29.493,88.482,16.29,94.655-46.128,127A4,4,0,0,0,26.38,492h78.485a4,4,0,0,0,2.268-7.3L86.3,470.368l38.318-98.69a44.018,44.018,0,0,0,2.385-23.16L118.921,300h1.914l24.03,52.867V488a4,4,0,0,0,4,4h72a4,4,0,0,0,2.219-7.328ZM76,98A14.015,14.015,0,0,1,90,84h26v4a8.009,8.009,0,0,1-8,8H92a4,4,0,0,0-4,4,11.962,11.962,0,0,1-1.53,5.881A12.044,12.044,0,0,0,76,104.686Zm4,14a3.981,3.981,0,0,1,3.407,1.9,4,4,0,0,0,5.956.975c.207-.171.7-.648.7-.648.032-.028.061-.057.09-.087A19.907,19.907,0,0,0,95.6,104H104v16a8.009,8.009,0,0,1-8,8,12.133,12.133,0,0,1-2.681-.3,4,4,0,1,0-1.775,7.8c.151.035.3.06.456.091V148a4,4,0,1,1-8,0V124a4,4,0,0,0-4-4,4,4,0,0,1,0-8Z\"></path></g></svg>				\n									<h5>\n							arbejde udført med ansvar						\n					</h5>\n				<p>Vi lover ikke mere, end vi kan holde – men vi holder det, vi lover.</p>			<h2>KONTAKT OS</h2>		<p>Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.</p>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 13:56:21', '2026-01-26 13:56:21', '', 10, 'https://mrarif.me/cpnordic/?p=564', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(565, 1, '2026-01-26 13:56:22', '2026-01-26 13:56:22', '<h1>CP NORDIC ApS</h1>					<h4>Byggeri – Tømrerarbejde og tagdækning</h4>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle ANMELDELSER\n					</a>\n					<h2>HVORFOR VÆLGE CP NORDIC ApS?</h2>		<p>Når du vælger CP NORDIC ApS, får du:</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 450 450\" width=\"512\"><g><g><path d=\"m225 165.2c-25.9 0-48.9-18.8-53.3-45.2-2.4-14.2.9-28.6 9.3-40.3 8.4-11.8 20.9-19.5 35.1-21.9 29.4-4.9 57.3 15 62.2 44.5 4.9 29.4-15 57.3-44.4 62.2-3 .5-6 .7-8.9.7zm-7.6-99.8c-12.2 2-22.9 8.7-30.1 18.8s-10.1 22.4-8 34.6c3.8 22.7 23.5 38.8 45.7 38.8 2.5 0 5.1-.2 7.6-.6 25.2-4.2 42.3-28.1 38.1-53.4s-28.1-42.4-53.3-38.2z\"></path><path d=\"m255.2 115c-2.1 0-3.8-1.7-3.8-3.8 0-14.6-11.8-26.4-26.4-26.4-2.1 0-3.8-1.7-3.8-3.8s1.7-3.8 3.8-3.8c18.8 0 34.1 15.3 34.1 34.1 0 2-1.8 3.7-3.9 3.7z\"></path><path d=\"m236.1 203h-22.2c-2.1 0-3.8-1.7-3.8-3.8v-14.1c-3.1-.6-6.1-1.4-9.1-2.4l-7 12.2c-1.1 1.8-3.4 2.5-5.3 1.4l-19.2-11.1c-.9-.5-1.5-1.4-1.8-2.3-.3-1-.1-2 .4-2.9l7-12.1c-2.4-2.1-4.6-4.3-6.7-6.6l-12.1 7c-1.8 1.1-4.2.4-5.2-1.4l-11.1-19.2c-1.1-1.8-.4-4.2 1.4-5.2l11.9-6.8c-1-3-1.9-6.1-2.6-9.3h-13.7c-2.1 0-3.8-1.7-3.8-3.8v-22.2c0-2.1 1.7-3.8 3.8-3.8h13.4c.6-3.2 1.4-6.4 2.4-9.5l-11.5-6.6c-1.8-1.1-2.5-3.4-1.4-5.3l11.1-19.6c.5-.9 1.4-1.5 2.3-1.8s2-.1 2.9.4l11.3 6.6c2.2-2.5 4.5-4.8 7-7l-6.5-11.3c-.5-.9-.6-1.9-.4-2.9.3-1 .9-1.8 1.8-2.3l19.2-11.1c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l6.4 11.2c3.1-1.1 6.4-1.9 9.7-2.6v-13c0-2.1 1.7-3.8 3.8-3.8h22.2c2.1 0 3.8 1.7 3.8 3.8v12.8c3.3.7 6.5 1.5 9.7 2.6l6.5-11.2c.5-.9 1.4-1.5 2.3-1.8 1-.3 2-.1 2.9.4l19.2 11.1c.9.5 1.5 1.3 1.8 2.3s.1 2-.4 2.9l-6.5 11.3c2.5 2.2 4.8 4.5 7 7.1l11.3-6.6c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l11.1 19.2c1.1 1.8.4 4.2-1.4 5.3l-11.5 6.6c1 3.1 1.8 6.3 2.5 9.5h13.6c2.1 0 3.8 1.7 3.8 3.8v22.2c0 2.1-1.7 3.8-3.8 3.8h-13.6c-.6 3.1-1.5 6.2-2.5 9.3l11.9 6.8c1.8 1.1 2.5 3.4 1.4 5.2l-11.2 19.5c-1.1 1.8-3.4 2.5-5.2 1.4l-12-7c-2.1 2.4-4.4 4.6-6.7 6.6l7 12.1c.5.9.6 1.9.4 2.9s-.9 1.8-1.8 2.3l-19.2 11.1c-1.8 1.1-4.2.4-5.2-1.4l-7-12.2c-3 1-6 1.8-9.1 2.4v14.1c-.2 2.3-2 4-4.1 4zm-18.4-7.7h14.5v-13.5c0-1.9 1.4-3.5 3.3-3.8 4.7-.7 9.4-2 13.8-3.7 1.8-.7 3.8 0 4.7 1.7l6.7 11.6 12.6-7.3-6.7-11.6c-1-1.6-.5-3.7.9-4.9 3.7-3 7.2-6.4 10.2-10.1 1.2-1.5 3.3-1.8 4.9-.9l11.5 6.6 7.3-12.6-11.3-6.5c-1.6-.9-2.4-3-1.6-4.7 1.8-4.5 3.1-9.2 3.9-14 .3-1.9 1.9-3.2 3.8-3.2h13v-14.6h-12.8c-1.9 0-3.5-1.4-3.8-3.3-.7-4.8-2-9.6-3.7-14.2-.7-1.8 0-3.7 1.7-4.7l10.9-6.3-7.3-12.6-10.8 6.3c-1.6.9-3.7.6-4.9-.9-3.1-3.9-6.6-7.4-10.4-10.6-1.5-1.2-1.9-3.3-.9-4.9l6.2-10.7-12.6-7.3-6.1 10.6c-1 1.6-3 2.3-4.7 1.7-4.6-1.8-9.5-3.1-14.4-3.9-1.9-.3-3.3-1.9-3.3-3.8v-12.2h-14.5v12.3c0 1.9-1.4 3.5-3.3 3.8-5 .8-9.8 2.1-14.4 3.9-1.8.7-3.8 0-4.7-1.7l-6.1-10.6-12.6 7.3 6.2 10.7c.9 1.6.6 3.7-.9 4.9-3.9 3.1-7.4 6.7-10.4 10.6-1.2 1.5-3.3 1.9-4.9.9l-10.8-6.3-7.3 12.6 10.9 6.3c1.6.9 2.3 2.9 1.7 4.7-1.7 4.6-3 9.4-3.7 14.2-.3 1.9-1.9 3.3-3.8 3.3h-12.8v14.5h13c1.9 0 3.5 1.4 3.8 3.2.8 4.8 2.1 9.5 3.9 14 .7 1.8 0 3.8-1.6 4.7l-11.3 6.5 7.3 12.6 11.5-6.6c1.6-.9 3.7-.6 4.9.9 3 3.7 6.5 7.1 10.3 10.1 1.5 1.2 1.9 3.3.9 4.9l-6.7 11.6 12.6 7.3 6.7-11.6c.9-1.6 2.9-2.3 4.7-1.7 4.5 1.7 9.1 2.9 13.8 3.7 1.9.3 3.3 1.9 3.3 3.8z\"></path></g><g><g><g><path d=\"m45.3 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m153.9 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path></g><g><path d=\"m189.3 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.2c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c0 2.1-1.7 3.8-3.8 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m73.3 326.4c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m126 326.4c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m99.7 325.6c-.6 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4s4.1 1.1 4.4 3.2c2.4 16.5 12.3 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m50.2 266.6c-.1 0-.2 0-.3 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.7 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-8.9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.5 2.2zm81.8-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13.1-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.4-.7 2.3-.7z\"></path></g></g></g><g><g><path d=\"m296.1 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m404.7 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path></g><g><path d=\"m440 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.1c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c.2 2.1-1.6 3.8-3.7 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m324 326.3c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m376.7 326.3c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m350.4 325.6c-.5 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4 2.1-.3 4 1.1 4.4 3.2 2.4 16.5 12.4 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m301 266.6c-.1 0-.2 0-.4 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.6 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.4 2.2zm81.7-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.5-.7 2.3-.7z\"></path></g></g></g></g></g></svg>				\n									<h5>\n							et ungt og engageret team						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"496pt\" viewBox=\"0 0 496 496\" width=\"496pt\"><path d=\"m440 328h-28.207031c5.078125-6.703125 8.207031-14.960938 8.207031-24 0-8.824219-7.175781-16-16-16h-12v-19.960938c59.574219-14.445312 104-68.085937 104-132.039062 0-74.992188-61.007812-136-136-136s-136 61.007812-136 136c0 63.953125 44.425781 117.59375 104 132.039062v19.960938h-8.449219c-6.167969 0-12.359375 1.464844-17.886719 4.214844l-50.480468 25.25c-3.320313 1.664062-7.03125 2.535156-10.734375 2.535156h-40.449219v-16h-104v16h56v56h16v-56h16v128h-16v-56h-16v56h-56v16h104v-16h40.449219c3.703125 0 7.414062.871094 10.734375 2.527344l34.488281 17.25c5.519531 2.757812 11.710937 4.222656 17.878906 4.222656h24.449219v24h64v-24h48c13.230469 0 24-10.769531 24-24 0-6.167969-2.40625-11.742188-6.238281-16 3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16 0-13.230469-10.769531-24-24-24zm8 24c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm-208-280c0-66.167969 53.832031-120 120-120s120 53.832031 120 120-53.832031 120-120 120-120-53.832031-120-120zm104 134.976562c5.257812.617188 10.574219 1.023438 16 1.023438s10.742188-.40625 16-1.023438v17.023438h-32zm-40.449219 185.023438c-3.703125 0-7.414062-.871094-10.734375-2.527344l-34.488281-17.25c-5.519531-2.757812-11.710937-4.222656-17.878906-4.222656h-40.449219v-96h40.449219c6.167969 0 12.359375-1.464844 17.886719-4.214844l50.480468-25.25c3.320313-1.664062 7.03125-2.535156 10.734375-2.535156h84.449219c0 13.230469-10.769531 24-24 24h-48.28125l-23.863281 35.808594c-6.101563 9.160156-14.527344 16.589844-24.367188 21.503906-8.753906 4.375-18.542969 6.6875-28.320312 6.6875h-15.167969v16h15.167969c12.246093 0 24.519531-2.894531 35.472656-8.375 12.328125-6.160156 22.878906-15.480469 30.527344-26.945312l6.832031-10.253907v93.574219zm40.449219 24v-136h17.472656c-.898437 2.511719-1.472656 5.183594-1.472656 8 0 6.167969 2.40625 11.742188 6.238281 16-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16 0 10.414062 6.710938 19.214844 16 22.527344v9.472656zm96-24h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8s-3.59375 8-8 8zm0 0\"></path><path d=\"m394.878906 73.007812-7.757812 13.984376c17.816406 9.878906 28.878906 28.664062 28.878906 49.007812h16c0-26.160156-14.222656-50.296875-37.121094-62.992188zm0 0\"></path><path d=\"m360 80c4.734375 0 9.449219.59375 14.007812 1.769531l3.976563-15.503906c-5.855469-1.496094-11.90625-2.265625-17.984375-2.265625zm0 0\"></path><path d=\"m360 48c48.519531 0 88 39.480469 88 88 0 20.753906-7.398438 40.910156-20.832031 56.785156l12.207031 10.34375c15.882812-18.761718 24.625-42.601562 24.625-67.128906 0-57.34375-46.65625-104-104-104-24.527344 0-48.367188 8.753906-67.128906 24.632812l10.335937 12.199219c15.871094-13.433593 36.039063-20.832031 56.792969-20.832031zm0 0\"></path><path d=\"m427.128906 215.367188-10.335937-12.199219c-15.871094 13.433593-36.039063 20.832031-56.792969 20.832031-48.519531 0-88-39.480469-88-88 0-20.753906 7.398438-40.910156 20.832031-56.785156l-12.207031-10.34375c-15.882812 18.761718-24.625 42.601562-24.625 67.128906 0 57.34375 46.65625 104 104 104 24.527344 0 48.367188-8.753906 67.128906-24.632812zm0 0\"></path><path d=\"m121.214844 165.640625c4.953125-1.375 9.695312-3.34375 14.183594-5.878906l9.769531 4.886719 19.472656-19.480469-4.886719-9.769531c2.535156-4.496094 4.503906-9.230469 5.886719-14.183594l10.359375-3.445313v-27.53125l-10.351562-3.453125c-1.375-4.953125-3.34375-9.707031-5.886719-14.183594l4.886719-9.777343-19.472657-19.472657-9.769531 4.886719c-4.484375-2.535156-9.230469-4.503906-14.183594-5.878906l-3.453125-10.359375h-27.539062l-3.445313 10.359375c-4.953125 1.375-9.695312 3.34375-14.183594 5.878906l-9.777343-4.886719-19.472657 19.472657 4.886719 9.777343c-2.535156 4.488282-4.503906 9.230469-5.886719 14.183594l-10.351562 3.445313v27.53125l10.351562 3.453125c1.375 4.953125 3.34375 9.695312 5.886719 14.183594l-4.886719 9.769531 19.472657 19.480469 9.769531-4.886719c4.484375 2.535156 9.230469 4.503906 14.183594 5.878906l3.453125 10.359375h27.539062zm-12.304688-13.679687-2.679687 8.039062h-4.460938l-2.679687-8.039062-4.554688-.90625c-6.128906-1.222657-11.878906-3.605469-17.109375-7.09375l-3.867187-2.578126-7.574219 3.800782-3.160156-3.167969 3.792969-7.582031-2.578126-3.859375c-3.488281-5.222657-5.871093-10.980469-7.09375-17.109375l-.914062-4.554688-8.03125-2.679687v-4.46875l8.03125-2.671875.914062-4.554688c1.222657-6.136718 3.613282-11.886718 7.09375-17.109375l2.578126-3.859375-3.792969-7.589844 3.160156-3.160156 7.574219 3.800782 3.867187-2.578126c5.222657-3.488281 10.980469-5.863281 17.109375-7.09375l4.554688-.90625 2.679687-8.039062h4.460938l2.679687 8.039062 4.554688.90625c6.128906 1.222657 11.878906 3.605469 17.109375 7.09375l3.867187 2.578126 7.574219-3.800782 3.160156 3.160156-3.792969 7.589844 2.578126 3.859375c3.488281 5.214844 5.871093 10.972657 7.09375 17.109375l.914062 4.554688 8.03125 2.679687v4.46875l-8.03125 2.671875-.914062 4.554688c-1.222657 6.128906-3.613282 11.878906-7.09375 17.109375l-2.578126 3.859375 3.792969 7.582031-3.160156 3.167969-7.574219-3.800782-3.867187 2.578126c-5.222657 3.488281-10.980469 5.863281-17.109375 7.09375zm0 0\"></path><path d=\"m104 72c-17.648438 0-32 14.351562-32 32s14.351562 32 32 32 32-14.351562 32-32-14.351562-32-32-32zm0 48c-8.824219 0-16-7.175781-16-16s7.175781-16 16-16 16 7.175781 16 16-7.175781 16-16 16zm0 0\"></path><path d=\"m160 248v-40h48v-208h-208v208h106.664062zm-144-232h176v176h-48v24l-32-24h-96zm0 0\"></path><path d=\"m0 272h16v16h-16zm0 0\"></path><path d=\"m32 272h16v16h-16zm0 0\"></path><path d=\"m64 272h16v16h-16zm0 0\"></path><path d=\"m32 304h16v16h-16zm0 0\"></path><path d=\"m64 304h16v16h-16zm0 0\"></path><path d=\"m0 480h16v16h-16zm0 0\"></path><path d=\"m32 480h16v16h-16zm0 0\"></path><path d=\"m64 480h16v16h-16zm0 0\"></path><path d=\"m32 448h16v16h-16zm0 0\"></path><path d=\"m64 448h16v16h-16zm0 0\"></path></svg>				\n									<h5>\n							fokus på kvalitet og detaljer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m469.12 408.93-67.26-33.63v-22.13c10.71-7.69 18.6-19.07 21.78-32.27h5.28c8.81 0 15.98-7.17 15.98-15.98v-5.29c0-6.35-3.74-11.84-9.12-14.41 5.19-18.64-1.65-39.76-19.44-59.78-12.58-14.16-30.67-22.27-49.62-22.27-18.93 0-37.01 8.12-49.59 22.27-13.38 15.05-20.95 41.01-14.03 59.62-5.56 2.5-9.45 8.09-9.45 14.57v5.29c0 8.81 7.17 15.98 15.98 15.98h5.55c3.16 13.09 10.94 24.39 21.51 32.08v22.32l-67.26 33.63c-16.7 5.87-27.89 21.6-27.89 39.28v41.63c0 3.31 2.69 6 6 6h243.46c3.31 0 6-2.69 6-6v-41.63c0-17.68-11.19-33.41-27.88-39.28zm-62.24-17.7-15.83 27.66-13.29-13.29 19.29-19.29zm-37.61 5.88-20.59-20.58v-16.91c6.41 2.57 13.4 4.01 20.72 4.01 7.22 0 14.11-1.39 20.45-3.9v16.8zm63.63-97.48v5.29c0 2.16-1.82 3.98-3.98 3.98h-3.74c.01-.36.03-.71.03-1.07v-12.18h3.71c2.15-.01 3.98 1.82 3.98 3.98zm-119.29 8.2v1.07h-3.98c-2.16 0-3.98-1.82-3.98-3.98v-5.29c0-2.16 1.82-3.98 3.98-3.98l3.98.22zm1.95-24.19c-7.33-13.69-.89-37.39 10.53-50.24 10.31-11.6 25.12-18.25 40.63-18.25 15.52 0 30.34 6.65 40.65 18.25 8.43 9.48 21.3 27.59 17.4 46.39-5.66-.35-10.67-2.55-14.4-6.36-5.37-5.49-7.72-14-6.63-23.94.29-2.62-1.17-5.13-3.6-6.17s-5.25-.37-6.95 1.65c-19.33 22.92-45.95 36.76-73.9 38.68h-3.73zm10.05 24.19v-12.73c24.57-2.92 47.92-14.05 66.73-31.8 1.43 7.26 4.63 13.6 9.45 18.52 3.27 3.35 7.14 5.89 11.41 7.58v18.42c0 24.15-19.65 43.8-43.8 43.8s-43.79-19.64-43.79-43.79zm15.89 78.48 19.29 19.29-13.29 13.29-15.84-27.66zm3.22 97.53h-39.42v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.76v-35.63c0-12.68 8.1-23.95 20.15-28.05.26-.09.51-.19.75-.31l46.47-23.23 20.07 35.06c.93 1.62 2.56 2.72 4.41 2.97.27.04.53.05.79.05 1.58 0 3.11-.62 4.24-1.76l.14-.14zm12.08 0 7.41-64.69 5.06-5.06 4.84 4.84 7.86 64.92h-25.17zm128.2 0h-39.76v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.18l-6.2-51.17.25.25c1.13 1.13 2.66 1.76 4.24 1.76.26 0 .53-.02.79-.05 1.85-.25 3.48-1.34 4.41-2.97l20.07-35.06 46.47 23.23c.24.12.49.23.75.31 12.05 4.1 20.15 15.38 20.15 28.05v35.65zm-67.04-346.65h-10.84l28.38 39.84 28.38-39.84h-10.84c-3.31 0-6-2.69-6-6v-64.58h-98.7c-3.31 0-6-2.69-6-6s2.69-6 6-6h104.7c3.31 0 6 2.69 6 6v64.58h16.48c2.25 0 4.3 1.25 5.33 3.25s.86 4.4-.45 6.23l-40.02 56.18c-1.13 1.58-2.95 2.52-4.89 2.52s-3.76-.94-4.89-2.52l-40.02-56.18c-1.3-1.83-1.48-4.23-.45-6.23s3.09-3.25 5.33-3.25h16.48v-23.5h-65.38c-3.31 0-6-2.69-6-6s2.69-6 6-6h71.38c3.31 0 6 2.69 6 6v35.5c.02 3.31-2.67 6-5.98 6zm-118.44 50.65v-133.26c0-21.18-17.23-38.41-38.41-38.41h-207.7c-21.18-.01-38.41 17.23-38.41 38.41v133.26c0 21.18 17.23 38.41 38.41 38.41h105.8l64.8 55.11c1.11.94 2.49 1.43 3.89 1.43.85 0 1.71-.18 2.52-.55 2.12-.98 3.48-3.11 3.48-5.45v-50.54h27.21c21.18 0 38.41-17.23 38.41-38.41zm-71.62 26.41c-3.31 0-6 2.69-6 6v43.56l-56.59-48.13c-1.08-.92-2.46-1.43-3.89-1.43h-108.01c-14.56 0-26.41-11.85-26.41-26.41v-133.26c0-14.56 11.85-26.41 26.41-26.41h207.69c14.56 0 26.41 11.85 26.41 26.41v133.26c0 14.56-11.85 26.41-26.41 26.41zm-156.34-87.87h56.97c3.31 0 6-2.69 6-6v-39.2l8.55-8.55c2.34-2.34 2.34-6.14 0-8.49-2.34-2.34-6.14-2.34-8.48 0l-.7.7c-.98-1.97-3.01-3.32-5.36-3.32h-56.98c-3.31 0-6 2.69-6 6v52.85c0 3.32 2.69 6.01 6 6.01zm6-52.86h44.97v2.69l-18.16 18.16-8.84-8.84c-2.34-2.34-6.14-2.34-8.49 0-2.34 2.34-2.34 6.14 0 8.49l13.08 13.08c1.17 1.17 2.71 1.76 4.24 1.76s3.07-.59 4.24-1.76l13.92-13.92v21.2h-44.96zm173.62 3.08c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 31.92c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 36.52c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.68 5.99 6zm0 31.92c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.69 5.99 6zm-119.36 165.01h10.84l-28.38-39.84-28.38 39.84h10.84c3.31 0 6 2.69 6 6v64.58h98.7c3.31 0 6 2.69 6 6s-2.69 6-6 6h-104.69c-3.31 0-6-2.69-6-6v-64.58h-16.48c-2.25 0-4.3-1.25-5.33-3.25s-.86-4.4.45-6.23l40.02-56.18c1.13-1.58 2.95-2.52 4.89-2.52s3.76.94 4.89 2.52l40.02 56.18c1.3 1.83 1.48 4.23.45 6.23s-3.09 3.25-5.33 3.25h-16.48v23.5h65.38c3.31 0 6 2.69 6 6s-2.69 6-6 6h-71.38c-3.31 0-6-2.69-6-6v-35.5c-.03-3.31 2.66-6 5.97-6z\"></path></svg>				\n									<h5>\n							ærlig<br> rådgivning						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 510 510\"><path d=\"m192.036 385.845c-4.787-46.972-19.459-64.336-30.658-82.352-8.672-13.951-15.5-28.245-15.5-54.252 0-60.242 48.865-109.109 109.135-109.109 60.242 0 109.109 48.866 109.109 109.109 0 26.007-6.828 40.301-15.5 54.252-11.199 18.016-25.871 35.38-30.658 82.352 9.985 2.864 17.345 12.101 17.345 22.975v36.44c0 13.109-10.747 23.866-23.893 23.866h-10.334v9.945c0 12.588-10.341 22.929-22.93 22.929h-46.304c-12.589 0-22.93-10.341-22.93-22.929v-9.945h-10.334c-13.146 0-23.893-10.757-23.893-23.866v-36.44c0-10.874 7.36-20.111 17.345-22.975zm111.948-.917c4.199-42.194 15.78-62.332 26.488-79.049 10.147-15.842 19.65-28.207 19.65-56.638 0-52.513-42.597-95.109-95.109-95.109-52.537 0-95.135 42.596-95.135 95.109 0 28.431 9.503 40.796 19.65 56.638 10.708 16.717 22.289 36.855 26.488 79.049zm2.554-78.61c-1.175 13.701-11.985 24.191-24.783 24.191-13.527 0-24.862-12.086-24.862-26.673v-99.328c0-14.12 11.335-26.673 24.862-26.673 11.309 0 21.031 8.139 23.975 19.497 9.12 3.904 15.688 13.438 15.688 24.78 0 1.153-.068 2.289-.201 3.403 5.078 5.326 8.283 12.802 8.283 21.117 0 6.39-1.889 12.262-5.06 17.053 1.996 4.099 3.13 8.773 3.13 13.76 0 14.1-9.065 25.697-21.032 28.873zm-16.452-109.977c-1.964-2.729-4.916-4.506-8.331-4.506-6.192 0-10.862 6.21-10.862 12.673v99.328c0 6.677 4.67 12.673 10.862 12.673 5.516 0 9.822-4.614 10.717-10.425-4.709-1.416-8.923-4.144-12.279-7.814-2.607-2.852-2.409-7.283.443-9.89 2.851-2.607 7.282-2.408 9.889.443 2.416 2.642 5.72 4.356 9.402 4.356 7.733 0 13.643-7.218 13.643-15.734s-5.91-15.734-13.643-15.734c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7 5.352 0 10.388 1.655 14.658 4.533.593-1.743.915-3.634.915-5.612 0-2.11-.366-4.128-1.036-5.972-.769.858-1.588 1.66-2.453 2.397-2.94 2.507-7.361 2.156-9.869-.784-2.507-2.939-2.155-7.361.784-9.868 2.773-2.365 4.492-6.122 4.492-10.293 0-6.072-3.705-11.374-8.898-12.467-.154-.023-.307-.052-.458-.085-.499-.08-1.01-.121-1.532-.121-2.947 0-5.591 1.389-7.515 3.525-2.585 2.87-7.015 3.101-9.886.515-2.87-2.586-3.101-7.015-.515-9.886 3.111-3.453 7.059-5.988 11.472-7.252zm-104.526 67.344c-3.171-4.791-5.06-10.663-5.06-17.053 0-8.307 3.198-15.777 8.284-21.104-.133-1.118-.202-2.258-.202-3.416 0-11.354 6.582-20.897 15.717-24.792 2.948-11.354 12.67-19.485 23.946-19.485 13.56 0 24.888 12.555 24.888 26.673v99.328c0 14.585-11.328 26.673-24.888 26.673-12.765 0-23.578-10.484-24.757-24.184-11.98-3.166-21.058-14.769-21.058-28.88 0-4.987 1.134-9.661 3.13-13.76zm9.982-23.036c-.675 1.847-1.042 3.869-1.042 5.983 0 1.978.322 3.869.915 5.612 4.27-2.878 9.306-4.533 14.658-4.533 3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7-7.733 0-13.643 7.218-13.643 15.734s5.91 15.734 13.643 15.734c3.682 0 6.986-1.714 9.402-4.356 2.607-2.851 7.038-3.05 9.889-.443 2.852 2.607 3.05 7.038.443 9.89-3.35 3.664-7.556 6.389-12.255 7.807.891 5.813 5.192 10.432 10.693 10.432 6.21 0 10.888-5.993 10.888-12.673v-99.328c0-6.466-4.678-12.673-10.888-12.673-3.404 0-6.349 1.777-8.309 4.507 4.421 1.264 8.367 3.8 11.476 7.251 2.586 2.871 2.355 7.3-.516 9.886-2.87 2.586-7.3 2.355-9.886-.515-1.926-2.138-4.574-3.525-7.54-3.525-.493 0-.976.037-1.448.108-.196.045-.395.082-.596.11-5.165 1.118-8.844 6.404-8.844 12.455 0 1.243.153 2.45.442 3.594.101.284.183.572.246.862.748 2.326 2.071 4.346 3.814 5.823 2.947 2.498 3.311 6.919.813 9.866s-6.919 3.312-9.866.814c-.878-.745-1.71-1.554-2.489-2.422zm3.042 158.279c-5.442 0-9.893 4.451-9.893 9.892v36.44c0 5.423 4.454 9.866 9.893 9.866h17.334c3.866 0 7 3.134 7 7v16.945c0 4.902 4.027 8.929 8.93 8.929h46.304c4.903 0 8.93-4.027 8.93-8.929v-16.945c0-3.866 3.134-7 7-7h17.334c5.439 0 9.893-4.443 9.893-9.866v-36.44c0-5.441-4.451-9.892-9.893-9.892zm63.416-314.093 2.907-5.412c1.828-3.403 6.075-4.683 9.479-2.854 3.403 1.828 4.682 6.075 2.854 9.479l-16.073 29.925c-1.22 2.271-3.589 3.688-6.167 3.688s-4.947-1.417-6.167-3.688l-16.073-29.925c-1.828-3.404-.549-7.651 2.854-9.479 3.404-1.829 7.651-.549 9.479 2.854l2.907 5.412v-69.835c0-3.863 3.137-7 7-7s7 3.137 7 7zm-132.198 54.758-49.381-49.381c-2.732-2.731-2.732-7.167 0-9.899s7.168-2.732 9.9 0l49.38 49.38-1.771-5.881c-1.114-3.7.985-7.608 4.684-8.722 3.7-1.114 7.607.985 8.721 4.685l9.796 32.526c.743 2.468.069 5.145-1.753 6.968-1.823 1.823-4.5 2.496-6.969 1.753l-32.526-9.795c-3.699-1.114-5.798-5.022-4.684-8.721s5.022-5.798 8.721-4.684zm-44.859 122.299h-69.835c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7h69.835l-5.412-2.907c-3.403-1.828-4.682-6.076-2.854-9.479 1.828-3.404 6.075-4.683 9.479-2.855l29.926 16.074c2.271 1.22 3.688 3.589 3.688 6.167 0 2.577-1.417 4.947-3.688 6.166l-29.926 16.074c-3.404 1.828-7.651.549-9.479-2.855-1.828-3.403-.549-7.651 2.854-9.479zm54.758 118.198-49.38 49.38c-2.732 2.732-7.168 2.732-9.9 0s-2.732-7.167 0-9.899l49.381-49.381-5.882 1.772c-3.699 1.114-7.607-.985-8.721-4.685-1.114-3.699.985-7.607 4.684-8.721l32.526-9.795c2.469-.743 5.146-.07 6.969 1.753 1.822 1.823 2.496 4.5 1.753 6.968l-9.796 32.527c-1.114 3.699-5.021 5.798-8.721 4.684-3.699-1.114-5.798-5.022-4.684-8.721zm240.497-240.497 5.882-1.771c3.699-1.114 7.607.985 8.721 4.684s-.985 7.607-4.684 8.721l-32.526 9.795c-2.469.743-5.146.07-6.969-1.753-1.822-1.823-2.496-4.5-1.753-6.968l9.796-32.526c1.114-3.7 5.021-5.799 8.721-4.685 3.699 1.114 5.798 5.022 4.684 8.722l-1.771 5.881 49.38-49.38c2.732-2.732 7.168-2.732 9.9 0s2.732 7.168 0 9.899zm44.859 122.299 5.412 2.906c3.403 1.828 4.682 6.076 2.854 9.479-1.828 3.404-6.075 4.683-9.479 2.855l-29.926-16.074c-2.271-1.219-3.688-3.589-3.688-6.166 0-2.578 1.417-4.947 3.688-6.167l29.926-16.074c3.404-1.828 7.651-.549 9.479 2.855 1.828 3.403.549 7.651-2.854 9.479l-5.412 2.907h69.835c3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7zm-54.758 118.198 1.771 5.882c1.114 3.699-.985 7.607-4.684 8.721-3.7 1.114-7.607-.985-8.721-4.684l-9.796-32.527c-.743-2.468-.069-5.145 1.753-6.968 1.823-1.823 4.5-2.496 6.969-1.753l32.526 9.795c3.699 1.114 5.798 5.022 4.684 8.721-1.114 3.7-5.022 5.799-8.721 4.685l-5.882-1.772 49.381 49.381c2.732 2.732 2.732 7.167 0 9.899s-7.168 2.732-9.9 0z\"></path></svg>				\n									<h5>\n							gennemtænkte løsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"outline\"><path d=\"M486.41,144A28,28,0,0,0,472,92H349.123l5.457-21.828a48.513,48.513,0,0,0-12.848-46.153A41.035,41.035,0,0,0,312.609,12H308a8.009,8.009,0,0,0-8,8V47.413l-19.233,64.112A17.376,17.376,0,0,1,268,123.539V112a4,4,0,0,0-4-4H152a4,4,0,0,0-4,4v72a4,4,0,0,0,8,0V116h72V276H156V248a4,4,0,0,0-8,0v32a4,4,0,0,0,4,4H264a4,4,0,0,0,4-4V268.5h11.168A37.07,37.07,0,0,1,305.092,279a45.025,45.025,0,0,0,31.48,12.752L440,292a27.987,27.987,0,0,0,19.369-48.2,27.987,27.987,0,0,0,16-48A28,28,0,0,0,486.41,144ZM260,276H236V116h24Zm212-88H396a4,4,0,0,0,0,8h60a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h40a20,20,0,0,1,.01,40l-103.428-.25a37.07,37.07,0,0,1-25.924-10.5,45.031,45.031,0,0,0-31.49-12.752H268V131.686a25.317,25.317,0,0,0,20.429-17.862l19.4-64.675A4,4,0,0,0,308,48V20h4.609a33.082,33.082,0,0,1,23.481,9.69,40.507,40.507,0,0,1,10.728,38.541l-6.7,26.8A4,4,0,0,0,344,100H472a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h72a20,20,0,0,1,0,40Z\"></path><path d=\"M194.5,183.243l-1.9-.217a4,4,0,0,0-4.169,2.491L184.29,195.9H135.278l-3.539-9.317a4,4,0,0,0-7.478,2.84l2.459,6.477h-8.474L68.452,156.872a4,4,0,1,0-4.935,6.3L77.6,174.209,56.961,194.48l-6.636-5.491a4,4,0,1,0-5.1,6.163L87.219,229.9a44.1,44.1,0,0,0,28.05,10.1H212a8.009,8.009,0,0,0,8-8V203.9a8.009,8.009,0,0,0-8-8h-8v-2.01A10.708,10.708,0,0,0,194.5,183.243ZM212,203.9V232H115.269a36.081,36.081,0,0,1-22.951-8.264l-29.16-24.128,20.8-20.422L114.4,203.045a4,4,0,0,0,2.468.852H187a4,4,0,0,0,3.715-2.517l3.929-9.843a2.712,2.712,0,0,1,1.356,2.35v6.01a4,4,0,0,0,4,4Z\"></path><path d=\"M223.084,484.672,200.87,469.863V346.36A44.1,44.1,0,0,0,195.327,325l-17.183-30.94a4,4,0,0,0-7,3.884l17.184,30.94a36.073,36.073,0,0,1,4.537,17.478V468H164.333a4,4,0,1,0,0,8h31.321l12,8H152.865V352a4,4,0,0,0-.358-1.655l-25.454-56A4,4,0,0,0,123.411,292H114.2a4,4,0,0,0-3.945,4.658l8.862,53.175a36.016,36.016,0,0,1-1.951,18.949L78.642,468H48.333a4,4,0,1,0,0,8H80.377L92,484H32.088L76.63,361.366a4.017,4.017,0,0,0,.183-2.044L61.1,268H136a4,4,0,0,0,0-8H59.233L30.555,173.966A19.723,19.723,0,0,1,49.27,148H76a12,12,0,0,0,24,0h15.2a21.975,21.975,0,0,1,8.395,1.652l10.889,4.458a4,4,0,1,0,3.032-7.4L126.63,142.25A29.938,29.938,0,0,0,115.2,140H100v-4.527A16.014,16.014,0,0,0,112,120V103.473A16.014,16.014,0,0,0,124,88V80a4,4,0,0,0-4-4H90A22.025,22.025,0,0,0,68,98v18a12.02,12.02,0,0,0,8,11.314V140H49.27a27.723,27.723,0,0,0-26.305,36.5l29.493,88.482,16.29,94.655-46.128,127A4,4,0,0,0,26.38,492h78.485a4,4,0,0,0,2.268-7.3L86.3,470.368l38.318-98.69a44.018,44.018,0,0,0,2.385-23.16L118.921,300h1.914l24.03,52.867V488a4,4,0,0,0,4,4h72a4,4,0,0,0,2.219-7.328ZM76,98A14.015,14.015,0,0,1,90,84h26v4a8.009,8.009,0,0,1-8,8H92a4,4,0,0,0-4,4,11.962,11.962,0,0,1-1.53,5.881A12.044,12.044,0,0,0,76,104.686Zm4,14a3.981,3.981,0,0,1,3.407,1.9,4,4,0,0,0,5.956.975c.207-.171.7-.648.7-.648.032-.028.061-.057.09-.087A19.907,19.907,0,0,0,95.6,104H104v16a8.009,8.009,0,0,1-8,8,12.133,12.133,0,0,1-2.681-.3,4,4,0,1,0-1.775,7.8c.151.035.3.06.456.091V148a4,4,0,1,1-8,0V124a4,4,0,0,0-4-4,4,4,0,0,1,0-8Z\"></path></g></svg>				\n									<h5>\n							arbejde udført med ansvar						\n					</h5>\n				<p>Vi lover ikke mere, end vi kan holde – men vi holder det, vi lover.</p>			<h2>KONTAKT OS</h2>		<p>Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.</p>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 13:56:22', '2026-01-26 13:56:22', '', 10, 'https://mrarif.me/cpnordic/?p=565', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(566, 1, '2026-01-26 13:59:34', '2026-01-26 13:59:34', '<h1>CP NORDIC ApS</h1>					<h4>Byggeri – Tømrerarbejde og tagdækning</h4>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle ANMELDELSER\n					</a>\n					<h2>HVORFOR VÆLGE CP NORDIC ApS?</h2>		<p>Når du vælger CP NORDIC ApS, får du:</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 450 450\" width=\"512\"><g><g><path d=\"m225 165.2c-25.9 0-48.9-18.8-53.3-45.2-2.4-14.2.9-28.6 9.3-40.3 8.4-11.8 20.9-19.5 35.1-21.9 29.4-4.9 57.3 15 62.2 44.5 4.9 29.4-15 57.3-44.4 62.2-3 .5-6 .7-8.9.7zm-7.6-99.8c-12.2 2-22.9 8.7-30.1 18.8s-10.1 22.4-8 34.6c3.8 22.7 23.5 38.8 45.7 38.8 2.5 0 5.1-.2 7.6-.6 25.2-4.2 42.3-28.1 38.1-53.4s-28.1-42.4-53.3-38.2z\"></path><path d=\"m255.2 115c-2.1 0-3.8-1.7-3.8-3.8 0-14.6-11.8-26.4-26.4-26.4-2.1 0-3.8-1.7-3.8-3.8s1.7-3.8 3.8-3.8c18.8 0 34.1 15.3 34.1 34.1 0 2-1.8 3.7-3.9 3.7z\"></path><path d=\"m236.1 203h-22.2c-2.1 0-3.8-1.7-3.8-3.8v-14.1c-3.1-.6-6.1-1.4-9.1-2.4l-7 12.2c-1.1 1.8-3.4 2.5-5.3 1.4l-19.2-11.1c-.9-.5-1.5-1.4-1.8-2.3-.3-1-.1-2 .4-2.9l7-12.1c-2.4-2.1-4.6-4.3-6.7-6.6l-12.1 7c-1.8 1.1-4.2.4-5.2-1.4l-11.1-19.2c-1.1-1.8-.4-4.2 1.4-5.2l11.9-6.8c-1-3-1.9-6.1-2.6-9.3h-13.7c-2.1 0-3.8-1.7-3.8-3.8v-22.2c0-2.1 1.7-3.8 3.8-3.8h13.4c.6-3.2 1.4-6.4 2.4-9.5l-11.5-6.6c-1.8-1.1-2.5-3.4-1.4-5.3l11.1-19.6c.5-.9 1.4-1.5 2.3-1.8s2-.1 2.9.4l11.3 6.6c2.2-2.5 4.5-4.8 7-7l-6.5-11.3c-.5-.9-.6-1.9-.4-2.9.3-1 .9-1.8 1.8-2.3l19.2-11.1c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l6.4 11.2c3.1-1.1 6.4-1.9 9.7-2.6v-13c0-2.1 1.7-3.8 3.8-3.8h22.2c2.1 0 3.8 1.7 3.8 3.8v12.8c3.3.7 6.5 1.5 9.7 2.6l6.5-11.2c.5-.9 1.4-1.5 2.3-1.8 1-.3 2-.1 2.9.4l19.2 11.1c.9.5 1.5 1.3 1.8 2.3s.1 2-.4 2.9l-6.5 11.3c2.5 2.2 4.8 4.5 7 7.1l11.3-6.6c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l11.1 19.2c1.1 1.8.4 4.2-1.4 5.3l-11.5 6.6c1 3.1 1.8 6.3 2.5 9.5h13.6c2.1 0 3.8 1.7 3.8 3.8v22.2c0 2.1-1.7 3.8-3.8 3.8h-13.6c-.6 3.1-1.5 6.2-2.5 9.3l11.9 6.8c1.8 1.1 2.5 3.4 1.4 5.2l-11.2 19.5c-1.1 1.8-3.4 2.5-5.2 1.4l-12-7c-2.1 2.4-4.4 4.6-6.7 6.6l7 12.1c.5.9.6 1.9.4 2.9s-.9 1.8-1.8 2.3l-19.2 11.1c-1.8 1.1-4.2.4-5.2-1.4l-7-12.2c-3 1-6 1.8-9.1 2.4v14.1c-.2 2.3-2 4-4.1 4zm-18.4-7.7h14.5v-13.5c0-1.9 1.4-3.5 3.3-3.8 4.7-.7 9.4-2 13.8-3.7 1.8-.7 3.8 0 4.7 1.7l6.7 11.6 12.6-7.3-6.7-11.6c-1-1.6-.5-3.7.9-4.9 3.7-3 7.2-6.4 10.2-10.1 1.2-1.5 3.3-1.8 4.9-.9l11.5 6.6 7.3-12.6-11.3-6.5c-1.6-.9-2.4-3-1.6-4.7 1.8-4.5 3.1-9.2 3.9-14 .3-1.9 1.9-3.2 3.8-3.2h13v-14.6h-12.8c-1.9 0-3.5-1.4-3.8-3.3-.7-4.8-2-9.6-3.7-14.2-.7-1.8 0-3.7 1.7-4.7l10.9-6.3-7.3-12.6-10.8 6.3c-1.6.9-3.7.6-4.9-.9-3.1-3.9-6.6-7.4-10.4-10.6-1.5-1.2-1.9-3.3-.9-4.9l6.2-10.7-12.6-7.3-6.1 10.6c-1 1.6-3 2.3-4.7 1.7-4.6-1.8-9.5-3.1-14.4-3.9-1.9-.3-3.3-1.9-3.3-3.8v-12.2h-14.5v12.3c0 1.9-1.4 3.5-3.3 3.8-5 .8-9.8 2.1-14.4 3.9-1.8.7-3.8 0-4.7-1.7l-6.1-10.6-12.6 7.3 6.2 10.7c.9 1.6.6 3.7-.9 4.9-3.9 3.1-7.4 6.7-10.4 10.6-1.2 1.5-3.3 1.9-4.9.9l-10.8-6.3-7.3 12.6 10.9 6.3c1.6.9 2.3 2.9 1.7 4.7-1.7 4.6-3 9.4-3.7 14.2-.3 1.9-1.9 3.3-3.8 3.3h-12.8v14.5h13c1.9 0 3.5 1.4 3.8 3.2.8 4.8 2.1 9.5 3.9 14 .7 1.8 0 3.8-1.6 4.7l-11.3 6.5 7.3 12.6 11.5-6.6c1.6-.9 3.7-.6 4.9.9 3 3.7 6.5 7.1 10.3 10.1 1.5 1.2 1.9 3.3.9 4.9l-6.7 11.6 12.6 7.3 6.7-11.6c.9-1.6 2.9-2.3 4.7-1.7 4.5 1.7 9.1 2.9 13.8 3.7 1.9.3 3.3 1.9 3.3 3.8z\"></path></g><g><g><g><path d=\"m45.3 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m153.9 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path></g><g><path d=\"m189.3 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.2c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c0 2.1-1.7 3.8-3.8 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m73.3 326.4c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m126 326.4c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m99.7 325.6c-.6 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4s4.1 1.1 4.4 3.2c2.4 16.5 12.3 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m50.2 266.6c-.1 0-.2 0-.3 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.7 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-8.9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.5 2.2zm81.8-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13.1-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.4-.7 2.3-.7z\"></path></g></g></g><g><g><path d=\"m296.1 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m404.7 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path></g><g><path d=\"m440 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.1c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c.2 2.1-1.6 3.8-3.7 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m324 326.3c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m376.7 326.3c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m350.4 325.6c-.5 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4 2.1-.3 4 1.1 4.4 3.2 2.4 16.5 12.4 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m301 266.6c-.1 0-.2 0-.4 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.6 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.4 2.2zm81.7-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.5-.7 2.3-.7z\"></path></g></g></g></g></g></svg>				\n									<h5>\n							et ungt og engageret team						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"496pt\" viewBox=\"0 0 496 496\" width=\"496pt\"><path d=\"m440 328h-28.207031c5.078125-6.703125 8.207031-14.960938 8.207031-24 0-8.824219-7.175781-16-16-16h-12v-19.960938c59.574219-14.445312 104-68.085937 104-132.039062 0-74.992188-61.007812-136-136-136s-136 61.007812-136 136c0 63.953125 44.425781 117.59375 104 132.039062v19.960938h-8.449219c-6.167969 0-12.359375 1.464844-17.886719 4.214844l-50.480468 25.25c-3.320313 1.664062-7.03125 2.535156-10.734375 2.535156h-40.449219v-16h-104v16h56v56h16v-56h16v128h-16v-56h-16v56h-56v16h104v-16h40.449219c3.703125 0 7.414062.871094 10.734375 2.527344l34.488281 17.25c5.519531 2.757812 11.710937 4.222656 17.878906 4.222656h24.449219v24h64v-24h48c13.230469 0 24-10.769531 24-24 0-6.167969-2.40625-11.742188-6.238281-16 3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16 0-13.230469-10.769531-24-24-24zm8 24c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm-208-280c0-66.167969 53.832031-120 120-120s120 53.832031 120 120-53.832031 120-120 120-120-53.832031-120-120zm104 134.976562c5.257812.617188 10.574219 1.023438 16 1.023438s10.742188-.40625 16-1.023438v17.023438h-32zm-40.449219 185.023438c-3.703125 0-7.414062-.871094-10.734375-2.527344l-34.488281-17.25c-5.519531-2.757812-11.710937-4.222656-17.878906-4.222656h-40.449219v-96h40.449219c6.167969 0 12.359375-1.464844 17.886719-4.214844l50.480468-25.25c3.320313-1.664062 7.03125-2.535156 10.734375-2.535156h84.449219c0 13.230469-10.769531 24-24 24h-48.28125l-23.863281 35.808594c-6.101563 9.160156-14.527344 16.589844-24.367188 21.503906-8.753906 4.375-18.542969 6.6875-28.320312 6.6875h-15.167969v16h15.167969c12.246093 0 24.519531-2.894531 35.472656-8.375 12.328125-6.160156 22.878906-15.480469 30.527344-26.945312l6.832031-10.253907v93.574219zm40.449219 24v-136h17.472656c-.898437 2.511719-1.472656 5.183594-1.472656 8 0 6.167969 2.40625 11.742188 6.238281 16-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16 0 10.414062 6.710938 19.214844 16 22.527344v9.472656zm96-24h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8s-3.59375 8-8 8zm0 0\"></path><path d=\"m394.878906 73.007812-7.757812 13.984376c17.816406 9.878906 28.878906 28.664062 28.878906 49.007812h16c0-26.160156-14.222656-50.296875-37.121094-62.992188zm0 0\"></path><path d=\"m360 80c4.734375 0 9.449219.59375 14.007812 1.769531l3.976563-15.503906c-5.855469-1.496094-11.90625-2.265625-17.984375-2.265625zm0 0\"></path><path d=\"m360 48c48.519531 0 88 39.480469 88 88 0 20.753906-7.398438 40.910156-20.832031 56.785156l12.207031 10.34375c15.882812-18.761718 24.625-42.601562 24.625-67.128906 0-57.34375-46.65625-104-104-104-24.527344 0-48.367188 8.753906-67.128906 24.632812l10.335937 12.199219c15.871094-13.433593 36.039063-20.832031 56.792969-20.832031zm0 0\"></path><path d=\"m427.128906 215.367188-10.335937-12.199219c-15.871094 13.433593-36.039063 20.832031-56.792969 20.832031-48.519531 0-88-39.480469-88-88 0-20.753906 7.398438-40.910156 20.832031-56.785156l-12.207031-10.34375c-15.882812 18.761718-24.625 42.601562-24.625 67.128906 0 57.34375 46.65625 104 104 104 24.527344 0 48.367188-8.753906 67.128906-24.632812zm0 0\"></path><path d=\"m121.214844 165.640625c4.953125-1.375 9.695312-3.34375 14.183594-5.878906l9.769531 4.886719 19.472656-19.480469-4.886719-9.769531c2.535156-4.496094 4.503906-9.230469 5.886719-14.183594l10.359375-3.445313v-27.53125l-10.351562-3.453125c-1.375-4.953125-3.34375-9.707031-5.886719-14.183594l4.886719-9.777343-19.472657-19.472657-9.769531 4.886719c-4.484375-2.535156-9.230469-4.503906-14.183594-5.878906l-3.453125-10.359375h-27.539062l-3.445313 10.359375c-4.953125 1.375-9.695312 3.34375-14.183594 5.878906l-9.777343-4.886719-19.472657 19.472657 4.886719 9.777343c-2.535156 4.488282-4.503906 9.230469-5.886719 14.183594l-10.351562 3.445313v27.53125l10.351562 3.453125c1.375 4.953125 3.34375 9.695312 5.886719 14.183594l-4.886719 9.769531 19.472657 19.480469 9.769531-4.886719c4.484375 2.535156 9.230469 4.503906 14.183594 5.878906l3.453125 10.359375h27.539062zm-12.304688-13.679687-2.679687 8.039062h-4.460938l-2.679687-8.039062-4.554688-.90625c-6.128906-1.222657-11.878906-3.605469-17.109375-7.09375l-3.867187-2.578126-7.574219 3.800782-3.160156-3.167969 3.792969-7.582031-2.578126-3.859375c-3.488281-5.222657-5.871093-10.980469-7.09375-17.109375l-.914062-4.554688-8.03125-2.679687v-4.46875l8.03125-2.671875.914062-4.554688c1.222657-6.136718 3.613282-11.886718 7.09375-17.109375l2.578126-3.859375-3.792969-7.589844 3.160156-3.160156 7.574219 3.800782 3.867187-2.578126c5.222657-3.488281 10.980469-5.863281 17.109375-7.09375l4.554688-.90625 2.679687-8.039062h4.460938l2.679687 8.039062 4.554688.90625c6.128906 1.222657 11.878906 3.605469 17.109375 7.09375l3.867187 2.578126 7.574219-3.800782 3.160156 3.160156-3.792969 7.589844 2.578126 3.859375c3.488281 5.214844 5.871093 10.972657 7.09375 17.109375l.914062 4.554688 8.03125 2.679687v4.46875l-8.03125 2.671875-.914062 4.554688c-1.222657 6.128906-3.613282 11.878906-7.09375 17.109375l-2.578126 3.859375 3.792969 7.582031-3.160156 3.167969-7.574219-3.800782-3.867187 2.578126c-5.222657 3.488281-10.980469 5.863281-17.109375 7.09375zm0 0\"></path><path d=\"m104 72c-17.648438 0-32 14.351562-32 32s14.351562 32 32 32 32-14.351562 32-32-14.351562-32-32-32zm0 48c-8.824219 0-16-7.175781-16-16s7.175781-16 16-16 16 7.175781 16 16-7.175781 16-16 16zm0 0\"></path><path d=\"m160 248v-40h48v-208h-208v208h106.664062zm-144-232h176v176h-48v24l-32-24h-96zm0 0\"></path><path d=\"m0 272h16v16h-16zm0 0\"></path><path d=\"m32 272h16v16h-16zm0 0\"></path><path d=\"m64 272h16v16h-16zm0 0\"></path><path d=\"m32 304h16v16h-16zm0 0\"></path><path d=\"m64 304h16v16h-16zm0 0\"></path><path d=\"m0 480h16v16h-16zm0 0\"></path><path d=\"m32 480h16v16h-16zm0 0\"></path><path d=\"m64 480h16v16h-16zm0 0\"></path><path d=\"m32 448h16v16h-16zm0 0\"></path><path d=\"m64 448h16v16h-16zm0 0\"></path></svg>				\n									<h5>\n							fokus på kvalitet og detaljer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m469.12 408.93-67.26-33.63v-22.13c10.71-7.69 18.6-19.07 21.78-32.27h5.28c8.81 0 15.98-7.17 15.98-15.98v-5.29c0-6.35-3.74-11.84-9.12-14.41 5.19-18.64-1.65-39.76-19.44-59.78-12.58-14.16-30.67-22.27-49.62-22.27-18.93 0-37.01 8.12-49.59 22.27-13.38 15.05-20.95 41.01-14.03 59.62-5.56 2.5-9.45 8.09-9.45 14.57v5.29c0 8.81 7.17 15.98 15.98 15.98h5.55c3.16 13.09 10.94 24.39 21.51 32.08v22.32l-67.26 33.63c-16.7 5.87-27.89 21.6-27.89 39.28v41.63c0 3.31 2.69 6 6 6h243.46c3.31 0 6-2.69 6-6v-41.63c0-17.68-11.19-33.41-27.88-39.28zm-62.24-17.7-15.83 27.66-13.29-13.29 19.29-19.29zm-37.61 5.88-20.59-20.58v-16.91c6.41 2.57 13.4 4.01 20.72 4.01 7.22 0 14.11-1.39 20.45-3.9v16.8zm63.63-97.48v5.29c0 2.16-1.82 3.98-3.98 3.98h-3.74c.01-.36.03-.71.03-1.07v-12.18h3.71c2.15-.01 3.98 1.82 3.98 3.98zm-119.29 8.2v1.07h-3.98c-2.16 0-3.98-1.82-3.98-3.98v-5.29c0-2.16 1.82-3.98 3.98-3.98l3.98.22zm1.95-24.19c-7.33-13.69-.89-37.39 10.53-50.24 10.31-11.6 25.12-18.25 40.63-18.25 15.52 0 30.34 6.65 40.65 18.25 8.43 9.48 21.3 27.59 17.4 46.39-5.66-.35-10.67-2.55-14.4-6.36-5.37-5.49-7.72-14-6.63-23.94.29-2.62-1.17-5.13-3.6-6.17s-5.25-.37-6.95 1.65c-19.33 22.92-45.95 36.76-73.9 38.68h-3.73zm10.05 24.19v-12.73c24.57-2.92 47.92-14.05 66.73-31.8 1.43 7.26 4.63 13.6 9.45 18.52 3.27 3.35 7.14 5.89 11.41 7.58v18.42c0 24.15-19.65 43.8-43.8 43.8s-43.79-19.64-43.79-43.79zm15.89 78.48 19.29 19.29-13.29 13.29-15.84-27.66zm3.22 97.53h-39.42v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.76v-35.63c0-12.68 8.1-23.95 20.15-28.05.26-.09.51-.19.75-.31l46.47-23.23 20.07 35.06c.93 1.62 2.56 2.72 4.41 2.97.27.04.53.05.79.05 1.58 0 3.11-.62 4.24-1.76l.14-.14zm12.08 0 7.41-64.69 5.06-5.06 4.84 4.84 7.86 64.92h-25.17zm128.2 0h-39.76v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.18l-6.2-51.17.25.25c1.13 1.13 2.66 1.76 4.24 1.76.26 0 .53-.02.79-.05 1.85-.25 3.48-1.34 4.41-2.97l20.07-35.06 46.47 23.23c.24.12.49.23.75.31 12.05 4.1 20.15 15.38 20.15 28.05v35.65zm-67.04-346.65h-10.84l28.38 39.84 28.38-39.84h-10.84c-3.31 0-6-2.69-6-6v-64.58h-98.7c-3.31 0-6-2.69-6-6s2.69-6 6-6h104.7c3.31 0 6 2.69 6 6v64.58h16.48c2.25 0 4.3 1.25 5.33 3.25s.86 4.4-.45 6.23l-40.02 56.18c-1.13 1.58-2.95 2.52-4.89 2.52s-3.76-.94-4.89-2.52l-40.02-56.18c-1.3-1.83-1.48-4.23-.45-6.23s3.09-3.25 5.33-3.25h16.48v-23.5h-65.38c-3.31 0-6-2.69-6-6s2.69-6 6-6h71.38c3.31 0 6 2.69 6 6v35.5c.02 3.31-2.67 6-5.98 6zm-118.44 50.65v-133.26c0-21.18-17.23-38.41-38.41-38.41h-207.7c-21.18-.01-38.41 17.23-38.41 38.41v133.26c0 21.18 17.23 38.41 38.41 38.41h105.8l64.8 55.11c1.11.94 2.49 1.43 3.89 1.43.85 0 1.71-.18 2.52-.55 2.12-.98 3.48-3.11 3.48-5.45v-50.54h27.21c21.18 0 38.41-17.23 38.41-38.41zm-71.62 26.41c-3.31 0-6 2.69-6 6v43.56l-56.59-48.13c-1.08-.92-2.46-1.43-3.89-1.43h-108.01c-14.56 0-26.41-11.85-26.41-26.41v-133.26c0-14.56 11.85-26.41 26.41-26.41h207.69c14.56 0 26.41 11.85 26.41 26.41v133.26c0 14.56-11.85 26.41-26.41 26.41zm-156.34-87.87h56.97c3.31 0 6-2.69 6-6v-39.2l8.55-8.55c2.34-2.34 2.34-6.14 0-8.49-2.34-2.34-6.14-2.34-8.48 0l-.7.7c-.98-1.97-3.01-3.32-5.36-3.32h-56.98c-3.31 0-6 2.69-6 6v52.85c0 3.32 2.69 6.01 6 6.01zm6-52.86h44.97v2.69l-18.16 18.16-8.84-8.84c-2.34-2.34-6.14-2.34-8.49 0-2.34 2.34-2.34 6.14 0 8.49l13.08 13.08c1.17 1.17 2.71 1.76 4.24 1.76s3.07-.59 4.24-1.76l13.92-13.92v21.2h-44.96zm173.62 3.08c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 31.92c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 36.52c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.68 5.99 6zm0 31.92c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.69 5.99 6zm-119.36 165.01h10.84l-28.38-39.84-28.38 39.84h10.84c3.31 0 6 2.69 6 6v64.58h98.7c3.31 0 6 2.69 6 6s-2.69 6-6 6h-104.69c-3.31 0-6-2.69-6-6v-64.58h-16.48c-2.25 0-4.3-1.25-5.33-3.25s-.86-4.4.45-6.23l40.02-56.18c1.13-1.58 2.95-2.52 4.89-2.52s3.76.94 4.89 2.52l40.02 56.18c1.3 1.83 1.48 4.23.45 6.23s-3.09 3.25-5.33 3.25h-16.48v23.5h65.38c3.31 0 6 2.69 6 6s-2.69 6-6 6h-71.38c-3.31 0-6-2.69-6-6v-35.5c-.03-3.31 2.66-6 5.97-6z\"></path></svg>				\n									<h5>\n							ærlig<br> rådgivning						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 510 510\"><path d=\"m192.036 385.845c-4.787-46.972-19.459-64.336-30.658-82.352-8.672-13.951-15.5-28.245-15.5-54.252 0-60.242 48.865-109.109 109.135-109.109 60.242 0 109.109 48.866 109.109 109.109 0 26.007-6.828 40.301-15.5 54.252-11.199 18.016-25.871 35.38-30.658 82.352 9.985 2.864 17.345 12.101 17.345 22.975v36.44c0 13.109-10.747 23.866-23.893 23.866h-10.334v9.945c0 12.588-10.341 22.929-22.93 22.929h-46.304c-12.589 0-22.93-10.341-22.93-22.929v-9.945h-10.334c-13.146 0-23.893-10.757-23.893-23.866v-36.44c0-10.874 7.36-20.111 17.345-22.975zm111.948-.917c4.199-42.194 15.78-62.332 26.488-79.049 10.147-15.842 19.65-28.207 19.65-56.638 0-52.513-42.597-95.109-95.109-95.109-52.537 0-95.135 42.596-95.135 95.109 0 28.431 9.503 40.796 19.65 56.638 10.708 16.717 22.289 36.855 26.488 79.049zm2.554-78.61c-1.175 13.701-11.985 24.191-24.783 24.191-13.527 0-24.862-12.086-24.862-26.673v-99.328c0-14.12 11.335-26.673 24.862-26.673 11.309 0 21.031 8.139 23.975 19.497 9.12 3.904 15.688 13.438 15.688 24.78 0 1.153-.068 2.289-.201 3.403 5.078 5.326 8.283 12.802 8.283 21.117 0 6.39-1.889 12.262-5.06 17.053 1.996 4.099 3.13 8.773 3.13 13.76 0 14.1-9.065 25.697-21.032 28.873zm-16.452-109.977c-1.964-2.729-4.916-4.506-8.331-4.506-6.192 0-10.862 6.21-10.862 12.673v99.328c0 6.677 4.67 12.673 10.862 12.673 5.516 0 9.822-4.614 10.717-10.425-4.709-1.416-8.923-4.144-12.279-7.814-2.607-2.852-2.409-7.283.443-9.89 2.851-2.607 7.282-2.408 9.889.443 2.416 2.642 5.72 4.356 9.402 4.356 7.733 0 13.643-7.218 13.643-15.734s-5.91-15.734-13.643-15.734c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7 5.352 0 10.388 1.655 14.658 4.533.593-1.743.915-3.634.915-5.612 0-2.11-.366-4.128-1.036-5.972-.769.858-1.588 1.66-2.453 2.397-2.94 2.507-7.361 2.156-9.869-.784-2.507-2.939-2.155-7.361.784-9.868 2.773-2.365 4.492-6.122 4.492-10.293 0-6.072-3.705-11.374-8.898-12.467-.154-.023-.307-.052-.458-.085-.499-.08-1.01-.121-1.532-.121-2.947 0-5.591 1.389-7.515 3.525-2.585 2.87-7.015 3.101-9.886.515-2.87-2.586-3.101-7.015-.515-9.886 3.111-3.453 7.059-5.988 11.472-7.252zm-104.526 67.344c-3.171-4.791-5.06-10.663-5.06-17.053 0-8.307 3.198-15.777 8.284-21.104-.133-1.118-.202-2.258-.202-3.416 0-11.354 6.582-20.897 15.717-24.792 2.948-11.354 12.67-19.485 23.946-19.485 13.56 0 24.888 12.555 24.888 26.673v99.328c0 14.585-11.328 26.673-24.888 26.673-12.765 0-23.578-10.484-24.757-24.184-11.98-3.166-21.058-14.769-21.058-28.88 0-4.987 1.134-9.661 3.13-13.76zm9.982-23.036c-.675 1.847-1.042 3.869-1.042 5.983 0 1.978.322 3.869.915 5.612 4.27-2.878 9.306-4.533 14.658-4.533 3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7-7.733 0-13.643 7.218-13.643 15.734s5.91 15.734 13.643 15.734c3.682 0 6.986-1.714 9.402-4.356 2.607-2.851 7.038-3.05 9.889-.443 2.852 2.607 3.05 7.038.443 9.89-3.35 3.664-7.556 6.389-12.255 7.807.891 5.813 5.192 10.432 10.693 10.432 6.21 0 10.888-5.993 10.888-12.673v-99.328c0-6.466-4.678-12.673-10.888-12.673-3.404 0-6.349 1.777-8.309 4.507 4.421 1.264 8.367 3.8 11.476 7.251 2.586 2.871 2.355 7.3-.516 9.886-2.87 2.586-7.3 2.355-9.886-.515-1.926-2.138-4.574-3.525-7.54-3.525-.493 0-.976.037-1.448.108-.196.045-.395.082-.596.11-5.165 1.118-8.844 6.404-8.844 12.455 0 1.243.153 2.45.442 3.594.101.284.183.572.246.862.748 2.326 2.071 4.346 3.814 5.823 2.947 2.498 3.311 6.919.813 9.866s-6.919 3.312-9.866.814c-.878-.745-1.71-1.554-2.489-2.422zm3.042 158.279c-5.442 0-9.893 4.451-9.893 9.892v36.44c0 5.423 4.454 9.866 9.893 9.866h17.334c3.866 0 7 3.134 7 7v16.945c0 4.902 4.027 8.929 8.93 8.929h46.304c4.903 0 8.93-4.027 8.93-8.929v-16.945c0-3.866 3.134-7 7-7h17.334c5.439 0 9.893-4.443 9.893-9.866v-36.44c0-5.441-4.451-9.892-9.893-9.892zm63.416-314.093 2.907-5.412c1.828-3.403 6.075-4.683 9.479-2.854 3.403 1.828 4.682 6.075 2.854 9.479l-16.073 29.925c-1.22 2.271-3.589 3.688-6.167 3.688s-4.947-1.417-6.167-3.688l-16.073-29.925c-1.828-3.404-.549-7.651 2.854-9.479 3.404-1.829 7.651-.549 9.479 2.854l2.907 5.412v-69.835c0-3.863 3.137-7 7-7s7 3.137 7 7zm-132.198 54.758-49.381-49.381c-2.732-2.731-2.732-7.167 0-9.899s7.168-2.732 9.9 0l49.38 49.38-1.771-5.881c-1.114-3.7.985-7.608 4.684-8.722 3.7-1.114 7.607.985 8.721 4.685l9.796 32.526c.743 2.468.069 5.145-1.753 6.968-1.823 1.823-4.5 2.496-6.969 1.753l-32.526-9.795c-3.699-1.114-5.798-5.022-4.684-8.721s5.022-5.798 8.721-4.684zm-44.859 122.299h-69.835c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7h69.835l-5.412-2.907c-3.403-1.828-4.682-6.076-2.854-9.479 1.828-3.404 6.075-4.683 9.479-2.855l29.926 16.074c2.271 1.22 3.688 3.589 3.688 6.167 0 2.577-1.417 4.947-3.688 6.166l-29.926 16.074c-3.404 1.828-7.651.549-9.479-2.855-1.828-3.403-.549-7.651 2.854-9.479zm54.758 118.198-49.38 49.38c-2.732 2.732-7.168 2.732-9.9 0s-2.732-7.167 0-9.899l49.381-49.381-5.882 1.772c-3.699 1.114-7.607-.985-8.721-4.685-1.114-3.699.985-7.607 4.684-8.721l32.526-9.795c2.469-.743 5.146-.07 6.969 1.753 1.822 1.823 2.496 4.5 1.753 6.968l-9.796 32.527c-1.114 3.699-5.021 5.798-8.721 4.684-3.699-1.114-5.798-5.022-4.684-8.721zm240.497-240.497 5.882-1.771c3.699-1.114 7.607.985 8.721 4.684s-.985 7.607-4.684 8.721l-32.526 9.795c-2.469.743-5.146.07-6.969-1.753-1.822-1.823-2.496-4.5-1.753-6.968l9.796-32.526c1.114-3.7 5.021-5.799 8.721-4.685 3.699 1.114 5.798 5.022 4.684 8.722l-1.771 5.881 49.38-49.38c2.732-2.732 7.168-2.732 9.9 0s2.732 7.168 0 9.899zm44.859 122.299 5.412 2.906c3.403 1.828 4.682 6.076 2.854 9.479-1.828 3.404-6.075 4.683-9.479 2.855l-29.926-16.074c-2.271-1.219-3.688-3.589-3.688-6.166 0-2.578 1.417-4.947 3.688-6.167l29.926-16.074c3.404-1.828 7.651-.549 9.479 2.855 1.828 3.403.549 7.651-2.854 9.479l-5.412 2.907h69.835c3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7zm-54.758 118.198 1.771 5.882c1.114 3.699-.985 7.607-4.684 8.721-3.7 1.114-7.607-.985-8.721-4.684l-9.796-32.527c-.743-2.468-.069-5.145 1.753-6.968 1.823-1.823 4.5-2.496 6.969-1.753l32.526 9.795c3.699 1.114 5.798 5.022 4.684 8.721-1.114 3.7-5.022 5.799-8.721 4.685l-5.882-1.772 49.381 49.381c2.732 2.732 2.732 7.167 0 9.899s-7.168 2.732-9.9 0z\"></path></svg>				\n									<h5>\n							gennemtænkte løsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"outline\"><path d=\"M486.41,144A28,28,0,0,0,472,92H349.123l5.457-21.828a48.513,48.513,0,0,0-12.848-46.153A41.035,41.035,0,0,0,312.609,12H308a8.009,8.009,0,0,0-8,8V47.413l-19.233,64.112A17.376,17.376,0,0,1,268,123.539V112a4,4,0,0,0-4-4H152a4,4,0,0,0-4,4v72a4,4,0,0,0,8,0V116h72V276H156V248a4,4,0,0,0-8,0v32a4,4,0,0,0,4,4H264a4,4,0,0,0,4-4V268.5h11.168A37.07,37.07,0,0,1,305.092,279a45.025,45.025,0,0,0,31.48,12.752L440,292a27.987,27.987,0,0,0,19.369-48.2,27.987,27.987,0,0,0,16-48A28,28,0,0,0,486.41,144ZM260,276H236V116h24Zm212-88H396a4,4,0,0,0,0,8h60a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h40a20,20,0,0,1,.01,40l-103.428-.25a37.07,37.07,0,0,1-25.924-10.5,45.031,45.031,0,0,0-31.49-12.752H268V131.686a25.317,25.317,0,0,0,20.429-17.862l19.4-64.675A4,4,0,0,0,308,48V20h4.609a33.082,33.082,0,0,1,23.481,9.69,40.507,40.507,0,0,1,10.728,38.541l-6.7,26.8A4,4,0,0,0,344,100H472a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h72a20,20,0,0,1,0,40Z\"></path><path d=\"M194.5,183.243l-1.9-.217a4,4,0,0,0-4.169,2.491L184.29,195.9H135.278l-3.539-9.317a4,4,0,0,0-7.478,2.84l2.459,6.477h-8.474L68.452,156.872a4,4,0,1,0-4.935,6.3L77.6,174.209,56.961,194.48l-6.636-5.491a4,4,0,1,0-5.1,6.163L87.219,229.9a44.1,44.1,0,0,0,28.05,10.1H212a8.009,8.009,0,0,0,8-8V203.9a8.009,8.009,0,0,0-8-8h-8v-2.01A10.708,10.708,0,0,0,194.5,183.243ZM212,203.9V232H115.269a36.081,36.081,0,0,1-22.951-8.264l-29.16-24.128,20.8-20.422L114.4,203.045a4,4,0,0,0,2.468.852H187a4,4,0,0,0,3.715-2.517l3.929-9.843a2.712,2.712,0,0,1,1.356,2.35v6.01a4,4,0,0,0,4,4Z\"></path><path d=\"M223.084,484.672,200.87,469.863V346.36A44.1,44.1,0,0,0,195.327,325l-17.183-30.94a4,4,0,0,0-7,3.884l17.184,30.94a36.073,36.073,0,0,1,4.537,17.478V468H164.333a4,4,0,1,0,0,8h31.321l12,8H152.865V352a4,4,0,0,0-.358-1.655l-25.454-56A4,4,0,0,0,123.411,292H114.2a4,4,0,0,0-3.945,4.658l8.862,53.175a36.016,36.016,0,0,1-1.951,18.949L78.642,468H48.333a4,4,0,1,0,0,8H80.377L92,484H32.088L76.63,361.366a4.017,4.017,0,0,0,.183-2.044L61.1,268H136a4,4,0,0,0,0-8H59.233L30.555,173.966A19.723,19.723,0,0,1,49.27,148H76a12,12,0,0,0,24,0h15.2a21.975,21.975,0,0,1,8.395,1.652l10.889,4.458a4,4,0,1,0,3.032-7.4L126.63,142.25A29.938,29.938,0,0,0,115.2,140H100v-4.527A16.014,16.014,0,0,0,112,120V103.473A16.014,16.014,0,0,0,124,88V80a4,4,0,0,0-4-4H90A22.025,22.025,0,0,0,68,98v18a12.02,12.02,0,0,0,8,11.314V140H49.27a27.723,27.723,0,0,0-26.305,36.5l29.493,88.482,16.29,94.655-46.128,127A4,4,0,0,0,26.38,492h78.485a4,4,0,0,0,2.268-7.3L86.3,470.368l38.318-98.69a44.018,44.018,0,0,0,2.385-23.16L118.921,300h1.914l24.03,52.867V488a4,4,0,0,0,4,4h72a4,4,0,0,0,2.219-7.328ZM76,98A14.015,14.015,0,0,1,90,84h26v4a8.009,8.009,0,0,1-8,8H92a4,4,0,0,0-4,4,11.962,11.962,0,0,1-1.53,5.881A12.044,12.044,0,0,0,76,104.686Zm4,14a3.981,3.981,0,0,1,3.407,1.9,4,4,0,0,0,5.956.975c.207-.171.7-.648.7-.648.032-.028.061-.057.09-.087A19.907,19.907,0,0,0,95.6,104H104v16a8.009,8.009,0,0,1-8,8,12.133,12.133,0,0,1-2.681-.3,4,4,0,1,0-1.775,7.8c.151.035.3.06.456.091V148a4,4,0,1,1-8,0V124a4,4,0,0,0-4-4,4,4,0,0,1,0-8Z\"></path></g></svg>				\n									<h5>\n							arbejde udført med ansvar						\n					</h5>\n				<p>Vi lover ikke mere, end vi kan holde – men vi holder det, vi lover.</p>			<h2>KONTAKT OS</h2>		<p>Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.</p>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 13:59:34', '2026-01-26 13:59:34', '', 10, 'https://mrarif.me/cpnordic/?p=566', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(567, 1, '2026-01-26 13:59:35', '2026-01-26 13:59:35', '<h1>CP NORDIC ApS</h1>					<h4>Byggeri – Tømrerarbejde og tagdækning</h4>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle ANMELDELSER\n					</a>\n					<h2>HVORFOR VÆLGE CP NORDIC ApS?</h2>		<p>Når du vælger CP NORDIC ApS, får du:</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 450 450\" width=\"512\"><g><g><path d=\"m225 165.2c-25.9 0-48.9-18.8-53.3-45.2-2.4-14.2.9-28.6 9.3-40.3 8.4-11.8 20.9-19.5 35.1-21.9 29.4-4.9 57.3 15 62.2 44.5 4.9 29.4-15 57.3-44.4 62.2-3 .5-6 .7-8.9.7zm-7.6-99.8c-12.2 2-22.9 8.7-30.1 18.8s-10.1 22.4-8 34.6c3.8 22.7 23.5 38.8 45.7 38.8 2.5 0 5.1-.2 7.6-.6 25.2-4.2 42.3-28.1 38.1-53.4s-28.1-42.4-53.3-38.2z\"></path><path d=\"m255.2 115c-2.1 0-3.8-1.7-3.8-3.8 0-14.6-11.8-26.4-26.4-26.4-2.1 0-3.8-1.7-3.8-3.8s1.7-3.8 3.8-3.8c18.8 0 34.1 15.3 34.1 34.1 0 2-1.8 3.7-3.9 3.7z\"></path><path d=\"m236.1 203h-22.2c-2.1 0-3.8-1.7-3.8-3.8v-14.1c-3.1-.6-6.1-1.4-9.1-2.4l-7 12.2c-1.1 1.8-3.4 2.5-5.3 1.4l-19.2-11.1c-.9-.5-1.5-1.4-1.8-2.3-.3-1-.1-2 .4-2.9l7-12.1c-2.4-2.1-4.6-4.3-6.7-6.6l-12.1 7c-1.8 1.1-4.2.4-5.2-1.4l-11.1-19.2c-1.1-1.8-.4-4.2 1.4-5.2l11.9-6.8c-1-3-1.9-6.1-2.6-9.3h-13.7c-2.1 0-3.8-1.7-3.8-3.8v-22.2c0-2.1 1.7-3.8 3.8-3.8h13.4c.6-3.2 1.4-6.4 2.4-9.5l-11.5-6.6c-1.8-1.1-2.5-3.4-1.4-5.3l11.1-19.6c.5-.9 1.4-1.5 2.3-1.8s2-.1 2.9.4l11.3 6.6c2.2-2.5 4.5-4.8 7-7l-6.5-11.3c-.5-.9-.6-1.9-.4-2.9.3-1 .9-1.8 1.8-2.3l19.2-11.1c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l6.4 11.2c3.1-1.1 6.4-1.9 9.7-2.6v-13c0-2.1 1.7-3.8 3.8-3.8h22.2c2.1 0 3.8 1.7 3.8 3.8v12.8c3.3.7 6.5 1.5 9.7 2.6l6.5-11.2c.5-.9 1.4-1.5 2.3-1.8 1-.3 2-.1 2.9.4l19.2 11.1c.9.5 1.5 1.3 1.8 2.3s.1 2-.4 2.9l-6.5 11.3c2.5 2.2 4.8 4.5 7 7.1l11.3-6.6c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l11.1 19.2c1.1 1.8.4 4.2-1.4 5.3l-11.5 6.6c1 3.1 1.8 6.3 2.5 9.5h13.6c2.1 0 3.8 1.7 3.8 3.8v22.2c0 2.1-1.7 3.8-3.8 3.8h-13.6c-.6 3.1-1.5 6.2-2.5 9.3l11.9 6.8c1.8 1.1 2.5 3.4 1.4 5.2l-11.2 19.5c-1.1 1.8-3.4 2.5-5.2 1.4l-12-7c-2.1 2.4-4.4 4.6-6.7 6.6l7 12.1c.5.9.6 1.9.4 2.9s-.9 1.8-1.8 2.3l-19.2 11.1c-1.8 1.1-4.2.4-5.2-1.4l-7-12.2c-3 1-6 1.8-9.1 2.4v14.1c-.2 2.3-2 4-4.1 4zm-18.4-7.7h14.5v-13.5c0-1.9 1.4-3.5 3.3-3.8 4.7-.7 9.4-2 13.8-3.7 1.8-.7 3.8 0 4.7 1.7l6.7 11.6 12.6-7.3-6.7-11.6c-1-1.6-.5-3.7.9-4.9 3.7-3 7.2-6.4 10.2-10.1 1.2-1.5 3.3-1.8 4.9-.9l11.5 6.6 7.3-12.6-11.3-6.5c-1.6-.9-2.4-3-1.6-4.7 1.8-4.5 3.1-9.2 3.9-14 .3-1.9 1.9-3.2 3.8-3.2h13v-14.6h-12.8c-1.9 0-3.5-1.4-3.8-3.3-.7-4.8-2-9.6-3.7-14.2-.7-1.8 0-3.7 1.7-4.7l10.9-6.3-7.3-12.6-10.8 6.3c-1.6.9-3.7.6-4.9-.9-3.1-3.9-6.6-7.4-10.4-10.6-1.5-1.2-1.9-3.3-.9-4.9l6.2-10.7-12.6-7.3-6.1 10.6c-1 1.6-3 2.3-4.7 1.7-4.6-1.8-9.5-3.1-14.4-3.9-1.9-.3-3.3-1.9-3.3-3.8v-12.2h-14.5v12.3c0 1.9-1.4 3.5-3.3 3.8-5 .8-9.8 2.1-14.4 3.9-1.8.7-3.8 0-4.7-1.7l-6.1-10.6-12.6 7.3 6.2 10.7c.9 1.6.6 3.7-.9 4.9-3.9 3.1-7.4 6.7-10.4 10.6-1.2 1.5-3.3 1.9-4.9.9l-10.8-6.3-7.3 12.6 10.9 6.3c1.6.9 2.3 2.9 1.7 4.7-1.7 4.6-3 9.4-3.7 14.2-.3 1.9-1.9 3.3-3.8 3.3h-12.8v14.5h13c1.9 0 3.5 1.4 3.8 3.2.8 4.8 2.1 9.5 3.9 14 .7 1.8 0 3.8-1.6 4.7l-11.3 6.5 7.3 12.6 11.5-6.6c1.6-.9 3.7-.6 4.9.9 3 3.7 6.5 7.1 10.3 10.1 1.5 1.2 1.9 3.3.9 4.9l-6.7 11.6 12.6 7.3 6.7-11.6c.9-1.6 2.9-2.3 4.7-1.7 4.5 1.7 9.1 2.9 13.8 3.7 1.9.3 3.3 1.9 3.3 3.8z\"></path></g><g><g><g><path d=\"m45.3 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m153.9 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path></g><g><path d=\"m189.3 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.2c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c0 2.1-1.7 3.8-3.8 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m73.3 326.4c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m126 326.4c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m99.7 325.6c-.6 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4s4.1 1.1 4.4 3.2c2.4 16.5 12.3 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m50.2 266.6c-.1 0-.2 0-.3 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.7 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-8.9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.5 2.2zm81.8-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13.1-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.4-.7 2.3-.7z\"></path></g></g></g><g><g><path d=\"m296.1 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m404.7 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path></g><g><path d=\"m440 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.1c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c.2 2.1-1.6 3.8-3.7 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m324 326.3c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m376.7 326.3c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m350.4 325.6c-.5 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4 2.1-.3 4 1.1 4.4 3.2 2.4 16.5 12.4 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m301 266.6c-.1 0-.2 0-.4 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.6 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.4 2.2zm81.7-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.5-.7 2.3-.7z\"></path></g></g></g></g></g></svg>				\n									<h5>\n							et ungt og engageret team						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"496pt\" viewBox=\"0 0 496 496\" width=\"496pt\"><path d=\"m440 328h-28.207031c5.078125-6.703125 8.207031-14.960938 8.207031-24 0-8.824219-7.175781-16-16-16h-12v-19.960938c59.574219-14.445312 104-68.085937 104-132.039062 0-74.992188-61.007812-136-136-136s-136 61.007812-136 136c0 63.953125 44.425781 117.59375 104 132.039062v19.960938h-8.449219c-6.167969 0-12.359375 1.464844-17.886719 4.214844l-50.480468 25.25c-3.320313 1.664062-7.03125 2.535156-10.734375 2.535156h-40.449219v-16h-104v16h56v56h16v-56h16v128h-16v-56h-16v56h-56v16h104v-16h40.449219c3.703125 0 7.414062.871094 10.734375 2.527344l34.488281 17.25c5.519531 2.757812 11.710937 4.222656 17.878906 4.222656h24.449219v24h64v-24h48c13.230469 0 24-10.769531 24-24 0-6.167969-2.40625-11.742188-6.238281-16 3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16 0-13.230469-10.769531-24-24-24zm8 24c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm-208-280c0-66.167969 53.832031-120 120-120s120 53.832031 120 120-53.832031 120-120 120-120-53.832031-120-120zm104 134.976562c5.257812.617188 10.574219 1.023438 16 1.023438s10.742188-.40625 16-1.023438v17.023438h-32zm-40.449219 185.023438c-3.703125 0-7.414062-.871094-10.734375-2.527344l-34.488281-17.25c-5.519531-2.757812-11.710937-4.222656-17.878906-4.222656h-40.449219v-96h40.449219c6.167969 0 12.359375-1.464844 17.886719-4.214844l50.480468-25.25c3.320313-1.664062 7.03125-2.535156 10.734375-2.535156h84.449219c0 13.230469-10.769531 24-24 24h-48.28125l-23.863281 35.808594c-6.101563 9.160156-14.527344 16.589844-24.367188 21.503906-8.753906 4.375-18.542969 6.6875-28.320312 6.6875h-15.167969v16h15.167969c12.246093 0 24.519531-2.894531 35.472656-8.375 12.328125-6.160156 22.878906-15.480469 30.527344-26.945312l6.832031-10.253907v93.574219zm40.449219 24v-136h17.472656c-.898437 2.511719-1.472656 5.183594-1.472656 8 0 6.167969 2.40625 11.742188 6.238281 16-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16 0 10.414062 6.710938 19.214844 16 22.527344v9.472656zm96-24h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8s-3.59375 8-8 8zm0 0\"></path><path d=\"m394.878906 73.007812-7.757812 13.984376c17.816406 9.878906 28.878906 28.664062 28.878906 49.007812h16c0-26.160156-14.222656-50.296875-37.121094-62.992188zm0 0\"></path><path d=\"m360 80c4.734375 0 9.449219.59375 14.007812 1.769531l3.976563-15.503906c-5.855469-1.496094-11.90625-2.265625-17.984375-2.265625zm0 0\"></path><path d=\"m360 48c48.519531 0 88 39.480469 88 88 0 20.753906-7.398438 40.910156-20.832031 56.785156l12.207031 10.34375c15.882812-18.761718 24.625-42.601562 24.625-67.128906 0-57.34375-46.65625-104-104-104-24.527344 0-48.367188 8.753906-67.128906 24.632812l10.335937 12.199219c15.871094-13.433593 36.039063-20.832031 56.792969-20.832031zm0 0\"></path><path d=\"m427.128906 215.367188-10.335937-12.199219c-15.871094 13.433593-36.039063 20.832031-56.792969 20.832031-48.519531 0-88-39.480469-88-88 0-20.753906 7.398438-40.910156 20.832031-56.785156l-12.207031-10.34375c-15.882812 18.761718-24.625 42.601562-24.625 67.128906 0 57.34375 46.65625 104 104 104 24.527344 0 48.367188-8.753906 67.128906-24.632812zm0 0\"></path><path d=\"m121.214844 165.640625c4.953125-1.375 9.695312-3.34375 14.183594-5.878906l9.769531 4.886719 19.472656-19.480469-4.886719-9.769531c2.535156-4.496094 4.503906-9.230469 5.886719-14.183594l10.359375-3.445313v-27.53125l-10.351562-3.453125c-1.375-4.953125-3.34375-9.707031-5.886719-14.183594l4.886719-9.777343-19.472657-19.472657-9.769531 4.886719c-4.484375-2.535156-9.230469-4.503906-14.183594-5.878906l-3.453125-10.359375h-27.539062l-3.445313 10.359375c-4.953125 1.375-9.695312 3.34375-14.183594 5.878906l-9.777343-4.886719-19.472657 19.472657 4.886719 9.777343c-2.535156 4.488282-4.503906 9.230469-5.886719 14.183594l-10.351562 3.445313v27.53125l10.351562 3.453125c1.375 4.953125 3.34375 9.695312 5.886719 14.183594l-4.886719 9.769531 19.472657 19.480469 9.769531-4.886719c4.484375 2.535156 9.230469 4.503906 14.183594 5.878906l3.453125 10.359375h27.539062zm-12.304688-13.679687-2.679687 8.039062h-4.460938l-2.679687-8.039062-4.554688-.90625c-6.128906-1.222657-11.878906-3.605469-17.109375-7.09375l-3.867187-2.578126-7.574219 3.800782-3.160156-3.167969 3.792969-7.582031-2.578126-3.859375c-3.488281-5.222657-5.871093-10.980469-7.09375-17.109375l-.914062-4.554688-8.03125-2.679687v-4.46875l8.03125-2.671875.914062-4.554688c1.222657-6.136718 3.613282-11.886718 7.09375-17.109375l2.578126-3.859375-3.792969-7.589844 3.160156-3.160156 7.574219 3.800782 3.867187-2.578126c5.222657-3.488281 10.980469-5.863281 17.109375-7.09375l4.554688-.90625 2.679687-8.039062h4.460938l2.679687 8.039062 4.554688.90625c6.128906 1.222657 11.878906 3.605469 17.109375 7.09375l3.867187 2.578126 7.574219-3.800782 3.160156 3.160156-3.792969 7.589844 2.578126 3.859375c3.488281 5.214844 5.871093 10.972657 7.09375 17.109375l.914062 4.554688 8.03125 2.679687v4.46875l-8.03125 2.671875-.914062 4.554688c-1.222657 6.128906-3.613282 11.878906-7.09375 17.109375l-2.578126 3.859375 3.792969 7.582031-3.160156 3.167969-7.574219-3.800782-3.867187 2.578126c-5.222657 3.488281-10.980469 5.863281-17.109375 7.09375zm0 0\"></path><path d=\"m104 72c-17.648438 0-32 14.351562-32 32s14.351562 32 32 32 32-14.351562 32-32-14.351562-32-32-32zm0 48c-8.824219 0-16-7.175781-16-16s7.175781-16 16-16 16 7.175781 16 16-7.175781 16-16 16zm0 0\"></path><path d=\"m160 248v-40h48v-208h-208v208h106.664062zm-144-232h176v176h-48v24l-32-24h-96zm0 0\"></path><path d=\"m0 272h16v16h-16zm0 0\"></path><path d=\"m32 272h16v16h-16zm0 0\"></path><path d=\"m64 272h16v16h-16zm0 0\"></path><path d=\"m32 304h16v16h-16zm0 0\"></path><path d=\"m64 304h16v16h-16zm0 0\"></path><path d=\"m0 480h16v16h-16zm0 0\"></path><path d=\"m32 480h16v16h-16zm0 0\"></path><path d=\"m64 480h16v16h-16zm0 0\"></path><path d=\"m32 448h16v16h-16zm0 0\"></path><path d=\"m64 448h16v16h-16zm0 0\"></path></svg>				\n									<h5>\n							fokus på kvalitet og detaljer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m469.12 408.93-67.26-33.63v-22.13c10.71-7.69 18.6-19.07 21.78-32.27h5.28c8.81 0 15.98-7.17 15.98-15.98v-5.29c0-6.35-3.74-11.84-9.12-14.41 5.19-18.64-1.65-39.76-19.44-59.78-12.58-14.16-30.67-22.27-49.62-22.27-18.93 0-37.01 8.12-49.59 22.27-13.38 15.05-20.95 41.01-14.03 59.62-5.56 2.5-9.45 8.09-9.45 14.57v5.29c0 8.81 7.17 15.98 15.98 15.98h5.55c3.16 13.09 10.94 24.39 21.51 32.08v22.32l-67.26 33.63c-16.7 5.87-27.89 21.6-27.89 39.28v41.63c0 3.31 2.69 6 6 6h243.46c3.31 0 6-2.69 6-6v-41.63c0-17.68-11.19-33.41-27.88-39.28zm-62.24-17.7-15.83 27.66-13.29-13.29 19.29-19.29zm-37.61 5.88-20.59-20.58v-16.91c6.41 2.57 13.4 4.01 20.72 4.01 7.22 0 14.11-1.39 20.45-3.9v16.8zm63.63-97.48v5.29c0 2.16-1.82 3.98-3.98 3.98h-3.74c.01-.36.03-.71.03-1.07v-12.18h3.71c2.15-.01 3.98 1.82 3.98 3.98zm-119.29 8.2v1.07h-3.98c-2.16 0-3.98-1.82-3.98-3.98v-5.29c0-2.16 1.82-3.98 3.98-3.98l3.98.22zm1.95-24.19c-7.33-13.69-.89-37.39 10.53-50.24 10.31-11.6 25.12-18.25 40.63-18.25 15.52 0 30.34 6.65 40.65 18.25 8.43 9.48 21.3 27.59 17.4 46.39-5.66-.35-10.67-2.55-14.4-6.36-5.37-5.49-7.72-14-6.63-23.94.29-2.62-1.17-5.13-3.6-6.17s-5.25-.37-6.95 1.65c-19.33 22.92-45.95 36.76-73.9 38.68h-3.73zm10.05 24.19v-12.73c24.57-2.92 47.92-14.05 66.73-31.8 1.43 7.26 4.63 13.6 9.45 18.52 3.27 3.35 7.14 5.89 11.41 7.58v18.42c0 24.15-19.65 43.8-43.8 43.8s-43.79-19.64-43.79-43.79zm15.89 78.48 19.29 19.29-13.29 13.29-15.84-27.66zm3.22 97.53h-39.42v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.76v-35.63c0-12.68 8.1-23.95 20.15-28.05.26-.09.51-.19.75-.31l46.47-23.23 20.07 35.06c.93 1.62 2.56 2.72 4.41 2.97.27.04.53.05.79.05 1.58 0 3.11-.62 4.24-1.76l.14-.14zm12.08 0 7.41-64.69 5.06-5.06 4.84 4.84 7.86 64.92h-25.17zm128.2 0h-39.76v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.18l-6.2-51.17.25.25c1.13 1.13 2.66 1.76 4.24 1.76.26 0 .53-.02.79-.05 1.85-.25 3.48-1.34 4.41-2.97l20.07-35.06 46.47 23.23c.24.12.49.23.75.31 12.05 4.1 20.15 15.38 20.15 28.05v35.65zm-67.04-346.65h-10.84l28.38 39.84 28.38-39.84h-10.84c-3.31 0-6-2.69-6-6v-64.58h-98.7c-3.31 0-6-2.69-6-6s2.69-6 6-6h104.7c3.31 0 6 2.69 6 6v64.58h16.48c2.25 0 4.3 1.25 5.33 3.25s.86 4.4-.45 6.23l-40.02 56.18c-1.13 1.58-2.95 2.52-4.89 2.52s-3.76-.94-4.89-2.52l-40.02-56.18c-1.3-1.83-1.48-4.23-.45-6.23s3.09-3.25 5.33-3.25h16.48v-23.5h-65.38c-3.31 0-6-2.69-6-6s2.69-6 6-6h71.38c3.31 0 6 2.69 6 6v35.5c.02 3.31-2.67 6-5.98 6zm-118.44 50.65v-133.26c0-21.18-17.23-38.41-38.41-38.41h-207.7c-21.18-.01-38.41 17.23-38.41 38.41v133.26c0 21.18 17.23 38.41 38.41 38.41h105.8l64.8 55.11c1.11.94 2.49 1.43 3.89 1.43.85 0 1.71-.18 2.52-.55 2.12-.98 3.48-3.11 3.48-5.45v-50.54h27.21c21.18 0 38.41-17.23 38.41-38.41zm-71.62 26.41c-3.31 0-6 2.69-6 6v43.56l-56.59-48.13c-1.08-.92-2.46-1.43-3.89-1.43h-108.01c-14.56 0-26.41-11.85-26.41-26.41v-133.26c0-14.56 11.85-26.41 26.41-26.41h207.69c14.56 0 26.41 11.85 26.41 26.41v133.26c0 14.56-11.85 26.41-26.41 26.41zm-156.34-87.87h56.97c3.31 0 6-2.69 6-6v-39.2l8.55-8.55c2.34-2.34 2.34-6.14 0-8.49-2.34-2.34-6.14-2.34-8.48 0l-.7.7c-.98-1.97-3.01-3.32-5.36-3.32h-56.98c-3.31 0-6 2.69-6 6v52.85c0 3.32 2.69 6.01 6 6.01zm6-52.86h44.97v2.69l-18.16 18.16-8.84-8.84c-2.34-2.34-6.14-2.34-8.49 0-2.34 2.34-2.34 6.14 0 8.49l13.08 13.08c1.17 1.17 2.71 1.76 4.24 1.76s3.07-.59 4.24-1.76l13.92-13.92v21.2h-44.96zm173.62 3.08c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 31.92c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 36.52c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.68 5.99 6zm0 31.92c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.69 5.99 6zm-119.36 165.01h10.84l-28.38-39.84-28.38 39.84h10.84c3.31 0 6 2.69 6 6v64.58h98.7c3.31 0 6 2.69 6 6s-2.69 6-6 6h-104.69c-3.31 0-6-2.69-6-6v-64.58h-16.48c-2.25 0-4.3-1.25-5.33-3.25s-.86-4.4.45-6.23l40.02-56.18c1.13-1.58 2.95-2.52 4.89-2.52s3.76.94 4.89 2.52l40.02 56.18c1.3 1.83 1.48 4.23.45 6.23s-3.09 3.25-5.33 3.25h-16.48v23.5h65.38c3.31 0 6 2.69 6 6s-2.69 6-6 6h-71.38c-3.31 0-6-2.69-6-6v-35.5c-.03-3.31 2.66-6 5.97-6z\"></path></svg>				\n									<h5>\n							ærlig<br> rådgivning						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 510 510\"><path d=\"m192.036 385.845c-4.787-46.972-19.459-64.336-30.658-82.352-8.672-13.951-15.5-28.245-15.5-54.252 0-60.242 48.865-109.109 109.135-109.109 60.242 0 109.109 48.866 109.109 109.109 0 26.007-6.828 40.301-15.5 54.252-11.199 18.016-25.871 35.38-30.658 82.352 9.985 2.864 17.345 12.101 17.345 22.975v36.44c0 13.109-10.747 23.866-23.893 23.866h-10.334v9.945c0 12.588-10.341 22.929-22.93 22.929h-46.304c-12.589 0-22.93-10.341-22.93-22.929v-9.945h-10.334c-13.146 0-23.893-10.757-23.893-23.866v-36.44c0-10.874 7.36-20.111 17.345-22.975zm111.948-.917c4.199-42.194 15.78-62.332 26.488-79.049 10.147-15.842 19.65-28.207 19.65-56.638 0-52.513-42.597-95.109-95.109-95.109-52.537 0-95.135 42.596-95.135 95.109 0 28.431 9.503 40.796 19.65 56.638 10.708 16.717 22.289 36.855 26.488 79.049zm2.554-78.61c-1.175 13.701-11.985 24.191-24.783 24.191-13.527 0-24.862-12.086-24.862-26.673v-99.328c0-14.12 11.335-26.673 24.862-26.673 11.309 0 21.031 8.139 23.975 19.497 9.12 3.904 15.688 13.438 15.688 24.78 0 1.153-.068 2.289-.201 3.403 5.078 5.326 8.283 12.802 8.283 21.117 0 6.39-1.889 12.262-5.06 17.053 1.996 4.099 3.13 8.773 3.13 13.76 0 14.1-9.065 25.697-21.032 28.873zm-16.452-109.977c-1.964-2.729-4.916-4.506-8.331-4.506-6.192 0-10.862 6.21-10.862 12.673v99.328c0 6.677 4.67 12.673 10.862 12.673 5.516 0 9.822-4.614 10.717-10.425-4.709-1.416-8.923-4.144-12.279-7.814-2.607-2.852-2.409-7.283.443-9.89 2.851-2.607 7.282-2.408 9.889.443 2.416 2.642 5.72 4.356 9.402 4.356 7.733 0 13.643-7.218 13.643-15.734s-5.91-15.734-13.643-15.734c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7 5.352 0 10.388 1.655 14.658 4.533.593-1.743.915-3.634.915-5.612 0-2.11-.366-4.128-1.036-5.972-.769.858-1.588 1.66-2.453 2.397-2.94 2.507-7.361 2.156-9.869-.784-2.507-2.939-2.155-7.361.784-9.868 2.773-2.365 4.492-6.122 4.492-10.293 0-6.072-3.705-11.374-8.898-12.467-.154-.023-.307-.052-.458-.085-.499-.08-1.01-.121-1.532-.121-2.947 0-5.591 1.389-7.515 3.525-2.585 2.87-7.015 3.101-9.886.515-2.87-2.586-3.101-7.015-.515-9.886 3.111-3.453 7.059-5.988 11.472-7.252zm-104.526 67.344c-3.171-4.791-5.06-10.663-5.06-17.053 0-8.307 3.198-15.777 8.284-21.104-.133-1.118-.202-2.258-.202-3.416 0-11.354 6.582-20.897 15.717-24.792 2.948-11.354 12.67-19.485 23.946-19.485 13.56 0 24.888 12.555 24.888 26.673v99.328c0 14.585-11.328 26.673-24.888 26.673-12.765 0-23.578-10.484-24.757-24.184-11.98-3.166-21.058-14.769-21.058-28.88 0-4.987 1.134-9.661 3.13-13.76zm9.982-23.036c-.675 1.847-1.042 3.869-1.042 5.983 0 1.978.322 3.869.915 5.612 4.27-2.878 9.306-4.533 14.658-4.533 3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7-7.733 0-13.643 7.218-13.643 15.734s5.91 15.734 13.643 15.734c3.682 0 6.986-1.714 9.402-4.356 2.607-2.851 7.038-3.05 9.889-.443 2.852 2.607 3.05 7.038.443 9.89-3.35 3.664-7.556 6.389-12.255 7.807.891 5.813 5.192 10.432 10.693 10.432 6.21 0 10.888-5.993 10.888-12.673v-99.328c0-6.466-4.678-12.673-10.888-12.673-3.404 0-6.349 1.777-8.309 4.507 4.421 1.264 8.367 3.8 11.476 7.251 2.586 2.871 2.355 7.3-.516 9.886-2.87 2.586-7.3 2.355-9.886-.515-1.926-2.138-4.574-3.525-7.54-3.525-.493 0-.976.037-1.448.108-.196.045-.395.082-.596.11-5.165 1.118-8.844 6.404-8.844 12.455 0 1.243.153 2.45.442 3.594.101.284.183.572.246.862.748 2.326 2.071 4.346 3.814 5.823 2.947 2.498 3.311 6.919.813 9.866s-6.919 3.312-9.866.814c-.878-.745-1.71-1.554-2.489-2.422zm3.042 158.279c-5.442 0-9.893 4.451-9.893 9.892v36.44c0 5.423 4.454 9.866 9.893 9.866h17.334c3.866 0 7 3.134 7 7v16.945c0 4.902 4.027 8.929 8.93 8.929h46.304c4.903 0 8.93-4.027 8.93-8.929v-16.945c0-3.866 3.134-7 7-7h17.334c5.439 0 9.893-4.443 9.893-9.866v-36.44c0-5.441-4.451-9.892-9.893-9.892zm63.416-314.093 2.907-5.412c1.828-3.403 6.075-4.683 9.479-2.854 3.403 1.828 4.682 6.075 2.854 9.479l-16.073 29.925c-1.22 2.271-3.589 3.688-6.167 3.688s-4.947-1.417-6.167-3.688l-16.073-29.925c-1.828-3.404-.549-7.651 2.854-9.479 3.404-1.829 7.651-.549 9.479 2.854l2.907 5.412v-69.835c0-3.863 3.137-7 7-7s7 3.137 7 7zm-132.198 54.758-49.381-49.381c-2.732-2.731-2.732-7.167 0-9.899s7.168-2.732 9.9 0l49.38 49.38-1.771-5.881c-1.114-3.7.985-7.608 4.684-8.722 3.7-1.114 7.607.985 8.721 4.685l9.796 32.526c.743 2.468.069 5.145-1.753 6.968-1.823 1.823-4.5 2.496-6.969 1.753l-32.526-9.795c-3.699-1.114-5.798-5.022-4.684-8.721s5.022-5.798 8.721-4.684zm-44.859 122.299h-69.835c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7h69.835l-5.412-2.907c-3.403-1.828-4.682-6.076-2.854-9.479 1.828-3.404 6.075-4.683 9.479-2.855l29.926 16.074c2.271 1.22 3.688 3.589 3.688 6.167 0 2.577-1.417 4.947-3.688 6.166l-29.926 16.074c-3.404 1.828-7.651.549-9.479-2.855-1.828-3.403-.549-7.651 2.854-9.479zm54.758 118.198-49.38 49.38c-2.732 2.732-7.168 2.732-9.9 0s-2.732-7.167 0-9.899l49.381-49.381-5.882 1.772c-3.699 1.114-7.607-.985-8.721-4.685-1.114-3.699.985-7.607 4.684-8.721l32.526-9.795c2.469-.743 5.146-.07 6.969 1.753 1.822 1.823 2.496 4.5 1.753 6.968l-9.796 32.527c-1.114 3.699-5.021 5.798-8.721 4.684-3.699-1.114-5.798-5.022-4.684-8.721zm240.497-240.497 5.882-1.771c3.699-1.114 7.607.985 8.721 4.684s-.985 7.607-4.684 8.721l-32.526 9.795c-2.469.743-5.146.07-6.969-1.753-1.822-1.823-2.496-4.5-1.753-6.968l9.796-32.526c1.114-3.7 5.021-5.799 8.721-4.685 3.699 1.114 5.798 5.022 4.684 8.722l-1.771 5.881 49.38-49.38c2.732-2.732 7.168-2.732 9.9 0s2.732 7.168 0 9.899zm44.859 122.299 5.412 2.906c3.403 1.828 4.682 6.076 2.854 9.479-1.828 3.404-6.075 4.683-9.479 2.855l-29.926-16.074c-2.271-1.219-3.688-3.589-3.688-6.166 0-2.578 1.417-4.947 3.688-6.167l29.926-16.074c3.404-1.828 7.651-.549 9.479 2.855 1.828 3.403.549 7.651-2.854 9.479l-5.412 2.907h69.835c3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7zm-54.758 118.198 1.771 5.882c1.114 3.699-.985 7.607-4.684 8.721-3.7 1.114-7.607-.985-8.721-4.684l-9.796-32.527c-.743-2.468-.069-5.145 1.753-6.968 1.823-1.823 4.5-2.496 6.969-1.753l32.526 9.795c3.699 1.114 5.798 5.022 4.684 8.721-1.114 3.7-5.022 5.799-8.721 4.685l-5.882-1.772 49.381 49.381c2.732 2.732 2.732 7.167 0 9.899s-7.168 2.732-9.9 0z\"></path></svg>				\n									<h5>\n							gennemtænkte løsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"outline\"><path d=\"M486.41,144A28,28,0,0,0,472,92H349.123l5.457-21.828a48.513,48.513,0,0,0-12.848-46.153A41.035,41.035,0,0,0,312.609,12H308a8.009,8.009,0,0,0-8,8V47.413l-19.233,64.112A17.376,17.376,0,0,1,268,123.539V112a4,4,0,0,0-4-4H152a4,4,0,0,0-4,4v72a4,4,0,0,0,8,0V116h72V276H156V248a4,4,0,0,0-8,0v32a4,4,0,0,0,4,4H264a4,4,0,0,0,4-4V268.5h11.168A37.07,37.07,0,0,1,305.092,279a45.025,45.025,0,0,0,31.48,12.752L440,292a27.987,27.987,0,0,0,19.369-48.2,27.987,27.987,0,0,0,16-48A28,28,0,0,0,486.41,144ZM260,276H236V116h24Zm212-88H396a4,4,0,0,0,0,8h60a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h40a20,20,0,0,1,.01,40l-103.428-.25a37.07,37.07,0,0,1-25.924-10.5,45.031,45.031,0,0,0-31.49-12.752H268V131.686a25.317,25.317,0,0,0,20.429-17.862l19.4-64.675A4,4,0,0,0,308,48V20h4.609a33.082,33.082,0,0,1,23.481,9.69,40.507,40.507,0,0,1,10.728,38.541l-6.7,26.8A4,4,0,0,0,344,100H472a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h72a20,20,0,0,1,0,40Z\"></path><path d=\"M194.5,183.243l-1.9-.217a4,4,0,0,0-4.169,2.491L184.29,195.9H135.278l-3.539-9.317a4,4,0,0,0-7.478,2.84l2.459,6.477h-8.474L68.452,156.872a4,4,0,1,0-4.935,6.3L77.6,174.209,56.961,194.48l-6.636-5.491a4,4,0,1,0-5.1,6.163L87.219,229.9a44.1,44.1,0,0,0,28.05,10.1H212a8.009,8.009,0,0,0,8-8V203.9a8.009,8.009,0,0,0-8-8h-8v-2.01A10.708,10.708,0,0,0,194.5,183.243ZM212,203.9V232H115.269a36.081,36.081,0,0,1-22.951-8.264l-29.16-24.128,20.8-20.422L114.4,203.045a4,4,0,0,0,2.468.852H187a4,4,0,0,0,3.715-2.517l3.929-9.843a2.712,2.712,0,0,1,1.356,2.35v6.01a4,4,0,0,0,4,4Z\"></path><path d=\"M223.084,484.672,200.87,469.863V346.36A44.1,44.1,0,0,0,195.327,325l-17.183-30.94a4,4,0,0,0-7,3.884l17.184,30.94a36.073,36.073,0,0,1,4.537,17.478V468H164.333a4,4,0,1,0,0,8h31.321l12,8H152.865V352a4,4,0,0,0-.358-1.655l-25.454-56A4,4,0,0,0,123.411,292H114.2a4,4,0,0,0-3.945,4.658l8.862,53.175a36.016,36.016,0,0,1-1.951,18.949L78.642,468H48.333a4,4,0,1,0,0,8H80.377L92,484H32.088L76.63,361.366a4.017,4.017,0,0,0,.183-2.044L61.1,268H136a4,4,0,0,0,0-8H59.233L30.555,173.966A19.723,19.723,0,0,1,49.27,148H76a12,12,0,0,0,24,0h15.2a21.975,21.975,0,0,1,8.395,1.652l10.889,4.458a4,4,0,1,0,3.032-7.4L126.63,142.25A29.938,29.938,0,0,0,115.2,140H100v-4.527A16.014,16.014,0,0,0,112,120V103.473A16.014,16.014,0,0,0,124,88V80a4,4,0,0,0-4-4H90A22.025,22.025,0,0,0,68,98v18a12.02,12.02,0,0,0,8,11.314V140H49.27a27.723,27.723,0,0,0-26.305,36.5l29.493,88.482,16.29,94.655-46.128,127A4,4,0,0,0,26.38,492h78.485a4,4,0,0,0,2.268-7.3L86.3,470.368l38.318-98.69a44.018,44.018,0,0,0,2.385-23.16L118.921,300h1.914l24.03,52.867V488a4,4,0,0,0,4,4h72a4,4,0,0,0,2.219-7.328ZM76,98A14.015,14.015,0,0,1,90,84h26v4a8.009,8.009,0,0,1-8,8H92a4,4,0,0,0-4,4,11.962,11.962,0,0,1-1.53,5.881A12.044,12.044,0,0,0,76,104.686Zm4,14a3.981,3.981,0,0,1,3.407,1.9,4,4,0,0,0,5.956.975c.207-.171.7-.648.7-.648.032-.028.061-.057.09-.087A19.907,19.907,0,0,0,95.6,104H104v16a8.009,8.009,0,0,1-8,8,12.133,12.133,0,0,1-2.681-.3,4,4,0,1,0-1.775,7.8c.151.035.3.06.456.091V148a4,4,0,1,1-8,0V124a4,4,0,0,0-4-4,4,4,0,0,1,0-8Z\"></path></g></svg>				\n									<h5>\n							arbejde udført med ansvar						\n					</h5>\n				<p>Vi lover ikke mere, end vi kan holde – men vi holder det, vi lover.</p>			<h2>KONTAKT OS</h2>		<p>Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.</p>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 13:59:35', '2026-01-26 13:59:35', '', 10, 'https://mrarif.me/cpnordic/?p=567', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(568, 1, '2026-01-26 13:59:35', '2026-01-26 13:59:35', '<h1>CP NORDIC ApS</h1>					<h4>Byggeri – Tømrerarbejde og tagdækning</h4>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle ANMELDELSER\n					</a>\n					<h2>HVORFOR VÆLGE CP NORDIC ApS?</h2>		<p>Når du vælger CP NORDIC ApS, får du:</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 450 450\" width=\"512\"><g><g><path d=\"m225 165.2c-25.9 0-48.9-18.8-53.3-45.2-2.4-14.2.9-28.6 9.3-40.3 8.4-11.8 20.9-19.5 35.1-21.9 29.4-4.9 57.3 15 62.2 44.5 4.9 29.4-15 57.3-44.4 62.2-3 .5-6 .7-8.9.7zm-7.6-99.8c-12.2 2-22.9 8.7-30.1 18.8s-10.1 22.4-8 34.6c3.8 22.7 23.5 38.8 45.7 38.8 2.5 0 5.1-.2 7.6-.6 25.2-4.2 42.3-28.1 38.1-53.4s-28.1-42.4-53.3-38.2z\"></path><path d=\"m255.2 115c-2.1 0-3.8-1.7-3.8-3.8 0-14.6-11.8-26.4-26.4-26.4-2.1 0-3.8-1.7-3.8-3.8s1.7-3.8 3.8-3.8c18.8 0 34.1 15.3 34.1 34.1 0 2-1.8 3.7-3.9 3.7z\"></path><path d=\"m236.1 203h-22.2c-2.1 0-3.8-1.7-3.8-3.8v-14.1c-3.1-.6-6.1-1.4-9.1-2.4l-7 12.2c-1.1 1.8-3.4 2.5-5.3 1.4l-19.2-11.1c-.9-.5-1.5-1.4-1.8-2.3-.3-1-.1-2 .4-2.9l7-12.1c-2.4-2.1-4.6-4.3-6.7-6.6l-12.1 7c-1.8 1.1-4.2.4-5.2-1.4l-11.1-19.2c-1.1-1.8-.4-4.2 1.4-5.2l11.9-6.8c-1-3-1.9-6.1-2.6-9.3h-13.7c-2.1 0-3.8-1.7-3.8-3.8v-22.2c0-2.1 1.7-3.8 3.8-3.8h13.4c.6-3.2 1.4-6.4 2.4-9.5l-11.5-6.6c-1.8-1.1-2.5-3.4-1.4-5.3l11.1-19.6c.5-.9 1.4-1.5 2.3-1.8s2-.1 2.9.4l11.3 6.6c2.2-2.5 4.5-4.8 7-7l-6.5-11.3c-.5-.9-.6-1.9-.4-2.9.3-1 .9-1.8 1.8-2.3l19.2-11.1c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l6.4 11.2c3.1-1.1 6.4-1.9 9.7-2.6v-13c0-2.1 1.7-3.8 3.8-3.8h22.2c2.1 0 3.8 1.7 3.8 3.8v12.8c3.3.7 6.5 1.5 9.7 2.6l6.5-11.2c.5-.9 1.4-1.5 2.3-1.8 1-.3 2-.1 2.9.4l19.2 11.1c.9.5 1.5 1.3 1.8 2.3s.1 2-.4 2.9l-6.5 11.3c2.5 2.2 4.8 4.5 7 7.1l11.3-6.6c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l11.1 19.2c1.1 1.8.4 4.2-1.4 5.3l-11.5 6.6c1 3.1 1.8 6.3 2.5 9.5h13.6c2.1 0 3.8 1.7 3.8 3.8v22.2c0 2.1-1.7 3.8-3.8 3.8h-13.6c-.6 3.1-1.5 6.2-2.5 9.3l11.9 6.8c1.8 1.1 2.5 3.4 1.4 5.2l-11.2 19.5c-1.1 1.8-3.4 2.5-5.2 1.4l-12-7c-2.1 2.4-4.4 4.6-6.7 6.6l7 12.1c.5.9.6 1.9.4 2.9s-.9 1.8-1.8 2.3l-19.2 11.1c-1.8 1.1-4.2.4-5.2-1.4l-7-12.2c-3 1-6 1.8-9.1 2.4v14.1c-.2 2.3-2 4-4.1 4zm-18.4-7.7h14.5v-13.5c0-1.9 1.4-3.5 3.3-3.8 4.7-.7 9.4-2 13.8-3.7 1.8-.7 3.8 0 4.7 1.7l6.7 11.6 12.6-7.3-6.7-11.6c-1-1.6-.5-3.7.9-4.9 3.7-3 7.2-6.4 10.2-10.1 1.2-1.5 3.3-1.8 4.9-.9l11.5 6.6 7.3-12.6-11.3-6.5c-1.6-.9-2.4-3-1.6-4.7 1.8-4.5 3.1-9.2 3.9-14 .3-1.9 1.9-3.2 3.8-3.2h13v-14.6h-12.8c-1.9 0-3.5-1.4-3.8-3.3-.7-4.8-2-9.6-3.7-14.2-.7-1.8 0-3.7 1.7-4.7l10.9-6.3-7.3-12.6-10.8 6.3c-1.6.9-3.7.6-4.9-.9-3.1-3.9-6.6-7.4-10.4-10.6-1.5-1.2-1.9-3.3-.9-4.9l6.2-10.7-12.6-7.3-6.1 10.6c-1 1.6-3 2.3-4.7 1.7-4.6-1.8-9.5-3.1-14.4-3.9-1.9-.3-3.3-1.9-3.3-3.8v-12.2h-14.5v12.3c0 1.9-1.4 3.5-3.3 3.8-5 .8-9.8 2.1-14.4 3.9-1.8.7-3.8 0-4.7-1.7l-6.1-10.6-12.6 7.3 6.2 10.7c.9 1.6.6 3.7-.9 4.9-3.9 3.1-7.4 6.7-10.4 10.6-1.2 1.5-3.3 1.9-4.9.9l-10.8-6.3-7.3 12.6 10.9 6.3c1.6.9 2.3 2.9 1.7 4.7-1.7 4.6-3 9.4-3.7 14.2-.3 1.9-1.9 3.3-3.8 3.3h-12.8v14.5h13c1.9 0 3.5 1.4 3.8 3.2.8 4.8 2.1 9.5 3.9 14 .7 1.8 0 3.8-1.6 4.7l-11.3 6.5 7.3 12.6 11.5-6.6c1.6-.9 3.7-.6 4.9.9 3 3.7 6.5 7.1 10.3 10.1 1.5 1.2 1.9 3.3.9 4.9l-6.7 11.6 12.6 7.3 6.7-11.6c.9-1.6 2.9-2.3 4.7-1.7 4.5 1.7 9.1 2.9 13.8 3.7 1.9.3 3.3 1.9 3.3 3.8z\"></path></g><g><g><g><path d=\"m45.3 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m153.9 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path></g><g><path d=\"m189.3 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.2c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c0 2.1-1.7 3.8-3.8 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m73.3 326.4c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m126 326.4c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m99.7 325.6c-.6 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4s4.1 1.1 4.4 3.2c2.4 16.5 12.3 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m50.2 266.6c-.1 0-.2 0-.3 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.7 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-8.9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.5 2.2zm81.8-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13.1-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.4-.7 2.3-.7z\"></path></g></g></g><g><g><path d=\"m296.1 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m404.7 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path></g><g><path d=\"m440 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.1c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c.2 2.1-1.6 3.8-3.7 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m324 326.3c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m376.7 326.3c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m350.4 325.6c-.5 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4 2.1-.3 4 1.1 4.4 3.2 2.4 16.5 12.4 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m301 266.6c-.1 0-.2 0-.4 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.6 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.4 2.2zm81.7-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.5-.7 2.3-.7z\"></path></g></g></g></g></g></svg>				\n									<h5>\n							et ungt og engageret team						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"496pt\" viewBox=\"0 0 496 496\" width=\"496pt\"><path d=\"m440 328h-28.207031c5.078125-6.703125 8.207031-14.960938 8.207031-24 0-8.824219-7.175781-16-16-16h-12v-19.960938c59.574219-14.445312 104-68.085937 104-132.039062 0-74.992188-61.007812-136-136-136s-136 61.007812-136 136c0 63.953125 44.425781 117.59375 104 132.039062v19.960938h-8.449219c-6.167969 0-12.359375 1.464844-17.886719 4.214844l-50.480468 25.25c-3.320313 1.664062-7.03125 2.535156-10.734375 2.535156h-40.449219v-16h-104v16h56v56h16v-56h16v128h-16v-56h-16v56h-56v16h104v-16h40.449219c3.703125 0 7.414062.871094 10.734375 2.527344l34.488281 17.25c5.519531 2.757812 11.710937 4.222656 17.878906 4.222656h24.449219v24h64v-24h48c13.230469 0 24-10.769531 24-24 0-6.167969-2.40625-11.742188-6.238281-16 3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16 0-13.230469-10.769531-24-24-24zm8 24c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm-208-280c0-66.167969 53.832031-120 120-120s120 53.832031 120 120-53.832031 120-120 120-120-53.832031-120-120zm104 134.976562c5.257812.617188 10.574219 1.023438 16 1.023438s10.742188-.40625 16-1.023438v17.023438h-32zm-40.449219 185.023438c-3.703125 0-7.414062-.871094-10.734375-2.527344l-34.488281-17.25c-5.519531-2.757812-11.710937-4.222656-17.878906-4.222656h-40.449219v-96h40.449219c6.167969 0 12.359375-1.464844 17.886719-4.214844l50.480468-25.25c3.320313-1.664062 7.03125-2.535156 10.734375-2.535156h84.449219c0 13.230469-10.769531 24-24 24h-48.28125l-23.863281 35.808594c-6.101563 9.160156-14.527344 16.589844-24.367188 21.503906-8.753906 4.375-18.542969 6.6875-28.320312 6.6875h-15.167969v16h15.167969c12.246093 0 24.519531-2.894531 35.472656-8.375 12.328125-6.160156 22.878906-15.480469 30.527344-26.945312l6.832031-10.253907v93.574219zm40.449219 24v-136h17.472656c-.898437 2.511719-1.472656 5.183594-1.472656 8 0 6.167969 2.40625 11.742188 6.238281 16-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16 0 10.414062 6.710938 19.214844 16 22.527344v9.472656zm96-24h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8s-3.59375 8-8 8zm0 0\"></path><path d=\"m394.878906 73.007812-7.757812 13.984376c17.816406 9.878906 28.878906 28.664062 28.878906 49.007812h16c0-26.160156-14.222656-50.296875-37.121094-62.992188zm0 0\"></path><path d=\"m360 80c4.734375 0 9.449219.59375 14.007812 1.769531l3.976563-15.503906c-5.855469-1.496094-11.90625-2.265625-17.984375-2.265625zm0 0\"></path><path d=\"m360 48c48.519531 0 88 39.480469 88 88 0 20.753906-7.398438 40.910156-20.832031 56.785156l12.207031 10.34375c15.882812-18.761718 24.625-42.601562 24.625-67.128906 0-57.34375-46.65625-104-104-104-24.527344 0-48.367188 8.753906-67.128906 24.632812l10.335937 12.199219c15.871094-13.433593 36.039063-20.832031 56.792969-20.832031zm0 0\"></path><path d=\"m427.128906 215.367188-10.335937-12.199219c-15.871094 13.433593-36.039063 20.832031-56.792969 20.832031-48.519531 0-88-39.480469-88-88 0-20.753906 7.398438-40.910156 20.832031-56.785156l-12.207031-10.34375c-15.882812 18.761718-24.625 42.601562-24.625 67.128906 0 57.34375 46.65625 104 104 104 24.527344 0 48.367188-8.753906 67.128906-24.632812zm0 0\"></path><path d=\"m121.214844 165.640625c4.953125-1.375 9.695312-3.34375 14.183594-5.878906l9.769531 4.886719 19.472656-19.480469-4.886719-9.769531c2.535156-4.496094 4.503906-9.230469 5.886719-14.183594l10.359375-3.445313v-27.53125l-10.351562-3.453125c-1.375-4.953125-3.34375-9.707031-5.886719-14.183594l4.886719-9.777343-19.472657-19.472657-9.769531 4.886719c-4.484375-2.535156-9.230469-4.503906-14.183594-5.878906l-3.453125-10.359375h-27.539062l-3.445313 10.359375c-4.953125 1.375-9.695312 3.34375-14.183594 5.878906l-9.777343-4.886719-19.472657 19.472657 4.886719 9.777343c-2.535156 4.488282-4.503906 9.230469-5.886719 14.183594l-10.351562 3.445313v27.53125l10.351562 3.453125c1.375 4.953125 3.34375 9.695312 5.886719 14.183594l-4.886719 9.769531 19.472657 19.480469 9.769531-4.886719c4.484375 2.535156 9.230469 4.503906 14.183594 5.878906l3.453125 10.359375h27.539062zm-12.304688-13.679687-2.679687 8.039062h-4.460938l-2.679687-8.039062-4.554688-.90625c-6.128906-1.222657-11.878906-3.605469-17.109375-7.09375l-3.867187-2.578126-7.574219 3.800782-3.160156-3.167969 3.792969-7.582031-2.578126-3.859375c-3.488281-5.222657-5.871093-10.980469-7.09375-17.109375l-.914062-4.554688-8.03125-2.679687v-4.46875l8.03125-2.671875.914062-4.554688c1.222657-6.136718 3.613282-11.886718 7.09375-17.109375l2.578126-3.859375-3.792969-7.589844 3.160156-3.160156 7.574219 3.800782 3.867187-2.578126c5.222657-3.488281 10.980469-5.863281 17.109375-7.09375l4.554688-.90625 2.679687-8.039062h4.460938l2.679687 8.039062 4.554688.90625c6.128906 1.222657 11.878906 3.605469 17.109375 7.09375l3.867187 2.578126 7.574219-3.800782 3.160156 3.160156-3.792969 7.589844 2.578126 3.859375c3.488281 5.214844 5.871093 10.972657 7.09375 17.109375l.914062 4.554688 8.03125 2.679687v4.46875l-8.03125 2.671875-.914062 4.554688c-1.222657 6.128906-3.613282 11.878906-7.09375 17.109375l-2.578126 3.859375 3.792969 7.582031-3.160156 3.167969-7.574219-3.800782-3.867187 2.578126c-5.222657 3.488281-10.980469 5.863281-17.109375 7.09375zm0 0\"></path><path d=\"m104 72c-17.648438 0-32 14.351562-32 32s14.351562 32 32 32 32-14.351562 32-32-14.351562-32-32-32zm0 48c-8.824219 0-16-7.175781-16-16s7.175781-16 16-16 16 7.175781 16 16-7.175781 16-16 16zm0 0\"></path><path d=\"m160 248v-40h48v-208h-208v208h106.664062zm-144-232h176v176h-48v24l-32-24h-96zm0 0\"></path><path d=\"m0 272h16v16h-16zm0 0\"></path><path d=\"m32 272h16v16h-16zm0 0\"></path><path d=\"m64 272h16v16h-16zm0 0\"></path><path d=\"m32 304h16v16h-16zm0 0\"></path><path d=\"m64 304h16v16h-16zm0 0\"></path><path d=\"m0 480h16v16h-16zm0 0\"></path><path d=\"m32 480h16v16h-16zm0 0\"></path><path d=\"m64 480h16v16h-16zm0 0\"></path><path d=\"m32 448h16v16h-16zm0 0\"></path><path d=\"m64 448h16v16h-16zm0 0\"></path></svg>				\n									<h5>\n							fokus på kvalitet og detaljer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m469.12 408.93-67.26-33.63v-22.13c10.71-7.69 18.6-19.07 21.78-32.27h5.28c8.81 0 15.98-7.17 15.98-15.98v-5.29c0-6.35-3.74-11.84-9.12-14.41 5.19-18.64-1.65-39.76-19.44-59.78-12.58-14.16-30.67-22.27-49.62-22.27-18.93 0-37.01 8.12-49.59 22.27-13.38 15.05-20.95 41.01-14.03 59.62-5.56 2.5-9.45 8.09-9.45 14.57v5.29c0 8.81 7.17 15.98 15.98 15.98h5.55c3.16 13.09 10.94 24.39 21.51 32.08v22.32l-67.26 33.63c-16.7 5.87-27.89 21.6-27.89 39.28v41.63c0 3.31 2.69 6 6 6h243.46c3.31 0 6-2.69 6-6v-41.63c0-17.68-11.19-33.41-27.88-39.28zm-62.24-17.7-15.83 27.66-13.29-13.29 19.29-19.29zm-37.61 5.88-20.59-20.58v-16.91c6.41 2.57 13.4 4.01 20.72 4.01 7.22 0 14.11-1.39 20.45-3.9v16.8zm63.63-97.48v5.29c0 2.16-1.82 3.98-3.98 3.98h-3.74c.01-.36.03-.71.03-1.07v-12.18h3.71c2.15-.01 3.98 1.82 3.98 3.98zm-119.29 8.2v1.07h-3.98c-2.16 0-3.98-1.82-3.98-3.98v-5.29c0-2.16 1.82-3.98 3.98-3.98l3.98.22zm1.95-24.19c-7.33-13.69-.89-37.39 10.53-50.24 10.31-11.6 25.12-18.25 40.63-18.25 15.52 0 30.34 6.65 40.65 18.25 8.43 9.48 21.3 27.59 17.4 46.39-5.66-.35-10.67-2.55-14.4-6.36-5.37-5.49-7.72-14-6.63-23.94.29-2.62-1.17-5.13-3.6-6.17s-5.25-.37-6.95 1.65c-19.33 22.92-45.95 36.76-73.9 38.68h-3.73zm10.05 24.19v-12.73c24.57-2.92 47.92-14.05 66.73-31.8 1.43 7.26 4.63 13.6 9.45 18.52 3.27 3.35 7.14 5.89 11.41 7.58v18.42c0 24.15-19.65 43.8-43.8 43.8s-43.79-19.64-43.79-43.79zm15.89 78.48 19.29 19.29-13.29 13.29-15.84-27.66zm3.22 97.53h-39.42v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.76v-35.63c0-12.68 8.1-23.95 20.15-28.05.26-.09.51-.19.75-.31l46.47-23.23 20.07 35.06c.93 1.62 2.56 2.72 4.41 2.97.27.04.53.05.79.05 1.58 0 3.11-.62 4.24-1.76l.14-.14zm12.08 0 7.41-64.69 5.06-5.06 4.84 4.84 7.86 64.92h-25.17zm128.2 0h-39.76v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.18l-6.2-51.17.25.25c1.13 1.13 2.66 1.76 4.24 1.76.26 0 .53-.02.79-.05 1.85-.25 3.48-1.34 4.41-2.97l20.07-35.06 46.47 23.23c.24.12.49.23.75.31 12.05 4.1 20.15 15.38 20.15 28.05v35.65zm-67.04-346.65h-10.84l28.38 39.84 28.38-39.84h-10.84c-3.31 0-6-2.69-6-6v-64.58h-98.7c-3.31 0-6-2.69-6-6s2.69-6 6-6h104.7c3.31 0 6 2.69 6 6v64.58h16.48c2.25 0 4.3 1.25 5.33 3.25s.86 4.4-.45 6.23l-40.02 56.18c-1.13 1.58-2.95 2.52-4.89 2.52s-3.76-.94-4.89-2.52l-40.02-56.18c-1.3-1.83-1.48-4.23-.45-6.23s3.09-3.25 5.33-3.25h16.48v-23.5h-65.38c-3.31 0-6-2.69-6-6s2.69-6 6-6h71.38c3.31 0 6 2.69 6 6v35.5c.02 3.31-2.67 6-5.98 6zm-118.44 50.65v-133.26c0-21.18-17.23-38.41-38.41-38.41h-207.7c-21.18-.01-38.41 17.23-38.41 38.41v133.26c0 21.18 17.23 38.41 38.41 38.41h105.8l64.8 55.11c1.11.94 2.49 1.43 3.89 1.43.85 0 1.71-.18 2.52-.55 2.12-.98 3.48-3.11 3.48-5.45v-50.54h27.21c21.18 0 38.41-17.23 38.41-38.41zm-71.62 26.41c-3.31 0-6 2.69-6 6v43.56l-56.59-48.13c-1.08-.92-2.46-1.43-3.89-1.43h-108.01c-14.56 0-26.41-11.85-26.41-26.41v-133.26c0-14.56 11.85-26.41 26.41-26.41h207.69c14.56 0 26.41 11.85 26.41 26.41v133.26c0 14.56-11.85 26.41-26.41 26.41zm-156.34-87.87h56.97c3.31 0 6-2.69 6-6v-39.2l8.55-8.55c2.34-2.34 2.34-6.14 0-8.49-2.34-2.34-6.14-2.34-8.48 0l-.7.7c-.98-1.97-3.01-3.32-5.36-3.32h-56.98c-3.31 0-6 2.69-6 6v52.85c0 3.32 2.69 6.01 6 6.01zm6-52.86h44.97v2.69l-18.16 18.16-8.84-8.84c-2.34-2.34-6.14-2.34-8.49 0-2.34 2.34-2.34 6.14 0 8.49l13.08 13.08c1.17 1.17 2.71 1.76 4.24 1.76s3.07-.59 4.24-1.76l13.92-13.92v21.2h-44.96zm173.62 3.08c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 31.92c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 36.52c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.68 5.99 6zm0 31.92c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.69 5.99 6zm-119.36 165.01h10.84l-28.38-39.84-28.38 39.84h10.84c3.31 0 6 2.69 6 6v64.58h98.7c3.31 0 6 2.69 6 6s-2.69 6-6 6h-104.69c-3.31 0-6-2.69-6-6v-64.58h-16.48c-2.25 0-4.3-1.25-5.33-3.25s-.86-4.4.45-6.23l40.02-56.18c1.13-1.58 2.95-2.52 4.89-2.52s3.76.94 4.89 2.52l40.02 56.18c1.3 1.83 1.48 4.23.45 6.23s-3.09 3.25-5.33 3.25h-16.48v23.5h65.38c3.31 0 6 2.69 6 6s-2.69 6-6 6h-71.38c-3.31 0-6-2.69-6-6v-35.5c-.03-3.31 2.66-6 5.97-6z\"></path></svg>				\n									<h5>\n							ærlig<br> rådgivning						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 510 510\"><path d=\"m192.036 385.845c-4.787-46.972-19.459-64.336-30.658-82.352-8.672-13.951-15.5-28.245-15.5-54.252 0-60.242 48.865-109.109 109.135-109.109 60.242 0 109.109 48.866 109.109 109.109 0 26.007-6.828 40.301-15.5 54.252-11.199 18.016-25.871 35.38-30.658 82.352 9.985 2.864 17.345 12.101 17.345 22.975v36.44c0 13.109-10.747 23.866-23.893 23.866h-10.334v9.945c0 12.588-10.341 22.929-22.93 22.929h-46.304c-12.589 0-22.93-10.341-22.93-22.929v-9.945h-10.334c-13.146 0-23.893-10.757-23.893-23.866v-36.44c0-10.874 7.36-20.111 17.345-22.975zm111.948-.917c4.199-42.194 15.78-62.332 26.488-79.049 10.147-15.842 19.65-28.207 19.65-56.638 0-52.513-42.597-95.109-95.109-95.109-52.537 0-95.135 42.596-95.135 95.109 0 28.431 9.503 40.796 19.65 56.638 10.708 16.717 22.289 36.855 26.488 79.049zm2.554-78.61c-1.175 13.701-11.985 24.191-24.783 24.191-13.527 0-24.862-12.086-24.862-26.673v-99.328c0-14.12 11.335-26.673 24.862-26.673 11.309 0 21.031 8.139 23.975 19.497 9.12 3.904 15.688 13.438 15.688 24.78 0 1.153-.068 2.289-.201 3.403 5.078 5.326 8.283 12.802 8.283 21.117 0 6.39-1.889 12.262-5.06 17.053 1.996 4.099 3.13 8.773 3.13 13.76 0 14.1-9.065 25.697-21.032 28.873zm-16.452-109.977c-1.964-2.729-4.916-4.506-8.331-4.506-6.192 0-10.862 6.21-10.862 12.673v99.328c0 6.677 4.67 12.673 10.862 12.673 5.516 0 9.822-4.614 10.717-10.425-4.709-1.416-8.923-4.144-12.279-7.814-2.607-2.852-2.409-7.283.443-9.89 2.851-2.607 7.282-2.408 9.889.443 2.416 2.642 5.72 4.356 9.402 4.356 7.733 0 13.643-7.218 13.643-15.734s-5.91-15.734-13.643-15.734c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7 5.352 0 10.388 1.655 14.658 4.533.593-1.743.915-3.634.915-5.612 0-2.11-.366-4.128-1.036-5.972-.769.858-1.588 1.66-2.453 2.397-2.94 2.507-7.361 2.156-9.869-.784-2.507-2.939-2.155-7.361.784-9.868 2.773-2.365 4.492-6.122 4.492-10.293 0-6.072-3.705-11.374-8.898-12.467-.154-.023-.307-.052-.458-.085-.499-.08-1.01-.121-1.532-.121-2.947 0-5.591 1.389-7.515 3.525-2.585 2.87-7.015 3.101-9.886.515-2.87-2.586-3.101-7.015-.515-9.886 3.111-3.453 7.059-5.988 11.472-7.252zm-104.526 67.344c-3.171-4.791-5.06-10.663-5.06-17.053 0-8.307 3.198-15.777 8.284-21.104-.133-1.118-.202-2.258-.202-3.416 0-11.354 6.582-20.897 15.717-24.792 2.948-11.354 12.67-19.485 23.946-19.485 13.56 0 24.888 12.555 24.888 26.673v99.328c0 14.585-11.328 26.673-24.888 26.673-12.765 0-23.578-10.484-24.757-24.184-11.98-3.166-21.058-14.769-21.058-28.88 0-4.987 1.134-9.661 3.13-13.76zm9.982-23.036c-.675 1.847-1.042 3.869-1.042 5.983 0 1.978.322 3.869.915 5.612 4.27-2.878 9.306-4.533 14.658-4.533 3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7-7.733 0-13.643 7.218-13.643 15.734s5.91 15.734 13.643 15.734c3.682 0 6.986-1.714 9.402-4.356 2.607-2.851 7.038-3.05 9.889-.443 2.852 2.607 3.05 7.038.443 9.89-3.35 3.664-7.556 6.389-12.255 7.807.891 5.813 5.192 10.432 10.693 10.432 6.21 0 10.888-5.993 10.888-12.673v-99.328c0-6.466-4.678-12.673-10.888-12.673-3.404 0-6.349 1.777-8.309 4.507 4.421 1.264 8.367 3.8 11.476 7.251 2.586 2.871 2.355 7.3-.516 9.886-2.87 2.586-7.3 2.355-9.886-.515-1.926-2.138-4.574-3.525-7.54-3.525-.493 0-.976.037-1.448.108-.196.045-.395.082-.596.11-5.165 1.118-8.844 6.404-8.844 12.455 0 1.243.153 2.45.442 3.594.101.284.183.572.246.862.748 2.326 2.071 4.346 3.814 5.823 2.947 2.498 3.311 6.919.813 9.866s-6.919 3.312-9.866.814c-.878-.745-1.71-1.554-2.489-2.422zm3.042 158.279c-5.442 0-9.893 4.451-9.893 9.892v36.44c0 5.423 4.454 9.866 9.893 9.866h17.334c3.866 0 7 3.134 7 7v16.945c0 4.902 4.027 8.929 8.93 8.929h46.304c4.903 0 8.93-4.027 8.93-8.929v-16.945c0-3.866 3.134-7 7-7h17.334c5.439 0 9.893-4.443 9.893-9.866v-36.44c0-5.441-4.451-9.892-9.893-9.892zm63.416-314.093 2.907-5.412c1.828-3.403 6.075-4.683 9.479-2.854 3.403 1.828 4.682 6.075 2.854 9.479l-16.073 29.925c-1.22 2.271-3.589 3.688-6.167 3.688s-4.947-1.417-6.167-3.688l-16.073-29.925c-1.828-3.404-.549-7.651 2.854-9.479 3.404-1.829 7.651-.549 9.479 2.854l2.907 5.412v-69.835c0-3.863 3.137-7 7-7s7 3.137 7 7zm-132.198 54.758-49.381-49.381c-2.732-2.731-2.732-7.167 0-9.899s7.168-2.732 9.9 0l49.38 49.38-1.771-5.881c-1.114-3.7.985-7.608 4.684-8.722 3.7-1.114 7.607.985 8.721 4.685l9.796 32.526c.743 2.468.069 5.145-1.753 6.968-1.823 1.823-4.5 2.496-6.969 1.753l-32.526-9.795c-3.699-1.114-5.798-5.022-4.684-8.721s5.022-5.798 8.721-4.684zm-44.859 122.299h-69.835c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7h69.835l-5.412-2.907c-3.403-1.828-4.682-6.076-2.854-9.479 1.828-3.404 6.075-4.683 9.479-2.855l29.926 16.074c2.271 1.22 3.688 3.589 3.688 6.167 0 2.577-1.417 4.947-3.688 6.166l-29.926 16.074c-3.404 1.828-7.651.549-9.479-2.855-1.828-3.403-.549-7.651 2.854-9.479zm54.758 118.198-49.38 49.38c-2.732 2.732-7.168 2.732-9.9 0s-2.732-7.167 0-9.899l49.381-49.381-5.882 1.772c-3.699 1.114-7.607-.985-8.721-4.685-1.114-3.699.985-7.607 4.684-8.721l32.526-9.795c2.469-.743 5.146-.07 6.969 1.753 1.822 1.823 2.496 4.5 1.753 6.968l-9.796 32.527c-1.114 3.699-5.021 5.798-8.721 4.684-3.699-1.114-5.798-5.022-4.684-8.721zm240.497-240.497 5.882-1.771c3.699-1.114 7.607.985 8.721 4.684s-.985 7.607-4.684 8.721l-32.526 9.795c-2.469.743-5.146.07-6.969-1.753-1.822-1.823-2.496-4.5-1.753-6.968l9.796-32.526c1.114-3.7 5.021-5.799 8.721-4.685 3.699 1.114 5.798 5.022 4.684 8.722l-1.771 5.881 49.38-49.38c2.732-2.732 7.168-2.732 9.9 0s2.732 7.168 0 9.899zm44.859 122.299 5.412 2.906c3.403 1.828 4.682 6.076 2.854 9.479-1.828 3.404-6.075 4.683-9.479 2.855l-29.926-16.074c-2.271-1.219-3.688-3.589-3.688-6.166 0-2.578 1.417-4.947 3.688-6.167l29.926-16.074c3.404-1.828 7.651-.549 9.479 2.855 1.828 3.403.549 7.651-2.854 9.479l-5.412 2.907h69.835c3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7zm-54.758 118.198 1.771 5.882c1.114 3.699-.985 7.607-4.684 8.721-3.7 1.114-7.607-.985-8.721-4.684l-9.796-32.527c-.743-2.468-.069-5.145 1.753-6.968 1.823-1.823 4.5-2.496 6.969-1.753l32.526 9.795c3.699 1.114 5.798 5.022 4.684 8.721-1.114 3.7-5.022 5.799-8.721 4.685l-5.882-1.772 49.381 49.381c2.732 2.732 2.732 7.167 0 9.899s-7.168 2.732-9.9 0z\"></path></svg>				\n									<h5>\n							gennemtænkte løsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"outline\"><path d=\"M486.41,144A28,28,0,0,0,472,92H349.123l5.457-21.828a48.513,48.513,0,0,0-12.848-46.153A41.035,41.035,0,0,0,312.609,12H308a8.009,8.009,0,0,0-8,8V47.413l-19.233,64.112A17.376,17.376,0,0,1,268,123.539V112a4,4,0,0,0-4-4H152a4,4,0,0,0-4,4v72a4,4,0,0,0,8,0V116h72V276H156V248a4,4,0,0,0-8,0v32a4,4,0,0,0,4,4H264a4,4,0,0,0,4-4V268.5h11.168A37.07,37.07,0,0,1,305.092,279a45.025,45.025,0,0,0,31.48,12.752L440,292a27.987,27.987,0,0,0,19.369-48.2,27.987,27.987,0,0,0,16-48A28,28,0,0,0,486.41,144ZM260,276H236V116h24Zm212-88H396a4,4,0,0,0,0,8h60a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h40a20,20,0,0,1,.01,40l-103.428-.25a37.07,37.07,0,0,1-25.924-10.5,45.031,45.031,0,0,0-31.49-12.752H268V131.686a25.317,25.317,0,0,0,20.429-17.862l19.4-64.675A4,4,0,0,0,308,48V20h4.609a33.082,33.082,0,0,1,23.481,9.69,40.507,40.507,0,0,1,10.728,38.541l-6.7,26.8A4,4,0,0,0,344,100H472a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h72a20,20,0,0,1,0,40Z\"></path><path d=\"M194.5,183.243l-1.9-.217a4,4,0,0,0-4.169,2.491L184.29,195.9H135.278l-3.539-9.317a4,4,0,0,0-7.478,2.84l2.459,6.477h-8.474L68.452,156.872a4,4,0,1,0-4.935,6.3L77.6,174.209,56.961,194.48l-6.636-5.491a4,4,0,1,0-5.1,6.163L87.219,229.9a44.1,44.1,0,0,0,28.05,10.1H212a8.009,8.009,0,0,0,8-8V203.9a8.009,8.009,0,0,0-8-8h-8v-2.01A10.708,10.708,0,0,0,194.5,183.243ZM212,203.9V232H115.269a36.081,36.081,0,0,1-22.951-8.264l-29.16-24.128,20.8-20.422L114.4,203.045a4,4,0,0,0,2.468.852H187a4,4,0,0,0,3.715-2.517l3.929-9.843a2.712,2.712,0,0,1,1.356,2.35v6.01a4,4,0,0,0,4,4Z\"></path><path d=\"M223.084,484.672,200.87,469.863V346.36A44.1,44.1,0,0,0,195.327,325l-17.183-30.94a4,4,0,0,0-7,3.884l17.184,30.94a36.073,36.073,0,0,1,4.537,17.478V468H164.333a4,4,0,1,0,0,8h31.321l12,8H152.865V352a4,4,0,0,0-.358-1.655l-25.454-56A4,4,0,0,0,123.411,292H114.2a4,4,0,0,0-3.945,4.658l8.862,53.175a36.016,36.016,0,0,1-1.951,18.949L78.642,468H48.333a4,4,0,1,0,0,8H80.377L92,484H32.088L76.63,361.366a4.017,4.017,0,0,0,.183-2.044L61.1,268H136a4,4,0,0,0,0-8H59.233L30.555,173.966A19.723,19.723,0,0,1,49.27,148H76a12,12,0,0,0,24,0h15.2a21.975,21.975,0,0,1,8.395,1.652l10.889,4.458a4,4,0,1,0,3.032-7.4L126.63,142.25A29.938,29.938,0,0,0,115.2,140H100v-4.527A16.014,16.014,0,0,0,112,120V103.473A16.014,16.014,0,0,0,124,88V80a4,4,0,0,0-4-4H90A22.025,22.025,0,0,0,68,98v18a12.02,12.02,0,0,0,8,11.314V140H49.27a27.723,27.723,0,0,0-26.305,36.5l29.493,88.482,16.29,94.655-46.128,127A4,4,0,0,0,26.38,492h78.485a4,4,0,0,0,2.268-7.3L86.3,470.368l38.318-98.69a44.018,44.018,0,0,0,2.385-23.16L118.921,300h1.914l24.03,52.867V488a4,4,0,0,0,4,4h72a4,4,0,0,0,2.219-7.328ZM76,98A14.015,14.015,0,0,1,90,84h26v4a8.009,8.009,0,0,1-8,8H92a4,4,0,0,0-4,4,11.962,11.962,0,0,1-1.53,5.881A12.044,12.044,0,0,0,76,104.686Zm4,14a3.981,3.981,0,0,1,3.407,1.9,4,4,0,0,0,5.956.975c.207-.171.7-.648.7-.648.032-.028.061-.057.09-.087A19.907,19.907,0,0,0,95.6,104H104v16a8.009,8.009,0,0,1-8,8,12.133,12.133,0,0,1-2.681-.3,4,4,0,1,0-1.775,7.8c.151.035.3.06.456.091V148a4,4,0,1,1-8,0V124a4,4,0,0,0-4-4,4,4,0,0,1,0-8Z\"></path></g></svg>				\n									<h5>\n							arbejde udført med ansvar						\n					</h5>\n				<p>Vi lover ikke mere, end vi kan holde – men vi holder det, vi lover.</p>			<h2>KONTAKT OS</h2>		<p>Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.</p>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 13:59:35', '2026-01-26 13:59:35', '', 10, 'https://mrarif.me/cpnordic/?p=568', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(569, 1, '2026-01-26 14:02:42', '2026-01-26 14:02:42', '<img width=\"2560\" height=\"1157\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-scaled.png\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-scaled.png 2560w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-300x136.png 300w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-1024x463.png 1024w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-768x347.png 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-1536x694.png 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-2048x925.png 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />																					<a role=\"button\">\n									Kontakt\n					</a>', 'Header', '', 'inherit', 'closed', 'closed', '', '30-revision-v1', '', '', '2026-01-26 14:02:42', '2026-01-26 14:02:42', '', 30, 'https://mrarif.me/cpnordic/?p=569', 0, 'revision', '', 0),
(570, 1, '2026-01-26 14:03:36', '2026-01-26 14:03:36', '', 'Tjenester', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-01-26 14:03:36', '2026-01-26 14:03:36', '', 12, 'https://mrarif.me/cpnordic/?p=570', 0, 'revision', '', 0),
(571, 1, '2026-01-26 14:03:36', '2026-01-26 14:03:36', '', 'Tjenester', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-01-26 14:03:36', '2026-01-26 14:03:36', '', 12, 'https://mrarif.me/cpnordic/?p=571', 0, 'revision', '', 0),
(572, 1, '2026-01-26 14:03:36', '2026-01-26 14:03:36', '<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n									<h4>\n						Carporte					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>', 'Tjenester', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-01-26 14:03:36', '2026-01-26 14:03:36', '', 12, 'https://mrarif.me/cpnordic/?p=572', 0, 'revision', '', 0),
(573, 1, '2026-01-26 14:05:32', '2026-01-26 14:05:32', '<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n									<h4>\n						Carporte					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>', 'Tjenester', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-01-26 14:05:32', '2026-01-26 14:05:32', '', 12, 'https://mrarif.me/cpnordic/?p=573', 0, 'revision', '', 0),
(574, 1, '2026-01-26 14:05:32', '2026-01-26 14:05:32', '<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n									<h4>\n						Carporte					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>', 'Tjenester', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-01-26 14:05:32', '2026-01-26 14:05:32', '', 12, 'https://mrarif.me/cpnordic/?p=574', 0, 'revision', '', 0),
(575, 1, '2026-01-26 14:05:32', '2026-01-26 14:05:32', '<h5>\n						Terrasser					</h5>\n									<h5>\n						Totalrenoveringer					</h5>\n									<h5>\n						Tilbygninger					</h5>\n									<h5>\n						Carporte					</h5>\n									<h5>\n						Udskiftning og montering af døre og vinduer					</h5>\n									<h5>\n						Carporte					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>', 'Tjenester', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-01-26 14:05:32', '2026-01-26 14:05:32', '', 12, 'https://mrarif.me/cpnordic/?p=575', 0, 'revision', '', 0),
(576, 1, '2026-01-26 14:07:46', '2026-01-26 14:07:46', '<h5>\n						Terrasser					</h5>\n									<h5>\n						Totalrenoveringer					</h5>\n									<h5>\n						Tilbygninger					</h5>\n									<h5>\n						Carporte					</h5>\n									<h5>\n						Udskiftning og montering af døre og vinduer					</h5>\n									<h5>\n						Carporte					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>', 'Tjenester', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-01-26 14:07:46', '2026-01-26 14:07:46', '', 12, 'https://mrarif.me/cpnordic/?p=576', 0, 'revision', '', 0),
(577, 1, '2026-01-26 14:07:46', '2026-01-26 14:07:46', '<h5>\n						Terrasser					</h5>\n									<h5>\n						Totalrenoveringer					</h5>\n									<h5>\n						Tilbygninger					</h5>\n									<h5>\n						Carporte					</h5>\n									<h5>\n						Udskiftning og montering af døre og vinduer					</h5>\n									<h5>\n						Carporte					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>', 'Tjenester', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-01-26 14:07:46', '2026-01-26 14:07:46', '', 12, 'https://mrarif.me/cpnordic/?p=577', 0, 'revision', '', 0),
(678, 1, '2026-01-26 14:58:05', '2026-01-26 14:58:05', '<h5>\n						TØMRERARBEJDE					</h5>\n									<h5>\n						TAGDÆKNING					</h5>\n							<h2>Vores tjenester</h2>', 'Tjenester', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-01-26 14:58:05', '2026-01-26 14:58:05', '', 12, 'https://mrarif.me/cpnordic/?p=678', 0, 'revision', '', 0),
(679, 1, '2026-01-26 14:58:05', '2026-01-26 14:58:05', '<h5>\n						TØMRERARBEJDE					</h5>\n									<h5>\n						TAGDÆKNING					</h5>\n							<h2>Vores tjenester</h2>', 'Tjenester', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-01-26 14:58:05', '2026-01-26 14:58:05', '', 12, 'https://mrarif.me/cpnordic/?p=679', 0, 'revision', '', 0),
(680, 1, '2026-01-26 14:58:05', '2026-01-26 14:58:05', '<h5>\n						TØMRERARBEJDE					</h5>\n									<h5>\n						TAGDÆKNING					</h5>\n							<h2>Vores tjenester</h2>', 'Tjenester', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-01-26 14:58:05', '2026-01-26 14:58:05', '', 12, 'https://mrarif.me/cpnordic/?p=680', 0, 'revision', '', 0),
(681, 1, '2026-01-26 14:58:39', '2026-01-26 14:58:39', '<h5>\n						TØMRERARBEJDE					</h5>\n									<h5>\n						TAGDÆKNING					</h5>\n							<h2>Vores tjenester</h2>', 'Tjenester', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-01-26 14:58:39', '2026-01-26 14:58:39', '', 12, 'https://mrarif.me/cpnordic/?p=681', 0, 'revision', '', 0),
(682, 1, '2026-01-26 14:58:39', '2026-01-26 14:58:39', '<h5>\n						TØMRERARBEJDE					</h5>\n									<h5>\n						TAGDÆKNING					</h5>\n							<h2>Vores tjenester</h2>', 'Tjenester', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-01-26 14:58:39', '2026-01-26 14:58:39', '', 12, 'https://mrarif.me/cpnordic/?p=682', 0, 'revision', '', 0),
(683, 1, '2026-01-26 14:58:40', '2026-01-26 14:58:40', '<h5>\n						TØMRERARBEJDE					</h5>\n									<h5>\n						TAGDÆKNING					</h5>\n							<h2>Vores tjenester</h2>', 'Tjenester', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-01-26 14:58:40', '2026-01-26 14:58:40', '', 12, 'https://mrarif.me/cpnordic/?p=683', 0, 'revision', '', 0),
(684, 1, '2026-01-26 15:00:34', '2026-01-26 15:00:34', '<h5>\n						TØMRERARBEJDE					</h5>\n									<h5>\n						TAGDÆKNING					</h5>\n							<h2>Vores tjenester</h2>', 'Tjenester', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-01-26 15:00:34', '2026-01-26 15:00:34', '', 12, 'https://mrarif.me/cpnordic/?p=684', 0, 'revision', '', 0),
(685, 1, '2026-01-26 15:00:34', '2026-01-26 15:00:34', '<h5>\n						TØMRERARBEJDE					</h5>\n									<h5>\n						TAGDÆKNING					</h5>\n							<h2>Vores tjenester</h2>', 'Tjenester', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-01-26 15:00:34', '2026-01-26 15:00:34', '', 12, 'https://mrarif.me/cpnordic/?p=685', 0, 'revision', '', 0),
(578, 1, '2026-01-26 14:07:47', '2026-01-26 14:07:47', '<h5>\n						Terrasser					</h5>\n									<h5>\n						Totalrenoveringer					</h5>\n									<h5>\n						Tilbygninger					</h5>\n									<h5>\n						Carporte					</h5>\n									<h5>\n						Udskiftning og montering af døre og vinduer					</h5>\n									<h5>\n						Carporte					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>Terrasser</h2>		<p>Terrasser er et af vores kerneområder. Vi lægger stor vægt på korrekt opbygning, stabilitet og finish, da det er afgørende for både holdbarhed og udseende.</p><p>Vi arbejder gerne med hårdttræsterrasser og foretrækker træsorter som cumaru, ipé og thermobehandlet træ, da disse materialer har:</p>					<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										høj naturlig holdbarhed\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										god modstandsdygtighed over for fugt\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										et flot og tidløst udtryk\n									</li>\n						</ul>\n				<p>Med korrekt montage giver disse træsorter terrasser, der ældes pænt og kræver minimal vedligeholdelse.</p><p>Vi rådgiver altid om materialevalg, opbygning og vedligeholdelse, så løsningen passer til både huset, omgivelserne og kundens behov.</p>', 'Tjenester', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-01-26 14:07:47', '2026-01-26 14:07:47', '', 12, 'https://mrarif.me/cpnordic/?p=578', 0, 'revision', '', 0),
(579, 1, '2026-01-26 14:08:22', '2026-01-26 14:08:22', '', 'Default Kit', '', 'inherit', 'closed', 'closed', '', '26-revision-v1', '', '', '2026-01-26 14:08:22', '2026-01-26 14:08:22', '', 26, 'https://mrarif.me/cpnordic/?p=579', 0, 'revision', '', 0),
(580, 1, '2026-01-26 14:08:37', '2026-01-26 14:08:37', '', 'Default Kit', '', 'inherit', 'closed', 'closed', '', '26-revision-v1', '', '', '2026-01-26 14:08:37', '2026-01-26 14:08:37', '', 26, 'https://mrarif.me/cpnordic/?p=580', 0, 'revision', '', 0),
(581, 1, '2026-01-26 14:11:19', '2026-01-26 14:11:19', '', 'Default Kit', '', 'inherit', 'closed', 'closed', '', '26-revision-v1', '', '', '2026-01-26 14:11:19', '2026-01-26 14:11:19', '', 26, 'https://mrarif.me/cpnordic/?p=581', 0, 'revision', '', 0),
(582, 1, '2026-01-26 14:11:31', '2026-01-26 14:11:31', '', 'Default Kit', '', 'inherit', 'closed', 'closed', '', '26-revision-v1', '', '', '2026-01-26 14:11:31', '2026-01-26 14:11:31', '', 26, 'https://mrarif.me/cpnordic/?p=582', 0, 'revision', '', 0),
(583, 1, '2026-01-26 14:13:08', '2026-01-26 14:13:08', '<img width=\"2560\" height=\"1157\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-scaled.png\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-scaled.png 2560w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-300x136.png 300w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-1024x463.png 1024w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-768x347.png 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-1536x694.png 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-2048x925.png 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />																					<a role=\"button\">\n									Kontakt\n					</a>', 'Header', '', 'inherit', 'closed', 'closed', '', '30-revision-v1', '', '', '2026-01-26 14:13:08', '2026-01-26 14:13:08', '', 30, 'https://mrarif.me/cpnordic/?p=583', 0, 'revision', '', 0),
(585, 1, '2026-01-26 14:19:07', '2026-01-26 14:19:07', '', 'Referencer', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-01-26 14:19:07', '2026-01-26 14:19:07', '', 14, 'https://mrarif.me/cpnordic/?p=585', 0, 'revision', '', 0),
(586, 1, '2026-01-26 14:19:07', '2026-01-26 14:19:07', '', 'Referencer', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-01-26 14:19:07', '2026-01-26 14:19:07', '', 14, 'https://mrarif.me/cpnordic/?p=586', 0, 'revision', '', 0),
(587, 1, '2026-01-26 14:19:07', '2026-01-26 14:19:07', '<h2>SPECIALLØSNINGER</h2>		<p>Vi har en særlig interesse for opgaver, der kræver noget ekstra. Når standardløsninger ikke passer, finder vi løsninger, der gør.</p>			<h5>Det kan være:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										teknisk krævende detaljer\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										specialtilpassede konstruktioner\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										samspil mellem flere materialer\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										løsninger, der kræver ekstra omtanke\n									</li>\n						</ul>\n				<p>Her kommer vores faglighed og erfaring virkelig i spil.</p>', 'Referencer', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-01-26 14:19:07', '2026-01-26 14:19:07', '', 14, 'https://mrarif.me/cpnordic/?p=587', 0, 'revision', '', 0),
(588, 1, '2026-01-26 14:19:30', '2026-01-26 14:19:30', '<h2>SPECIALLØSNINGER</h2>		<p>Vi har en særlig interesse for opgaver, der kræver noget ekstra. Når standardløsninger ikke passer, finder vi løsninger, der gør.</p>			<h5>Det kan være:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										teknisk krævende detaljer\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										specialtilpassede konstruktioner\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										samspil mellem flere materialer\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										løsninger, der kræver ekstra omtanke\n									</li>\n						</ul>\n				<p>Her kommer vores faglighed og erfaring virkelig i spil.</p>', 'Referencer', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-01-26 14:19:30', '2026-01-26 14:19:30', '', 14, 'https://mrarif.me/cpnordic/?p=588', 0, 'revision', '', 0),
(589, 1, '2026-01-26 14:19:30', '2026-01-26 14:19:30', '<h2>SPECIALLØSNINGER</h2>		<p>Vi har en særlig interesse for opgaver, der kræver noget ekstra. Når standardløsninger ikke passer, finder vi løsninger, der gør.</p>			<h5>Det kan være:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										teknisk krævende detaljer\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										specialtilpassede konstruktioner\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										samspil mellem flere materialer\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										løsninger, der kræver ekstra omtanke\n									</li>\n						</ul>\n				<p>Her kommer vores faglighed og erfaring virkelig i spil.</p>', 'Referencer', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-01-26 14:19:30', '2026-01-26 14:19:30', '', 14, 'https://mrarif.me/cpnordic/?p=589', 0, 'revision', '', 0),
(590, 1, '2026-01-26 14:19:31', '2026-01-26 14:19:31', '<h2>SPECIALLØSNINGER</h2>		<p>Vi har en særlig interesse for opgaver, der kræver noget ekstra. Når standardløsninger ikke passer, finder vi løsninger, der gør.</p>			<h5>Det kan være:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										teknisk krævende detaljer\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										specialtilpassede konstruktioner\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										samspil mellem flere materialer\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										løsninger, der kræver ekstra omtanke\n									</li>\n						</ul>\n				<p>Her kommer vores faglighed og erfaring virkelig i spil.</p>', 'Referencer', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-01-26 14:19:31', '2026-01-26 14:19:31', '', 14, 'https://mrarif.me/cpnordic/?p=590', 0, 'revision', '', 0),
(591, 1, '2026-01-26 14:21:07', '2026-01-26 14:21:07', '', 'Om os', '', 'inherit', 'closed', 'closed', '', '16-revision-v1', '', '', '2026-01-26 14:21:07', '2026-01-26 14:21:07', '', 16, 'https://mrarif.me/cpnordic/?p=591', 0, 'revision', '', 0),
(592, 1, '2026-01-26 14:21:07', '2026-01-26 14:21:07', '', 'Om os', '', 'inherit', 'closed', 'closed', '', '16-revision-v1', '', '', '2026-01-26 14:21:07', '2026-01-26 14:21:07', '', 16, 'https://mrarif.me/cpnordic/?p=592', 0, 'revision', '', 0),
(593, 1, '2026-01-26 14:21:07', '2026-01-26 14:21:07', '<h2>OM CP NORDIC ApS</h2>		<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p><p> </p>', 'Om os', '', 'inherit', 'closed', 'closed', '', '16-revision-v1', '', '', '2026-01-26 14:21:07', '2026-01-26 14:21:07', '', 16, 'https://mrarif.me/cpnordic/?p=593', 0, 'revision', '', 0),
(594, 1, '2026-01-26 14:21:25', '2026-01-26 14:21:25', '<h2>OM CP NORDIC ApS</h2>		<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p><p> </p>', 'Om os', '', 'inherit', 'closed', 'closed', '', '16-revision-v1', '', '', '2026-01-26 14:21:25', '2026-01-26 14:21:25', '', 16, 'https://mrarif.me/cpnordic/?p=594', 0, 'revision', '', 0),
(595, 1, '2026-01-26 14:21:25', '2026-01-26 14:21:25', '<h2>OM CP NORDIC ApS</h2>		<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p><p> </p>', 'Om os', '', 'inherit', 'closed', 'closed', '', '16-revision-v1', '', '', '2026-01-26 14:21:25', '2026-01-26 14:21:25', '', 16, 'https://mrarif.me/cpnordic/?p=595', 0, 'revision', '', 0),
(596, 1, '2026-01-26 14:21:25', '2026-01-26 14:21:25', '<h2>OM CP NORDIC ApS</h2>		<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p><p> </p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>', 'Om os', '', 'inherit', 'closed', 'closed', '', '16-revision-v1', '', '', '2026-01-26 14:21:25', '2026-01-26 14:21:25', '', 16, 'https://mrarif.me/cpnordic/?p=596', 0, 'revision', '', 0),
(597, 1, '2026-01-26 14:21:54', '2026-01-26 14:21:54', '<h2>OM CP NORDIC ApS</h2>		<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p><p> </p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>', 'Om os', '', 'inherit', 'closed', 'closed', '', '16-revision-v1', '', '', '2026-01-26 14:21:54', '2026-01-26 14:21:54', '', 16, 'https://mrarif.me/cpnordic/?p=597', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(598, 1, '2026-01-26 14:21:54', '2026-01-26 14:21:54', '<h2>OM CP NORDIC ApS</h2>		<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p><p> </p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>', 'Om os', '', 'inherit', 'closed', 'closed', '', '16-revision-v1', '', '', '2026-01-26 14:21:54', '2026-01-26 14:21:54', '', 16, 'https://mrarif.me/cpnordic/?p=598', 0, 'revision', '', 0),
(599, 1, '2026-01-26 14:21:54', '2026-01-26 14:21:54', '<h2>OM CP NORDIC ApS</h2>		<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p><p> </p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>', 'Om os', '', 'inherit', 'closed', 'closed', '', '16-revision-v1', '', '', '2026-01-26 14:21:54', '2026-01-26 14:21:54', '', 16, 'https://mrarif.me/cpnordic/?p=599', 0, 'revision', '', 0),
(600, 1, '2026-01-26 14:22:50', '2026-01-26 14:22:50', '<img width=\"2560\" height=\"1157\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-scaled.png\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-scaled.png 2560w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-300x136.png 300w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-1024x463.png 1024w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-768x347.png 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-1536x694.png 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-2048x925.png 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />																					<a href=\"https://mrarif.me/cpnordic/kontakt/\">\n									Kontakt\n					</a>', 'Header', '', 'inherit', 'closed', 'closed', '', '30-revision-v1', '', '', '2026-01-26 14:22:50', '2026-01-26 14:22:50', '', 30, 'https://mrarif.me/cpnordic/?p=600', 0, 'revision', '', 0),
(601, 1, '2026-01-26 14:25:24', '2026-01-26 14:25:24', '', 'Kontakt', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-01-26 14:25:24', '2026-01-26 14:25:24', '', 18, 'https://mrarif.me/cpnordic/?p=601', 0, 'revision', '', 0),
(602, 1, '2026-01-26 14:25:25', '2026-01-26 14:25:25', '', 'Kontakt', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-01-26 14:25:25', '2026-01-26 14:25:25', '', 18, 'https://mrarif.me/cpnordic/?p=602', 0, 'revision', '', 0),
(609, 1, '2026-01-26 14:32:57', '2026-01-26 14:32:57', '<h2>Kontaktoplysninger</h2>		<p>Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid<br />velkommen til at kontakte os for en uforpligtende snak.</p>					\n			<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>			\n							<h5>Placering</h5>							<ul>\n							<li>\n										Fyn, Denmark\n									</li>\n						</ul>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M358.57,0H153.43c-27.195,0-49.319,22.124-49.319,49.319v413.362h-0.001c0,27.195,22.124,49.319,49.319,49.319H358.57   c27.195,0,49.319-22.124,49.319-49.319V49.319C407.891,22.124,385.766,0,358.57,0z M124.508,49.319   c0-15.948,12.974-28.921,28.921-28.921H358.57c15.947,0,28.921,12.974,28.921,28.921v355.589H124.508V49.319z M387.493,462.681   L387.493,462.681c-0.001,15.947-12.975,28.921-28.922,28.921H153.43c-15.948,0-28.921-12.974-28.921-28.921v-37.374h262.984   V462.681z\"></path>	</g></g><g>	<g>		<path d=\"M270.789,34.677h-29.578c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h29.578   c5.632,0,10.199-4.566,10.199-10.199C280.988,39.243,276.421,34.677,270.789,34.677z\"></path>	</g></g><g>	<g>		<path d=\"M242.204,371.251h-91.255c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h91.255   c5.632,0,10.199-4.566,10.199-10.199C252.403,375.817,247.836,371.251,242.204,371.251z\"></path>	</g></g><g>	<g>		<path d=\"M282.518,371.251h-5.346c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h5.346   c5.632,0,10.199-4.566,10.199-10.199C292.717,375.817,288.15,371.251,282.518,371.251z\"></path>	</g></g><g>	<g>		<path d=\"M256,430.406c-14.903,0-27.028,12.125-27.028,27.028s12.125,27.028,27.028,27.028s27.028-12.125,27.028-27.028   S270.903,430.406,256,430.406z M256,464.064c-3.655,0-6.629-2.974-6.629-6.63s2.974-6.629,6.629-6.629s6.63,2.974,6.63,6.629   S259.655,464.064,256,464.064z\"></path>	</g></g><g>	<g>		<path d=\"M442.612,198.005c-3.984-3.983-10.44-3.983-14.425,0c-3.983,3.983-3.983,10.441,0,14.425   c23.463,23.462,23.463,61.639,0,85.1c-3.983,3.983-3.983,10.441,0,14.425c1.992,1.992,4.602,2.987,7.212,2.987   s5.22-0.995,7.212-2.987C474.027,280.539,474.027,229.421,442.612,198.005z\"></path>	</g></g><g>	<g>		<path d=\"M470.017,170.6c-3.984-3.983-10.44-3.983-14.425,0c-3.983,3.983-3.983,10.441,0,14.425   c18.686,18.686,28.977,43.53,28.977,69.955s-10.291,51.27-28.977,69.955c-3.983,3.983-3.983,10.441,0,14.425   c1.992,1.992,4.602,2.987,7.212,2.987c2.61,0,5.22-0.995,7.212-2.987C516.544,292.832,516.544,217.128,470.017,170.6z\"></path>	</g></g><g>	<g>		<path d=\"M83.812,212.43c3.984-3.984,3.984-10.442,0.001-14.425c-3.984-3.983-10.44-3.983-14.425,0   c-31.416,31.416-31.416,82.533,0,113.95c1.992,1.992,4.602,2.987,7.212,2.987s5.22-0.995,7.212-2.987   c3.983-3.983,3.983-10.441,0-14.425C60.349,274.068,60.349,235.891,83.812,212.43z\"></path>	</g></g><g>	<g>		<path d=\"M27.431,254.98c0-26.426,10.291-51.27,28.977-69.955c3.983-3.983,3.983-10.441,0-14.425   c-3.984-3.983-10.44-3.983-14.425,0c-46.527,46.528-46.527,122.232,0,168.76c1.992,1.992,4.602,2.987,7.212,2.987   s5.22-0.995,7.212-2.987c3.983-3.983,3.983-10.441,0-14.425C37.721,306.25,27.431,281.406,27.431,254.98z\"></path>	</g></g><g>	<g>		<path d=\"M358.06,280.099l-47.694-47.694c-2.619-2.618-6.45-3.613-10.015-2.595l-7.104,2.03c-1.015,0.291-1.98,0.736-2.859,1.323   l-14.669,9.788c-17.71-12.415-33.181-28.156-45.295-46.078l10.425-10.425c1.226-1.226,2.119-2.743,2.596-4.41l2.03-7.104   c1.018-3.562,0.023-7.394-2.595-10.015l-47.697-47.697c-2.827-2.827-7.048-3.742-10.793-2.338l-8.119,3.044   c-1.364,0.511-2.602,1.309-3.632,2.338c-1.938,1.939-3.804,4.028-5.546,6.207c-23.54,29.472-21.155,71.832,5.546,98.534   l77.633,77.632c14.404,14.405,33.363,21.733,52.398,21.732c16.254,0,32.564-5.343,46.138-16.187   c2.179-1.741,4.266-3.606,6.205-5.545c1.029-1.03,1.827-2.267,2.338-3.631l3.044-8.119   C361.802,287.147,360.888,282.927,358.06,280.099z M336.079,292.253c-21.345,17.05-52.032,15.315-71.379-4.034l-77.633-77.632   c-19.349-19.349-21.082-50.035-4.034-71.379c0.783-0.98,1.598-1.933,2.44-2.849l38.31,38.311l-13.591,13.592   c-3.331,3.331-3.947,8.51-1.491,12.531c15.402,25.2,36.656,46.986,61.469,63.005c3.415,2.204,7.81,2.17,11.194-0.085   l18.872-12.593l38.696,38.696C338.011,290.656,337.058,291.471,336.079,292.253z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>			\n							<h5>Ring til os</h5>							<ul>\n							<li>\n											<a href=\"tel:41600040\">\n											41 60 00 40\n											</a>\n									</li>\n						</ul>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M331.756,277.251l-42.881,43.026c-17.389,17.45-47.985,17.826-65.75,0l-42.883-43.026L26.226,431.767   C31.959,434.418,38.28,436,45,436h422c6.72,0,13.039-1.58,18.77-4.232L331.756,277.251z\"></path>	</g></g><g>	<g>		<path d=\"M467,76H45c-6.72,0-13.041,1.582-18.772,4.233l164.577,165.123c0.011,0.011,0.024,0.013,0.035,0.024   c0.011,0.011,0.013,0.026,0.013,0.026l53.513,53.69c5.684,5.684,17.586,5.684,23.27,0l53.502-53.681c0,0,0.013-0.024,0.024-0.035   c0,0,0.024-0.013,0.035-0.024L485.77,80.232C480.039,77.58,473.72,76,467,76z\"></path>	</g></g><g>	<g>		<path d=\"M4.786,101.212C1.82,107.21,0,113.868,0,121v270c0,7.132,1.818,13.79,4.785,19.788l154.283-154.783L4.786,101.212z\"></path>	</g></g><g>	<g>		<path d=\"M507.214,101.21L352.933,256.005L507.214,410.79C510.18,404.792,512,398.134,512,391V121   C512,113.866,510.18,107.208,507.214,101.21z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>			\n							<h5>Send os en email</h5>							<ul>\n							<li>\n											<a href=\"mailto:kontakt@cp-nordic.dk\">\n											kontakt@cp-nordic.dk\n											</a>\n									</li>\n						</ul>\n							<h3>Kontakt</h3>		<p>Vi dækker hele Fyn – og tager også gerne opgaver uden for området, når der er tale om spændende eller teknisk krævende løsninger.</p>', 'Kontakt', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-01-26 14:32:57', '2026-01-26 14:32:57', '', 18, 'https://mrarif.me/cpnordic/?p=609', 0, 'revision', '', 0),
(603, 1, '2026-01-26 14:25:25', '2026-01-26 14:25:25', '<h2>Kontaktoplysninger</h2>		<p>Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid<br />velkommen til at kontakte os for en uforpligtende snak.</p>					\n			<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>			\n							<h4>LOCATION\n</h4>							<ul>\n							<li>\n										10777 Westheimer Rd Suite 1100 Houston, Tx 77042\n									</li>\n						</ul>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M358.57,0H153.43c-27.195,0-49.319,22.124-49.319,49.319v413.362h-0.001c0,27.195,22.124,49.319,49.319,49.319H358.57   c27.195,0,49.319-22.124,49.319-49.319V49.319C407.891,22.124,385.766,0,358.57,0z M124.508,49.319   c0-15.948,12.974-28.921,28.921-28.921H358.57c15.947,0,28.921,12.974,28.921,28.921v355.589H124.508V49.319z M387.493,462.681   L387.493,462.681c-0.001,15.947-12.975,28.921-28.922,28.921H153.43c-15.948,0-28.921-12.974-28.921-28.921v-37.374h262.984   V462.681z\"></path>	</g></g><g>	<g>		<path d=\"M270.789,34.677h-29.578c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h29.578   c5.632,0,10.199-4.566,10.199-10.199C280.988,39.243,276.421,34.677,270.789,34.677z\"></path>	</g></g><g>	<g>		<path d=\"M242.204,371.251h-91.255c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h91.255   c5.632,0,10.199-4.566,10.199-10.199C252.403,375.817,247.836,371.251,242.204,371.251z\"></path>	</g></g><g>	<g>		<path d=\"M282.518,371.251h-5.346c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h5.346   c5.632,0,10.199-4.566,10.199-10.199C292.717,375.817,288.15,371.251,282.518,371.251z\"></path>	</g></g><g>	<g>		<path d=\"M256,430.406c-14.903,0-27.028,12.125-27.028,27.028s12.125,27.028,27.028,27.028s27.028-12.125,27.028-27.028   S270.903,430.406,256,430.406z M256,464.064c-3.655,0-6.629-2.974-6.629-6.63s2.974-6.629,6.629-6.629s6.63,2.974,6.63,6.629   S259.655,464.064,256,464.064z\"></path>	</g></g><g>	<g>		<path d=\"M442.612,198.005c-3.984-3.983-10.44-3.983-14.425,0c-3.983,3.983-3.983,10.441,0,14.425   c23.463,23.462,23.463,61.639,0,85.1c-3.983,3.983-3.983,10.441,0,14.425c1.992,1.992,4.602,2.987,7.212,2.987   s5.22-0.995,7.212-2.987C474.027,280.539,474.027,229.421,442.612,198.005z\"></path>	</g></g><g>	<g>		<path d=\"M470.017,170.6c-3.984-3.983-10.44-3.983-14.425,0c-3.983,3.983-3.983,10.441,0,14.425   c18.686,18.686,28.977,43.53,28.977,69.955s-10.291,51.27-28.977,69.955c-3.983,3.983-3.983,10.441,0,14.425   c1.992,1.992,4.602,2.987,7.212,2.987c2.61,0,5.22-0.995,7.212-2.987C516.544,292.832,516.544,217.128,470.017,170.6z\"></path>	</g></g><g>	<g>		<path d=\"M83.812,212.43c3.984-3.984,3.984-10.442,0.001-14.425c-3.984-3.983-10.44-3.983-14.425,0   c-31.416,31.416-31.416,82.533,0,113.95c1.992,1.992,4.602,2.987,7.212,2.987s5.22-0.995,7.212-2.987   c3.983-3.983,3.983-10.441,0-14.425C60.349,274.068,60.349,235.891,83.812,212.43z\"></path>	</g></g><g>	<g>		<path d=\"M27.431,254.98c0-26.426,10.291-51.27,28.977-69.955c3.983-3.983,3.983-10.441,0-14.425   c-3.984-3.983-10.44-3.983-14.425,0c-46.527,46.528-46.527,122.232,0,168.76c1.992,1.992,4.602,2.987,7.212,2.987   s5.22-0.995,7.212-2.987c3.983-3.983,3.983-10.441,0-14.425C37.721,306.25,27.431,281.406,27.431,254.98z\"></path>	</g></g><g>	<g>		<path d=\"M358.06,280.099l-47.694-47.694c-2.619-2.618-6.45-3.613-10.015-2.595l-7.104,2.03c-1.015,0.291-1.98,0.736-2.859,1.323   l-14.669,9.788c-17.71-12.415-33.181-28.156-45.295-46.078l10.425-10.425c1.226-1.226,2.119-2.743,2.596-4.41l2.03-7.104   c1.018-3.562,0.023-7.394-2.595-10.015l-47.697-47.697c-2.827-2.827-7.048-3.742-10.793-2.338l-8.119,3.044   c-1.364,0.511-2.602,1.309-3.632,2.338c-1.938,1.939-3.804,4.028-5.546,6.207c-23.54,29.472-21.155,71.832,5.546,98.534   l77.633,77.632c14.404,14.405,33.363,21.733,52.398,21.732c16.254,0,32.564-5.343,46.138-16.187   c2.179-1.741,4.266-3.606,6.205-5.545c1.029-1.03,1.827-2.267,2.338-3.631l3.044-8.119   C361.802,287.147,360.888,282.927,358.06,280.099z M336.079,292.253c-21.345,17.05-52.032,15.315-71.379-4.034l-77.633-77.632   c-19.349-19.349-21.082-50.035-4.034-71.379c0.783-0.98,1.598-1.933,2.44-2.849l38.31,38.311l-13.591,13.592   c-3.331,3.331-3.947,8.51-1.491,12.531c15.402,25.2,36.656,46.986,61.469,63.005c3.415,2.204,7.81,2.17,11.194-0.085   l18.872-12.593l38.696,38.696C338.011,290.656,337.058,291.471,336.079,292.253z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>			\n							<h4>CALL US\n</h4>							<ul>\n							<li>\n											<a href=\"tel:(281)5010350\">\n											(281) 501-0350\n											</a>\n									</li>\n						</ul>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M331.756,277.251l-42.881,43.026c-17.389,17.45-47.985,17.826-65.75,0l-42.883-43.026L26.226,431.767   C31.959,434.418,38.28,436,45,436h422c6.72,0,13.039-1.58,18.77-4.232L331.756,277.251z\"></path>	</g></g><g>	<g>		<path d=\"M467,76H45c-6.72,0-13.041,1.582-18.772,4.233l164.577,165.123c0.011,0.011,0.024,0.013,0.035,0.024   c0.011,0.011,0.013,0.026,0.013,0.026l53.513,53.69c5.684,5.684,17.586,5.684,23.27,0l53.502-53.681c0,0,0.013-0.024,0.024-0.035   c0,0,0.024-0.013,0.035-0.024L485.77,80.232C480.039,77.58,473.72,76,467,76z\"></path>	</g></g><g>	<g>		<path d=\"M4.786,101.212C1.82,107.21,0,113.868,0,121v270c0,7.132,1.818,13.79,4.785,19.788l154.283-154.783L4.786,101.212z\"></path>	</g></g><g>	<g>		<path d=\"M507.214,101.21L352.933,256.005L507.214,410.79C510.18,404.792,512,398.134,512,391V121   C512,113.866,510.18,107.208,507.214,101.21z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>			\n							<h4>EMAIL US\n</h4>							<ul>\n							<li>\n											<a href=\"mailto:intake@modernhh.com\">\n											intake@modernhh.com\n											</a>\n									</li>\n						</ul>\n							<h3>Hours of Operation</h3>				\n					Monday				\n							10:00 AM						\n						-\n							3:00 PM						\n					Tuesday				\n							10:00 AM						\n						-\n							3:00 PM						\n					Wednesday				\n							10:00 AM						\n						-\n							3:00 PM						\n					Thursday				\n							10:00 AM						\n						-\n							3:00 PM						\n					Friday				\n							10:00 AM						\n						-\n							3:00 PM						\n					Saturday				\n					Closed				\n					Sunday				\n					Closed				\n					<h4>To reach the office after hours</h4>										<a href=\"tel:8885101879\">\n									Call Us 888-510-1879\n					</a>\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=10777%20Westheimer%20Rd%2C%20Houston%2C%20TX%2077042%2C%20USA&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"10777 Westheimer Rd, Houston, TX 77042, USA\"\n					aria-label=\"10777 Westheimer Rd, Houston, TX 77042, USA\"\n			></iframe>', 'Kontakt', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-01-26 14:25:25', '2026-01-26 14:25:25', '', 18, 'https://mrarif.me/cpnordic/?p=603', 0, 'revision', '', 0),
(604, 1, '2026-01-26 14:31:10', '2026-01-26 14:31:10', '<h2>Kontaktoplysninger</h2>		<p>Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid<br />velkommen til at kontakte os for en uforpligtende snak.</p>					\n			<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>			\n							<h4>LOCATION\n</h4>							<ul>\n							<li>\n										10777 Westheimer Rd Suite 1100 Houston, Tx 77042\n									</li>\n						</ul>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M358.57,0H153.43c-27.195,0-49.319,22.124-49.319,49.319v413.362h-0.001c0,27.195,22.124,49.319,49.319,49.319H358.57   c27.195,0,49.319-22.124,49.319-49.319V49.319C407.891,22.124,385.766,0,358.57,0z M124.508,49.319   c0-15.948,12.974-28.921,28.921-28.921H358.57c15.947,0,28.921,12.974,28.921,28.921v355.589H124.508V49.319z M387.493,462.681   L387.493,462.681c-0.001,15.947-12.975,28.921-28.922,28.921H153.43c-15.948,0-28.921-12.974-28.921-28.921v-37.374h262.984   V462.681z\"></path>	</g></g><g>	<g>		<path d=\"M270.789,34.677h-29.578c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h29.578   c5.632,0,10.199-4.566,10.199-10.199C280.988,39.243,276.421,34.677,270.789,34.677z\"></path>	</g></g><g>	<g>		<path d=\"M242.204,371.251h-91.255c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h91.255   c5.632,0,10.199-4.566,10.199-10.199C252.403,375.817,247.836,371.251,242.204,371.251z\"></path>	</g></g><g>	<g>		<path d=\"M282.518,371.251h-5.346c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h5.346   c5.632,0,10.199-4.566,10.199-10.199C292.717,375.817,288.15,371.251,282.518,371.251z\"></path>	</g></g><g>	<g>		<path d=\"M256,430.406c-14.903,0-27.028,12.125-27.028,27.028s12.125,27.028,27.028,27.028s27.028-12.125,27.028-27.028   S270.903,430.406,256,430.406z M256,464.064c-3.655,0-6.629-2.974-6.629-6.63s2.974-6.629,6.629-6.629s6.63,2.974,6.63,6.629   S259.655,464.064,256,464.064z\"></path>	</g></g><g>	<g>		<path d=\"M442.612,198.005c-3.984-3.983-10.44-3.983-14.425,0c-3.983,3.983-3.983,10.441,0,14.425   c23.463,23.462,23.463,61.639,0,85.1c-3.983,3.983-3.983,10.441,0,14.425c1.992,1.992,4.602,2.987,7.212,2.987   s5.22-0.995,7.212-2.987C474.027,280.539,474.027,229.421,442.612,198.005z\"></path>	</g></g><g>	<g>		<path d=\"M470.017,170.6c-3.984-3.983-10.44-3.983-14.425,0c-3.983,3.983-3.983,10.441,0,14.425   c18.686,18.686,28.977,43.53,28.977,69.955s-10.291,51.27-28.977,69.955c-3.983,3.983-3.983,10.441,0,14.425   c1.992,1.992,4.602,2.987,7.212,2.987c2.61,0,5.22-0.995,7.212-2.987C516.544,292.832,516.544,217.128,470.017,170.6z\"></path>	</g></g><g>	<g>		<path d=\"M83.812,212.43c3.984-3.984,3.984-10.442,0.001-14.425c-3.984-3.983-10.44-3.983-14.425,0   c-31.416,31.416-31.416,82.533,0,113.95c1.992,1.992,4.602,2.987,7.212,2.987s5.22-0.995,7.212-2.987   c3.983-3.983,3.983-10.441,0-14.425C60.349,274.068,60.349,235.891,83.812,212.43z\"></path>	</g></g><g>	<g>		<path d=\"M27.431,254.98c0-26.426,10.291-51.27,28.977-69.955c3.983-3.983,3.983-10.441,0-14.425   c-3.984-3.983-10.44-3.983-14.425,0c-46.527,46.528-46.527,122.232,0,168.76c1.992,1.992,4.602,2.987,7.212,2.987   s5.22-0.995,7.212-2.987c3.983-3.983,3.983-10.441,0-14.425C37.721,306.25,27.431,281.406,27.431,254.98z\"></path>	</g></g><g>	<g>		<path d=\"M358.06,280.099l-47.694-47.694c-2.619-2.618-6.45-3.613-10.015-2.595l-7.104,2.03c-1.015,0.291-1.98,0.736-2.859,1.323   l-14.669,9.788c-17.71-12.415-33.181-28.156-45.295-46.078l10.425-10.425c1.226-1.226,2.119-2.743,2.596-4.41l2.03-7.104   c1.018-3.562,0.023-7.394-2.595-10.015l-47.697-47.697c-2.827-2.827-7.048-3.742-10.793-2.338l-8.119,3.044   c-1.364,0.511-2.602,1.309-3.632,2.338c-1.938,1.939-3.804,4.028-5.546,6.207c-23.54,29.472-21.155,71.832,5.546,98.534   l77.633,77.632c14.404,14.405,33.363,21.733,52.398,21.732c16.254,0,32.564-5.343,46.138-16.187   c2.179-1.741,4.266-3.606,6.205-5.545c1.029-1.03,1.827-2.267,2.338-3.631l3.044-8.119   C361.802,287.147,360.888,282.927,358.06,280.099z M336.079,292.253c-21.345,17.05-52.032,15.315-71.379-4.034l-77.633-77.632   c-19.349-19.349-21.082-50.035-4.034-71.379c0.783-0.98,1.598-1.933,2.44-2.849l38.31,38.311l-13.591,13.592   c-3.331,3.331-3.947,8.51-1.491,12.531c15.402,25.2,36.656,46.986,61.469,63.005c3.415,2.204,7.81,2.17,11.194-0.085   l18.872-12.593l38.696,38.696C338.011,290.656,337.058,291.471,336.079,292.253z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>			\n							<h4>CALL US\n</h4>							<ul>\n							<li>\n											<a href=\"tel:(281)5010350\">\n											(281) 501-0350\n											</a>\n									</li>\n						</ul>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M331.756,277.251l-42.881,43.026c-17.389,17.45-47.985,17.826-65.75,0l-42.883-43.026L26.226,431.767   C31.959,434.418,38.28,436,45,436h422c6.72,0,13.039-1.58,18.77-4.232L331.756,277.251z\"></path>	</g></g><g>	<g>		<path d=\"M467,76H45c-6.72,0-13.041,1.582-18.772,4.233l164.577,165.123c0.011,0.011,0.024,0.013,0.035,0.024   c0.011,0.011,0.013,0.026,0.013,0.026l53.513,53.69c5.684,5.684,17.586,5.684,23.27,0l53.502-53.681c0,0,0.013-0.024,0.024-0.035   c0,0,0.024-0.013,0.035-0.024L485.77,80.232C480.039,77.58,473.72,76,467,76z\"></path>	</g></g><g>	<g>		<path d=\"M4.786,101.212C1.82,107.21,0,113.868,0,121v270c0,7.132,1.818,13.79,4.785,19.788l154.283-154.783L4.786,101.212z\"></path>	</g></g><g>	<g>		<path d=\"M507.214,101.21L352.933,256.005L507.214,410.79C510.18,404.792,512,398.134,512,391V121   C512,113.866,510.18,107.208,507.214,101.21z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>			\n							<h4>EMAIL US\n</h4>							<ul>\n							<li>\n											<a href=\"mailto:intake@modernhh.com\">\n											intake@modernhh.com\n											</a>\n									</li>\n						</ul>\n							<h3>Hours of Operation</h3>				\n					Monday				\n							10:00 AM						\n						-\n							3:00 PM						\n					Tuesday				\n							10:00 AM						\n						-\n							3:00 PM						\n					Wednesday				\n							10:00 AM						\n						-\n							3:00 PM						\n					Thursday				\n							10:00 AM						\n						-\n							3:00 PM						\n					Friday				\n							10:00 AM						\n						-\n							3:00 PM						\n					Saturday				\n					Closed				\n					Sunday				\n					Closed				\n					<h4>To reach the office after hours</h4>										<a href=\"tel:8885101879\">\n									Call Us 888-510-1879\n					</a>\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=10777%20Westheimer%20Rd%2C%20Houston%2C%20TX%2077042%2C%20USA&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"10777 Westheimer Rd, Houston, TX 77042, USA\"\n					aria-label=\"10777 Westheimer Rd, Houston, TX 77042, USA\"\n			></iframe>', 'Kontakt', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-01-26 14:31:10', '2026-01-26 14:31:10', '', 18, 'https://mrarif.me/cpnordic/?p=604', 0, 'revision', '', 0),
(605, 1, '2026-01-26 14:31:10', '2026-01-26 14:31:10', '<h2>Kontaktoplysninger</h2>		<p>Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid<br />velkommen til at kontakte os for en uforpligtende snak.</p>					\n			<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>			\n							<h4>LOCATION\n</h4>							<ul>\n							<li>\n										10777 Westheimer Rd Suite 1100 Houston, Tx 77042\n									</li>\n						</ul>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M358.57,0H153.43c-27.195,0-49.319,22.124-49.319,49.319v413.362h-0.001c0,27.195,22.124,49.319,49.319,49.319H358.57   c27.195,0,49.319-22.124,49.319-49.319V49.319C407.891,22.124,385.766,0,358.57,0z M124.508,49.319   c0-15.948,12.974-28.921,28.921-28.921H358.57c15.947,0,28.921,12.974,28.921,28.921v355.589H124.508V49.319z M387.493,462.681   L387.493,462.681c-0.001,15.947-12.975,28.921-28.922,28.921H153.43c-15.948,0-28.921-12.974-28.921-28.921v-37.374h262.984   V462.681z\"></path>	</g></g><g>	<g>		<path d=\"M270.789,34.677h-29.578c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h29.578   c5.632,0,10.199-4.566,10.199-10.199C280.988,39.243,276.421,34.677,270.789,34.677z\"></path>	</g></g><g>	<g>		<path d=\"M242.204,371.251h-91.255c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h91.255   c5.632,0,10.199-4.566,10.199-10.199C252.403,375.817,247.836,371.251,242.204,371.251z\"></path>	</g></g><g>	<g>		<path d=\"M282.518,371.251h-5.346c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h5.346   c5.632,0,10.199-4.566,10.199-10.199C292.717,375.817,288.15,371.251,282.518,371.251z\"></path>	</g></g><g>	<g>		<path d=\"M256,430.406c-14.903,0-27.028,12.125-27.028,27.028s12.125,27.028,27.028,27.028s27.028-12.125,27.028-27.028   S270.903,430.406,256,430.406z M256,464.064c-3.655,0-6.629-2.974-6.629-6.63s2.974-6.629,6.629-6.629s6.63,2.974,6.63,6.629   S259.655,464.064,256,464.064z\"></path>	</g></g><g>	<g>		<path d=\"M442.612,198.005c-3.984-3.983-10.44-3.983-14.425,0c-3.983,3.983-3.983,10.441,0,14.425   c23.463,23.462,23.463,61.639,0,85.1c-3.983,3.983-3.983,10.441,0,14.425c1.992,1.992,4.602,2.987,7.212,2.987   s5.22-0.995,7.212-2.987C474.027,280.539,474.027,229.421,442.612,198.005z\"></path>	</g></g><g>	<g>		<path d=\"M470.017,170.6c-3.984-3.983-10.44-3.983-14.425,0c-3.983,3.983-3.983,10.441,0,14.425   c18.686,18.686,28.977,43.53,28.977,69.955s-10.291,51.27-28.977,69.955c-3.983,3.983-3.983,10.441,0,14.425   c1.992,1.992,4.602,2.987,7.212,2.987c2.61,0,5.22-0.995,7.212-2.987C516.544,292.832,516.544,217.128,470.017,170.6z\"></path>	</g></g><g>	<g>		<path d=\"M83.812,212.43c3.984-3.984,3.984-10.442,0.001-14.425c-3.984-3.983-10.44-3.983-14.425,0   c-31.416,31.416-31.416,82.533,0,113.95c1.992,1.992,4.602,2.987,7.212,2.987s5.22-0.995,7.212-2.987   c3.983-3.983,3.983-10.441,0-14.425C60.349,274.068,60.349,235.891,83.812,212.43z\"></path>	</g></g><g>	<g>		<path d=\"M27.431,254.98c0-26.426,10.291-51.27,28.977-69.955c3.983-3.983,3.983-10.441,0-14.425   c-3.984-3.983-10.44-3.983-14.425,0c-46.527,46.528-46.527,122.232,0,168.76c1.992,1.992,4.602,2.987,7.212,2.987   s5.22-0.995,7.212-2.987c3.983-3.983,3.983-10.441,0-14.425C37.721,306.25,27.431,281.406,27.431,254.98z\"></path>	</g></g><g>	<g>		<path d=\"M358.06,280.099l-47.694-47.694c-2.619-2.618-6.45-3.613-10.015-2.595l-7.104,2.03c-1.015,0.291-1.98,0.736-2.859,1.323   l-14.669,9.788c-17.71-12.415-33.181-28.156-45.295-46.078l10.425-10.425c1.226-1.226,2.119-2.743,2.596-4.41l2.03-7.104   c1.018-3.562,0.023-7.394-2.595-10.015l-47.697-47.697c-2.827-2.827-7.048-3.742-10.793-2.338l-8.119,3.044   c-1.364,0.511-2.602,1.309-3.632,2.338c-1.938,1.939-3.804,4.028-5.546,6.207c-23.54,29.472-21.155,71.832,5.546,98.534   l77.633,77.632c14.404,14.405,33.363,21.733,52.398,21.732c16.254,0,32.564-5.343,46.138-16.187   c2.179-1.741,4.266-3.606,6.205-5.545c1.029-1.03,1.827-2.267,2.338-3.631l3.044-8.119   C361.802,287.147,360.888,282.927,358.06,280.099z M336.079,292.253c-21.345,17.05-52.032,15.315-71.379-4.034l-77.633-77.632   c-19.349-19.349-21.082-50.035-4.034-71.379c0.783-0.98,1.598-1.933,2.44-2.849l38.31,38.311l-13.591,13.592   c-3.331,3.331-3.947,8.51-1.491,12.531c15.402,25.2,36.656,46.986,61.469,63.005c3.415,2.204,7.81,2.17,11.194-0.085   l18.872-12.593l38.696,38.696C338.011,290.656,337.058,291.471,336.079,292.253z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>			\n							<h4>CALL US\n</h4>							<ul>\n							<li>\n											<a href=\"tel:(281)5010350\">\n											(281) 501-0350\n											</a>\n									</li>\n						</ul>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M331.756,277.251l-42.881,43.026c-17.389,17.45-47.985,17.826-65.75,0l-42.883-43.026L26.226,431.767   C31.959,434.418,38.28,436,45,436h422c6.72,0,13.039-1.58,18.77-4.232L331.756,277.251z\"></path>	</g></g><g>	<g>		<path d=\"M467,76H45c-6.72,0-13.041,1.582-18.772,4.233l164.577,165.123c0.011,0.011,0.024,0.013,0.035,0.024   c0.011,0.011,0.013,0.026,0.013,0.026l53.513,53.69c5.684,5.684,17.586,5.684,23.27,0l53.502-53.681c0,0,0.013-0.024,0.024-0.035   c0,0,0.024-0.013,0.035-0.024L485.77,80.232C480.039,77.58,473.72,76,467,76z\"></path>	</g></g><g>	<g>		<path d=\"M4.786,101.212C1.82,107.21,0,113.868,0,121v270c0,7.132,1.818,13.79,4.785,19.788l154.283-154.783L4.786,101.212z\"></path>	</g></g><g>	<g>		<path d=\"M507.214,101.21L352.933,256.005L507.214,410.79C510.18,404.792,512,398.134,512,391V121   C512,113.866,510.18,107.208,507.214,101.21z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>			\n							<h4>EMAIL US\n</h4>							<ul>\n							<li>\n											<a href=\"mailto:intake@modernhh.com\">\n											intake@modernhh.com\n											</a>\n									</li>\n						</ul>\n							<h3>Hours of Operation</h3>				\n					Monday				\n							10:00 AM						\n						-\n							3:00 PM						\n					Tuesday				\n							10:00 AM						\n						-\n							3:00 PM						\n					Wednesday				\n							10:00 AM						\n						-\n							3:00 PM						\n					Thursday				\n							10:00 AM						\n						-\n							3:00 PM						\n					Friday				\n							10:00 AM						\n						-\n							3:00 PM						\n					Saturday				\n					Closed				\n					Sunday				\n					Closed				\n					<h4>To reach the office after hours</h4>										<a href=\"tel:8885101879\">\n									Call Us 888-510-1879\n					</a>\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=10777%20Westheimer%20Rd%2C%20Houston%2C%20TX%2077042%2C%20USA&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"10777 Westheimer Rd, Houston, TX 77042, USA\"\n					aria-label=\"10777 Westheimer Rd, Houston, TX 77042, USA\"\n			></iframe>', 'Kontakt', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-01-26 14:31:10', '2026-01-26 14:31:10', '', 18, 'https://mrarif.me/cpnordic/?p=605', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(606, 1, '2026-01-26 14:31:10', '2026-01-26 14:31:10', '<h2>Kontaktoplysninger</h2>		<p>Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid<br />velkommen til at kontakte os for en uforpligtende snak.</p>					\n			<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>			\n							<h5>Placering</h5>							<ul>\n							<li>\n										Fyn, Denmark\n									</li>\n						</ul>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M358.57,0H153.43c-27.195,0-49.319,22.124-49.319,49.319v413.362h-0.001c0,27.195,22.124,49.319,49.319,49.319H358.57   c27.195,0,49.319-22.124,49.319-49.319V49.319C407.891,22.124,385.766,0,358.57,0z M124.508,49.319   c0-15.948,12.974-28.921,28.921-28.921H358.57c15.947,0,28.921,12.974,28.921,28.921v355.589H124.508V49.319z M387.493,462.681   L387.493,462.681c-0.001,15.947-12.975,28.921-28.922,28.921H153.43c-15.948,0-28.921-12.974-28.921-28.921v-37.374h262.984   V462.681z\"></path>	</g></g><g>	<g>		<path d=\"M270.789,34.677h-29.578c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h29.578   c5.632,0,10.199-4.566,10.199-10.199C280.988,39.243,276.421,34.677,270.789,34.677z\"></path>	</g></g><g>	<g>		<path d=\"M242.204,371.251h-91.255c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h91.255   c5.632,0,10.199-4.566,10.199-10.199C252.403,375.817,247.836,371.251,242.204,371.251z\"></path>	</g></g><g>	<g>		<path d=\"M282.518,371.251h-5.346c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h5.346   c5.632,0,10.199-4.566,10.199-10.199C292.717,375.817,288.15,371.251,282.518,371.251z\"></path>	</g></g><g>	<g>		<path d=\"M256,430.406c-14.903,0-27.028,12.125-27.028,27.028s12.125,27.028,27.028,27.028s27.028-12.125,27.028-27.028   S270.903,430.406,256,430.406z M256,464.064c-3.655,0-6.629-2.974-6.629-6.63s2.974-6.629,6.629-6.629s6.63,2.974,6.63,6.629   S259.655,464.064,256,464.064z\"></path>	</g></g><g>	<g>		<path d=\"M442.612,198.005c-3.984-3.983-10.44-3.983-14.425,0c-3.983,3.983-3.983,10.441,0,14.425   c23.463,23.462,23.463,61.639,0,85.1c-3.983,3.983-3.983,10.441,0,14.425c1.992,1.992,4.602,2.987,7.212,2.987   s5.22-0.995,7.212-2.987C474.027,280.539,474.027,229.421,442.612,198.005z\"></path>	</g></g><g>	<g>		<path d=\"M470.017,170.6c-3.984-3.983-10.44-3.983-14.425,0c-3.983,3.983-3.983,10.441,0,14.425   c18.686,18.686,28.977,43.53,28.977,69.955s-10.291,51.27-28.977,69.955c-3.983,3.983-3.983,10.441,0,14.425   c1.992,1.992,4.602,2.987,7.212,2.987c2.61,0,5.22-0.995,7.212-2.987C516.544,292.832,516.544,217.128,470.017,170.6z\"></path>	</g></g><g>	<g>		<path d=\"M83.812,212.43c3.984-3.984,3.984-10.442,0.001-14.425c-3.984-3.983-10.44-3.983-14.425,0   c-31.416,31.416-31.416,82.533,0,113.95c1.992,1.992,4.602,2.987,7.212,2.987s5.22-0.995,7.212-2.987   c3.983-3.983,3.983-10.441,0-14.425C60.349,274.068,60.349,235.891,83.812,212.43z\"></path>	</g></g><g>	<g>		<path d=\"M27.431,254.98c0-26.426,10.291-51.27,28.977-69.955c3.983-3.983,3.983-10.441,0-14.425   c-3.984-3.983-10.44-3.983-14.425,0c-46.527,46.528-46.527,122.232,0,168.76c1.992,1.992,4.602,2.987,7.212,2.987   s5.22-0.995,7.212-2.987c3.983-3.983,3.983-10.441,0-14.425C37.721,306.25,27.431,281.406,27.431,254.98z\"></path>	</g></g><g>	<g>		<path d=\"M358.06,280.099l-47.694-47.694c-2.619-2.618-6.45-3.613-10.015-2.595l-7.104,2.03c-1.015,0.291-1.98,0.736-2.859,1.323   l-14.669,9.788c-17.71-12.415-33.181-28.156-45.295-46.078l10.425-10.425c1.226-1.226,2.119-2.743,2.596-4.41l2.03-7.104   c1.018-3.562,0.023-7.394-2.595-10.015l-47.697-47.697c-2.827-2.827-7.048-3.742-10.793-2.338l-8.119,3.044   c-1.364,0.511-2.602,1.309-3.632,2.338c-1.938,1.939-3.804,4.028-5.546,6.207c-23.54,29.472-21.155,71.832,5.546,98.534   l77.633,77.632c14.404,14.405,33.363,21.733,52.398,21.732c16.254,0,32.564-5.343,46.138-16.187   c2.179-1.741,4.266-3.606,6.205-5.545c1.029-1.03,1.827-2.267,2.338-3.631l3.044-8.119   C361.802,287.147,360.888,282.927,358.06,280.099z M336.079,292.253c-21.345,17.05-52.032,15.315-71.379-4.034l-77.633-77.632   c-19.349-19.349-21.082-50.035-4.034-71.379c0.783-0.98,1.598-1.933,2.44-2.849l38.31,38.311l-13.591,13.592   c-3.331,3.331-3.947,8.51-1.491,12.531c15.402,25.2,36.656,46.986,61.469,63.005c3.415,2.204,7.81,2.17,11.194-0.085   l18.872-12.593l38.696,38.696C338.011,290.656,337.058,291.471,336.079,292.253z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>			\n							<h5>Ring til os</h5>							<ul>\n							<li>\n											<a href=\"tel:41600040\">\n											41 60 00 40\n											</a>\n									</li>\n						</ul>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M331.756,277.251l-42.881,43.026c-17.389,17.45-47.985,17.826-65.75,0l-42.883-43.026L26.226,431.767   C31.959,434.418,38.28,436,45,436h422c6.72,0,13.039-1.58,18.77-4.232L331.756,277.251z\"></path>	</g></g><g>	<g>		<path d=\"M467,76H45c-6.72,0-13.041,1.582-18.772,4.233l164.577,165.123c0.011,0.011,0.024,0.013,0.035,0.024   c0.011,0.011,0.013,0.026,0.013,0.026l53.513,53.69c5.684,5.684,17.586,5.684,23.27,0l53.502-53.681c0,0,0.013-0.024,0.024-0.035   c0,0,0.024-0.013,0.035-0.024L485.77,80.232C480.039,77.58,473.72,76,467,76z\"></path>	</g></g><g>	<g>		<path d=\"M4.786,101.212C1.82,107.21,0,113.868,0,121v270c0,7.132,1.818,13.79,4.785,19.788l154.283-154.783L4.786,101.212z\"></path>	</g></g><g>	<g>		<path d=\"M507.214,101.21L352.933,256.005L507.214,410.79C510.18,404.792,512,398.134,512,391V121   C512,113.866,510.18,107.208,507.214,101.21z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>			\n							<h5>Send os en email</h5>							<ul>\n							<li>\n											<a href=\"mailto:kontakt@cp-nordic.dk\">\n											kontakt@cp-nordic.dk\n											</a>\n									</li>\n						</ul>\n							<h3>Hours of Operation</h3>				\n					Monday				\n							10:00 AM						\n						-\n							3:00 PM						\n					Tuesday				\n							10:00 AM						\n						-\n							3:00 PM						\n					Wednesday				\n							10:00 AM						\n						-\n							3:00 PM						\n					Thursday				\n							10:00 AM						\n						-\n							3:00 PM						\n					Friday				\n							10:00 AM						\n						-\n							3:00 PM						\n					Saturday				\n					Closed				\n					Sunday				\n					Closed				\n					<h4>To reach the office after hours</h4>										<a href=\"tel:8885101879\">\n									Call Us 888-510-1879\n					</a>\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=10777%20Westheimer%20Rd%2C%20Houston%2C%20TX%2077042%2C%20USA&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"10777 Westheimer Rd, Houston, TX 77042, USA\"\n					aria-label=\"10777 Westheimer Rd, Houston, TX 77042, USA\"\n			></iframe>', 'Kontakt', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-01-26 14:31:10', '2026-01-26 14:31:10', '', 18, 'https://mrarif.me/cpnordic/?p=606', 0, 'revision', '', 0),
(607, 1, '2026-01-26 14:32:57', '2026-01-26 14:32:57', '<h2>Kontaktoplysninger</h2>		<p>Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid<br />velkommen til at kontakte os for en uforpligtende snak.</p>					\n			<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>			\n							<h5>Placering</h5>							<ul>\n							<li>\n										Fyn, Denmark\n									</li>\n						</ul>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M358.57,0H153.43c-27.195,0-49.319,22.124-49.319,49.319v413.362h-0.001c0,27.195,22.124,49.319,49.319,49.319H358.57   c27.195,0,49.319-22.124,49.319-49.319V49.319C407.891,22.124,385.766,0,358.57,0z M124.508,49.319   c0-15.948,12.974-28.921,28.921-28.921H358.57c15.947,0,28.921,12.974,28.921,28.921v355.589H124.508V49.319z M387.493,462.681   L387.493,462.681c-0.001,15.947-12.975,28.921-28.922,28.921H153.43c-15.948,0-28.921-12.974-28.921-28.921v-37.374h262.984   V462.681z\"></path>	</g></g><g>	<g>		<path d=\"M270.789,34.677h-29.578c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h29.578   c5.632,0,10.199-4.566,10.199-10.199C280.988,39.243,276.421,34.677,270.789,34.677z\"></path>	</g></g><g>	<g>		<path d=\"M242.204,371.251h-91.255c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h91.255   c5.632,0,10.199-4.566,10.199-10.199C252.403,375.817,247.836,371.251,242.204,371.251z\"></path>	</g></g><g>	<g>		<path d=\"M282.518,371.251h-5.346c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h5.346   c5.632,0,10.199-4.566,10.199-10.199C292.717,375.817,288.15,371.251,282.518,371.251z\"></path>	</g></g><g>	<g>		<path d=\"M256,430.406c-14.903,0-27.028,12.125-27.028,27.028s12.125,27.028,27.028,27.028s27.028-12.125,27.028-27.028   S270.903,430.406,256,430.406z M256,464.064c-3.655,0-6.629-2.974-6.629-6.63s2.974-6.629,6.629-6.629s6.63,2.974,6.63,6.629   S259.655,464.064,256,464.064z\"></path>	</g></g><g>	<g>		<path d=\"M442.612,198.005c-3.984-3.983-10.44-3.983-14.425,0c-3.983,3.983-3.983,10.441,0,14.425   c23.463,23.462,23.463,61.639,0,85.1c-3.983,3.983-3.983,10.441,0,14.425c1.992,1.992,4.602,2.987,7.212,2.987   s5.22-0.995,7.212-2.987C474.027,280.539,474.027,229.421,442.612,198.005z\"></path>	</g></g><g>	<g>		<path d=\"M470.017,170.6c-3.984-3.983-10.44-3.983-14.425,0c-3.983,3.983-3.983,10.441,0,14.425   c18.686,18.686,28.977,43.53,28.977,69.955s-10.291,51.27-28.977,69.955c-3.983,3.983-3.983,10.441,0,14.425   c1.992,1.992,4.602,2.987,7.212,2.987c2.61,0,5.22-0.995,7.212-2.987C516.544,292.832,516.544,217.128,470.017,170.6z\"></path>	</g></g><g>	<g>		<path d=\"M83.812,212.43c3.984-3.984,3.984-10.442,0.001-14.425c-3.984-3.983-10.44-3.983-14.425,0   c-31.416,31.416-31.416,82.533,0,113.95c1.992,1.992,4.602,2.987,7.212,2.987s5.22-0.995,7.212-2.987   c3.983-3.983,3.983-10.441,0-14.425C60.349,274.068,60.349,235.891,83.812,212.43z\"></path>	</g></g><g>	<g>		<path d=\"M27.431,254.98c0-26.426,10.291-51.27,28.977-69.955c3.983-3.983,3.983-10.441,0-14.425   c-3.984-3.983-10.44-3.983-14.425,0c-46.527,46.528-46.527,122.232,0,168.76c1.992,1.992,4.602,2.987,7.212,2.987   s5.22-0.995,7.212-2.987c3.983-3.983,3.983-10.441,0-14.425C37.721,306.25,27.431,281.406,27.431,254.98z\"></path>	</g></g><g>	<g>		<path d=\"M358.06,280.099l-47.694-47.694c-2.619-2.618-6.45-3.613-10.015-2.595l-7.104,2.03c-1.015,0.291-1.98,0.736-2.859,1.323   l-14.669,9.788c-17.71-12.415-33.181-28.156-45.295-46.078l10.425-10.425c1.226-1.226,2.119-2.743,2.596-4.41l2.03-7.104   c1.018-3.562,0.023-7.394-2.595-10.015l-47.697-47.697c-2.827-2.827-7.048-3.742-10.793-2.338l-8.119,3.044   c-1.364,0.511-2.602,1.309-3.632,2.338c-1.938,1.939-3.804,4.028-5.546,6.207c-23.54,29.472-21.155,71.832,5.546,98.534   l77.633,77.632c14.404,14.405,33.363,21.733,52.398,21.732c16.254,0,32.564-5.343,46.138-16.187   c2.179-1.741,4.266-3.606,6.205-5.545c1.029-1.03,1.827-2.267,2.338-3.631l3.044-8.119   C361.802,287.147,360.888,282.927,358.06,280.099z M336.079,292.253c-21.345,17.05-52.032,15.315-71.379-4.034l-77.633-77.632   c-19.349-19.349-21.082-50.035-4.034-71.379c0.783-0.98,1.598-1.933,2.44-2.849l38.31,38.311l-13.591,13.592   c-3.331,3.331-3.947,8.51-1.491,12.531c15.402,25.2,36.656,46.986,61.469,63.005c3.415,2.204,7.81,2.17,11.194-0.085   l18.872-12.593l38.696,38.696C338.011,290.656,337.058,291.471,336.079,292.253z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>			\n							<h5>Ring til os</h5>							<ul>\n							<li>\n											<a href=\"tel:41600040\">\n											41 60 00 40\n											</a>\n									</li>\n						</ul>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M331.756,277.251l-42.881,43.026c-17.389,17.45-47.985,17.826-65.75,0l-42.883-43.026L26.226,431.767   C31.959,434.418,38.28,436,45,436h422c6.72,0,13.039-1.58,18.77-4.232L331.756,277.251z\"></path>	</g></g><g>	<g>		<path d=\"M467,76H45c-6.72,0-13.041,1.582-18.772,4.233l164.577,165.123c0.011,0.011,0.024,0.013,0.035,0.024   c0.011,0.011,0.013,0.026,0.013,0.026l53.513,53.69c5.684,5.684,17.586,5.684,23.27,0l53.502-53.681c0,0,0.013-0.024,0.024-0.035   c0,0,0.024-0.013,0.035-0.024L485.77,80.232C480.039,77.58,473.72,76,467,76z\"></path>	</g></g><g>	<g>		<path d=\"M4.786,101.212C1.82,107.21,0,113.868,0,121v270c0,7.132,1.818,13.79,4.785,19.788l154.283-154.783L4.786,101.212z\"></path>	</g></g><g>	<g>		<path d=\"M507.214,101.21L352.933,256.005L507.214,410.79C510.18,404.792,512,398.134,512,391V121   C512,113.866,510.18,107.208,507.214,101.21z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>			\n							<h5>Send os en email</h5>							<ul>\n							<li>\n											<a href=\"mailto:kontakt@cp-nordic.dk\">\n											kontakt@cp-nordic.dk\n											</a>\n									</li>\n						</ul>\n							<h3>Hours of Operation</h3>				\n					Monday				\n							10:00 AM						\n						-\n							3:00 PM						\n					Tuesday				\n							10:00 AM						\n						-\n							3:00 PM						\n					Wednesday				\n							10:00 AM						\n						-\n							3:00 PM						\n					Thursday				\n							10:00 AM						\n						-\n							3:00 PM						\n					Friday				\n							10:00 AM						\n						-\n							3:00 PM						\n					Saturday				\n					Closed				\n					Sunday				\n					Closed				\n					<h4>To reach the office after hours</h4>										<a href=\"tel:8885101879\">\n									Call Us 888-510-1879\n					</a>\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=10777%20Westheimer%20Rd%2C%20Houston%2C%20TX%2077042%2C%20USA&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"10777 Westheimer Rd, Houston, TX 77042, USA\"\n					aria-label=\"10777 Westheimer Rd, Houston, TX 77042, USA\"\n			></iframe>', 'Kontakt', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-01-26 14:32:57', '2026-01-26 14:32:57', '', 18, 'https://mrarif.me/cpnordic/?p=607', 0, 'revision', '', 0),
(608, 1, '2026-01-26 14:32:57', '2026-01-26 14:32:57', '<h2>Kontaktoplysninger</h2>		<p>Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid<br />velkommen til at kontakte os for en uforpligtende snak.</p>					\n			<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>			\n							<h5>Placering</h5>							<ul>\n							<li>\n										Fyn, Denmark\n									</li>\n						</ul>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M358.57,0H153.43c-27.195,0-49.319,22.124-49.319,49.319v413.362h-0.001c0,27.195,22.124,49.319,49.319,49.319H358.57   c27.195,0,49.319-22.124,49.319-49.319V49.319C407.891,22.124,385.766,0,358.57,0z M124.508,49.319   c0-15.948,12.974-28.921,28.921-28.921H358.57c15.947,0,28.921,12.974,28.921,28.921v355.589H124.508V49.319z M387.493,462.681   L387.493,462.681c-0.001,15.947-12.975,28.921-28.922,28.921H153.43c-15.948,0-28.921-12.974-28.921-28.921v-37.374h262.984   V462.681z\"></path>	</g></g><g>	<g>		<path d=\"M270.789,34.677h-29.578c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h29.578   c5.632,0,10.199-4.566,10.199-10.199C280.988,39.243,276.421,34.677,270.789,34.677z\"></path>	</g></g><g>	<g>		<path d=\"M242.204,371.251h-91.255c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h91.255   c5.632,0,10.199-4.566,10.199-10.199C252.403,375.817,247.836,371.251,242.204,371.251z\"></path>	</g></g><g>	<g>		<path d=\"M282.518,371.251h-5.346c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h5.346   c5.632,0,10.199-4.566,10.199-10.199C292.717,375.817,288.15,371.251,282.518,371.251z\"></path>	</g></g><g>	<g>		<path d=\"M256,430.406c-14.903,0-27.028,12.125-27.028,27.028s12.125,27.028,27.028,27.028s27.028-12.125,27.028-27.028   S270.903,430.406,256,430.406z M256,464.064c-3.655,0-6.629-2.974-6.629-6.63s2.974-6.629,6.629-6.629s6.63,2.974,6.63,6.629   S259.655,464.064,256,464.064z\"></path>	</g></g><g>	<g>		<path d=\"M442.612,198.005c-3.984-3.983-10.44-3.983-14.425,0c-3.983,3.983-3.983,10.441,0,14.425   c23.463,23.462,23.463,61.639,0,85.1c-3.983,3.983-3.983,10.441,0,14.425c1.992,1.992,4.602,2.987,7.212,2.987   s5.22-0.995,7.212-2.987C474.027,280.539,474.027,229.421,442.612,198.005z\"></path>	</g></g><g>	<g>		<path d=\"M470.017,170.6c-3.984-3.983-10.44-3.983-14.425,0c-3.983,3.983-3.983,10.441,0,14.425   c18.686,18.686,28.977,43.53,28.977,69.955s-10.291,51.27-28.977,69.955c-3.983,3.983-3.983,10.441,0,14.425   c1.992,1.992,4.602,2.987,7.212,2.987c2.61,0,5.22-0.995,7.212-2.987C516.544,292.832,516.544,217.128,470.017,170.6z\"></path>	</g></g><g>	<g>		<path d=\"M83.812,212.43c3.984-3.984,3.984-10.442,0.001-14.425c-3.984-3.983-10.44-3.983-14.425,0   c-31.416,31.416-31.416,82.533,0,113.95c1.992,1.992,4.602,2.987,7.212,2.987s5.22-0.995,7.212-2.987   c3.983-3.983,3.983-10.441,0-14.425C60.349,274.068,60.349,235.891,83.812,212.43z\"></path>	</g></g><g>	<g>		<path d=\"M27.431,254.98c0-26.426,10.291-51.27,28.977-69.955c3.983-3.983,3.983-10.441,0-14.425   c-3.984-3.983-10.44-3.983-14.425,0c-46.527,46.528-46.527,122.232,0,168.76c1.992,1.992,4.602,2.987,7.212,2.987   s5.22-0.995,7.212-2.987c3.983-3.983,3.983-10.441,0-14.425C37.721,306.25,27.431,281.406,27.431,254.98z\"></path>	</g></g><g>	<g>		<path d=\"M358.06,280.099l-47.694-47.694c-2.619-2.618-6.45-3.613-10.015-2.595l-7.104,2.03c-1.015,0.291-1.98,0.736-2.859,1.323   l-14.669,9.788c-17.71-12.415-33.181-28.156-45.295-46.078l10.425-10.425c1.226-1.226,2.119-2.743,2.596-4.41l2.03-7.104   c1.018-3.562,0.023-7.394-2.595-10.015l-47.697-47.697c-2.827-2.827-7.048-3.742-10.793-2.338l-8.119,3.044   c-1.364,0.511-2.602,1.309-3.632,2.338c-1.938,1.939-3.804,4.028-5.546,6.207c-23.54,29.472-21.155,71.832,5.546,98.534   l77.633,77.632c14.404,14.405,33.363,21.733,52.398,21.732c16.254,0,32.564-5.343,46.138-16.187   c2.179-1.741,4.266-3.606,6.205-5.545c1.029-1.03,1.827-2.267,2.338-3.631l3.044-8.119   C361.802,287.147,360.888,282.927,358.06,280.099z M336.079,292.253c-21.345,17.05-52.032,15.315-71.379-4.034l-77.633-77.632   c-19.349-19.349-21.082-50.035-4.034-71.379c0.783-0.98,1.598-1.933,2.44-2.849l38.31,38.311l-13.591,13.592   c-3.331,3.331-3.947,8.51-1.491,12.531c15.402,25.2,36.656,46.986,61.469,63.005c3.415,2.204,7.81,2.17,11.194-0.085   l18.872-12.593l38.696,38.696C338.011,290.656,337.058,291.471,336.079,292.253z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>			\n							<h5>Ring til os</h5>							<ul>\n							<li>\n											<a href=\"tel:41600040\">\n											41 60 00 40\n											</a>\n									</li>\n						</ul>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M331.756,277.251l-42.881,43.026c-17.389,17.45-47.985,17.826-65.75,0l-42.883-43.026L26.226,431.767   C31.959,434.418,38.28,436,45,436h422c6.72,0,13.039-1.58,18.77-4.232L331.756,277.251z\"></path>	</g></g><g>	<g>		<path d=\"M467,76H45c-6.72,0-13.041,1.582-18.772,4.233l164.577,165.123c0.011,0.011,0.024,0.013,0.035,0.024   c0.011,0.011,0.013,0.026,0.013,0.026l53.513,53.69c5.684,5.684,17.586,5.684,23.27,0l53.502-53.681c0,0,0.013-0.024,0.024-0.035   c0,0,0.024-0.013,0.035-0.024L485.77,80.232C480.039,77.58,473.72,76,467,76z\"></path>	</g></g><g>	<g>		<path d=\"M4.786,101.212C1.82,107.21,0,113.868,0,121v270c0,7.132,1.818,13.79,4.785,19.788l154.283-154.783L4.786,101.212z\"></path>	</g></g><g>	<g>		<path d=\"M507.214,101.21L352.933,256.005L507.214,410.79C510.18,404.792,512,398.134,512,391V121   C512,113.866,510.18,107.208,507.214,101.21z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>			\n							<h5>Send os en email</h5>							<ul>\n							<li>\n											<a href=\"mailto:kontakt@cp-nordic.dk\">\n											kontakt@cp-nordic.dk\n											</a>\n									</li>\n						</ul>\n							<h3>Hours of Operation</h3>				\n					Monday				\n							10:00 AM						\n						-\n							3:00 PM						\n					Tuesday				\n							10:00 AM						\n						-\n							3:00 PM						\n					Wednesday				\n							10:00 AM						\n						-\n							3:00 PM						\n					Thursday				\n							10:00 AM						\n						-\n							3:00 PM						\n					Friday				\n							10:00 AM						\n						-\n							3:00 PM						\n					Saturday				\n					Closed				\n					Sunday				\n					Closed				\n					<h4>To reach the office after hours</h4>										<a href=\"tel:8885101879\">\n									Call Us 888-510-1879\n					</a>\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=10777%20Westheimer%20Rd%2C%20Houston%2C%20TX%2077042%2C%20USA&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"10777 Westheimer Rd, Houston, TX 77042, USA\"\n					aria-label=\"10777 Westheimer Rd, Houston, TX 77042, USA\"\n			></iframe>', 'Kontakt', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-01-26 14:32:57', '2026-01-26 14:32:57', '', 18, 'https://mrarif.me/cpnordic/?p=608', 0, 'revision', '', 0),
(610, 1, '2026-01-26 14:33:06', '2026-01-26 14:33:06', '<h2>Kontaktoplysninger</h2>		<p>Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid<br />velkommen til at kontakte os for en uforpligtende snak.</p>					\n			<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>			\n							<h5>Placering</h5>							<ul>\n							<li>\n										Fyn, Denmark\n									</li>\n						</ul>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M358.57,0H153.43c-27.195,0-49.319,22.124-49.319,49.319v413.362h-0.001c0,27.195,22.124,49.319,49.319,49.319H358.57   c27.195,0,49.319-22.124,49.319-49.319V49.319C407.891,22.124,385.766,0,358.57,0z M124.508,49.319   c0-15.948,12.974-28.921,28.921-28.921H358.57c15.947,0,28.921,12.974,28.921,28.921v355.589H124.508V49.319z M387.493,462.681   L387.493,462.681c-0.001,15.947-12.975,28.921-28.922,28.921H153.43c-15.948,0-28.921-12.974-28.921-28.921v-37.374h262.984   V462.681z\"></path>	</g></g><g>	<g>		<path d=\"M270.789,34.677h-29.578c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h29.578   c5.632,0,10.199-4.566,10.199-10.199C280.988,39.243,276.421,34.677,270.789,34.677z\"></path>	</g></g><g>	<g>		<path d=\"M242.204,371.251h-91.255c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h91.255   c5.632,0,10.199-4.566,10.199-10.199C252.403,375.817,247.836,371.251,242.204,371.251z\"></path>	</g></g><g>	<g>		<path d=\"M282.518,371.251h-5.346c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h5.346   c5.632,0,10.199-4.566,10.199-10.199C292.717,375.817,288.15,371.251,282.518,371.251z\"></path>	</g></g><g>	<g>		<path d=\"M256,430.406c-14.903,0-27.028,12.125-27.028,27.028s12.125,27.028,27.028,27.028s27.028-12.125,27.028-27.028   S270.903,430.406,256,430.406z M256,464.064c-3.655,0-6.629-2.974-6.629-6.63s2.974-6.629,6.629-6.629s6.63,2.974,6.63,6.629   S259.655,464.064,256,464.064z\"></path>	</g></g><g>	<g>		<path d=\"M442.612,198.005c-3.984-3.983-10.44-3.983-14.425,0c-3.983,3.983-3.983,10.441,0,14.425   c23.463,23.462,23.463,61.639,0,85.1c-3.983,3.983-3.983,10.441,0,14.425c1.992,1.992,4.602,2.987,7.212,2.987   s5.22-0.995,7.212-2.987C474.027,280.539,474.027,229.421,442.612,198.005z\"></path>	</g></g><g>	<g>		<path d=\"M470.017,170.6c-3.984-3.983-10.44-3.983-14.425,0c-3.983,3.983-3.983,10.441,0,14.425   c18.686,18.686,28.977,43.53,28.977,69.955s-10.291,51.27-28.977,69.955c-3.983,3.983-3.983,10.441,0,14.425   c1.992,1.992,4.602,2.987,7.212,2.987c2.61,0,5.22-0.995,7.212-2.987C516.544,292.832,516.544,217.128,470.017,170.6z\"></path>	</g></g><g>	<g>		<path d=\"M83.812,212.43c3.984-3.984,3.984-10.442,0.001-14.425c-3.984-3.983-10.44-3.983-14.425,0   c-31.416,31.416-31.416,82.533,0,113.95c1.992,1.992,4.602,2.987,7.212,2.987s5.22-0.995,7.212-2.987   c3.983-3.983,3.983-10.441,0-14.425C60.349,274.068,60.349,235.891,83.812,212.43z\"></path>	</g></g><g>	<g>		<path d=\"M27.431,254.98c0-26.426,10.291-51.27,28.977-69.955c3.983-3.983,3.983-10.441,0-14.425   c-3.984-3.983-10.44-3.983-14.425,0c-46.527,46.528-46.527,122.232,0,168.76c1.992,1.992,4.602,2.987,7.212,2.987   s5.22-0.995,7.212-2.987c3.983-3.983,3.983-10.441,0-14.425C37.721,306.25,27.431,281.406,27.431,254.98z\"></path>	</g></g><g>	<g>		<path d=\"M358.06,280.099l-47.694-47.694c-2.619-2.618-6.45-3.613-10.015-2.595l-7.104,2.03c-1.015,0.291-1.98,0.736-2.859,1.323   l-14.669,9.788c-17.71-12.415-33.181-28.156-45.295-46.078l10.425-10.425c1.226-1.226,2.119-2.743,2.596-4.41l2.03-7.104   c1.018-3.562,0.023-7.394-2.595-10.015l-47.697-47.697c-2.827-2.827-7.048-3.742-10.793-2.338l-8.119,3.044   c-1.364,0.511-2.602,1.309-3.632,2.338c-1.938,1.939-3.804,4.028-5.546,6.207c-23.54,29.472-21.155,71.832,5.546,98.534   l77.633,77.632c14.404,14.405,33.363,21.733,52.398,21.732c16.254,0,32.564-5.343,46.138-16.187   c2.179-1.741,4.266-3.606,6.205-5.545c1.029-1.03,1.827-2.267,2.338-3.631l3.044-8.119   C361.802,287.147,360.888,282.927,358.06,280.099z M336.079,292.253c-21.345,17.05-52.032,15.315-71.379-4.034l-77.633-77.632   c-19.349-19.349-21.082-50.035-4.034-71.379c0.783-0.98,1.598-1.933,2.44-2.849l38.31,38.311l-13.591,13.592   c-3.331,3.331-3.947,8.51-1.491,12.531c15.402,25.2,36.656,46.986,61.469,63.005c3.415,2.204,7.81,2.17,11.194-0.085   l18.872-12.593l38.696,38.696C338.011,290.656,337.058,291.471,336.079,292.253z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>			\n							<h5>Ring til os</h5>							<ul>\n							<li>\n											<a href=\"tel:41600040\">\n											41 60 00 40\n											</a>\n									</li>\n						</ul>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M331.756,277.251l-42.881,43.026c-17.389,17.45-47.985,17.826-65.75,0l-42.883-43.026L26.226,431.767   C31.959,434.418,38.28,436,45,436h422c6.72,0,13.039-1.58,18.77-4.232L331.756,277.251z\"></path>	</g></g><g>	<g>		<path d=\"M467,76H45c-6.72,0-13.041,1.582-18.772,4.233l164.577,165.123c0.011,0.011,0.024,0.013,0.035,0.024   c0.011,0.011,0.013,0.026,0.013,0.026l53.513,53.69c5.684,5.684,17.586,5.684,23.27,0l53.502-53.681c0,0,0.013-0.024,0.024-0.035   c0,0,0.024-0.013,0.035-0.024L485.77,80.232C480.039,77.58,473.72,76,467,76z\"></path>	</g></g><g>	<g>		<path d=\"M4.786,101.212C1.82,107.21,0,113.868,0,121v270c0,7.132,1.818,13.79,4.785,19.788l154.283-154.783L4.786,101.212z\"></path>	</g></g><g>	<g>		<path d=\"M507.214,101.21L352.933,256.005L507.214,410.79C510.18,404.792,512,398.134,512,391V121   C512,113.866,510.18,107.208,507.214,101.21z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>			\n							<h5>Send os en email</h5>							<ul>\n							<li>\n											<a href=\"mailto:kontakt@cp-nordic.dk\">\n											kontakt@cp-nordic.dk\n											</a>\n									</li>\n						</ul>\n							<h3>Kontakt</h3>		<p>Vi dækker hele Fyn – og tager også gerne opgaver uden for området, når der er tale om spændende eller teknisk krævende løsninger.</p>', 'Kontakt', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-01-26 14:33:06', '2026-01-26 14:33:06', '', 18, 'https://mrarif.me/cpnordic/?p=610', 0, 'revision', '', 0),
(611, 1, '2026-01-26 14:33:06', '2026-01-26 14:33:06', '<h2>Kontaktoplysninger</h2>		<p>Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid<br />velkommen til at kontakte os for en uforpligtende snak.</p>					\n			<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>			\n							<h5>Placering</h5>							<ul>\n							<li>\n										Fyn, Denmark\n									</li>\n						</ul>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M358.57,0H153.43c-27.195,0-49.319,22.124-49.319,49.319v413.362h-0.001c0,27.195,22.124,49.319,49.319,49.319H358.57   c27.195,0,49.319-22.124,49.319-49.319V49.319C407.891,22.124,385.766,0,358.57,0z M124.508,49.319   c0-15.948,12.974-28.921,28.921-28.921H358.57c15.947,0,28.921,12.974,28.921,28.921v355.589H124.508V49.319z M387.493,462.681   L387.493,462.681c-0.001,15.947-12.975,28.921-28.922,28.921H153.43c-15.948,0-28.921-12.974-28.921-28.921v-37.374h262.984   V462.681z\"></path>	</g></g><g>	<g>		<path d=\"M270.789,34.677h-29.578c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h29.578   c5.632,0,10.199-4.566,10.199-10.199C280.988,39.243,276.421,34.677,270.789,34.677z\"></path>	</g></g><g>	<g>		<path d=\"M242.204,371.251h-91.255c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h91.255   c5.632,0,10.199-4.566,10.199-10.199C252.403,375.817,247.836,371.251,242.204,371.251z\"></path>	</g></g><g>	<g>		<path d=\"M282.518,371.251h-5.346c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h5.346   c5.632,0,10.199-4.566,10.199-10.199C292.717,375.817,288.15,371.251,282.518,371.251z\"></path>	</g></g><g>	<g>		<path d=\"M256,430.406c-14.903,0-27.028,12.125-27.028,27.028s12.125,27.028,27.028,27.028s27.028-12.125,27.028-27.028   S270.903,430.406,256,430.406z M256,464.064c-3.655,0-6.629-2.974-6.629-6.63s2.974-6.629,6.629-6.629s6.63,2.974,6.63,6.629   S259.655,464.064,256,464.064z\"></path>	</g></g><g>	<g>		<path d=\"M442.612,198.005c-3.984-3.983-10.44-3.983-14.425,0c-3.983,3.983-3.983,10.441,0,14.425   c23.463,23.462,23.463,61.639,0,85.1c-3.983,3.983-3.983,10.441,0,14.425c1.992,1.992,4.602,2.987,7.212,2.987   s5.22-0.995,7.212-2.987C474.027,280.539,474.027,229.421,442.612,198.005z\"></path>	</g></g><g>	<g>		<path d=\"M470.017,170.6c-3.984-3.983-10.44-3.983-14.425,0c-3.983,3.983-3.983,10.441,0,14.425   c18.686,18.686,28.977,43.53,28.977,69.955s-10.291,51.27-28.977,69.955c-3.983,3.983-3.983,10.441,0,14.425   c1.992,1.992,4.602,2.987,7.212,2.987c2.61,0,5.22-0.995,7.212-2.987C516.544,292.832,516.544,217.128,470.017,170.6z\"></path>	</g></g><g>	<g>		<path d=\"M83.812,212.43c3.984-3.984,3.984-10.442,0.001-14.425c-3.984-3.983-10.44-3.983-14.425,0   c-31.416,31.416-31.416,82.533,0,113.95c1.992,1.992,4.602,2.987,7.212,2.987s5.22-0.995,7.212-2.987   c3.983-3.983,3.983-10.441,0-14.425C60.349,274.068,60.349,235.891,83.812,212.43z\"></path>	</g></g><g>	<g>		<path d=\"M27.431,254.98c0-26.426,10.291-51.27,28.977-69.955c3.983-3.983,3.983-10.441,0-14.425   c-3.984-3.983-10.44-3.983-14.425,0c-46.527,46.528-46.527,122.232,0,168.76c1.992,1.992,4.602,2.987,7.212,2.987   s5.22-0.995,7.212-2.987c3.983-3.983,3.983-10.441,0-14.425C37.721,306.25,27.431,281.406,27.431,254.98z\"></path>	</g></g><g>	<g>		<path d=\"M358.06,280.099l-47.694-47.694c-2.619-2.618-6.45-3.613-10.015-2.595l-7.104,2.03c-1.015,0.291-1.98,0.736-2.859,1.323   l-14.669,9.788c-17.71-12.415-33.181-28.156-45.295-46.078l10.425-10.425c1.226-1.226,2.119-2.743,2.596-4.41l2.03-7.104   c1.018-3.562,0.023-7.394-2.595-10.015l-47.697-47.697c-2.827-2.827-7.048-3.742-10.793-2.338l-8.119,3.044   c-1.364,0.511-2.602,1.309-3.632,2.338c-1.938,1.939-3.804,4.028-5.546,6.207c-23.54,29.472-21.155,71.832,5.546,98.534   l77.633,77.632c14.404,14.405,33.363,21.733,52.398,21.732c16.254,0,32.564-5.343,46.138-16.187   c2.179-1.741,4.266-3.606,6.205-5.545c1.029-1.03,1.827-2.267,2.338-3.631l3.044-8.119   C361.802,287.147,360.888,282.927,358.06,280.099z M336.079,292.253c-21.345,17.05-52.032,15.315-71.379-4.034l-77.633-77.632   c-19.349-19.349-21.082-50.035-4.034-71.379c0.783-0.98,1.598-1.933,2.44-2.849l38.31,38.311l-13.591,13.592   c-3.331,3.331-3.947,8.51-1.491,12.531c15.402,25.2,36.656,46.986,61.469,63.005c3.415,2.204,7.81,2.17,11.194-0.085   l18.872-12.593l38.696,38.696C338.011,290.656,337.058,291.471,336.079,292.253z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>			\n							<h5>Ring til os</h5>							<ul>\n							<li>\n											<a href=\"tel:41600040\">\n											41 60 00 40\n											</a>\n									</li>\n						</ul>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M331.756,277.251l-42.881,43.026c-17.389,17.45-47.985,17.826-65.75,0l-42.883-43.026L26.226,431.767   C31.959,434.418,38.28,436,45,436h422c6.72,0,13.039-1.58,18.77-4.232L331.756,277.251z\"></path>	</g></g><g>	<g>		<path d=\"M467,76H45c-6.72,0-13.041,1.582-18.772,4.233l164.577,165.123c0.011,0.011,0.024,0.013,0.035,0.024   c0.011,0.011,0.013,0.026,0.013,0.026l53.513,53.69c5.684,5.684,17.586,5.684,23.27,0l53.502-53.681c0,0,0.013-0.024,0.024-0.035   c0,0,0.024-0.013,0.035-0.024L485.77,80.232C480.039,77.58,473.72,76,467,76z\"></path>	</g></g><g>	<g>		<path d=\"M4.786,101.212C1.82,107.21,0,113.868,0,121v270c0,7.132,1.818,13.79,4.785,19.788l154.283-154.783L4.786,101.212z\"></path>	</g></g><g>	<g>		<path d=\"M507.214,101.21L352.933,256.005L507.214,410.79C510.18,404.792,512,398.134,512,391V121   C512,113.866,510.18,107.208,507.214,101.21z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>			\n							<h5>Send os en email</h5>							<ul>\n							<li>\n											<a href=\"mailto:kontakt@cp-nordic.dk\">\n											kontakt@cp-nordic.dk\n											</a>\n									</li>\n						</ul>\n							<h3>Kontakt</h3>		<p>Vi dækker hele Fyn – og tager også gerne opgaver uden for området, når der er tale om spændende eller teknisk krævende løsninger.</p>', 'Kontakt', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-01-26 14:33:06', '2026-01-26 14:33:06', '', 18, 'https://mrarif.me/cpnordic/?p=611', 0, 'revision', '', 0),
(612, 1, '2026-01-26 14:33:06', '2026-01-26 14:33:06', '<h2>Kontaktoplysninger</h2>		<p>Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid<br />velkommen til at kontakte os for en uforpligtende snak.</p>					\n			<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>			\n							<h5>Placering</h5>							<ul>\n							<li>\n										Fyn, Denmark\n									</li>\n						</ul>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M358.57,0H153.43c-27.195,0-49.319,22.124-49.319,49.319v413.362h-0.001c0,27.195,22.124,49.319,49.319,49.319H358.57   c27.195,0,49.319-22.124,49.319-49.319V49.319C407.891,22.124,385.766,0,358.57,0z M124.508,49.319   c0-15.948,12.974-28.921,28.921-28.921H358.57c15.947,0,28.921,12.974,28.921,28.921v355.589H124.508V49.319z M387.493,462.681   L387.493,462.681c-0.001,15.947-12.975,28.921-28.922,28.921H153.43c-15.948,0-28.921-12.974-28.921-28.921v-37.374h262.984   V462.681z\"></path>	</g></g><g>	<g>		<path d=\"M270.789,34.677h-29.578c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h29.578   c5.632,0,10.199-4.566,10.199-10.199C280.988,39.243,276.421,34.677,270.789,34.677z\"></path>	</g></g><g>	<g>		<path d=\"M242.204,371.251h-91.255c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h91.255   c5.632,0,10.199-4.566,10.199-10.199C252.403,375.817,247.836,371.251,242.204,371.251z\"></path>	</g></g><g>	<g>		<path d=\"M282.518,371.251h-5.346c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h5.346   c5.632,0,10.199-4.566,10.199-10.199C292.717,375.817,288.15,371.251,282.518,371.251z\"></path>	</g></g><g>	<g>		<path d=\"M256,430.406c-14.903,0-27.028,12.125-27.028,27.028s12.125,27.028,27.028,27.028s27.028-12.125,27.028-27.028   S270.903,430.406,256,430.406z M256,464.064c-3.655,0-6.629-2.974-6.629-6.63s2.974-6.629,6.629-6.629s6.63,2.974,6.63,6.629   S259.655,464.064,256,464.064z\"></path>	</g></g><g>	<g>		<path d=\"M442.612,198.005c-3.984-3.983-10.44-3.983-14.425,0c-3.983,3.983-3.983,10.441,0,14.425   c23.463,23.462,23.463,61.639,0,85.1c-3.983,3.983-3.983,10.441,0,14.425c1.992,1.992,4.602,2.987,7.212,2.987   s5.22-0.995,7.212-2.987C474.027,280.539,474.027,229.421,442.612,198.005z\"></path>	</g></g><g>	<g>		<path d=\"M470.017,170.6c-3.984-3.983-10.44-3.983-14.425,0c-3.983,3.983-3.983,10.441,0,14.425   c18.686,18.686,28.977,43.53,28.977,69.955s-10.291,51.27-28.977,69.955c-3.983,3.983-3.983,10.441,0,14.425   c1.992,1.992,4.602,2.987,7.212,2.987c2.61,0,5.22-0.995,7.212-2.987C516.544,292.832,516.544,217.128,470.017,170.6z\"></path>	</g></g><g>	<g>		<path d=\"M83.812,212.43c3.984-3.984,3.984-10.442,0.001-14.425c-3.984-3.983-10.44-3.983-14.425,0   c-31.416,31.416-31.416,82.533,0,113.95c1.992,1.992,4.602,2.987,7.212,2.987s5.22-0.995,7.212-2.987   c3.983-3.983,3.983-10.441,0-14.425C60.349,274.068,60.349,235.891,83.812,212.43z\"></path>	</g></g><g>	<g>		<path d=\"M27.431,254.98c0-26.426,10.291-51.27,28.977-69.955c3.983-3.983,3.983-10.441,0-14.425   c-3.984-3.983-10.44-3.983-14.425,0c-46.527,46.528-46.527,122.232,0,168.76c1.992,1.992,4.602,2.987,7.212,2.987   s5.22-0.995,7.212-2.987c3.983-3.983,3.983-10.441,0-14.425C37.721,306.25,27.431,281.406,27.431,254.98z\"></path>	</g></g><g>	<g>		<path d=\"M358.06,280.099l-47.694-47.694c-2.619-2.618-6.45-3.613-10.015-2.595l-7.104,2.03c-1.015,0.291-1.98,0.736-2.859,1.323   l-14.669,9.788c-17.71-12.415-33.181-28.156-45.295-46.078l10.425-10.425c1.226-1.226,2.119-2.743,2.596-4.41l2.03-7.104   c1.018-3.562,0.023-7.394-2.595-10.015l-47.697-47.697c-2.827-2.827-7.048-3.742-10.793-2.338l-8.119,3.044   c-1.364,0.511-2.602,1.309-3.632,2.338c-1.938,1.939-3.804,4.028-5.546,6.207c-23.54,29.472-21.155,71.832,5.546,98.534   l77.633,77.632c14.404,14.405,33.363,21.733,52.398,21.732c16.254,0,32.564-5.343,46.138-16.187   c2.179-1.741,4.266-3.606,6.205-5.545c1.029-1.03,1.827-2.267,2.338-3.631l3.044-8.119   C361.802,287.147,360.888,282.927,358.06,280.099z M336.079,292.253c-21.345,17.05-52.032,15.315-71.379-4.034l-77.633-77.632   c-19.349-19.349-21.082-50.035-4.034-71.379c0.783-0.98,1.598-1.933,2.44-2.849l38.31,38.311l-13.591,13.592   c-3.331,3.331-3.947,8.51-1.491,12.531c15.402,25.2,36.656,46.986,61.469,63.005c3.415,2.204,7.81,2.17,11.194-0.085   l18.872-12.593l38.696,38.696C338.011,290.656,337.058,291.471,336.079,292.253z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>			\n							<h5>Ring til os</h5>							<ul>\n							<li>\n											<a href=\"tel:41600040\">\n											41 60 00 40\n											</a>\n									</li>\n						</ul>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M331.756,277.251l-42.881,43.026c-17.389,17.45-47.985,17.826-65.75,0l-42.883-43.026L26.226,431.767   C31.959,434.418,38.28,436,45,436h422c6.72,0,13.039-1.58,18.77-4.232L331.756,277.251z\"></path>	</g></g><g>	<g>		<path d=\"M467,76H45c-6.72,0-13.041,1.582-18.772,4.233l164.577,165.123c0.011,0.011,0.024,0.013,0.035,0.024   c0.011,0.011,0.013,0.026,0.013,0.026l53.513,53.69c5.684,5.684,17.586,5.684,23.27,0l53.502-53.681c0,0,0.013-0.024,0.024-0.035   c0,0,0.024-0.013,0.035-0.024L485.77,80.232C480.039,77.58,473.72,76,467,76z\"></path>	</g></g><g>	<g>		<path d=\"M4.786,101.212C1.82,107.21,0,113.868,0,121v270c0,7.132,1.818,13.79,4.785,19.788l154.283-154.783L4.786,101.212z\"></path>	</g></g><g>	<g>		<path d=\"M507.214,101.21L352.933,256.005L507.214,410.79C510.18,404.792,512,398.134,512,391V121   C512,113.866,510.18,107.208,507.214,101.21z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>			\n							<h5>Send os en email</h5>							<ul>\n							<li>\n											<a href=\"mailto:kontakt@cp-nordic.dk\">\n											kontakt@cp-nordic.dk\n											</a>\n									</li>\n						</ul>\n							<h3>KONTAKT OS</h3>		<p>Vi dækker hele Fyn – og tager også gerne opgaver uden for området, når der er tale om spændende eller teknisk krævende løsninger.</p>', 'Kontakt', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-01-26 14:33:06', '2026-01-26 14:33:06', '', 18, 'https://mrarif.me/cpnordic/?p=612', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(613, 1, '2026-01-26 14:33:44', '2026-01-26 14:33:44', '<h2>Kontaktoplysninger</h2>		<p>Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid<br />velkommen til at kontakte os for en uforpligtende snak.</p>					\n			<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>			\n							<h5>Placering</h5>							<ul>\n							<li>\n										Fyn, Denmark\n									</li>\n						</ul>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M358.57,0H153.43c-27.195,0-49.319,22.124-49.319,49.319v413.362h-0.001c0,27.195,22.124,49.319,49.319,49.319H358.57   c27.195,0,49.319-22.124,49.319-49.319V49.319C407.891,22.124,385.766,0,358.57,0z M124.508,49.319   c0-15.948,12.974-28.921,28.921-28.921H358.57c15.947,0,28.921,12.974,28.921,28.921v355.589H124.508V49.319z M387.493,462.681   L387.493,462.681c-0.001,15.947-12.975,28.921-28.922,28.921H153.43c-15.948,0-28.921-12.974-28.921-28.921v-37.374h262.984   V462.681z\"></path>	</g></g><g>	<g>		<path d=\"M270.789,34.677h-29.578c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h29.578   c5.632,0,10.199-4.566,10.199-10.199C280.988,39.243,276.421,34.677,270.789,34.677z\"></path>	</g></g><g>	<g>		<path d=\"M242.204,371.251h-91.255c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h91.255   c5.632,0,10.199-4.566,10.199-10.199C252.403,375.817,247.836,371.251,242.204,371.251z\"></path>	</g></g><g>	<g>		<path d=\"M282.518,371.251h-5.346c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h5.346   c5.632,0,10.199-4.566,10.199-10.199C292.717,375.817,288.15,371.251,282.518,371.251z\"></path>	</g></g><g>	<g>		<path d=\"M256,430.406c-14.903,0-27.028,12.125-27.028,27.028s12.125,27.028,27.028,27.028s27.028-12.125,27.028-27.028   S270.903,430.406,256,430.406z M256,464.064c-3.655,0-6.629-2.974-6.629-6.63s2.974-6.629,6.629-6.629s6.63,2.974,6.63,6.629   S259.655,464.064,256,464.064z\"></path>	</g></g><g>	<g>		<path d=\"M442.612,198.005c-3.984-3.983-10.44-3.983-14.425,0c-3.983,3.983-3.983,10.441,0,14.425   c23.463,23.462,23.463,61.639,0,85.1c-3.983,3.983-3.983,10.441,0,14.425c1.992,1.992,4.602,2.987,7.212,2.987   s5.22-0.995,7.212-2.987C474.027,280.539,474.027,229.421,442.612,198.005z\"></path>	</g></g><g>	<g>		<path d=\"M470.017,170.6c-3.984-3.983-10.44-3.983-14.425,0c-3.983,3.983-3.983,10.441,0,14.425   c18.686,18.686,28.977,43.53,28.977,69.955s-10.291,51.27-28.977,69.955c-3.983,3.983-3.983,10.441,0,14.425   c1.992,1.992,4.602,2.987,7.212,2.987c2.61,0,5.22-0.995,7.212-2.987C516.544,292.832,516.544,217.128,470.017,170.6z\"></path>	</g></g><g>	<g>		<path d=\"M83.812,212.43c3.984-3.984,3.984-10.442,0.001-14.425c-3.984-3.983-10.44-3.983-14.425,0   c-31.416,31.416-31.416,82.533,0,113.95c1.992,1.992,4.602,2.987,7.212,2.987s5.22-0.995,7.212-2.987   c3.983-3.983,3.983-10.441,0-14.425C60.349,274.068,60.349,235.891,83.812,212.43z\"></path>	</g></g><g>	<g>		<path d=\"M27.431,254.98c0-26.426,10.291-51.27,28.977-69.955c3.983-3.983,3.983-10.441,0-14.425   c-3.984-3.983-10.44-3.983-14.425,0c-46.527,46.528-46.527,122.232,0,168.76c1.992,1.992,4.602,2.987,7.212,2.987   s5.22-0.995,7.212-2.987c3.983-3.983,3.983-10.441,0-14.425C37.721,306.25,27.431,281.406,27.431,254.98z\"></path>	</g></g><g>	<g>		<path d=\"M358.06,280.099l-47.694-47.694c-2.619-2.618-6.45-3.613-10.015-2.595l-7.104,2.03c-1.015,0.291-1.98,0.736-2.859,1.323   l-14.669,9.788c-17.71-12.415-33.181-28.156-45.295-46.078l10.425-10.425c1.226-1.226,2.119-2.743,2.596-4.41l2.03-7.104   c1.018-3.562,0.023-7.394-2.595-10.015l-47.697-47.697c-2.827-2.827-7.048-3.742-10.793-2.338l-8.119,3.044   c-1.364,0.511-2.602,1.309-3.632,2.338c-1.938,1.939-3.804,4.028-5.546,6.207c-23.54,29.472-21.155,71.832,5.546,98.534   l77.633,77.632c14.404,14.405,33.363,21.733,52.398,21.732c16.254,0,32.564-5.343,46.138-16.187   c2.179-1.741,4.266-3.606,6.205-5.545c1.029-1.03,1.827-2.267,2.338-3.631l3.044-8.119   C361.802,287.147,360.888,282.927,358.06,280.099z M336.079,292.253c-21.345,17.05-52.032,15.315-71.379-4.034l-77.633-77.632   c-19.349-19.349-21.082-50.035-4.034-71.379c0.783-0.98,1.598-1.933,2.44-2.849l38.31,38.311l-13.591,13.592   c-3.331,3.331-3.947,8.51-1.491,12.531c15.402,25.2,36.656,46.986,61.469,63.005c3.415,2.204,7.81,2.17,11.194-0.085   l18.872-12.593l38.696,38.696C338.011,290.656,337.058,291.471,336.079,292.253z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>			\n							<h5>Ring til os</h5>							<ul>\n							<li>\n											<a href=\"tel:41600040\">\n											41 60 00 40\n											</a>\n									</li>\n						</ul>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M331.756,277.251l-42.881,43.026c-17.389,17.45-47.985,17.826-65.75,0l-42.883-43.026L26.226,431.767   C31.959,434.418,38.28,436,45,436h422c6.72,0,13.039-1.58,18.77-4.232L331.756,277.251z\"></path>	</g></g><g>	<g>		<path d=\"M467,76H45c-6.72,0-13.041,1.582-18.772,4.233l164.577,165.123c0.011,0.011,0.024,0.013,0.035,0.024   c0.011,0.011,0.013,0.026,0.013,0.026l53.513,53.69c5.684,5.684,17.586,5.684,23.27,0l53.502-53.681c0,0,0.013-0.024,0.024-0.035   c0,0,0.024-0.013,0.035-0.024L485.77,80.232C480.039,77.58,473.72,76,467,76z\"></path>	</g></g><g>	<g>		<path d=\"M4.786,101.212C1.82,107.21,0,113.868,0,121v270c0,7.132,1.818,13.79,4.785,19.788l154.283-154.783L4.786,101.212z\"></path>	</g></g><g>	<g>		<path d=\"M507.214,101.21L352.933,256.005L507.214,410.79C510.18,404.792,512,398.134,512,391V121   C512,113.866,510.18,107.208,507.214,101.21z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>			\n							<h5>Send os en email</h5>							<ul>\n							<li>\n											<a href=\"mailto:kontakt@cp-nordic.dk\">\n											kontakt@cp-nordic.dk\n											</a>\n									</li>\n						</ul>\n							<h3>KONTAKT OS</h3>		<p>Vi dækker hele Fyn – og tager også gerne opgaver uden for området, når der er tale om spændende eller teknisk krævende løsninger.</p>', 'Kontakt', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-01-26 14:33:44', '2026-01-26 14:33:44', '', 18, 'https://mrarif.me/cpnordic/?p=613', 0, 'revision', '', 0),
(614, 1, '2026-01-26 14:33:44', '2026-01-26 14:33:44', '<h2>Kontaktoplysninger</h2>		<p>Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid<br />velkommen til at kontakte os for en uforpligtende snak.</p>					\n			<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>			\n							<h5>Placering</h5>							<ul>\n							<li>\n										Fyn, Denmark\n									</li>\n						</ul>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M358.57,0H153.43c-27.195,0-49.319,22.124-49.319,49.319v413.362h-0.001c0,27.195,22.124,49.319,49.319,49.319H358.57   c27.195,0,49.319-22.124,49.319-49.319V49.319C407.891,22.124,385.766,0,358.57,0z M124.508,49.319   c0-15.948,12.974-28.921,28.921-28.921H358.57c15.947,0,28.921,12.974,28.921,28.921v355.589H124.508V49.319z M387.493,462.681   L387.493,462.681c-0.001,15.947-12.975,28.921-28.922,28.921H153.43c-15.948,0-28.921-12.974-28.921-28.921v-37.374h262.984   V462.681z\"></path>	</g></g><g>	<g>		<path d=\"M270.789,34.677h-29.578c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h29.578   c5.632,0,10.199-4.566,10.199-10.199C280.988,39.243,276.421,34.677,270.789,34.677z\"></path>	</g></g><g>	<g>		<path d=\"M242.204,371.251h-91.255c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h91.255   c5.632,0,10.199-4.566,10.199-10.199C252.403,375.817,247.836,371.251,242.204,371.251z\"></path>	</g></g><g>	<g>		<path d=\"M282.518,371.251h-5.346c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h5.346   c5.632,0,10.199-4.566,10.199-10.199C292.717,375.817,288.15,371.251,282.518,371.251z\"></path>	</g></g><g>	<g>		<path d=\"M256,430.406c-14.903,0-27.028,12.125-27.028,27.028s12.125,27.028,27.028,27.028s27.028-12.125,27.028-27.028   S270.903,430.406,256,430.406z M256,464.064c-3.655,0-6.629-2.974-6.629-6.63s2.974-6.629,6.629-6.629s6.63,2.974,6.63,6.629   S259.655,464.064,256,464.064z\"></path>	</g></g><g>	<g>		<path d=\"M442.612,198.005c-3.984-3.983-10.44-3.983-14.425,0c-3.983,3.983-3.983,10.441,0,14.425   c23.463,23.462,23.463,61.639,0,85.1c-3.983,3.983-3.983,10.441,0,14.425c1.992,1.992,4.602,2.987,7.212,2.987   s5.22-0.995,7.212-2.987C474.027,280.539,474.027,229.421,442.612,198.005z\"></path>	</g></g><g>	<g>		<path d=\"M470.017,170.6c-3.984-3.983-10.44-3.983-14.425,0c-3.983,3.983-3.983,10.441,0,14.425   c18.686,18.686,28.977,43.53,28.977,69.955s-10.291,51.27-28.977,69.955c-3.983,3.983-3.983,10.441,0,14.425   c1.992,1.992,4.602,2.987,7.212,2.987c2.61,0,5.22-0.995,7.212-2.987C516.544,292.832,516.544,217.128,470.017,170.6z\"></path>	</g></g><g>	<g>		<path d=\"M83.812,212.43c3.984-3.984,3.984-10.442,0.001-14.425c-3.984-3.983-10.44-3.983-14.425,0   c-31.416,31.416-31.416,82.533,0,113.95c1.992,1.992,4.602,2.987,7.212,2.987s5.22-0.995,7.212-2.987   c3.983-3.983,3.983-10.441,0-14.425C60.349,274.068,60.349,235.891,83.812,212.43z\"></path>	</g></g><g>	<g>		<path d=\"M27.431,254.98c0-26.426,10.291-51.27,28.977-69.955c3.983-3.983,3.983-10.441,0-14.425   c-3.984-3.983-10.44-3.983-14.425,0c-46.527,46.528-46.527,122.232,0,168.76c1.992,1.992,4.602,2.987,7.212,2.987   s5.22-0.995,7.212-2.987c3.983-3.983,3.983-10.441,0-14.425C37.721,306.25,27.431,281.406,27.431,254.98z\"></path>	</g></g><g>	<g>		<path d=\"M358.06,280.099l-47.694-47.694c-2.619-2.618-6.45-3.613-10.015-2.595l-7.104,2.03c-1.015,0.291-1.98,0.736-2.859,1.323   l-14.669,9.788c-17.71-12.415-33.181-28.156-45.295-46.078l10.425-10.425c1.226-1.226,2.119-2.743,2.596-4.41l2.03-7.104   c1.018-3.562,0.023-7.394-2.595-10.015l-47.697-47.697c-2.827-2.827-7.048-3.742-10.793-2.338l-8.119,3.044   c-1.364,0.511-2.602,1.309-3.632,2.338c-1.938,1.939-3.804,4.028-5.546,6.207c-23.54,29.472-21.155,71.832,5.546,98.534   l77.633,77.632c14.404,14.405,33.363,21.733,52.398,21.732c16.254,0,32.564-5.343,46.138-16.187   c2.179-1.741,4.266-3.606,6.205-5.545c1.029-1.03,1.827-2.267,2.338-3.631l3.044-8.119   C361.802,287.147,360.888,282.927,358.06,280.099z M336.079,292.253c-21.345,17.05-52.032,15.315-71.379-4.034l-77.633-77.632   c-19.349-19.349-21.082-50.035-4.034-71.379c0.783-0.98,1.598-1.933,2.44-2.849l38.31,38.311l-13.591,13.592   c-3.331,3.331-3.947,8.51-1.491,12.531c15.402,25.2,36.656,46.986,61.469,63.005c3.415,2.204,7.81,2.17,11.194-0.085   l18.872-12.593l38.696,38.696C338.011,290.656,337.058,291.471,336.079,292.253z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>			\n							<h5>Ring til os</h5>							<ul>\n							<li>\n											<a href=\"tel:41600040\">\n											41 60 00 40\n											</a>\n									</li>\n						</ul>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M331.756,277.251l-42.881,43.026c-17.389,17.45-47.985,17.826-65.75,0l-42.883-43.026L26.226,431.767   C31.959,434.418,38.28,436,45,436h422c6.72,0,13.039-1.58,18.77-4.232L331.756,277.251z\"></path>	</g></g><g>	<g>		<path d=\"M467,76H45c-6.72,0-13.041,1.582-18.772,4.233l164.577,165.123c0.011,0.011,0.024,0.013,0.035,0.024   c0.011,0.011,0.013,0.026,0.013,0.026l53.513,53.69c5.684,5.684,17.586,5.684,23.27,0l53.502-53.681c0,0,0.013-0.024,0.024-0.035   c0,0,0.024-0.013,0.035-0.024L485.77,80.232C480.039,77.58,473.72,76,467,76z\"></path>	</g></g><g>	<g>		<path d=\"M4.786,101.212C1.82,107.21,0,113.868,0,121v270c0,7.132,1.818,13.79,4.785,19.788l154.283-154.783L4.786,101.212z\"></path>	</g></g><g>	<g>		<path d=\"M507.214,101.21L352.933,256.005L507.214,410.79C510.18,404.792,512,398.134,512,391V121   C512,113.866,510.18,107.208,507.214,101.21z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>			\n							<h5>Send os en email</h5>							<ul>\n							<li>\n											<a href=\"mailto:kontakt@cp-nordic.dk\">\n											kontakt@cp-nordic.dk\n											</a>\n									</li>\n						</ul>\n							<h3>KONTAKT OS</h3>		<p>Vi dækker hele Fyn – og tager også gerne opgaver uden for området, når der er tale om spændende eller teknisk krævende løsninger.</p>', 'Kontakt', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-01-26 14:33:44', '2026-01-26 14:33:44', '', 18, 'https://mrarif.me/cpnordic/?p=614', 0, 'revision', '', 0),
(615, 1, '2026-01-26 14:33:44', '2026-01-26 14:33:44', '<h2>Kontaktoplysninger</h2>		<p>Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid<br />velkommen til at kontakte os for en uforpligtende snak.</p>					\n			<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>			\n							<h5>Placering</h5>							<ul>\n							<li>\n										Fyn, Denmark\n									</li>\n						</ul>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M358.57,0H153.43c-27.195,0-49.319,22.124-49.319,49.319v413.362h-0.001c0,27.195,22.124,49.319,49.319,49.319H358.57   c27.195,0,49.319-22.124,49.319-49.319V49.319C407.891,22.124,385.766,0,358.57,0z M124.508,49.319   c0-15.948,12.974-28.921,28.921-28.921H358.57c15.947,0,28.921,12.974,28.921,28.921v355.589H124.508V49.319z M387.493,462.681   L387.493,462.681c-0.001,15.947-12.975,28.921-28.922,28.921H153.43c-15.948,0-28.921-12.974-28.921-28.921v-37.374h262.984   V462.681z\"></path>	</g></g><g>	<g>		<path d=\"M270.789,34.677h-29.578c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h29.578   c5.632,0,10.199-4.566,10.199-10.199C280.988,39.243,276.421,34.677,270.789,34.677z\"></path>	</g></g><g>	<g>		<path d=\"M242.204,371.251h-91.255c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h91.255   c5.632,0,10.199-4.566,10.199-10.199C252.403,375.817,247.836,371.251,242.204,371.251z\"></path>	</g></g><g>	<g>		<path d=\"M282.518,371.251h-5.346c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h5.346   c5.632,0,10.199-4.566,10.199-10.199C292.717,375.817,288.15,371.251,282.518,371.251z\"></path>	</g></g><g>	<g>		<path d=\"M256,430.406c-14.903,0-27.028,12.125-27.028,27.028s12.125,27.028,27.028,27.028s27.028-12.125,27.028-27.028   S270.903,430.406,256,430.406z M256,464.064c-3.655,0-6.629-2.974-6.629-6.63s2.974-6.629,6.629-6.629s6.63,2.974,6.63,6.629   S259.655,464.064,256,464.064z\"></path>	</g></g><g>	<g>		<path d=\"M442.612,198.005c-3.984-3.983-10.44-3.983-14.425,0c-3.983,3.983-3.983,10.441,0,14.425   c23.463,23.462,23.463,61.639,0,85.1c-3.983,3.983-3.983,10.441,0,14.425c1.992,1.992,4.602,2.987,7.212,2.987   s5.22-0.995,7.212-2.987C474.027,280.539,474.027,229.421,442.612,198.005z\"></path>	</g></g><g>	<g>		<path d=\"M470.017,170.6c-3.984-3.983-10.44-3.983-14.425,0c-3.983,3.983-3.983,10.441,0,14.425   c18.686,18.686,28.977,43.53,28.977,69.955s-10.291,51.27-28.977,69.955c-3.983,3.983-3.983,10.441,0,14.425   c1.992,1.992,4.602,2.987,7.212,2.987c2.61,0,5.22-0.995,7.212-2.987C516.544,292.832,516.544,217.128,470.017,170.6z\"></path>	</g></g><g>	<g>		<path d=\"M83.812,212.43c3.984-3.984,3.984-10.442,0.001-14.425c-3.984-3.983-10.44-3.983-14.425,0   c-31.416,31.416-31.416,82.533,0,113.95c1.992,1.992,4.602,2.987,7.212,2.987s5.22-0.995,7.212-2.987   c3.983-3.983,3.983-10.441,0-14.425C60.349,274.068,60.349,235.891,83.812,212.43z\"></path>	</g></g><g>	<g>		<path d=\"M27.431,254.98c0-26.426,10.291-51.27,28.977-69.955c3.983-3.983,3.983-10.441,0-14.425   c-3.984-3.983-10.44-3.983-14.425,0c-46.527,46.528-46.527,122.232,0,168.76c1.992,1.992,4.602,2.987,7.212,2.987   s5.22-0.995,7.212-2.987c3.983-3.983,3.983-10.441,0-14.425C37.721,306.25,27.431,281.406,27.431,254.98z\"></path>	</g></g><g>	<g>		<path d=\"M358.06,280.099l-47.694-47.694c-2.619-2.618-6.45-3.613-10.015-2.595l-7.104,2.03c-1.015,0.291-1.98,0.736-2.859,1.323   l-14.669,9.788c-17.71-12.415-33.181-28.156-45.295-46.078l10.425-10.425c1.226-1.226,2.119-2.743,2.596-4.41l2.03-7.104   c1.018-3.562,0.023-7.394-2.595-10.015l-47.697-47.697c-2.827-2.827-7.048-3.742-10.793-2.338l-8.119,3.044   c-1.364,0.511-2.602,1.309-3.632,2.338c-1.938,1.939-3.804,4.028-5.546,6.207c-23.54,29.472-21.155,71.832,5.546,98.534   l77.633,77.632c14.404,14.405,33.363,21.733,52.398,21.732c16.254,0,32.564-5.343,46.138-16.187   c2.179-1.741,4.266-3.606,6.205-5.545c1.029-1.03,1.827-2.267,2.338-3.631l3.044-8.119   C361.802,287.147,360.888,282.927,358.06,280.099z M336.079,292.253c-21.345,17.05-52.032,15.315-71.379-4.034l-77.633-77.632   c-19.349-19.349-21.082-50.035-4.034-71.379c0.783-0.98,1.598-1.933,2.44-2.849l38.31,38.311l-13.591,13.592   c-3.331,3.331-3.947,8.51-1.491,12.531c15.402,25.2,36.656,46.986,61.469,63.005c3.415,2.204,7.81,2.17,11.194-0.085   l18.872-12.593l38.696,38.696C338.011,290.656,337.058,291.471,336.079,292.253z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>			\n							<h5>Ring til os</h5>							<ul>\n							<li>\n											<a href=\"tel:41600040\">\n											41 60 00 40\n											</a>\n									</li>\n						</ul>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M331.756,277.251l-42.881,43.026c-17.389,17.45-47.985,17.826-65.75,0l-42.883-43.026L26.226,431.767   C31.959,434.418,38.28,436,45,436h422c6.72,0,13.039-1.58,18.77-4.232L331.756,277.251z\"></path>	</g></g><g>	<g>		<path d=\"M467,76H45c-6.72,0-13.041,1.582-18.772,4.233l164.577,165.123c0.011,0.011,0.024,0.013,0.035,0.024   c0.011,0.011,0.013,0.026,0.013,0.026l53.513,53.69c5.684,5.684,17.586,5.684,23.27,0l53.502-53.681c0,0,0.013-0.024,0.024-0.035   c0,0,0.024-0.013,0.035-0.024L485.77,80.232C480.039,77.58,473.72,76,467,76z\"></path>	</g></g><g>	<g>		<path d=\"M4.786,101.212C1.82,107.21,0,113.868,0,121v270c0,7.132,1.818,13.79,4.785,19.788l154.283-154.783L4.786,101.212z\"></path>	</g></g><g>	<g>		<path d=\"M507.214,101.21L352.933,256.005L507.214,410.79C510.18,404.792,512,398.134,512,391V121   C512,113.866,510.18,107.208,507.214,101.21z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>			\n							<h5>Send os en email</h5>							<ul>\n							<li>\n											<a href=\"mailto:kontakt@cp-nordic.dk\">\n											kontakt@cp-nordic.dk\n											</a>\n									</li>\n						</ul>\n							<h3>KONTAKT OS</h3>		<p>Vi dækker hele Fyn – og tager også gerne opgaver uden for området, når der er tale om spændende eller teknisk krævende løsninger.</p>', 'Kontakt', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-01-26 14:33:44', '2026-01-26 14:33:44', '', 18, 'https://mrarif.me/cpnordic/?p=615', 0, 'revision', '', 0),
(616, 1, '2026-01-26 14:33:54', '2026-01-26 14:33:54', '<h2>Kontaktoplysninger</h2>		<p>Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid<br />velkommen til at kontakte os for en uforpligtende snak.</p>					\n			<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>			\n							<h5>Placering</h5>							<ul>\n							<li>\n										Fyn, Denmark\n									</li>\n						</ul>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M358.57,0H153.43c-27.195,0-49.319,22.124-49.319,49.319v413.362h-0.001c0,27.195,22.124,49.319,49.319,49.319H358.57   c27.195,0,49.319-22.124,49.319-49.319V49.319C407.891,22.124,385.766,0,358.57,0z M124.508,49.319   c0-15.948,12.974-28.921,28.921-28.921H358.57c15.947,0,28.921,12.974,28.921,28.921v355.589H124.508V49.319z M387.493,462.681   L387.493,462.681c-0.001,15.947-12.975,28.921-28.922,28.921H153.43c-15.948,0-28.921-12.974-28.921-28.921v-37.374h262.984   V462.681z\"></path>	</g></g><g>	<g>		<path d=\"M270.789,34.677h-29.578c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h29.578   c5.632,0,10.199-4.566,10.199-10.199C280.988,39.243,276.421,34.677,270.789,34.677z\"></path>	</g></g><g>	<g>		<path d=\"M242.204,371.251h-91.255c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h91.255   c5.632,0,10.199-4.566,10.199-10.199C252.403,375.817,247.836,371.251,242.204,371.251z\"></path>	</g></g><g>	<g>		<path d=\"M282.518,371.251h-5.346c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h5.346   c5.632,0,10.199-4.566,10.199-10.199C292.717,375.817,288.15,371.251,282.518,371.251z\"></path>	</g></g><g>	<g>		<path d=\"M256,430.406c-14.903,0-27.028,12.125-27.028,27.028s12.125,27.028,27.028,27.028s27.028-12.125,27.028-27.028   S270.903,430.406,256,430.406z M256,464.064c-3.655,0-6.629-2.974-6.629-6.63s2.974-6.629,6.629-6.629s6.63,2.974,6.63,6.629   S259.655,464.064,256,464.064z\"></path>	</g></g><g>	<g>		<path d=\"M442.612,198.005c-3.984-3.983-10.44-3.983-14.425,0c-3.983,3.983-3.983,10.441,0,14.425   c23.463,23.462,23.463,61.639,0,85.1c-3.983,3.983-3.983,10.441,0,14.425c1.992,1.992,4.602,2.987,7.212,2.987   s5.22-0.995,7.212-2.987C474.027,280.539,474.027,229.421,442.612,198.005z\"></path>	</g></g><g>	<g>		<path d=\"M470.017,170.6c-3.984-3.983-10.44-3.983-14.425,0c-3.983,3.983-3.983,10.441,0,14.425   c18.686,18.686,28.977,43.53,28.977,69.955s-10.291,51.27-28.977,69.955c-3.983,3.983-3.983,10.441,0,14.425   c1.992,1.992,4.602,2.987,7.212,2.987c2.61,0,5.22-0.995,7.212-2.987C516.544,292.832,516.544,217.128,470.017,170.6z\"></path>	</g></g><g>	<g>		<path d=\"M83.812,212.43c3.984-3.984,3.984-10.442,0.001-14.425c-3.984-3.983-10.44-3.983-14.425,0   c-31.416,31.416-31.416,82.533,0,113.95c1.992,1.992,4.602,2.987,7.212,2.987s5.22-0.995,7.212-2.987   c3.983-3.983,3.983-10.441,0-14.425C60.349,274.068,60.349,235.891,83.812,212.43z\"></path>	</g></g><g>	<g>		<path d=\"M27.431,254.98c0-26.426,10.291-51.27,28.977-69.955c3.983-3.983,3.983-10.441,0-14.425   c-3.984-3.983-10.44-3.983-14.425,0c-46.527,46.528-46.527,122.232,0,168.76c1.992,1.992,4.602,2.987,7.212,2.987   s5.22-0.995,7.212-2.987c3.983-3.983,3.983-10.441,0-14.425C37.721,306.25,27.431,281.406,27.431,254.98z\"></path>	</g></g><g>	<g>		<path d=\"M358.06,280.099l-47.694-47.694c-2.619-2.618-6.45-3.613-10.015-2.595l-7.104,2.03c-1.015,0.291-1.98,0.736-2.859,1.323   l-14.669,9.788c-17.71-12.415-33.181-28.156-45.295-46.078l10.425-10.425c1.226-1.226,2.119-2.743,2.596-4.41l2.03-7.104   c1.018-3.562,0.023-7.394-2.595-10.015l-47.697-47.697c-2.827-2.827-7.048-3.742-10.793-2.338l-8.119,3.044   c-1.364,0.511-2.602,1.309-3.632,2.338c-1.938,1.939-3.804,4.028-5.546,6.207c-23.54,29.472-21.155,71.832,5.546,98.534   l77.633,77.632c14.404,14.405,33.363,21.733,52.398,21.732c16.254,0,32.564-5.343,46.138-16.187   c2.179-1.741,4.266-3.606,6.205-5.545c1.029-1.03,1.827-2.267,2.338-3.631l3.044-8.119   C361.802,287.147,360.888,282.927,358.06,280.099z M336.079,292.253c-21.345,17.05-52.032,15.315-71.379-4.034l-77.633-77.632   c-19.349-19.349-21.082-50.035-4.034-71.379c0.783-0.98,1.598-1.933,2.44-2.849l38.31,38.311l-13.591,13.592   c-3.331,3.331-3.947,8.51-1.491,12.531c15.402,25.2,36.656,46.986,61.469,63.005c3.415,2.204,7.81,2.17,11.194-0.085   l18.872-12.593l38.696,38.696C338.011,290.656,337.058,291.471,336.079,292.253z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>			\n							<h5>Ring til os</h5>							<ul>\n							<li>\n											<a href=\"tel:41600040\">\n											41 60 00 40\n											</a>\n									</li>\n						</ul>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M331.756,277.251l-42.881,43.026c-17.389,17.45-47.985,17.826-65.75,0l-42.883-43.026L26.226,431.767   C31.959,434.418,38.28,436,45,436h422c6.72,0,13.039-1.58,18.77-4.232L331.756,277.251z\"></path>	</g></g><g>	<g>		<path d=\"M467,76H45c-6.72,0-13.041,1.582-18.772,4.233l164.577,165.123c0.011,0.011,0.024,0.013,0.035,0.024   c0.011,0.011,0.013,0.026,0.013,0.026l53.513,53.69c5.684,5.684,17.586,5.684,23.27,0l53.502-53.681c0,0,0.013-0.024,0.024-0.035   c0,0,0.024-0.013,0.035-0.024L485.77,80.232C480.039,77.58,473.72,76,467,76z\"></path>	</g></g><g>	<g>		<path d=\"M4.786,101.212C1.82,107.21,0,113.868,0,121v270c0,7.132,1.818,13.79,4.785,19.788l154.283-154.783L4.786,101.212z\"></path>	</g></g><g>	<g>		<path d=\"M507.214,101.21L352.933,256.005L507.214,410.79C510.18,404.792,512,398.134,512,391V121   C512,113.866,510.18,107.208,507.214,101.21z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>			\n							<h5>Send os en email</h5>							<ul>\n							<li>\n											<a href=\"mailto:kontakt@cp-nordic.dk\">\n											kontakt@cp-nordic.dk\n											</a>\n									</li>\n						</ul>\n							<h3>KONTAKT OS</h3>		<p>Vi dækker hele Fyn – og tager også gerne opgaver uden for området, når der er tale om spændende eller teknisk krævende løsninger.</p>', 'Kontakt', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-01-26 14:33:54', '2026-01-26 14:33:54', '', 18, 'https://mrarif.me/cpnordic/?p=616', 0, 'revision', '', 0),
(617, 1, '2026-01-26 14:33:54', '2026-01-26 14:33:54', '<h2>Kontaktoplysninger</h2>		<p>Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid<br />velkommen til at kontakte os for en uforpligtende snak.</p>					\n			<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>			\n							<h5>Placering</h5>							<ul>\n							<li>\n										Fyn, Denmark\n									</li>\n						</ul>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M358.57,0H153.43c-27.195,0-49.319,22.124-49.319,49.319v413.362h-0.001c0,27.195,22.124,49.319,49.319,49.319H358.57   c27.195,0,49.319-22.124,49.319-49.319V49.319C407.891,22.124,385.766,0,358.57,0z M124.508,49.319   c0-15.948,12.974-28.921,28.921-28.921H358.57c15.947,0,28.921,12.974,28.921,28.921v355.589H124.508V49.319z M387.493,462.681   L387.493,462.681c-0.001,15.947-12.975,28.921-28.922,28.921H153.43c-15.948,0-28.921-12.974-28.921-28.921v-37.374h262.984   V462.681z\"></path>	</g></g><g>	<g>		<path d=\"M270.789,34.677h-29.578c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h29.578   c5.632,0,10.199-4.566,10.199-10.199C280.988,39.243,276.421,34.677,270.789,34.677z\"></path>	</g></g><g>	<g>		<path d=\"M242.204,371.251h-91.255c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h91.255   c5.632,0,10.199-4.566,10.199-10.199C252.403,375.817,247.836,371.251,242.204,371.251z\"></path>	</g></g><g>	<g>		<path d=\"M282.518,371.251h-5.346c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h5.346   c5.632,0,10.199-4.566,10.199-10.199C292.717,375.817,288.15,371.251,282.518,371.251z\"></path>	</g></g><g>	<g>		<path d=\"M256,430.406c-14.903,0-27.028,12.125-27.028,27.028s12.125,27.028,27.028,27.028s27.028-12.125,27.028-27.028   S270.903,430.406,256,430.406z M256,464.064c-3.655,0-6.629-2.974-6.629-6.63s2.974-6.629,6.629-6.629s6.63,2.974,6.63,6.629   S259.655,464.064,256,464.064z\"></path>	</g></g><g>	<g>		<path d=\"M442.612,198.005c-3.984-3.983-10.44-3.983-14.425,0c-3.983,3.983-3.983,10.441,0,14.425   c23.463,23.462,23.463,61.639,0,85.1c-3.983,3.983-3.983,10.441,0,14.425c1.992,1.992,4.602,2.987,7.212,2.987   s5.22-0.995,7.212-2.987C474.027,280.539,474.027,229.421,442.612,198.005z\"></path>	</g></g><g>	<g>		<path d=\"M470.017,170.6c-3.984-3.983-10.44-3.983-14.425,0c-3.983,3.983-3.983,10.441,0,14.425   c18.686,18.686,28.977,43.53,28.977,69.955s-10.291,51.27-28.977,69.955c-3.983,3.983-3.983,10.441,0,14.425   c1.992,1.992,4.602,2.987,7.212,2.987c2.61,0,5.22-0.995,7.212-2.987C516.544,292.832,516.544,217.128,470.017,170.6z\"></path>	</g></g><g>	<g>		<path d=\"M83.812,212.43c3.984-3.984,3.984-10.442,0.001-14.425c-3.984-3.983-10.44-3.983-14.425,0   c-31.416,31.416-31.416,82.533,0,113.95c1.992,1.992,4.602,2.987,7.212,2.987s5.22-0.995,7.212-2.987   c3.983-3.983,3.983-10.441,0-14.425C60.349,274.068,60.349,235.891,83.812,212.43z\"></path>	</g></g><g>	<g>		<path d=\"M27.431,254.98c0-26.426,10.291-51.27,28.977-69.955c3.983-3.983,3.983-10.441,0-14.425   c-3.984-3.983-10.44-3.983-14.425,0c-46.527,46.528-46.527,122.232,0,168.76c1.992,1.992,4.602,2.987,7.212,2.987   s5.22-0.995,7.212-2.987c3.983-3.983,3.983-10.441,0-14.425C37.721,306.25,27.431,281.406,27.431,254.98z\"></path>	</g></g><g>	<g>		<path d=\"M358.06,280.099l-47.694-47.694c-2.619-2.618-6.45-3.613-10.015-2.595l-7.104,2.03c-1.015,0.291-1.98,0.736-2.859,1.323   l-14.669,9.788c-17.71-12.415-33.181-28.156-45.295-46.078l10.425-10.425c1.226-1.226,2.119-2.743,2.596-4.41l2.03-7.104   c1.018-3.562,0.023-7.394-2.595-10.015l-47.697-47.697c-2.827-2.827-7.048-3.742-10.793-2.338l-8.119,3.044   c-1.364,0.511-2.602,1.309-3.632,2.338c-1.938,1.939-3.804,4.028-5.546,6.207c-23.54,29.472-21.155,71.832,5.546,98.534   l77.633,77.632c14.404,14.405,33.363,21.733,52.398,21.732c16.254,0,32.564-5.343,46.138-16.187   c2.179-1.741,4.266-3.606,6.205-5.545c1.029-1.03,1.827-2.267,2.338-3.631l3.044-8.119   C361.802,287.147,360.888,282.927,358.06,280.099z M336.079,292.253c-21.345,17.05-52.032,15.315-71.379-4.034l-77.633-77.632   c-19.349-19.349-21.082-50.035-4.034-71.379c0.783-0.98,1.598-1.933,2.44-2.849l38.31,38.311l-13.591,13.592   c-3.331,3.331-3.947,8.51-1.491,12.531c15.402,25.2,36.656,46.986,61.469,63.005c3.415,2.204,7.81,2.17,11.194-0.085   l18.872-12.593l38.696,38.696C338.011,290.656,337.058,291.471,336.079,292.253z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>			\n							<h5>Ring til os</h5>							<ul>\n							<li>\n											<a href=\"tel:41600040\">\n											41 60 00 40\n											</a>\n									</li>\n						</ul>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M331.756,277.251l-42.881,43.026c-17.389,17.45-47.985,17.826-65.75,0l-42.883-43.026L26.226,431.767   C31.959,434.418,38.28,436,45,436h422c6.72,0,13.039-1.58,18.77-4.232L331.756,277.251z\"></path>	</g></g><g>	<g>		<path d=\"M467,76H45c-6.72,0-13.041,1.582-18.772,4.233l164.577,165.123c0.011,0.011,0.024,0.013,0.035,0.024   c0.011,0.011,0.013,0.026,0.013,0.026l53.513,53.69c5.684,5.684,17.586,5.684,23.27,0l53.502-53.681c0,0,0.013-0.024,0.024-0.035   c0,0,0.024-0.013,0.035-0.024L485.77,80.232C480.039,77.58,473.72,76,467,76z\"></path>	</g></g><g>	<g>		<path d=\"M4.786,101.212C1.82,107.21,0,113.868,0,121v270c0,7.132,1.818,13.79,4.785,19.788l154.283-154.783L4.786,101.212z\"></path>	</g></g><g>	<g>		<path d=\"M507.214,101.21L352.933,256.005L507.214,410.79C510.18,404.792,512,398.134,512,391V121   C512,113.866,510.18,107.208,507.214,101.21z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>			\n							<h5>Send os en email</h5>							<ul>\n							<li>\n											<a href=\"mailto:kontakt@cp-nordic.dk\">\n											kontakt@cp-nordic.dk\n											</a>\n									</li>\n						</ul>\n							<h3>KONTAKT OS</h3>		<p>Vi dækker hele Fyn – og tager også gerne opgaver uden for området, når der er tale om spændende eller teknisk krævende løsninger.</p>', 'Kontakt', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-01-26 14:33:54', '2026-01-26 14:33:54', '', 18, 'https://mrarif.me/cpnordic/?p=617', 0, 'revision', '', 0),
(618, 1, '2026-01-26 14:33:54', '2026-01-26 14:33:54', '<h2>Kontaktoplysninger</h2>		<p>Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid<br />velkommen til at kontakte os for en uforpligtende snak.</p>					\n			<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>			\n							<h5>Placering</h5>							<ul>\n							<li>\n										Fyn, Denmark\n									</li>\n						</ul>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M358.57,0H153.43c-27.195,0-49.319,22.124-49.319,49.319v413.362h-0.001c0,27.195,22.124,49.319,49.319,49.319H358.57   c27.195,0,49.319-22.124,49.319-49.319V49.319C407.891,22.124,385.766,0,358.57,0z M124.508,49.319   c0-15.948,12.974-28.921,28.921-28.921H358.57c15.947,0,28.921,12.974,28.921,28.921v355.589H124.508V49.319z M387.493,462.681   L387.493,462.681c-0.001,15.947-12.975,28.921-28.922,28.921H153.43c-15.948,0-28.921-12.974-28.921-28.921v-37.374h262.984   V462.681z\"></path>	</g></g><g>	<g>		<path d=\"M270.789,34.677h-29.578c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h29.578   c5.632,0,10.199-4.566,10.199-10.199C280.988,39.243,276.421,34.677,270.789,34.677z\"></path>	</g></g><g>	<g>		<path d=\"M242.204,371.251h-91.255c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h91.255   c5.632,0,10.199-4.566,10.199-10.199C252.403,375.817,247.836,371.251,242.204,371.251z\"></path>	</g></g><g>	<g>		<path d=\"M282.518,371.251h-5.346c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h5.346   c5.632,0,10.199-4.566,10.199-10.199C292.717,375.817,288.15,371.251,282.518,371.251z\"></path>	</g></g><g>	<g>		<path d=\"M256,430.406c-14.903,0-27.028,12.125-27.028,27.028s12.125,27.028,27.028,27.028s27.028-12.125,27.028-27.028   S270.903,430.406,256,430.406z M256,464.064c-3.655,0-6.629-2.974-6.629-6.63s2.974-6.629,6.629-6.629s6.63,2.974,6.63,6.629   S259.655,464.064,256,464.064z\"></path>	</g></g><g>	<g>		<path d=\"M442.612,198.005c-3.984-3.983-10.44-3.983-14.425,0c-3.983,3.983-3.983,10.441,0,14.425   c23.463,23.462,23.463,61.639,0,85.1c-3.983,3.983-3.983,10.441,0,14.425c1.992,1.992,4.602,2.987,7.212,2.987   s5.22-0.995,7.212-2.987C474.027,280.539,474.027,229.421,442.612,198.005z\"></path>	</g></g><g>	<g>		<path d=\"M470.017,170.6c-3.984-3.983-10.44-3.983-14.425,0c-3.983,3.983-3.983,10.441,0,14.425   c18.686,18.686,28.977,43.53,28.977,69.955s-10.291,51.27-28.977,69.955c-3.983,3.983-3.983,10.441,0,14.425   c1.992,1.992,4.602,2.987,7.212,2.987c2.61,0,5.22-0.995,7.212-2.987C516.544,292.832,516.544,217.128,470.017,170.6z\"></path>	</g></g><g>	<g>		<path d=\"M83.812,212.43c3.984-3.984,3.984-10.442,0.001-14.425c-3.984-3.983-10.44-3.983-14.425,0   c-31.416,31.416-31.416,82.533,0,113.95c1.992,1.992,4.602,2.987,7.212,2.987s5.22-0.995,7.212-2.987   c3.983-3.983,3.983-10.441,0-14.425C60.349,274.068,60.349,235.891,83.812,212.43z\"></path>	</g></g><g>	<g>		<path d=\"M27.431,254.98c0-26.426,10.291-51.27,28.977-69.955c3.983-3.983,3.983-10.441,0-14.425   c-3.984-3.983-10.44-3.983-14.425,0c-46.527,46.528-46.527,122.232,0,168.76c1.992,1.992,4.602,2.987,7.212,2.987   s5.22-0.995,7.212-2.987c3.983-3.983,3.983-10.441,0-14.425C37.721,306.25,27.431,281.406,27.431,254.98z\"></path>	</g></g><g>	<g>		<path d=\"M358.06,280.099l-47.694-47.694c-2.619-2.618-6.45-3.613-10.015-2.595l-7.104,2.03c-1.015,0.291-1.98,0.736-2.859,1.323   l-14.669,9.788c-17.71-12.415-33.181-28.156-45.295-46.078l10.425-10.425c1.226-1.226,2.119-2.743,2.596-4.41l2.03-7.104   c1.018-3.562,0.023-7.394-2.595-10.015l-47.697-47.697c-2.827-2.827-7.048-3.742-10.793-2.338l-8.119,3.044   c-1.364,0.511-2.602,1.309-3.632,2.338c-1.938,1.939-3.804,4.028-5.546,6.207c-23.54,29.472-21.155,71.832,5.546,98.534   l77.633,77.632c14.404,14.405,33.363,21.733,52.398,21.732c16.254,0,32.564-5.343,46.138-16.187   c2.179-1.741,4.266-3.606,6.205-5.545c1.029-1.03,1.827-2.267,2.338-3.631l3.044-8.119   C361.802,287.147,360.888,282.927,358.06,280.099z M336.079,292.253c-21.345,17.05-52.032,15.315-71.379-4.034l-77.633-77.632   c-19.349-19.349-21.082-50.035-4.034-71.379c0.783-0.98,1.598-1.933,2.44-2.849l38.31,38.311l-13.591,13.592   c-3.331,3.331-3.947,8.51-1.491,12.531c15.402,25.2,36.656,46.986,61.469,63.005c3.415,2.204,7.81,2.17,11.194-0.085   l18.872-12.593l38.696,38.696C338.011,290.656,337.058,291.471,336.079,292.253z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>			\n							<h5>Ring til os</h5>							<ul>\n							<li>\n											<a href=\"tel:41600040\">\n											41 60 00 40\n											</a>\n									</li>\n						</ul>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M331.756,277.251l-42.881,43.026c-17.389,17.45-47.985,17.826-65.75,0l-42.883-43.026L26.226,431.767   C31.959,434.418,38.28,436,45,436h422c6.72,0,13.039-1.58,18.77-4.232L331.756,277.251z\"></path>	</g></g><g>	<g>		<path d=\"M467,76H45c-6.72,0-13.041,1.582-18.772,4.233l164.577,165.123c0.011,0.011,0.024,0.013,0.035,0.024   c0.011,0.011,0.013,0.026,0.013,0.026l53.513,53.69c5.684,5.684,17.586,5.684,23.27,0l53.502-53.681c0,0,0.013-0.024,0.024-0.035   c0,0,0.024-0.013,0.035-0.024L485.77,80.232C480.039,77.58,473.72,76,467,76z\"></path>	</g></g><g>	<g>		<path d=\"M4.786,101.212C1.82,107.21,0,113.868,0,121v270c0,7.132,1.818,13.79,4.785,19.788l154.283-154.783L4.786,101.212z\"></path>	</g></g><g>	<g>		<path d=\"M507.214,101.21L352.933,256.005L507.214,410.79C510.18,404.792,512,398.134,512,391V121   C512,113.866,510.18,107.208,507.214,101.21z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>			\n							<h5>Send os en email</h5>							<ul>\n							<li>\n											<a href=\"mailto:kontakt@cp-nordic.dk\">\n											kontakt@cp-nordic.dk\n											</a>\n									</li>\n						</ul>\n							<h3>KONTAKT OS</h3>		<p>Vi dækker hele Fyn – og tager også gerne opgaver uden for området, når der er tale om spændende eller teknisk krævende løsninger.</p>', 'Kontakt', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-01-26 14:33:54', '2026-01-26 14:33:54', '', 18, 'https://mrarif.me/cpnordic/?p=618', 0, 'revision', '', 0),
(619, 1, '2026-01-26 14:34:08', '2026-01-26 14:34:08', '<h2>Kontaktoplysninger</h2>		<p>Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid<br />velkommen til at kontakte os for en uforpligtende snak.</p>					\n			<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>			\n							<h5>Placering</h5>							<ul>\n							<li>\n										Fyn, Denmark\n									</li>\n						</ul>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M358.57,0H153.43c-27.195,0-49.319,22.124-49.319,49.319v413.362h-0.001c0,27.195,22.124,49.319,49.319,49.319H358.57   c27.195,0,49.319-22.124,49.319-49.319V49.319C407.891,22.124,385.766,0,358.57,0z M124.508,49.319   c0-15.948,12.974-28.921,28.921-28.921H358.57c15.947,0,28.921,12.974,28.921,28.921v355.589H124.508V49.319z M387.493,462.681   L387.493,462.681c-0.001,15.947-12.975,28.921-28.922,28.921H153.43c-15.948,0-28.921-12.974-28.921-28.921v-37.374h262.984   V462.681z\"></path>	</g></g><g>	<g>		<path d=\"M270.789,34.677h-29.578c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h29.578   c5.632,0,10.199-4.566,10.199-10.199C280.988,39.243,276.421,34.677,270.789,34.677z\"></path>	</g></g><g>	<g>		<path d=\"M242.204,371.251h-91.255c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h91.255   c5.632,0,10.199-4.566,10.199-10.199C252.403,375.817,247.836,371.251,242.204,371.251z\"></path>	</g></g><g>	<g>		<path d=\"M282.518,371.251h-5.346c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h5.346   c5.632,0,10.199-4.566,10.199-10.199C292.717,375.817,288.15,371.251,282.518,371.251z\"></path>	</g></g><g>	<g>		<path d=\"M256,430.406c-14.903,0-27.028,12.125-27.028,27.028s12.125,27.028,27.028,27.028s27.028-12.125,27.028-27.028   S270.903,430.406,256,430.406z M256,464.064c-3.655,0-6.629-2.974-6.629-6.63s2.974-6.629,6.629-6.629s6.63,2.974,6.63,6.629   S259.655,464.064,256,464.064z\"></path>	</g></g><g>	<g>		<path d=\"M442.612,198.005c-3.984-3.983-10.44-3.983-14.425,0c-3.983,3.983-3.983,10.441,0,14.425   c23.463,23.462,23.463,61.639,0,85.1c-3.983,3.983-3.983,10.441,0,14.425c1.992,1.992,4.602,2.987,7.212,2.987   s5.22-0.995,7.212-2.987C474.027,280.539,474.027,229.421,442.612,198.005z\"></path>	</g></g><g>	<g>		<path d=\"M470.017,170.6c-3.984-3.983-10.44-3.983-14.425,0c-3.983,3.983-3.983,10.441,0,14.425   c18.686,18.686,28.977,43.53,28.977,69.955s-10.291,51.27-28.977,69.955c-3.983,3.983-3.983,10.441,0,14.425   c1.992,1.992,4.602,2.987,7.212,2.987c2.61,0,5.22-0.995,7.212-2.987C516.544,292.832,516.544,217.128,470.017,170.6z\"></path>	</g></g><g>	<g>		<path d=\"M83.812,212.43c3.984-3.984,3.984-10.442,0.001-14.425c-3.984-3.983-10.44-3.983-14.425,0   c-31.416,31.416-31.416,82.533,0,113.95c1.992,1.992,4.602,2.987,7.212,2.987s5.22-0.995,7.212-2.987   c3.983-3.983,3.983-10.441,0-14.425C60.349,274.068,60.349,235.891,83.812,212.43z\"></path>	</g></g><g>	<g>		<path d=\"M27.431,254.98c0-26.426,10.291-51.27,28.977-69.955c3.983-3.983,3.983-10.441,0-14.425   c-3.984-3.983-10.44-3.983-14.425,0c-46.527,46.528-46.527,122.232,0,168.76c1.992,1.992,4.602,2.987,7.212,2.987   s5.22-0.995,7.212-2.987c3.983-3.983,3.983-10.441,0-14.425C37.721,306.25,27.431,281.406,27.431,254.98z\"></path>	</g></g><g>	<g>		<path d=\"M358.06,280.099l-47.694-47.694c-2.619-2.618-6.45-3.613-10.015-2.595l-7.104,2.03c-1.015,0.291-1.98,0.736-2.859,1.323   l-14.669,9.788c-17.71-12.415-33.181-28.156-45.295-46.078l10.425-10.425c1.226-1.226,2.119-2.743,2.596-4.41l2.03-7.104   c1.018-3.562,0.023-7.394-2.595-10.015l-47.697-47.697c-2.827-2.827-7.048-3.742-10.793-2.338l-8.119,3.044   c-1.364,0.511-2.602,1.309-3.632,2.338c-1.938,1.939-3.804,4.028-5.546,6.207c-23.54,29.472-21.155,71.832,5.546,98.534   l77.633,77.632c14.404,14.405,33.363,21.733,52.398,21.732c16.254,0,32.564-5.343,46.138-16.187   c2.179-1.741,4.266-3.606,6.205-5.545c1.029-1.03,1.827-2.267,2.338-3.631l3.044-8.119   C361.802,287.147,360.888,282.927,358.06,280.099z M336.079,292.253c-21.345,17.05-52.032,15.315-71.379-4.034l-77.633-77.632   c-19.349-19.349-21.082-50.035-4.034-71.379c0.783-0.98,1.598-1.933,2.44-2.849l38.31,38.311l-13.591,13.592   c-3.331,3.331-3.947,8.51-1.491,12.531c15.402,25.2,36.656,46.986,61.469,63.005c3.415,2.204,7.81,2.17,11.194-0.085   l18.872-12.593l38.696,38.696C338.011,290.656,337.058,291.471,336.079,292.253z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>			\n							<h5>Ring til os</h5>							<ul>\n							<li>\n											<a href=\"tel:41600040\">\n											41 60 00 40\n											</a>\n									</li>\n						</ul>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M331.756,277.251l-42.881,43.026c-17.389,17.45-47.985,17.826-65.75,0l-42.883-43.026L26.226,431.767   C31.959,434.418,38.28,436,45,436h422c6.72,0,13.039-1.58,18.77-4.232L331.756,277.251z\"></path>	</g></g><g>	<g>		<path d=\"M467,76H45c-6.72,0-13.041,1.582-18.772,4.233l164.577,165.123c0.011,0.011,0.024,0.013,0.035,0.024   c0.011,0.011,0.013,0.026,0.013,0.026l53.513,53.69c5.684,5.684,17.586,5.684,23.27,0l53.502-53.681c0,0,0.013-0.024,0.024-0.035   c0,0,0.024-0.013,0.035-0.024L485.77,80.232C480.039,77.58,473.72,76,467,76z\"></path>	</g></g><g>	<g>		<path d=\"M4.786,101.212C1.82,107.21,0,113.868,0,121v270c0,7.132,1.818,13.79,4.785,19.788l154.283-154.783L4.786,101.212z\"></path>	</g></g><g>	<g>		<path d=\"M507.214,101.21L352.933,256.005L507.214,410.79C510.18,404.792,512,398.134,512,391V121   C512,113.866,510.18,107.208,507.214,101.21z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>			\n							<h5>Send os en email</h5>							<ul>\n							<li>\n											<a href=\"mailto:kontakt@cp-nordic.dk\">\n											kontakt@cp-nordic.dk\n											</a>\n									</li>\n						</ul>\n							<h3>KONTAKT OS</h3>		<p>Vi dækker hele Fyn – og tager også gerne opgaver uden for området, når der er tale om spændende eller teknisk krævende løsninger.</p>', 'Kontakt', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-01-26 14:34:08', '2026-01-26 14:34:08', '', 18, 'https://mrarif.me/cpnordic/?p=619', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(620, 1, '2026-01-26 14:34:08', '2026-01-26 14:34:08', '<h2>Kontaktoplysninger</h2>		<p>Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid<br />velkommen til at kontakte os for en uforpligtende snak.</p>					\n			<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>			\n							<h5>Placering</h5>							<ul>\n							<li>\n										Fyn, Denmark\n									</li>\n						</ul>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M358.57,0H153.43c-27.195,0-49.319,22.124-49.319,49.319v413.362h-0.001c0,27.195,22.124,49.319,49.319,49.319H358.57   c27.195,0,49.319-22.124,49.319-49.319V49.319C407.891,22.124,385.766,0,358.57,0z M124.508,49.319   c0-15.948,12.974-28.921,28.921-28.921H358.57c15.947,0,28.921,12.974,28.921,28.921v355.589H124.508V49.319z M387.493,462.681   L387.493,462.681c-0.001,15.947-12.975,28.921-28.922,28.921H153.43c-15.948,0-28.921-12.974-28.921-28.921v-37.374h262.984   V462.681z\"></path>	</g></g><g>	<g>		<path d=\"M270.789,34.677h-29.578c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h29.578   c5.632,0,10.199-4.566,10.199-10.199C280.988,39.243,276.421,34.677,270.789,34.677z\"></path>	</g></g><g>	<g>		<path d=\"M242.204,371.251h-91.255c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h91.255   c5.632,0,10.199-4.566,10.199-10.199C252.403,375.817,247.836,371.251,242.204,371.251z\"></path>	</g></g><g>	<g>		<path d=\"M282.518,371.251h-5.346c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h5.346   c5.632,0,10.199-4.566,10.199-10.199C292.717,375.817,288.15,371.251,282.518,371.251z\"></path>	</g></g><g>	<g>		<path d=\"M256,430.406c-14.903,0-27.028,12.125-27.028,27.028s12.125,27.028,27.028,27.028s27.028-12.125,27.028-27.028   S270.903,430.406,256,430.406z M256,464.064c-3.655,0-6.629-2.974-6.629-6.63s2.974-6.629,6.629-6.629s6.63,2.974,6.63,6.629   S259.655,464.064,256,464.064z\"></path>	</g></g><g>	<g>		<path d=\"M442.612,198.005c-3.984-3.983-10.44-3.983-14.425,0c-3.983,3.983-3.983,10.441,0,14.425   c23.463,23.462,23.463,61.639,0,85.1c-3.983,3.983-3.983,10.441,0,14.425c1.992,1.992,4.602,2.987,7.212,2.987   s5.22-0.995,7.212-2.987C474.027,280.539,474.027,229.421,442.612,198.005z\"></path>	</g></g><g>	<g>		<path d=\"M470.017,170.6c-3.984-3.983-10.44-3.983-14.425,0c-3.983,3.983-3.983,10.441,0,14.425   c18.686,18.686,28.977,43.53,28.977,69.955s-10.291,51.27-28.977,69.955c-3.983,3.983-3.983,10.441,0,14.425   c1.992,1.992,4.602,2.987,7.212,2.987c2.61,0,5.22-0.995,7.212-2.987C516.544,292.832,516.544,217.128,470.017,170.6z\"></path>	</g></g><g>	<g>		<path d=\"M83.812,212.43c3.984-3.984,3.984-10.442,0.001-14.425c-3.984-3.983-10.44-3.983-14.425,0   c-31.416,31.416-31.416,82.533,0,113.95c1.992,1.992,4.602,2.987,7.212,2.987s5.22-0.995,7.212-2.987   c3.983-3.983,3.983-10.441,0-14.425C60.349,274.068,60.349,235.891,83.812,212.43z\"></path>	</g></g><g>	<g>		<path d=\"M27.431,254.98c0-26.426,10.291-51.27,28.977-69.955c3.983-3.983,3.983-10.441,0-14.425   c-3.984-3.983-10.44-3.983-14.425,0c-46.527,46.528-46.527,122.232,0,168.76c1.992,1.992,4.602,2.987,7.212,2.987   s5.22-0.995,7.212-2.987c3.983-3.983,3.983-10.441,0-14.425C37.721,306.25,27.431,281.406,27.431,254.98z\"></path>	</g></g><g>	<g>		<path d=\"M358.06,280.099l-47.694-47.694c-2.619-2.618-6.45-3.613-10.015-2.595l-7.104,2.03c-1.015,0.291-1.98,0.736-2.859,1.323   l-14.669,9.788c-17.71-12.415-33.181-28.156-45.295-46.078l10.425-10.425c1.226-1.226,2.119-2.743,2.596-4.41l2.03-7.104   c1.018-3.562,0.023-7.394-2.595-10.015l-47.697-47.697c-2.827-2.827-7.048-3.742-10.793-2.338l-8.119,3.044   c-1.364,0.511-2.602,1.309-3.632,2.338c-1.938,1.939-3.804,4.028-5.546,6.207c-23.54,29.472-21.155,71.832,5.546,98.534   l77.633,77.632c14.404,14.405,33.363,21.733,52.398,21.732c16.254,0,32.564-5.343,46.138-16.187   c2.179-1.741,4.266-3.606,6.205-5.545c1.029-1.03,1.827-2.267,2.338-3.631l3.044-8.119   C361.802,287.147,360.888,282.927,358.06,280.099z M336.079,292.253c-21.345,17.05-52.032,15.315-71.379-4.034l-77.633-77.632   c-19.349-19.349-21.082-50.035-4.034-71.379c0.783-0.98,1.598-1.933,2.44-2.849l38.31,38.311l-13.591,13.592   c-3.331,3.331-3.947,8.51-1.491,12.531c15.402,25.2,36.656,46.986,61.469,63.005c3.415,2.204,7.81,2.17,11.194-0.085   l18.872-12.593l38.696,38.696C338.011,290.656,337.058,291.471,336.079,292.253z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>			\n							<h5>Ring til os</h5>							<ul>\n							<li>\n											<a href=\"tel:41600040\">\n											41 60 00 40\n											</a>\n									</li>\n						</ul>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M331.756,277.251l-42.881,43.026c-17.389,17.45-47.985,17.826-65.75,0l-42.883-43.026L26.226,431.767   C31.959,434.418,38.28,436,45,436h422c6.72,0,13.039-1.58,18.77-4.232L331.756,277.251z\"></path>	</g></g><g>	<g>		<path d=\"M467,76H45c-6.72,0-13.041,1.582-18.772,4.233l164.577,165.123c0.011,0.011,0.024,0.013,0.035,0.024   c0.011,0.011,0.013,0.026,0.013,0.026l53.513,53.69c5.684,5.684,17.586,5.684,23.27,0l53.502-53.681c0,0,0.013-0.024,0.024-0.035   c0,0,0.024-0.013,0.035-0.024L485.77,80.232C480.039,77.58,473.72,76,467,76z\"></path>	</g></g><g>	<g>		<path d=\"M4.786,101.212C1.82,107.21,0,113.868,0,121v270c0,7.132,1.818,13.79,4.785,19.788l154.283-154.783L4.786,101.212z\"></path>	</g></g><g>	<g>		<path d=\"M507.214,101.21L352.933,256.005L507.214,410.79C510.18,404.792,512,398.134,512,391V121   C512,113.866,510.18,107.208,507.214,101.21z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>			\n							<h5>Send os en email</h5>							<ul>\n							<li>\n											<a href=\"mailto:kontakt@cp-nordic.dk\">\n											kontakt@cp-nordic.dk\n											</a>\n									</li>\n						</ul>\n							<h3>KONTAKT OS</h3>		<p>Vi dækker hele Fyn – og tager også gerne opgaver uden for området, når der er tale om spændende eller teknisk krævende løsninger.</p>', 'Kontakt', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-01-26 14:34:08', '2026-01-26 14:34:08', '', 18, 'https://mrarif.me/cpnordic/?p=620', 0, 'revision', '', 0),
(621, 1, '2026-01-26 14:34:08', '2026-01-26 14:34:08', '<h2>Kontaktoplysninger</h2>		<p>Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid<br />velkommen til at kontakte os for en uforpligtende snak.</p>					\n			<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>			\n							<h5>Placering</h5>							<ul>\n							<li>\n										Fyn, Denmark\n									</li>\n						</ul>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M358.57,0H153.43c-27.195,0-49.319,22.124-49.319,49.319v413.362h-0.001c0,27.195,22.124,49.319,49.319,49.319H358.57   c27.195,0,49.319-22.124,49.319-49.319V49.319C407.891,22.124,385.766,0,358.57,0z M124.508,49.319   c0-15.948,12.974-28.921,28.921-28.921H358.57c15.947,0,28.921,12.974,28.921,28.921v355.589H124.508V49.319z M387.493,462.681   L387.493,462.681c-0.001,15.947-12.975,28.921-28.922,28.921H153.43c-15.948,0-28.921-12.974-28.921-28.921v-37.374h262.984   V462.681z\"></path>	</g></g><g>	<g>		<path d=\"M270.789,34.677h-29.578c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h29.578   c5.632,0,10.199-4.566,10.199-10.199C280.988,39.243,276.421,34.677,270.789,34.677z\"></path>	</g></g><g>	<g>		<path d=\"M242.204,371.251h-91.255c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h91.255   c5.632,0,10.199-4.566,10.199-10.199C252.403,375.817,247.836,371.251,242.204,371.251z\"></path>	</g></g><g>	<g>		<path d=\"M282.518,371.251h-5.346c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h5.346   c5.632,0,10.199-4.566,10.199-10.199C292.717,375.817,288.15,371.251,282.518,371.251z\"></path>	</g></g><g>	<g>		<path d=\"M256,430.406c-14.903,0-27.028,12.125-27.028,27.028s12.125,27.028,27.028,27.028s27.028-12.125,27.028-27.028   S270.903,430.406,256,430.406z M256,464.064c-3.655,0-6.629-2.974-6.629-6.63s2.974-6.629,6.629-6.629s6.63,2.974,6.63,6.629   S259.655,464.064,256,464.064z\"></path>	</g></g><g>	<g>		<path d=\"M442.612,198.005c-3.984-3.983-10.44-3.983-14.425,0c-3.983,3.983-3.983,10.441,0,14.425   c23.463,23.462,23.463,61.639,0,85.1c-3.983,3.983-3.983,10.441,0,14.425c1.992,1.992,4.602,2.987,7.212,2.987   s5.22-0.995,7.212-2.987C474.027,280.539,474.027,229.421,442.612,198.005z\"></path>	</g></g><g>	<g>		<path d=\"M470.017,170.6c-3.984-3.983-10.44-3.983-14.425,0c-3.983,3.983-3.983,10.441,0,14.425   c18.686,18.686,28.977,43.53,28.977,69.955s-10.291,51.27-28.977,69.955c-3.983,3.983-3.983,10.441,0,14.425   c1.992,1.992,4.602,2.987,7.212,2.987c2.61,0,5.22-0.995,7.212-2.987C516.544,292.832,516.544,217.128,470.017,170.6z\"></path>	</g></g><g>	<g>		<path d=\"M83.812,212.43c3.984-3.984,3.984-10.442,0.001-14.425c-3.984-3.983-10.44-3.983-14.425,0   c-31.416,31.416-31.416,82.533,0,113.95c1.992,1.992,4.602,2.987,7.212,2.987s5.22-0.995,7.212-2.987   c3.983-3.983,3.983-10.441,0-14.425C60.349,274.068,60.349,235.891,83.812,212.43z\"></path>	</g></g><g>	<g>		<path d=\"M27.431,254.98c0-26.426,10.291-51.27,28.977-69.955c3.983-3.983,3.983-10.441,0-14.425   c-3.984-3.983-10.44-3.983-14.425,0c-46.527,46.528-46.527,122.232,0,168.76c1.992,1.992,4.602,2.987,7.212,2.987   s5.22-0.995,7.212-2.987c3.983-3.983,3.983-10.441,0-14.425C37.721,306.25,27.431,281.406,27.431,254.98z\"></path>	</g></g><g>	<g>		<path d=\"M358.06,280.099l-47.694-47.694c-2.619-2.618-6.45-3.613-10.015-2.595l-7.104,2.03c-1.015,0.291-1.98,0.736-2.859,1.323   l-14.669,9.788c-17.71-12.415-33.181-28.156-45.295-46.078l10.425-10.425c1.226-1.226,2.119-2.743,2.596-4.41l2.03-7.104   c1.018-3.562,0.023-7.394-2.595-10.015l-47.697-47.697c-2.827-2.827-7.048-3.742-10.793-2.338l-8.119,3.044   c-1.364,0.511-2.602,1.309-3.632,2.338c-1.938,1.939-3.804,4.028-5.546,6.207c-23.54,29.472-21.155,71.832,5.546,98.534   l77.633,77.632c14.404,14.405,33.363,21.733,52.398,21.732c16.254,0,32.564-5.343,46.138-16.187   c2.179-1.741,4.266-3.606,6.205-5.545c1.029-1.03,1.827-2.267,2.338-3.631l3.044-8.119   C361.802,287.147,360.888,282.927,358.06,280.099z M336.079,292.253c-21.345,17.05-52.032,15.315-71.379-4.034l-77.633-77.632   c-19.349-19.349-21.082-50.035-4.034-71.379c0.783-0.98,1.598-1.933,2.44-2.849l38.31,38.311l-13.591,13.592   c-3.331,3.331-3.947,8.51-1.491,12.531c15.402,25.2,36.656,46.986,61.469,63.005c3.415,2.204,7.81,2.17,11.194-0.085   l18.872-12.593l38.696,38.696C338.011,290.656,337.058,291.471,336.079,292.253z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>			\n							<h5>Ring til os</h5>							<ul>\n							<li>\n											<a href=\"tel:41600040\">\n											41 60 00 40\n											</a>\n									</li>\n						</ul>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M331.756,277.251l-42.881,43.026c-17.389,17.45-47.985,17.826-65.75,0l-42.883-43.026L26.226,431.767   C31.959,434.418,38.28,436,45,436h422c6.72,0,13.039-1.58,18.77-4.232L331.756,277.251z\"></path>	</g></g><g>	<g>		<path d=\"M467,76H45c-6.72,0-13.041,1.582-18.772,4.233l164.577,165.123c0.011,0.011,0.024,0.013,0.035,0.024   c0.011,0.011,0.013,0.026,0.013,0.026l53.513,53.69c5.684,5.684,17.586,5.684,23.27,0l53.502-53.681c0,0,0.013-0.024,0.024-0.035   c0,0,0.024-0.013,0.035-0.024L485.77,80.232C480.039,77.58,473.72,76,467,76z\"></path>	</g></g><g>	<g>		<path d=\"M4.786,101.212C1.82,107.21,0,113.868,0,121v270c0,7.132,1.818,13.79,4.785,19.788l154.283-154.783L4.786,101.212z\"></path>	</g></g><g>	<g>		<path d=\"M507.214,101.21L352.933,256.005L507.214,410.79C510.18,404.792,512,398.134,512,391V121   C512,113.866,510.18,107.208,507.214,101.21z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>			\n							<h5>Send os en email</h5>							<ul>\n							<li>\n											<a href=\"mailto:kontakt@cp-nordic.dk\">\n											kontakt@cp-nordic.dk\n											</a>\n									</li>\n						</ul>\n							<h3>KONTAKT OS</h3>		<p>Vi dækker hele Fyn – og tager også gerne opgaver uden for området, når der er tale om spændende eller teknisk krævende løsninger.</p>', 'Kontakt', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-01-26 14:34:08', '2026-01-26 14:34:08', '', 18, 'https://mrarif.me/cpnordic/?p=621', 0, 'revision', '', 0),
(622, 1, '2026-01-26 14:34:37', '2026-01-26 14:34:37', '<h2>Kontaktoplysninger</h2>		<p>Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid<br />velkommen til at kontakte os for en uforpligtende snak.</p>					\n			<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>			\n							<h5>Placering</h5>							<ul>\n							<li>\n										Fyn, Denmark\n									</li>\n						</ul>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M358.57,0H153.43c-27.195,0-49.319,22.124-49.319,49.319v413.362h-0.001c0,27.195,22.124,49.319,49.319,49.319H358.57   c27.195,0,49.319-22.124,49.319-49.319V49.319C407.891,22.124,385.766,0,358.57,0z M124.508,49.319   c0-15.948,12.974-28.921,28.921-28.921H358.57c15.947,0,28.921,12.974,28.921,28.921v355.589H124.508V49.319z M387.493,462.681   L387.493,462.681c-0.001,15.947-12.975,28.921-28.922,28.921H153.43c-15.948,0-28.921-12.974-28.921-28.921v-37.374h262.984   V462.681z\"></path>	</g></g><g>	<g>		<path d=\"M270.789,34.677h-29.578c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h29.578   c5.632,0,10.199-4.566,10.199-10.199C280.988,39.243,276.421,34.677,270.789,34.677z\"></path>	</g></g><g>	<g>		<path d=\"M242.204,371.251h-91.255c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h91.255   c5.632,0,10.199-4.566,10.199-10.199C252.403,375.817,247.836,371.251,242.204,371.251z\"></path>	</g></g><g>	<g>		<path d=\"M282.518,371.251h-5.346c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h5.346   c5.632,0,10.199-4.566,10.199-10.199C292.717,375.817,288.15,371.251,282.518,371.251z\"></path>	</g></g><g>	<g>		<path d=\"M256,430.406c-14.903,0-27.028,12.125-27.028,27.028s12.125,27.028,27.028,27.028s27.028-12.125,27.028-27.028   S270.903,430.406,256,430.406z M256,464.064c-3.655,0-6.629-2.974-6.629-6.63s2.974-6.629,6.629-6.629s6.63,2.974,6.63,6.629   S259.655,464.064,256,464.064z\"></path>	</g></g><g>	<g>		<path d=\"M442.612,198.005c-3.984-3.983-10.44-3.983-14.425,0c-3.983,3.983-3.983,10.441,0,14.425   c23.463,23.462,23.463,61.639,0,85.1c-3.983,3.983-3.983,10.441,0,14.425c1.992,1.992,4.602,2.987,7.212,2.987   s5.22-0.995,7.212-2.987C474.027,280.539,474.027,229.421,442.612,198.005z\"></path>	</g></g><g>	<g>		<path d=\"M470.017,170.6c-3.984-3.983-10.44-3.983-14.425,0c-3.983,3.983-3.983,10.441,0,14.425   c18.686,18.686,28.977,43.53,28.977,69.955s-10.291,51.27-28.977,69.955c-3.983,3.983-3.983,10.441,0,14.425   c1.992,1.992,4.602,2.987,7.212,2.987c2.61,0,5.22-0.995,7.212-2.987C516.544,292.832,516.544,217.128,470.017,170.6z\"></path>	</g></g><g>	<g>		<path d=\"M83.812,212.43c3.984-3.984,3.984-10.442,0.001-14.425c-3.984-3.983-10.44-3.983-14.425,0   c-31.416,31.416-31.416,82.533,0,113.95c1.992,1.992,4.602,2.987,7.212,2.987s5.22-0.995,7.212-2.987   c3.983-3.983,3.983-10.441,0-14.425C60.349,274.068,60.349,235.891,83.812,212.43z\"></path>	</g></g><g>	<g>		<path d=\"M27.431,254.98c0-26.426,10.291-51.27,28.977-69.955c3.983-3.983,3.983-10.441,0-14.425   c-3.984-3.983-10.44-3.983-14.425,0c-46.527,46.528-46.527,122.232,0,168.76c1.992,1.992,4.602,2.987,7.212,2.987   s5.22-0.995,7.212-2.987c3.983-3.983,3.983-10.441,0-14.425C37.721,306.25,27.431,281.406,27.431,254.98z\"></path>	</g></g><g>	<g>		<path d=\"M358.06,280.099l-47.694-47.694c-2.619-2.618-6.45-3.613-10.015-2.595l-7.104,2.03c-1.015,0.291-1.98,0.736-2.859,1.323   l-14.669,9.788c-17.71-12.415-33.181-28.156-45.295-46.078l10.425-10.425c1.226-1.226,2.119-2.743,2.596-4.41l2.03-7.104   c1.018-3.562,0.023-7.394-2.595-10.015l-47.697-47.697c-2.827-2.827-7.048-3.742-10.793-2.338l-8.119,3.044   c-1.364,0.511-2.602,1.309-3.632,2.338c-1.938,1.939-3.804,4.028-5.546,6.207c-23.54,29.472-21.155,71.832,5.546,98.534   l77.633,77.632c14.404,14.405,33.363,21.733,52.398,21.732c16.254,0,32.564-5.343,46.138-16.187   c2.179-1.741,4.266-3.606,6.205-5.545c1.029-1.03,1.827-2.267,2.338-3.631l3.044-8.119   C361.802,287.147,360.888,282.927,358.06,280.099z M336.079,292.253c-21.345,17.05-52.032,15.315-71.379-4.034l-77.633-77.632   c-19.349-19.349-21.082-50.035-4.034-71.379c0.783-0.98,1.598-1.933,2.44-2.849l38.31,38.311l-13.591,13.592   c-3.331,3.331-3.947,8.51-1.491,12.531c15.402,25.2,36.656,46.986,61.469,63.005c3.415,2.204,7.81,2.17,11.194-0.085   l18.872-12.593l38.696,38.696C338.011,290.656,337.058,291.471,336.079,292.253z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>			\n							<h5>Ring til os</h5>							<ul>\n							<li>\n											<a href=\"tel:41600040\">\n											41 60 00 40\n											</a>\n									</li>\n						</ul>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M331.756,277.251l-42.881,43.026c-17.389,17.45-47.985,17.826-65.75,0l-42.883-43.026L26.226,431.767   C31.959,434.418,38.28,436,45,436h422c6.72,0,13.039-1.58,18.77-4.232L331.756,277.251z\"></path>	</g></g><g>	<g>		<path d=\"M467,76H45c-6.72,0-13.041,1.582-18.772,4.233l164.577,165.123c0.011,0.011,0.024,0.013,0.035,0.024   c0.011,0.011,0.013,0.026,0.013,0.026l53.513,53.69c5.684,5.684,17.586,5.684,23.27,0l53.502-53.681c0,0,0.013-0.024,0.024-0.035   c0,0,0.024-0.013,0.035-0.024L485.77,80.232C480.039,77.58,473.72,76,467,76z\"></path>	</g></g><g>	<g>		<path d=\"M4.786,101.212C1.82,107.21,0,113.868,0,121v270c0,7.132,1.818,13.79,4.785,19.788l154.283-154.783L4.786,101.212z\"></path>	</g></g><g>	<g>		<path d=\"M507.214,101.21L352.933,256.005L507.214,410.79C510.18,404.792,512,398.134,512,391V121   C512,113.866,510.18,107.208,507.214,101.21z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>			\n							<h5>Send os en email</h5>							<ul>\n							<li>\n											<a href=\"mailto:kontakt@cp-nordic.dk\">\n											kontakt@cp-nordic.dk\n											</a>\n									</li>\n						</ul>\n							<h3>KONTAKT OS</h3>		<p>Vi dækker hele Fyn – og tager også gerne opgaver uden for området, når der er tale om spændende eller teknisk krævende løsninger.</p>', 'Kontakt', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-01-26 14:34:37', '2026-01-26 14:34:37', '', 18, 'https://mrarif.me/cpnordic/?p=622', 0, 'revision', '', 0),
(623, 1, '2026-01-26 14:34:37', '2026-01-26 14:34:37', '<h2>Kontaktoplysninger</h2>		<p>Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid<br />velkommen til at kontakte os for en uforpligtende snak.</p>					\n			<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>			\n							<h5>Placering</h5>							<ul>\n							<li>\n										Fyn, Denmark\n									</li>\n						</ul>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M358.57,0H153.43c-27.195,0-49.319,22.124-49.319,49.319v413.362h-0.001c0,27.195,22.124,49.319,49.319,49.319H358.57   c27.195,0,49.319-22.124,49.319-49.319V49.319C407.891,22.124,385.766,0,358.57,0z M124.508,49.319   c0-15.948,12.974-28.921,28.921-28.921H358.57c15.947,0,28.921,12.974,28.921,28.921v355.589H124.508V49.319z M387.493,462.681   L387.493,462.681c-0.001,15.947-12.975,28.921-28.922,28.921H153.43c-15.948,0-28.921-12.974-28.921-28.921v-37.374h262.984   V462.681z\"></path>	</g></g><g>	<g>		<path d=\"M270.789,34.677h-29.578c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h29.578   c5.632,0,10.199-4.566,10.199-10.199C280.988,39.243,276.421,34.677,270.789,34.677z\"></path>	</g></g><g>	<g>		<path d=\"M242.204,371.251h-91.255c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h91.255   c5.632,0,10.199-4.566,10.199-10.199C252.403,375.817,247.836,371.251,242.204,371.251z\"></path>	</g></g><g>	<g>		<path d=\"M282.518,371.251h-5.346c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h5.346   c5.632,0,10.199-4.566,10.199-10.199C292.717,375.817,288.15,371.251,282.518,371.251z\"></path>	</g></g><g>	<g>		<path d=\"M256,430.406c-14.903,0-27.028,12.125-27.028,27.028s12.125,27.028,27.028,27.028s27.028-12.125,27.028-27.028   S270.903,430.406,256,430.406z M256,464.064c-3.655,0-6.629-2.974-6.629-6.63s2.974-6.629,6.629-6.629s6.63,2.974,6.63,6.629   S259.655,464.064,256,464.064z\"></path>	</g></g><g>	<g>		<path d=\"M442.612,198.005c-3.984-3.983-10.44-3.983-14.425,0c-3.983,3.983-3.983,10.441,0,14.425   c23.463,23.462,23.463,61.639,0,85.1c-3.983,3.983-3.983,10.441,0,14.425c1.992,1.992,4.602,2.987,7.212,2.987   s5.22-0.995,7.212-2.987C474.027,280.539,474.027,229.421,442.612,198.005z\"></path>	</g></g><g>	<g>		<path d=\"M470.017,170.6c-3.984-3.983-10.44-3.983-14.425,0c-3.983,3.983-3.983,10.441,0,14.425   c18.686,18.686,28.977,43.53,28.977,69.955s-10.291,51.27-28.977,69.955c-3.983,3.983-3.983,10.441,0,14.425   c1.992,1.992,4.602,2.987,7.212,2.987c2.61,0,5.22-0.995,7.212-2.987C516.544,292.832,516.544,217.128,470.017,170.6z\"></path>	</g></g><g>	<g>		<path d=\"M83.812,212.43c3.984-3.984,3.984-10.442,0.001-14.425c-3.984-3.983-10.44-3.983-14.425,0   c-31.416,31.416-31.416,82.533,0,113.95c1.992,1.992,4.602,2.987,7.212,2.987s5.22-0.995,7.212-2.987   c3.983-3.983,3.983-10.441,0-14.425C60.349,274.068,60.349,235.891,83.812,212.43z\"></path>	</g></g><g>	<g>		<path d=\"M27.431,254.98c0-26.426,10.291-51.27,28.977-69.955c3.983-3.983,3.983-10.441,0-14.425   c-3.984-3.983-10.44-3.983-14.425,0c-46.527,46.528-46.527,122.232,0,168.76c1.992,1.992,4.602,2.987,7.212,2.987   s5.22-0.995,7.212-2.987c3.983-3.983,3.983-10.441,0-14.425C37.721,306.25,27.431,281.406,27.431,254.98z\"></path>	</g></g><g>	<g>		<path d=\"M358.06,280.099l-47.694-47.694c-2.619-2.618-6.45-3.613-10.015-2.595l-7.104,2.03c-1.015,0.291-1.98,0.736-2.859,1.323   l-14.669,9.788c-17.71-12.415-33.181-28.156-45.295-46.078l10.425-10.425c1.226-1.226,2.119-2.743,2.596-4.41l2.03-7.104   c1.018-3.562,0.023-7.394-2.595-10.015l-47.697-47.697c-2.827-2.827-7.048-3.742-10.793-2.338l-8.119,3.044   c-1.364,0.511-2.602,1.309-3.632,2.338c-1.938,1.939-3.804,4.028-5.546,6.207c-23.54,29.472-21.155,71.832,5.546,98.534   l77.633,77.632c14.404,14.405,33.363,21.733,52.398,21.732c16.254,0,32.564-5.343,46.138-16.187   c2.179-1.741,4.266-3.606,6.205-5.545c1.029-1.03,1.827-2.267,2.338-3.631l3.044-8.119   C361.802,287.147,360.888,282.927,358.06,280.099z M336.079,292.253c-21.345,17.05-52.032,15.315-71.379-4.034l-77.633-77.632   c-19.349-19.349-21.082-50.035-4.034-71.379c0.783-0.98,1.598-1.933,2.44-2.849l38.31,38.311l-13.591,13.592   c-3.331,3.331-3.947,8.51-1.491,12.531c15.402,25.2,36.656,46.986,61.469,63.005c3.415,2.204,7.81,2.17,11.194-0.085   l18.872-12.593l38.696,38.696C338.011,290.656,337.058,291.471,336.079,292.253z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>			\n							<h5>Ring til os</h5>							<ul>\n							<li>\n											<a href=\"tel:41600040\">\n											41 60 00 40\n											</a>\n									</li>\n						</ul>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M331.756,277.251l-42.881,43.026c-17.389,17.45-47.985,17.826-65.75,0l-42.883-43.026L26.226,431.767   C31.959,434.418,38.28,436,45,436h422c6.72,0,13.039-1.58,18.77-4.232L331.756,277.251z\"></path>	</g></g><g>	<g>		<path d=\"M467,76H45c-6.72,0-13.041,1.582-18.772,4.233l164.577,165.123c0.011,0.011,0.024,0.013,0.035,0.024   c0.011,0.011,0.013,0.026,0.013,0.026l53.513,53.69c5.684,5.684,17.586,5.684,23.27,0l53.502-53.681c0,0,0.013-0.024,0.024-0.035   c0,0,0.024-0.013,0.035-0.024L485.77,80.232C480.039,77.58,473.72,76,467,76z\"></path>	</g></g><g>	<g>		<path d=\"M4.786,101.212C1.82,107.21,0,113.868,0,121v270c0,7.132,1.818,13.79,4.785,19.788l154.283-154.783L4.786,101.212z\"></path>	</g></g><g>	<g>		<path d=\"M507.214,101.21L352.933,256.005L507.214,410.79C510.18,404.792,512,398.134,512,391V121   C512,113.866,510.18,107.208,507.214,101.21z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>			\n							<h5>Send os en email</h5>							<ul>\n							<li>\n											<a href=\"mailto:kontakt@cp-nordic.dk\">\n											kontakt@cp-nordic.dk\n											</a>\n									</li>\n						</ul>\n							<h3>KONTAKT OS</h3>		<p>Vi dækker hele Fyn – og tager også gerne opgaver uden for området, når der er tale om spændende eller teknisk krævende løsninger.</p>', 'Kontakt', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-01-26 14:34:37', '2026-01-26 14:34:37', '', 18, 'https://mrarif.me/cpnordic/?p=623', 0, 'revision', '', 0),
(624, 1, '2026-01-26 14:34:37', '2026-01-26 14:34:37', '<h2>Kontaktoplysninger</h2>		<p>Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid<br />velkommen til at kontakte os for en uforpligtende snak.</p>					\n			<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>			\n							<h5>Placering</h5>							<ul>\n							<li>\n										Fyn, Denmark\n									</li>\n						</ul>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M358.57,0H153.43c-27.195,0-49.319,22.124-49.319,49.319v413.362h-0.001c0,27.195,22.124,49.319,49.319,49.319H358.57   c27.195,0,49.319-22.124,49.319-49.319V49.319C407.891,22.124,385.766,0,358.57,0z M124.508,49.319   c0-15.948,12.974-28.921,28.921-28.921H358.57c15.947,0,28.921,12.974,28.921,28.921v355.589H124.508V49.319z M387.493,462.681   L387.493,462.681c-0.001,15.947-12.975,28.921-28.922,28.921H153.43c-15.948,0-28.921-12.974-28.921-28.921v-37.374h262.984   V462.681z\"></path>	</g></g><g>	<g>		<path d=\"M270.789,34.677h-29.578c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h29.578   c5.632,0,10.199-4.566,10.199-10.199C280.988,39.243,276.421,34.677,270.789,34.677z\"></path>	</g></g><g>	<g>		<path d=\"M242.204,371.251h-91.255c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h91.255   c5.632,0,10.199-4.566,10.199-10.199C252.403,375.817,247.836,371.251,242.204,371.251z\"></path>	</g></g><g>	<g>		<path d=\"M282.518,371.251h-5.346c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h5.346   c5.632,0,10.199-4.566,10.199-10.199C292.717,375.817,288.15,371.251,282.518,371.251z\"></path>	</g></g><g>	<g>		<path d=\"M256,430.406c-14.903,0-27.028,12.125-27.028,27.028s12.125,27.028,27.028,27.028s27.028-12.125,27.028-27.028   S270.903,430.406,256,430.406z M256,464.064c-3.655,0-6.629-2.974-6.629-6.63s2.974-6.629,6.629-6.629s6.63,2.974,6.63,6.629   S259.655,464.064,256,464.064z\"></path>	</g></g><g>	<g>		<path d=\"M442.612,198.005c-3.984-3.983-10.44-3.983-14.425,0c-3.983,3.983-3.983,10.441,0,14.425   c23.463,23.462,23.463,61.639,0,85.1c-3.983,3.983-3.983,10.441,0,14.425c1.992,1.992,4.602,2.987,7.212,2.987   s5.22-0.995,7.212-2.987C474.027,280.539,474.027,229.421,442.612,198.005z\"></path>	</g></g><g>	<g>		<path d=\"M470.017,170.6c-3.984-3.983-10.44-3.983-14.425,0c-3.983,3.983-3.983,10.441,0,14.425   c18.686,18.686,28.977,43.53,28.977,69.955s-10.291,51.27-28.977,69.955c-3.983,3.983-3.983,10.441,0,14.425   c1.992,1.992,4.602,2.987,7.212,2.987c2.61,0,5.22-0.995,7.212-2.987C516.544,292.832,516.544,217.128,470.017,170.6z\"></path>	</g></g><g>	<g>		<path d=\"M83.812,212.43c3.984-3.984,3.984-10.442,0.001-14.425c-3.984-3.983-10.44-3.983-14.425,0   c-31.416,31.416-31.416,82.533,0,113.95c1.992,1.992,4.602,2.987,7.212,2.987s5.22-0.995,7.212-2.987   c3.983-3.983,3.983-10.441,0-14.425C60.349,274.068,60.349,235.891,83.812,212.43z\"></path>	</g></g><g>	<g>		<path d=\"M27.431,254.98c0-26.426,10.291-51.27,28.977-69.955c3.983-3.983,3.983-10.441,0-14.425   c-3.984-3.983-10.44-3.983-14.425,0c-46.527,46.528-46.527,122.232,0,168.76c1.992,1.992,4.602,2.987,7.212,2.987   s5.22-0.995,7.212-2.987c3.983-3.983,3.983-10.441,0-14.425C37.721,306.25,27.431,281.406,27.431,254.98z\"></path>	</g></g><g>	<g>		<path d=\"M358.06,280.099l-47.694-47.694c-2.619-2.618-6.45-3.613-10.015-2.595l-7.104,2.03c-1.015,0.291-1.98,0.736-2.859,1.323   l-14.669,9.788c-17.71-12.415-33.181-28.156-45.295-46.078l10.425-10.425c1.226-1.226,2.119-2.743,2.596-4.41l2.03-7.104   c1.018-3.562,0.023-7.394-2.595-10.015l-47.697-47.697c-2.827-2.827-7.048-3.742-10.793-2.338l-8.119,3.044   c-1.364,0.511-2.602,1.309-3.632,2.338c-1.938,1.939-3.804,4.028-5.546,6.207c-23.54,29.472-21.155,71.832,5.546,98.534   l77.633,77.632c14.404,14.405,33.363,21.733,52.398,21.732c16.254,0,32.564-5.343,46.138-16.187   c2.179-1.741,4.266-3.606,6.205-5.545c1.029-1.03,1.827-2.267,2.338-3.631l3.044-8.119   C361.802,287.147,360.888,282.927,358.06,280.099z M336.079,292.253c-21.345,17.05-52.032,15.315-71.379-4.034l-77.633-77.632   c-19.349-19.349-21.082-50.035-4.034-71.379c0.783-0.98,1.598-1.933,2.44-2.849l38.31,38.311l-13.591,13.592   c-3.331,3.331-3.947,8.51-1.491,12.531c15.402,25.2,36.656,46.986,61.469,63.005c3.415,2.204,7.81,2.17,11.194-0.085   l18.872-12.593l38.696,38.696C338.011,290.656,337.058,291.471,336.079,292.253z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>			\n							<h5>Ring til os</h5>							<ul>\n							<li>\n											<a href=\"tel:41600040\">\n											41 60 00 40\n											</a>\n									</li>\n						</ul>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M331.756,277.251l-42.881,43.026c-17.389,17.45-47.985,17.826-65.75,0l-42.883-43.026L26.226,431.767   C31.959,434.418,38.28,436,45,436h422c6.72,0,13.039-1.58,18.77-4.232L331.756,277.251z\"></path>	</g></g><g>	<g>		<path d=\"M467,76H45c-6.72,0-13.041,1.582-18.772,4.233l164.577,165.123c0.011,0.011,0.024,0.013,0.035,0.024   c0.011,0.011,0.013,0.026,0.013,0.026l53.513,53.69c5.684,5.684,17.586,5.684,23.27,0l53.502-53.681c0,0,0.013-0.024,0.024-0.035   c0,0,0.024-0.013,0.035-0.024L485.77,80.232C480.039,77.58,473.72,76,467,76z\"></path>	</g></g><g>	<g>		<path d=\"M4.786,101.212C1.82,107.21,0,113.868,0,121v270c0,7.132,1.818,13.79,4.785,19.788l154.283-154.783L4.786,101.212z\"></path>	</g></g><g>	<g>		<path d=\"M507.214,101.21L352.933,256.005L507.214,410.79C510.18,404.792,512,398.134,512,391V121   C512,113.866,510.18,107.208,507.214,101.21z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>			\n							<h5>Send os en email</h5>							<ul>\n							<li>\n											<a href=\"mailto:kontakt@cp-nordic.dk\">\n											kontakt@cp-nordic.dk\n											</a>\n									</li>\n						</ul>\n							<h3>KONTAKT OS</h3>		<p>Vi dækker hele Fyn – og tager også gerne opgaver uden for området, når der er tale om spændende eller teknisk krævende løsninger.</p>', 'Kontakt', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-01-26 14:34:37', '2026-01-26 14:34:37', '', 18, 'https://mrarif.me/cpnordic/?p=624', 0, 'revision', '', 0),
(625, 1, '2026-01-26 14:34:51', '2026-01-26 14:34:51', '<h2>Kontaktoplysninger</h2>		<p>Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid<br />velkommen til at kontakte os for en uforpligtende snak.</p>					\n			<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>			\n							<h5>Placering</h5>							<ul>\n							<li>\n										Fyn, Denmark\n									</li>\n						</ul>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M358.57,0H153.43c-27.195,0-49.319,22.124-49.319,49.319v413.362h-0.001c0,27.195,22.124,49.319,49.319,49.319H358.57   c27.195,0,49.319-22.124,49.319-49.319V49.319C407.891,22.124,385.766,0,358.57,0z M124.508,49.319   c0-15.948,12.974-28.921,28.921-28.921H358.57c15.947,0,28.921,12.974,28.921,28.921v355.589H124.508V49.319z M387.493,462.681   L387.493,462.681c-0.001,15.947-12.975,28.921-28.922,28.921H153.43c-15.948,0-28.921-12.974-28.921-28.921v-37.374h262.984   V462.681z\"></path>	</g></g><g>	<g>		<path d=\"M270.789,34.677h-29.578c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h29.578   c5.632,0,10.199-4.566,10.199-10.199C280.988,39.243,276.421,34.677,270.789,34.677z\"></path>	</g></g><g>	<g>		<path d=\"M242.204,371.251h-91.255c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h91.255   c5.632,0,10.199-4.566,10.199-10.199C252.403,375.817,247.836,371.251,242.204,371.251z\"></path>	</g></g><g>	<g>		<path d=\"M282.518,371.251h-5.346c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h5.346   c5.632,0,10.199-4.566,10.199-10.199C292.717,375.817,288.15,371.251,282.518,371.251z\"></path>	</g></g><g>	<g>		<path d=\"M256,430.406c-14.903,0-27.028,12.125-27.028,27.028s12.125,27.028,27.028,27.028s27.028-12.125,27.028-27.028   S270.903,430.406,256,430.406z M256,464.064c-3.655,0-6.629-2.974-6.629-6.63s2.974-6.629,6.629-6.629s6.63,2.974,6.63,6.629   S259.655,464.064,256,464.064z\"></path>	</g></g><g>	<g>		<path d=\"M442.612,198.005c-3.984-3.983-10.44-3.983-14.425,0c-3.983,3.983-3.983,10.441,0,14.425   c23.463,23.462,23.463,61.639,0,85.1c-3.983,3.983-3.983,10.441,0,14.425c1.992,1.992,4.602,2.987,7.212,2.987   s5.22-0.995,7.212-2.987C474.027,280.539,474.027,229.421,442.612,198.005z\"></path>	</g></g><g>	<g>		<path d=\"M470.017,170.6c-3.984-3.983-10.44-3.983-14.425,0c-3.983,3.983-3.983,10.441,0,14.425   c18.686,18.686,28.977,43.53,28.977,69.955s-10.291,51.27-28.977,69.955c-3.983,3.983-3.983,10.441,0,14.425   c1.992,1.992,4.602,2.987,7.212,2.987c2.61,0,5.22-0.995,7.212-2.987C516.544,292.832,516.544,217.128,470.017,170.6z\"></path>	</g></g><g>	<g>		<path d=\"M83.812,212.43c3.984-3.984,3.984-10.442,0.001-14.425c-3.984-3.983-10.44-3.983-14.425,0   c-31.416,31.416-31.416,82.533,0,113.95c1.992,1.992,4.602,2.987,7.212,2.987s5.22-0.995,7.212-2.987   c3.983-3.983,3.983-10.441,0-14.425C60.349,274.068,60.349,235.891,83.812,212.43z\"></path>	</g></g><g>	<g>		<path d=\"M27.431,254.98c0-26.426,10.291-51.27,28.977-69.955c3.983-3.983,3.983-10.441,0-14.425   c-3.984-3.983-10.44-3.983-14.425,0c-46.527,46.528-46.527,122.232,0,168.76c1.992,1.992,4.602,2.987,7.212,2.987   s5.22-0.995,7.212-2.987c3.983-3.983,3.983-10.441,0-14.425C37.721,306.25,27.431,281.406,27.431,254.98z\"></path>	</g></g><g>	<g>		<path d=\"M358.06,280.099l-47.694-47.694c-2.619-2.618-6.45-3.613-10.015-2.595l-7.104,2.03c-1.015,0.291-1.98,0.736-2.859,1.323   l-14.669,9.788c-17.71-12.415-33.181-28.156-45.295-46.078l10.425-10.425c1.226-1.226,2.119-2.743,2.596-4.41l2.03-7.104   c1.018-3.562,0.023-7.394-2.595-10.015l-47.697-47.697c-2.827-2.827-7.048-3.742-10.793-2.338l-8.119,3.044   c-1.364,0.511-2.602,1.309-3.632,2.338c-1.938,1.939-3.804,4.028-5.546,6.207c-23.54,29.472-21.155,71.832,5.546,98.534   l77.633,77.632c14.404,14.405,33.363,21.733,52.398,21.732c16.254,0,32.564-5.343,46.138-16.187   c2.179-1.741,4.266-3.606,6.205-5.545c1.029-1.03,1.827-2.267,2.338-3.631l3.044-8.119   C361.802,287.147,360.888,282.927,358.06,280.099z M336.079,292.253c-21.345,17.05-52.032,15.315-71.379-4.034l-77.633-77.632   c-19.349-19.349-21.082-50.035-4.034-71.379c0.783-0.98,1.598-1.933,2.44-2.849l38.31,38.311l-13.591,13.592   c-3.331,3.331-3.947,8.51-1.491,12.531c15.402,25.2,36.656,46.986,61.469,63.005c3.415,2.204,7.81,2.17,11.194-0.085   l18.872-12.593l38.696,38.696C338.011,290.656,337.058,291.471,336.079,292.253z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>			\n							<h5>Ring til os</h5>							<ul>\n							<li>\n											<a href=\"tel:41600040\">\n											41 60 00 40\n											</a>\n									</li>\n						</ul>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M331.756,277.251l-42.881,43.026c-17.389,17.45-47.985,17.826-65.75,0l-42.883-43.026L26.226,431.767   C31.959,434.418,38.28,436,45,436h422c6.72,0,13.039-1.58,18.77-4.232L331.756,277.251z\"></path>	</g></g><g>	<g>		<path d=\"M467,76H45c-6.72,0-13.041,1.582-18.772,4.233l164.577,165.123c0.011,0.011,0.024,0.013,0.035,0.024   c0.011,0.011,0.013,0.026,0.013,0.026l53.513,53.69c5.684,5.684,17.586,5.684,23.27,0l53.502-53.681c0,0,0.013-0.024,0.024-0.035   c0,0,0.024-0.013,0.035-0.024L485.77,80.232C480.039,77.58,473.72,76,467,76z\"></path>	</g></g><g>	<g>		<path d=\"M4.786,101.212C1.82,107.21,0,113.868,0,121v270c0,7.132,1.818,13.79,4.785,19.788l154.283-154.783L4.786,101.212z\"></path>	</g></g><g>	<g>		<path d=\"M507.214,101.21L352.933,256.005L507.214,410.79C510.18,404.792,512,398.134,512,391V121   C512,113.866,510.18,107.208,507.214,101.21z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>			\n							<h5>Send os en email</h5>							<ul>\n							<li>\n											<a href=\"mailto:kontakt@cp-nordic.dk\">\n											kontakt@cp-nordic.dk\n											</a>\n									</li>\n						</ul>\n							<h3>KONTAKT OS</h3>		<p>Vi dækker hele Fyn – og tager også gerne opgaver uden for området, når der er tale om spændende eller teknisk krævende løsninger.</p>', 'Kontakt', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-01-26 14:34:51', '2026-01-26 14:34:51', '', 18, 'https://mrarif.me/cpnordic/?p=625', 0, 'revision', '', 0),
(626, 1, '2026-01-26 14:34:51', '2026-01-26 14:34:51', '<h2>Kontaktoplysninger</h2>		<p>Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid<br />velkommen til at kontakte os for en uforpligtende snak.</p>					\n			<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>			\n							<h5>Placering</h5>							<ul>\n							<li>\n										Fyn, Denmark\n									</li>\n						</ul>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M358.57,0H153.43c-27.195,0-49.319,22.124-49.319,49.319v413.362h-0.001c0,27.195,22.124,49.319,49.319,49.319H358.57   c27.195,0,49.319-22.124,49.319-49.319V49.319C407.891,22.124,385.766,0,358.57,0z M124.508,49.319   c0-15.948,12.974-28.921,28.921-28.921H358.57c15.947,0,28.921,12.974,28.921,28.921v355.589H124.508V49.319z M387.493,462.681   L387.493,462.681c-0.001,15.947-12.975,28.921-28.922,28.921H153.43c-15.948,0-28.921-12.974-28.921-28.921v-37.374h262.984   V462.681z\"></path>	</g></g><g>	<g>		<path d=\"M270.789,34.677h-29.578c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h29.578   c5.632,0,10.199-4.566,10.199-10.199C280.988,39.243,276.421,34.677,270.789,34.677z\"></path>	</g></g><g>	<g>		<path d=\"M242.204,371.251h-91.255c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h91.255   c5.632,0,10.199-4.566,10.199-10.199C252.403,375.817,247.836,371.251,242.204,371.251z\"></path>	</g></g><g>	<g>		<path d=\"M282.518,371.251h-5.346c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h5.346   c5.632,0,10.199-4.566,10.199-10.199C292.717,375.817,288.15,371.251,282.518,371.251z\"></path>	</g></g><g>	<g>		<path d=\"M256,430.406c-14.903,0-27.028,12.125-27.028,27.028s12.125,27.028,27.028,27.028s27.028-12.125,27.028-27.028   S270.903,430.406,256,430.406z M256,464.064c-3.655,0-6.629-2.974-6.629-6.63s2.974-6.629,6.629-6.629s6.63,2.974,6.63,6.629   S259.655,464.064,256,464.064z\"></path>	</g></g><g>	<g>		<path d=\"M442.612,198.005c-3.984-3.983-10.44-3.983-14.425,0c-3.983,3.983-3.983,10.441,0,14.425   c23.463,23.462,23.463,61.639,0,85.1c-3.983,3.983-3.983,10.441,0,14.425c1.992,1.992,4.602,2.987,7.212,2.987   s5.22-0.995,7.212-2.987C474.027,280.539,474.027,229.421,442.612,198.005z\"></path>	</g></g><g>	<g>		<path d=\"M470.017,170.6c-3.984-3.983-10.44-3.983-14.425,0c-3.983,3.983-3.983,10.441,0,14.425   c18.686,18.686,28.977,43.53,28.977,69.955s-10.291,51.27-28.977,69.955c-3.983,3.983-3.983,10.441,0,14.425   c1.992,1.992,4.602,2.987,7.212,2.987c2.61,0,5.22-0.995,7.212-2.987C516.544,292.832,516.544,217.128,470.017,170.6z\"></path>	</g></g><g>	<g>		<path d=\"M83.812,212.43c3.984-3.984,3.984-10.442,0.001-14.425c-3.984-3.983-10.44-3.983-14.425,0   c-31.416,31.416-31.416,82.533,0,113.95c1.992,1.992,4.602,2.987,7.212,2.987s5.22-0.995,7.212-2.987   c3.983-3.983,3.983-10.441,0-14.425C60.349,274.068,60.349,235.891,83.812,212.43z\"></path>	</g></g><g>	<g>		<path d=\"M27.431,254.98c0-26.426,10.291-51.27,28.977-69.955c3.983-3.983,3.983-10.441,0-14.425   c-3.984-3.983-10.44-3.983-14.425,0c-46.527,46.528-46.527,122.232,0,168.76c1.992,1.992,4.602,2.987,7.212,2.987   s5.22-0.995,7.212-2.987c3.983-3.983,3.983-10.441,0-14.425C37.721,306.25,27.431,281.406,27.431,254.98z\"></path>	</g></g><g>	<g>		<path d=\"M358.06,280.099l-47.694-47.694c-2.619-2.618-6.45-3.613-10.015-2.595l-7.104,2.03c-1.015,0.291-1.98,0.736-2.859,1.323   l-14.669,9.788c-17.71-12.415-33.181-28.156-45.295-46.078l10.425-10.425c1.226-1.226,2.119-2.743,2.596-4.41l2.03-7.104   c1.018-3.562,0.023-7.394-2.595-10.015l-47.697-47.697c-2.827-2.827-7.048-3.742-10.793-2.338l-8.119,3.044   c-1.364,0.511-2.602,1.309-3.632,2.338c-1.938,1.939-3.804,4.028-5.546,6.207c-23.54,29.472-21.155,71.832,5.546,98.534   l77.633,77.632c14.404,14.405,33.363,21.733,52.398,21.732c16.254,0,32.564-5.343,46.138-16.187   c2.179-1.741,4.266-3.606,6.205-5.545c1.029-1.03,1.827-2.267,2.338-3.631l3.044-8.119   C361.802,287.147,360.888,282.927,358.06,280.099z M336.079,292.253c-21.345,17.05-52.032,15.315-71.379-4.034l-77.633-77.632   c-19.349-19.349-21.082-50.035-4.034-71.379c0.783-0.98,1.598-1.933,2.44-2.849l38.31,38.311l-13.591,13.592   c-3.331,3.331-3.947,8.51-1.491,12.531c15.402,25.2,36.656,46.986,61.469,63.005c3.415,2.204,7.81,2.17,11.194-0.085   l18.872-12.593l38.696,38.696C338.011,290.656,337.058,291.471,336.079,292.253z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>			\n							<h5>Ring til os</h5>							<ul>\n							<li>\n											<a href=\"tel:41600040\">\n											41 60 00 40\n											</a>\n									</li>\n						</ul>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M331.756,277.251l-42.881,43.026c-17.389,17.45-47.985,17.826-65.75,0l-42.883-43.026L26.226,431.767   C31.959,434.418,38.28,436,45,436h422c6.72,0,13.039-1.58,18.77-4.232L331.756,277.251z\"></path>	</g></g><g>	<g>		<path d=\"M467,76H45c-6.72,0-13.041,1.582-18.772,4.233l164.577,165.123c0.011,0.011,0.024,0.013,0.035,0.024   c0.011,0.011,0.013,0.026,0.013,0.026l53.513,53.69c5.684,5.684,17.586,5.684,23.27,0l53.502-53.681c0,0,0.013-0.024,0.024-0.035   c0,0,0.024-0.013,0.035-0.024L485.77,80.232C480.039,77.58,473.72,76,467,76z\"></path>	</g></g><g>	<g>		<path d=\"M4.786,101.212C1.82,107.21,0,113.868,0,121v270c0,7.132,1.818,13.79,4.785,19.788l154.283-154.783L4.786,101.212z\"></path>	</g></g><g>	<g>		<path d=\"M507.214,101.21L352.933,256.005L507.214,410.79C510.18,404.792,512,398.134,512,391V121   C512,113.866,510.18,107.208,507.214,101.21z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>			\n							<h5>Send os en email</h5>							<ul>\n							<li>\n											<a href=\"mailto:kontakt@cp-nordic.dk\">\n											kontakt@cp-nordic.dk\n											</a>\n									</li>\n						</ul>\n							<h3>KONTAKT OS</h3>		<p>Vi dækker hele Fyn – og tager også gerne opgaver uden for området, når der er tale om spændende eller teknisk krævende løsninger.</p>', 'Kontakt', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-01-26 14:34:51', '2026-01-26 14:34:51', '', 18, 'https://mrarif.me/cpnordic/?p=626', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(627, 1, '2026-01-26 14:34:52', '2026-01-26 14:34:52', '<h2>Kontaktoplysninger</h2>		<p>Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid<br />velkommen til at kontakte os for en uforpligtende snak.</p>					\n			<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>			\n							<h5>Placering</h5>							<ul>\n							<li>\n										Fyn, Denmark\n									</li>\n						</ul>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M358.57,0H153.43c-27.195,0-49.319,22.124-49.319,49.319v413.362h-0.001c0,27.195,22.124,49.319,49.319,49.319H358.57   c27.195,0,49.319-22.124,49.319-49.319V49.319C407.891,22.124,385.766,0,358.57,0z M124.508,49.319   c0-15.948,12.974-28.921,28.921-28.921H358.57c15.947,0,28.921,12.974,28.921,28.921v355.589H124.508V49.319z M387.493,462.681   L387.493,462.681c-0.001,15.947-12.975,28.921-28.922,28.921H153.43c-15.948,0-28.921-12.974-28.921-28.921v-37.374h262.984   V462.681z\"></path>	</g></g><g>	<g>		<path d=\"M270.789,34.677h-29.578c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h29.578   c5.632,0,10.199-4.566,10.199-10.199C280.988,39.243,276.421,34.677,270.789,34.677z\"></path>	</g></g><g>	<g>		<path d=\"M242.204,371.251h-91.255c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h91.255   c5.632,0,10.199-4.566,10.199-10.199C252.403,375.817,247.836,371.251,242.204,371.251z\"></path>	</g></g><g>	<g>		<path d=\"M282.518,371.251h-5.346c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h5.346   c5.632,0,10.199-4.566,10.199-10.199C292.717,375.817,288.15,371.251,282.518,371.251z\"></path>	</g></g><g>	<g>		<path d=\"M256,430.406c-14.903,0-27.028,12.125-27.028,27.028s12.125,27.028,27.028,27.028s27.028-12.125,27.028-27.028   S270.903,430.406,256,430.406z M256,464.064c-3.655,0-6.629-2.974-6.629-6.63s2.974-6.629,6.629-6.629s6.63,2.974,6.63,6.629   S259.655,464.064,256,464.064z\"></path>	</g></g><g>	<g>		<path d=\"M442.612,198.005c-3.984-3.983-10.44-3.983-14.425,0c-3.983,3.983-3.983,10.441,0,14.425   c23.463,23.462,23.463,61.639,0,85.1c-3.983,3.983-3.983,10.441,0,14.425c1.992,1.992,4.602,2.987,7.212,2.987   s5.22-0.995,7.212-2.987C474.027,280.539,474.027,229.421,442.612,198.005z\"></path>	</g></g><g>	<g>		<path d=\"M470.017,170.6c-3.984-3.983-10.44-3.983-14.425,0c-3.983,3.983-3.983,10.441,0,14.425   c18.686,18.686,28.977,43.53,28.977,69.955s-10.291,51.27-28.977,69.955c-3.983,3.983-3.983,10.441,0,14.425   c1.992,1.992,4.602,2.987,7.212,2.987c2.61,0,5.22-0.995,7.212-2.987C516.544,292.832,516.544,217.128,470.017,170.6z\"></path>	</g></g><g>	<g>		<path d=\"M83.812,212.43c3.984-3.984,3.984-10.442,0.001-14.425c-3.984-3.983-10.44-3.983-14.425,0   c-31.416,31.416-31.416,82.533,0,113.95c1.992,1.992,4.602,2.987,7.212,2.987s5.22-0.995,7.212-2.987   c3.983-3.983,3.983-10.441,0-14.425C60.349,274.068,60.349,235.891,83.812,212.43z\"></path>	</g></g><g>	<g>		<path d=\"M27.431,254.98c0-26.426,10.291-51.27,28.977-69.955c3.983-3.983,3.983-10.441,0-14.425   c-3.984-3.983-10.44-3.983-14.425,0c-46.527,46.528-46.527,122.232,0,168.76c1.992,1.992,4.602,2.987,7.212,2.987   s5.22-0.995,7.212-2.987c3.983-3.983,3.983-10.441,0-14.425C37.721,306.25,27.431,281.406,27.431,254.98z\"></path>	</g></g><g>	<g>		<path d=\"M358.06,280.099l-47.694-47.694c-2.619-2.618-6.45-3.613-10.015-2.595l-7.104,2.03c-1.015,0.291-1.98,0.736-2.859,1.323   l-14.669,9.788c-17.71-12.415-33.181-28.156-45.295-46.078l10.425-10.425c1.226-1.226,2.119-2.743,2.596-4.41l2.03-7.104   c1.018-3.562,0.023-7.394-2.595-10.015l-47.697-47.697c-2.827-2.827-7.048-3.742-10.793-2.338l-8.119,3.044   c-1.364,0.511-2.602,1.309-3.632,2.338c-1.938,1.939-3.804,4.028-5.546,6.207c-23.54,29.472-21.155,71.832,5.546,98.534   l77.633,77.632c14.404,14.405,33.363,21.733,52.398,21.732c16.254,0,32.564-5.343,46.138-16.187   c2.179-1.741,4.266-3.606,6.205-5.545c1.029-1.03,1.827-2.267,2.338-3.631l3.044-8.119   C361.802,287.147,360.888,282.927,358.06,280.099z M336.079,292.253c-21.345,17.05-52.032,15.315-71.379-4.034l-77.633-77.632   c-19.349-19.349-21.082-50.035-4.034-71.379c0.783-0.98,1.598-1.933,2.44-2.849l38.31,38.311l-13.591,13.592   c-3.331,3.331-3.947,8.51-1.491,12.531c15.402,25.2,36.656,46.986,61.469,63.005c3.415,2.204,7.81,2.17,11.194-0.085   l18.872-12.593l38.696,38.696C338.011,290.656,337.058,291.471,336.079,292.253z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>			\n							<h5>Ring til os</h5>							<ul>\n							<li>\n											<a href=\"tel:41600040\">\n											41 60 00 40\n											</a>\n									</li>\n						</ul>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M331.756,277.251l-42.881,43.026c-17.389,17.45-47.985,17.826-65.75,0l-42.883-43.026L26.226,431.767   C31.959,434.418,38.28,436,45,436h422c6.72,0,13.039-1.58,18.77-4.232L331.756,277.251z\"></path>	</g></g><g>	<g>		<path d=\"M467,76H45c-6.72,0-13.041,1.582-18.772,4.233l164.577,165.123c0.011,0.011,0.024,0.013,0.035,0.024   c0.011,0.011,0.013,0.026,0.013,0.026l53.513,53.69c5.684,5.684,17.586,5.684,23.27,0l53.502-53.681c0,0,0.013-0.024,0.024-0.035   c0,0,0.024-0.013,0.035-0.024L485.77,80.232C480.039,77.58,473.72,76,467,76z\"></path>	</g></g><g>	<g>		<path d=\"M4.786,101.212C1.82,107.21,0,113.868,0,121v270c0,7.132,1.818,13.79,4.785,19.788l154.283-154.783L4.786,101.212z\"></path>	</g></g><g>	<g>		<path d=\"M507.214,101.21L352.933,256.005L507.214,410.79C510.18,404.792,512,398.134,512,391V121   C512,113.866,510.18,107.208,507.214,101.21z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>			\n							<h5>Send os en email</h5>							<ul>\n							<li>\n											<a href=\"mailto:kontakt@cp-nordic.dk\">\n											kontakt@cp-nordic.dk\n											</a>\n									</li>\n						</ul>\n							<h3>KONTAKT OS</h3>		<p>Vi dækker hele Fyn – og tager også gerne opgaver uden for området, når der er tale om spændende eller teknisk krævende løsninger.</p>', 'Kontakt', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-01-26 14:34:52', '2026-01-26 14:34:52', '', 18, 'https://mrarif.me/cpnordic/?p=627', 0, 'revision', '', 0),
(628, 1, '2026-01-26 14:35:12', '2026-01-26 14:35:12', '<h2>Kontaktoplysninger</h2>		<p>Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid<br />velkommen til at kontakte os for en uforpligtende snak.</p>					\n			<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>			\n							<h5>Placering</h5>							<ul>\n							<li>\n										Fyn, Denmark\n									</li>\n						</ul>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M358.57,0H153.43c-27.195,0-49.319,22.124-49.319,49.319v413.362h-0.001c0,27.195,22.124,49.319,49.319,49.319H358.57   c27.195,0,49.319-22.124,49.319-49.319V49.319C407.891,22.124,385.766,0,358.57,0z M124.508,49.319   c0-15.948,12.974-28.921,28.921-28.921H358.57c15.947,0,28.921,12.974,28.921,28.921v355.589H124.508V49.319z M387.493,462.681   L387.493,462.681c-0.001,15.947-12.975,28.921-28.922,28.921H153.43c-15.948,0-28.921-12.974-28.921-28.921v-37.374h262.984   V462.681z\"></path>	</g></g><g>	<g>		<path d=\"M270.789,34.677h-29.578c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h29.578   c5.632,0,10.199-4.566,10.199-10.199C280.988,39.243,276.421,34.677,270.789,34.677z\"></path>	</g></g><g>	<g>		<path d=\"M242.204,371.251h-91.255c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h91.255   c5.632,0,10.199-4.566,10.199-10.199C252.403,375.817,247.836,371.251,242.204,371.251z\"></path>	</g></g><g>	<g>		<path d=\"M282.518,371.251h-5.346c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h5.346   c5.632,0,10.199-4.566,10.199-10.199C292.717,375.817,288.15,371.251,282.518,371.251z\"></path>	</g></g><g>	<g>		<path d=\"M256,430.406c-14.903,0-27.028,12.125-27.028,27.028s12.125,27.028,27.028,27.028s27.028-12.125,27.028-27.028   S270.903,430.406,256,430.406z M256,464.064c-3.655,0-6.629-2.974-6.629-6.63s2.974-6.629,6.629-6.629s6.63,2.974,6.63,6.629   S259.655,464.064,256,464.064z\"></path>	</g></g><g>	<g>		<path d=\"M442.612,198.005c-3.984-3.983-10.44-3.983-14.425,0c-3.983,3.983-3.983,10.441,0,14.425   c23.463,23.462,23.463,61.639,0,85.1c-3.983,3.983-3.983,10.441,0,14.425c1.992,1.992,4.602,2.987,7.212,2.987   s5.22-0.995,7.212-2.987C474.027,280.539,474.027,229.421,442.612,198.005z\"></path>	</g></g><g>	<g>		<path d=\"M470.017,170.6c-3.984-3.983-10.44-3.983-14.425,0c-3.983,3.983-3.983,10.441,0,14.425   c18.686,18.686,28.977,43.53,28.977,69.955s-10.291,51.27-28.977,69.955c-3.983,3.983-3.983,10.441,0,14.425   c1.992,1.992,4.602,2.987,7.212,2.987c2.61,0,5.22-0.995,7.212-2.987C516.544,292.832,516.544,217.128,470.017,170.6z\"></path>	</g></g><g>	<g>		<path d=\"M83.812,212.43c3.984-3.984,3.984-10.442,0.001-14.425c-3.984-3.983-10.44-3.983-14.425,0   c-31.416,31.416-31.416,82.533,0,113.95c1.992,1.992,4.602,2.987,7.212,2.987s5.22-0.995,7.212-2.987   c3.983-3.983,3.983-10.441,0-14.425C60.349,274.068,60.349,235.891,83.812,212.43z\"></path>	</g></g><g>	<g>		<path d=\"M27.431,254.98c0-26.426,10.291-51.27,28.977-69.955c3.983-3.983,3.983-10.441,0-14.425   c-3.984-3.983-10.44-3.983-14.425,0c-46.527,46.528-46.527,122.232,0,168.76c1.992,1.992,4.602,2.987,7.212,2.987   s5.22-0.995,7.212-2.987c3.983-3.983,3.983-10.441,0-14.425C37.721,306.25,27.431,281.406,27.431,254.98z\"></path>	</g></g><g>	<g>		<path d=\"M358.06,280.099l-47.694-47.694c-2.619-2.618-6.45-3.613-10.015-2.595l-7.104,2.03c-1.015,0.291-1.98,0.736-2.859,1.323   l-14.669,9.788c-17.71-12.415-33.181-28.156-45.295-46.078l10.425-10.425c1.226-1.226,2.119-2.743,2.596-4.41l2.03-7.104   c1.018-3.562,0.023-7.394-2.595-10.015l-47.697-47.697c-2.827-2.827-7.048-3.742-10.793-2.338l-8.119,3.044   c-1.364,0.511-2.602,1.309-3.632,2.338c-1.938,1.939-3.804,4.028-5.546,6.207c-23.54,29.472-21.155,71.832,5.546,98.534   l77.633,77.632c14.404,14.405,33.363,21.733,52.398,21.732c16.254,0,32.564-5.343,46.138-16.187   c2.179-1.741,4.266-3.606,6.205-5.545c1.029-1.03,1.827-2.267,2.338-3.631l3.044-8.119   C361.802,287.147,360.888,282.927,358.06,280.099z M336.079,292.253c-21.345,17.05-52.032,15.315-71.379-4.034l-77.633-77.632   c-19.349-19.349-21.082-50.035-4.034-71.379c0.783-0.98,1.598-1.933,2.44-2.849l38.31,38.311l-13.591,13.592   c-3.331,3.331-3.947,8.51-1.491,12.531c15.402,25.2,36.656,46.986,61.469,63.005c3.415,2.204,7.81,2.17,11.194-0.085   l18.872-12.593l38.696,38.696C338.011,290.656,337.058,291.471,336.079,292.253z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>			\n							<h5>Ring til os</h5>							<ul>\n							<li>\n											<a href=\"tel:41600040\">\n											41 60 00 40\n											</a>\n									</li>\n						</ul>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M331.756,277.251l-42.881,43.026c-17.389,17.45-47.985,17.826-65.75,0l-42.883-43.026L26.226,431.767   C31.959,434.418,38.28,436,45,436h422c6.72,0,13.039-1.58,18.77-4.232L331.756,277.251z\"></path>	</g></g><g>	<g>		<path d=\"M467,76H45c-6.72,0-13.041,1.582-18.772,4.233l164.577,165.123c0.011,0.011,0.024,0.013,0.035,0.024   c0.011,0.011,0.013,0.026,0.013,0.026l53.513,53.69c5.684,5.684,17.586,5.684,23.27,0l53.502-53.681c0,0,0.013-0.024,0.024-0.035   c0,0,0.024-0.013,0.035-0.024L485.77,80.232C480.039,77.58,473.72,76,467,76z\"></path>	</g></g><g>	<g>		<path d=\"M4.786,101.212C1.82,107.21,0,113.868,0,121v270c0,7.132,1.818,13.79,4.785,19.788l154.283-154.783L4.786,101.212z\"></path>	</g></g><g>	<g>		<path d=\"M507.214,101.21L352.933,256.005L507.214,410.79C510.18,404.792,512,398.134,512,391V121   C512,113.866,510.18,107.208,507.214,101.21z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>			\n							<h5>Send os en email</h5>							<ul>\n							<li>\n											<a href=\"mailto:kontakt@cp-nordic.dk\">\n											kontakt@cp-nordic.dk\n											</a>\n									</li>\n						</ul>\n							<h3>KONTAKT OS</h3>		<p>Vi dækker hele Fyn – og tager også gerne opgaver uden for området, når der er tale om spændende eller teknisk krævende løsninger.</p>', 'Kontakt', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-01-26 14:35:12', '2026-01-26 14:35:12', '', 18, 'https://mrarif.me/cpnordic/?p=628', 0, 'revision', '', 0),
(629, 1, '2026-01-26 14:35:12', '2026-01-26 14:35:12', '<h2>Kontaktoplysninger</h2>		<p>Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid<br />velkommen til at kontakte os for en uforpligtende snak.</p>					\n			<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>			\n							<h5>Placering</h5>							<ul>\n							<li>\n										Fyn, Denmark\n									</li>\n						</ul>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M358.57,0H153.43c-27.195,0-49.319,22.124-49.319,49.319v413.362h-0.001c0,27.195,22.124,49.319,49.319,49.319H358.57   c27.195,0,49.319-22.124,49.319-49.319V49.319C407.891,22.124,385.766,0,358.57,0z M124.508,49.319   c0-15.948,12.974-28.921,28.921-28.921H358.57c15.947,0,28.921,12.974,28.921,28.921v355.589H124.508V49.319z M387.493,462.681   L387.493,462.681c-0.001,15.947-12.975,28.921-28.922,28.921H153.43c-15.948,0-28.921-12.974-28.921-28.921v-37.374h262.984   V462.681z\"></path>	</g></g><g>	<g>		<path d=\"M270.789,34.677h-29.578c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h29.578   c5.632,0,10.199-4.566,10.199-10.199C280.988,39.243,276.421,34.677,270.789,34.677z\"></path>	</g></g><g>	<g>		<path d=\"M242.204,371.251h-91.255c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h91.255   c5.632,0,10.199-4.566,10.199-10.199C252.403,375.817,247.836,371.251,242.204,371.251z\"></path>	</g></g><g>	<g>		<path d=\"M282.518,371.251h-5.346c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h5.346   c5.632,0,10.199-4.566,10.199-10.199C292.717,375.817,288.15,371.251,282.518,371.251z\"></path>	</g></g><g>	<g>		<path d=\"M256,430.406c-14.903,0-27.028,12.125-27.028,27.028s12.125,27.028,27.028,27.028s27.028-12.125,27.028-27.028   S270.903,430.406,256,430.406z M256,464.064c-3.655,0-6.629-2.974-6.629-6.63s2.974-6.629,6.629-6.629s6.63,2.974,6.63,6.629   S259.655,464.064,256,464.064z\"></path>	</g></g><g>	<g>		<path d=\"M442.612,198.005c-3.984-3.983-10.44-3.983-14.425,0c-3.983,3.983-3.983,10.441,0,14.425   c23.463,23.462,23.463,61.639,0,85.1c-3.983,3.983-3.983,10.441,0,14.425c1.992,1.992,4.602,2.987,7.212,2.987   s5.22-0.995,7.212-2.987C474.027,280.539,474.027,229.421,442.612,198.005z\"></path>	</g></g><g>	<g>		<path d=\"M470.017,170.6c-3.984-3.983-10.44-3.983-14.425,0c-3.983,3.983-3.983,10.441,0,14.425   c18.686,18.686,28.977,43.53,28.977,69.955s-10.291,51.27-28.977,69.955c-3.983,3.983-3.983,10.441,0,14.425   c1.992,1.992,4.602,2.987,7.212,2.987c2.61,0,5.22-0.995,7.212-2.987C516.544,292.832,516.544,217.128,470.017,170.6z\"></path>	</g></g><g>	<g>		<path d=\"M83.812,212.43c3.984-3.984,3.984-10.442,0.001-14.425c-3.984-3.983-10.44-3.983-14.425,0   c-31.416,31.416-31.416,82.533,0,113.95c1.992,1.992,4.602,2.987,7.212,2.987s5.22-0.995,7.212-2.987   c3.983-3.983,3.983-10.441,0-14.425C60.349,274.068,60.349,235.891,83.812,212.43z\"></path>	</g></g><g>	<g>		<path d=\"M27.431,254.98c0-26.426,10.291-51.27,28.977-69.955c3.983-3.983,3.983-10.441,0-14.425   c-3.984-3.983-10.44-3.983-14.425,0c-46.527,46.528-46.527,122.232,0,168.76c1.992,1.992,4.602,2.987,7.212,2.987   s5.22-0.995,7.212-2.987c3.983-3.983,3.983-10.441,0-14.425C37.721,306.25,27.431,281.406,27.431,254.98z\"></path>	</g></g><g>	<g>		<path d=\"M358.06,280.099l-47.694-47.694c-2.619-2.618-6.45-3.613-10.015-2.595l-7.104,2.03c-1.015,0.291-1.98,0.736-2.859,1.323   l-14.669,9.788c-17.71-12.415-33.181-28.156-45.295-46.078l10.425-10.425c1.226-1.226,2.119-2.743,2.596-4.41l2.03-7.104   c1.018-3.562,0.023-7.394-2.595-10.015l-47.697-47.697c-2.827-2.827-7.048-3.742-10.793-2.338l-8.119,3.044   c-1.364,0.511-2.602,1.309-3.632,2.338c-1.938,1.939-3.804,4.028-5.546,6.207c-23.54,29.472-21.155,71.832,5.546,98.534   l77.633,77.632c14.404,14.405,33.363,21.733,52.398,21.732c16.254,0,32.564-5.343,46.138-16.187   c2.179-1.741,4.266-3.606,6.205-5.545c1.029-1.03,1.827-2.267,2.338-3.631l3.044-8.119   C361.802,287.147,360.888,282.927,358.06,280.099z M336.079,292.253c-21.345,17.05-52.032,15.315-71.379-4.034l-77.633-77.632   c-19.349-19.349-21.082-50.035-4.034-71.379c0.783-0.98,1.598-1.933,2.44-2.849l38.31,38.311l-13.591,13.592   c-3.331,3.331-3.947,8.51-1.491,12.531c15.402,25.2,36.656,46.986,61.469,63.005c3.415,2.204,7.81,2.17,11.194-0.085   l18.872-12.593l38.696,38.696C338.011,290.656,337.058,291.471,336.079,292.253z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>			\n							<h5>Ring til os</h5>							<ul>\n							<li>\n											<a href=\"tel:41600040\">\n											41 60 00 40\n											</a>\n									</li>\n						</ul>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M331.756,277.251l-42.881,43.026c-17.389,17.45-47.985,17.826-65.75,0l-42.883-43.026L26.226,431.767   C31.959,434.418,38.28,436,45,436h422c6.72,0,13.039-1.58,18.77-4.232L331.756,277.251z\"></path>	</g></g><g>	<g>		<path d=\"M467,76H45c-6.72,0-13.041,1.582-18.772,4.233l164.577,165.123c0.011,0.011,0.024,0.013,0.035,0.024   c0.011,0.011,0.013,0.026,0.013,0.026l53.513,53.69c5.684,5.684,17.586,5.684,23.27,0l53.502-53.681c0,0,0.013-0.024,0.024-0.035   c0,0,0.024-0.013,0.035-0.024L485.77,80.232C480.039,77.58,473.72,76,467,76z\"></path>	</g></g><g>	<g>		<path d=\"M4.786,101.212C1.82,107.21,0,113.868,0,121v270c0,7.132,1.818,13.79,4.785,19.788l154.283-154.783L4.786,101.212z\"></path>	</g></g><g>	<g>		<path d=\"M507.214,101.21L352.933,256.005L507.214,410.79C510.18,404.792,512,398.134,512,391V121   C512,113.866,510.18,107.208,507.214,101.21z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>			\n							<h5>Send os en email</h5>							<ul>\n							<li>\n											<a href=\"mailto:kontakt@cp-nordic.dk\">\n											kontakt@cp-nordic.dk\n											</a>\n									</li>\n						</ul>\n							<h3>KONTAKT OS</h3>		<p>Vi dækker hele Fyn – og tager også gerne opgaver uden for området, når der er tale om spændende eller teknisk krævende løsninger.</p>', 'Kontakt', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-01-26 14:35:12', '2026-01-26 14:35:12', '', 18, 'https://mrarif.me/cpnordic/?p=629', 0, 'revision', '', 0),
(630, 1, '2026-01-26 14:35:12', '2026-01-26 14:35:12', '<h2>Kontaktoplysninger</h2>		<p>Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid<br />velkommen til at kontakte os for en uforpligtende snak.</p>					\n			<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>			\n							<h5>Placering</h5>							<ul>\n							<li>\n										Fyn, Denmark\n									</li>\n						</ul>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M358.57,0H153.43c-27.195,0-49.319,22.124-49.319,49.319v413.362h-0.001c0,27.195,22.124,49.319,49.319,49.319H358.57   c27.195,0,49.319-22.124,49.319-49.319V49.319C407.891,22.124,385.766,0,358.57,0z M124.508,49.319   c0-15.948,12.974-28.921,28.921-28.921H358.57c15.947,0,28.921,12.974,28.921,28.921v355.589H124.508V49.319z M387.493,462.681   L387.493,462.681c-0.001,15.947-12.975,28.921-28.922,28.921H153.43c-15.948,0-28.921-12.974-28.921-28.921v-37.374h262.984   V462.681z\"></path>	</g></g><g>	<g>		<path d=\"M270.789,34.677h-29.578c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h29.578   c5.632,0,10.199-4.566,10.199-10.199C280.988,39.243,276.421,34.677,270.789,34.677z\"></path>	</g></g><g>	<g>		<path d=\"M242.204,371.251h-91.255c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h91.255   c5.632,0,10.199-4.566,10.199-10.199C252.403,375.817,247.836,371.251,242.204,371.251z\"></path>	</g></g><g>	<g>		<path d=\"M282.518,371.251h-5.346c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h5.346   c5.632,0,10.199-4.566,10.199-10.199C292.717,375.817,288.15,371.251,282.518,371.251z\"></path>	</g></g><g>	<g>		<path d=\"M256,430.406c-14.903,0-27.028,12.125-27.028,27.028s12.125,27.028,27.028,27.028s27.028-12.125,27.028-27.028   S270.903,430.406,256,430.406z M256,464.064c-3.655,0-6.629-2.974-6.629-6.63s2.974-6.629,6.629-6.629s6.63,2.974,6.63,6.629   S259.655,464.064,256,464.064z\"></path>	</g></g><g>	<g>		<path d=\"M442.612,198.005c-3.984-3.983-10.44-3.983-14.425,0c-3.983,3.983-3.983,10.441,0,14.425   c23.463,23.462,23.463,61.639,0,85.1c-3.983,3.983-3.983,10.441,0,14.425c1.992,1.992,4.602,2.987,7.212,2.987   s5.22-0.995,7.212-2.987C474.027,280.539,474.027,229.421,442.612,198.005z\"></path>	</g></g><g>	<g>		<path d=\"M470.017,170.6c-3.984-3.983-10.44-3.983-14.425,0c-3.983,3.983-3.983,10.441,0,14.425   c18.686,18.686,28.977,43.53,28.977,69.955s-10.291,51.27-28.977,69.955c-3.983,3.983-3.983,10.441,0,14.425   c1.992,1.992,4.602,2.987,7.212,2.987c2.61,0,5.22-0.995,7.212-2.987C516.544,292.832,516.544,217.128,470.017,170.6z\"></path>	</g></g><g>	<g>		<path d=\"M83.812,212.43c3.984-3.984,3.984-10.442,0.001-14.425c-3.984-3.983-10.44-3.983-14.425,0   c-31.416,31.416-31.416,82.533,0,113.95c1.992,1.992,4.602,2.987,7.212,2.987s5.22-0.995,7.212-2.987   c3.983-3.983,3.983-10.441,0-14.425C60.349,274.068,60.349,235.891,83.812,212.43z\"></path>	</g></g><g>	<g>		<path d=\"M27.431,254.98c0-26.426,10.291-51.27,28.977-69.955c3.983-3.983,3.983-10.441,0-14.425   c-3.984-3.983-10.44-3.983-14.425,0c-46.527,46.528-46.527,122.232,0,168.76c1.992,1.992,4.602,2.987,7.212,2.987   s5.22-0.995,7.212-2.987c3.983-3.983,3.983-10.441,0-14.425C37.721,306.25,27.431,281.406,27.431,254.98z\"></path>	</g></g><g>	<g>		<path d=\"M358.06,280.099l-47.694-47.694c-2.619-2.618-6.45-3.613-10.015-2.595l-7.104,2.03c-1.015,0.291-1.98,0.736-2.859,1.323   l-14.669,9.788c-17.71-12.415-33.181-28.156-45.295-46.078l10.425-10.425c1.226-1.226,2.119-2.743,2.596-4.41l2.03-7.104   c1.018-3.562,0.023-7.394-2.595-10.015l-47.697-47.697c-2.827-2.827-7.048-3.742-10.793-2.338l-8.119,3.044   c-1.364,0.511-2.602,1.309-3.632,2.338c-1.938,1.939-3.804,4.028-5.546,6.207c-23.54,29.472-21.155,71.832,5.546,98.534   l77.633,77.632c14.404,14.405,33.363,21.733,52.398,21.732c16.254,0,32.564-5.343,46.138-16.187   c2.179-1.741,4.266-3.606,6.205-5.545c1.029-1.03,1.827-2.267,2.338-3.631l3.044-8.119   C361.802,287.147,360.888,282.927,358.06,280.099z M336.079,292.253c-21.345,17.05-52.032,15.315-71.379-4.034l-77.633-77.632   c-19.349-19.349-21.082-50.035-4.034-71.379c0.783-0.98,1.598-1.933,2.44-2.849l38.31,38.311l-13.591,13.592   c-3.331,3.331-3.947,8.51-1.491,12.531c15.402,25.2,36.656,46.986,61.469,63.005c3.415,2.204,7.81,2.17,11.194-0.085   l18.872-12.593l38.696,38.696C338.011,290.656,337.058,291.471,336.079,292.253z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>			\n							<h5>Ring til os</h5>							<ul>\n							<li>\n											<a href=\"tel:41600040\">\n											41 60 00 40\n											</a>\n									</li>\n						</ul>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M331.756,277.251l-42.881,43.026c-17.389,17.45-47.985,17.826-65.75,0l-42.883-43.026L26.226,431.767   C31.959,434.418,38.28,436,45,436h422c6.72,0,13.039-1.58,18.77-4.232L331.756,277.251z\"></path>	</g></g><g>	<g>		<path d=\"M467,76H45c-6.72,0-13.041,1.582-18.772,4.233l164.577,165.123c0.011,0.011,0.024,0.013,0.035,0.024   c0.011,0.011,0.013,0.026,0.013,0.026l53.513,53.69c5.684,5.684,17.586,5.684,23.27,0l53.502-53.681c0,0,0.013-0.024,0.024-0.035   c0,0,0.024-0.013,0.035-0.024L485.77,80.232C480.039,77.58,473.72,76,467,76z\"></path>	</g></g><g>	<g>		<path d=\"M4.786,101.212C1.82,107.21,0,113.868,0,121v270c0,7.132,1.818,13.79,4.785,19.788l154.283-154.783L4.786,101.212z\"></path>	</g></g><g>	<g>		<path d=\"M507.214,101.21L352.933,256.005L507.214,410.79C510.18,404.792,512,398.134,512,391V121   C512,113.866,510.18,107.208,507.214,101.21z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>			\n							<h5>Send os en email</h5>							<ul>\n							<li>\n											<a href=\"mailto:kontakt@cp-nordic.dk\">\n											kontakt@cp-nordic.dk\n											</a>\n									</li>\n						</ul>\n							<h3>KONTAKT OS</h3>		<p>Vi dækker hele Fyn – og tager også gerne opgaver uden for området, når der er tale om spændende eller teknisk krævende løsninger.</p>', 'Kontakt', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-01-26 14:35:12', '2026-01-26 14:35:12', '', 18, 'https://mrarif.me/cpnordic/?p=630', 0, 'revision', '', 0),
(631, 1, '2026-01-26 14:35:57', '2026-01-26 14:35:57', '<h2>Kontaktoplysninger</h2>		<p>Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid<br />velkommen til at kontakte os for en uforpligtende snak.</p>					\n			<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>			\n							<h5>Placering</h5>							<ul>\n							<li>\n										Fyn, Denmark\n									</li>\n						</ul>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M358.57,0H153.43c-27.195,0-49.319,22.124-49.319,49.319v413.362h-0.001c0,27.195,22.124,49.319,49.319,49.319H358.57   c27.195,0,49.319-22.124,49.319-49.319V49.319C407.891,22.124,385.766,0,358.57,0z M124.508,49.319   c0-15.948,12.974-28.921,28.921-28.921H358.57c15.947,0,28.921,12.974,28.921,28.921v355.589H124.508V49.319z M387.493,462.681   L387.493,462.681c-0.001,15.947-12.975,28.921-28.922,28.921H153.43c-15.948,0-28.921-12.974-28.921-28.921v-37.374h262.984   V462.681z\"></path>	</g></g><g>	<g>		<path d=\"M270.789,34.677h-29.578c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h29.578   c5.632,0,10.199-4.566,10.199-10.199C280.988,39.243,276.421,34.677,270.789,34.677z\"></path>	</g></g><g>	<g>		<path d=\"M242.204,371.251h-91.255c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h91.255   c5.632,0,10.199-4.566,10.199-10.199C252.403,375.817,247.836,371.251,242.204,371.251z\"></path>	</g></g><g>	<g>		<path d=\"M282.518,371.251h-5.346c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h5.346   c5.632,0,10.199-4.566,10.199-10.199C292.717,375.817,288.15,371.251,282.518,371.251z\"></path>	</g></g><g>	<g>		<path d=\"M256,430.406c-14.903,0-27.028,12.125-27.028,27.028s12.125,27.028,27.028,27.028s27.028-12.125,27.028-27.028   S270.903,430.406,256,430.406z M256,464.064c-3.655,0-6.629-2.974-6.629-6.63s2.974-6.629,6.629-6.629s6.63,2.974,6.63,6.629   S259.655,464.064,256,464.064z\"></path>	</g></g><g>	<g>		<path d=\"M442.612,198.005c-3.984-3.983-10.44-3.983-14.425,0c-3.983,3.983-3.983,10.441,0,14.425   c23.463,23.462,23.463,61.639,0,85.1c-3.983,3.983-3.983,10.441,0,14.425c1.992,1.992,4.602,2.987,7.212,2.987   s5.22-0.995,7.212-2.987C474.027,280.539,474.027,229.421,442.612,198.005z\"></path>	</g></g><g>	<g>		<path d=\"M470.017,170.6c-3.984-3.983-10.44-3.983-14.425,0c-3.983,3.983-3.983,10.441,0,14.425   c18.686,18.686,28.977,43.53,28.977,69.955s-10.291,51.27-28.977,69.955c-3.983,3.983-3.983,10.441,0,14.425   c1.992,1.992,4.602,2.987,7.212,2.987c2.61,0,5.22-0.995,7.212-2.987C516.544,292.832,516.544,217.128,470.017,170.6z\"></path>	</g></g><g>	<g>		<path d=\"M83.812,212.43c3.984-3.984,3.984-10.442,0.001-14.425c-3.984-3.983-10.44-3.983-14.425,0   c-31.416,31.416-31.416,82.533,0,113.95c1.992,1.992,4.602,2.987,7.212,2.987s5.22-0.995,7.212-2.987   c3.983-3.983,3.983-10.441,0-14.425C60.349,274.068,60.349,235.891,83.812,212.43z\"></path>	</g></g><g>	<g>		<path d=\"M27.431,254.98c0-26.426,10.291-51.27,28.977-69.955c3.983-3.983,3.983-10.441,0-14.425   c-3.984-3.983-10.44-3.983-14.425,0c-46.527,46.528-46.527,122.232,0,168.76c1.992,1.992,4.602,2.987,7.212,2.987   s5.22-0.995,7.212-2.987c3.983-3.983,3.983-10.441,0-14.425C37.721,306.25,27.431,281.406,27.431,254.98z\"></path>	</g></g><g>	<g>		<path d=\"M358.06,280.099l-47.694-47.694c-2.619-2.618-6.45-3.613-10.015-2.595l-7.104,2.03c-1.015,0.291-1.98,0.736-2.859,1.323   l-14.669,9.788c-17.71-12.415-33.181-28.156-45.295-46.078l10.425-10.425c1.226-1.226,2.119-2.743,2.596-4.41l2.03-7.104   c1.018-3.562,0.023-7.394-2.595-10.015l-47.697-47.697c-2.827-2.827-7.048-3.742-10.793-2.338l-8.119,3.044   c-1.364,0.511-2.602,1.309-3.632,2.338c-1.938,1.939-3.804,4.028-5.546,6.207c-23.54,29.472-21.155,71.832,5.546,98.534   l77.633,77.632c14.404,14.405,33.363,21.733,52.398,21.732c16.254,0,32.564-5.343,46.138-16.187   c2.179-1.741,4.266-3.606,6.205-5.545c1.029-1.03,1.827-2.267,2.338-3.631l3.044-8.119   C361.802,287.147,360.888,282.927,358.06,280.099z M336.079,292.253c-21.345,17.05-52.032,15.315-71.379-4.034l-77.633-77.632   c-19.349-19.349-21.082-50.035-4.034-71.379c0.783-0.98,1.598-1.933,2.44-2.849l38.31,38.311l-13.591,13.592   c-3.331,3.331-3.947,8.51-1.491,12.531c15.402,25.2,36.656,46.986,61.469,63.005c3.415,2.204,7.81,2.17,11.194-0.085   l18.872-12.593l38.696,38.696C338.011,290.656,337.058,291.471,336.079,292.253z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>			\n							<h5>Ring til os</h5>							<ul>\n							<li>\n											<a href=\"tel:41600040\">\n											41 60 00 40\n											</a>\n									</li>\n						</ul>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M331.756,277.251l-42.881,43.026c-17.389,17.45-47.985,17.826-65.75,0l-42.883-43.026L26.226,431.767   C31.959,434.418,38.28,436,45,436h422c6.72,0,13.039-1.58,18.77-4.232L331.756,277.251z\"></path>	</g></g><g>	<g>		<path d=\"M467,76H45c-6.72,0-13.041,1.582-18.772,4.233l164.577,165.123c0.011,0.011,0.024,0.013,0.035,0.024   c0.011,0.011,0.013,0.026,0.013,0.026l53.513,53.69c5.684,5.684,17.586,5.684,23.27,0l53.502-53.681c0,0,0.013-0.024,0.024-0.035   c0,0,0.024-0.013,0.035-0.024L485.77,80.232C480.039,77.58,473.72,76,467,76z\"></path>	</g></g><g>	<g>		<path d=\"M4.786,101.212C1.82,107.21,0,113.868,0,121v270c0,7.132,1.818,13.79,4.785,19.788l154.283-154.783L4.786,101.212z\"></path>	</g></g><g>	<g>		<path d=\"M507.214,101.21L352.933,256.005L507.214,410.79C510.18,404.792,512,398.134,512,391V121   C512,113.866,510.18,107.208,507.214,101.21z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>			\n							<h5>Send os en email</h5>							<ul>\n							<li>\n											<a href=\"mailto:kontakt@cp-nordic.dk\">\n											kontakt@cp-nordic.dk\n											</a>\n									</li>\n						</ul>\n							<h3>KONTAKT OS</h3>		<p>Vi dækker hele Fyn – og tager også gerne opgaver uden for området, når der er tale om spændende eller teknisk krævende løsninger.</p>', 'Kontakt', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-01-26 14:35:57', '2026-01-26 14:35:57', '', 18, 'https://mrarif.me/cpnordic/?p=631', 0, 'revision', '', 0),
(632, 1, '2026-01-26 14:35:57', '2026-01-26 14:35:57', '<h2>Kontaktoplysninger</h2>		<p>Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid<br />velkommen til at kontakte os for en uforpligtende snak.</p>					\n			<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>			\n							<h5>Placering</h5>							<ul>\n							<li>\n										Fyn, Denmark\n									</li>\n						</ul>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M358.57,0H153.43c-27.195,0-49.319,22.124-49.319,49.319v413.362h-0.001c0,27.195,22.124,49.319,49.319,49.319H358.57   c27.195,0,49.319-22.124,49.319-49.319V49.319C407.891,22.124,385.766,0,358.57,0z M124.508,49.319   c0-15.948,12.974-28.921,28.921-28.921H358.57c15.947,0,28.921,12.974,28.921,28.921v355.589H124.508V49.319z M387.493,462.681   L387.493,462.681c-0.001,15.947-12.975,28.921-28.922,28.921H153.43c-15.948,0-28.921-12.974-28.921-28.921v-37.374h262.984   V462.681z\"></path>	</g></g><g>	<g>		<path d=\"M270.789,34.677h-29.578c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h29.578   c5.632,0,10.199-4.566,10.199-10.199C280.988,39.243,276.421,34.677,270.789,34.677z\"></path>	</g></g><g>	<g>		<path d=\"M242.204,371.251h-91.255c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h91.255   c5.632,0,10.199-4.566,10.199-10.199C252.403,375.817,247.836,371.251,242.204,371.251z\"></path>	</g></g><g>	<g>		<path d=\"M282.518,371.251h-5.346c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h5.346   c5.632,0,10.199-4.566,10.199-10.199C292.717,375.817,288.15,371.251,282.518,371.251z\"></path>	</g></g><g>	<g>		<path d=\"M256,430.406c-14.903,0-27.028,12.125-27.028,27.028s12.125,27.028,27.028,27.028s27.028-12.125,27.028-27.028   S270.903,430.406,256,430.406z M256,464.064c-3.655,0-6.629-2.974-6.629-6.63s2.974-6.629,6.629-6.629s6.63,2.974,6.63,6.629   S259.655,464.064,256,464.064z\"></path>	</g></g><g>	<g>		<path d=\"M442.612,198.005c-3.984-3.983-10.44-3.983-14.425,0c-3.983,3.983-3.983,10.441,0,14.425   c23.463,23.462,23.463,61.639,0,85.1c-3.983,3.983-3.983,10.441,0,14.425c1.992,1.992,4.602,2.987,7.212,2.987   s5.22-0.995,7.212-2.987C474.027,280.539,474.027,229.421,442.612,198.005z\"></path>	</g></g><g>	<g>		<path d=\"M470.017,170.6c-3.984-3.983-10.44-3.983-14.425,0c-3.983,3.983-3.983,10.441,0,14.425   c18.686,18.686,28.977,43.53,28.977,69.955s-10.291,51.27-28.977,69.955c-3.983,3.983-3.983,10.441,0,14.425   c1.992,1.992,4.602,2.987,7.212,2.987c2.61,0,5.22-0.995,7.212-2.987C516.544,292.832,516.544,217.128,470.017,170.6z\"></path>	</g></g><g>	<g>		<path d=\"M83.812,212.43c3.984-3.984,3.984-10.442,0.001-14.425c-3.984-3.983-10.44-3.983-14.425,0   c-31.416,31.416-31.416,82.533,0,113.95c1.992,1.992,4.602,2.987,7.212,2.987s5.22-0.995,7.212-2.987   c3.983-3.983,3.983-10.441,0-14.425C60.349,274.068,60.349,235.891,83.812,212.43z\"></path>	</g></g><g>	<g>		<path d=\"M27.431,254.98c0-26.426,10.291-51.27,28.977-69.955c3.983-3.983,3.983-10.441,0-14.425   c-3.984-3.983-10.44-3.983-14.425,0c-46.527,46.528-46.527,122.232,0,168.76c1.992,1.992,4.602,2.987,7.212,2.987   s5.22-0.995,7.212-2.987c3.983-3.983,3.983-10.441,0-14.425C37.721,306.25,27.431,281.406,27.431,254.98z\"></path>	</g></g><g>	<g>		<path d=\"M358.06,280.099l-47.694-47.694c-2.619-2.618-6.45-3.613-10.015-2.595l-7.104,2.03c-1.015,0.291-1.98,0.736-2.859,1.323   l-14.669,9.788c-17.71-12.415-33.181-28.156-45.295-46.078l10.425-10.425c1.226-1.226,2.119-2.743,2.596-4.41l2.03-7.104   c1.018-3.562,0.023-7.394-2.595-10.015l-47.697-47.697c-2.827-2.827-7.048-3.742-10.793-2.338l-8.119,3.044   c-1.364,0.511-2.602,1.309-3.632,2.338c-1.938,1.939-3.804,4.028-5.546,6.207c-23.54,29.472-21.155,71.832,5.546,98.534   l77.633,77.632c14.404,14.405,33.363,21.733,52.398,21.732c16.254,0,32.564-5.343,46.138-16.187   c2.179-1.741,4.266-3.606,6.205-5.545c1.029-1.03,1.827-2.267,2.338-3.631l3.044-8.119   C361.802,287.147,360.888,282.927,358.06,280.099z M336.079,292.253c-21.345,17.05-52.032,15.315-71.379-4.034l-77.633-77.632   c-19.349-19.349-21.082-50.035-4.034-71.379c0.783-0.98,1.598-1.933,2.44-2.849l38.31,38.311l-13.591,13.592   c-3.331,3.331-3.947,8.51-1.491,12.531c15.402,25.2,36.656,46.986,61.469,63.005c3.415,2.204,7.81,2.17,11.194-0.085   l18.872-12.593l38.696,38.696C338.011,290.656,337.058,291.471,336.079,292.253z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>			\n							<h5>Ring til os</h5>							<ul>\n							<li>\n											<a href=\"tel:41600040\">\n											41 60 00 40\n											</a>\n									</li>\n						</ul>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M331.756,277.251l-42.881,43.026c-17.389,17.45-47.985,17.826-65.75,0l-42.883-43.026L26.226,431.767   C31.959,434.418,38.28,436,45,436h422c6.72,0,13.039-1.58,18.77-4.232L331.756,277.251z\"></path>	</g></g><g>	<g>		<path d=\"M467,76H45c-6.72,0-13.041,1.582-18.772,4.233l164.577,165.123c0.011,0.011,0.024,0.013,0.035,0.024   c0.011,0.011,0.013,0.026,0.013,0.026l53.513,53.69c5.684,5.684,17.586,5.684,23.27,0l53.502-53.681c0,0,0.013-0.024,0.024-0.035   c0,0,0.024-0.013,0.035-0.024L485.77,80.232C480.039,77.58,473.72,76,467,76z\"></path>	</g></g><g>	<g>		<path d=\"M4.786,101.212C1.82,107.21,0,113.868,0,121v270c0,7.132,1.818,13.79,4.785,19.788l154.283-154.783L4.786,101.212z\"></path>	</g></g><g>	<g>		<path d=\"M507.214,101.21L352.933,256.005L507.214,410.79C510.18,404.792,512,398.134,512,391V121   C512,113.866,510.18,107.208,507.214,101.21z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>			\n							<h5>Send os en email</h5>							<ul>\n							<li>\n											<a href=\"mailto:kontakt@cp-nordic.dk\">\n											kontakt@cp-nordic.dk\n											</a>\n									</li>\n						</ul>\n							<h3>KONTAKT OS</h3>		<p>Vi dækker hele Fyn – og tager også gerne opgaver uden for området, når der er tale om spændende eller teknisk krævende løsninger.</p>', 'Kontakt', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-01-26 14:35:57', '2026-01-26 14:35:57', '', 18, 'https://mrarif.me/cpnordic/?p=632', 0, 'revision', '', 0),
(633, 1, '2026-01-26 14:35:57', '2026-01-26 14:35:57', '<h2>Kontaktoplysninger</h2>		<p>Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid<br />velkommen til at kontakte os for en uforpligtende snak.</p>					\n			<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>			\n							<h5>Placering</h5>							<ul>\n							<li>\n										Fyn, Denmark\n									</li>\n						</ul>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M358.57,0H153.43c-27.195,0-49.319,22.124-49.319,49.319v413.362h-0.001c0,27.195,22.124,49.319,49.319,49.319H358.57   c27.195,0,49.319-22.124,49.319-49.319V49.319C407.891,22.124,385.766,0,358.57,0z M124.508,49.319   c0-15.948,12.974-28.921,28.921-28.921H358.57c15.947,0,28.921,12.974,28.921,28.921v355.589H124.508V49.319z M387.493,462.681   L387.493,462.681c-0.001,15.947-12.975,28.921-28.922,28.921H153.43c-15.948,0-28.921-12.974-28.921-28.921v-37.374h262.984   V462.681z\"></path>	</g></g><g>	<g>		<path d=\"M270.789,34.677h-29.578c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h29.578   c5.632,0,10.199-4.566,10.199-10.199C280.988,39.243,276.421,34.677,270.789,34.677z\"></path>	</g></g><g>	<g>		<path d=\"M242.204,371.251h-91.255c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h91.255   c5.632,0,10.199-4.566,10.199-10.199C252.403,375.817,247.836,371.251,242.204,371.251z\"></path>	</g></g><g>	<g>		<path d=\"M282.518,371.251h-5.346c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h5.346   c5.632,0,10.199-4.566,10.199-10.199C292.717,375.817,288.15,371.251,282.518,371.251z\"></path>	</g></g><g>	<g>		<path d=\"M256,430.406c-14.903,0-27.028,12.125-27.028,27.028s12.125,27.028,27.028,27.028s27.028-12.125,27.028-27.028   S270.903,430.406,256,430.406z M256,464.064c-3.655,0-6.629-2.974-6.629-6.63s2.974-6.629,6.629-6.629s6.63,2.974,6.63,6.629   S259.655,464.064,256,464.064z\"></path>	</g></g><g>	<g>		<path d=\"M442.612,198.005c-3.984-3.983-10.44-3.983-14.425,0c-3.983,3.983-3.983,10.441,0,14.425   c23.463,23.462,23.463,61.639,0,85.1c-3.983,3.983-3.983,10.441,0,14.425c1.992,1.992,4.602,2.987,7.212,2.987   s5.22-0.995,7.212-2.987C474.027,280.539,474.027,229.421,442.612,198.005z\"></path>	</g></g><g>	<g>		<path d=\"M470.017,170.6c-3.984-3.983-10.44-3.983-14.425,0c-3.983,3.983-3.983,10.441,0,14.425   c18.686,18.686,28.977,43.53,28.977,69.955s-10.291,51.27-28.977,69.955c-3.983,3.983-3.983,10.441,0,14.425   c1.992,1.992,4.602,2.987,7.212,2.987c2.61,0,5.22-0.995,7.212-2.987C516.544,292.832,516.544,217.128,470.017,170.6z\"></path>	</g></g><g>	<g>		<path d=\"M83.812,212.43c3.984-3.984,3.984-10.442,0.001-14.425c-3.984-3.983-10.44-3.983-14.425,0   c-31.416,31.416-31.416,82.533,0,113.95c1.992,1.992,4.602,2.987,7.212,2.987s5.22-0.995,7.212-2.987   c3.983-3.983,3.983-10.441,0-14.425C60.349,274.068,60.349,235.891,83.812,212.43z\"></path>	</g></g><g>	<g>		<path d=\"M27.431,254.98c0-26.426,10.291-51.27,28.977-69.955c3.983-3.983,3.983-10.441,0-14.425   c-3.984-3.983-10.44-3.983-14.425,0c-46.527,46.528-46.527,122.232,0,168.76c1.992,1.992,4.602,2.987,7.212,2.987   s5.22-0.995,7.212-2.987c3.983-3.983,3.983-10.441,0-14.425C37.721,306.25,27.431,281.406,27.431,254.98z\"></path>	</g></g><g>	<g>		<path d=\"M358.06,280.099l-47.694-47.694c-2.619-2.618-6.45-3.613-10.015-2.595l-7.104,2.03c-1.015,0.291-1.98,0.736-2.859,1.323   l-14.669,9.788c-17.71-12.415-33.181-28.156-45.295-46.078l10.425-10.425c1.226-1.226,2.119-2.743,2.596-4.41l2.03-7.104   c1.018-3.562,0.023-7.394-2.595-10.015l-47.697-47.697c-2.827-2.827-7.048-3.742-10.793-2.338l-8.119,3.044   c-1.364,0.511-2.602,1.309-3.632,2.338c-1.938,1.939-3.804,4.028-5.546,6.207c-23.54,29.472-21.155,71.832,5.546,98.534   l77.633,77.632c14.404,14.405,33.363,21.733,52.398,21.732c16.254,0,32.564-5.343,46.138-16.187   c2.179-1.741,4.266-3.606,6.205-5.545c1.029-1.03,1.827-2.267,2.338-3.631l3.044-8.119   C361.802,287.147,360.888,282.927,358.06,280.099z M336.079,292.253c-21.345,17.05-52.032,15.315-71.379-4.034l-77.633-77.632   c-19.349-19.349-21.082-50.035-4.034-71.379c0.783-0.98,1.598-1.933,2.44-2.849l38.31,38.311l-13.591,13.592   c-3.331,3.331-3.947,8.51-1.491,12.531c15.402,25.2,36.656,46.986,61.469,63.005c3.415,2.204,7.81,2.17,11.194-0.085   l18.872-12.593l38.696,38.696C338.011,290.656,337.058,291.471,336.079,292.253z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>			\n							<h5>Ring til os</h5>							<ul>\n							<li>\n											<a href=\"tel:41600040\">\n											41 60 00 40\n											</a>\n									</li>\n						</ul>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M331.756,277.251l-42.881,43.026c-17.389,17.45-47.985,17.826-65.75,0l-42.883-43.026L26.226,431.767   C31.959,434.418,38.28,436,45,436h422c6.72,0,13.039-1.58,18.77-4.232L331.756,277.251z\"></path>	</g></g><g>	<g>		<path d=\"M467,76H45c-6.72,0-13.041,1.582-18.772,4.233l164.577,165.123c0.011,0.011,0.024,0.013,0.035,0.024   c0.011,0.011,0.013,0.026,0.013,0.026l53.513,53.69c5.684,5.684,17.586,5.684,23.27,0l53.502-53.681c0,0,0.013-0.024,0.024-0.035   c0,0,0.024-0.013,0.035-0.024L485.77,80.232C480.039,77.58,473.72,76,467,76z\"></path>	</g></g><g>	<g>		<path d=\"M4.786,101.212C1.82,107.21,0,113.868,0,121v270c0,7.132,1.818,13.79,4.785,19.788l154.283-154.783L4.786,101.212z\"></path>	</g></g><g>	<g>		<path d=\"M507.214,101.21L352.933,256.005L507.214,410.79C510.18,404.792,512,398.134,512,391V121   C512,113.866,510.18,107.208,507.214,101.21z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>			\n							<h5>Send os en email</h5>							<ul>\n							<li>\n											<a href=\"mailto:kontakt@cp-nordic.dk\">\n											kontakt@cp-nordic.dk\n											</a>\n									</li>\n						</ul>\n							<h3>KONTAKT OS</h3>		<p>Vi dækker hele Fyn – og tager også gerne opgaver uden for området, når der er tale om spændende eller teknisk krævende løsninger.</p>					\n					<a href=\"https://www.facebook.com/cpnordic/\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"https://www.instagram.com/cpnordic/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>', 'Kontakt', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-01-26 14:35:57', '2026-01-26 14:35:57', '', 18, 'https://mrarif.me/cpnordic/?p=633', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(634, 1, '2026-01-26 14:36:16', '2026-01-26 14:36:16', '<h2>Kontaktoplysninger</h2>		<p>Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid<br />velkommen til at kontakte os for en uforpligtende snak.</p>					\n			<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>			\n							<h5>Placering</h5>							<ul>\n							<li>\n										Fyn, Denmark\n									</li>\n						</ul>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M358.57,0H153.43c-27.195,0-49.319,22.124-49.319,49.319v413.362h-0.001c0,27.195,22.124,49.319,49.319,49.319H358.57   c27.195,0,49.319-22.124,49.319-49.319V49.319C407.891,22.124,385.766,0,358.57,0z M124.508,49.319   c0-15.948,12.974-28.921,28.921-28.921H358.57c15.947,0,28.921,12.974,28.921,28.921v355.589H124.508V49.319z M387.493,462.681   L387.493,462.681c-0.001,15.947-12.975,28.921-28.922,28.921H153.43c-15.948,0-28.921-12.974-28.921-28.921v-37.374h262.984   V462.681z\"></path>	</g></g><g>	<g>		<path d=\"M270.789,34.677h-29.578c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h29.578   c5.632,0,10.199-4.566,10.199-10.199C280.988,39.243,276.421,34.677,270.789,34.677z\"></path>	</g></g><g>	<g>		<path d=\"M242.204,371.251h-91.255c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h91.255   c5.632,0,10.199-4.566,10.199-10.199C252.403,375.817,247.836,371.251,242.204,371.251z\"></path>	</g></g><g>	<g>		<path d=\"M282.518,371.251h-5.346c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h5.346   c5.632,0,10.199-4.566,10.199-10.199C292.717,375.817,288.15,371.251,282.518,371.251z\"></path>	</g></g><g>	<g>		<path d=\"M256,430.406c-14.903,0-27.028,12.125-27.028,27.028s12.125,27.028,27.028,27.028s27.028-12.125,27.028-27.028   S270.903,430.406,256,430.406z M256,464.064c-3.655,0-6.629-2.974-6.629-6.63s2.974-6.629,6.629-6.629s6.63,2.974,6.63,6.629   S259.655,464.064,256,464.064z\"></path>	</g></g><g>	<g>		<path d=\"M442.612,198.005c-3.984-3.983-10.44-3.983-14.425,0c-3.983,3.983-3.983,10.441,0,14.425   c23.463,23.462,23.463,61.639,0,85.1c-3.983,3.983-3.983,10.441,0,14.425c1.992,1.992,4.602,2.987,7.212,2.987   s5.22-0.995,7.212-2.987C474.027,280.539,474.027,229.421,442.612,198.005z\"></path>	</g></g><g>	<g>		<path d=\"M470.017,170.6c-3.984-3.983-10.44-3.983-14.425,0c-3.983,3.983-3.983,10.441,0,14.425   c18.686,18.686,28.977,43.53,28.977,69.955s-10.291,51.27-28.977,69.955c-3.983,3.983-3.983,10.441,0,14.425   c1.992,1.992,4.602,2.987,7.212,2.987c2.61,0,5.22-0.995,7.212-2.987C516.544,292.832,516.544,217.128,470.017,170.6z\"></path>	</g></g><g>	<g>		<path d=\"M83.812,212.43c3.984-3.984,3.984-10.442,0.001-14.425c-3.984-3.983-10.44-3.983-14.425,0   c-31.416,31.416-31.416,82.533,0,113.95c1.992,1.992,4.602,2.987,7.212,2.987s5.22-0.995,7.212-2.987   c3.983-3.983,3.983-10.441,0-14.425C60.349,274.068,60.349,235.891,83.812,212.43z\"></path>	</g></g><g>	<g>		<path d=\"M27.431,254.98c0-26.426,10.291-51.27,28.977-69.955c3.983-3.983,3.983-10.441,0-14.425   c-3.984-3.983-10.44-3.983-14.425,0c-46.527,46.528-46.527,122.232,0,168.76c1.992,1.992,4.602,2.987,7.212,2.987   s5.22-0.995,7.212-2.987c3.983-3.983,3.983-10.441,0-14.425C37.721,306.25,27.431,281.406,27.431,254.98z\"></path>	</g></g><g>	<g>		<path d=\"M358.06,280.099l-47.694-47.694c-2.619-2.618-6.45-3.613-10.015-2.595l-7.104,2.03c-1.015,0.291-1.98,0.736-2.859,1.323   l-14.669,9.788c-17.71-12.415-33.181-28.156-45.295-46.078l10.425-10.425c1.226-1.226,2.119-2.743,2.596-4.41l2.03-7.104   c1.018-3.562,0.023-7.394-2.595-10.015l-47.697-47.697c-2.827-2.827-7.048-3.742-10.793-2.338l-8.119,3.044   c-1.364,0.511-2.602,1.309-3.632,2.338c-1.938,1.939-3.804,4.028-5.546,6.207c-23.54,29.472-21.155,71.832,5.546,98.534   l77.633,77.632c14.404,14.405,33.363,21.733,52.398,21.732c16.254,0,32.564-5.343,46.138-16.187   c2.179-1.741,4.266-3.606,6.205-5.545c1.029-1.03,1.827-2.267,2.338-3.631l3.044-8.119   C361.802,287.147,360.888,282.927,358.06,280.099z M336.079,292.253c-21.345,17.05-52.032,15.315-71.379-4.034l-77.633-77.632   c-19.349-19.349-21.082-50.035-4.034-71.379c0.783-0.98,1.598-1.933,2.44-2.849l38.31,38.311l-13.591,13.592   c-3.331,3.331-3.947,8.51-1.491,12.531c15.402,25.2,36.656,46.986,61.469,63.005c3.415,2.204,7.81,2.17,11.194-0.085   l18.872-12.593l38.696,38.696C338.011,290.656,337.058,291.471,336.079,292.253z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>			\n							<h5>Ring til os</h5>							<ul>\n							<li>\n											<a href=\"tel:41600040\">\n											41 60 00 40\n											</a>\n									</li>\n						</ul>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M331.756,277.251l-42.881,43.026c-17.389,17.45-47.985,17.826-65.75,0l-42.883-43.026L26.226,431.767   C31.959,434.418,38.28,436,45,436h422c6.72,0,13.039-1.58,18.77-4.232L331.756,277.251z\"></path>	</g></g><g>	<g>		<path d=\"M467,76H45c-6.72,0-13.041,1.582-18.772,4.233l164.577,165.123c0.011,0.011,0.024,0.013,0.035,0.024   c0.011,0.011,0.013,0.026,0.013,0.026l53.513,53.69c5.684,5.684,17.586,5.684,23.27,0l53.502-53.681c0,0,0.013-0.024,0.024-0.035   c0,0,0.024-0.013,0.035-0.024L485.77,80.232C480.039,77.58,473.72,76,467,76z\"></path>	</g></g><g>	<g>		<path d=\"M4.786,101.212C1.82,107.21,0,113.868,0,121v270c0,7.132,1.818,13.79,4.785,19.788l154.283-154.783L4.786,101.212z\"></path>	</g></g><g>	<g>		<path d=\"M507.214,101.21L352.933,256.005L507.214,410.79C510.18,404.792,512,398.134,512,391V121   C512,113.866,510.18,107.208,507.214,101.21z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>			\n							<h5>Send os en email</h5>							<ul>\n							<li>\n											<a href=\"mailto:kontakt@cp-nordic.dk\">\n											kontakt@cp-nordic.dk\n											</a>\n									</li>\n						</ul>\n							<h3>KONTAKT OS</h3>		<p>Vi dækker hele Fyn – og tager også gerne opgaver uden for området, når der er tale om spændende eller teknisk krævende løsninger.</p>					\n					<a href=\"https://www.facebook.com/cpnordic/\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"https://www.instagram.com/cpnordic/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>', 'Kontakt', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-01-26 14:36:16', '2026-01-26 14:36:16', '', 18, 'https://mrarif.me/cpnordic/?p=634', 0, 'revision', '', 0),
(635, 1, '2026-01-26 14:36:16', '2026-01-26 14:36:16', '<h2>Kontaktoplysninger</h2>		<p>Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid<br />velkommen til at kontakte os for en uforpligtende snak.</p>					\n			<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>			\n							<h5>Placering</h5>							<ul>\n							<li>\n										Fyn, Denmark\n									</li>\n						</ul>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M358.57,0H153.43c-27.195,0-49.319,22.124-49.319,49.319v413.362h-0.001c0,27.195,22.124,49.319,49.319,49.319H358.57   c27.195,0,49.319-22.124,49.319-49.319V49.319C407.891,22.124,385.766,0,358.57,0z M124.508,49.319   c0-15.948,12.974-28.921,28.921-28.921H358.57c15.947,0,28.921,12.974,28.921,28.921v355.589H124.508V49.319z M387.493,462.681   L387.493,462.681c-0.001,15.947-12.975,28.921-28.922,28.921H153.43c-15.948,0-28.921-12.974-28.921-28.921v-37.374h262.984   V462.681z\"></path>	</g></g><g>	<g>		<path d=\"M270.789,34.677h-29.578c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h29.578   c5.632,0,10.199-4.566,10.199-10.199C280.988,39.243,276.421,34.677,270.789,34.677z\"></path>	</g></g><g>	<g>		<path d=\"M242.204,371.251h-91.255c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h91.255   c5.632,0,10.199-4.566,10.199-10.199C252.403,375.817,247.836,371.251,242.204,371.251z\"></path>	</g></g><g>	<g>		<path d=\"M282.518,371.251h-5.346c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h5.346   c5.632,0,10.199-4.566,10.199-10.199C292.717,375.817,288.15,371.251,282.518,371.251z\"></path>	</g></g><g>	<g>		<path d=\"M256,430.406c-14.903,0-27.028,12.125-27.028,27.028s12.125,27.028,27.028,27.028s27.028-12.125,27.028-27.028   S270.903,430.406,256,430.406z M256,464.064c-3.655,0-6.629-2.974-6.629-6.63s2.974-6.629,6.629-6.629s6.63,2.974,6.63,6.629   S259.655,464.064,256,464.064z\"></path>	</g></g><g>	<g>		<path d=\"M442.612,198.005c-3.984-3.983-10.44-3.983-14.425,0c-3.983,3.983-3.983,10.441,0,14.425   c23.463,23.462,23.463,61.639,0,85.1c-3.983,3.983-3.983,10.441,0,14.425c1.992,1.992,4.602,2.987,7.212,2.987   s5.22-0.995,7.212-2.987C474.027,280.539,474.027,229.421,442.612,198.005z\"></path>	</g></g><g>	<g>		<path d=\"M470.017,170.6c-3.984-3.983-10.44-3.983-14.425,0c-3.983,3.983-3.983,10.441,0,14.425   c18.686,18.686,28.977,43.53,28.977,69.955s-10.291,51.27-28.977,69.955c-3.983,3.983-3.983,10.441,0,14.425   c1.992,1.992,4.602,2.987,7.212,2.987c2.61,0,5.22-0.995,7.212-2.987C516.544,292.832,516.544,217.128,470.017,170.6z\"></path>	</g></g><g>	<g>		<path d=\"M83.812,212.43c3.984-3.984,3.984-10.442,0.001-14.425c-3.984-3.983-10.44-3.983-14.425,0   c-31.416,31.416-31.416,82.533,0,113.95c1.992,1.992,4.602,2.987,7.212,2.987s5.22-0.995,7.212-2.987   c3.983-3.983,3.983-10.441,0-14.425C60.349,274.068,60.349,235.891,83.812,212.43z\"></path>	</g></g><g>	<g>		<path d=\"M27.431,254.98c0-26.426,10.291-51.27,28.977-69.955c3.983-3.983,3.983-10.441,0-14.425   c-3.984-3.983-10.44-3.983-14.425,0c-46.527,46.528-46.527,122.232,0,168.76c1.992,1.992,4.602,2.987,7.212,2.987   s5.22-0.995,7.212-2.987c3.983-3.983,3.983-10.441,0-14.425C37.721,306.25,27.431,281.406,27.431,254.98z\"></path>	</g></g><g>	<g>		<path d=\"M358.06,280.099l-47.694-47.694c-2.619-2.618-6.45-3.613-10.015-2.595l-7.104,2.03c-1.015,0.291-1.98,0.736-2.859,1.323   l-14.669,9.788c-17.71-12.415-33.181-28.156-45.295-46.078l10.425-10.425c1.226-1.226,2.119-2.743,2.596-4.41l2.03-7.104   c1.018-3.562,0.023-7.394-2.595-10.015l-47.697-47.697c-2.827-2.827-7.048-3.742-10.793-2.338l-8.119,3.044   c-1.364,0.511-2.602,1.309-3.632,2.338c-1.938,1.939-3.804,4.028-5.546,6.207c-23.54,29.472-21.155,71.832,5.546,98.534   l77.633,77.632c14.404,14.405,33.363,21.733,52.398,21.732c16.254,0,32.564-5.343,46.138-16.187   c2.179-1.741,4.266-3.606,6.205-5.545c1.029-1.03,1.827-2.267,2.338-3.631l3.044-8.119   C361.802,287.147,360.888,282.927,358.06,280.099z M336.079,292.253c-21.345,17.05-52.032,15.315-71.379-4.034l-77.633-77.632   c-19.349-19.349-21.082-50.035-4.034-71.379c0.783-0.98,1.598-1.933,2.44-2.849l38.31,38.311l-13.591,13.592   c-3.331,3.331-3.947,8.51-1.491,12.531c15.402,25.2,36.656,46.986,61.469,63.005c3.415,2.204,7.81,2.17,11.194-0.085   l18.872-12.593l38.696,38.696C338.011,290.656,337.058,291.471,336.079,292.253z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>			\n							<h5>Ring til os</h5>							<ul>\n							<li>\n											<a href=\"tel:41600040\">\n											41 60 00 40\n											</a>\n									</li>\n						</ul>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M331.756,277.251l-42.881,43.026c-17.389,17.45-47.985,17.826-65.75,0l-42.883-43.026L26.226,431.767   C31.959,434.418,38.28,436,45,436h422c6.72,0,13.039-1.58,18.77-4.232L331.756,277.251z\"></path>	</g></g><g>	<g>		<path d=\"M467,76H45c-6.72,0-13.041,1.582-18.772,4.233l164.577,165.123c0.011,0.011,0.024,0.013,0.035,0.024   c0.011,0.011,0.013,0.026,0.013,0.026l53.513,53.69c5.684,5.684,17.586,5.684,23.27,0l53.502-53.681c0,0,0.013-0.024,0.024-0.035   c0,0,0.024-0.013,0.035-0.024L485.77,80.232C480.039,77.58,473.72,76,467,76z\"></path>	</g></g><g>	<g>		<path d=\"M4.786,101.212C1.82,107.21,0,113.868,0,121v270c0,7.132,1.818,13.79,4.785,19.788l154.283-154.783L4.786,101.212z\"></path>	</g></g><g>	<g>		<path d=\"M507.214,101.21L352.933,256.005L507.214,410.79C510.18,404.792,512,398.134,512,391V121   C512,113.866,510.18,107.208,507.214,101.21z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>			\n							<h5>Send os en email</h5>							<ul>\n							<li>\n											<a href=\"mailto:kontakt@cp-nordic.dk\">\n											kontakt@cp-nordic.dk\n											</a>\n									</li>\n						</ul>\n							<h3>KONTAKT OS</h3>		<p>Vi dækker hele Fyn – og tager også gerne opgaver uden for området, når der er tale om spændende eller teknisk krævende løsninger.</p>					\n					<a href=\"https://www.facebook.com/cpnordic/\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"https://www.instagram.com/cpnordic/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>', 'Kontakt', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-01-26 14:36:16', '2026-01-26 14:36:16', '', 18, 'https://mrarif.me/cpnordic/?p=635', 0, 'revision', '', 0),
(636, 1, '2026-01-26 14:36:16', '2026-01-26 14:36:16', '<h2>Kontaktoplysninger</h2>		<p>Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid<br />velkommen til at kontakte os for en uforpligtende snak.</p>					\n			<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>			\n							<h5>Placering</h5>							<ul>\n							<li>\n										Fyn, Denmark\n									</li>\n						</ul>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M358.57,0H153.43c-27.195,0-49.319,22.124-49.319,49.319v413.362h-0.001c0,27.195,22.124,49.319,49.319,49.319H358.57   c27.195,0,49.319-22.124,49.319-49.319V49.319C407.891,22.124,385.766,0,358.57,0z M124.508,49.319   c0-15.948,12.974-28.921,28.921-28.921H358.57c15.947,0,28.921,12.974,28.921,28.921v355.589H124.508V49.319z M387.493,462.681   L387.493,462.681c-0.001,15.947-12.975,28.921-28.922,28.921H153.43c-15.948,0-28.921-12.974-28.921-28.921v-37.374h262.984   V462.681z\"></path>	</g></g><g>	<g>		<path d=\"M270.789,34.677h-29.578c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h29.578   c5.632,0,10.199-4.566,10.199-10.199C280.988,39.243,276.421,34.677,270.789,34.677z\"></path>	</g></g><g>	<g>		<path d=\"M242.204,371.251h-91.255c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h91.255   c5.632,0,10.199-4.566,10.199-10.199C252.403,375.817,247.836,371.251,242.204,371.251z\"></path>	</g></g><g>	<g>		<path d=\"M282.518,371.251h-5.346c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h5.346   c5.632,0,10.199-4.566,10.199-10.199C292.717,375.817,288.15,371.251,282.518,371.251z\"></path>	</g></g><g>	<g>		<path d=\"M256,430.406c-14.903,0-27.028,12.125-27.028,27.028s12.125,27.028,27.028,27.028s27.028-12.125,27.028-27.028   S270.903,430.406,256,430.406z M256,464.064c-3.655,0-6.629-2.974-6.629-6.63s2.974-6.629,6.629-6.629s6.63,2.974,6.63,6.629   S259.655,464.064,256,464.064z\"></path>	</g></g><g>	<g>		<path d=\"M442.612,198.005c-3.984-3.983-10.44-3.983-14.425,0c-3.983,3.983-3.983,10.441,0,14.425   c23.463,23.462,23.463,61.639,0,85.1c-3.983,3.983-3.983,10.441,0,14.425c1.992,1.992,4.602,2.987,7.212,2.987   s5.22-0.995,7.212-2.987C474.027,280.539,474.027,229.421,442.612,198.005z\"></path>	</g></g><g>	<g>		<path d=\"M470.017,170.6c-3.984-3.983-10.44-3.983-14.425,0c-3.983,3.983-3.983,10.441,0,14.425   c18.686,18.686,28.977,43.53,28.977,69.955s-10.291,51.27-28.977,69.955c-3.983,3.983-3.983,10.441,0,14.425   c1.992,1.992,4.602,2.987,7.212,2.987c2.61,0,5.22-0.995,7.212-2.987C516.544,292.832,516.544,217.128,470.017,170.6z\"></path>	</g></g><g>	<g>		<path d=\"M83.812,212.43c3.984-3.984,3.984-10.442,0.001-14.425c-3.984-3.983-10.44-3.983-14.425,0   c-31.416,31.416-31.416,82.533,0,113.95c1.992,1.992,4.602,2.987,7.212,2.987s5.22-0.995,7.212-2.987   c3.983-3.983,3.983-10.441,0-14.425C60.349,274.068,60.349,235.891,83.812,212.43z\"></path>	</g></g><g>	<g>		<path d=\"M27.431,254.98c0-26.426,10.291-51.27,28.977-69.955c3.983-3.983,3.983-10.441,0-14.425   c-3.984-3.983-10.44-3.983-14.425,0c-46.527,46.528-46.527,122.232,0,168.76c1.992,1.992,4.602,2.987,7.212,2.987   s5.22-0.995,7.212-2.987c3.983-3.983,3.983-10.441,0-14.425C37.721,306.25,27.431,281.406,27.431,254.98z\"></path>	</g></g><g>	<g>		<path d=\"M358.06,280.099l-47.694-47.694c-2.619-2.618-6.45-3.613-10.015-2.595l-7.104,2.03c-1.015,0.291-1.98,0.736-2.859,1.323   l-14.669,9.788c-17.71-12.415-33.181-28.156-45.295-46.078l10.425-10.425c1.226-1.226,2.119-2.743,2.596-4.41l2.03-7.104   c1.018-3.562,0.023-7.394-2.595-10.015l-47.697-47.697c-2.827-2.827-7.048-3.742-10.793-2.338l-8.119,3.044   c-1.364,0.511-2.602,1.309-3.632,2.338c-1.938,1.939-3.804,4.028-5.546,6.207c-23.54,29.472-21.155,71.832,5.546,98.534   l77.633,77.632c14.404,14.405,33.363,21.733,52.398,21.732c16.254,0,32.564-5.343,46.138-16.187   c2.179-1.741,4.266-3.606,6.205-5.545c1.029-1.03,1.827-2.267,2.338-3.631l3.044-8.119   C361.802,287.147,360.888,282.927,358.06,280.099z M336.079,292.253c-21.345,17.05-52.032,15.315-71.379-4.034l-77.633-77.632   c-19.349-19.349-21.082-50.035-4.034-71.379c0.783-0.98,1.598-1.933,2.44-2.849l38.31,38.311l-13.591,13.592   c-3.331,3.331-3.947,8.51-1.491,12.531c15.402,25.2,36.656,46.986,61.469,63.005c3.415,2.204,7.81,2.17,11.194-0.085   l18.872-12.593l38.696,38.696C338.011,290.656,337.058,291.471,336.079,292.253z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>			\n							<h5>Ring til os</h5>							<ul>\n							<li>\n											<a href=\"tel:41600040\">\n											41 60 00 40\n											</a>\n									</li>\n						</ul>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M331.756,277.251l-42.881,43.026c-17.389,17.45-47.985,17.826-65.75,0l-42.883-43.026L26.226,431.767   C31.959,434.418,38.28,436,45,436h422c6.72,0,13.039-1.58,18.77-4.232L331.756,277.251z\"></path>	</g></g><g>	<g>		<path d=\"M467,76H45c-6.72,0-13.041,1.582-18.772,4.233l164.577,165.123c0.011,0.011,0.024,0.013,0.035,0.024   c0.011,0.011,0.013,0.026,0.013,0.026l53.513,53.69c5.684,5.684,17.586,5.684,23.27,0l53.502-53.681c0,0,0.013-0.024,0.024-0.035   c0,0,0.024-0.013,0.035-0.024L485.77,80.232C480.039,77.58,473.72,76,467,76z\"></path>	</g></g><g>	<g>		<path d=\"M4.786,101.212C1.82,107.21,0,113.868,0,121v270c0,7.132,1.818,13.79,4.785,19.788l154.283-154.783L4.786,101.212z\"></path>	</g></g><g>	<g>		<path d=\"M507.214,101.21L352.933,256.005L507.214,410.79C510.18,404.792,512,398.134,512,391V121   C512,113.866,510.18,107.208,507.214,101.21z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>			\n							<h5>Send os en email</h5>							<ul>\n							<li>\n											<a href=\"mailto:kontakt@cp-nordic.dk\">\n											kontakt@cp-nordic.dk\n											</a>\n									</li>\n						</ul>\n							<h2>KONTAKT OS</h2>		<p>Vi dækker hele Fyn – og tager også gerne opgaver uden for området, når der er tale om spændende eller teknisk krævende løsninger.</p>					\n					<a href=\"https://www.facebook.com/cpnordic/\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"https://www.instagram.com/cpnordic/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>', 'Kontakt', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-01-26 14:36:16', '2026-01-26 14:36:16', '', 18, 'https://mrarif.me/cpnordic/?p=636', 0, 'revision', '', 0),
(637, 1, '2026-01-26 14:36:25', '2026-01-26 14:36:25', '<h2>Kontaktoplysninger</h2>		<p>Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid<br />velkommen til at kontakte os for en uforpligtende snak.</p>					\n			<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>			\n							<h5>Placering</h5>							<ul>\n							<li>\n										Fyn, Denmark\n									</li>\n						</ul>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M358.57,0H153.43c-27.195,0-49.319,22.124-49.319,49.319v413.362h-0.001c0,27.195,22.124,49.319,49.319,49.319H358.57   c27.195,0,49.319-22.124,49.319-49.319V49.319C407.891,22.124,385.766,0,358.57,0z M124.508,49.319   c0-15.948,12.974-28.921,28.921-28.921H358.57c15.947,0,28.921,12.974,28.921,28.921v355.589H124.508V49.319z M387.493,462.681   L387.493,462.681c-0.001,15.947-12.975,28.921-28.922,28.921H153.43c-15.948,0-28.921-12.974-28.921-28.921v-37.374h262.984   V462.681z\"></path>	</g></g><g>	<g>		<path d=\"M270.789,34.677h-29.578c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h29.578   c5.632,0,10.199-4.566,10.199-10.199C280.988,39.243,276.421,34.677,270.789,34.677z\"></path>	</g></g><g>	<g>		<path d=\"M242.204,371.251h-91.255c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h91.255   c5.632,0,10.199-4.566,10.199-10.199C252.403,375.817,247.836,371.251,242.204,371.251z\"></path>	</g></g><g>	<g>		<path d=\"M282.518,371.251h-5.346c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h5.346   c5.632,0,10.199-4.566,10.199-10.199C292.717,375.817,288.15,371.251,282.518,371.251z\"></path>	</g></g><g>	<g>		<path d=\"M256,430.406c-14.903,0-27.028,12.125-27.028,27.028s12.125,27.028,27.028,27.028s27.028-12.125,27.028-27.028   S270.903,430.406,256,430.406z M256,464.064c-3.655,0-6.629-2.974-6.629-6.63s2.974-6.629,6.629-6.629s6.63,2.974,6.63,6.629   S259.655,464.064,256,464.064z\"></path>	</g></g><g>	<g>		<path d=\"M442.612,198.005c-3.984-3.983-10.44-3.983-14.425,0c-3.983,3.983-3.983,10.441,0,14.425   c23.463,23.462,23.463,61.639,0,85.1c-3.983,3.983-3.983,10.441,0,14.425c1.992,1.992,4.602,2.987,7.212,2.987   s5.22-0.995,7.212-2.987C474.027,280.539,474.027,229.421,442.612,198.005z\"></path>	</g></g><g>	<g>		<path d=\"M470.017,170.6c-3.984-3.983-10.44-3.983-14.425,0c-3.983,3.983-3.983,10.441,0,14.425   c18.686,18.686,28.977,43.53,28.977,69.955s-10.291,51.27-28.977,69.955c-3.983,3.983-3.983,10.441,0,14.425   c1.992,1.992,4.602,2.987,7.212,2.987c2.61,0,5.22-0.995,7.212-2.987C516.544,292.832,516.544,217.128,470.017,170.6z\"></path>	</g></g><g>	<g>		<path d=\"M83.812,212.43c3.984-3.984,3.984-10.442,0.001-14.425c-3.984-3.983-10.44-3.983-14.425,0   c-31.416,31.416-31.416,82.533,0,113.95c1.992,1.992,4.602,2.987,7.212,2.987s5.22-0.995,7.212-2.987   c3.983-3.983,3.983-10.441,0-14.425C60.349,274.068,60.349,235.891,83.812,212.43z\"></path>	</g></g><g>	<g>		<path d=\"M27.431,254.98c0-26.426,10.291-51.27,28.977-69.955c3.983-3.983,3.983-10.441,0-14.425   c-3.984-3.983-10.44-3.983-14.425,0c-46.527,46.528-46.527,122.232,0,168.76c1.992,1.992,4.602,2.987,7.212,2.987   s5.22-0.995,7.212-2.987c3.983-3.983,3.983-10.441,0-14.425C37.721,306.25,27.431,281.406,27.431,254.98z\"></path>	</g></g><g>	<g>		<path d=\"M358.06,280.099l-47.694-47.694c-2.619-2.618-6.45-3.613-10.015-2.595l-7.104,2.03c-1.015,0.291-1.98,0.736-2.859,1.323   l-14.669,9.788c-17.71-12.415-33.181-28.156-45.295-46.078l10.425-10.425c1.226-1.226,2.119-2.743,2.596-4.41l2.03-7.104   c1.018-3.562,0.023-7.394-2.595-10.015l-47.697-47.697c-2.827-2.827-7.048-3.742-10.793-2.338l-8.119,3.044   c-1.364,0.511-2.602,1.309-3.632,2.338c-1.938,1.939-3.804,4.028-5.546,6.207c-23.54,29.472-21.155,71.832,5.546,98.534   l77.633,77.632c14.404,14.405,33.363,21.733,52.398,21.732c16.254,0,32.564-5.343,46.138-16.187   c2.179-1.741,4.266-3.606,6.205-5.545c1.029-1.03,1.827-2.267,2.338-3.631l3.044-8.119   C361.802,287.147,360.888,282.927,358.06,280.099z M336.079,292.253c-21.345,17.05-52.032,15.315-71.379-4.034l-77.633-77.632   c-19.349-19.349-21.082-50.035-4.034-71.379c0.783-0.98,1.598-1.933,2.44-2.849l38.31,38.311l-13.591,13.592   c-3.331,3.331-3.947,8.51-1.491,12.531c15.402,25.2,36.656,46.986,61.469,63.005c3.415,2.204,7.81,2.17,11.194-0.085   l18.872-12.593l38.696,38.696C338.011,290.656,337.058,291.471,336.079,292.253z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>			\n							<h5>Ring til os</h5>							<ul>\n							<li>\n											<a href=\"tel:41600040\">\n											41 60 00 40\n											</a>\n									</li>\n						</ul>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M331.756,277.251l-42.881,43.026c-17.389,17.45-47.985,17.826-65.75,0l-42.883-43.026L26.226,431.767   C31.959,434.418,38.28,436,45,436h422c6.72,0,13.039-1.58,18.77-4.232L331.756,277.251z\"></path>	</g></g><g>	<g>		<path d=\"M467,76H45c-6.72,0-13.041,1.582-18.772,4.233l164.577,165.123c0.011,0.011,0.024,0.013,0.035,0.024   c0.011,0.011,0.013,0.026,0.013,0.026l53.513,53.69c5.684,5.684,17.586,5.684,23.27,0l53.502-53.681c0,0,0.013-0.024,0.024-0.035   c0,0,0.024-0.013,0.035-0.024L485.77,80.232C480.039,77.58,473.72,76,467,76z\"></path>	</g></g><g>	<g>		<path d=\"M4.786,101.212C1.82,107.21,0,113.868,0,121v270c0,7.132,1.818,13.79,4.785,19.788l154.283-154.783L4.786,101.212z\"></path>	</g></g><g>	<g>		<path d=\"M507.214,101.21L352.933,256.005L507.214,410.79C510.18,404.792,512,398.134,512,391V121   C512,113.866,510.18,107.208,507.214,101.21z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>			\n							<h5>Send os en email</h5>							<ul>\n							<li>\n											<a href=\"mailto:kontakt@cp-nordic.dk\">\n											kontakt@cp-nordic.dk\n											</a>\n									</li>\n						</ul>\n							<h2>KONTAKT OS</h2>		<p>Vi dækker hele Fyn – og tager også gerne opgaver uden for området, når der er tale om spændende eller teknisk krævende løsninger.</p>					\n					<a href=\"https://www.facebook.com/cpnordic/\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"https://www.instagram.com/cpnordic/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>', 'Kontakt', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-01-26 14:36:25', '2026-01-26 14:36:25', '', 18, 'https://mrarif.me/cpnordic/?p=637', 0, 'revision', '', 0),
(638, 1, '2026-01-26 14:36:25', '2026-01-26 14:36:25', '<h2>Kontaktoplysninger</h2>		<p>Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid<br />velkommen til at kontakte os for en uforpligtende snak.</p>					\n			<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>			\n							<h5>Placering</h5>							<ul>\n							<li>\n										Fyn, Denmark\n									</li>\n						</ul>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M358.57,0H153.43c-27.195,0-49.319,22.124-49.319,49.319v413.362h-0.001c0,27.195,22.124,49.319,49.319,49.319H358.57   c27.195,0,49.319-22.124,49.319-49.319V49.319C407.891,22.124,385.766,0,358.57,0z M124.508,49.319   c0-15.948,12.974-28.921,28.921-28.921H358.57c15.947,0,28.921,12.974,28.921,28.921v355.589H124.508V49.319z M387.493,462.681   L387.493,462.681c-0.001,15.947-12.975,28.921-28.922,28.921H153.43c-15.948,0-28.921-12.974-28.921-28.921v-37.374h262.984   V462.681z\"></path>	</g></g><g>	<g>		<path d=\"M270.789,34.677h-29.578c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h29.578   c5.632,0,10.199-4.566,10.199-10.199C280.988,39.243,276.421,34.677,270.789,34.677z\"></path>	</g></g><g>	<g>		<path d=\"M242.204,371.251h-91.255c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h91.255   c5.632,0,10.199-4.566,10.199-10.199C252.403,375.817,247.836,371.251,242.204,371.251z\"></path>	</g></g><g>	<g>		<path d=\"M282.518,371.251h-5.346c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h5.346   c5.632,0,10.199-4.566,10.199-10.199C292.717,375.817,288.15,371.251,282.518,371.251z\"></path>	</g></g><g>	<g>		<path d=\"M256,430.406c-14.903,0-27.028,12.125-27.028,27.028s12.125,27.028,27.028,27.028s27.028-12.125,27.028-27.028   S270.903,430.406,256,430.406z M256,464.064c-3.655,0-6.629-2.974-6.629-6.63s2.974-6.629,6.629-6.629s6.63,2.974,6.63,6.629   S259.655,464.064,256,464.064z\"></path>	</g></g><g>	<g>		<path d=\"M442.612,198.005c-3.984-3.983-10.44-3.983-14.425,0c-3.983,3.983-3.983,10.441,0,14.425   c23.463,23.462,23.463,61.639,0,85.1c-3.983,3.983-3.983,10.441,0,14.425c1.992,1.992,4.602,2.987,7.212,2.987   s5.22-0.995,7.212-2.987C474.027,280.539,474.027,229.421,442.612,198.005z\"></path>	</g></g><g>	<g>		<path d=\"M470.017,170.6c-3.984-3.983-10.44-3.983-14.425,0c-3.983,3.983-3.983,10.441,0,14.425   c18.686,18.686,28.977,43.53,28.977,69.955s-10.291,51.27-28.977,69.955c-3.983,3.983-3.983,10.441,0,14.425   c1.992,1.992,4.602,2.987,7.212,2.987c2.61,0,5.22-0.995,7.212-2.987C516.544,292.832,516.544,217.128,470.017,170.6z\"></path>	</g></g><g>	<g>		<path d=\"M83.812,212.43c3.984-3.984,3.984-10.442,0.001-14.425c-3.984-3.983-10.44-3.983-14.425,0   c-31.416,31.416-31.416,82.533,0,113.95c1.992,1.992,4.602,2.987,7.212,2.987s5.22-0.995,7.212-2.987   c3.983-3.983,3.983-10.441,0-14.425C60.349,274.068,60.349,235.891,83.812,212.43z\"></path>	</g></g><g>	<g>		<path d=\"M27.431,254.98c0-26.426,10.291-51.27,28.977-69.955c3.983-3.983,3.983-10.441,0-14.425   c-3.984-3.983-10.44-3.983-14.425,0c-46.527,46.528-46.527,122.232,0,168.76c1.992,1.992,4.602,2.987,7.212,2.987   s5.22-0.995,7.212-2.987c3.983-3.983,3.983-10.441,0-14.425C37.721,306.25,27.431,281.406,27.431,254.98z\"></path>	</g></g><g>	<g>		<path d=\"M358.06,280.099l-47.694-47.694c-2.619-2.618-6.45-3.613-10.015-2.595l-7.104,2.03c-1.015,0.291-1.98,0.736-2.859,1.323   l-14.669,9.788c-17.71-12.415-33.181-28.156-45.295-46.078l10.425-10.425c1.226-1.226,2.119-2.743,2.596-4.41l2.03-7.104   c1.018-3.562,0.023-7.394-2.595-10.015l-47.697-47.697c-2.827-2.827-7.048-3.742-10.793-2.338l-8.119,3.044   c-1.364,0.511-2.602,1.309-3.632,2.338c-1.938,1.939-3.804,4.028-5.546,6.207c-23.54,29.472-21.155,71.832,5.546,98.534   l77.633,77.632c14.404,14.405,33.363,21.733,52.398,21.732c16.254,0,32.564-5.343,46.138-16.187   c2.179-1.741,4.266-3.606,6.205-5.545c1.029-1.03,1.827-2.267,2.338-3.631l3.044-8.119   C361.802,287.147,360.888,282.927,358.06,280.099z M336.079,292.253c-21.345,17.05-52.032,15.315-71.379-4.034l-77.633-77.632   c-19.349-19.349-21.082-50.035-4.034-71.379c0.783-0.98,1.598-1.933,2.44-2.849l38.31,38.311l-13.591,13.592   c-3.331,3.331-3.947,8.51-1.491,12.531c15.402,25.2,36.656,46.986,61.469,63.005c3.415,2.204,7.81,2.17,11.194-0.085   l18.872-12.593l38.696,38.696C338.011,290.656,337.058,291.471,336.079,292.253z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>			\n							<h5>Ring til os</h5>							<ul>\n							<li>\n											<a href=\"tel:41600040\">\n											41 60 00 40\n											</a>\n									</li>\n						</ul>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M331.756,277.251l-42.881,43.026c-17.389,17.45-47.985,17.826-65.75,0l-42.883-43.026L26.226,431.767   C31.959,434.418,38.28,436,45,436h422c6.72,0,13.039-1.58,18.77-4.232L331.756,277.251z\"></path>	</g></g><g>	<g>		<path d=\"M467,76H45c-6.72,0-13.041,1.582-18.772,4.233l164.577,165.123c0.011,0.011,0.024,0.013,0.035,0.024   c0.011,0.011,0.013,0.026,0.013,0.026l53.513,53.69c5.684,5.684,17.586,5.684,23.27,0l53.502-53.681c0,0,0.013-0.024,0.024-0.035   c0,0,0.024-0.013,0.035-0.024L485.77,80.232C480.039,77.58,473.72,76,467,76z\"></path>	</g></g><g>	<g>		<path d=\"M4.786,101.212C1.82,107.21,0,113.868,0,121v270c0,7.132,1.818,13.79,4.785,19.788l154.283-154.783L4.786,101.212z\"></path>	</g></g><g>	<g>		<path d=\"M507.214,101.21L352.933,256.005L507.214,410.79C510.18,404.792,512,398.134,512,391V121   C512,113.866,510.18,107.208,507.214,101.21z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>			\n							<h5>Send os en email</h5>							<ul>\n							<li>\n											<a href=\"mailto:kontakt@cp-nordic.dk\">\n											kontakt@cp-nordic.dk\n											</a>\n									</li>\n						</ul>\n							<h2>KONTAKT OS</h2>		<p>Vi dækker hele Fyn – og tager også gerne opgaver uden for området, når der er tale om spændende eller teknisk krævende løsninger.</p>					\n					<a href=\"https://www.facebook.com/cpnordic/\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"https://www.instagram.com/cpnordic/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>', 'Kontakt', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-01-26 14:36:25', '2026-01-26 14:36:25', '', 18, 'https://mrarif.me/cpnordic/?p=638', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(639, 1, '2026-01-26 14:36:25', '2026-01-26 14:36:25', '<h2>Kontaktoplysninger</h2>		<p>Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid<br />velkommen til at kontakte os for en uforpligtende snak.</p>					\n			<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>			\n							<h5>Placering</h5>							<ul>\n							<li>\n										Fyn, Denmark\n									</li>\n						</ul>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M358.57,0H153.43c-27.195,0-49.319,22.124-49.319,49.319v413.362h-0.001c0,27.195,22.124,49.319,49.319,49.319H358.57   c27.195,0,49.319-22.124,49.319-49.319V49.319C407.891,22.124,385.766,0,358.57,0z M124.508,49.319   c0-15.948,12.974-28.921,28.921-28.921H358.57c15.947,0,28.921,12.974,28.921,28.921v355.589H124.508V49.319z M387.493,462.681   L387.493,462.681c-0.001,15.947-12.975,28.921-28.922,28.921H153.43c-15.948,0-28.921-12.974-28.921-28.921v-37.374h262.984   V462.681z\"></path>	</g></g><g>	<g>		<path d=\"M270.789,34.677h-29.578c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h29.578   c5.632,0,10.199-4.566,10.199-10.199C280.988,39.243,276.421,34.677,270.789,34.677z\"></path>	</g></g><g>	<g>		<path d=\"M242.204,371.251h-91.255c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h91.255   c5.632,0,10.199-4.566,10.199-10.199C252.403,375.817,247.836,371.251,242.204,371.251z\"></path>	</g></g><g>	<g>		<path d=\"M282.518,371.251h-5.346c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h5.346   c5.632,0,10.199-4.566,10.199-10.199C292.717,375.817,288.15,371.251,282.518,371.251z\"></path>	</g></g><g>	<g>		<path d=\"M256,430.406c-14.903,0-27.028,12.125-27.028,27.028s12.125,27.028,27.028,27.028s27.028-12.125,27.028-27.028   S270.903,430.406,256,430.406z M256,464.064c-3.655,0-6.629-2.974-6.629-6.63s2.974-6.629,6.629-6.629s6.63,2.974,6.63,6.629   S259.655,464.064,256,464.064z\"></path>	</g></g><g>	<g>		<path d=\"M442.612,198.005c-3.984-3.983-10.44-3.983-14.425,0c-3.983,3.983-3.983,10.441,0,14.425   c23.463,23.462,23.463,61.639,0,85.1c-3.983,3.983-3.983,10.441,0,14.425c1.992,1.992,4.602,2.987,7.212,2.987   s5.22-0.995,7.212-2.987C474.027,280.539,474.027,229.421,442.612,198.005z\"></path>	</g></g><g>	<g>		<path d=\"M470.017,170.6c-3.984-3.983-10.44-3.983-14.425,0c-3.983,3.983-3.983,10.441,0,14.425   c18.686,18.686,28.977,43.53,28.977,69.955s-10.291,51.27-28.977,69.955c-3.983,3.983-3.983,10.441,0,14.425   c1.992,1.992,4.602,2.987,7.212,2.987c2.61,0,5.22-0.995,7.212-2.987C516.544,292.832,516.544,217.128,470.017,170.6z\"></path>	</g></g><g>	<g>		<path d=\"M83.812,212.43c3.984-3.984,3.984-10.442,0.001-14.425c-3.984-3.983-10.44-3.983-14.425,0   c-31.416,31.416-31.416,82.533,0,113.95c1.992,1.992,4.602,2.987,7.212,2.987s5.22-0.995,7.212-2.987   c3.983-3.983,3.983-10.441,0-14.425C60.349,274.068,60.349,235.891,83.812,212.43z\"></path>	</g></g><g>	<g>		<path d=\"M27.431,254.98c0-26.426,10.291-51.27,28.977-69.955c3.983-3.983,3.983-10.441,0-14.425   c-3.984-3.983-10.44-3.983-14.425,0c-46.527,46.528-46.527,122.232,0,168.76c1.992,1.992,4.602,2.987,7.212,2.987   s5.22-0.995,7.212-2.987c3.983-3.983,3.983-10.441,0-14.425C37.721,306.25,27.431,281.406,27.431,254.98z\"></path>	</g></g><g>	<g>		<path d=\"M358.06,280.099l-47.694-47.694c-2.619-2.618-6.45-3.613-10.015-2.595l-7.104,2.03c-1.015,0.291-1.98,0.736-2.859,1.323   l-14.669,9.788c-17.71-12.415-33.181-28.156-45.295-46.078l10.425-10.425c1.226-1.226,2.119-2.743,2.596-4.41l2.03-7.104   c1.018-3.562,0.023-7.394-2.595-10.015l-47.697-47.697c-2.827-2.827-7.048-3.742-10.793-2.338l-8.119,3.044   c-1.364,0.511-2.602,1.309-3.632,2.338c-1.938,1.939-3.804,4.028-5.546,6.207c-23.54,29.472-21.155,71.832,5.546,98.534   l77.633,77.632c14.404,14.405,33.363,21.733,52.398,21.732c16.254,0,32.564-5.343,46.138-16.187   c2.179-1.741,4.266-3.606,6.205-5.545c1.029-1.03,1.827-2.267,2.338-3.631l3.044-8.119   C361.802,287.147,360.888,282.927,358.06,280.099z M336.079,292.253c-21.345,17.05-52.032,15.315-71.379-4.034l-77.633-77.632   c-19.349-19.349-21.082-50.035-4.034-71.379c0.783-0.98,1.598-1.933,2.44-2.849l38.31,38.311l-13.591,13.592   c-3.331,3.331-3.947,8.51-1.491,12.531c15.402,25.2,36.656,46.986,61.469,63.005c3.415,2.204,7.81,2.17,11.194-0.085   l18.872-12.593l38.696,38.696C338.011,290.656,337.058,291.471,336.079,292.253z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>			\n							<h5>Ring til os</h5>							<ul>\n							<li>\n											<a href=\"tel:41600040\">\n											41 60 00 40\n											</a>\n									</li>\n						</ul>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M331.756,277.251l-42.881,43.026c-17.389,17.45-47.985,17.826-65.75,0l-42.883-43.026L26.226,431.767   C31.959,434.418,38.28,436,45,436h422c6.72,0,13.039-1.58,18.77-4.232L331.756,277.251z\"></path>	</g></g><g>	<g>		<path d=\"M467,76H45c-6.72,0-13.041,1.582-18.772,4.233l164.577,165.123c0.011,0.011,0.024,0.013,0.035,0.024   c0.011,0.011,0.013,0.026,0.013,0.026l53.513,53.69c5.684,5.684,17.586,5.684,23.27,0l53.502-53.681c0,0,0.013-0.024,0.024-0.035   c0,0,0.024-0.013,0.035-0.024L485.77,80.232C480.039,77.58,473.72,76,467,76z\"></path>	</g></g><g>	<g>		<path d=\"M4.786,101.212C1.82,107.21,0,113.868,0,121v270c0,7.132,1.818,13.79,4.785,19.788l154.283-154.783L4.786,101.212z\"></path>	</g></g><g>	<g>		<path d=\"M507.214,101.21L352.933,256.005L507.214,410.79C510.18,404.792,512,398.134,512,391V121   C512,113.866,510.18,107.208,507.214,101.21z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>			\n							<h5>Send os en email</h5>							<ul>\n							<li>\n											<a href=\"mailto:kontakt@cp-nordic.dk\">\n											kontakt@cp-nordic.dk\n											</a>\n									</li>\n						</ul>\n							<h2>KONTAKT OS</h2>		<p>Vi dækker hele Fyn – og tager også gerne opgaver uden for området, når der er tale om spændende eller teknisk krævende løsninger.</p>					\n					<a href=\"https://www.facebook.com/cpnordic/\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"https://www.instagram.com/cpnordic/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>', 'Kontakt', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-01-26 14:36:25', '2026-01-26 14:36:25', '', 18, 'https://mrarif.me/cpnordic/?p=639', 0, 'revision', '', 0),
(640, 1, '2026-01-26 14:39:31', '2026-01-26 14:39:31', '<h5>\n						Terrasser					</h5>\n									<h5>\n						Totalrenoveringer					</h5>\n									<h5>\n						Tilbygninger					</h5>\n									<h5>\n						Carporte					</h5>\n									<h5>\n						Udskiftning og montering af døre og vinduer					</h5>\n									<h5>\n						Specialtilpassede løsninger					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>Terrasser</h2>		<p>Terrasser er et af vores kerneområder. Vi lægger stor vægt på korrekt opbygning, stabilitet og finish, da det er afgørende for både holdbarhed og udseende.</p><p>Vi arbejder gerne med hårdttræsterrasser og foretrækker træsorter som cumaru, ipé og thermobehandlet træ, da disse materialer har:</p>					<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										høj naturlig holdbarhed\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										god modstandsdygtighed over for fugt\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										et flot og tidløst udtryk\n									</li>\n						</ul>\n				<p>Med korrekt montage giver disse træsorter terrasser, der ældes pænt og kræver minimal vedligeholdelse.</p><p>Vi rådgiver altid om materialevalg, opbygning og vedligeholdelse, så løsningen passer til både huset, omgivelserne og kundens behov.</p>', 'TØMRERARBEJDE', '', 'publish', 'closed', 'closed', '', 'tomrerarbejde', '', '', '2026-02-14 11:05:51', '2026-02-14 11:05:51', '', 0, 'https://mrarif.me/cpnordic/?page_id=640', 0, 'page', '', 0),
(641, 1, '2026-01-26 14:39:31', '2026-01-26 14:39:31', '', 'TØMRERARBEJDE', '', 'inherit', 'closed', 'closed', '', '640-revision-v1', '', '', '2026-01-26 14:39:31', '2026-01-26 14:39:31', '', 640, 'https://mrarif.me/cpnordic/?p=641', 0, 'revision', '', 0),
(642, 1, '2026-01-26 14:39:44', '2026-01-26 14:39:44', '<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>SPECIALLØSNINGER</h2>		<p>Vi har en særlig interesse for opgaver, der kræver noget ekstra. Når standardløsninger ikke passer, finder vi løsninger, der gør.</p>			<h5>Det kan være:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										teknisk krævende detaljer\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										specialtilpassede konstruktioner\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										samspil mellem flere materialer\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										løsninger, der kræver ekstra omtanke\n									</li>\n						</ul>\n				Her kommer vores faglighed og erfaring virkelig i spil.			<h2>KVALITET FREM FOR KVANTITET</h2>		<p>Vi tager bevidst et begrænset antal opgaver ad gangen. Det giver os mulighed for at:</p>					<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										bevare overblik\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										sikre høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										være tilgængelige for kunden\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										følge op på detaljerne\n									</li>\n						</ul>\n				Vi tror på, at godt håndværk kræver tid og fokus.', 'TAGDÆKNING', '', 'publish', 'closed', 'closed', '', 'tagdaekning', '', '', '2026-02-14 11:08:35', '2026-02-14 11:08:35', '', 0, 'https://mrarif.me/cpnordic/?page_id=642', 0, 'page', '', 0),
(643, 1, '2026-01-26 14:39:44', '2026-01-26 14:39:44', '', 'TAGDÆKNING', '', 'inherit', 'closed', 'closed', '', '642-revision-v1', '', '', '2026-01-26 14:39:44', '2026-01-26 14:39:44', '', 642, 'https://mrarif.me/cpnordic/?p=643', 0, 'revision', '', 0),
(644, 1, '2026-02-14 12:14:17', '2026-01-26 14:40:15', ' ', '', '', 'publish', 'closed', 'closed', '', '644', '', '', '2026-02-14 12:14:17', '2026-02-14 12:14:17', '', 0, 'https://mrarif.me/cpnordic/?p=644', 4, 'nav_menu_item', '', 0),
(645, 1, '2026-02-14 12:14:17', '2026-01-26 14:40:15', ' ', '', '', 'publish', 'closed', 'closed', '', '645', '', '', '2026-02-14 12:14:17', '2026-02-14 12:14:17', '', 0, 'https://mrarif.me/cpnordic/?p=645', 3, 'nav_menu_item', '', 0),
(646, 1, '2026-01-26 14:40:52', '2026-01-26 14:40:52', '<img width=\"2560\" height=\"1157\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-scaled.png\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-scaled.png 2560w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-300x136.png 300w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-1024x463.png 1024w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-768x347.png 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-1536x694.png 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-2048x925.png 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />																					<a href=\"https://mrarif.me/cpnordic/kontakt/\">\n									Kontakt\n					</a>', 'Header', '', 'inherit', 'closed', 'closed', '', '30-revision-v1', '', '', '2026-01-26 14:40:52', '2026-01-26 14:40:52', '', 30, 'https://mrarif.me/cpnordic/?p=646', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(647, 1, '2026-01-26 14:41:47', '2026-01-26 14:41:47', '<h1>CP NORDIC ApS</h1>					<h4>Byggeri – Tømrerarbejde og tagdækning</h4>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle ANMELDELSER\n					</a>\n					<h2>HVORFOR VÆLGE CP NORDIC ApS?</h2>		<p>Når du vælger CP NORDIC ApS, får du:</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 450 450\" width=\"512\"><g><g><path d=\"m225 165.2c-25.9 0-48.9-18.8-53.3-45.2-2.4-14.2.9-28.6 9.3-40.3 8.4-11.8 20.9-19.5 35.1-21.9 29.4-4.9 57.3 15 62.2 44.5 4.9 29.4-15 57.3-44.4 62.2-3 .5-6 .7-8.9.7zm-7.6-99.8c-12.2 2-22.9 8.7-30.1 18.8s-10.1 22.4-8 34.6c3.8 22.7 23.5 38.8 45.7 38.8 2.5 0 5.1-.2 7.6-.6 25.2-4.2 42.3-28.1 38.1-53.4s-28.1-42.4-53.3-38.2z\"></path><path d=\"m255.2 115c-2.1 0-3.8-1.7-3.8-3.8 0-14.6-11.8-26.4-26.4-26.4-2.1 0-3.8-1.7-3.8-3.8s1.7-3.8 3.8-3.8c18.8 0 34.1 15.3 34.1 34.1 0 2-1.8 3.7-3.9 3.7z\"></path><path d=\"m236.1 203h-22.2c-2.1 0-3.8-1.7-3.8-3.8v-14.1c-3.1-.6-6.1-1.4-9.1-2.4l-7 12.2c-1.1 1.8-3.4 2.5-5.3 1.4l-19.2-11.1c-.9-.5-1.5-1.4-1.8-2.3-.3-1-.1-2 .4-2.9l7-12.1c-2.4-2.1-4.6-4.3-6.7-6.6l-12.1 7c-1.8 1.1-4.2.4-5.2-1.4l-11.1-19.2c-1.1-1.8-.4-4.2 1.4-5.2l11.9-6.8c-1-3-1.9-6.1-2.6-9.3h-13.7c-2.1 0-3.8-1.7-3.8-3.8v-22.2c0-2.1 1.7-3.8 3.8-3.8h13.4c.6-3.2 1.4-6.4 2.4-9.5l-11.5-6.6c-1.8-1.1-2.5-3.4-1.4-5.3l11.1-19.6c.5-.9 1.4-1.5 2.3-1.8s2-.1 2.9.4l11.3 6.6c2.2-2.5 4.5-4.8 7-7l-6.5-11.3c-.5-.9-.6-1.9-.4-2.9.3-1 .9-1.8 1.8-2.3l19.2-11.1c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l6.4 11.2c3.1-1.1 6.4-1.9 9.7-2.6v-13c0-2.1 1.7-3.8 3.8-3.8h22.2c2.1 0 3.8 1.7 3.8 3.8v12.8c3.3.7 6.5 1.5 9.7 2.6l6.5-11.2c.5-.9 1.4-1.5 2.3-1.8 1-.3 2-.1 2.9.4l19.2 11.1c.9.5 1.5 1.3 1.8 2.3s.1 2-.4 2.9l-6.5 11.3c2.5 2.2 4.8 4.5 7 7.1l11.3-6.6c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l11.1 19.2c1.1 1.8.4 4.2-1.4 5.3l-11.5 6.6c1 3.1 1.8 6.3 2.5 9.5h13.6c2.1 0 3.8 1.7 3.8 3.8v22.2c0 2.1-1.7 3.8-3.8 3.8h-13.6c-.6 3.1-1.5 6.2-2.5 9.3l11.9 6.8c1.8 1.1 2.5 3.4 1.4 5.2l-11.2 19.5c-1.1 1.8-3.4 2.5-5.2 1.4l-12-7c-2.1 2.4-4.4 4.6-6.7 6.6l7 12.1c.5.9.6 1.9.4 2.9s-.9 1.8-1.8 2.3l-19.2 11.1c-1.8 1.1-4.2.4-5.2-1.4l-7-12.2c-3 1-6 1.8-9.1 2.4v14.1c-.2 2.3-2 4-4.1 4zm-18.4-7.7h14.5v-13.5c0-1.9 1.4-3.5 3.3-3.8 4.7-.7 9.4-2 13.8-3.7 1.8-.7 3.8 0 4.7 1.7l6.7 11.6 12.6-7.3-6.7-11.6c-1-1.6-.5-3.7.9-4.9 3.7-3 7.2-6.4 10.2-10.1 1.2-1.5 3.3-1.8 4.9-.9l11.5 6.6 7.3-12.6-11.3-6.5c-1.6-.9-2.4-3-1.6-4.7 1.8-4.5 3.1-9.2 3.9-14 .3-1.9 1.9-3.2 3.8-3.2h13v-14.6h-12.8c-1.9 0-3.5-1.4-3.8-3.3-.7-4.8-2-9.6-3.7-14.2-.7-1.8 0-3.7 1.7-4.7l10.9-6.3-7.3-12.6-10.8 6.3c-1.6.9-3.7.6-4.9-.9-3.1-3.9-6.6-7.4-10.4-10.6-1.5-1.2-1.9-3.3-.9-4.9l6.2-10.7-12.6-7.3-6.1 10.6c-1 1.6-3 2.3-4.7 1.7-4.6-1.8-9.5-3.1-14.4-3.9-1.9-.3-3.3-1.9-3.3-3.8v-12.2h-14.5v12.3c0 1.9-1.4 3.5-3.3 3.8-5 .8-9.8 2.1-14.4 3.9-1.8.7-3.8 0-4.7-1.7l-6.1-10.6-12.6 7.3 6.2 10.7c.9 1.6.6 3.7-.9 4.9-3.9 3.1-7.4 6.7-10.4 10.6-1.2 1.5-3.3 1.9-4.9.9l-10.8-6.3-7.3 12.6 10.9 6.3c1.6.9 2.3 2.9 1.7 4.7-1.7 4.6-3 9.4-3.7 14.2-.3 1.9-1.9 3.3-3.8 3.3h-12.8v14.5h13c1.9 0 3.5 1.4 3.8 3.2.8 4.8 2.1 9.5 3.9 14 .7 1.8 0 3.8-1.6 4.7l-11.3 6.5 7.3 12.6 11.5-6.6c1.6-.9 3.7-.6 4.9.9 3 3.7 6.5 7.1 10.3 10.1 1.5 1.2 1.9 3.3.9 4.9l-6.7 11.6 12.6 7.3 6.7-11.6c.9-1.6 2.9-2.3 4.7-1.7 4.5 1.7 9.1 2.9 13.8 3.7 1.9.3 3.3 1.9 3.3 3.8z\"></path></g><g><g><g><path d=\"m45.3 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m153.9 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path></g><g><path d=\"m189.3 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.2c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c0 2.1-1.7 3.8-3.8 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m73.3 326.4c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m126 326.4c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m99.7 325.6c-.6 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4s4.1 1.1 4.4 3.2c2.4 16.5 12.3 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m50.2 266.6c-.1 0-.2 0-.3 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.7 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-8.9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.5 2.2zm81.8-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13.1-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.4-.7 2.3-.7z\"></path></g></g></g><g><g><path d=\"m296.1 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m404.7 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path></g><g><path d=\"m440 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.1c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c.2 2.1-1.6 3.8-3.7 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m324 326.3c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m376.7 326.3c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m350.4 325.6c-.5 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4 2.1-.3 4 1.1 4.4 3.2 2.4 16.5 12.4 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m301 266.6c-.1 0-.2 0-.4 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.6 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.4 2.2zm81.7-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.5-.7 2.3-.7z\"></path></g></g></g></g></g></svg>				\n									<h5>\n							et ungt og engageret team						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"496pt\" viewBox=\"0 0 496 496\" width=\"496pt\"><path d=\"m440 328h-28.207031c5.078125-6.703125 8.207031-14.960938 8.207031-24 0-8.824219-7.175781-16-16-16h-12v-19.960938c59.574219-14.445312 104-68.085937 104-132.039062 0-74.992188-61.007812-136-136-136s-136 61.007812-136 136c0 63.953125 44.425781 117.59375 104 132.039062v19.960938h-8.449219c-6.167969 0-12.359375 1.464844-17.886719 4.214844l-50.480468 25.25c-3.320313 1.664062-7.03125 2.535156-10.734375 2.535156h-40.449219v-16h-104v16h56v56h16v-56h16v128h-16v-56h-16v56h-56v16h104v-16h40.449219c3.703125 0 7.414062.871094 10.734375 2.527344l34.488281 17.25c5.519531 2.757812 11.710937 4.222656 17.878906 4.222656h24.449219v24h64v-24h48c13.230469 0 24-10.769531 24-24 0-6.167969-2.40625-11.742188-6.238281-16 3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16 0-13.230469-10.769531-24-24-24zm8 24c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm-208-280c0-66.167969 53.832031-120 120-120s120 53.832031 120 120-53.832031 120-120 120-120-53.832031-120-120zm104 134.976562c5.257812.617188 10.574219 1.023438 16 1.023438s10.742188-.40625 16-1.023438v17.023438h-32zm-40.449219 185.023438c-3.703125 0-7.414062-.871094-10.734375-2.527344l-34.488281-17.25c-5.519531-2.757812-11.710937-4.222656-17.878906-4.222656h-40.449219v-96h40.449219c6.167969 0 12.359375-1.464844 17.886719-4.214844l50.480468-25.25c3.320313-1.664062 7.03125-2.535156 10.734375-2.535156h84.449219c0 13.230469-10.769531 24-24 24h-48.28125l-23.863281 35.808594c-6.101563 9.160156-14.527344 16.589844-24.367188 21.503906-8.753906 4.375-18.542969 6.6875-28.320312 6.6875h-15.167969v16h15.167969c12.246093 0 24.519531-2.894531 35.472656-8.375 12.328125-6.160156 22.878906-15.480469 30.527344-26.945312l6.832031-10.253907v93.574219zm40.449219 24v-136h17.472656c-.898437 2.511719-1.472656 5.183594-1.472656 8 0 6.167969 2.40625 11.742188 6.238281 16-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16 0 10.414062 6.710938 19.214844 16 22.527344v9.472656zm96-24h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8s-3.59375 8-8 8zm0 0\"></path><path d=\"m394.878906 73.007812-7.757812 13.984376c17.816406 9.878906 28.878906 28.664062 28.878906 49.007812h16c0-26.160156-14.222656-50.296875-37.121094-62.992188zm0 0\"></path><path d=\"m360 80c4.734375 0 9.449219.59375 14.007812 1.769531l3.976563-15.503906c-5.855469-1.496094-11.90625-2.265625-17.984375-2.265625zm0 0\"></path><path d=\"m360 48c48.519531 0 88 39.480469 88 88 0 20.753906-7.398438 40.910156-20.832031 56.785156l12.207031 10.34375c15.882812-18.761718 24.625-42.601562 24.625-67.128906 0-57.34375-46.65625-104-104-104-24.527344 0-48.367188 8.753906-67.128906 24.632812l10.335937 12.199219c15.871094-13.433593 36.039063-20.832031 56.792969-20.832031zm0 0\"></path><path d=\"m427.128906 215.367188-10.335937-12.199219c-15.871094 13.433593-36.039063 20.832031-56.792969 20.832031-48.519531 0-88-39.480469-88-88 0-20.753906 7.398438-40.910156 20.832031-56.785156l-12.207031-10.34375c-15.882812 18.761718-24.625 42.601562-24.625 67.128906 0 57.34375 46.65625 104 104 104 24.527344 0 48.367188-8.753906 67.128906-24.632812zm0 0\"></path><path d=\"m121.214844 165.640625c4.953125-1.375 9.695312-3.34375 14.183594-5.878906l9.769531 4.886719 19.472656-19.480469-4.886719-9.769531c2.535156-4.496094 4.503906-9.230469 5.886719-14.183594l10.359375-3.445313v-27.53125l-10.351562-3.453125c-1.375-4.953125-3.34375-9.707031-5.886719-14.183594l4.886719-9.777343-19.472657-19.472657-9.769531 4.886719c-4.484375-2.535156-9.230469-4.503906-14.183594-5.878906l-3.453125-10.359375h-27.539062l-3.445313 10.359375c-4.953125 1.375-9.695312 3.34375-14.183594 5.878906l-9.777343-4.886719-19.472657 19.472657 4.886719 9.777343c-2.535156 4.488282-4.503906 9.230469-5.886719 14.183594l-10.351562 3.445313v27.53125l10.351562 3.453125c1.375 4.953125 3.34375 9.695312 5.886719 14.183594l-4.886719 9.769531 19.472657 19.480469 9.769531-4.886719c4.484375 2.535156 9.230469 4.503906 14.183594 5.878906l3.453125 10.359375h27.539062zm-12.304688-13.679687-2.679687 8.039062h-4.460938l-2.679687-8.039062-4.554688-.90625c-6.128906-1.222657-11.878906-3.605469-17.109375-7.09375l-3.867187-2.578126-7.574219 3.800782-3.160156-3.167969 3.792969-7.582031-2.578126-3.859375c-3.488281-5.222657-5.871093-10.980469-7.09375-17.109375l-.914062-4.554688-8.03125-2.679687v-4.46875l8.03125-2.671875.914062-4.554688c1.222657-6.136718 3.613282-11.886718 7.09375-17.109375l2.578126-3.859375-3.792969-7.589844 3.160156-3.160156 7.574219 3.800782 3.867187-2.578126c5.222657-3.488281 10.980469-5.863281 17.109375-7.09375l4.554688-.90625 2.679687-8.039062h4.460938l2.679687 8.039062 4.554688.90625c6.128906 1.222657 11.878906 3.605469 17.109375 7.09375l3.867187 2.578126 7.574219-3.800782 3.160156 3.160156-3.792969 7.589844 2.578126 3.859375c3.488281 5.214844 5.871093 10.972657 7.09375 17.109375l.914062 4.554688 8.03125 2.679687v4.46875l-8.03125 2.671875-.914062 4.554688c-1.222657 6.128906-3.613282 11.878906-7.09375 17.109375l-2.578126 3.859375 3.792969 7.582031-3.160156 3.167969-7.574219-3.800782-3.867187 2.578126c-5.222657 3.488281-10.980469 5.863281-17.109375 7.09375zm0 0\"></path><path d=\"m104 72c-17.648438 0-32 14.351562-32 32s14.351562 32 32 32 32-14.351562 32-32-14.351562-32-32-32zm0 48c-8.824219 0-16-7.175781-16-16s7.175781-16 16-16 16 7.175781 16 16-7.175781 16-16 16zm0 0\"></path><path d=\"m160 248v-40h48v-208h-208v208h106.664062zm-144-232h176v176h-48v24l-32-24h-96zm0 0\"></path><path d=\"m0 272h16v16h-16zm0 0\"></path><path d=\"m32 272h16v16h-16zm0 0\"></path><path d=\"m64 272h16v16h-16zm0 0\"></path><path d=\"m32 304h16v16h-16zm0 0\"></path><path d=\"m64 304h16v16h-16zm0 0\"></path><path d=\"m0 480h16v16h-16zm0 0\"></path><path d=\"m32 480h16v16h-16zm0 0\"></path><path d=\"m64 480h16v16h-16zm0 0\"></path><path d=\"m32 448h16v16h-16zm0 0\"></path><path d=\"m64 448h16v16h-16zm0 0\"></path></svg>				\n									<h5>\n							fokus på kvalitet og detaljer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m469.12 408.93-67.26-33.63v-22.13c10.71-7.69 18.6-19.07 21.78-32.27h5.28c8.81 0 15.98-7.17 15.98-15.98v-5.29c0-6.35-3.74-11.84-9.12-14.41 5.19-18.64-1.65-39.76-19.44-59.78-12.58-14.16-30.67-22.27-49.62-22.27-18.93 0-37.01 8.12-49.59 22.27-13.38 15.05-20.95 41.01-14.03 59.62-5.56 2.5-9.45 8.09-9.45 14.57v5.29c0 8.81 7.17 15.98 15.98 15.98h5.55c3.16 13.09 10.94 24.39 21.51 32.08v22.32l-67.26 33.63c-16.7 5.87-27.89 21.6-27.89 39.28v41.63c0 3.31 2.69 6 6 6h243.46c3.31 0 6-2.69 6-6v-41.63c0-17.68-11.19-33.41-27.88-39.28zm-62.24-17.7-15.83 27.66-13.29-13.29 19.29-19.29zm-37.61 5.88-20.59-20.58v-16.91c6.41 2.57 13.4 4.01 20.72 4.01 7.22 0 14.11-1.39 20.45-3.9v16.8zm63.63-97.48v5.29c0 2.16-1.82 3.98-3.98 3.98h-3.74c.01-.36.03-.71.03-1.07v-12.18h3.71c2.15-.01 3.98 1.82 3.98 3.98zm-119.29 8.2v1.07h-3.98c-2.16 0-3.98-1.82-3.98-3.98v-5.29c0-2.16 1.82-3.98 3.98-3.98l3.98.22zm1.95-24.19c-7.33-13.69-.89-37.39 10.53-50.24 10.31-11.6 25.12-18.25 40.63-18.25 15.52 0 30.34 6.65 40.65 18.25 8.43 9.48 21.3 27.59 17.4 46.39-5.66-.35-10.67-2.55-14.4-6.36-5.37-5.49-7.72-14-6.63-23.94.29-2.62-1.17-5.13-3.6-6.17s-5.25-.37-6.95 1.65c-19.33 22.92-45.95 36.76-73.9 38.68h-3.73zm10.05 24.19v-12.73c24.57-2.92 47.92-14.05 66.73-31.8 1.43 7.26 4.63 13.6 9.45 18.52 3.27 3.35 7.14 5.89 11.41 7.58v18.42c0 24.15-19.65 43.8-43.8 43.8s-43.79-19.64-43.79-43.79zm15.89 78.48 19.29 19.29-13.29 13.29-15.84-27.66zm3.22 97.53h-39.42v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.76v-35.63c0-12.68 8.1-23.95 20.15-28.05.26-.09.51-.19.75-.31l46.47-23.23 20.07 35.06c.93 1.62 2.56 2.72 4.41 2.97.27.04.53.05.79.05 1.58 0 3.11-.62 4.24-1.76l.14-.14zm12.08 0 7.41-64.69 5.06-5.06 4.84 4.84 7.86 64.92h-25.17zm128.2 0h-39.76v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.18l-6.2-51.17.25.25c1.13 1.13 2.66 1.76 4.24 1.76.26 0 .53-.02.79-.05 1.85-.25 3.48-1.34 4.41-2.97l20.07-35.06 46.47 23.23c.24.12.49.23.75.31 12.05 4.1 20.15 15.38 20.15 28.05v35.65zm-67.04-346.65h-10.84l28.38 39.84 28.38-39.84h-10.84c-3.31 0-6-2.69-6-6v-64.58h-98.7c-3.31 0-6-2.69-6-6s2.69-6 6-6h104.7c3.31 0 6 2.69 6 6v64.58h16.48c2.25 0 4.3 1.25 5.33 3.25s.86 4.4-.45 6.23l-40.02 56.18c-1.13 1.58-2.95 2.52-4.89 2.52s-3.76-.94-4.89-2.52l-40.02-56.18c-1.3-1.83-1.48-4.23-.45-6.23s3.09-3.25 5.33-3.25h16.48v-23.5h-65.38c-3.31 0-6-2.69-6-6s2.69-6 6-6h71.38c3.31 0 6 2.69 6 6v35.5c.02 3.31-2.67 6-5.98 6zm-118.44 50.65v-133.26c0-21.18-17.23-38.41-38.41-38.41h-207.7c-21.18-.01-38.41 17.23-38.41 38.41v133.26c0 21.18 17.23 38.41 38.41 38.41h105.8l64.8 55.11c1.11.94 2.49 1.43 3.89 1.43.85 0 1.71-.18 2.52-.55 2.12-.98 3.48-3.11 3.48-5.45v-50.54h27.21c21.18 0 38.41-17.23 38.41-38.41zm-71.62 26.41c-3.31 0-6 2.69-6 6v43.56l-56.59-48.13c-1.08-.92-2.46-1.43-3.89-1.43h-108.01c-14.56 0-26.41-11.85-26.41-26.41v-133.26c0-14.56 11.85-26.41 26.41-26.41h207.69c14.56 0 26.41 11.85 26.41 26.41v133.26c0 14.56-11.85 26.41-26.41 26.41zm-156.34-87.87h56.97c3.31 0 6-2.69 6-6v-39.2l8.55-8.55c2.34-2.34 2.34-6.14 0-8.49-2.34-2.34-6.14-2.34-8.48 0l-.7.7c-.98-1.97-3.01-3.32-5.36-3.32h-56.98c-3.31 0-6 2.69-6 6v52.85c0 3.32 2.69 6.01 6 6.01zm6-52.86h44.97v2.69l-18.16 18.16-8.84-8.84c-2.34-2.34-6.14-2.34-8.49 0-2.34 2.34-2.34 6.14 0 8.49l13.08 13.08c1.17 1.17 2.71 1.76 4.24 1.76s3.07-.59 4.24-1.76l13.92-13.92v21.2h-44.96zm173.62 3.08c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 31.92c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 36.52c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.68 5.99 6zm0 31.92c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.69 5.99 6zm-119.36 165.01h10.84l-28.38-39.84-28.38 39.84h10.84c3.31 0 6 2.69 6 6v64.58h98.7c3.31 0 6 2.69 6 6s-2.69 6-6 6h-104.69c-3.31 0-6-2.69-6-6v-64.58h-16.48c-2.25 0-4.3-1.25-5.33-3.25s-.86-4.4.45-6.23l40.02-56.18c1.13-1.58 2.95-2.52 4.89-2.52s3.76.94 4.89 2.52l40.02 56.18c1.3 1.83 1.48 4.23.45 6.23s-3.09 3.25-5.33 3.25h-16.48v23.5h65.38c3.31 0 6 2.69 6 6s-2.69 6-6 6h-71.38c-3.31 0-6-2.69-6-6v-35.5c-.03-3.31 2.66-6 5.97-6z\"></path></svg>				\n									<h5>\n							ærlig<br> rådgivning						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 510 510\"><path d=\"m192.036 385.845c-4.787-46.972-19.459-64.336-30.658-82.352-8.672-13.951-15.5-28.245-15.5-54.252 0-60.242 48.865-109.109 109.135-109.109 60.242 0 109.109 48.866 109.109 109.109 0 26.007-6.828 40.301-15.5 54.252-11.199 18.016-25.871 35.38-30.658 82.352 9.985 2.864 17.345 12.101 17.345 22.975v36.44c0 13.109-10.747 23.866-23.893 23.866h-10.334v9.945c0 12.588-10.341 22.929-22.93 22.929h-46.304c-12.589 0-22.93-10.341-22.93-22.929v-9.945h-10.334c-13.146 0-23.893-10.757-23.893-23.866v-36.44c0-10.874 7.36-20.111 17.345-22.975zm111.948-.917c4.199-42.194 15.78-62.332 26.488-79.049 10.147-15.842 19.65-28.207 19.65-56.638 0-52.513-42.597-95.109-95.109-95.109-52.537 0-95.135 42.596-95.135 95.109 0 28.431 9.503 40.796 19.65 56.638 10.708 16.717 22.289 36.855 26.488 79.049zm2.554-78.61c-1.175 13.701-11.985 24.191-24.783 24.191-13.527 0-24.862-12.086-24.862-26.673v-99.328c0-14.12 11.335-26.673 24.862-26.673 11.309 0 21.031 8.139 23.975 19.497 9.12 3.904 15.688 13.438 15.688 24.78 0 1.153-.068 2.289-.201 3.403 5.078 5.326 8.283 12.802 8.283 21.117 0 6.39-1.889 12.262-5.06 17.053 1.996 4.099 3.13 8.773 3.13 13.76 0 14.1-9.065 25.697-21.032 28.873zm-16.452-109.977c-1.964-2.729-4.916-4.506-8.331-4.506-6.192 0-10.862 6.21-10.862 12.673v99.328c0 6.677 4.67 12.673 10.862 12.673 5.516 0 9.822-4.614 10.717-10.425-4.709-1.416-8.923-4.144-12.279-7.814-2.607-2.852-2.409-7.283.443-9.89 2.851-2.607 7.282-2.408 9.889.443 2.416 2.642 5.72 4.356 9.402 4.356 7.733 0 13.643-7.218 13.643-15.734s-5.91-15.734-13.643-15.734c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7 5.352 0 10.388 1.655 14.658 4.533.593-1.743.915-3.634.915-5.612 0-2.11-.366-4.128-1.036-5.972-.769.858-1.588 1.66-2.453 2.397-2.94 2.507-7.361 2.156-9.869-.784-2.507-2.939-2.155-7.361.784-9.868 2.773-2.365 4.492-6.122 4.492-10.293 0-6.072-3.705-11.374-8.898-12.467-.154-.023-.307-.052-.458-.085-.499-.08-1.01-.121-1.532-.121-2.947 0-5.591 1.389-7.515 3.525-2.585 2.87-7.015 3.101-9.886.515-2.87-2.586-3.101-7.015-.515-9.886 3.111-3.453 7.059-5.988 11.472-7.252zm-104.526 67.344c-3.171-4.791-5.06-10.663-5.06-17.053 0-8.307 3.198-15.777 8.284-21.104-.133-1.118-.202-2.258-.202-3.416 0-11.354 6.582-20.897 15.717-24.792 2.948-11.354 12.67-19.485 23.946-19.485 13.56 0 24.888 12.555 24.888 26.673v99.328c0 14.585-11.328 26.673-24.888 26.673-12.765 0-23.578-10.484-24.757-24.184-11.98-3.166-21.058-14.769-21.058-28.88 0-4.987 1.134-9.661 3.13-13.76zm9.982-23.036c-.675 1.847-1.042 3.869-1.042 5.983 0 1.978.322 3.869.915 5.612 4.27-2.878 9.306-4.533 14.658-4.533 3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7-7.733 0-13.643 7.218-13.643 15.734s5.91 15.734 13.643 15.734c3.682 0 6.986-1.714 9.402-4.356 2.607-2.851 7.038-3.05 9.889-.443 2.852 2.607 3.05 7.038.443 9.89-3.35 3.664-7.556 6.389-12.255 7.807.891 5.813 5.192 10.432 10.693 10.432 6.21 0 10.888-5.993 10.888-12.673v-99.328c0-6.466-4.678-12.673-10.888-12.673-3.404 0-6.349 1.777-8.309 4.507 4.421 1.264 8.367 3.8 11.476 7.251 2.586 2.871 2.355 7.3-.516 9.886-2.87 2.586-7.3 2.355-9.886-.515-1.926-2.138-4.574-3.525-7.54-3.525-.493 0-.976.037-1.448.108-.196.045-.395.082-.596.11-5.165 1.118-8.844 6.404-8.844 12.455 0 1.243.153 2.45.442 3.594.101.284.183.572.246.862.748 2.326 2.071 4.346 3.814 5.823 2.947 2.498 3.311 6.919.813 9.866s-6.919 3.312-9.866.814c-.878-.745-1.71-1.554-2.489-2.422zm3.042 158.279c-5.442 0-9.893 4.451-9.893 9.892v36.44c0 5.423 4.454 9.866 9.893 9.866h17.334c3.866 0 7 3.134 7 7v16.945c0 4.902 4.027 8.929 8.93 8.929h46.304c4.903 0 8.93-4.027 8.93-8.929v-16.945c0-3.866 3.134-7 7-7h17.334c5.439 0 9.893-4.443 9.893-9.866v-36.44c0-5.441-4.451-9.892-9.893-9.892zm63.416-314.093 2.907-5.412c1.828-3.403 6.075-4.683 9.479-2.854 3.403 1.828 4.682 6.075 2.854 9.479l-16.073 29.925c-1.22 2.271-3.589 3.688-6.167 3.688s-4.947-1.417-6.167-3.688l-16.073-29.925c-1.828-3.404-.549-7.651 2.854-9.479 3.404-1.829 7.651-.549 9.479 2.854l2.907 5.412v-69.835c0-3.863 3.137-7 7-7s7 3.137 7 7zm-132.198 54.758-49.381-49.381c-2.732-2.731-2.732-7.167 0-9.899s7.168-2.732 9.9 0l49.38 49.38-1.771-5.881c-1.114-3.7.985-7.608 4.684-8.722 3.7-1.114 7.607.985 8.721 4.685l9.796 32.526c.743 2.468.069 5.145-1.753 6.968-1.823 1.823-4.5 2.496-6.969 1.753l-32.526-9.795c-3.699-1.114-5.798-5.022-4.684-8.721s5.022-5.798 8.721-4.684zm-44.859 122.299h-69.835c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7h69.835l-5.412-2.907c-3.403-1.828-4.682-6.076-2.854-9.479 1.828-3.404 6.075-4.683 9.479-2.855l29.926 16.074c2.271 1.22 3.688 3.589 3.688 6.167 0 2.577-1.417 4.947-3.688 6.166l-29.926 16.074c-3.404 1.828-7.651.549-9.479-2.855-1.828-3.403-.549-7.651 2.854-9.479zm54.758 118.198-49.38 49.38c-2.732 2.732-7.168 2.732-9.9 0s-2.732-7.167 0-9.899l49.381-49.381-5.882 1.772c-3.699 1.114-7.607-.985-8.721-4.685-1.114-3.699.985-7.607 4.684-8.721l32.526-9.795c2.469-.743 5.146-.07 6.969 1.753 1.822 1.823 2.496 4.5 1.753 6.968l-9.796 32.527c-1.114 3.699-5.021 5.798-8.721 4.684-3.699-1.114-5.798-5.022-4.684-8.721zm240.497-240.497 5.882-1.771c3.699-1.114 7.607.985 8.721 4.684s-.985 7.607-4.684 8.721l-32.526 9.795c-2.469.743-5.146.07-6.969-1.753-1.822-1.823-2.496-4.5-1.753-6.968l9.796-32.526c1.114-3.7 5.021-5.799 8.721-4.685 3.699 1.114 5.798 5.022 4.684 8.722l-1.771 5.881 49.38-49.38c2.732-2.732 7.168-2.732 9.9 0s2.732 7.168 0 9.899zm44.859 122.299 5.412 2.906c3.403 1.828 4.682 6.076 2.854 9.479-1.828 3.404-6.075 4.683-9.479 2.855l-29.926-16.074c-2.271-1.219-3.688-3.589-3.688-6.166 0-2.578 1.417-4.947 3.688-6.167l29.926-16.074c3.404-1.828 7.651-.549 9.479 2.855 1.828 3.403.549 7.651-2.854 9.479l-5.412 2.907h69.835c3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7zm-54.758 118.198 1.771 5.882c1.114 3.699-.985 7.607-4.684 8.721-3.7 1.114-7.607-.985-8.721-4.684l-9.796-32.527c-.743-2.468-.069-5.145 1.753-6.968 1.823-1.823 4.5-2.496 6.969-1.753l32.526 9.795c3.699 1.114 5.798 5.022 4.684 8.721-1.114 3.7-5.022 5.799-8.721 4.685l-5.882-1.772 49.381 49.381c2.732 2.732 2.732 7.167 0 9.899s-7.168 2.732-9.9 0z\"></path></svg>				\n									<h5>\n							gennemtænkte løsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"outline\"><path d=\"M486.41,144A28,28,0,0,0,472,92H349.123l5.457-21.828a48.513,48.513,0,0,0-12.848-46.153A41.035,41.035,0,0,0,312.609,12H308a8.009,8.009,0,0,0-8,8V47.413l-19.233,64.112A17.376,17.376,0,0,1,268,123.539V112a4,4,0,0,0-4-4H152a4,4,0,0,0-4,4v72a4,4,0,0,0,8,0V116h72V276H156V248a4,4,0,0,0-8,0v32a4,4,0,0,0,4,4H264a4,4,0,0,0,4-4V268.5h11.168A37.07,37.07,0,0,1,305.092,279a45.025,45.025,0,0,0,31.48,12.752L440,292a27.987,27.987,0,0,0,19.369-48.2,27.987,27.987,0,0,0,16-48A28,28,0,0,0,486.41,144ZM260,276H236V116h24Zm212-88H396a4,4,0,0,0,0,8h60a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h40a20,20,0,0,1,.01,40l-103.428-.25a37.07,37.07,0,0,1-25.924-10.5,45.031,45.031,0,0,0-31.49-12.752H268V131.686a25.317,25.317,0,0,0,20.429-17.862l19.4-64.675A4,4,0,0,0,308,48V20h4.609a33.082,33.082,0,0,1,23.481,9.69,40.507,40.507,0,0,1,10.728,38.541l-6.7,26.8A4,4,0,0,0,344,100H472a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h72a20,20,0,0,1,0,40Z\"></path><path d=\"M194.5,183.243l-1.9-.217a4,4,0,0,0-4.169,2.491L184.29,195.9H135.278l-3.539-9.317a4,4,0,0,0-7.478,2.84l2.459,6.477h-8.474L68.452,156.872a4,4,0,1,0-4.935,6.3L77.6,174.209,56.961,194.48l-6.636-5.491a4,4,0,1,0-5.1,6.163L87.219,229.9a44.1,44.1,0,0,0,28.05,10.1H212a8.009,8.009,0,0,0,8-8V203.9a8.009,8.009,0,0,0-8-8h-8v-2.01A10.708,10.708,0,0,0,194.5,183.243ZM212,203.9V232H115.269a36.081,36.081,0,0,1-22.951-8.264l-29.16-24.128,20.8-20.422L114.4,203.045a4,4,0,0,0,2.468.852H187a4,4,0,0,0,3.715-2.517l3.929-9.843a2.712,2.712,0,0,1,1.356,2.35v6.01a4,4,0,0,0,4,4Z\"></path><path d=\"M223.084,484.672,200.87,469.863V346.36A44.1,44.1,0,0,0,195.327,325l-17.183-30.94a4,4,0,0,0-7,3.884l17.184,30.94a36.073,36.073,0,0,1,4.537,17.478V468H164.333a4,4,0,1,0,0,8h31.321l12,8H152.865V352a4,4,0,0,0-.358-1.655l-25.454-56A4,4,0,0,0,123.411,292H114.2a4,4,0,0,0-3.945,4.658l8.862,53.175a36.016,36.016,0,0,1-1.951,18.949L78.642,468H48.333a4,4,0,1,0,0,8H80.377L92,484H32.088L76.63,361.366a4.017,4.017,0,0,0,.183-2.044L61.1,268H136a4,4,0,0,0,0-8H59.233L30.555,173.966A19.723,19.723,0,0,1,49.27,148H76a12,12,0,0,0,24,0h15.2a21.975,21.975,0,0,1,8.395,1.652l10.889,4.458a4,4,0,1,0,3.032-7.4L126.63,142.25A29.938,29.938,0,0,0,115.2,140H100v-4.527A16.014,16.014,0,0,0,112,120V103.473A16.014,16.014,0,0,0,124,88V80a4,4,0,0,0-4-4H90A22.025,22.025,0,0,0,68,98v18a12.02,12.02,0,0,0,8,11.314V140H49.27a27.723,27.723,0,0,0-26.305,36.5l29.493,88.482,16.29,94.655-46.128,127A4,4,0,0,0,26.38,492h78.485a4,4,0,0,0,2.268-7.3L86.3,470.368l38.318-98.69a44.018,44.018,0,0,0,2.385-23.16L118.921,300h1.914l24.03,52.867V488a4,4,0,0,0,4,4h72a4,4,0,0,0,2.219-7.328ZM76,98A14.015,14.015,0,0,1,90,84h26v4a8.009,8.009,0,0,1-8,8H92a4,4,0,0,0-4,4,11.962,11.962,0,0,1-1.53,5.881A12.044,12.044,0,0,0,76,104.686Zm4,14a3.981,3.981,0,0,1,3.407,1.9,4,4,0,0,0,5.956.975c.207-.171.7-.648.7-.648.032-.028.061-.057.09-.087A19.907,19.907,0,0,0,95.6,104H104v16a8.009,8.009,0,0,1-8,8,12.133,12.133,0,0,1-2.681-.3,4,4,0,1,0-1.775,7.8c.151.035.3.06.456.091V148a4,4,0,1,1-8,0V124a4,4,0,0,0-4-4,4,4,0,0,1,0-8Z\"></path></g></svg>				\n									<h5>\n							arbejde udført med ansvar						\n					</h5>\n				<p>Vi lover ikke mere, end vi kan holde – men vi holder det, vi lover.</p>			<h2>KONTAKT OS</h2>		<p>Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.</p>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 14:41:47', '2026-01-26 14:41:47', '', 10, 'https://mrarif.me/cpnordic/?p=647', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(648, 1, '2026-01-26 14:41:47', '2026-01-26 14:41:47', '<h1>CP NORDIC ApS</h1>					<h4>Byggeri – Tømrerarbejde og tagdækning</h4>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle ANMELDELSER\n					</a>\n					<h2>HVORFOR VÆLGE CP NORDIC ApS?</h2>		<p>Når du vælger CP NORDIC ApS, får du:</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 450 450\" width=\"512\"><g><g><path d=\"m225 165.2c-25.9 0-48.9-18.8-53.3-45.2-2.4-14.2.9-28.6 9.3-40.3 8.4-11.8 20.9-19.5 35.1-21.9 29.4-4.9 57.3 15 62.2 44.5 4.9 29.4-15 57.3-44.4 62.2-3 .5-6 .7-8.9.7zm-7.6-99.8c-12.2 2-22.9 8.7-30.1 18.8s-10.1 22.4-8 34.6c3.8 22.7 23.5 38.8 45.7 38.8 2.5 0 5.1-.2 7.6-.6 25.2-4.2 42.3-28.1 38.1-53.4s-28.1-42.4-53.3-38.2z\"></path><path d=\"m255.2 115c-2.1 0-3.8-1.7-3.8-3.8 0-14.6-11.8-26.4-26.4-26.4-2.1 0-3.8-1.7-3.8-3.8s1.7-3.8 3.8-3.8c18.8 0 34.1 15.3 34.1 34.1 0 2-1.8 3.7-3.9 3.7z\"></path><path d=\"m236.1 203h-22.2c-2.1 0-3.8-1.7-3.8-3.8v-14.1c-3.1-.6-6.1-1.4-9.1-2.4l-7 12.2c-1.1 1.8-3.4 2.5-5.3 1.4l-19.2-11.1c-.9-.5-1.5-1.4-1.8-2.3-.3-1-.1-2 .4-2.9l7-12.1c-2.4-2.1-4.6-4.3-6.7-6.6l-12.1 7c-1.8 1.1-4.2.4-5.2-1.4l-11.1-19.2c-1.1-1.8-.4-4.2 1.4-5.2l11.9-6.8c-1-3-1.9-6.1-2.6-9.3h-13.7c-2.1 0-3.8-1.7-3.8-3.8v-22.2c0-2.1 1.7-3.8 3.8-3.8h13.4c.6-3.2 1.4-6.4 2.4-9.5l-11.5-6.6c-1.8-1.1-2.5-3.4-1.4-5.3l11.1-19.6c.5-.9 1.4-1.5 2.3-1.8s2-.1 2.9.4l11.3 6.6c2.2-2.5 4.5-4.8 7-7l-6.5-11.3c-.5-.9-.6-1.9-.4-2.9.3-1 .9-1.8 1.8-2.3l19.2-11.1c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l6.4 11.2c3.1-1.1 6.4-1.9 9.7-2.6v-13c0-2.1 1.7-3.8 3.8-3.8h22.2c2.1 0 3.8 1.7 3.8 3.8v12.8c3.3.7 6.5 1.5 9.7 2.6l6.5-11.2c.5-.9 1.4-1.5 2.3-1.8 1-.3 2-.1 2.9.4l19.2 11.1c.9.5 1.5 1.3 1.8 2.3s.1 2-.4 2.9l-6.5 11.3c2.5 2.2 4.8 4.5 7 7.1l11.3-6.6c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l11.1 19.2c1.1 1.8.4 4.2-1.4 5.3l-11.5 6.6c1 3.1 1.8 6.3 2.5 9.5h13.6c2.1 0 3.8 1.7 3.8 3.8v22.2c0 2.1-1.7 3.8-3.8 3.8h-13.6c-.6 3.1-1.5 6.2-2.5 9.3l11.9 6.8c1.8 1.1 2.5 3.4 1.4 5.2l-11.2 19.5c-1.1 1.8-3.4 2.5-5.2 1.4l-12-7c-2.1 2.4-4.4 4.6-6.7 6.6l7 12.1c.5.9.6 1.9.4 2.9s-.9 1.8-1.8 2.3l-19.2 11.1c-1.8 1.1-4.2.4-5.2-1.4l-7-12.2c-3 1-6 1.8-9.1 2.4v14.1c-.2 2.3-2 4-4.1 4zm-18.4-7.7h14.5v-13.5c0-1.9 1.4-3.5 3.3-3.8 4.7-.7 9.4-2 13.8-3.7 1.8-.7 3.8 0 4.7 1.7l6.7 11.6 12.6-7.3-6.7-11.6c-1-1.6-.5-3.7.9-4.9 3.7-3 7.2-6.4 10.2-10.1 1.2-1.5 3.3-1.8 4.9-.9l11.5 6.6 7.3-12.6-11.3-6.5c-1.6-.9-2.4-3-1.6-4.7 1.8-4.5 3.1-9.2 3.9-14 .3-1.9 1.9-3.2 3.8-3.2h13v-14.6h-12.8c-1.9 0-3.5-1.4-3.8-3.3-.7-4.8-2-9.6-3.7-14.2-.7-1.8 0-3.7 1.7-4.7l10.9-6.3-7.3-12.6-10.8 6.3c-1.6.9-3.7.6-4.9-.9-3.1-3.9-6.6-7.4-10.4-10.6-1.5-1.2-1.9-3.3-.9-4.9l6.2-10.7-12.6-7.3-6.1 10.6c-1 1.6-3 2.3-4.7 1.7-4.6-1.8-9.5-3.1-14.4-3.9-1.9-.3-3.3-1.9-3.3-3.8v-12.2h-14.5v12.3c0 1.9-1.4 3.5-3.3 3.8-5 .8-9.8 2.1-14.4 3.9-1.8.7-3.8 0-4.7-1.7l-6.1-10.6-12.6 7.3 6.2 10.7c.9 1.6.6 3.7-.9 4.9-3.9 3.1-7.4 6.7-10.4 10.6-1.2 1.5-3.3 1.9-4.9.9l-10.8-6.3-7.3 12.6 10.9 6.3c1.6.9 2.3 2.9 1.7 4.7-1.7 4.6-3 9.4-3.7 14.2-.3 1.9-1.9 3.3-3.8 3.3h-12.8v14.5h13c1.9 0 3.5 1.4 3.8 3.2.8 4.8 2.1 9.5 3.9 14 .7 1.8 0 3.8-1.6 4.7l-11.3 6.5 7.3 12.6 11.5-6.6c1.6-.9 3.7-.6 4.9.9 3 3.7 6.5 7.1 10.3 10.1 1.5 1.2 1.9 3.3.9 4.9l-6.7 11.6 12.6 7.3 6.7-11.6c.9-1.6 2.9-2.3 4.7-1.7 4.5 1.7 9.1 2.9 13.8 3.7 1.9.3 3.3 1.9 3.3 3.8z\"></path></g><g><g><g><path d=\"m45.3 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m153.9 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path></g><g><path d=\"m189.3 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.2c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c0 2.1-1.7 3.8-3.8 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m73.3 326.4c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m126 326.4c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m99.7 325.6c-.6 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4s4.1 1.1 4.4 3.2c2.4 16.5 12.3 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m50.2 266.6c-.1 0-.2 0-.3 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.7 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-8.9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.5 2.2zm81.8-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13.1-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.4-.7 2.3-.7z\"></path></g></g></g><g><g><path d=\"m296.1 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m404.7 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path></g><g><path d=\"m440 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.1c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c.2 2.1-1.6 3.8-3.7 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m324 326.3c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m376.7 326.3c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m350.4 325.6c-.5 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4 2.1-.3 4 1.1 4.4 3.2 2.4 16.5 12.4 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m301 266.6c-.1 0-.2 0-.4 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.6 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.4 2.2zm81.7-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.5-.7 2.3-.7z\"></path></g></g></g></g></g></svg>				\n									<h5>\n							et ungt og engageret team						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"496pt\" viewBox=\"0 0 496 496\" width=\"496pt\"><path d=\"m440 328h-28.207031c5.078125-6.703125 8.207031-14.960938 8.207031-24 0-8.824219-7.175781-16-16-16h-12v-19.960938c59.574219-14.445312 104-68.085937 104-132.039062 0-74.992188-61.007812-136-136-136s-136 61.007812-136 136c0 63.953125 44.425781 117.59375 104 132.039062v19.960938h-8.449219c-6.167969 0-12.359375 1.464844-17.886719 4.214844l-50.480468 25.25c-3.320313 1.664062-7.03125 2.535156-10.734375 2.535156h-40.449219v-16h-104v16h56v56h16v-56h16v128h-16v-56h-16v56h-56v16h104v-16h40.449219c3.703125 0 7.414062.871094 10.734375 2.527344l34.488281 17.25c5.519531 2.757812 11.710937 4.222656 17.878906 4.222656h24.449219v24h64v-24h48c13.230469 0 24-10.769531 24-24 0-6.167969-2.40625-11.742188-6.238281-16 3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16 0-13.230469-10.769531-24-24-24zm8 24c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm-208-280c0-66.167969 53.832031-120 120-120s120 53.832031 120 120-53.832031 120-120 120-120-53.832031-120-120zm104 134.976562c5.257812.617188 10.574219 1.023438 16 1.023438s10.742188-.40625 16-1.023438v17.023438h-32zm-40.449219 185.023438c-3.703125 0-7.414062-.871094-10.734375-2.527344l-34.488281-17.25c-5.519531-2.757812-11.710937-4.222656-17.878906-4.222656h-40.449219v-96h40.449219c6.167969 0 12.359375-1.464844 17.886719-4.214844l50.480468-25.25c3.320313-1.664062 7.03125-2.535156 10.734375-2.535156h84.449219c0 13.230469-10.769531 24-24 24h-48.28125l-23.863281 35.808594c-6.101563 9.160156-14.527344 16.589844-24.367188 21.503906-8.753906 4.375-18.542969 6.6875-28.320312 6.6875h-15.167969v16h15.167969c12.246093 0 24.519531-2.894531 35.472656-8.375 12.328125-6.160156 22.878906-15.480469 30.527344-26.945312l6.832031-10.253907v93.574219zm40.449219 24v-136h17.472656c-.898437 2.511719-1.472656 5.183594-1.472656 8 0 6.167969 2.40625 11.742188 6.238281 16-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16 0 10.414062 6.710938 19.214844 16 22.527344v9.472656zm96-24h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8s-3.59375 8-8 8zm0 0\"></path><path d=\"m394.878906 73.007812-7.757812 13.984376c17.816406 9.878906 28.878906 28.664062 28.878906 49.007812h16c0-26.160156-14.222656-50.296875-37.121094-62.992188zm0 0\"></path><path d=\"m360 80c4.734375 0 9.449219.59375 14.007812 1.769531l3.976563-15.503906c-5.855469-1.496094-11.90625-2.265625-17.984375-2.265625zm0 0\"></path><path d=\"m360 48c48.519531 0 88 39.480469 88 88 0 20.753906-7.398438 40.910156-20.832031 56.785156l12.207031 10.34375c15.882812-18.761718 24.625-42.601562 24.625-67.128906 0-57.34375-46.65625-104-104-104-24.527344 0-48.367188 8.753906-67.128906 24.632812l10.335937 12.199219c15.871094-13.433593 36.039063-20.832031 56.792969-20.832031zm0 0\"></path><path d=\"m427.128906 215.367188-10.335937-12.199219c-15.871094 13.433593-36.039063 20.832031-56.792969 20.832031-48.519531 0-88-39.480469-88-88 0-20.753906 7.398438-40.910156 20.832031-56.785156l-12.207031-10.34375c-15.882812 18.761718-24.625 42.601562-24.625 67.128906 0 57.34375 46.65625 104 104 104 24.527344 0 48.367188-8.753906 67.128906-24.632812zm0 0\"></path><path d=\"m121.214844 165.640625c4.953125-1.375 9.695312-3.34375 14.183594-5.878906l9.769531 4.886719 19.472656-19.480469-4.886719-9.769531c2.535156-4.496094 4.503906-9.230469 5.886719-14.183594l10.359375-3.445313v-27.53125l-10.351562-3.453125c-1.375-4.953125-3.34375-9.707031-5.886719-14.183594l4.886719-9.777343-19.472657-19.472657-9.769531 4.886719c-4.484375-2.535156-9.230469-4.503906-14.183594-5.878906l-3.453125-10.359375h-27.539062l-3.445313 10.359375c-4.953125 1.375-9.695312 3.34375-14.183594 5.878906l-9.777343-4.886719-19.472657 19.472657 4.886719 9.777343c-2.535156 4.488282-4.503906 9.230469-5.886719 14.183594l-10.351562 3.445313v27.53125l10.351562 3.453125c1.375 4.953125 3.34375 9.695312 5.886719 14.183594l-4.886719 9.769531 19.472657 19.480469 9.769531-4.886719c4.484375 2.535156 9.230469 4.503906 14.183594 5.878906l3.453125 10.359375h27.539062zm-12.304688-13.679687-2.679687 8.039062h-4.460938l-2.679687-8.039062-4.554688-.90625c-6.128906-1.222657-11.878906-3.605469-17.109375-7.09375l-3.867187-2.578126-7.574219 3.800782-3.160156-3.167969 3.792969-7.582031-2.578126-3.859375c-3.488281-5.222657-5.871093-10.980469-7.09375-17.109375l-.914062-4.554688-8.03125-2.679687v-4.46875l8.03125-2.671875.914062-4.554688c1.222657-6.136718 3.613282-11.886718 7.09375-17.109375l2.578126-3.859375-3.792969-7.589844 3.160156-3.160156 7.574219 3.800782 3.867187-2.578126c5.222657-3.488281 10.980469-5.863281 17.109375-7.09375l4.554688-.90625 2.679687-8.039062h4.460938l2.679687 8.039062 4.554688.90625c6.128906 1.222657 11.878906 3.605469 17.109375 7.09375l3.867187 2.578126 7.574219-3.800782 3.160156 3.160156-3.792969 7.589844 2.578126 3.859375c3.488281 5.214844 5.871093 10.972657 7.09375 17.109375l.914062 4.554688 8.03125 2.679687v4.46875l-8.03125 2.671875-.914062 4.554688c-1.222657 6.128906-3.613282 11.878906-7.09375 17.109375l-2.578126 3.859375 3.792969 7.582031-3.160156 3.167969-7.574219-3.800782-3.867187 2.578126c-5.222657 3.488281-10.980469 5.863281-17.109375 7.09375zm0 0\"></path><path d=\"m104 72c-17.648438 0-32 14.351562-32 32s14.351562 32 32 32 32-14.351562 32-32-14.351562-32-32-32zm0 48c-8.824219 0-16-7.175781-16-16s7.175781-16 16-16 16 7.175781 16 16-7.175781 16-16 16zm0 0\"></path><path d=\"m160 248v-40h48v-208h-208v208h106.664062zm-144-232h176v176h-48v24l-32-24h-96zm0 0\"></path><path d=\"m0 272h16v16h-16zm0 0\"></path><path d=\"m32 272h16v16h-16zm0 0\"></path><path d=\"m64 272h16v16h-16zm0 0\"></path><path d=\"m32 304h16v16h-16zm0 0\"></path><path d=\"m64 304h16v16h-16zm0 0\"></path><path d=\"m0 480h16v16h-16zm0 0\"></path><path d=\"m32 480h16v16h-16zm0 0\"></path><path d=\"m64 480h16v16h-16zm0 0\"></path><path d=\"m32 448h16v16h-16zm0 0\"></path><path d=\"m64 448h16v16h-16zm0 0\"></path></svg>				\n									<h5>\n							fokus på kvalitet og detaljer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m469.12 408.93-67.26-33.63v-22.13c10.71-7.69 18.6-19.07 21.78-32.27h5.28c8.81 0 15.98-7.17 15.98-15.98v-5.29c0-6.35-3.74-11.84-9.12-14.41 5.19-18.64-1.65-39.76-19.44-59.78-12.58-14.16-30.67-22.27-49.62-22.27-18.93 0-37.01 8.12-49.59 22.27-13.38 15.05-20.95 41.01-14.03 59.62-5.56 2.5-9.45 8.09-9.45 14.57v5.29c0 8.81 7.17 15.98 15.98 15.98h5.55c3.16 13.09 10.94 24.39 21.51 32.08v22.32l-67.26 33.63c-16.7 5.87-27.89 21.6-27.89 39.28v41.63c0 3.31 2.69 6 6 6h243.46c3.31 0 6-2.69 6-6v-41.63c0-17.68-11.19-33.41-27.88-39.28zm-62.24-17.7-15.83 27.66-13.29-13.29 19.29-19.29zm-37.61 5.88-20.59-20.58v-16.91c6.41 2.57 13.4 4.01 20.72 4.01 7.22 0 14.11-1.39 20.45-3.9v16.8zm63.63-97.48v5.29c0 2.16-1.82 3.98-3.98 3.98h-3.74c.01-.36.03-.71.03-1.07v-12.18h3.71c2.15-.01 3.98 1.82 3.98 3.98zm-119.29 8.2v1.07h-3.98c-2.16 0-3.98-1.82-3.98-3.98v-5.29c0-2.16 1.82-3.98 3.98-3.98l3.98.22zm1.95-24.19c-7.33-13.69-.89-37.39 10.53-50.24 10.31-11.6 25.12-18.25 40.63-18.25 15.52 0 30.34 6.65 40.65 18.25 8.43 9.48 21.3 27.59 17.4 46.39-5.66-.35-10.67-2.55-14.4-6.36-5.37-5.49-7.72-14-6.63-23.94.29-2.62-1.17-5.13-3.6-6.17s-5.25-.37-6.95 1.65c-19.33 22.92-45.95 36.76-73.9 38.68h-3.73zm10.05 24.19v-12.73c24.57-2.92 47.92-14.05 66.73-31.8 1.43 7.26 4.63 13.6 9.45 18.52 3.27 3.35 7.14 5.89 11.41 7.58v18.42c0 24.15-19.65 43.8-43.8 43.8s-43.79-19.64-43.79-43.79zm15.89 78.48 19.29 19.29-13.29 13.29-15.84-27.66zm3.22 97.53h-39.42v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.76v-35.63c0-12.68 8.1-23.95 20.15-28.05.26-.09.51-.19.75-.31l46.47-23.23 20.07 35.06c.93 1.62 2.56 2.72 4.41 2.97.27.04.53.05.79.05 1.58 0 3.11-.62 4.24-1.76l.14-.14zm12.08 0 7.41-64.69 5.06-5.06 4.84 4.84 7.86 64.92h-25.17zm128.2 0h-39.76v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.18l-6.2-51.17.25.25c1.13 1.13 2.66 1.76 4.24 1.76.26 0 .53-.02.79-.05 1.85-.25 3.48-1.34 4.41-2.97l20.07-35.06 46.47 23.23c.24.12.49.23.75.31 12.05 4.1 20.15 15.38 20.15 28.05v35.65zm-67.04-346.65h-10.84l28.38 39.84 28.38-39.84h-10.84c-3.31 0-6-2.69-6-6v-64.58h-98.7c-3.31 0-6-2.69-6-6s2.69-6 6-6h104.7c3.31 0 6 2.69 6 6v64.58h16.48c2.25 0 4.3 1.25 5.33 3.25s.86 4.4-.45 6.23l-40.02 56.18c-1.13 1.58-2.95 2.52-4.89 2.52s-3.76-.94-4.89-2.52l-40.02-56.18c-1.3-1.83-1.48-4.23-.45-6.23s3.09-3.25 5.33-3.25h16.48v-23.5h-65.38c-3.31 0-6-2.69-6-6s2.69-6 6-6h71.38c3.31 0 6 2.69 6 6v35.5c.02 3.31-2.67 6-5.98 6zm-118.44 50.65v-133.26c0-21.18-17.23-38.41-38.41-38.41h-207.7c-21.18-.01-38.41 17.23-38.41 38.41v133.26c0 21.18 17.23 38.41 38.41 38.41h105.8l64.8 55.11c1.11.94 2.49 1.43 3.89 1.43.85 0 1.71-.18 2.52-.55 2.12-.98 3.48-3.11 3.48-5.45v-50.54h27.21c21.18 0 38.41-17.23 38.41-38.41zm-71.62 26.41c-3.31 0-6 2.69-6 6v43.56l-56.59-48.13c-1.08-.92-2.46-1.43-3.89-1.43h-108.01c-14.56 0-26.41-11.85-26.41-26.41v-133.26c0-14.56 11.85-26.41 26.41-26.41h207.69c14.56 0 26.41 11.85 26.41 26.41v133.26c0 14.56-11.85 26.41-26.41 26.41zm-156.34-87.87h56.97c3.31 0 6-2.69 6-6v-39.2l8.55-8.55c2.34-2.34 2.34-6.14 0-8.49-2.34-2.34-6.14-2.34-8.48 0l-.7.7c-.98-1.97-3.01-3.32-5.36-3.32h-56.98c-3.31 0-6 2.69-6 6v52.85c0 3.32 2.69 6.01 6 6.01zm6-52.86h44.97v2.69l-18.16 18.16-8.84-8.84c-2.34-2.34-6.14-2.34-8.49 0-2.34 2.34-2.34 6.14 0 8.49l13.08 13.08c1.17 1.17 2.71 1.76 4.24 1.76s3.07-.59 4.24-1.76l13.92-13.92v21.2h-44.96zm173.62 3.08c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 31.92c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 36.52c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.68 5.99 6zm0 31.92c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.69 5.99 6zm-119.36 165.01h10.84l-28.38-39.84-28.38 39.84h10.84c3.31 0 6 2.69 6 6v64.58h98.7c3.31 0 6 2.69 6 6s-2.69 6-6 6h-104.69c-3.31 0-6-2.69-6-6v-64.58h-16.48c-2.25 0-4.3-1.25-5.33-3.25s-.86-4.4.45-6.23l40.02-56.18c1.13-1.58 2.95-2.52 4.89-2.52s3.76.94 4.89 2.52l40.02 56.18c1.3 1.83 1.48 4.23.45 6.23s-3.09 3.25-5.33 3.25h-16.48v23.5h65.38c3.31 0 6 2.69 6 6s-2.69 6-6 6h-71.38c-3.31 0-6-2.69-6-6v-35.5c-.03-3.31 2.66-6 5.97-6z\"></path></svg>				\n									<h5>\n							ærlig<br> rådgivning						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 510 510\"><path d=\"m192.036 385.845c-4.787-46.972-19.459-64.336-30.658-82.352-8.672-13.951-15.5-28.245-15.5-54.252 0-60.242 48.865-109.109 109.135-109.109 60.242 0 109.109 48.866 109.109 109.109 0 26.007-6.828 40.301-15.5 54.252-11.199 18.016-25.871 35.38-30.658 82.352 9.985 2.864 17.345 12.101 17.345 22.975v36.44c0 13.109-10.747 23.866-23.893 23.866h-10.334v9.945c0 12.588-10.341 22.929-22.93 22.929h-46.304c-12.589 0-22.93-10.341-22.93-22.929v-9.945h-10.334c-13.146 0-23.893-10.757-23.893-23.866v-36.44c0-10.874 7.36-20.111 17.345-22.975zm111.948-.917c4.199-42.194 15.78-62.332 26.488-79.049 10.147-15.842 19.65-28.207 19.65-56.638 0-52.513-42.597-95.109-95.109-95.109-52.537 0-95.135 42.596-95.135 95.109 0 28.431 9.503 40.796 19.65 56.638 10.708 16.717 22.289 36.855 26.488 79.049zm2.554-78.61c-1.175 13.701-11.985 24.191-24.783 24.191-13.527 0-24.862-12.086-24.862-26.673v-99.328c0-14.12 11.335-26.673 24.862-26.673 11.309 0 21.031 8.139 23.975 19.497 9.12 3.904 15.688 13.438 15.688 24.78 0 1.153-.068 2.289-.201 3.403 5.078 5.326 8.283 12.802 8.283 21.117 0 6.39-1.889 12.262-5.06 17.053 1.996 4.099 3.13 8.773 3.13 13.76 0 14.1-9.065 25.697-21.032 28.873zm-16.452-109.977c-1.964-2.729-4.916-4.506-8.331-4.506-6.192 0-10.862 6.21-10.862 12.673v99.328c0 6.677 4.67 12.673 10.862 12.673 5.516 0 9.822-4.614 10.717-10.425-4.709-1.416-8.923-4.144-12.279-7.814-2.607-2.852-2.409-7.283.443-9.89 2.851-2.607 7.282-2.408 9.889.443 2.416 2.642 5.72 4.356 9.402 4.356 7.733 0 13.643-7.218 13.643-15.734s-5.91-15.734-13.643-15.734c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7 5.352 0 10.388 1.655 14.658 4.533.593-1.743.915-3.634.915-5.612 0-2.11-.366-4.128-1.036-5.972-.769.858-1.588 1.66-2.453 2.397-2.94 2.507-7.361 2.156-9.869-.784-2.507-2.939-2.155-7.361.784-9.868 2.773-2.365 4.492-6.122 4.492-10.293 0-6.072-3.705-11.374-8.898-12.467-.154-.023-.307-.052-.458-.085-.499-.08-1.01-.121-1.532-.121-2.947 0-5.591 1.389-7.515 3.525-2.585 2.87-7.015 3.101-9.886.515-2.87-2.586-3.101-7.015-.515-9.886 3.111-3.453 7.059-5.988 11.472-7.252zm-104.526 67.344c-3.171-4.791-5.06-10.663-5.06-17.053 0-8.307 3.198-15.777 8.284-21.104-.133-1.118-.202-2.258-.202-3.416 0-11.354 6.582-20.897 15.717-24.792 2.948-11.354 12.67-19.485 23.946-19.485 13.56 0 24.888 12.555 24.888 26.673v99.328c0 14.585-11.328 26.673-24.888 26.673-12.765 0-23.578-10.484-24.757-24.184-11.98-3.166-21.058-14.769-21.058-28.88 0-4.987 1.134-9.661 3.13-13.76zm9.982-23.036c-.675 1.847-1.042 3.869-1.042 5.983 0 1.978.322 3.869.915 5.612 4.27-2.878 9.306-4.533 14.658-4.533 3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7-7.733 0-13.643 7.218-13.643 15.734s5.91 15.734 13.643 15.734c3.682 0 6.986-1.714 9.402-4.356 2.607-2.851 7.038-3.05 9.889-.443 2.852 2.607 3.05 7.038.443 9.89-3.35 3.664-7.556 6.389-12.255 7.807.891 5.813 5.192 10.432 10.693 10.432 6.21 0 10.888-5.993 10.888-12.673v-99.328c0-6.466-4.678-12.673-10.888-12.673-3.404 0-6.349 1.777-8.309 4.507 4.421 1.264 8.367 3.8 11.476 7.251 2.586 2.871 2.355 7.3-.516 9.886-2.87 2.586-7.3 2.355-9.886-.515-1.926-2.138-4.574-3.525-7.54-3.525-.493 0-.976.037-1.448.108-.196.045-.395.082-.596.11-5.165 1.118-8.844 6.404-8.844 12.455 0 1.243.153 2.45.442 3.594.101.284.183.572.246.862.748 2.326 2.071 4.346 3.814 5.823 2.947 2.498 3.311 6.919.813 9.866s-6.919 3.312-9.866.814c-.878-.745-1.71-1.554-2.489-2.422zm3.042 158.279c-5.442 0-9.893 4.451-9.893 9.892v36.44c0 5.423 4.454 9.866 9.893 9.866h17.334c3.866 0 7 3.134 7 7v16.945c0 4.902 4.027 8.929 8.93 8.929h46.304c4.903 0 8.93-4.027 8.93-8.929v-16.945c0-3.866 3.134-7 7-7h17.334c5.439 0 9.893-4.443 9.893-9.866v-36.44c0-5.441-4.451-9.892-9.893-9.892zm63.416-314.093 2.907-5.412c1.828-3.403 6.075-4.683 9.479-2.854 3.403 1.828 4.682 6.075 2.854 9.479l-16.073 29.925c-1.22 2.271-3.589 3.688-6.167 3.688s-4.947-1.417-6.167-3.688l-16.073-29.925c-1.828-3.404-.549-7.651 2.854-9.479 3.404-1.829 7.651-.549 9.479 2.854l2.907 5.412v-69.835c0-3.863 3.137-7 7-7s7 3.137 7 7zm-132.198 54.758-49.381-49.381c-2.732-2.731-2.732-7.167 0-9.899s7.168-2.732 9.9 0l49.38 49.38-1.771-5.881c-1.114-3.7.985-7.608 4.684-8.722 3.7-1.114 7.607.985 8.721 4.685l9.796 32.526c.743 2.468.069 5.145-1.753 6.968-1.823 1.823-4.5 2.496-6.969 1.753l-32.526-9.795c-3.699-1.114-5.798-5.022-4.684-8.721s5.022-5.798 8.721-4.684zm-44.859 122.299h-69.835c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7h69.835l-5.412-2.907c-3.403-1.828-4.682-6.076-2.854-9.479 1.828-3.404 6.075-4.683 9.479-2.855l29.926 16.074c2.271 1.22 3.688 3.589 3.688 6.167 0 2.577-1.417 4.947-3.688 6.166l-29.926 16.074c-3.404 1.828-7.651.549-9.479-2.855-1.828-3.403-.549-7.651 2.854-9.479zm54.758 118.198-49.38 49.38c-2.732 2.732-7.168 2.732-9.9 0s-2.732-7.167 0-9.899l49.381-49.381-5.882 1.772c-3.699 1.114-7.607-.985-8.721-4.685-1.114-3.699.985-7.607 4.684-8.721l32.526-9.795c2.469-.743 5.146-.07 6.969 1.753 1.822 1.823 2.496 4.5 1.753 6.968l-9.796 32.527c-1.114 3.699-5.021 5.798-8.721 4.684-3.699-1.114-5.798-5.022-4.684-8.721zm240.497-240.497 5.882-1.771c3.699-1.114 7.607.985 8.721 4.684s-.985 7.607-4.684 8.721l-32.526 9.795c-2.469.743-5.146.07-6.969-1.753-1.822-1.823-2.496-4.5-1.753-6.968l9.796-32.526c1.114-3.7 5.021-5.799 8.721-4.685 3.699 1.114 5.798 5.022 4.684 8.722l-1.771 5.881 49.38-49.38c2.732-2.732 7.168-2.732 9.9 0s2.732 7.168 0 9.899zm44.859 122.299 5.412 2.906c3.403 1.828 4.682 6.076 2.854 9.479-1.828 3.404-6.075 4.683-9.479 2.855l-29.926-16.074c-2.271-1.219-3.688-3.589-3.688-6.166 0-2.578 1.417-4.947 3.688-6.167l29.926-16.074c3.404-1.828 7.651-.549 9.479 2.855 1.828 3.403.549 7.651-2.854 9.479l-5.412 2.907h69.835c3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7zm-54.758 118.198 1.771 5.882c1.114 3.699-.985 7.607-4.684 8.721-3.7 1.114-7.607-.985-8.721-4.684l-9.796-32.527c-.743-2.468-.069-5.145 1.753-6.968 1.823-1.823 4.5-2.496 6.969-1.753l32.526 9.795c3.699 1.114 5.798 5.022 4.684 8.721-1.114 3.7-5.022 5.799-8.721 4.685l-5.882-1.772 49.381 49.381c2.732 2.732 2.732 7.167 0 9.899s-7.168 2.732-9.9 0z\"></path></svg>				\n									<h5>\n							gennemtænkte løsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"outline\"><path d=\"M486.41,144A28,28,0,0,0,472,92H349.123l5.457-21.828a48.513,48.513,0,0,0-12.848-46.153A41.035,41.035,0,0,0,312.609,12H308a8.009,8.009,0,0,0-8,8V47.413l-19.233,64.112A17.376,17.376,0,0,1,268,123.539V112a4,4,0,0,0-4-4H152a4,4,0,0,0-4,4v72a4,4,0,0,0,8,0V116h72V276H156V248a4,4,0,0,0-8,0v32a4,4,0,0,0,4,4H264a4,4,0,0,0,4-4V268.5h11.168A37.07,37.07,0,0,1,305.092,279a45.025,45.025,0,0,0,31.48,12.752L440,292a27.987,27.987,0,0,0,19.369-48.2,27.987,27.987,0,0,0,16-48A28,28,0,0,0,486.41,144ZM260,276H236V116h24Zm212-88H396a4,4,0,0,0,0,8h60a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h40a20,20,0,0,1,.01,40l-103.428-.25a37.07,37.07,0,0,1-25.924-10.5,45.031,45.031,0,0,0-31.49-12.752H268V131.686a25.317,25.317,0,0,0,20.429-17.862l19.4-64.675A4,4,0,0,0,308,48V20h4.609a33.082,33.082,0,0,1,23.481,9.69,40.507,40.507,0,0,1,10.728,38.541l-6.7,26.8A4,4,0,0,0,344,100H472a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h72a20,20,0,0,1,0,40Z\"></path><path d=\"M194.5,183.243l-1.9-.217a4,4,0,0,0-4.169,2.491L184.29,195.9H135.278l-3.539-9.317a4,4,0,0,0-7.478,2.84l2.459,6.477h-8.474L68.452,156.872a4,4,0,1,0-4.935,6.3L77.6,174.209,56.961,194.48l-6.636-5.491a4,4,0,1,0-5.1,6.163L87.219,229.9a44.1,44.1,0,0,0,28.05,10.1H212a8.009,8.009,0,0,0,8-8V203.9a8.009,8.009,0,0,0-8-8h-8v-2.01A10.708,10.708,0,0,0,194.5,183.243ZM212,203.9V232H115.269a36.081,36.081,0,0,1-22.951-8.264l-29.16-24.128,20.8-20.422L114.4,203.045a4,4,0,0,0,2.468.852H187a4,4,0,0,0,3.715-2.517l3.929-9.843a2.712,2.712,0,0,1,1.356,2.35v6.01a4,4,0,0,0,4,4Z\"></path><path d=\"M223.084,484.672,200.87,469.863V346.36A44.1,44.1,0,0,0,195.327,325l-17.183-30.94a4,4,0,0,0-7,3.884l17.184,30.94a36.073,36.073,0,0,1,4.537,17.478V468H164.333a4,4,0,1,0,0,8h31.321l12,8H152.865V352a4,4,0,0,0-.358-1.655l-25.454-56A4,4,0,0,0,123.411,292H114.2a4,4,0,0,0-3.945,4.658l8.862,53.175a36.016,36.016,0,0,1-1.951,18.949L78.642,468H48.333a4,4,0,1,0,0,8H80.377L92,484H32.088L76.63,361.366a4.017,4.017,0,0,0,.183-2.044L61.1,268H136a4,4,0,0,0,0-8H59.233L30.555,173.966A19.723,19.723,0,0,1,49.27,148H76a12,12,0,0,0,24,0h15.2a21.975,21.975,0,0,1,8.395,1.652l10.889,4.458a4,4,0,1,0,3.032-7.4L126.63,142.25A29.938,29.938,0,0,0,115.2,140H100v-4.527A16.014,16.014,0,0,0,112,120V103.473A16.014,16.014,0,0,0,124,88V80a4,4,0,0,0-4-4H90A22.025,22.025,0,0,0,68,98v18a12.02,12.02,0,0,0,8,11.314V140H49.27a27.723,27.723,0,0,0-26.305,36.5l29.493,88.482,16.29,94.655-46.128,127A4,4,0,0,0,26.38,492h78.485a4,4,0,0,0,2.268-7.3L86.3,470.368l38.318-98.69a44.018,44.018,0,0,0,2.385-23.16L118.921,300h1.914l24.03,52.867V488a4,4,0,0,0,4,4h72a4,4,0,0,0,2.219-7.328ZM76,98A14.015,14.015,0,0,1,90,84h26v4a8.009,8.009,0,0,1-8,8H92a4,4,0,0,0-4,4,11.962,11.962,0,0,1-1.53,5.881A12.044,12.044,0,0,0,76,104.686Zm4,14a3.981,3.981,0,0,1,3.407,1.9,4,4,0,0,0,5.956.975c.207-.171.7-.648.7-.648.032-.028.061-.057.09-.087A19.907,19.907,0,0,0,95.6,104H104v16a8.009,8.009,0,0,1-8,8,12.133,12.133,0,0,1-2.681-.3,4,4,0,1,0-1.775,7.8c.151.035.3.06.456.091V148a4,4,0,1,1-8,0V124a4,4,0,0,0-4-4,4,4,0,0,1,0-8Z\"></path></g></svg>				\n									<h5>\n							arbejde udført med ansvar						\n					</h5>\n				<p>Vi lover ikke mere, end vi kan holde – men vi holder det, vi lover.</p>			<h2>KONTAKT OS</h2>		<p>Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.</p>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 14:41:47', '2026-01-26 14:41:47', '', 10, 'https://mrarif.me/cpnordic/?p=648', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(649, 1, '2026-01-26 14:41:47', '2026-01-26 14:41:47', '<h1>CP NORDIC ApS</h1>					<h4>Byggeri – Tømrerarbejde og tagdækning</h4>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle ANMELDELSER\n					</a>\n					<h2>HVORFOR VÆLGE CP NORDIC ApS?</h2>		<p>Når du vælger CP NORDIC ApS, får du:</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 450 450\" width=\"512\"><g><g><path d=\"m225 165.2c-25.9 0-48.9-18.8-53.3-45.2-2.4-14.2.9-28.6 9.3-40.3 8.4-11.8 20.9-19.5 35.1-21.9 29.4-4.9 57.3 15 62.2 44.5 4.9 29.4-15 57.3-44.4 62.2-3 .5-6 .7-8.9.7zm-7.6-99.8c-12.2 2-22.9 8.7-30.1 18.8s-10.1 22.4-8 34.6c3.8 22.7 23.5 38.8 45.7 38.8 2.5 0 5.1-.2 7.6-.6 25.2-4.2 42.3-28.1 38.1-53.4s-28.1-42.4-53.3-38.2z\"></path><path d=\"m255.2 115c-2.1 0-3.8-1.7-3.8-3.8 0-14.6-11.8-26.4-26.4-26.4-2.1 0-3.8-1.7-3.8-3.8s1.7-3.8 3.8-3.8c18.8 0 34.1 15.3 34.1 34.1 0 2-1.8 3.7-3.9 3.7z\"></path><path d=\"m236.1 203h-22.2c-2.1 0-3.8-1.7-3.8-3.8v-14.1c-3.1-.6-6.1-1.4-9.1-2.4l-7 12.2c-1.1 1.8-3.4 2.5-5.3 1.4l-19.2-11.1c-.9-.5-1.5-1.4-1.8-2.3-.3-1-.1-2 .4-2.9l7-12.1c-2.4-2.1-4.6-4.3-6.7-6.6l-12.1 7c-1.8 1.1-4.2.4-5.2-1.4l-11.1-19.2c-1.1-1.8-.4-4.2 1.4-5.2l11.9-6.8c-1-3-1.9-6.1-2.6-9.3h-13.7c-2.1 0-3.8-1.7-3.8-3.8v-22.2c0-2.1 1.7-3.8 3.8-3.8h13.4c.6-3.2 1.4-6.4 2.4-9.5l-11.5-6.6c-1.8-1.1-2.5-3.4-1.4-5.3l11.1-19.6c.5-.9 1.4-1.5 2.3-1.8s2-.1 2.9.4l11.3 6.6c2.2-2.5 4.5-4.8 7-7l-6.5-11.3c-.5-.9-.6-1.9-.4-2.9.3-1 .9-1.8 1.8-2.3l19.2-11.1c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l6.4 11.2c3.1-1.1 6.4-1.9 9.7-2.6v-13c0-2.1 1.7-3.8 3.8-3.8h22.2c2.1 0 3.8 1.7 3.8 3.8v12.8c3.3.7 6.5 1.5 9.7 2.6l6.5-11.2c.5-.9 1.4-1.5 2.3-1.8 1-.3 2-.1 2.9.4l19.2 11.1c.9.5 1.5 1.3 1.8 2.3s.1 2-.4 2.9l-6.5 11.3c2.5 2.2 4.8 4.5 7 7.1l11.3-6.6c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l11.1 19.2c1.1 1.8.4 4.2-1.4 5.3l-11.5 6.6c1 3.1 1.8 6.3 2.5 9.5h13.6c2.1 0 3.8 1.7 3.8 3.8v22.2c0 2.1-1.7 3.8-3.8 3.8h-13.6c-.6 3.1-1.5 6.2-2.5 9.3l11.9 6.8c1.8 1.1 2.5 3.4 1.4 5.2l-11.2 19.5c-1.1 1.8-3.4 2.5-5.2 1.4l-12-7c-2.1 2.4-4.4 4.6-6.7 6.6l7 12.1c.5.9.6 1.9.4 2.9s-.9 1.8-1.8 2.3l-19.2 11.1c-1.8 1.1-4.2.4-5.2-1.4l-7-12.2c-3 1-6 1.8-9.1 2.4v14.1c-.2 2.3-2 4-4.1 4zm-18.4-7.7h14.5v-13.5c0-1.9 1.4-3.5 3.3-3.8 4.7-.7 9.4-2 13.8-3.7 1.8-.7 3.8 0 4.7 1.7l6.7 11.6 12.6-7.3-6.7-11.6c-1-1.6-.5-3.7.9-4.9 3.7-3 7.2-6.4 10.2-10.1 1.2-1.5 3.3-1.8 4.9-.9l11.5 6.6 7.3-12.6-11.3-6.5c-1.6-.9-2.4-3-1.6-4.7 1.8-4.5 3.1-9.2 3.9-14 .3-1.9 1.9-3.2 3.8-3.2h13v-14.6h-12.8c-1.9 0-3.5-1.4-3.8-3.3-.7-4.8-2-9.6-3.7-14.2-.7-1.8 0-3.7 1.7-4.7l10.9-6.3-7.3-12.6-10.8 6.3c-1.6.9-3.7.6-4.9-.9-3.1-3.9-6.6-7.4-10.4-10.6-1.5-1.2-1.9-3.3-.9-4.9l6.2-10.7-12.6-7.3-6.1 10.6c-1 1.6-3 2.3-4.7 1.7-4.6-1.8-9.5-3.1-14.4-3.9-1.9-.3-3.3-1.9-3.3-3.8v-12.2h-14.5v12.3c0 1.9-1.4 3.5-3.3 3.8-5 .8-9.8 2.1-14.4 3.9-1.8.7-3.8 0-4.7-1.7l-6.1-10.6-12.6 7.3 6.2 10.7c.9 1.6.6 3.7-.9 4.9-3.9 3.1-7.4 6.7-10.4 10.6-1.2 1.5-3.3 1.9-4.9.9l-10.8-6.3-7.3 12.6 10.9 6.3c1.6.9 2.3 2.9 1.7 4.7-1.7 4.6-3 9.4-3.7 14.2-.3 1.9-1.9 3.3-3.8 3.3h-12.8v14.5h13c1.9 0 3.5 1.4 3.8 3.2.8 4.8 2.1 9.5 3.9 14 .7 1.8 0 3.8-1.6 4.7l-11.3 6.5 7.3 12.6 11.5-6.6c1.6-.9 3.7-.6 4.9.9 3 3.7 6.5 7.1 10.3 10.1 1.5 1.2 1.9 3.3.9 4.9l-6.7 11.6 12.6 7.3 6.7-11.6c.9-1.6 2.9-2.3 4.7-1.7 4.5 1.7 9.1 2.9 13.8 3.7 1.9.3 3.3 1.9 3.3 3.8z\"></path></g><g><g><g><path d=\"m45.3 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m153.9 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path></g><g><path d=\"m189.3 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.2c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c0 2.1-1.7 3.8-3.8 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m73.3 326.4c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m126 326.4c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m99.7 325.6c-.6 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4s4.1 1.1 4.4 3.2c2.4 16.5 12.3 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m50.2 266.6c-.1 0-.2 0-.3 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.7 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-8.9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.5 2.2zm81.8-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13.1-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.4-.7 2.3-.7z\"></path></g></g></g><g><g><path d=\"m296.1 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m404.7 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path></g><g><path d=\"m440 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.1c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c.2 2.1-1.6 3.8-3.7 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m324 326.3c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m376.7 326.3c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m350.4 325.6c-.5 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4 2.1-.3 4 1.1 4.4 3.2 2.4 16.5 12.4 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m301 266.6c-.1 0-.2 0-.4 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.6 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.4 2.2zm81.7-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.5-.7 2.3-.7z\"></path></g></g></g></g></g></svg>				\n									<h5>\n							et ungt og engageret team						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"496pt\" viewBox=\"0 0 496 496\" width=\"496pt\"><path d=\"m440 328h-28.207031c5.078125-6.703125 8.207031-14.960938 8.207031-24 0-8.824219-7.175781-16-16-16h-12v-19.960938c59.574219-14.445312 104-68.085937 104-132.039062 0-74.992188-61.007812-136-136-136s-136 61.007812-136 136c0 63.953125 44.425781 117.59375 104 132.039062v19.960938h-8.449219c-6.167969 0-12.359375 1.464844-17.886719 4.214844l-50.480468 25.25c-3.320313 1.664062-7.03125 2.535156-10.734375 2.535156h-40.449219v-16h-104v16h56v56h16v-56h16v128h-16v-56h-16v56h-56v16h104v-16h40.449219c3.703125 0 7.414062.871094 10.734375 2.527344l34.488281 17.25c5.519531 2.757812 11.710937 4.222656 17.878906 4.222656h24.449219v24h64v-24h48c13.230469 0 24-10.769531 24-24 0-6.167969-2.40625-11.742188-6.238281-16 3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16 0-13.230469-10.769531-24-24-24zm8 24c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm-208-280c0-66.167969 53.832031-120 120-120s120 53.832031 120 120-53.832031 120-120 120-120-53.832031-120-120zm104 134.976562c5.257812.617188 10.574219 1.023438 16 1.023438s10.742188-.40625 16-1.023438v17.023438h-32zm-40.449219 185.023438c-3.703125 0-7.414062-.871094-10.734375-2.527344l-34.488281-17.25c-5.519531-2.757812-11.710937-4.222656-17.878906-4.222656h-40.449219v-96h40.449219c6.167969 0 12.359375-1.464844 17.886719-4.214844l50.480468-25.25c3.320313-1.664062 7.03125-2.535156 10.734375-2.535156h84.449219c0 13.230469-10.769531 24-24 24h-48.28125l-23.863281 35.808594c-6.101563 9.160156-14.527344 16.589844-24.367188 21.503906-8.753906 4.375-18.542969 6.6875-28.320312 6.6875h-15.167969v16h15.167969c12.246093 0 24.519531-2.894531 35.472656-8.375 12.328125-6.160156 22.878906-15.480469 30.527344-26.945312l6.832031-10.253907v93.574219zm40.449219 24v-136h17.472656c-.898437 2.511719-1.472656 5.183594-1.472656 8 0 6.167969 2.40625 11.742188 6.238281 16-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16 0 10.414062 6.710938 19.214844 16 22.527344v9.472656zm96-24h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8s-3.59375 8-8 8zm0 0\"></path><path d=\"m394.878906 73.007812-7.757812 13.984376c17.816406 9.878906 28.878906 28.664062 28.878906 49.007812h16c0-26.160156-14.222656-50.296875-37.121094-62.992188zm0 0\"></path><path d=\"m360 80c4.734375 0 9.449219.59375 14.007812 1.769531l3.976563-15.503906c-5.855469-1.496094-11.90625-2.265625-17.984375-2.265625zm0 0\"></path><path d=\"m360 48c48.519531 0 88 39.480469 88 88 0 20.753906-7.398438 40.910156-20.832031 56.785156l12.207031 10.34375c15.882812-18.761718 24.625-42.601562 24.625-67.128906 0-57.34375-46.65625-104-104-104-24.527344 0-48.367188 8.753906-67.128906 24.632812l10.335937 12.199219c15.871094-13.433593 36.039063-20.832031 56.792969-20.832031zm0 0\"></path><path d=\"m427.128906 215.367188-10.335937-12.199219c-15.871094 13.433593-36.039063 20.832031-56.792969 20.832031-48.519531 0-88-39.480469-88-88 0-20.753906 7.398438-40.910156 20.832031-56.785156l-12.207031-10.34375c-15.882812 18.761718-24.625 42.601562-24.625 67.128906 0 57.34375 46.65625 104 104 104 24.527344 0 48.367188-8.753906 67.128906-24.632812zm0 0\"></path><path d=\"m121.214844 165.640625c4.953125-1.375 9.695312-3.34375 14.183594-5.878906l9.769531 4.886719 19.472656-19.480469-4.886719-9.769531c2.535156-4.496094 4.503906-9.230469 5.886719-14.183594l10.359375-3.445313v-27.53125l-10.351562-3.453125c-1.375-4.953125-3.34375-9.707031-5.886719-14.183594l4.886719-9.777343-19.472657-19.472657-9.769531 4.886719c-4.484375-2.535156-9.230469-4.503906-14.183594-5.878906l-3.453125-10.359375h-27.539062l-3.445313 10.359375c-4.953125 1.375-9.695312 3.34375-14.183594 5.878906l-9.777343-4.886719-19.472657 19.472657 4.886719 9.777343c-2.535156 4.488282-4.503906 9.230469-5.886719 14.183594l-10.351562 3.445313v27.53125l10.351562 3.453125c1.375 4.953125 3.34375 9.695312 5.886719 14.183594l-4.886719 9.769531 19.472657 19.480469 9.769531-4.886719c4.484375 2.535156 9.230469 4.503906 14.183594 5.878906l3.453125 10.359375h27.539062zm-12.304688-13.679687-2.679687 8.039062h-4.460938l-2.679687-8.039062-4.554688-.90625c-6.128906-1.222657-11.878906-3.605469-17.109375-7.09375l-3.867187-2.578126-7.574219 3.800782-3.160156-3.167969 3.792969-7.582031-2.578126-3.859375c-3.488281-5.222657-5.871093-10.980469-7.09375-17.109375l-.914062-4.554688-8.03125-2.679687v-4.46875l8.03125-2.671875.914062-4.554688c1.222657-6.136718 3.613282-11.886718 7.09375-17.109375l2.578126-3.859375-3.792969-7.589844 3.160156-3.160156 7.574219 3.800782 3.867187-2.578126c5.222657-3.488281 10.980469-5.863281 17.109375-7.09375l4.554688-.90625 2.679687-8.039062h4.460938l2.679687 8.039062 4.554688.90625c6.128906 1.222657 11.878906 3.605469 17.109375 7.09375l3.867187 2.578126 7.574219-3.800782 3.160156 3.160156-3.792969 7.589844 2.578126 3.859375c3.488281 5.214844 5.871093 10.972657 7.09375 17.109375l.914062 4.554688 8.03125 2.679687v4.46875l-8.03125 2.671875-.914062 4.554688c-1.222657 6.128906-3.613282 11.878906-7.09375 17.109375l-2.578126 3.859375 3.792969 7.582031-3.160156 3.167969-7.574219-3.800782-3.867187 2.578126c-5.222657 3.488281-10.980469 5.863281-17.109375 7.09375zm0 0\"></path><path d=\"m104 72c-17.648438 0-32 14.351562-32 32s14.351562 32 32 32 32-14.351562 32-32-14.351562-32-32-32zm0 48c-8.824219 0-16-7.175781-16-16s7.175781-16 16-16 16 7.175781 16 16-7.175781 16-16 16zm0 0\"></path><path d=\"m160 248v-40h48v-208h-208v208h106.664062zm-144-232h176v176h-48v24l-32-24h-96zm0 0\"></path><path d=\"m0 272h16v16h-16zm0 0\"></path><path d=\"m32 272h16v16h-16zm0 0\"></path><path d=\"m64 272h16v16h-16zm0 0\"></path><path d=\"m32 304h16v16h-16zm0 0\"></path><path d=\"m64 304h16v16h-16zm0 0\"></path><path d=\"m0 480h16v16h-16zm0 0\"></path><path d=\"m32 480h16v16h-16zm0 0\"></path><path d=\"m64 480h16v16h-16zm0 0\"></path><path d=\"m32 448h16v16h-16zm0 0\"></path><path d=\"m64 448h16v16h-16zm0 0\"></path></svg>				\n									<h5>\n							fokus på kvalitet og detaljer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m469.12 408.93-67.26-33.63v-22.13c10.71-7.69 18.6-19.07 21.78-32.27h5.28c8.81 0 15.98-7.17 15.98-15.98v-5.29c0-6.35-3.74-11.84-9.12-14.41 5.19-18.64-1.65-39.76-19.44-59.78-12.58-14.16-30.67-22.27-49.62-22.27-18.93 0-37.01 8.12-49.59 22.27-13.38 15.05-20.95 41.01-14.03 59.62-5.56 2.5-9.45 8.09-9.45 14.57v5.29c0 8.81 7.17 15.98 15.98 15.98h5.55c3.16 13.09 10.94 24.39 21.51 32.08v22.32l-67.26 33.63c-16.7 5.87-27.89 21.6-27.89 39.28v41.63c0 3.31 2.69 6 6 6h243.46c3.31 0 6-2.69 6-6v-41.63c0-17.68-11.19-33.41-27.88-39.28zm-62.24-17.7-15.83 27.66-13.29-13.29 19.29-19.29zm-37.61 5.88-20.59-20.58v-16.91c6.41 2.57 13.4 4.01 20.72 4.01 7.22 0 14.11-1.39 20.45-3.9v16.8zm63.63-97.48v5.29c0 2.16-1.82 3.98-3.98 3.98h-3.74c.01-.36.03-.71.03-1.07v-12.18h3.71c2.15-.01 3.98 1.82 3.98 3.98zm-119.29 8.2v1.07h-3.98c-2.16 0-3.98-1.82-3.98-3.98v-5.29c0-2.16 1.82-3.98 3.98-3.98l3.98.22zm1.95-24.19c-7.33-13.69-.89-37.39 10.53-50.24 10.31-11.6 25.12-18.25 40.63-18.25 15.52 0 30.34 6.65 40.65 18.25 8.43 9.48 21.3 27.59 17.4 46.39-5.66-.35-10.67-2.55-14.4-6.36-5.37-5.49-7.72-14-6.63-23.94.29-2.62-1.17-5.13-3.6-6.17s-5.25-.37-6.95 1.65c-19.33 22.92-45.95 36.76-73.9 38.68h-3.73zm10.05 24.19v-12.73c24.57-2.92 47.92-14.05 66.73-31.8 1.43 7.26 4.63 13.6 9.45 18.52 3.27 3.35 7.14 5.89 11.41 7.58v18.42c0 24.15-19.65 43.8-43.8 43.8s-43.79-19.64-43.79-43.79zm15.89 78.48 19.29 19.29-13.29 13.29-15.84-27.66zm3.22 97.53h-39.42v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.76v-35.63c0-12.68 8.1-23.95 20.15-28.05.26-.09.51-.19.75-.31l46.47-23.23 20.07 35.06c.93 1.62 2.56 2.72 4.41 2.97.27.04.53.05.79.05 1.58 0 3.11-.62 4.24-1.76l.14-.14zm12.08 0 7.41-64.69 5.06-5.06 4.84 4.84 7.86 64.92h-25.17zm128.2 0h-39.76v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.18l-6.2-51.17.25.25c1.13 1.13 2.66 1.76 4.24 1.76.26 0 .53-.02.79-.05 1.85-.25 3.48-1.34 4.41-2.97l20.07-35.06 46.47 23.23c.24.12.49.23.75.31 12.05 4.1 20.15 15.38 20.15 28.05v35.65zm-67.04-346.65h-10.84l28.38 39.84 28.38-39.84h-10.84c-3.31 0-6-2.69-6-6v-64.58h-98.7c-3.31 0-6-2.69-6-6s2.69-6 6-6h104.7c3.31 0 6 2.69 6 6v64.58h16.48c2.25 0 4.3 1.25 5.33 3.25s.86 4.4-.45 6.23l-40.02 56.18c-1.13 1.58-2.95 2.52-4.89 2.52s-3.76-.94-4.89-2.52l-40.02-56.18c-1.3-1.83-1.48-4.23-.45-6.23s3.09-3.25 5.33-3.25h16.48v-23.5h-65.38c-3.31 0-6-2.69-6-6s2.69-6 6-6h71.38c3.31 0 6 2.69 6 6v35.5c.02 3.31-2.67 6-5.98 6zm-118.44 50.65v-133.26c0-21.18-17.23-38.41-38.41-38.41h-207.7c-21.18-.01-38.41 17.23-38.41 38.41v133.26c0 21.18 17.23 38.41 38.41 38.41h105.8l64.8 55.11c1.11.94 2.49 1.43 3.89 1.43.85 0 1.71-.18 2.52-.55 2.12-.98 3.48-3.11 3.48-5.45v-50.54h27.21c21.18 0 38.41-17.23 38.41-38.41zm-71.62 26.41c-3.31 0-6 2.69-6 6v43.56l-56.59-48.13c-1.08-.92-2.46-1.43-3.89-1.43h-108.01c-14.56 0-26.41-11.85-26.41-26.41v-133.26c0-14.56 11.85-26.41 26.41-26.41h207.69c14.56 0 26.41 11.85 26.41 26.41v133.26c0 14.56-11.85 26.41-26.41 26.41zm-156.34-87.87h56.97c3.31 0 6-2.69 6-6v-39.2l8.55-8.55c2.34-2.34 2.34-6.14 0-8.49-2.34-2.34-6.14-2.34-8.48 0l-.7.7c-.98-1.97-3.01-3.32-5.36-3.32h-56.98c-3.31 0-6 2.69-6 6v52.85c0 3.32 2.69 6.01 6 6.01zm6-52.86h44.97v2.69l-18.16 18.16-8.84-8.84c-2.34-2.34-6.14-2.34-8.49 0-2.34 2.34-2.34 6.14 0 8.49l13.08 13.08c1.17 1.17 2.71 1.76 4.24 1.76s3.07-.59 4.24-1.76l13.92-13.92v21.2h-44.96zm173.62 3.08c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 31.92c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 36.52c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.68 5.99 6zm0 31.92c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.69 5.99 6zm-119.36 165.01h10.84l-28.38-39.84-28.38 39.84h10.84c3.31 0 6 2.69 6 6v64.58h98.7c3.31 0 6 2.69 6 6s-2.69 6-6 6h-104.69c-3.31 0-6-2.69-6-6v-64.58h-16.48c-2.25 0-4.3-1.25-5.33-3.25s-.86-4.4.45-6.23l40.02-56.18c1.13-1.58 2.95-2.52 4.89-2.52s3.76.94 4.89 2.52l40.02 56.18c1.3 1.83 1.48 4.23.45 6.23s-3.09 3.25-5.33 3.25h-16.48v23.5h65.38c3.31 0 6 2.69 6 6s-2.69 6-6 6h-71.38c-3.31 0-6-2.69-6-6v-35.5c-.03-3.31 2.66-6 5.97-6z\"></path></svg>				\n									<h5>\n							ærlig<br> rådgivning						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 510 510\"><path d=\"m192.036 385.845c-4.787-46.972-19.459-64.336-30.658-82.352-8.672-13.951-15.5-28.245-15.5-54.252 0-60.242 48.865-109.109 109.135-109.109 60.242 0 109.109 48.866 109.109 109.109 0 26.007-6.828 40.301-15.5 54.252-11.199 18.016-25.871 35.38-30.658 82.352 9.985 2.864 17.345 12.101 17.345 22.975v36.44c0 13.109-10.747 23.866-23.893 23.866h-10.334v9.945c0 12.588-10.341 22.929-22.93 22.929h-46.304c-12.589 0-22.93-10.341-22.93-22.929v-9.945h-10.334c-13.146 0-23.893-10.757-23.893-23.866v-36.44c0-10.874 7.36-20.111 17.345-22.975zm111.948-.917c4.199-42.194 15.78-62.332 26.488-79.049 10.147-15.842 19.65-28.207 19.65-56.638 0-52.513-42.597-95.109-95.109-95.109-52.537 0-95.135 42.596-95.135 95.109 0 28.431 9.503 40.796 19.65 56.638 10.708 16.717 22.289 36.855 26.488 79.049zm2.554-78.61c-1.175 13.701-11.985 24.191-24.783 24.191-13.527 0-24.862-12.086-24.862-26.673v-99.328c0-14.12 11.335-26.673 24.862-26.673 11.309 0 21.031 8.139 23.975 19.497 9.12 3.904 15.688 13.438 15.688 24.78 0 1.153-.068 2.289-.201 3.403 5.078 5.326 8.283 12.802 8.283 21.117 0 6.39-1.889 12.262-5.06 17.053 1.996 4.099 3.13 8.773 3.13 13.76 0 14.1-9.065 25.697-21.032 28.873zm-16.452-109.977c-1.964-2.729-4.916-4.506-8.331-4.506-6.192 0-10.862 6.21-10.862 12.673v99.328c0 6.677 4.67 12.673 10.862 12.673 5.516 0 9.822-4.614 10.717-10.425-4.709-1.416-8.923-4.144-12.279-7.814-2.607-2.852-2.409-7.283.443-9.89 2.851-2.607 7.282-2.408 9.889.443 2.416 2.642 5.72 4.356 9.402 4.356 7.733 0 13.643-7.218 13.643-15.734s-5.91-15.734-13.643-15.734c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7 5.352 0 10.388 1.655 14.658 4.533.593-1.743.915-3.634.915-5.612 0-2.11-.366-4.128-1.036-5.972-.769.858-1.588 1.66-2.453 2.397-2.94 2.507-7.361 2.156-9.869-.784-2.507-2.939-2.155-7.361.784-9.868 2.773-2.365 4.492-6.122 4.492-10.293 0-6.072-3.705-11.374-8.898-12.467-.154-.023-.307-.052-.458-.085-.499-.08-1.01-.121-1.532-.121-2.947 0-5.591 1.389-7.515 3.525-2.585 2.87-7.015 3.101-9.886.515-2.87-2.586-3.101-7.015-.515-9.886 3.111-3.453 7.059-5.988 11.472-7.252zm-104.526 67.344c-3.171-4.791-5.06-10.663-5.06-17.053 0-8.307 3.198-15.777 8.284-21.104-.133-1.118-.202-2.258-.202-3.416 0-11.354 6.582-20.897 15.717-24.792 2.948-11.354 12.67-19.485 23.946-19.485 13.56 0 24.888 12.555 24.888 26.673v99.328c0 14.585-11.328 26.673-24.888 26.673-12.765 0-23.578-10.484-24.757-24.184-11.98-3.166-21.058-14.769-21.058-28.88 0-4.987 1.134-9.661 3.13-13.76zm9.982-23.036c-.675 1.847-1.042 3.869-1.042 5.983 0 1.978.322 3.869.915 5.612 4.27-2.878 9.306-4.533 14.658-4.533 3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7-7.733 0-13.643 7.218-13.643 15.734s5.91 15.734 13.643 15.734c3.682 0 6.986-1.714 9.402-4.356 2.607-2.851 7.038-3.05 9.889-.443 2.852 2.607 3.05 7.038.443 9.89-3.35 3.664-7.556 6.389-12.255 7.807.891 5.813 5.192 10.432 10.693 10.432 6.21 0 10.888-5.993 10.888-12.673v-99.328c0-6.466-4.678-12.673-10.888-12.673-3.404 0-6.349 1.777-8.309 4.507 4.421 1.264 8.367 3.8 11.476 7.251 2.586 2.871 2.355 7.3-.516 9.886-2.87 2.586-7.3 2.355-9.886-.515-1.926-2.138-4.574-3.525-7.54-3.525-.493 0-.976.037-1.448.108-.196.045-.395.082-.596.11-5.165 1.118-8.844 6.404-8.844 12.455 0 1.243.153 2.45.442 3.594.101.284.183.572.246.862.748 2.326 2.071 4.346 3.814 5.823 2.947 2.498 3.311 6.919.813 9.866s-6.919 3.312-9.866.814c-.878-.745-1.71-1.554-2.489-2.422zm3.042 158.279c-5.442 0-9.893 4.451-9.893 9.892v36.44c0 5.423 4.454 9.866 9.893 9.866h17.334c3.866 0 7 3.134 7 7v16.945c0 4.902 4.027 8.929 8.93 8.929h46.304c4.903 0 8.93-4.027 8.93-8.929v-16.945c0-3.866 3.134-7 7-7h17.334c5.439 0 9.893-4.443 9.893-9.866v-36.44c0-5.441-4.451-9.892-9.893-9.892zm63.416-314.093 2.907-5.412c1.828-3.403 6.075-4.683 9.479-2.854 3.403 1.828 4.682 6.075 2.854 9.479l-16.073 29.925c-1.22 2.271-3.589 3.688-6.167 3.688s-4.947-1.417-6.167-3.688l-16.073-29.925c-1.828-3.404-.549-7.651 2.854-9.479 3.404-1.829 7.651-.549 9.479 2.854l2.907 5.412v-69.835c0-3.863 3.137-7 7-7s7 3.137 7 7zm-132.198 54.758-49.381-49.381c-2.732-2.731-2.732-7.167 0-9.899s7.168-2.732 9.9 0l49.38 49.38-1.771-5.881c-1.114-3.7.985-7.608 4.684-8.722 3.7-1.114 7.607.985 8.721 4.685l9.796 32.526c.743 2.468.069 5.145-1.753 6.968-1.823 1.823-4.5 2.496-6.969 1.753l-32.526-9.795c-3.699-1.114-5.798-5.022-4.684-8.721s5.022-5.798 8.721-4.684zm-44.859 122.299h-69.835c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7h69.835l-5.412-2.907c-3.403-1.828-4.682-6.076-2.854-9.479 1.828-3.404 6.075-4.683 9.479-2.855l29.926 16.074c2.271 1.22 3.688 3.589 3.688 6.167 0 2.577-1.417 4.947-3.688 6.166l-29.926 16.074c-3.404 1.828-7.651.549-9.479-2.855-1.828-3.403-.549-7.651 2.854-9.479zm54.758 118.198-49.38 49.38c-2.732 2.732-7.168 2.732-9.9 0s-2.732-7.167 0-9.899l49.381-49.381-5.882 1.772c-3.699 1.114-7.607-.985-8.721-4.685-1.114-3.699.985-7.607 4.684-8.721l32.526-9.795c2.469-.743 5.146-.07 6.969 1.753 1.822 1.823 2.496 4.5 1.753 6.968l-9.796 32.527c-1.114 3.699-5.021 5.798-8.721 4.684-3.699-1.114-5.798-5.022-4.684-8.721zm240.497-240.497 5.882-1.771c3.699-1.114 7.607.985 8.721 4.684s-.985 7.607-4.684 8.721l-32.526 9.795c-2.469.743-5.146.07-6.969-1.753-1.822-1.823-2.496-4.5-1.753-6.968l9.796-32.526c1.114-3.7 5.021-5.799 8.721-4.685 3.699 1.114 5.798 5.022 4.684 8.722l-1.771 5.881 49.38-49.38c2.732-2.732 7.168-2.732 9.9 0s2.732 7.168 0 9.899zm44.859 122.299 5.412 2.906c3.403 1.828 4.682 6.076 2.854 9.479-1.828 3.404-6.075 4.683-9.479 2.855l-29.926-16.074c-2.271-1.219-3.688-3.589-3.688-6.166 0-2.578 1.417-4.947 3.688-6.167l29.926-16.074c3.404-1.828 7.651-.549 9.479 2.855 1.828 3.403.549 7.651-2.854 9.479l-5.412 2.907h69.835c3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7zm-54.758 118.198 1.771 5.882c1.114 3.699-.985 7.607-4.684 8.721-3.7 1.114-7.607-.985-8.721-4.684l-9.796-32.527c-.743-2.468-.069-5.145 1.753-6.968 1.823-1.823 4.5-2.496 6.969-1.753l32.526 9.795c3.699 1.114 5.798 5.022 4.684 8.721-1.114 3.7-5.022 5.799-8.721 4.685l-5.882-1.772 49.381 49.381c2.732 2.732 2.732 7.167 0 9.899s-7.168 2.732-9.9 0z\"></path></svg>				\n									<h5>\n							gennemtænkte løsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"outline\"><path d=\"M486.41,144A28,28,0,0,0,472,92H349.123l5.457-21.828a48.513,48.513,0,0,0-12.848-46.153A41.035,41.035,0,0,0,312.609,12H308a8.009,8.009,0,0,0-8,8V47.413l-19.233,64.112A17.376,17.376,0,0,1,268,123.539V112a4,4,0,0,0-4-4H152a4,4,0,0,0-4,4v72a4,4,0,0,0,8,0V116h72V276H156V248a4,4,0,0,0-8,0v32a4,4,0,0,0,4,4H264a4,4,0,0,0,4-4V268.5h11.168A37.07,37.07,0,0,1,305.092,279a45.025,45.025,0,0,0,31.48,12.752L440,292a27.987,27.987,0,0,0,19.369-48.2,27.987,27.987,0,0,0,16-48A28,28,0,0,0,486.41,144ZM260,276H236V116h24Zm212-88H396a4,4,0,0,0,0,8h60a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h40a20,20,0,0,1,.01,40l-103.428-.25a37.07,37.07,0,0,1-25.924-10.5,45.031,45.031,0,0,0-31.49-12.752H268V131.686a25.317,25.317,0,0,0,20.429-17.862l19.4-64.675A4,4,0,0,0,308,48V20h4.609a33.082,33.082,0,0,1,23.481,9.69,40.507,40.507,0,0,1,10.728,38.541l-6.7,26.8A4,4,0,0,0,344,100H472a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h72a20,20,0,0,1,0,40Z\"></path><path d=\"M194.5,183.243l-1.9-.217a4,4,0,0,0-4.169,2.491L184.29,195.9H135.278l-3.539-9.317a4,4,0,0,0-7.478,2.84l2.459,6.477h-8.474L68.452,156.872a4,4,0,1,0-4.935,6.3L77.6,174.209,56.961,194.48l-6.636-5.491a4,4,0,1,0-5.1,6.163L87.219,229.9a44.1,44.1,0,0,0,28.05,10.1H212a8.009,8.009,0,0,0,8-8V203.9a8.009,8.009,0,0,0-8-8h-8v-2.01A10.708,10.708,0,0,0,194.5,183.243ZM212,203.9V232H115.269a36.081,36.081,0,0,1-22.951-8.264l-29.16-24.128,20.8-20.422L114.4,203.045a4,4,0,0,0,2.468.852H187a4,4,0,0,0,3.715-2.517l3.929-9.843a2.712,2.712,0,0,1,1.356,2.35v6.01a4,4,0,0,0,4,4Z\"></path><path d=\"M223.084,484.672,200.87,469.863V346.36A44.1,44.1,0,0,0,195.327,325l-17.183-30.94a4,4,0,0,0-7,3.884l17.184,30.94a36.073,36.073,0,0,1,4.537,17.478V468H164.333a4,4,0,1,0,0,8h31.321l12,8H152.865V352a4,4,0,0,0-.358-1.655l-25.454-56A4,4,0,0,0,123.411,292H114.2a4,4,0,0,0-3.945,4.658l8.862,53.175a36.016,36.016,0,0,1-1.951,18.949L78.642,468H48.333a4,4,0,1,0,0,8H80.377L92,484H32.088L76.63,361.366a4.017,4.017,0,0,0,.183-2.044L61.1,268H136a4,4,0,0,0,0-8H59.233L30.555,173.966A19.723,19.723,0,0,1,49.27,148H76a12,12,0,0,0,24,0h15.2a21.975,21.975,0,0,1,8.395,1.652l10.889,4.458a4,4,0,1,0,3.032-7.4L126.63,142.25A29.938,29.938,0,0,0,115.2,140H100v-4.527A16.014,16.014,0,0,0,112,120V103.473A16.014,16.014,0,0,0,124,88V80a4,4,0,0,0-4-4H90A22.025,22.025,0,0,0,68,98v18a12.02,12.02,0,0,0,8,11.314V140H49.27a27.723,27.723,0,0,0-26.305,36.5l29.493,88.482,16.29,94.655-46.128,127A4,4,0,0,0,26.38,492h78.485a4,4,0,0,0,2.268-7.3L86.3,470.368l38.318-98.69a44.018,44.018,0,0,0,2.385-23.16L118.921,300h1.914l24.03,52.867V488a4,4,0,0,0,4,4h72a4,4,0,0,0,2.219-7.328ZM76,98A14.015,14.015,0,0,1,90,84h26v4a8.009,8.009,0,0,1-8,8H92a4,4,0,0,0-4,4,11.962,11.962,0,0,1-1.53,5.881A12.044,12.044,0,0,0,76,104.686Zm4,14a3.981,3.981,0,0,1,3.407,1.9,4,4,0,0,0,5.956.975c.207-.171.7-.648.7-.648.032-.028.061-.057.09-.087A19.907,19.907,0,0,0,95.6,104H104v16a8.009,8.009,0,0,1-8,8,12.133,12.133,0,0,1-2.681-.3,4,4,0,1,0-1.775,7.8c.151.035.3.06.456.091V148a4,4,0,1,1-8,0V124a4,4,0,0,0-4-4,4,4,0,0,1,0-8Z\"></path></g></svg>				\n									<h5>\n							arbejde udført med ansvar						\n					</h5>\n				<p>Vi lover ikke mere, end vi kan holde – men vi holder det, vi lover.</p>			<h2>KONTAKT OS</h2>		<p>Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.</p>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 14:41:47', '2026-01-26 14:41:47', '', 10, 'https://mrarif.me/cpnordic/?p=649', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(650, 1, '2026-01-26 14:44:17', '2026-01-26 14:44:17', '', 'TØMRERARBEJDE', '', 'inherit', 'closed', 'closed', '', '640-revision-v1', '', '', '2026-01-26 14:44:17', '2026-01-26 14:44:17', '', 640, 'https://mrarif.me/cpnordic/?p=650', 0, 'revision', '', 0),
(651, 1, '2026-01-26 14:44:17', '2026-01-26 14:44:17', '', 'TØMRERARBEJDE', '', 'inherit', 'closed', 'closed', '', '640-revision-v1', '', '', '2026-01-26 14:44:17', '2026-01-26 14:44:17', '', 640, 'https://mrarif.me/cpnordic/?p=651', 0, 'revision', '', 0),
(652, 1, '2026-01-26 14:44:17', '2026-01-26 14:44:17', '<h5>\n						Terrasser					</h5>\n									<h5>\n						Totalrenoveringer					</h5>\n									<h5>\n						Tilbygninger					</h5>\n									<h5>\n						Carporte					</h5>\n									<h5>\n						Udskiftning og montering af døre og vinduer					</h5>\n									<h5>\n						Specialtilpassede løsninger					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>Terrasser</h2>		<p>Terrasser er et af vores kerneområder. Vi lægger stor vægt på korrekt opbygning, stabilitet og finish, da det er afgørende for både holdbarhed og udseende.</p><p>Vi arbejder gerne med hårdttræsterrasser og foretrækker træsorter som cumaru, ipé og thermobehandlet træ, da disse materialer har:</p>					<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										høj naturlig holdbarhed\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										god modstandsdygtighed over for fugt\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										et flot og tidløst udtryk\n									</li>\n						</ul>\n				<p>Med korrekt montage giver disse træsorter terrasser, der ældes pænt og kræver minimal vedligeholdelse.</p><p>Vi rådgiver altid om materialevalg, opbygning og vedligeholdelse, så løsningen passer til både huset, omgivelserne og kundens behov.</p>', 'TØMRERARBEJDE', '', 'inherit', 'closed', 'closed', '', '640-revision-v1', '', '', '2026-01-26 14:44:17', '2026-01-26 14:44:17', '', 640, 'https://mrarif.me/cpnordic/?p=652', 0, 'revision', '', 0),
(653, 1, '2026-01-26 14:44:32', '2026-01-26 14:44:32', '<h5>\n						Terrasser					</h5>\n									<h5>\n						Totalrenoveringer					</h5>\n									<h5>\n						Tilbygninger					</h5>\n									<h5>\n						Carporte					</h5>\n									<h5>\n						Udskiftning og montering af døre og vinduer					</h5>\n									<h5>\n						Carporte					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>Terrasser</h2>		<p>Terrasser er et af vores kerneområder. Vi lægger stor vægt på korrekt opbygning, stabilitet og finish, da det er afgørende for både holdbarhed og udseende.</p><p>Vi arbejder gerne med hårdttræsterrasser og foretrækker træsorter som cumaru, ipé og thermobehandlet træ, da disse materialer har:</p>					<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										høj naturlig holdbarhed\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										god modstandsdygtighed over for fugt\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										et flot og tidløst udtryk\n									</li>\n						</ul>\n				<p>Med korrekt montage giver disse træsorter terrasser, der ældes pænt og kræver minimal vedligeholdelse.</p><p>Vi rådgiver altid om materialevalg, opbygning og vedligeholdelse, så løsningen passer til både huset, omgivelserne og kundens behov.</p>', 'Tjenester', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-01-26 14:44:32', '2026-01-26 14:44:32', '', 12, 'https://mrarif.me/cpnordic/?p=653', 0, 'revision', '', 0),
(654, 1, '2026-01-26 14:44:32', '2026-01-26 14:44:32', '<h5>\n						Terrasser					</h5>\n									<h5>\n						Totalrenoveringer					</h5>\n									<h5>\n						Tilbygninger					</h5>\n									<h5>\n						Carporte					</h5>\n									<h5>\n						Udskiftning og montering af døre og vinduer					</h5>\n									<h5>\n						Carporte					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>Terrasser</h2>		<p>Terrasser er et af vores kerneområder. Vi lægger stor vægt på korrekt opbygning, stabilitet og finish, da det er afgørende for både holdbarhed og udseende.</p><p>Vi arbejder gerne med hårdttræsterrasser og foretrækker træsorter som cumaru, ipé og thermobehandlet træ, da disse materialer har:</p>					<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										høj naturlig holdbarhed\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										god modstandsdygtighed over for fugt\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										et flot og tidløst udtryk\n									</li>\n						</ul>\n				<p>Med korrekt montage giver disse træsorter terrasser, der ældes pænt og kræver minimal vedligeholdelse.</p><p>Vi rådgiver altid om materialevalg, opbygning og vedligeholdelse, så løsningen passer til både huset, omgivelserne og kundens behov.</p>', 'Tjenester', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-01-26 14:44:32', '2026-01-26 14:44:32', '', 12, 'https://mrarif.me/cpnordic/?p=654', 0, 'revision', '', 0),
(677, 1, '2026-01-26 14:57:50', '2026-01-26 14:57:50', '<h5>\n						TØMRERARBEJDE					</h5>\n									<h5>\n						TAGDÆKNING					</h5>\n							<h2>Vores tjenester</h2>', 'Tjenester', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-01-26 14:57:50', '2026-01-26 14:57:50', '', 12, 'https://mrarif.me/cpnordic/?p=677', 0, 'revision', '', 0),
(655, 1, '2026-01-26 14:44:33', '2026-01-26 14:44:33', '<h5>\n						Terrasser					</h5>\n									<h5>\n						Totalrenoveringer					</h5>\n									<h5>\n						Tilbygninger					</h5>\n									<h5>\n						Carporte					</h5>\n									<h5>\n						Udskiftning og montering af døre og vinduer					</h5>\n									<h5>\n						Specialtilpassede løsninger					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>Terrasser</h2>		<p>Terrasser er et af vores kerneområder. Vi lægger stor vægt på korrekt opbygning, stabilitet og finish, da det er afgørende for både holdbarhed og udseende.</p><p>Vi arbejder gerne med hårdttræsterrasser og foretrækker træsorter som cumaru, ipé og thermobehandlet træ, da disse materialer har:</p>					<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										høj naturlig holdbarhed\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										god modstandsdygtighed over for fugt\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										et flot og tidløst udtryk\n									</li>\n						</ul>\n				<p>Med korrekt montage giver disse træsorter terrasser, der ældes pænt og kræver minimal vedligeholdelse.</p><p>Vi rådgiver altid om materialevalg, opbygning og vedligeholdelse, så løsningen passer til både huset, omgivelserne og kundens behov.</p>', 'Tjenester', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-01-26 14:44:33', '2026-01-26 14:44:33', '', 12, 'https://mrarif.me/cpnordic/?p=655', 0, 'revision', '', 0),
(656, 1, '2026-01-26 14:47:06', '2026-01-26 14:47:06', '', 'TAGDÆKNING', '', 'inherit', 'closed', 'closed', '', '642-revision-v1', '', '', '2026-01-26 14:47:06', '2026-01-26 14:47:06', '', 642, 'https://mrarif.me/cpnordic/?p=656', 0, 'revision', '', 0),
(657, 1, '2026-01-26 14:47:06', '2026-01-26 14:47:06', '', 'TAGDÆKNING', '', 'inherit', 'closed', 'closed', '', '642-revision-v1', '', '', '2026-01-26 14:47:06', '2026-01-26 14:47:06', '', 642, 'https://mrarif.me/cpnordic/?p=657', 0, 'revision', '', 0),
(658, 1, '2026-01-26 14:47:06', '2026-01-26 14:47:06', '<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>', 'TAGDÆKNING', '', 'inherit', 'closed', 'closed', '', '642-revision-v1', '', '', '2026-01-26 14:47:06', '2026-01-26 14:47:06', '', 642, 'https://mrarif.me/cpnordic/?p=658', 0, 'revision', '', 0),
(659, 1, '2026-01-26 14:47:14', '2026-01-26 14:47:14', '<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>', 'TAGDÆKNING', '', 'inherit', 'closed', 'closed', '', '642-revision-v1', '', '', '2026-01-26 14:47:14', '2026-01-26 14:47:14', '', 642, 'https://mrarif.me/cpnordic/?p=659', 0, 'revision', '', 0),
(660, 1, '2026-01-26 14:47:14', '2026-01-26 14:47:14', '<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>', 'TAGDÆKNING', '', 'inherit', 'closed', 'closed', '', '642-revision-v1', '', '', '2026-01-26 14:47:14', '2026-01-26 14:47:14', '', 642, 'https://mrarif.me/cpnordic/?p=660', 0, 'revision', '', 0),
(661, 1, '2026-01-26 14:47:14', '2026-01-26 14:47:14', '<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>', 'TAGDÆKNING', '', 'inherit', 'closed', 'closed', '', '642-revision-v1', '', '', '2026-01-26 14:47:14', '2026-01-26 14:47:14', '', 642, 'https://mrarif.me/cpnordic/?p=661', 0, 'revision', '', 0),
(662, 1, '2026-01-26 14:48:12', '2026-01-26 14:48:12', '<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>', 'TAGDÆKNING', '', 'inherit', 'closed', 'closed', '', '642-revision-v1', '', '', '2026-01-26 14:48:12', '2026-01-26 14:48:12', '', 642, 'https://mrarif.me/cpnordic/?p=662', 0, 'revision', '', 0),
(663, 1, '2026-01-26 14:48:12', '2026-01-26 14:48:12', '<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>', 'TAGDÆKNING', '', 'inherit', 'closed', 'closed', '', '642-revision-v1', '', '', '2026-01-26 14:48:12', '2026-01-26 14:48:12', '', 642, 'https://mrarif.me/cpnordic/?p=663', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(664, 1, '2026-01-26 14:48:12', '2026-01-26 14:48:12', '<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>SPECIALLØSNINGER</h2>		<p>Vi har en særlig interesse for opgaver, der kræver noget ekstra. Når standardløsninger ikke passer, finder vi løsninger, der gør.</p>			<h5>Det kan være:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										teknisk krævende detaljer\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										specialtilpassede konstruktioner\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										samspil mellem flere materialer\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										løsninger, der kræver ekstra omtanke\n									</li>\n						</ul>\n				<p>Her kommer vores faglighed og erfaring virkelig i spil.</p>', 'TAGDÆKNING', '', 'inherit', 'closed', 'closed', '', '642-revision-v1', '', '', '2026-01-26 14:48:12', '2026-01-26 14:48:12', '', 642, 'https://mrarif.me/cpnordic/?p=664', 0, 'revision', '', 0),
(665, 1, '2026-01-26 14:50:13', '2026-01-26 14:50:13', '<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>SPECIALLØSNINGER</h2>		<p>Vi har en særlig interesse for opgaver, der kræver noget ekstra. Når standardløsninger ikke passer, finder vi løsninger, der gør.</p>			<h5>Det kan være:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										teknisk krævende detaljer\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										specialtilpassede konstruktioner\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										samspil mellem flere materialer\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										løsninger, der kræver ekstra omtanke\n									</li>\n						</ul>\n				<p>Her kommer vores faglighed og erfaring virkelig i spil.</p>', 'TAGDÆKNING', '', 'inherit', 'closed', 'closed', '', '642-revision-v1', '', '', '2026-01-26 14:50:13', '2026-01-26 14:50:13', '', 642, 'https://mrarif.me/cpnordic/?p=665', 0, 'revision', '', 0),
(666, 1, '2026-01-26 14:50:13', '2026-01-26 14:50:13', '<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>SPECIALLØSNINGER</h2>		<p>Vi har en særlig interesse for opgaver, der kræver noget ekstra. Når standardløsninger ikke passer, finder vi løsninger, der gør.</p>			<h5>Det kan være:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										teknisk krævende detaljer\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										specialtilpassede konstruktioner\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										samspil mellem flere materialer\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										løsninger, der kræver ekstra omtanke\n									</li>\n						</ul>\n				<p>Her kommer vores faglighed og erfaring virkelig i spil.</p>', 'TAGDÆKNING', '', 'inherit', 'closed', 'closed', '', '642-revision-v1', '', '', '2026-01-26 14:50:13', '2026-01-26 14:50:13', '', 642, 'https://mrarif.me/cpnordic/?p=666', 0, 'revision', '', 0),
(667, 1, '2026-01-26 14:50:13', '2026-01-26 14:50:13', '<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>SPECIALLØSNINGER</h2>		<p>Vi har en særlig interesse for opgaver, der kræver noget ekstra. Når standardløsninger ikke passer, finder vi løsninger, der gør.</p>			<h5>Det kan være:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										teknisk krævende detaljer\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										specialtilpassede konstruktioner\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										samspil mellem flere materialer\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										løsninger, der kræver ekstra omtanke\n									</li>\n						</ul>\n				<p>Her kommer vores faglighed og erfaring virkelig i spil.</p>			<h2>KVALITET FREM FOR KVANTITET</h2>		<p>Vi tager bevidst et begrænset antal opgaver ad gangen. Det giver os mulighed for at:</p>					<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										bevare overblik\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										sikre høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										være tilgængelige for kunden\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										følge op på detaljerne\n									</li>\n						</ul>\n				<p>Vi tror på, at godt håndværk kræver tid og fokus.</p>', 'TAGDÆKNING', '', 'inherit', 'closed', 'closed', '', '642-revision-v1', '', '', '2026-01-26 14:50:13', '2026-01-26 14:50:13', '', 642, 'https://mrarif.me/cpnordic/?p=667', 0, 'revision', '', 0),
(668, 1, '2026-01-26 14:51:00', '2026-01-26 14:51:00', '<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle ANMELDELSER\n					</a>', 'ANMELDELSER', '', 'publish', 'closed', 'closed', '', 'anmeldelser', '', '', '2026-02-14 11:10:33', '2026-02-14 11:10:33', '', 0, 'https://mrarif.me/cpnordic/?page_id=668', 0, 'page', '', 0),
(669, 1, '2026-01-26 14:51:00', '2026-01-26 14:51:00', '', 'ANMELDELSER', '', 'inherit', 'closed', 'closed', '', '668-revision-v1', '', '', '2026-01-26 14:51:00', '2026-01-26 14:51:00', '', 668, 'https://mrarif.me/cpnordic/?p=669', 0, 'revision', '', 0),
(670, 1, '2026-02-14 12:14:17', '2026-01-26 14:51:15', ' ', '', '', 'publish', 'closed', 'closed', '', '670', '', '', '2026-02-14 12:14:17', '2026-02-14 12:14:17', '', 0, 'https://mrarif.me/cpnordic/?p=670', 5, 'nav_menu_item', '', 0),
(672, 1, '2026-01-26 14:52:03', '2026-01-26 14:52:03', '', 'ANMELDELSER', '', 'inherit', 'closed', 'closed', '', '668-revision-v1', '', '', '2026-01-26 14:52:03', '2026-01-26 14:52:03', '', 668, 'https://mrarif.me/cpnordic/?p=672', 0, 'revision', '', 0),
(673, 1, '2026-01-26 14:52:03', '2026-01-26 14:52:03', '<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle ANMELDELSER\n					</a>', 'ANMELDELSER', '', 'inherit', 'closed', 'closed', '', '668-revision-v1', '', '', '2026-01-26 14:52:03', '2026-01-26 14:52:03', '', 668, 'https://mrarif.me/cpnordic/?p=673', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(759, 1, '2026-02-14 12:09:50', '2026-02-14 12:09:50', '<h1>CP NORDIC ApS</h1>					<h4>Byggeri – Tømrerarbejde og tagdækning</h4>										<a href=\"https://mrarif.me/cpnordic/kontakt/\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS is run by two skilled craftsmen who completed their apprenticeships together in 2022. We are both 25 years old and share a strong passion for quality craftsmanship and long-lasting solutions.</p><p>We originally come from East Funen but are now based in Central Funen, from where we carry out work for both private and commercial clients. Our work ranges from carpentry and roofing to installation and specialized tasks, and we approach every project with professionalism, honesty, and attention to detail.</p>								<a href=\"https://mrarif.me/cpnordic/om-os/\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"https://mrarif.me/cpnordic/tomrerarbejde/\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>								<a href=\"https://mrarif.me/cpnordic/tagdaekning/\">\n									Lær mere\n					</a>\n									<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle ANMELDELSER\n					</a>\n					<h2>HVORFOR VÆLGE CP NORDIC ApS?</h2>		<p>Når du vælger CP NORDIC ApS, får du:</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 450 450\" width=\"512\"><g><g><path d=\"m225 165.2c-25.9 0-48.9-18.8-53.3-45.2-2.4-14.2.9-28.6 9.3-40.3 8.4-11.8 20.9-19.5 35.1-21.9 29.4-4.9 57.3 15 62.2 44.5 4.9 29.4-15 57.3-44.4 62.2-3 .5-6 .7-8.9.7zm-7.6-99.8c-12.2 2-22.9 8.7-30.1 18.8s-10.1 22.4-8 34.6c3.8 22.7 23.5 38.8 45.7 38.8 2.5 0 5.1-.2 7.6-.6 25.2-4.2 42.3-28.1 38.1-53.4s-28.1-42.4-53.3-38.2z\"></path><path d=\"m255.2 115c-2.1 0-3.8-1.7-3.8-3.8 0-14.6-11.8-26.4-26.4-26.4-2.1 0-3.8-1.7-3.8-3.8s1.7-3.8 3.8-3.8c18.8 0 34.1 15.3 34.1 34.1 0 2-1.8 3.7-3.9 3.7z\"></path><path d=\"m236.1 203h-22.2c-2.1 0-3.8-1.7-3.8-3.8v-14.1c-3.1-.6-6.1-1.4-9.1-2.4l-7 12.2c-1.1 1.8-3.4 2.5-5.3 1.4l-19.2-11.1c-.9-.5-1.5-1.4-1.8-2.3-.3-1-.1-2 .4-2.9l7-12.1c-2.4-2.1-4.6-4.3-6.7-6.6l-12.1 7c-1.8 1.1-4.2.4-5.2-1.4l-11.1-19.2c-1.1-1.8-.4-4.2 1.4-5.2l11.9-6.8c-1-3-1.9-6.1-2.6-9.3h-13.7c-2.1 0-3.8-1.7-3.8-3.8v-22.2c0-2.1 1.7-3.8 3.8-3.8h13.4c.6-3.2 1.4-6.4 2.4-9.5l-11.5-6.6c-1.8-1.1-2.5-3.4-1.4-5.3l11.1-19.6c.5-.9 1.4-1.5 2.3-1.8s2-.1 2.9.4l11.3 6.6c2.2-2.5 4.5-4.8 7-7l-6.5-11.3c-.5-.9-.6-1.9-.4-2.9.3-1 .9-1.8 1.8-2.3l19.2-11.1c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l6.4 11.2c3.1-1.1 6.4-1.9 9.7-2.6v-13c0-2.1 1.7-3.8 3.8-3.8h22.2c2.1 0 3.8 1.7 3.8 3.8v12.8c3.3.7 6.5 1.5 9.7 2.6l6.5-11.2c.5-.9 1.4-1.5 2.3-1.8 1-.3 2-.1 2.9.4l19.2 11.1c.9.5 1.5 1.3 1.8 2.3s.1 2-.4 2.9l-6.5 11.3c2.5 2.2 4.8 4.5 7 7.1l11.3-6.6c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l11.1 19.2c1.1 1.8.4 4.2-1.4 5.3l-11.5 6.6c1 3.1 1.8 6.3 2.5 9.5h13.6c2.1 0 3.8 1.7 3.8 3.8v22.2c0 2.1-1.7 3.8-3.8 3.8h-13.6c-.6 3.1-1.5 6.2-2.5 9.3l11.9 6.8c1.8 1.1 2.5 3.4 1.4 5.2l-11.2 19.5c-1.1 1.8-3.4 2.5-5.2 1.4l-12-7c-2.1 2.4-4.4 4.6-6.7 6.6l7 12.1c.5.9.6 1.9.4 2.9s-.9 1.8-1.8 2.3l-19.2 11.1c-1.8 1.1-4.2.4-5.2-1.4l-7-12.2c-3 1-6 1.8-9.1 2.4v14.1c-.2 2.3-2 4-4.1 4zm-18.4-7.7h14.5v-13.5c0-1.9 1.4-3.5 3.3-3.8 4.7-.7 9.4-2 13.8-3.7 1.8-.7 3.8 0 4.7 1.7l6.7 11.6 12.6-7.3-6.7-11.6c-1-1.6-.5-3.7.9-4.9 3.7-3 7.2-6.4 10.2-10.1 1.2-1.5 3.3-1.8 4.9-.9l11.5 6.6 7.3-12.6-11.3-6.5c-1.6-.9-2.4-3-1.6-4.7 1.8-4.5 3.1-9.2 3.9-14 .3-1.9 1.9-3.2 3.8-3.2h13v-14.6h-12.8c-1.9 0-3.5-1.4-3.8-3.3-.7-4.8-2-9.6-3.7-14.2-.7-1.8 0-3.7 1.7-4.7l10.9-6.3-7.3-12.6-10.8 6.3c-1.6.9-3.7.6-4.9-.9-3.1-3.9-6.6-7.4-10.4-10.6-1.5-1.2-1.9-3.3-.9-4.9l6.2-10.7-12.6-7.3-6.1 10.6c-1 1.6-3 2.3-4.7 1.7-4.6-1.8-9.5-3.1-14.4-3.9-1.9-.3-3.3-1.9-3.3-3.8v-12.2h-14.5v12.3c0 1.9-1.4 3.5-3.3 3.8-5 .8-9.8 2.1-14.4 3.9-1.8.7-3.8 0-4.7-1.7l-6.1-10.6-12.6 7.3 6.2 10.7c.9 1.6.6 3.7-.9 4.9-3.9 3.1-7.4 6.7-10.4 10.6-1.2 1.5-3.3 1.9-4.9.9l-10.8-6.3-7.3 12.6 10.9 6.3c1.6.9 2.3 2.9 1.7 4.7-1.7 4.6-3 9.4-3.7 14.2-.3 1.9-1.9 3.3-3.8 3.3h-12.8v14.5h13c1.9 0 3.5 1.4 3.8 3.2.8 4.8 2.1 9.5 3.9 14 .7 1.8 0 3.8-1.6 4.7l-11.3 6.5 7.3 12.6 11.5-6.6c1.6-.9 3.7-.6 4.9.9 3 3.7 6.5 7.1 10.3 10.1 1.5 1.2 1.9 3.3.9 4.9l-6.7 11.6 12.6 7.3 6.7-11.6c.9-1.6 2.9-2.3 4.7-1.7 4.5 1.7 9.1 2.9 13.8 3.7 1.9.3 3.3 1.9 3.3 3.8z\"></path></g><g><g><g><path d=\"m45.3 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m153.9 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path></g><g><path d=\"m189.3 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.2c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c0 2.1-1.7 3.8-3.8 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m73.3 326.4c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m126 326.4c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m99.7 325.6c-.6 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4s4.1 1.1 4.4 3.2c2.4 16.5 12.3 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m50.2 266.6c-.1 0-.2 0-.3 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.7 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-8.9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.5 2.2zm81.8-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13.1-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.4-.7 2.3-.7z\"></path></g></g></g><g><g><path d=\"m296.1 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m404.7 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path></g><g><path d=\"m440 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.1c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c.2 2.1-1.6 3.8-3.7 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m324 326.3c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m376.7 326.3c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m350.4 325.6c-.5 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4 2.1-.3 4 1.1 4.4 3.2 2.4 16.5 12.4 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m301 266.6c-.1 0-.2 0-.4 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.6 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.4 2.2zm81.7-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.5-.7 2.3-.7z\"></path></g></g></g></g></g></svg>				\n									<h5>\n							et ungt og engageret team						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"496pt\" viewBox=\"0 0 496 496\" width=\"496pt\"><path d=\"m440 328h-28.207031c5.078125-6.703125 8.207031-14.960938 8.207031-24 0-8.824219-7.175781-16-16-16h-12v-19.960938c59.574219-14.445312 104-68.085937 104-132.039062 0-74.992188-61.007812-136-136-136s-136 61.007812-136 136c0 63.953125 44.425781 117.59375 104 132.039062v19.960938h-8.449219c-6.167969 0-12.359375 1.464844-17.886719 4.214844l-50.480468 25.25c-3.320313 1.664062-7.03125 2.535156-10.734375 2.535156h-40.449219v-16h-104v16h56v56h16v-56h16v128h-16v-56h-16v56h-56v16h104v-16h40.449219c3.703125 0 7.414062.871094 10.734375 2.527344l34.488281 17.25c5.519531 2.757812 11.710937 4.222656 17.878906 4.222656h24.449219v24h64v-24h48c13.230469 0 24-10.769531 24-24 0-6.167969-2.40625-11.742188-6.238281-16 3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16 0-13.230469-10.769531-24-24-24zm8 24c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm-208-280c0-66.167969 53.832031-120 120-120s120 53.832031 120 120-53.832031 120-120 120-120-53.832031-120-120zm104 134.976562c5.257812.617188 10.574219 1.023438 16 1.023438s10.742188-.40625 16-1.023438v17.023438h-32zm-40.449219 185.023438c-3.703125 0-7.414062-.871094-10.734375-2.527344l-34.488281-17.25c-5.519531-2.757812-11.710937-4.222656-17.878906-4.222656h-40.449219v-96h40.449219c6.167969 0 12.359375-1.464844 17.886719-4.214844l50.480468-25.25c3.320313-1.664062 7.03125-2.535156 10.734375-2.535156h84.449219c0 13.230469-10.769531 24-24 24h-48.28125l-23.863281 35.808594c-6.101563 9.160156-14.527344 16.589844-24.367188 21.503906-8.753906 4.375-18.542969 6.6875-28.320312 6.6875h-15.167969v16h15.167969c12.246093 0 24.519531-2.894531 35.472656-8.375 12.328125-6.160156 22.878906-15.480469 30.527344-26.945312l6.832031-10.253907v93.574219zm40.449219 24v-136h17.472656c-.898437 2.511719-1.472656 5.183594-1.472656 8 0 6.167969 2.40625 11.742188 6.238281 16-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16 0 10.414062 6.710938 19.214844 16 22.527344v9.472656zm96-24h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8s-3.59375 8-8 8zm0 0\"></path><path d=\"m394.878906 73.007812-7.757812 13.984376c17.816406 9.878906 28.878906 28.664062 28.878906 49.007812h16c0-26.160156-14.222656-50.296875-37.121094-62.992188zm0 0\"></path><path d=\"m360 80c4.734375 0 9.449219.59375 14.007812 1.769531l3.976563-15.503906c-5.855469-1.496094-11.90625-2.265625-17.984375-2.265625zm0 0\"></path><path d=\"m360 48c48.519531 0 88 39.480469 88 88 0 20.753906-7.398438 40.910156-20.832031 56.785156l12.207031 10.34375c15.882812-18.761718 24.625-42.601562 24.625-67.128906 0-57.34375-46.65625-104-104-104-24.527344 0-48.367188 8.753906-67.128906 24.632812l10.335937 12.199219c15.871094-13.433593 36.039063-20.832031 56.792969-20.832031zm0 0\"></path><path d=\"m427.128906 215.367188-10.335937-12.199219c-15.871094 13.433593-36.039063 20.832031-56.792969 20.832031-48.519531 0-88-39.480469-88-88 0-20.753906 7.398438-40.910156 20.832031-56.785156l-12.207031-10.34375c-15.882812 18.761718-24.625 42.601562-24.625 67.128906 0 57.34375 46.65625 104 104 104 24.527344 0 48.367188-8.753906 67.128906-24.632812zm0 0\"></path><path d=\"m121.214844 165.640625c4.953125-1.375 9.695312-3.34375 14.183594-5.878906l9.769531 4.886719 19.472656-19.480469-4.886719-9.769531c2.535156-4.496094 4.503906-9.230469 5.886719-14.183594l10.359375-3.445313v-27.53125l-10.351562-3.453125c-1.375-4.953125-3.34375-9.707031-5.886719-14.183594l4.886719-9.777343-19.472657-19.472657-9.769531 4.886719c-4.484375-2.535156-9.230469-4.503906-14.183594-5.878906l-3.453125-10.359375h-27.539062l-3.445313 10.359375c-4.953125 1.375-9.695312 3.34375-14.183594 5.878906l-9.777343-4.886719-19.472657 19.472657 4.886719 9.777343c-2.535156 4.488282-4.503906 9.230469-5.886719 14.183594l-10.351562 3.445313v27.53125l10.351562 3.453125c1.375 4.953125 3.34375 9.695312 5.886719 14.183594l-4.886719 9.769531 19.472657 19.480469 9.769531-4.886719c4.484375 2.535156 9.230469 4.503906 14.183594 5.878906l3.453125 10.359375h27.539062zm-12.304688-13.679687-2.679687 8.039062h-4.460938l-2.679687-8.039062-4.554688-.90625c-6.128906-1.222657-11.878906-3.605469-17.109375-7.09375l-3.867187-2.578126-7.574219 3.800782-3.160156-3.167969 3.792969-7.582031-2.578126-3.859375c-3.488281-5.222657-5.871093-10.980469-7.09375-17.109375l-.914062-4.554688-8.03125-2.679687v-4.46875l8.03125-2.671875.914062-4.554688c1.222657-6.136718 3.613282-11.886718 7.09375-17.109375l2.578126-3.859375-3.792969-7.589844 3.160156-3.160156 7.574219 3.800782 3.867187-2.578126c5.222657-3.488281 10.980469-5.863281 17.109375-7.09375l4.554688-.90625 2.679687-8.039062h4.460938l2.679687 8.039062 4.554688.90625c6.128906 1.222657 11.878906 3.605469 17.109375 7.09375l3.867187 2.578126 7.574219-3.800782 3.160156 3.160156-3.792969 7.589844 2.578126 3.859375c3.488281 5.214844 5.871093 10.972657 7.09375 17.109375l.914062 4.554688 8.03125 2.679687v4.46875l-8.03125 2.671875-.914062 4.554688c-1.222657 6.128906-3.613282 11.878906-7.09375 17.109375l-2.578126 3.859375 3.792969 7.582031-3.160156 3.167969-7.574219-3.800782-3.867187 2.578126c-5.222657 3.488281-10.980469 5.863281-17.109375 7.09375zm0 0\"></path><path d=\"m104 72c-17.648438 0-32 14.351562-32 32s14.351562 32 32 32 32-14.351562 32-32-14.351562-32-32-32zm0 48c-8.824219 0-16-7.175781-16-16s7.175781-16 16-16 16 7.175781 16 16-7.175781 16-16 16zm0 0\"></path><path d=\"m160 248v-40h48v-208h-208v208h106.664062zm-144-232h176v176h-48v24l-32-24h-96zm0 0\"></path><path d=\"m0 272h16v16h-16zm0 0\"></path><path d=\"m32 272h16v16h-16zm0 0\"></path><path d=\"m64 272h16v16h-16zm0 0\"></path><path d=\"m32 304h16v16h-16zm0 0\"></path><path d=\"m64 304h16v16h-16zm0 0\"></path><path d=\"m0 480h16v16h-16zm0 0\"></path><path d=\"m32 480h16v16h-16zm0 0\"></path><path d=\"m64 480h16v16h-16zm0 0\"></path><path d=\"m32 448h16v16h-16zm0 0\"></path><path d=\"m64 448h16v16h-16zm0 0\"></path></svg>				\n									<h5>\n							fokus på kvalitet og detaljer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m469.12 408.93-67.26-33.63v-22.13c10.71-7.69 18.6-19.07 21.78-32.27h5.28c8.81 0 15.98-7.17 15.98-15.98v-5.29c0-6.35-3.74-11.84-9.12-14.41 5.19-18.64-1.65-39.76-19.44-59.78-12.58-14.16-30.67-22.27-49.62-22.27-18.93 0-37.01 8.12-49.59 22.27-13.38 15.05-20.95 41.01-14.03 59.62-5.56 2.5-9.45 8.09-9.45 14.57v5.29c0 8.81 7.17 15.98 15.98 15.98h5.55c3.16 13.09 10.94 24.39 21.51 32.08v22.32l-67.26 33.63c-16.7 5.87-27.89 21.6-27.89 39.28v41.63c0 3.31 2.69 6 6 6h243.46c3.31 0 6-2.69 6-6v-41.63c0-17.68-11.19-33.41-27.88-39.28zm-62.24-17.7-15.83 27.66-13.29-13.29 19.29-19.29zm-37.61 5.88-20.59-20.58v-16.91c6.41 2.57 13.4 4.01 20.72 4.01 7.22 0 14.11-1.39 20.45-3.9v16.8zm63.63-97.48v5.29c0 2.16-1.82 3.98-3.98 3.98h-3.74c.01-.36.03-.71.03-1.07v-12.18h3.71c2.15-.01 3.98 1.82 3.98 3.98zm-119.29 8.2v1.07h-3.98c-2.16 0-3.98-1.82-3.98-3.98v-5.29c0-2.16 1.82-3.98 3.98-3.98l3.98.22zm1.95-24.19c-7.33-13.69-.89-37.39 10.53-50.24 10.31-11.6 25.12-18.25 40.63-18.25 15.52 0 30.34 6.65 40.65 18.25 8.43 9.48 21.3 27.59 17.4 46.39-5.66-.35-10.67-2.55-14.4-6.36-5.37-5.49-7.72-14-6.63-23.94.29-2.62-1.17-5.13-3.6-6.17s-5.25-.37-6.95 1.65c-19.33 22.92-45.95 36.76-73.9 38.68h-3.73zm10.05 24.19v-12.73c24.57-2.92 47.92-14.05 66.73-31.8 1.43 7.26 4.63 13.6 9.45 18.52 3.27 3.35 7.14 5.89 11.41 7.58v18.42c0 24.15-19.65 43.8-43.8 43.8s-43.79-19.64-43.79-43.79zm15.89 78.48 19.29 19.29-13.29 13.29-15.84-27.66zm3.22 97.53h-39.42v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.76v-35.63c0-12.68 8.1-23.95 20.15-28.05.26-.09.51-.19.75-.31l46.47-23.23 20.07 35.06c.93 1.62 2.56 2.72 4.41 2.97.27.04.53.05.79.05 1.58 0 3.11-.62 4.24-1.76l.14-.14zm12.08 0 7.41-64.69 5.06-5.06 4.84 4.84 7.86 64.92h-25.17zm128.2 0h-39.76v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.18l-6.2-51.17.25.25c1.13 1.13 2.66 1.76 4.24 1.76.26 0 .53-.02.79-.05 1.85-.25 3.48-1.34 4.41-2.97l20.07-35.06 46.47 23.23c.24.12.49.23.75.31 12.05 4.1 20.15 15.38 20.15 28.05v35.65zm-67.04-346.65h-10.84l28.38 39.84 28.38-39.84h-10.84c-3.31 0-6-2.69-6-6v-64.58h-98.7c-3.31 0-6-2.69-6-6s2.69-6 6-6h104.7c3.31 0 6 2.69 6 6v64.58h16.48c2.25 0 4.3 1.25 5.33 3.25s.86 4.4-.45 6.23l-40.02 56.18c-1.13 1.58-2.95 2.52-4.89 2.52s-3.76-.94-4.89-2.52l-40.02-56.18c-1.3-1.83-1.48-4.23-.45-6.23s3.09-3.25 5.33-3.25h16.48v-23.5h-65.38c-3.31 0-6-2.69-6-6s2.69-6 6-6h71.38c3.31 0 6 2.69 6 6v35.5c.02 3.31-2.67 6-5.98 6zm-118.44 50.65v-133.26c0-21.18-17.23-38.41-38.41-38.41h-207.7c-21.18-.01-38.41 17.23-38.41 38.41v133.26c0 21.18 17.23 38.41 38.41 38.41h105.8l64.8 55.11c1.11.94 2.49 1.43 3.89 1.43.85 0 1.71-.18 2.52-.55 2.12-.98 3.48-3.11 3.48-5.45v-50.54h27.21c21.18 0 38.41-17.23 38.41-38.41zm-71.62 26.41c-3.31 0-6 2.69-6 6v43.56l-56.59-48.13c-1.08-.92-2.46-1.43-3.89-1.43h-108.01c-14.56 0-26.41-11.85-26.41-26.41v-133.26c0-14.56 11.85-26.41 26.41-26.41h207.69c14.56 0 26.41 11.85 26.41 26.41v133.26c0 14.56-11.85 26.41-26.41 26.41zm-156.34-87.87h56.97c3.31 0 6-2.69 6-6v-39.2l8.55-8.55c2.34-2.34 2.34-6.14 0-8.49-2.34-2.34-6.14-2.34-8.48 0l-.7.7c-.98-1.97-3.01-3.32-5.36-3.32h-56.98c-3.31 0-6 2.69-6 6v52.85c0 3.32 2.69 6.01 6 6.01zm6-52.86h44.97v2.69l-18.16 18.16-8.84-8.84c-2.34-2.34-6.14-2.34-8.49 0-2.34 2.34-2.34 6.14 0 8.49l13.08 13.08c1.17 1.17 2.71 1.76 4.24 1.76s3.07-.59 4.24-1.76l13.92-13.92v21.2h-44.96zm173.62 3.08c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 31.92c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 36.52c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.68 5.99 6zm0 31.92c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.69 5.99 6zm-119.36 165.01h10.84l-28.38-39.84-28.38 39.84h10.84c3.31 0 6 2.69 6 6v64.58h98.7c3.31 0 6 2.69 6 6s-2.69 6-6 6h-104.69c-3.31 0-6-2.69-6-6v-64.58h-16.48c-2.25 0-4.3-1.25-5.33-3.25s-.86-4.4.45-6.23l40.02-56.18c1.13-1.58 2.95-2.52 4.89-2.52s3.76.94 4.89 2.52l40.02 56.18c1.3 1.83 1.48 4.23.45 6.23s-3.09 3.25-5.33 3.25h-16.48v23.5h65.38c3.31 0 6 2.69 6 6s-2.69 6-6 6h-71.38c-3.31 0-6-2.69-6-6v-35.5c-.03-3.31 2.66-6 5.97-6z\"></path></svg>				\n									<h5>\n							ærlig<br> rådgivning						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 510 510\"><path d=\"m192.036 385.845c-4.787-46.972-19.459-64.336-30.658-82.352-8.672-13.951-15.5-28.245-15.5-54.252 0-60.242 48.865-109.109 109.135-109.109 60.242 0 109.109 48.866 109.109 109.109 0 26.007-6.828 40.301-15.5 54.252-11.199 18.016-25.871 35.38-30.658 82.352 9.985 2.864 17.345 12.101 17.345 22.975v36.44c0 13.109-10.747 23.866-23.893 23.866h-10.334v9.945c0 12.588-10.341 22.929-22.93 22.929h-46.304c-12.589 0-22.93-10.341-22.93-22.929v-9.945h-10.334c-13.146 0-23.893-10.757-23.893-23.866v-36.44c0-10.874 7.36-20.111 17.345-22.975zm111.948-.917c4.199-42.194 15.78-62.332 26.488-79.049 10.147-15.842 19.65-28.207 19.65-56.638 0-52.513-42.597-95.109-95.109-95.109-52.537 0-95.135 42.596-95.135 95.109 0 28.431 9.503 40.796 19.65 56.638 10.708 16.717 22.289 36.855 26.488 79.049zm2.554-78.61c-1.175 13.701-11.985 24.191-24.783 24.191-13.527 0-24.862-12.086-24.862-26.673v-99.328c0-14.12 11.335-26.673 24.862-26.673 11.309 0 21.031 8.139 23.975 19.497 9.12 3.904 15.688 13.438 15.688 24.78 0 1.153-.068 2.289-.201 3.403 5.078 5.326 8.283 12.802 8.283 21.117 0 6.39-1.889 12.262-5.06 17.053 1.996 4.099 3.13 8.773 3.13 13.76 0 14.1-9.065 25.697-21.032 28.873zm-16.452-109.977c-1.964-2.729-4.916-4.506-8.331-4.506-6.192 0-10.862 6.21-10.862 12.673v99.328c0 6.677 4.67 12.673 10.862 12.673 5.516 0 9.822-4.614 10.717-10.425-4.709-1.416-8.923-4.144-12.279-7.814-2.607-2.852-2.409-7.283.443-9.89 2.851-2.607 7.282-2.408 9.889.443 2.416 2.642 5.72 4.356 9.402 4.356 7.733 0 13.643-7.218 13.643-15.734s-5.91-15.734-13.643-15.734c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7 5.352 0 10.388 1.655 14.658 4.533.593-1.743.915-3.634.915-5.612 0-2.11-.366-4.128-1.036-5.972-.769.858-1.588 1.66-2.453 2.397-2.94 2.507-7.361 2.156-9.869-.784-2.507-2.939-2.155-7.361.784-9.868 2.773-2.365 4.492-6.122 4.492-10.293 0-6.072-3.705-11.374-8.898-12.467-.154-.023-.307-.052-.458-.085-.499-.08-1.01-.121-1.532-.121-2.947 0-5.591 1.389-7.515 3.525-2.585 2.87-7.015 3.101-9.886.515-2.87-2.586-3.101-7.015-.515-9.886 3.111-3.453 7.059-5.988 11.472-7.252zm-104.526 67.344c-3.171-4.791-5.06-10.663-5.06-17.053 0-8.307 3.198-15.777 8.284-21.104-.133-1.118-.202-2.258-.202-3.416 0-11.354 6.582-20.897 15.717-24.792 2.948-11.354 12.67-19.485 23.946-19.485 13.56 0 24.888 12.555 24.888 26.673v99.328c0 14.585-11.328 26.673-24.888 26.673-12.765 0-23.578-10.484-24.757-24.184-11.98-3.166-21.058-14.769-21.058-28.88 0-4.987 1.134-9.661 3.13-13.76zm9.982-23.036c-.675 1.847-1.042 3.869-1.042 5.983 0 1.978.322 3.869.915 5.612 4.27-2.878 9.306-4.533 14.658-4.533 3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7-7.733 0-13.643 7.218-13.643 15.734s5.91 15.734 13.643 15.734c3.682 0 6.986-1.714 9.402-4.356 2.607-2.851 7.038-3.05 9.889-.443 2.852 2.607 3.05 7.038.443 9.89-3.35 3.664-7.556 6.389-12.255 7.807.891 5.813 5.192 10.432 10.693 10.432 6.21 0 10.888-5.993 10.888-12.673v-99.328c0-6.466-4.678-12.673-10.888-12.673-3.404 0-6.349 1.777-8.309 4.507 4.421 1.264 8.367 3.8 11.476 7.251 2.586 2.871 2.355 7.3-.516 9.886-2.87 2.586-7.3 2.355-9.886-.515-1.926-2.138-4.574-3.525-7.54-3.525-.493 0-.976.037-1.448.108-.196.045-.395.082-.596.11-5.165 1.118-8.844 6.404-8.844 12.455 0 1.243.153 2.45.442 3.594.101.284.183.572.246.862.748 2.326 2.071 4.346 3.814 5.823 2.947 2.498 3.311 6.919.813 9.866s-6.919 3.312-9.866.814c-.878-.745-1.71-1.554-2.489-2.422zm3.042 158.279c-5.442 0-9.893 4.451-9.893 9.892v36.44c0 5.423 4.454 9.866 9.893 9.866h17.334c3.866 0 7 3.134 7 7v16.945c0 4.902 4.027 8.929 8.93 8.929h46.304c4.903 0 8.93-4.027 8.93-8.929v-16.945c0-3.866 3.134-7 7-7h17.334c5.439 0 9.893-4.443 9.893-9.866v-36.44c0-5.441-4.451-9.892-9.893-9.892zm63.416-314.093 2.907-5.412c1.828-3.403 6.075-4.683 9.479-2.854 3.403 1.828 4.682 6.075 2.854 9.479l-16.073 29.925c-1.22 2.271-3.589 3.688-6.167 3.688s-4.947-1.417-6.167-3.688l-16.073-29.925c-1.828-3.404-.549-7.651 2.854-9.479 3.404-1.829 7.651-.549 9.479 2.854l2.907 5.412v-69.835c0-3.863 3.137-7 7-7s7 3.137 7 7zm-132.198 54.758-49.381-49.381c-2.732-2.731-2.732-7.167 0-9.899s7.168-2.732 9.9 0l49.38 49.38-1.771-5.881c-1.114-3.7.985-7.608 4.684-8.722 3.7-1.114 7.607.985 8.721 4.685l9.796 32.526c.743 2.468.069 5.145-1.753 6.968-1.823 1.823-4.5 2.496-6.969 1.753l-32.526-9.795c-3.699-1.114-5.798-5.022-4.684-8.721s5.022-5.798 8.721-4.684zm-44.859 122.299h-69.835c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7h69.835l-5.412-2.907c-3.403-1.828-4.682-6.076-2.854-9.479 1.828-3.404 6.075-4.683 9.479-2.855l29.926 16.074c2.271 1.22 3.688 3.589 3.688 6.167 0 2.577-1.417 4.947-3.688 6.166l-29.926 16.074c-3.404 1.828-7.651.549-9.479-2.855-1.828-3.403-.549-7.651 2.854-9.479zm54.758 118.198-49.38 49.38c-2.732 2.732-7.168 2.732-9.9 0s-2.732-7.167 0-9.899l49.381-49.381-5.882 1.772c-3.699 1.114-7.607-.985-8.721-4.685-1.114-3.699.985-7.607 4.684-8.721l32.526-9.795c2.469-.743 5.146-.07 6.969 1.753 1.822 1.823 2.496 4.5 1.753 6.968l-9.796 32.527c-1.114 3.699-5.021 5.798-8.721 4.684-3.699-1.114-5.798-5.022-4.684-8.721zm240.497-240.497 5.882-1.771c3.699-1.114 7.607.985 8.721 4.684s-.985 7.607-4.684 8.721l-32.526 9.795c-2.469.743-5.146.07-6.969-1.753-1.822-1.823-2.496-4.5-1.753-6.968l9.796-32.526c1.114-3.7 5.021-5.799 8.721-4.685 3.699 1.114 5.798 5.022 4.684 8.722l-1.771 5.881 49.38-49.38c2.732-2.732 7.168-2.732 9.9 0s2.732 7.168 0 9.899zm44.859 122.299 5.412 2.906c3.403 1.828 4.682 6.076 2.854 9.479-1.828 3.404-6.075 4.683-9.479 2.855l-29.926-16.074c-2.271-1.219-3.688-3.589-3.688-6.166 0-2.578 1.417-4.947 3.688-6.167l29.926-16.074c3.404-1.828 7.651-.549 9.479 2.855 1.828 3.403.549 7.651-2.854 9.479l-5.412 2.907h69.835c3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7zm-54.758 118.198 1.771 5.882c1.114 3.699-.985 7.607-4.684 8.721-3.7 1.114-7.607-.985-8.721-4.684l-9.796-32.527c-.743-2.468-.069-5.145 1.753-6.968 1.823-1.823 4.5-2.496 6.969-1.753l32.526 9.795c3.699 1.114 5.798 5.022 4.684 8.721-1.114 3.7-5.022 5.799-8.721 4.685l-5.882-1.772 49.381 49.381c2.732 2.732 2.732 7.167 0 9.899s-7.168 2.732-9.9 0z\"></path></svg>				\n									<h5>\n							gennemtænkte løsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"outline\"><path d=\"M486.41,144A28,28,0,0,0,472,92H349.123l5.457-21.828a48.513,48.513,0,0,0-12.848-46.153A41.035,41.035,0,0,0,312.609,12H308a8.009,8.009,0,0,0-8,8V47.413l-19.233,64.112A17.376,17.376,0,0,1,268,123.539V112a4,4,0,0,0-4-4H152a4,4,0,0,0-4,4v72a4,4,0,0,0,8,0V116h72V276H156V248a4,4,0,0,0-8,0v32a4,4,0,0,0,4,4H264a4,4,0,0,0,4-4V268.5h11.168A37.07,37.07,0,0,1,305.092,279a45.025,45.025,0,0,0,31.48,12.752L440,292a27.987,27.987,0,0,0,19.369-48.2,27.987,27.987,0,0,0,16-48A28,28,0,0,0,486.41,144ZM260,276H236V116h24Zm212-88H396a4,4,0,0,0,0,8h60a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h40a20,20,0,0,1,.01,40l-103.428-.25a37.07,37.07,0,0,1-25.924-10.5,45.031,45.031,0,0,0-31.49-12.752H268V131.686a25.317,25.317,0,0,0,20.429-17.862l19.4-64.675A4,4,0,0,0,308,48V20h4.609a33.082,33.082,0,0,1,23.481,9.69,40.507,40.507,0,0,1,10.728,38.541l-6.7,26.8A4,4,0,0,0,344,100H472a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h72a20,20,0,0,1,0,40Z\"></path><path d=\"M194.5,183.243l-1.9-.217a4,4,0,0,0-4.169,2.491L184.29,195.9H135.278l-3.539-9.317a4,4,0,0,0-7.478,2.84l2.459,6.477h-8.474L68.452,156.872a4,4,0,1,0-4.935,6.3L77.6,174.209,56.961,194.48l-6.636-5.491a4,4,0,1,0-5.1,6.163L87.219,229.9a44.1,44.1,0,0,0,28.05,10.1H212a8.009,8.009,0,0,0,8-8V203.9a8.009,8.009,0,0,0-8-8h-8v-2.01A10.708,10.708,0,0,0,194.5,183.243ZM212,203.9V232H115.269a36.081,36.081,0,0,1-22.951-8.264l-29.16-24.128,20.8-20.422L114.4,203.045a4,4,0,0,0,2.468.852H187a4,4,0,0,0,3.715-2.517l3.929-9.843a2.712,2.712,0,0,1,1.356,2.35v6.01a4,4,0,0,0,4,4Z\"></path><path d=\"M223.084,484.672,200.87,469.863V346.36A44.1,44.1,0,0,0,195.327,325l-17.183-30.94a4,4,0,0,0-7,3.884l17.184,30.94a36.073,36.073,0,0,1,4.537,17.478V468H164.333a4,4,0,1,0,0,8h31.321l12,8H152.865V352a4,4,0,0,0-.358-1.655l-25.454-56A4,4,0,0,0,123.411,292H114.2a4,4,0,0,0-3.945,4.658l8.862,53.175a36.016,36.016,0,0,1-1.951,18.949L78.642,468H48.333a4,4,0,1,0,0,8H80.377L92,484H32.088L76.63,361.366a4.017,4.017,0,0,0,.183-2.044L61.1,268H136a4,4,0,0,0,0-8H59.233L30.555,173.966A19.723,19.723,0,0,1,49.27,148H76a12,12,0,0,0,24,0h15.2a21.975,21.975,0,0,1,8.395,1.652l10.889,4.458a4,4,0,1,0,3.032-7.4L126.63,142.25A29.938,29.938,0,0,0,115.2,140H100v-4.527A16.014,16.014,0,0,0,112,120V103.473A16.014,16.014,0,0,0,124,88V80a4,4,0,0,0-4-4H90A22.025,22.025,0,0,0,68,98v18a12.02,12.02,0,0,0,8,11.314V140H49.27a27.723,27.723,0,0,0-26.305,36.5l29.493,88.482,16.29,94.655-46.128,127A4,4,0,0,0,26.38,492h78.485a4,4,0,0,0,2.268-7.3L86.3,470.368l38.318-98.69a44.018,44.018,0,0,0,2.385-23.16L118.921,300h1.914l24.03,52.867V488a4,4,0,0,0,4,4h72a4,4,0,0,0,2.219-7.328ZM76,98A14.015,14.015,0,0,1,90,84h26v4a8.009,8.009,0,0,1-8,8H92a4,4,0,0,0-4,4,11.962,11.962,0,0,1-1.53,5.881A12.044,12.044,0,0,0,76,104.686Zm4,14a3.981,3.981,0,0,1,3.407,1.9,4,4,0,0,0,5.956.975c.207-.171.7-.648.7-.648.032-.028.061-.057.09-.087A19.907,19.907,0,0,0,95.6,104H104v16a8.009,8.009,0,0,1-8,8,12.133,12.133,0,0,1-2.681-.3,4,4,0,1,0-1.775,7.8c.151.035.3.06.456.091V148a4,4,0,1,1-8,0V124a4,4,0,0,0-4-4,4,4,0,0,1,0-8Z\"></path></g></svg>				\n									<h5>\n							arbejde udført med ansvar						\n					</h5>\n				<p>Vi lover ikke mere, end vi kan holde – men vi holder det, vi lover.</p>			<h2>KONTAKT OS</h2>		<p>Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.</p>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-14 12:09:50', '2026-02-14 12:09:50', '', 10, 'https://mrarif.me/cpnordic/?p=759', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(707, 1, '2026-01-26 15:07:41', '2026-01-26 15:07:41', '<h1>CP NORDIC ApS</h1>					<h4>Byggeri – Tømrerarbejde og tagdækning</h4>										<a href=\"https://mrarif.me/cpnordic/kontakt/\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"https://mrarif.me/cpnordic/om-os/\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"https://mrarif.me/cpnordic/tomrerarbejde/\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>								<a href=\"https://mrarif.me/cpnordic/tagdaekning/\">\n									Lær mere\n					</a>\n									<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle ANMELDELSER\n					</a>\n					<h2>HVORFOR VÆLGE CP NORDIC ApS?</h2>		<p>Når du vælger CP NORDIC ApS, får du:</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 450 450\" width=\"512\"><g><g><path d=\"m225 165.2c-25.9 0-48.9-18.8-53.3-45.2-2.4-14.2.9-28.6 9.3-40.3 8.4-11.8 20.9-19.5 35.1-21.9 29.4-4.9 57.3 15 62.2 44.5 4.9 29.4-15 57.3-44.4 62.2-3 .5-6 .7-8.9.7zm-7.6-99.8c-12.2 2-22.9 8.7-30.1 18.8s-10.1 22.4-8 34.6c3.8 22.7 23.5 38.8 45.7 38.8 2.5 0 5.1-.2 7.6-.6 25.2-4.2 42.3-28.1 38.1-53.4s-28.1-42.4-53.3-38.2z\"></path><path d=\"m255.2 115c-2.1 0-3.8-1.7-3.8-3.8 0-14.6-11.8-26.4-26.4-26.4-2.1 0-3.8-1.7-3.8-3.8s1.7-3.8 3.8-3.8c18.8 0 34.1 15.3 34.1 34.1 0 2-1.8 3.7-3.9 3.7z\"></path><path d=\"m236.1 203h-22.2c-2.1 0-3.8-1.7-3.8-3.8v-14.1c-3.1-.6-6.1-1.4-9.1-2.4l-7 12.2c-1.1 1.8-3.4 2.5-5.3 1.4l-19.2-11.1c-.9-.5-1.5-1.4-1.8-2.3-.3-1-.1-2 .4-2.9l7-12.1c-2.4-2.1-4.6-4.3-6.7-6.6l-12.1 7c-1.8 1.1-4.2.4-5.2-1.4l-11.1-19.2c-1.1-1.8-.4-4.2 1.4-5.2l11.9-6.8c-1-3-1.9-6.1-2.6-9.3h-13.7c-2.1 0-3.8-1.7-3.8-3.8v-22.2c0-2.1 1.7-3.8 3.8-3.8h13.4c.6-3.2 1.4-6.4 2.4-9.5l-11.5-6.6c-1.8-1.1-2.5-3.4-1.4-5.3l11.1-19.6c.5-.9 1.4-1.5 2.3-1.8s2-.1 2.9.4l11.3 6.6c2.2-2.5 4.5-4.8 7-7l-6.5-11.3c-.5-.9-.6-1.9-.4-2.9.3-1 .9-1.8 1.8-2.3l19.2-11.1c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l6.4 11.2c3.1-1.1 6.4-1.9 9.7-2.6v-13c0-2.1 1.7-3.8 3.8-3.8h22.2c2.1 0 3.8 1.7 3.8 3.8v12.8c3.3.7 6.5 1.5 9.7 2.6l6.5-11.2c.5-.9 1.4-1.5 2.3-1.8 1-.3 2-.1 2.9.4l19.2 11.1c.9.5 1.5 1.3 1.8 2.3s.1 2-.4 2.9l-6.5 11.3c2.5 2.2 4.8 4.5 7 7.1l11.3-6.6c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l11.1 19.2c1.1 1.8.4 4.2-1.4 5.3l-11.5 6.6c1 3.1 1.8 6.3 2.5 9.5h13.6c2.1 0 3.8 1.7 3.8 3.8v22.2c0 2.1-1.7 3.8-3.8 3.8h-13.6c-.6 3.1-1.5 6.2-2.5 9.3l11.9 6.8c1.8 1.1 2.5 3.4 1.4 5.2l-11.2 19.5c-1.1 1.8-3.4 2.5-5.2 1.4l-12-7c-2.1 2.4-4.4 4.6-6.7 6.6l7 12.1c.5.9.6 1.9.4 2.9s-.9 1.8-1.8 2.3l-19.2 11.1c-1.8 1.1-4.2.4-5.2-1.4l-7-12.2c-3 1-6 1.8-9.1 2.4v14.1c-.2 2.3-2 4-4.1 4zm-18.4-7.7h14.5v-13.5c0-1.9 1.4-3.5 3.3-3.8 4.7-.7 9.4-2 13.8-3.7 1.8-.7 3.8 0 4.7 1.7l6.7 11.6 12.6-7.3-6.7-11.6c-1-1.6-.5-3.7.9-4.9 3.7-3 7.2-6.4 10.2-10.1 1.2-1.5 3.3-1.8 4.9-.9l11.5 6.6 7.3-12.6-11.3-6.5c-1.6-.9-2.4-3-1.6-4.7 1.8-4.5 3.1-9.2 3.9-14 .3-1.9 1.9-3.2 3.8-3.2h13v-14.6h-12.8c-1.9 0-3.5-1.4-3.8-3.3-.7-4.8-2-9.6-3.7-14.2-.7-1.8 0-3.7 1.7-4.7l10.9-6.3-7.3-12.6-10.8 6.3c-1.6.9-3.7.6-4.9-.9-3.1-3.9-6.6-7.4-10.4-10.6-1.5-1.2-1.9-3.3-.9-4.9l6.2-10.7-12.6-7.3-6.1 10.6c-1 1.6-3 2.3-4.7 1.7-4.6-1.8-9.5-3.1-14.4-3.9-1.9-.3-3.3-1.9-3.3-3.8v-12.2h-14.5v12.3c0 1.9-1.4 3.5-3.3 3.8-5 .8-9.8 2.1-14.4 3.9-1.8.7-3.8 0-4.7-1.7l-6.1-10.6-12.6 7.3 6.2 10.7c.9 1.6.6 3.7-.9 4.9-3.9 3.1-7.4 6.7-10.4 10.6-1.2 1.5-3.3 1.9-4.9.9l-10.8-6.3-7.3 12.6 10.9 6.3c1.6.9 2.3 2.9 1.7 4.7-1.7 4.6-3 9.4-3.7 14.2-.3 1.9-1.9 3.3-3.8 3.3h-12.8v14.5h13c1.9 0 3.5 1.4 3.8 3.2.8 4.8 2.1 9.5 3.9 14 .7 1.8 0 3.8-1.6 4.7l-11.3 6.5 7.3 12.6 11.5-6.6c1.6-.9 3.7-.6 4.9.9 3 3.7 6.5 7.1 10.3 10.1 1.5 1.2 1.9 3.3.9 4.9l-6.7 11.6 12.6 7.3 6.7-11.6c.9-1.6 2.9-2.3 4.7-1.7 4.5 1.7 9.1 2.9 13.8 3.7 1.9.3 3.3 1.9 3.3 3.8z\"></path></g><g><g><g><path d=\"m45.3 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m153.9 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path></g><g><path d=\"m189.3 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.2c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c0 2.1-1.7 3.8-3.8 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m73.3 326.4c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m126 326.4c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m99.7 325.6c-.6 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4s4.1 1.1 4.4 3.2c2.4 16.5 12.3 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m50.2 266.6c-.1 0-.2 0-.3 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.7 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-8.9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.5 2.2zm81.8-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13.1-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.4-.7 2.3-.7z\"></path></g></g></g><g><g><path d=\"m296.1 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m404.7 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path></g><g><path d=\"m440 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.1c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c.2 2.1-1.6 3.8-3.7 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m324 326.3c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m376.7 326.3c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m350.4 325.6c-.5 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4 2.1-.3 4 1.1 4.4 3.2 2.4 16.5 12.4 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m301 266.6c-.1 0-.2 0-.4 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.6 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.4 2.2zm81.7-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.5-.7 2.3-.7z\"></path></g></g></g></g></g></svg>				\n									<h5>\n							et ungt og engageret team						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"496pt\" viewBox=\"0 0 496 496\" width=\"496pt\"><path d=\"m440 328h-28.207031c5.078125-6.703125 8.207031-14.960938 8.207031-24 0-8.824219-7.175781-16-16-16h-12v-19.960938c59.574219-14.445312 104-68.085937 104-132.039062 0-74.992188-61.007812-136-136-136s-136 61.007812-136 136c0 63.953125 44.425781 117.59375 104 132.039062v19.960938h-8.449219c-6.167969 0-12.359375 1.464844-17.886719 4.214844l-50.480468 25.25c-3.320313 1.664062-7.03125 2.535156-10.734375 2.535156h-40.449219v-16h-104v16h56v56h16v-56h16v128h-16v-56h-16v56h-56v16h104v-16h40.449219c3.703125 0 7.414062.871094 10.734375 2.527344l34.488281 17.25c5.519531 2.757812 11.710937 4.222656 17.878906 4.222656h24.449219v24h64v-24h48c13.230469 0 24-10.769531 24-24 0-6.167969-2.40625-11.742188-6.238281-16 3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16 0-13.230469-10.769531-24-24-24zm8 24c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm-208-280c0-66.167969 53.832031-120 120-120s120 53.832031 120 120-53.832031 120-120 120-120-53.832031-120-120zm104 134.976562c5.257812.617188 10.574219 1.023438 16 1.023438s10.742188-.40625 16-1.023438v17.023438h-32zm-40.449219 185.023438c-3.703125 0-7.414062-.871094-10.734375-2.527344l-34.488281-17.25c-5.519531-2.757812-11.710937-4.222656-17.878906-4.222656h-40.449219v-96h40.449219c6.167969 0 12.359375-1.464844 17.886719-4.214844l50.480468-25.25c3.320313-1.664062 7.03125-2.535156 10.734375-2.535156h84.449219c0 13.230469-10.769531 24-24 24h-48.28125l-23.863281 35.808594c-6.101563 9.160156-14.527344 16.589844-24.367188 21.503906-8.753906 4.375-18.542969 6.6875-28.320312 6.6875h-15.167969v16h15.167969c12.246093 0 24.519531-2.894531 35.472656-8.375 12.328125-6.160156 22.878906-15.480469 30.527344-26.945312l6.832031-10.253907v93.574219zm40.449219 24v-136h17.472656c-.898437 2.511719-1.472656 5.183594-1.472656 8 0 6.167969 2.40625 11.742188 6.238281 16-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16 0 10.414062 6.710938 19.214844 16 22.527344v9.472656zm96-24h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8s-3.59375 8-8 8zm0 0\"></path><path d=\"m394.878906 73.007812-7.757812 13.984376c17.816406 9.878906 28.878906 28.664062 28.878906 49.007812h16c0-26.160156-14.222656-50.296875-37.121094-62.992188zm0 0\"></path><path d=\"m360 80c4.734375 0 9.449219.59375 14.007812 1.769531l3.976563-15.503906c-5.855469-1.496094-11.90625-2.265625-17.984375-2.265625zm0 0\"></path><path d=\"m360 48c48.519531 0 88 39.480469 88 88 0 20.753906-7.398438 40.910156-20.832031 56.785156l12.207031 10.34375c15.882812-18.761718 24.625-42.601562 24.625-67.128906 0-57.34375-46.65625-104-104-104-24.527344 0-48.367188 8.753906-67.128906 24.632812l10.335937 12.199219c15.871094-13.433593 36.039063-20.832031 56.792969-20.832031zm0 0\"></path><path d=\"m427.128906 215.367188-10.335937-12.199219c-15.871094 13.433593-36.039063 20.832031-56.792969 20.832031-48.519531 0-88-39.480469-88-88 0-20.753906 7.398438-40.910156 20.832031-56.785156l-12.207031-10.34375c-15.882812 18.761718-24.625 42.601562-24.625 67.128906 0 57.34375 46.65625 104 104 104 24.527344 0 48.367188-8.753906 67.128906-24.632812zm0 0\"></path><path d=\"m121.214844 165.640625c4.953125-1.375 9.695312-3.34375 14.183594-5.878906l9.769531 4.886719 19.472656-19.480469-4.886719-9.769531c2.535156-4.496094 4.503906-9.230469 5.886719-14.183594l10.359375-3.445313v-27.53125l-10.351562-3.453125c-1.375-4.953125-3.34375-9.707031-5.886719-14.183594l4.886719-9.777343-19.472657-19.472657-9.769531 4.886719c-4.484375-2.535156-9.230469-4.503906-14.183594-5.878906l-3.453125-10.359375h-27.539062l-3.445313 10.359375c-4.953125 1.375-9.695312 3.34375-14.183594 5.878906l-9.777343-4.886719-19.472657 19.472657 4.886719 9.777343c-2.535156 4.488282-4.503906 9.230469-5.886719 14.183594l-10.351562 3.445313v27.53125l10.351562 3.453125c1.375 4.953125 3.34375 9.695312 5.886719 14.183594l-4.886719 9.769531 19.472657 19.480469 9.769531-4.886719c4.484375 2.535156 9.230469 4.503906 14.183594 5.878906l3.453125 10.359375h27.539062zm-12.304688-13.679687-2.679687 8.039062h-4.460938l-2.679687-8.039062-4.554688-.90625c-6.128906-1.222657-11.878906-3.605469-17.109375-7.09375l-3.867187-2.578126-7.574219 3.800782-3.160156-3.167969 3.792969-7.582031-2.578126-3.859375c-3.488281-5.222657-5.871093-10.980469-7.09375-17.109375l-.914062-4.554688-8.03125-2.679687v-4.46875l8.03125-2.671875.914062-4.554688c1.222657-6.136718 3.613282-11.886718 7.09375-17.109375l2.578126-3.859375-3.792969-7.589844 3.160156-3.160156 7.574219 3.800782 3.867187-2.578126c5.222657-3.488281 10.980469-5.863281 17.109375-7.09375l4.554688-.90625 2.679687-8.039062h4.460938l2.679687 8.039062 4.554688.90625c6.128906 1.222657 11.878906 3.605469 17.109375 7.09375l3.867187 2.578126 7.574219-3.800782 3.160156 3.160156-3.792969 7.589844 2.578126 3.859375c3.488281 5.214844 5.871093 10.972657 7.09375 17.109375l.914062 4.554688 8.03125 2.679687v4.46875l-8.03125 2.671875-.914062 4.554688c-1.222657 6.128906-3.613282 11.878906-7.09375 17.109375l-2.578126 3.859375 3.792969 7.582031-3.160156 3.167969-7.574219-3.800782-3.867187 2.578126c-5.222657 3.488281-10.980469 5.863281-17.109375 7.09375zm0 0\"></path><path d=\"m104 72c-17.648438 0-32 14.351562-32 32s14.351562 32 32 32 32-14.351562 32-32-14.351562-32-32-32zm0 48c-8.824219 0-16-7.175781-16-16s7.175781-16 16-16 16 7.175781 16 16-7.175781 16-16 16zm0 0\"></path><path d=\"m160 248v-40h48v-208h-208v208h106.664062zm-144-232h176v176h-48v24l-32-24h-96zm0 0\"></path><path d=\"m0 272h16v16h-16zm0 0\"></path><path d=\"m32 272h16v16h-16zm0 0\"></path><path d=\"m64 272h16v16h-16zm0 0\"></path><path d=\"m32 304h16v16h-16zm0 0\"></path><path d=\"m64 304h16v16h-16zm0 0\"></path><path d=\"m0 480h16v16h-16zm0 0\"></path><path d=\"m32 480h16v16h-16zm0 0\"></path><path d=\"m64 480h16v16h-16zm0 0\"></path><path d=\"m32 448h16v16h-16zm0 0\"></path><path d=\"m64 448h16v16h-16zm0 0\"></path></svg>				\n									<h5>\n							fokus på kvalitet og detaljer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m469.12 408.93-67.26-33.63v-22.13c10.71-7.69 18.6-19.07 21.78-32.27h5.28c8.81 0 15.98-7.17 15.98-15.98v-5.29c0-6.35-3.74-11.84-9.12-14.41 5.19-18.64-1.65-39.76-19.44-59.78-12.58-14.16-30.67-22.27-49.62-22.27-18.93 0-37.01 8.12-49.59 22.27-13.38 15.05-20.95 41.01-14.03 59.62-5.56 2.5-9.45 8.09-9.45 14.57v5.29c0 8.81 7.17 15.98 15.98 15.98h5.55c3.16 13.09 10.94 24.39 21.51 32.08v22.32l-67.26 33.63c-16.7 5.87-27.89 21.6-27.89 39.28v41.63c0 3.31 2.69 6 6 6h243.46c3.31 0 6-2.69 6-6v-41.63c0-17.68-11.19-33.41-27.88-39.28zm-62.24-17.7-15.83 27.66-13.29-13.29 19.29-19.29zm-37.61 5.88-20.59-20.58v-16.91c6.41 2.57 13.4 4.01 20.72 4.01 7.22 0 14.11-1.39 20.45-3.9v16.8zm63.63-97.48v5.29c0 2.16-1.82 3.98-3.98 3.98h-3.74c.01-.36.03-.71.03-1.07v-12.18h3.71c2.15-.01 3.98 1.82 3.98 3.98zm-119.29 8.2v1.07h-3.98c-2.16 0-3.98-1.82-3.98-3.98v-5.29c0-2.16 1.82-3.98 3.98-3.98l3.98.22zm1.95-24.19c-7.33-13.69-.89-37.39 10.53-50.24 10.31-11.6 25.12-18.25 40.63-18.25 15.52 0 30.34 6.65 40.65 18.25 8.43 9.48 21.3 27.59 17.4 46.39-5.66-.35-10.67-2.55-14.4-6.36-5.37-5.49-7.72-14-6.63-23.94.29-2.62-1.17-5.13-3.6-6.17s-5.25-.37-6.95 1.65c-19.33 22.92-45.95 36.76-73.9 38.68h-3.73zm10.05 24.19v-12.73c24.57-2.92 47.92-14.05 66.73-31.8 1.43 7.26 4.63 13.6 9.45 18.52 3.27 3.35 7.14 5.89 11.41 7.58v18.42c0 24.15-19.65 43.8-43.8 43.8s-43.79-19.64-43.79-43.79zm15.89 78.48 19.29 19.29-13.29 13.29-15.84-27.66zm3.22 97.53h-39.42v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.76v-35.63c0-12.68 8.1-23.95 20.15-28.05.26-.09.51-.19.75-.31l46.47-23.23 20.07 35.06c.93 1.62 2.56 2.72 4.41 2.97.27.04.53.05.79.05 1.58 0 3.11-.62 4.24-1.76l.14-.14zm12.08 0 7.41-64.69 5.06-5.06 4.84 4.84 7.86 64.92h-25.17zm128.2 0h-39.76v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.18l-6.2-51.17.25.25c1.13 1.13 2.66 1.76 4.24 1.76.26 0 .53-.02.79-.05 1.85-.25 3.48-1.34 4.41-2.97l20.07-35.06 46.47 23.23c.24.12.49.23.75.31 12.05 4.1 20.15 15.38 20.15 28.05v35.65zm-67.04-346.65h-10.84l28.38 39.84 28.38-39.84h-10.84c-3.31 0-6-2.69-6-6v-64.58h-98.7c-3.31 0-6-2.69-6-6s2.69-6 6-6h104.7c3.31 0 6 2.69 6 6v64.58h16.48c2.25 0 4.3 1.25 5.33 3.25s.86 4.4-.45 6.23l-40.02 56.18c-1.13 1.58-2.95 2.52-4.89 2.52s-3.76-.94-4.89-2.52l-40.02-56.18c-1.3-1.83-1.48-4.23-.45-6.23s3.09-3.25 5.33-3.25h16.48v-23.5h-65.38c-3.31 0-6-2.69-6-6s2.69-6 6-6h71.38c3.31 0 6 2.69 6 6v35.5c.02 3.31-2.67 6-5.98 6zm-118.44 50.65v-133.26c0-21.18-17.23-38.41-38.41-38.41h-207.7c-21.18-.01-38.41 17.23-38.41 38.41v133.26c0 21.18 17.23 38.41 38.41 38.41h105.8l64.8 55.11c1.11.94 2.49 1.43 3.89 1.43.85 0 1.71-.18 2.52-.55 2.12-.98 3.48-3.11 3.48-5.45v-50.54h27.21c21.18 0 38.41-17.23 38.41-38.41zm-71.62 26.41c-3.31 0-6 2.69-6 6v43.56l-56.59-48.13c-1.08-.92-2.46-1.43-3.89-1.43h-108.01c-14.56 0-26.41-11.85-26.41-26.41v-133.26c0-14.56 11.85-26.41 26.41-26.41h207.69c14.56 0 26.41 11.85 26.41 26.41v133.26c0 14.56-11.85 26.41-26.41 26.41zm-156.34-87.87h56.97c3.31 0 6-2.69 6-6v-39.2l8.55-8.55c2.34-2.34 2.34-6.14 0-8.49-2.34-2.34-6.14-2.34-8.48 0l-.7.7c-.98-1.97-3.01-3.32-5.36-3.32h-56.98c-3.31 0-6 2.69-6 6v52.85c0 3.32 2.69 6.01 6 6.01zm6-52.86h44.97v2.69l-18.16 18.16-8.84-8.84c-2.34-2.34-6.14-2.34-8.49 0-2.34 2.34-2.34 6.14 0 8.49l13.08 13.08c1.17 1.17 2.71 1.76 4.24 1.76s3.07-.59 4.24-1.76l13.92-13.92v21.2h-44.96zm173.62 3.08c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 31.92c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 36.52c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.68 5.99 6zm0 31.92c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.69 5.99 6zm-119.36 165.01h10.84l-28.38-39.84-28.38 39.84h10.84c3.31 0 6 2.69 6 6v64.58h98.7c3.31 0 6 2.69 6 6s-2.69 6-6 6h-104.69c-3.31 0-6-2.69-6-6v-64.58h-16.48c-2.25 0-4.3-1.25-5.33-3.25s-.86-4.4.45-6.23l40.02-56.18c1.13-1.58 2.95-2.52 4.89-2.52s3.76.94 4.89 2.52l40.02 56.18c1.3 1.83 1.48 4.23.45 6.23s-3.09 3.25-5.33 3.25h-16.48v23.5h65.38c3.31 0 6 2.69 6 6s-2.69 6-6 6h-71.38c-3.31 0-6-2.69-6-6v-35.5c-.03-3.31 2.66-6 5.97-6z\"></path></svg>				\n									<h5>\n							ærlig<br> rådgivning						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 510 510\"><path d=\"m192.036 385.845c-4.787-46.972-19.459-64.336-30.658-82.352-8.672-13.951-15.5-28.245-15.5-54.252 0-60.242 48.865-109.109 109.135-109.109 60.242 0 109.109 48.866 109.109 109.109 0 26.007-6.828 40.301-15.5 54.252-11.199 18.016-25.871 35.38-30.658 82.352 9.985 2.864 17.345 12.101 17.345 22.975v36.44c0 13.109-10.747 23.866-23.893 23.866h-10.334v9.945c0 12.588-10.341 22.929-22.93 22.929h-46.304c-12.589 0-22.93-10.341-22.93-22.929v-9.945h-10.334c-13.146 0-23.893-10.757-23.893-23.866v-36.44c0-10.874 7.36-20.111 17.345-22.975zm111.948-.917c4.199-42.194 15.78-62.332 26.488-79.049 10.147-15.842 19.65-28.207 19.65-56.638 0-52.513-42.597-95.109-95.109-95.109-52.537 0-95.135 42.596-95.135 95.109 0 28.431 9.503 40.796 19.65 56.638 10.708 16.717 22.289 36.855 26.488 79.049zm2.554-78.61c-1.175 13.701-11.985 24.191-24.783 24.191-13.527 0-24.862-12.086-24.862-26.673v-99.328c0-14.12 11.335-26.673 24.862-26.673 11.309 0 21.031 8.139 23.975 19.497 9.12 3.904 15.688 13.438 15.688 24.78 0 1.153-.068 2.289-.201 3.403 5.078 5.326 8.283 12.802 8.283 21.117 0 6.39-1.889 12.262-5.06 17.053 1.996 4.099 3.13 8.773 3.13 13.76 0 14.1-9.065 25.697-21.032 28.873zm-16.452-109.977c-1.964-2.729-4.916-4.506-8.331-4.506-6.192 0-10.862 6.21-10.862 12.673v99.328c0 6.677 4.67 12.673 10.862 12.673 5.516 0 9.822-4.614 10.717-10.425-4.709-1.416-8.923-4.144-12.279-7.814-2.607-2.852-2.409-7.283.443-9.89 2.851-2.607 7.282-2.408 9.889.443 2.416 2.642 5.72 4.356 9.402 4.356 7.733 0 13.643-7.218 13.643-15.734s-5.91-15.734-13.643-15.734c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7 5.352 0 10.388 1.655 14.658 4.533.593-1.743.915-3.634.915-5.612 0-2.11-.366-4.128-1.036-5.972-.769.858-1.588 1.66-2.453 2.397-2.94 2.507-7.361 2.156-9.869-.784-2.507-2.939-2.155-7.361.784-9.868 2.773-2.365 4.492-6.122 4.492-10.293 0-6.072-3.705-11.374-8.898-12.467-.154-.023-.307-.052-.458-.085-.499-.08-1.01-.121-1.532-.121-2.947 0-5.591 1.389-7.515 3.525-2.585 2.87-7.015 3.101-9.886.515-2.87-2.586-3.101-7.015-.515-9.886 3.111-3.453 7.059-5.988 11.472-7.252zm-104.526 67.344c-3.171-4.791-5.06-10.663-5.06-17.053 0-8.307 3.198-15.777 8.284-21.104-.133-1.118-.202-2.258-.202-3.416 0-11.354 6.582-20.897 15.717-24.792 2.948-11.354 12.67-19.485 23.946-19.485 13.56 0 24.888 12.555 24.888 26.673v99.328c0 14.585-11.328 26.673-24.888 26.673-12.765 0-23.578-10.484-24.757-24.184-11.98-3.166-21.058-14.769-21.058-28.88 0-4.987 1.134-9.661 3.13-13.76zm9.982-23.036c-.675 1.847-1.042 3.869-1.042 5.983 0 1.978.322 3.869.915 5.612 4.27-2.878 9.306-4.533 14.658-4.533 3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7-7.733 0-13.643 7.218-13.643 15.734s5.91 15.734 13.643 15.734c3.682 0 6.986-1.714 9.402-4.356 2.607-2.851 7.038-3.05 9.889-.443 2.852 2.607 3.05 7.038.443 9.89-3.35 3.664-7.556 6.389-12.255 7.807.891 5.813 5.192 10.432 10.693 10.432 6.21 0 10.888-5.993 10.888-12.673v-99.328c0-6.466-4.678-12.673-10.888-12.673-3.404 0-6.349 1.777-8.309 4.507 4.421 1.264 8.367 3.8 11.476 7.251 2.586 2.871 2.355 7.3-.516 9.886-2.87 2.586-7.3 2.355-9.886-.515-1.926-2.138-4.574-3.525-7.54-3.525-.493 0-.976.037-1.448.108-.196.045-.395.082-.596.11-5.165 1.118-8.844 6.404-8.844 12.455 0 1.243.153 2.45.442 3.594.101.284.183.572.246.862.748 2.326 2.071 4.346 3.814 5.823 2.947 2.498 3.311 6.919.813 9.866s-6.919 3.312-9.866.814c-.878-.745-1.71-1.554-2.489-2.422zm3.042 158.279c-5.442 0-9.893 4.451-9.893 9.892v36.44c0 5.423 4.454 9.866 9.893 9.866h17.334c3.866 0 7 3.134 7 7v16.945c0 4.902 4.027 8.929 8.93 8.929h46.304c4.903 0 8.93-4.027 8.93-8.929v-16.945c0-3.866 3.134-7 7-7h17.334c5.439 0 9.893-4.443 9.893-9.866v-36.44c0-5.441-4.451-9.892-9.893-9.892zm63.416-314.093 2.907-5.412c1.828-3.403 6.075-4.683 9.479-2.854 3.403 1.828 4.682 6.075 2.854 9.479l-16.073 29.925c-1.22 2.271-3.589 3.688-6.167 3.688s-4.947-1.417-6.167-3.688l-16.073-29.925c-1.828-3.404-.549-7.651 2.854-9.479 3.404-1.829 7.651-.549 9.479 2.854l2.907 5.412v-69.835c0-3.863 3.137-7 7-7s7 3.137 7 7zm-132.198 54.758-49.381-49.381c-2.732-2.731-2.732-7.167 0-9.899s7.168-2.732 9.9 0l49.38 49.38-1.771-5.881c-1.114-3.7.985-7.608 4.684-8.722 3.7-1.114 7.607.985 8.721 4.685l9.796 32.526c.743 2.468.069 5.145-1.753 6.968-1.823 1.823-4.5 2.496-6.969 1.753l-32.526-9.795c-3.699-1.114-5.798-5.022-4.684-8.721s5.022-5.798 8.721-4.684zm-44.859 122.299h-69.835c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7h69.835l-5.412-2.907c-3.403-1.828-4.682-6.076-2.854-9.479 1.828-3.404 6.075-4.683 9.479-2.855l29.926 16.074c2.271 1.22 3.688 3.589 3.688 6.167 0 2.577-1.417 4.947-3.688 6.166l-29.926 16.074c-3.404 1.828-7.651.549-9.479-2.855-1.828-3.403-.549-7.651 2.854-9.479zm54.758 118.198-49.38 49.38c-2.732 2.732-7.168 2.732-9.9 0s-2.732-7.167 0-9.899l49.381-49.381-5.882 1.772c-3.699 1.114-7.607-.985-8.721-4.685-1.114-3.699.985-7.607 4.684-8.721l32.526-9.795c2.469-.743 5.146-.07 6.969 1.753 1.822 1.823 2.496 4.5 1.753 6.968l-9.796 32.527c-1.114 3.699-5.021 5.798-8.721 4.684-3.699-1.114-5.798-5.022-4.684-8.721zm240.497-240.497 5.882-1.771c3.699-1.114 7.607.985 8.721 4.684s-.985 7.607-4.684 8.721l-32.526 9.795c-2.469.743-5.146.07-6.969-1.753-1.822-1.823-2.496-4.5-1.753-6.968l9.796-32.526c1.114-3.7 5.021-5.799 8.721-4.685 3.699 1.114 5.798 5.022 4.684 8.722l-1.771 5.881 49.38-49.38c2.732-2.732 7.168-2.732 9.9 0s2.732 7.168 0 9.899zm44.859 122.299 5.412 2.906c3.403 1.828 4.682 6.076 2.854 9.479-1.828 3.404-6.075 4.683-9.479 2.855l-29.926-16.074c-2.271-1.219-3.688-3.589-3.688-6.166 0-2.578 1.417-4.947 3.688-6.167l29.926-16.074c3.404-1.828 7.651-.549 9.479 2.855 1.828 3.403.549 7.651-2.854 9.479l-5.412 2.907h69.835c3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7zm-54.758 118.198 1.771 5.882c1.114 3.699-.985 7.607-4.684 8.721-3.7 1.114-7.607-.985-8.721-4.684l-9.796-32.527c-.743-2.468-.069-5.145 1.753-6.968 1.823-1.823 4.5-2.496 6.969-1.753l32.526 9.795c3.699 1.114 5.798 5.022 4.684 8.721-1.114 3.7-5.022 5.799-8.721 4.685l-5.882-1.772 49.381 49.381c2.732 2.732 2.732 7.167 0 9.899s-7.168 2.732-9.9 0z\"></path></svg>				\n									<h5>\n							gennemtænkte løsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"outline\"><path d=\"M486.41,144A28,28,0,0,0,472,92H349.123l5.457-21.828a48.513,48.513,0,0,0-12.848-46.153A41.035,41.035,0,0,0,312.609,12H308a8.009,8.009,0,0,0-8,8V47.413l-19.233,64.112A17.376,17.376,0,0,1,268,123.539V112a4,4,0,0,0-4-4H152a4,4,0,0,0-4,4v72a4,4,0,0,0,8,0V116h72V276H156V248a4,4,0,0,0-8,0v32a4,4,0,0,0,4,4H264a4,4,0,0,0,4-4V268.5h11.168A37.07,37.07,0,0,1,305.092,279a45.025,45.025,0,0,0,31.48,12.752L440,292a27.987,27.987,0,0,0,19.369-48.2,27.987,27.987,0,0,0,16-48A28,28,0,0,0,486.41,144ZM260,276H236V116h24Zm212-88H396a4,4,0,0,0,0,8h60a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h40a20,20,0,0,1,.01,40l-103.428-.25a37.07,37.07,0,0,1-25.924-10.5,45.031,45.031,0,0,0-31.49-12.752H268V131.686a25.317,25.317,0,0,0,20.429-17.862l19.4-64.675A4,4,0,0,0,308,48V20h4.609a33.082,33.082,0,0,1,23.481,9.69,40.507,40.507,0,0,1,10.728,38.541l-6.7,26.8A4,4,0,0,0,344,100H472a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h72a20,20,0,0,1,0,40Z\"></path><path d=\"M194.5,183.243l-1.9-.217a4,4,0,0,0-4.169,2.491L184.29,195.9H135.278l-3.539-9.317a4,4,0,0,0-7.478,2.84l2.459,6.477h-8.474L68.452,156.872a4,4,0,1,0-4.935,6.3L77.6,174.209,56.961,194.48l-6.636-5.491a4,4,0,1,0-5.1,6.163L87.219,229.9a44.1,44.1,0,0,0,28.05,10.1H212a8.009,8.009,0,0,0,8-8V203.9a8.009,8.009,0,0,0-8-8h-8v-2.01A10.708,10.708,0,0,0,194.5,183.243ZM212,203.9V232H115.269a36.081,36.081,0,0,1-22.951-8.264l-29.16-24.128,20.8-20.422L114.4,203.045a4,4,0,0,0,2.468.852H187a4,4,0,0,0,3.715-2.517l3.929-9.843a2.712,2.712,0,0,1,1.356,2.35v6.01a4,4,0,0,0,4,4Z\"></path><path d=\"M223.084,484.672,200.87,469.863V346.36A44.1,44.1,0,0,0,195.327,325l-17.183-30.94a4,4,0,0,0-7,3.884l17.184,30.94a36.073,36.073,0,0,1,4.537,17.478V468H164.333a4,4,0,1,0,0,8h31.321l12,8H152.865V352a4,4,0,0,0-.358-1.655l-25.454-56A4,4,0,0,0,123.411,292H114.2a4,4,0,0,0-3.945,4.658l8.862,53.175a36.016,36.016,0,0,1-1.951,18.949L78.642,468H48.333a4,4,0,1,0,0,8H80.377L92,484H32.088L76.63,361.366a4.017,4.017,0,0,0,.183-2.044L61.1,268H136a4,4,0,0,0,0-8H59.233L30.555,173.966A19.723,19.723,0,0,1,49.27,148H76a12,12,0,0,0,24,0h15.2a21.975,21.975,0,0,1,8.395,1.652l10.889,4.458a4,4,0,1,0,3.032-7.4L126.63,142.25A29.938,29.938,0,0,0,115.2,140H100v-4.527A16.014,16.014,0,0,0,112,120V103.473A16.014,16.014,0,0,0,124,88V80a4,4,0,0,0-4-4H90A22.025,22.025,0,0,0,68,98v18a12.02,12.02,0,0,0,8,11.314V140H49.27a27.723,27.723,0,0,0-26.305,36.5l29.493,88.482,16.29,94.655-46.128,127A4,4,0,0,0,26.38,492h78.485a4,4,0,0,0,2.268-7.3L86.3,470.368l38.318-98.69a44.018,44.018,0,0,0,2.385-23.16L118.921,300h1.914l24.03,52.867V488a4,4,0,0,0,4,4h72a4,4,0,0,0,2.219-7.328ZM76,98A14.015,14.015,0,0,1,90,84h26v4a8.009,8.009,0,0,1-8,8H92a4,4,0,0,0-4,4,11.962,11.962,0,0,1-1.53,5.881A12.044,12.044,0,0,0,76,104.686Zm4,14a3.981,3.981,0,0,1,3.407,1.9,4,4,0,0,0,5.956.975c.207-.171.7-.648.7-.648.032-.028.061-.057.09-.087A19.907,19.907,0,0,0,95.6,104H104v16a8.009,8.009,0,0,1-8,8,12.133,12.133,0,0,1-2.681-.3,4,4,0,1,0-1.775,7.8c.151.035.3.06.456.091V148a4,4,0,1,1-8,0V124a4,4,0,0,0-4-4,4,4,0,0,1,0-8Z\"></path></g></svg>				\n									<h5>\n							arbejde udført med ansvar						\n					</h5>\n				<p>Vi lover ikke mere, end vi kan holde – men vi holder det, vi lover.</p>			<h2>KONTAKT OS</h2>		<p>Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.</p>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 15:07:41', '2026-01-26 15:07:41', '', 10, 'https://mrarif.me/cpnordic/?p=707', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(675, 1, '2026-01-26 14:57:50', '2026-01-26 14:57:50', '<h5>\n						Terrasser					</h5>\n									<h5>\n						Totalrenoveringer					</h5>\n									<h5>\n						Tilbygninger					</h5>\n									<h5>\n						Carporte					</h5>\n									<h5>\n						Udskiftning og montering af døre og vinduer					</h5>\n									<h5>\n						Specialtilpassede løsninger					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>Terrasser</h2>		<p>Terrasser er et af vores kerneområder. Vi lægger stor vægt på korrekt opbygning, stabilitet og finish, da det er afgørende for både holdbarhed og udseende.</p><p>Vi arbejder gerne med hårdttræsterrasser og foretrækker træsorter som cumaru, ipé og thermobehandlet træ, da disse materialer har:</p>					<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										høj naturlig holdbarhed\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										god modstandsdygtighed over for fugt\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										et flot og tidløst udtryk\n									</li>\n						</ul>\n				<p>Med korrekt montage giver disse træsorter terrasser, der ældes pænt og kræver minimal vedligeholdelse.</p><p>Vi rådgiver altid om materialevalg, opbygning og vedligeholdelse, så løsningen passer til både huset, omgivelserne og kundens behov.</p>', 'Tjenester', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-01-26 14:57:50', '2026-01-26 14:57:50', '', 12, 'https://mrarif.me/cpnordic/?p=675', 0, 'revision', '', 0),
(676, 1, '2026-01-26 14:57:50', '2026-01-26 14:57:50', '<h5>\n						Terrasser					</h5>\n									<h5>\n						Totalrenoveringer					</h5>\n									<h5>\n						Tilbygninger					</h5>\n									<h5>\n						Carporte					</h5>\n									<h5>\n						Udskiftning og montering af døre og vinduer					</h5>\n									<h5>\n						Specialtilpassede løsninger					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>Terrasser</h2>		<p>Terrasser er et af vores kerneområder. Vi lægger stor vægt på korrekt opbygning, stabilitet og finish, da det er afgørende for både holdbarhed og udseende.</p><p>Vi arbejder gerne med hårdttræsterrasser og foretrækker træsorter som cumaru, ipé og thermobehandlet træ, da disse materialer har:</p>					<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										høj naturlig holdbarhed\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										god modstandsdygtighed over for fugt\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										et flot og tidløst udtryk\n									</li>\n						</ul>\n				<p>Med korrekt montage giver disse træsorter terrasser, der ældes pænt og kræver minimal vedligeholdelse.</p><p>Vi rådgiver altid om materialevalg, opbygning og vedligeholdelse, så løsningen passer til både huset, omgivelserne og kundens behov.</p>', 'Tjenester', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-01-26 14:57:50', '2026-01-26 14:57:50', '', 12, 'https://mrarif.me/cpnordic/?p=676', 0, 'revision', '', 0),
(686, 1, '2026-01-26 15:00:34', '2026-01-26 15:00:34', '<h2>Vores tjenester</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>				\n									<h5>\n							TØMRERARBEJDE						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>				\n									<h5>\n							TAGDÆKNING						\n					</h5>', 'Tjenester', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-01-26 15:00:34', '2026-01-26 15:00:34', '', 12, 'https://mrarif.me/cpnordic/?p=686', 0, 'revision', '', 0),
(687, 1, '2026-01-26 15:01:35', '2026-01-26 15:01:35', '<h2>Vores tjenester</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>				\n									<h5>\n							TØMRERARBEJDE						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>				\n									<h5>\n							TAGDÆKNING						\n					</h5>', 'Tjenester', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-01-26 15:01:35', '2026-01-26 15:01:35', '', 12, 'https://mrarif.me/cpnordic/?p=687', 0, 'revision', '', 0),
(688, 1, '2026-01-26 15:01:35', '2026-01-26 15:01:35', '<h2>Vores tjenester</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>				\n									<h5>\n							TØMRERARBEJDE						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>				\n									<h5>\n							TAGDÆKNING						\n					</h5>', 'Tjenester', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-01-26 15:01:35', '2026-01-26 15:01:35', '', 12, 'https://mrarif.me/cpnordic/?p=688', 0, 'revision', '', 0),
(689, 1, '2026-01-26 15:01:35', '2026-01-26 15:01:35', '<h2>Vores tjenester</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>				\n									<h5>\n							TØMRERARBEJDE						\n					</h5>\n									<p>\n						Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:\n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>				\n									<h5>\n							TAGDÆKNING						\n					</h5>\n									<p>\n						Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.					</p>', 'Tjenester', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-01-26 15:01:35', '2026-01-26 15:01:35', '', 12, 'https://mrarif.me/cpnordic/?p=689', 0, 'revision', '', 0),
(690, 1, '2026-01-26 15:01:44', '2026-01-26 15:01:44', '<h2>Vores tjenester</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>				\n									<h5>\n							TØMRERARBEJDE						\n					</h5>\n									<p>\n						Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:\n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>				\n									<h5>\n							TAGDÆKNING						\n					</h5>\n									<p>\n						Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.					</p>', 'Tjenester', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-01-26 15:01:44', '2026-01-26 15:01:44', '', 12, 'https://mrarif.me/cpnordic/?p=690', 0, 'revision', '', 0),
(691, 1, '2026-01-26 15:01:45', '2026-01-26 15:01:45', '<h2>Vores tjenester</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>				\n									<h5>\n							TØMRERARBEJDE						\n					</h5>\n									<p>\n						Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:\n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>				\n									<h5>\n							TAGDÆKNING						\n					</h5>\n									<p>\n						Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.					</p>', 'Tjenester', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-01-26 15:01:45', '2026-01-26 15:01:45', '', 12, 'https://mrarif.me/cpnordic/?p=691', 0, 'revision', '', 0),
(692, 1, '2026-01-26 15:01:45', '2026-01-26 15:01:45', '<h2>Vores tjenester</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>				\n									<h5>\n							TØMRERARBEJDE						\n					</h5>\n									<p>\n						Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:\n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>				\n									<h5>\n							TAGDÆKNING						\n					</h5>\n									<p>\n						Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.					</p>', 'Tjenester', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-01-26 15:01:45', '2026-01-26 15:01:45', '', 12, 'https://mrarif.me/cpnordic/?p=692', 0, 'revision', '', 0),
(693, 1, '2026-01-26 15:02:07', '2026-01-26 15:02:07', '<h2>Vores tjenester</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>				\n									<h5>\n							TØMRERARBEJDE						\n					</h5>\n									<p>\n						Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:\n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>				\n									<h5>\n							TAGDÆKNING						\n					</h5>\n									<p>\n						Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.					</p>', 'Tjenester', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-01-26 15:02:07', '2026-01-26 15:02:07', '', 12, 'https://mrarif.me/cpnordic/?p=693', 0, 'revision', '', 0),
(694, 1, '2026-01-26 15:02:07', '2026-01-26 15:02:07', '<h2>Vores tjenester</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>				\n									<h5>\n							TØMRERARBEJDE						\n					</h5>\n									<p>\n						Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:\n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>				\n									<h5>\n							TAGDÆKNING						\n					</h5>\n									<p>\n						Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.					</p>', 'Tjenester', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-01-26 15:02:07', '2026-01-26 15:02:07', '', 12, 'https://mrarif.me/cpnordic/?p=694', 0, 'revision', '', 0),
(695, 1, '2026-01-26 15:02:07', '2026-01-26 15:02:07', '<h2>Vores tjenester</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>				\n									<h4>\n							TØMRERARBEJDE						\n					</h4>\n									<p>\n						Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:\n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>				\n									<h4>\n							TAGDÆKNING						\n					</h4>\n									<p>\n						Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.					</p>', 'Tjenester', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-01-26 15:02:07', '2026-01-26 15:02:07', '', 12, 'https://mrarif.me/cpnordic/?p=695', 0, 'revision', '', 0),
(696, 1, '2026-01-26 15:02:21', '2026-01-26 15:02:21', '<h2>Vores tjenester</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>				\n									<h4>\n							TØMRERARBEJDE						\n					</h4>\n									<p>\n						Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:\n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>				\n									<h4>\n							TAGDÆKNING						\n					</h4>\n									<p>\n						Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.					</p>', 'Tjenester', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-01-26 15:02:21', '2026-01-26 15:02:21', '', 12, 'https://mrarif.me/cpnordic/?p=696', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(697, 1, '2026-01-26 15:02:21', '2026-01-26 15:02:21', '<h2>Vores tjenester</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>				\n									<h4>\n							TØMRERARBEJDE						\n					</h4>\n									<p>\n						Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:\n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>				\n									<h4>\n							TAGDÆKNING						\n					</h4>\n									<p>\n						Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.					</p>', 'Tjenester', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-01-26 15:02:21', '2026-01-26 15:02:21', '', 12, 'https://mrarif.me/cpnordic/?p=697', 0, 'revision', '', 0),
(698, 1, '2026-01-26 15:02:21', '2026-01-26 15:02:21', '<h2>Vores tjenester</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>				\n									<h4>\n							TØMRERARBEJDE						\n					</h4>\n									<p>\n						Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:\n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>				\n									<h4>\n							TAGDÆKNING						\n					</h4>\n									<p>\n						Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.					</p>', 'Tjenester', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-01-26 15:02:21', '2026-01-26 15:02:21', '', 12, 'https://mrarif.me/cpnordic/?p=698', 0, 'revision', '', 0),
(699, 1, '2026-01-26 15:04:50', '2026-01-26 15:04:50', '<h2>Vores tjenester</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>				\n									<h4>\n							TØMRERARBEJDE						\n					</h4>\n									<p>\n						Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:\n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>				\n									<h4>\n							TAGDÆKNING						\n					</h4>\n									<p>\n						Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.					</p>', 'Tjenester', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-01-26 15:04:50', '2026-01-26 15:04:50', '', 12, 'https://mrarif.me/cpnordic/?p=699', 0, 'revision', '', 0),
(700, 1, '2026-01-26 15:04:50', '2026-01-26 15:04:50', '<h2>Vores tjenester</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>				\n									<h4>\n							TØMRERARBEJDE						\n					</h4>\n									<p>\n						Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:\n					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>				\n									<h4>\n							TAGDÆKNING						\n					</h4>\n									<p>\n						Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.					</p>', 'Tjenester', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-01-26 15:04:50', '2026-01-26 15:04:50', '', 12, 'https://mrarif.me/cpnordic/?p=700', 0, 'revision', '', 0),
(701, 1, '2026-01-26 15:04:50', '2026-01-26 15:04:50', '<h2>Vores tjenester</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>				\n									<h4>\n							TØMRERARBEJDE						\n					</h4>\n									<p>\n						Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:\n					</p>\n												<a href=\"https://mrarif.me/cpnordic/tomrerarbejde/\">\n									Lær mere\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>				\n									<h4>\n							TAGDÆKNING						\n					</h4>\n									<p>\n						Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.					</p>\n												<a href=\"https://mrarif.me/cpnordic/tagdaekning/\">\n									Lær mere\n					</a>', 'Tjenester', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-01-26 15:04:50', '2026-01-26 15:04:50', '', 12, 'https://mrarif.me/cpnordic/?p=701', 0, 'revision', '', 0),
(702, 1, '2026-01-26 15:05:50', '2026-01-26 15:05:50', '<h2>Vores tjenester</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>				\n									<h4>\n							TØMRERARBEJDE						\n					</h4>\n									<p>\n						Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:\n					</p>\n												<a href=\"https://mrarif.me/cpnordic/tomrerarbejde/\">\n									Lær mere\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>				\n									<h4>\n							TAGDÆKNING						\n					</h4>\n									<p>\n						Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.					</p>\n												<a href=\"https://mrarif.me/cpnordic/tagdaekning/\">\n									Lær mere\n					</a>', 'Tjenester', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-01-26 15:05:50', '2026-01-26 15:05:50', '', 12, 'https://mrarif.me/cpnordic/?p=702', 0, 'revision', '', 0),
(703, 1, '2026-01-26 15:05:51', '2026-01-26 15:05:51', '<h2>Vores tjenester</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>				\n									<h4>\n							TØMRERARBEJDE						\n					</h4>\n									<p>\n						Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:\n					</p>\n												<a href=\"https://mrarif.me/cpnordic/tomrerarbejde/\">\n									Lær mere\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>				\n									<h4>\n							TAGDÆKNING						\n					</h4>\n									<p>\n						Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.					</p>\n												<a href=\"https://mrarif.me/cpnordic/tagdaekning/\">\n									Lær mere\n					</a>', 'Tjenester', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-01-26 15:05:51', '2026-01-26 15:05:51', '', 12, 'https://mrarif.me/cpnordic/?p=703', 0, 'revision', '', 0),
(704, 1, '2026-01-26 15:05:51', '2026-01-26 15:05:51', '<h2>Vores tjenester</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>				\n									<h4>\n							TØMRERARBEJDE						\n					</h4>\n									<p>\n						Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:\n					</p>\n												<a href=\"https://mrarif.me/cpnordic/tomrerarbejde/\">\n									Lær mere\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>				\n									<h4>\n							TAGDÆKNING						\n					</h4>\n									<p>\n						Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.					</p>\n												<a href=\"https://mrarif.me/cpnordic/tagdaekning/\">\n									Lær mere\n					</a>', 'Tjenester', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-01-26 15:05:51', '2026-01-26 15:05:51', '', 12, 'https://mrarif.me/cpnordic/?p=704', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(705, 1, '2026-01-26 15:07:40', '2026-01-26 15:07:40', '<h1>CP NORDIC ApS</h1>					<h4>Byggeri – Tømrerarbejde og tagdækning</h4>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle ANMELDELSER\n					</a>\n					<h2>HVORFOR VÆLGE CP NORDIC ApS?</h2>		<p>Når du vælger CP NORDIC ApS, får du:</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 450 450\" width=\"512\"><g><g><path d=\"m225 165.2c-25.9 0-48.9-18.8-53.3-45.2-2.4-14.2.9-28.6 9.3-40.3 8.4-11.8 20.9-19.5 35.1-21.9 29.4-4.9 57.3 15 62.2 44.5 4.9 29.4-15 57.3-44.4 62.2-3 .5-6 .7-8.9.7zm-7.6-99.8c-12.2 2-22.9 8.7-30.1 18.8s-10.1 22.4-8 34.6c3.8 22.7 23.5 38.8 45.7 38.8 2.5 0 5.1-.2 7.6-.6 25.2-4.2 42.3-28.1 38.1-53.4s-28.1-42.4-53.3-38.2z\"></path><path d=\"m255.2 115c-2.1 0-3.8-1.7-3.8-3.8 0-14.6-11.8-26.4-26.4-26.4-2.1 0-3.8-1.7-3.8-3.8s1.7-3.8 3.8-3.8c18.8 0 34.1 15.3 34.1 34.1 0 2-1.8 3.7-3.9 3.7z\"></path><path d=\"m236.1 203h-22.2c-2.1 0-3.8-1.7-3.8-3.8v-14.1c-3.1-.6-6.1-1.4-9.1-2.4l-7 12.2c-1.1 1.8-3.4 2.5-5.3 1.4l-19.2-11.1c-.9-.5-1.5-1.4-1.8-2.3-.3-1-.1-2 .4-2.9l7-12.1c-2.4-2.1-4.6-4.3-6.7-6.6l-12.1 7c-1.8 1.1-4.2.4-5.2-1.4l-11.1-19.2c-1.1-1.8-.4-4.2 1.4-5.2l11.9-6.8c-1-3-1.9-6.1-2.6-9.3h-13.7c-2.1 0-3.8-1.7-3.8-3.8v-22.2c0-2.1 1.7-3.8 3.8-3.8h13.4c.6-3.2 1.4-6.4 2.4-9.5l-11.5-6.6c-1.8-1.1-2.5-3.4-1.4-5.3l11.1-19.6c.5-.9 1.4-1.5 2.3-1.8s2-.1 2.9.4l11.3 6.6c2.2-2.5 4.5-4.8 7-7l-6.5-11.3c-.5-.9-.6-1.9-.4-2.9.3-1 .9-1.8 1.8-2.3l19.2-11.1c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l6.4 11.2c3.1-1.1 6.4-1.9 9.7-2.6v-13c0-2.1 1.7-3.8 3.8-3.8h22.2c2.1 0 3.8 1.7 3.8 3.8v12.8c3.3.7 6.5 1.5 9.7 2.6l6.5-11.2c.5-.9 1.4-1.5 2.3-1.8 1-.3 2-.1 2.9.4l19.2 11.1c.9.5 1.5 1.3 1.8 2.3s.1 2-.4 2.9l-6.5 11.3c2.5 2.2 4.8 4.5 7 7.1l11.3-6.6c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l11.1 19.2c1.1 1.8.4 4.2-1.4 5.3l-11.5 6.6c1 3.1 1.8 6.3 2.5 9.5h13.6c2.1 0 3.8 1.7 3.8 3.8v22.2c0 2.1-1.7 3.8-3.8 3.8h-13.6c-.6 3.1-1.5 6.2-2.5 9.3l11.9 6.8c1.8 1.1 2.5 3.4 1.4 5.2l-11.2 19.5c-1.1 1.8-3.4 2.5-5.2 1.4l-12-7c-2.1 2.4-4.4 4.6-6.7 6.6l7 12.1c.5.9.6 1.9.4 2.9s-.9 1.8-1.8 2.3l-19.2 11.1c-1.8 1.1-4.2.4-5.2-1.4l-7-12.2c-3 1-6 1.8-9.1 2.4v14.1c-.2 2.3-2 4-4.1 4zm-18.4-7.7h14.5v-13.5c0-1.9 1.4-3.5 3.3-3.8 4.7-.7 9.4-2 13.8-3.7 1.8-.7 3.8 0 4.7 1.7l6.7 11.6 12.6-7.3-6.7-11.6c-1-1.6-.5-3.7.9-4.9 3.7-3 7.2-6.4 10.2-10.1 1.2-1.5 3.3-1.8 4.9-.9l11.5 6.6 7.3-12.6-11.3-6.5c-1.6-.9-2.4-3-1.6-4.7 1.8-4.5 3.1-9.2 3.9-14 .3-1.9 1.9-3.2 3.8-3.2h13v-14.6h-12.8c-1.9 0-3.5-1.4-3.8-3.3-.7-4.8-2-9.6-3.7-14.2-.7-1.8 0-3.7 1.7-4.7l10.9-6.3-7.3-12.6-10.8 6.3c-1.6.9-3.7.6-4.9-.9-3.1-3.9-6.6-7.4-10.4-10.6-1.5-1.2-1.9-3.3-.9-4.9l6.2-10.7-12.6-7.3-6.1 10.6c-1 1.6-3 2.3-4.7 1.7-4.6-1.8-9.5-3.1-14.4-3.9-1.9-.3-3.3-1.9-3.3-3.8v-12.2h-14.5v12.3c0 1.9-1.4 3.5-3.3 3.8-5 .8-9.8 2.1-14.4 3.9-1.8.7-3.8 0-4.7-1.7l-6.1-10.6-12.6 7.3 6.2 10.7c.9 1.6.6 3.7-.9 4.9-3.9 3.1-7.4 6.7-10.4 10.6-1.2 1.5-3.3 1.9-4.9.9l-10.8-6.3-7.3 12.6 10.9 6.3c1.6.9 2.3 2.9 1.7 4.7-1.7 4.6-3 9.4-3.7 14.2-.3 1.9-1.9 3.3-3.8 3.3h-12.8v14.5h13c1.9 0 3.5 1.4 3.8 3.2.8 4.8 2.1 9.5 3.9 14 .7 1.8 0 3.8-1.6 4.7l-11.3 6.5 7.3 12.6 11.5-6.6c1.6-.9 3.7-.6 4.9.9 3 3.7 6.5 7.1 10.3 10.1 1.5 1.2 1.9 3.3.9 4.9l-6.7 11.6 12.6 7.3 6.7-11.6c.9-1.6 2.9-2.3 4.7-1.7 4.5 1.7 9.1 2.9 13.8 3.7 1.9.3 3.3 1.9 3.3 3.8z\"></path></g><g><g><g><path d=\"m45.3 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m153.9 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path></g><g><path d=\"m189.3 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.2c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c0 2.1-1.7 3.8-3.8 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m73.3 326.4c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m126 326.4c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m99.7 325.6c-.6 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4s4.1 1.1 4.4 3.2c2.4 16.5 12.3 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m50.2 266.6c-.1 0-.2 0-.3 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.7 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-8.9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.5 2.2zm81.8-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13.1-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.4-.7 2.3-.7z\"></path></g></g></g><g><g><path d=\"m296.1 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m404.7 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path></g><g><path d=\"m440 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.1c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c.2 2.1-1.6 3.8-3.7 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m324 326.3c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m376.7 326.3c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m350.4 325.6c-.5 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4 2.1-.3 4 1.1 4.4 3.2 2.4 16.5 12.4 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m301 266.6c-.1 0-.2 0-.4 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.6 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.4 2.2zm81.7-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.5-.7 2.3-.7z\"></path></g></g></g></g></g></svg>				\n									<h5>\n							et ungt og engageret team						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"496pt\" viewBox=\"0 0 496 496\" width=\"496pt\"><path d=\"m440 328h-28.207031c5.078125-6.703125 8.207031-14.960938 8.207031-24 0-8.824219-7.175781-16-16-16h-12v-19.960938c59.574219-14.445312 104-68.085937 104-132.039062 0-74.992188-61.007812-136-136-136s-136 61.007812-136 136c0 63.953125 44.425781 117.59375 104 132.039062v19.960938h-8.449219c-6.167969 0-12.359375 1.464844-17.886719 4.214844l-50.480468 25.25c-3.320313 1.664062-7.03125 2.535156-10.734375 2.535156h-40.449219v-16h-104v16h56v56h16v-56h16v128h-16v-56h-16v56h-56v16h104v-16h40.449219c3.703125 0 7.414062.871094 10.734375 2.527344l34.488281 17.25c5.519531 2.757812 11.710937 4.222656 17.878906 4.222656h24.449219v24h64v-24h48c13.230469 0 24-10.769531 24-24 0-6.167969-2.40625-11.742188-6.238281-16 3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16 0-13.230469-10.769531-24-24-24zm8 24c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm-208-280c0-66.167969 53.832031-120 120-120s120 53.832031 120 120-53.832031 120-120 120-120-53.832031-120-120zm104 134.976562c5.257812.617188 10.574219 1.023438 16 1.023438s10.742188-.40625 16-1.023438v17.023438h-32zm-40.449219 185.023438c-3.703125 0-7.414062-.871094-10.734375-2.527344l-34.488281-17.25c-5.519531-2.757812-11.710937-4.222656-17.878906-4.222656h-40.449219v-96h40.449219c6.167969 0 12.359375-1.464844 17.886719-4.214844l50.480468-25.25c3.320313-1.664062 7.03125-2.535156 10.734375-2.535156h84.449219c0 13.230469-10.769531 24-24 24h-48.28125l-23.863281 35.808594c-6.101563 9.160156-14.527344 16.589844-24.367188 21.503906-8.753906 4.375-18.542969 6.6875-28.320312 6.6875h-15.167969v16h15.167969c12.246093 0 24.519531-2.894531 35.472656-8.375 12.328125-6.160156 22.878906-15.480469 30.527344-26.945312l6.832031-10.253907v93.574219zm40.449219 24v-136h17.472656c-.898437 2.511719-1.472656 5.183594-1.472656 8 0 6.167969 2.40625 11.742188 6.238281 16-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16 0 10.414062 6.710938 19.214844 16 22.527344v9.472656zm96-24h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8s-3.59375 8-8 8zm0 0\"></path><path d=\"m394.878906 73.007812-7.757812 13.984376c17.816406 9.878906 28.878906 28.664062 28.878906 49.007812h16c0-26.160156-14.222656-50.296875-37.121094-62.992188zm0 0\"></path><path d=\"m360 80c4.734375 0 9.449219.59375 14.007812 1.769531l3.976563-15.503906c-5.855469-1.496094-11.90625-2.265625-17.984375-2.265625zm0 0\"></path><path d=\"m360 48c48.519531 0 88 39.480469 88 88 0 20.753906-7.398438 40.910156-20.832031 56.785156l12.207031 10.34375c15.882812-18.761718 24.625-42.601562 24.625-67.128906 0-57.34375-46.65625-104-104-104-24.527344 0-48.367188 8.753906-67.128906 24.632812l10.335937 12.199219c15.871094-13.433593 36.039063-20.832031 56.792969-20.832031zm0 0\"></path><path d=\"m427.128906 215.367188-10.335937-12.199219c-15.871094 13.433593-36.039063 20.832031-56.792969 20.832031-48.519531 0-88-39.480469-88-88 0-20.753906 7.398438-40.910156 20.832031-56.785156l-12.207031-10.34375c-15.882812 18.761718-24.625 42.601562-24.625 67.128906 0 57.34375 46.65625 104 104 104 24.527344 0 48.367188-8.753906 67.128906-24.632812zm0 0\"></path><path d=\"m121.214844 165.640625c4.953125-1.375 9.695312-3.34375 14.183594-5.878906l9.769531 4.886719 19.472656-19.480469-4.886719-9.769531c2.535156-4.496094 4.503906-9.230469 5.886719-14.183594l10.359375-3.445313v-27.53125l-10.351562-3.453125c-1.375-4.953125-3.34375-9.707031-5.886719-14.183594l4.886719-9.777343-19.472657-19.472657-9.769531 4.886719c-4.484375-2.535156-9.230469-4.503906-14.183594-5.878906l-3.453125-10.359375h-27.539062l-3.445313 10.359375c-4.953125 1.375-9.695312 3.34375-14.183594 5.878906l-9.777343-4.886719-19.472657 19.472657 4.886719 9.777343c-2.535156 4.488282-4.503906 9.230469-5.886719 14.183594l-10.351562 3.445313v27.53125l10.351562 3.453125c1.375 4.953125 3.34375 9.695312 5.886719 14.183594l-4.886719 9.769531 19.472657 19.480469 9.769531-4.886719c4.484375 2.535156 9.230469 4.503906 14.183594 5.878906l3.453125 10.359375h27.539062zm-12.304688-13.679687-2.679687 8.039062h-4.460938l-2.679687-8.039062-4.554688-.90625c-6.128906-1.222657-11.878906-3.605469-17.109375-7.09375l-3.867187-2.578126-7.574219 3.800782-3.160156-3.167969 3.792969-7.582031-2.578126-3.859375c-3.488281-5.222657-5.871093-10.980469-7.09375-17.109375l-.914062-4.554688-8.03125-2.679687v-4.46875l8.03125-2.671875.914062-4.554688c1.222657-6.136718 3.613282-11.886718 7.09375-17.109375l2.578126-3.859375-3.792969-7.589844 3.160156-3.160156 7.574219 3.800782 3.867187-2.578126c5.222657-3.488281 10.980469-5.863281 17.109375-7.09375l4.554688-.90625 2.679687-8.039062h4.460938l2.679687 8.039062 4.554688.90625c6.128906 1.222657 11.878906 3.605469 17.109375 7.09375l3.867187 2.578126 7.574219-3.800782 3.160156 3.160156-3.792969 7.589844 2.578126 3.859375c3.488281 5.214844 5.871093 10.972657 7.09375 17.109375l.914062 4.554688 8.03125 2.679687v4.46875l-8.03125 2.671875-.914062 4.554688c-1.222657 6.128906-3.613282 11.878906-7.09375 17.109375l-2.578126 3.859375 3.792969 7.582031-3.160156 3.167969-7.574219-3.800782-3.867187 2.578126c-5.222657 3.488281-10.980469 5.863281-17.109375 7.09375zm0 0\"></path><path d=\"m104 72c-17.648438 0-32 14.351562-32 32s14.351562 32 32 32 32-14.351562 32-32-14.351562-32-32-32zm0 48c-8.824219 0-16-7.175781-16-16s7.175781-16 16-16 16 7.175781 16 16-7.175781 16-16 16zm0 0\"></path><path d=\"m160 248v-40h48v-208h-208v208h106.664062zm-144-232h176v176h-48v24l-32-24h-96zm0 0\"></path><path d=\"m0 272h16v16h-16zm0 0\"></path><path d=\"m32 272h16v16h-16zm0 0\"></path><path d=\"m64 272h16v16h-16zm0 0\"></path><path d=\"m32 304h16v16h-16zm0 0\"></path><path d=\"m64 304h16v16h-16zm0 0\"></path><path d=\"m0 480h16v16h-16zm0 0\"></path><path d=\"m32 480h16v16h-16zm0 0\"></path><path d=\"m64 480h16v16h-16zm0 0\"></path><path d=\"m32 448h16v16h-16zm0 0\"></path><path d=\"m64 448h16v16h-16zm0 0\"></path></svg>				\n									<h5>\n							fokus på kvalitet og detaljer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m469.12 408.93-67.26-33.63v-22.13c10.71-7.69 18.6-19.07 21.78-32.27h5.28c8.81 0 15.98-7.17 15.98-15.98v-5.29c0-6.35-3.74-11.84-9.12-14.41 5.19-18.64-1.65-39.76-19.44-59.78-12.58-14.16-30.67-22.27-49.62-22.27-18.93 0-37.01 8.12-49.59 22.27-13.38 15.05-20.95 41.01-14.03 59.62-5.56 2.5-9.45 8.09-9.45 14.57v5.29c0 8.81 7.17 15.98 15.98 15.98h5.55c3.16 13.09 10.94 24.39 21.51 32.08v22.32l-67.26 33.63c-16.7 5.87-27.89 21.6-27.89 39.28v41.63c0 3.31 2.69 6 6 6h243.46c3.31 0 6-2.69 6-6v-41.63c0-17.68-11.19-33.41-27.88-39.28zm-62.24-17.7-15.83 27.66-13.29-13.29 19.29-19.29zm-37.61 5.88-20.59-20.58v-16.91c6.41 2.57 13.4 4.01 20.72 4.01 7.22 0 14.11-1.39 20.45-3.9v16.8zm63.63-97.48v5.29c0 2.16-1.82 3.98-3.98 3.98h-3.74c.01-.36.03-.71.03-1.07v-12.18h3.71c2.15-.01 3.98 1.82 3.98 3.98zm-119.29 8.2v1.07h-3.98c-2.16 0-3.98-1.82-3.98-3.98v-5.29c0-2.16 1.82-3.98 3.98-3.98l3.98.22zm1.95-24.19c-7.33-13.69-.89-37.39 10.53-50.24 10.31-11.6 25.12-18.25 40.63-18.25 15.52 0 30.34 6.65 40.65 18.25 8.43 9.48 21.3 27.59 17.4 46.39-5.66-.35-10.67-2.55-14.4-6.36-5.37-5.49-7.72-14-6.63-23.94.29-2.62-1.17-5.13-3.6-6.17s-5.25-.37-6.95 1.65c-19.33 22.92-45.95 36.76-73.9 38.68h-3.73zm10.05 24.19v-12.73c24.57-2.92 47.92-14.05 66.73-31.8 1.43 7.26 4.63 13.6 9.45 18.52 3.27 3.35 7.14 5.89 11.41 7.58v18.42c0 24.15-19.65 43.8-43.8 43.8s-43.79-19.64-43.79-43.79zm15.89 78.48 19.29 19.29-13.29 13.29-15.84-27.66zm3.22 97.53h-39.42v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.76v-35.63c0-12.68 8.1-23.95 20.15-28.05.26-.09.51-.19.75-.31l46.47-23.23 20.07 35.06c.93 1.62 2.56 2.72 4.41 2.97.27.04.53.05.79.05 1.58 0 3.11-.62 4.24-1.76l.14-.14zm12.08 0 7.41-64.69 5.06-5.06 4.84 4.84 7.86 64.92h-25.17zm128.2 0h-39.76v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.18l-6.2-51.17.25.25c1.13 1.13 2.66 1.76 4.24 1.76.26 0 .53-.02.79-.05 1.85-.25 3.48-1.34 4.41-2.97l20.07-35.06 46.47 23.23c.24.12.49.23.75.31 12.05 4.1 20.15 15.38 20.15 28.05v35.65zm-67.04-346.65h-10.84l28.38 39.84 28.38-39.84h-10.84c-3.31 0-6-2.69-6-6v-64.58h-98.7c-3.31 0-6-2.69-6-6s2.69-6 6-6h104.7c3.31 0 6 2.69 6 6v64.58h16.48c2.25 0 4.3 1.25 5.33 3.25s.86 4.4-.45 6.23l-40.02 56.18c-1.13 1.58-2.95 2.52-4.89 2.52s-3.76-.94-4.89-2.52l-40.02-56.18c-1.3-1.83-1.48-4.23-.45-6.23s3.09-3.25 5.33-3.25h16.48v-23.5h-65.38c-3.31 0-6-2.69-6-6s2.69-6 6-6h71.38c3.31 0 6 2.69 6 6v35.5c.02 3.31-2.67 6-5.98 6zm-118.44 50.65v-133.26c0-21.18-17.23-38.41-38.41-38.41h-207.7c-21.18-.01-38.41 17.23-38.41 38.41v133.26c0 21.18 17.23 38.41 38.41 38.41h105.8l64.8 55.11c1.11.94 2.49 1.43 3.89 1.43.85 0 1.71-.18 2.52-.55 2.12-.98 3.48-3.11 3.48-5.45v-50.54h27.21c21.18 0 38.41-17.23 38.41-38.41zm-71.62 26.41c-3.31 0-6 2.69-6 6v43.56l-56.59-48.13c-1.08-.92-2.46-1.43-3.89-1.43h-108.01c-14.56 0-26.41-11.85-26.41-26.41v-133.26c0-14.56 11.85-26.41 26.41-26.41h207.69c14.56 0 26.41 11.85 26.41 26.41v133.26c0 14.56-11.85 26.41-26.41 26.41zm-156.34-87.87h56.97c3.31 0 6-2.69 6-6v-39.2l8.55-8.55c2.34-2.34 2.34-6.14 0-8.49-2.34-2.34-6.14-2.34-8.48 0l-.7.7c-.98-1.97-3.01-3.32-5.36-3.32h-56.98c-3.31 0-6 2.69-6 6v52.85c0 3.32 2.69 6.01 6 6.01zm6-52.86h44.97v2.69l-18.16 18.16-8.84-8.84c-2.34-2.34-6.14-2.34-8.49 0-2.34 2.34-2.34 6.14 0 8.49l13.08 13.08c1.17 1.17 2.71 1.76 4.24 1.76s3.07-.59 4.24-1.76l13.92-13.92v21.2h-44.96zm173.62 3.08c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 31.92c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 36.52c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.68 5.99 6zm0 31.92c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.69 5.99 6zm-119.36 165.01h10.84l-28.38-39.84-28.38 39.84h10.84c3.31 0 6 2.69 6 6v64.58h98.7c3.31 0 6 2.69 6 6s-2.69 6-6 6h-104.69c-3.31 0-6-2.69-6-6v-64.58h-16.48c-2.25 0-4.3-1.25-5.33-3.25s-.86-4.4.45-6.23l40.02-56.18c1.13-1.58 2.95-2.52 4.89-2.52s3.76.94 4.89 2.52l40.02 56.18c1.3 1.83 1.48 4.23.45 6.23s-3.09 3.25-5.33 3.25h-16.48v23.5h65.38c3.31 0 6 2.69 6 6s-2.69 6-6 6h-71.38c-3.31 0-6-2.69-6-6v-35.5c-.03-3.31 2.66-6 5.97-6z\"></path></svg>				\n									<h5>\n							ærlig<br> rådgivning						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 510 510\"><path d=\"m192.036 385.845c-4.787-46.972-19.459-64.336-30.658-82.352-8.672-13.951-15.5-28.245-15.5-54.252 0-60.242 48.865-109.109 109.135-109.109 60.242 0 109.109 48.866 109.109 109.109 0 26.007-6.828 40.301-15.5 54.252-11.199 18.016-25.871 35.38-30.658 82.352 9.985 2.864 17.345 12.101 17.345 22.975v36.44c0 13.109-10.747 23.866-23.893 23.866h-10.334v9.945c0 12.588-10.341 22.929-22.93 22.929h-46.304c-12.589 0-22.93-10.341-22.93-22.929v-9.945h-10.334c-13.146 0-23.893-10.757-23.893-23.866v-36.44c0-10.874 7.36-20.111 17.345-22.975zm111.948-.917c4.199-42.194 15.78-62.332 26.488-79.049 10.147-15.842 19.65-28.207 19.65-56.638 0-52.513-42.597-95.109-95.109-95.109-52.537 0-95.135 42.596-95.135 95.109 0 28.431 9.503 40.796 19.65 56.638 10.708 16.717 22.289 36.855 26.488 79.049zm2.554-78.61c-1.175 13.701-11.985 24.191-24.783 24.191-13.527 0-24.862-12.086-24.862-26.673v-99.328c0-14.12 11.335-26.673 24.862-26.673 11.309 0 21.031 8.139 23.975 19.497 9.12 3.904 15.688 13.438 15.688 24.78 0 1.153-.068 2.289-.201 3.403 5.078 5.326 8.283 12.802 8.283 21.117 0 6.39-1.889 12.262-5.06 17.053 1.996 4.099 3.13 8.773 3.13 13.76 0 14.1-9.065 25.697-21.032 28.873zm-16.452-109.977c-1.964-2.729-4.916-4.506-8.331-4.506-6.192 0-10.862 6.21-10.862 12.673v99.328c0 6.677 4.67 12.673 10.862 12.673 5.516 0 9.822-4.614 10.717-10.425-4.709-1.416-8.923-4.144-12.279-7.814-2.607-2.852-2.409-7.283.443-9.89 2.851-2.607 7.282-2.408 9.889.443 2.416 2.642 5.72 4.356 9.402 4.356 7.733 0 13.643-7.218 13.643-15.734s-5.91-15.734-13.643-15.734c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7 5.352 0 10.388 1.655 14.658 4.533.593-1.743.915-3.634.915-5.612 0-2.11-.366-4.128-1.036-5.972-.769.858-1.588 1.66-2.453 2.397-2.94 2.507-7.361 2.156-9.869-.784-2.507-2.939-2.155-7.361.784-9.868 2.773-2.365 4.492-6.122 4.492-10.293 0-6.072-3.705-11.374-8.898-12.467-.154-.023-.307-.052-.458-.085-.499-.08-1.01-.121-1.532-.121-2.947 0-5.591 1.389-7.515 3.525-2.585 2.87-7.015 3.101-9.886.515-2.87-2.586-3.101-7.015-.515-9.886 3.111-3.453 7.059-5.988 11.472-7.252zm-104.526 67.344c-3.171-4.791-5.06-10.663-5.06-17.053 0-8.307 3.198-15.777 8.284-21.104-.133-1.118-.202-2.258-.202-3.416 0-11.354 6.582-20.897 15.717-24.792 2.948-11.354 12.67-19.485 23.946-19.485 13.56 0 24.888 12.555 24.888 26.673v99.328c0 14.585-11.328 26.673-24.888 26.673-12.765 0-23.578-10.484-24.757-24.184-11.98-3.166-21.058-14.769-21.058-28.88 0-4.987 1.134-9.661 3.13-13.76zm9.982-23.036c-.675 1.847-1.042 3.869-1.042 5.983 0 1.978.322 3.869.915 5.612 4.27-2.878 9.306-4.533 14.658-4.533 3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7-7.733 0-13.643 7.218-13.643 15.734s5.91 15.734 13.643 15.734c3.682 0 6.986-1.714 9.402-4.356 2.607-2.851 7.038-3.05 9.889-.443 2.852 2.607 3.05 7.038.443 9.89-3.35 3.664-7.556 6.389-12.255 7.807.891 5.813 5.192 10.432 10.693 10.432 6.21 0 10.888-5.993 10.888-12.673v-99.328c0-6.466-4.678-12.673-10.888-12.673-3.404 0-6.349 1.777-8.309 4.507 4.421 1.264 8.367 3.8 11.476 7.251 2.586 2.871 2.355 7.3-.516 9.886-2.87 2.586-7.3 2.355-9.886-.515-1.926-2.138-4.574-3.525-7.54-3.525-.493 0-.976.037-1.448.108-.196.045-.395.082-.596.11-5.165 1.118-8.844 6.404-8.844 12.455 0 1.243.153 2.45.442 3.594.101.284.183.572.246.862.748 2.326 2.071 4.346 3.814 5.823 2.947 2.498 3.311 6.919.813 9.866s-6.919 3.312-9.866.814c-.878-.745-1.71-1.554-2.489-2.422zm3.042 158.279c-5.442 0-9.893 4.451-9.893 9.892v36.44c0 5.423 4.454 9.866 9.893 9.866h17.334c3.866 0 7 3.134 7 7v16.945c0 4.902 4.027 8.929 8.93 8.929h46.304c4.903 0 8.93-4.027 8.93-8.929v-16.945c0-3.866 3.134-7 7-7h17.334c5.439 0 9.893-4.443 9.893-9.866v-36.44c0-5.441-4.451-9.892-9.893-9.892zm63.416-314.093 2.907-5.412c1.828-3.403 6.075-4.683 9.479-2.854 3.403 1.828 4.682 6.075 2.854 9.479l-16.073 29.925c-1.22 2.271-3.589 3.688-6.167 3.688s-4.947-1.417-6.167-3.688l-16.073-29.925c-1.828-3.404-.549-7.651 2.854-9.479 3.404-1.829 7.651-.549 9.479 2.854l2.907 5.412v-69.835c0-3.863 3.137-7 7-7s7 3.137 7 7zm-132.198 54.758-49.381-49.381c-2.732-2.731-2.732-7.167 0-9.899s7.168-2.732 9.9 0l49.38 49.38-1.771-5.881c-1.114-3.7.985-7.608 4.684-8.722 3.7-1.114 7.607.985 8.721 4.685l9.796 32.526c.743 2.468.069 5.145-1.753 6.968-1.823 1.823-4.5 2.496-6.969 1.753l-32.526-9.795c-3.699-1.114-5.798-5.022-4.684-8.721s5.022-5.798 8.721-4.684zm-44.859 122.299h-69.835c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7h69.835l-5.412-2.907c-3.403-1.828-4.682-6.076-2.854-9.479 1.828-3.404 6.075-4.683 9.479-2.855l29.926 16.074c2.271 1.22 3.688 3.589 3.688 6.167 0 2.577-1.417 4.947-3.688 6.166l-29.926 16.074c-3.404 1.828-7.651.549-9.479-2.855-1.828-3.403-.549-7.651 2.854-9.479zm54.758 118.198-49.38 49.38c-2.732 2.732-7.168 2.732-9.9 0s-2.732-7.167 0-9.899l49.381-49.381-5.882 1.772c-3.699 1.114-7.607-.985-8.721-4.685-1.114-3.699.985-7.607 4.684-8.721l32.526-9.795c2.469-.743 5.146-.07 6.969 1.753 1.822 1.823 2.496 4.5 1.753 6.968l-9.796 32.527c-1.114 3.699-5.021 5.798-8.721 4.684-3.699-1.114-5.798-5.022-4.684-8.721zm240.497-240.497 5.882-1.771c3.699-1.114 7.607.985 8.721 4.684s-.985 7.607-4.684 8.721l-32.526 9.795c-2.469.743-5.146.07-6.969-1.753-1.822-1.823-2.496-4.5-1.753-6.968l9.796-32.526c1.114-3.7 5.021-5.799 8.721-4.685 3.699 1.114 5.798 5.022 4.684 8.722l-1.771 5.881 49.38-49.38c2.732-2.732 7.168-2.732 9.9 0s2.732 7.168 0 9.899zm44.859 122.299 5.412 2.906c3.403 1.828 4.682 6.076 2.854 9.479-1.828 3.404-6.075 4.683-9.479 2.855l-29.926-16.074c-2.271-1.219-3.688-3.589-3.688-6.166 0-2.578 1.417-4.947 3.688-6.167l29.926-16.074c3.404-1.828 7.651-.549 9.479 2.855 1.828 3.403.549 7.651-2.854 9.479l-5.412 2.907h69.835c3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7zm-54.758 118.198 1.771 5.882c1.114 3.699-.985 7.607-4.684 8.721-3.7 1.114-7.607-.985-8.721-4.684l-9.796-32.527c-.743-2.468-.069-5.145 1.753-6.968 1.823-1.823 4.5-2.496 6.969-1.753l32.526 9.795c3.699 1.114 5.798 5.022 4.684 8.721-1.114 3.7-5.022 5.799-8.721 4.685l-5.882-1.772 49.381 49.381c2.732 2.732 2.732 7.167 0 9.899s-7.168 2.732-9.9 0z\"></path></svg>				\n									<h5>\n							gennemtænkte løsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"outline\"><path d=\"M486.41,144A28,28,0,0,0,472,92H349.123l5.457-21.828a48.513,48.513,0,0,0-12.848-46.153A41.035,41.035,0,0,0,312.609,12H308a8.009,8.009,0,0,0-8,8V47.413l-19.233,64.112A17.376,17.376,0,0,1,268,123.539V112a4,4,0,0,0-4-4H152a4,4,0,0,0-4,4v72a4,4,0,0,0,8,0V116h72V276H156V248a4,4,0,0,0-8,0v32a4,4,0,0,0,4,4H264a4,4,0,0,0,4-4V268.5h11.168A37.07,37.07,0,0,1,305.092,279a45.025,45.025,0,0,0,31.48,12.752L440,292a27.987,27.987,0,0,0,19.369-48.2,27.987,27.987,0,0,0,16-48A28,28,0,0,0,486.41,144ZM260,276H236V116h24Zm212-88H396a4,4,0,0,0,0,8h60a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h40a20,20,0,0,1,.01,40l-103.428-.25a37.07,37.07,0,0,1-25.924-10.5,45.031,45.031,0,0,0-31.49-12.752H268V131.686a25.317,25.317,0,0,0,20.429-17.862l19.4-64.675A4,4,0,0,0,308,48V20h4.609a33.082,33.082,0,0,1,23.481,9.69,40.507,40.507,0,0,1,10.728,38.541l-6.7,26.8A4,4,0,0,0,344,100H472a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h72a20,20,0,0,1,0,40Z\"></path><path d=\"M194.5,183.243l-1.9-.217a4,4,0,0,0-4.169,2.491L184.29,195.9H135.278l-3.539-9.317a4,4,0,0,0-7.478,2.84l2.459,6.477h-8.474L68.452,156.872a4,4,0,1,0-4.935,6.3L77.6,174.209,56.961,194.48l-6.636-5.491a4,4,0,1,0-5.1,6.163L87.219,229.9a44.1,44.1,0,0,0,28.05,10.1H212a8.009,8.009,0,0,0,8-8V203.9a8.009,8.009,0,0,0-8-8h-8v-2.01A10.708,10.708,0,0,0,194.5,183.243ZM212,203.9V232H115.269a36.081,36.081,0,0,1-22.951-8.264l-29.16-24.128,20.8-20.422L114.4,203.045a4,4,0,0,0,2.468.852H187a4,4,0,0,0,3.715-2.517l3.929-9.843a2.712,2.712,0,0,1,1.356,2.35v6.01a4,4,0,0,0,4,4Z\"></path><path d=\"M223.084,484.672,200.87,469.863V346.36A44.1,44.1,0,0,0,195.327,325l-17.183-30.94a4,4,0,0,0-7,3.884l17.184,30.94a36.073,36.073,0,0,1,4.537,17.478V468H164.333a4,4,0,1,0,0,8h31.321l12,8H152.865V352a4,4,0,0,0-.358-1.655l-25.454-56A4,4,0,0,0,123.411,292H114.2a4,4,0,0,0-3.945,4.658l8.862,53.175a36.016,36.016,0,0,1-1.951,18.949L78.642,468H48.333a4,4,0,1,0,0,8H80.377L92,484H32.088L76.63,361.366a4.017,4.017,0,0,0,.183-2.044L61.1,268H136a4,4,0,0,0,0-8H59.233L30.555,173.966A19.723,19.723,0,0,1,49.27,148H76a12,12,0,0,0,24,0h15.2a21.975,21.975,0,0,1,8.395,1.652l10.889,4.458a4,4,0,1,0,3.032-7.4L126.63,142.25A29.938,29.938,0,0,0,115.2,140H100v-4.527A16.014,16.014,0,0,0,112,120V103.473A16.014,16.014,0,0,0,124,88V80a4,4,0,0,0-4-4H90A22.025,22.025,0,0,0,68,98v18a12.02,12.02,0,0,0,8,11.314V140H49.27a27.723,27.723,0,0,0-26.305,36.5l29.493,88.482,16.29,94.655-46.128,127A4,4,0,0,0,26.38,492h78.485a4,4,0,0,0,2.268-7.3L86.3,470.368l38.318-98.69a44.018,44.018,0,0,0,2.385-23.16L118.921,300h1.914l24.03,52.867V488a4,4,0,0,0,4,4h72a4,4,0,0,0,2.219-7.328ZM76,98A14.015,14.015,0,0,1,90,84h26v4a8.009,8.009,0,0,1-8,8H92a4,4,0,0,0-4,4,11.962,11.962,0,0,1-1.53,5.881A12.044,12.044,0,0,0,76,104.686Zm4,14a3.981,3.981,0,0,1,3.407,1.9,4,4,0,0,0,5.956.975c.207-.171.7-.648.7-.648.032-.028.061-.057.09-.087A19.907,19.907,0,0,0,95.6,104H104v16a8.009,8.009,0,0,1-8,8,12.133,12.133,0,0,1-2.681-.3,4,4,0,1,0-1.775,7.8c.151.035.3.06.456.091V148a4,4,0,1,1-8,0V124a4,4,0,0,0-4-4,4,4,0,0,1,0-8Z\"></path></g></svg>				\n									<h5>\n							arbejde udført med ansvar						\n					</h5>\n				<p>Vi lover ikke mere, end vi kan holde – men vi holder det, vi lover.</p>			<h2>KONTAKT OS</h2>		<p>Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.</p>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 15:07:40', '2026-01-26 15:07:40', '', 10, 'https://mrarif.me/cpnordic/?p=705', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(706, 1, '2026-01-26 15:07:40', '2026-01-26 15:07:40', '<h1>CP NORDIC ApS</h1>					<h4>Byggeri – Tømrerarbejde og tagdækning</h4>										<a href=\"#\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"#\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"#\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle ANMELDELSER\n					</a>\n					<h2>HVORFOR VÆLGE CP NORDIC ApS?</h2>		<p>Når du vælger CP NORDIC ApS, får du:</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 450 450\" width=\"512\"><g><g><path d=\"m225 165.2c-25.9 0-48.9-18.8-53.3-45.2-2.4-14.2.9-28.6 9.3-40.3 8.4-11.8 20.9-19.5 35.1-21.9 29.4-4.9 57.3 15 62.2 44.5 4.9 29.4-15 57.3-44.4 62.2-3 .5-6 .7-8.9.7zm-7.6-99.8c-12.2 2-22.9 8.7-30.1 18.8s-10.1 22.4-8 34.6c3.8 22.7 23.5 38.8 45.7 38.8 2.5 0 5.1-.2 7.6-.6 25.2-4.2 42.3-28.1 38.1-53.4s-28.1-42.4-53.3-38.2z\"></path><path d=\"m255.2 115c-2.1 0-3.8-1.7-3.8-3.8 0-14.6-11.8-26.4-26.4-26.4-2.1 0-3.8-1.7-3.8-3.8s1.7-3.8 3.8-3.8c18.8 0 34.1 15.3 34.1 34.1 0 2-1.8 3.7-3.9 3.7z\"></path><path d=\"m236.1 203h-22.2c-2.1 0-3.8-1.7-3.8-3.8v-14.1c-3.1-.6-6.1-1.4-9.1-2.4l-7 12.2c-1.1 1.8-3.4 2.5-5.3 1.4l-19.2-11.1c-.9-.5-1.5-1.4-1.8-2.3-.3-1-.1-2 .4-2.9l7-12.1c-2.4-2.1-4.6-4.3-6.7-6.6l-12.1 7c-1.8 1.1-4.2.4-5.2-1.4l-11.1-19.2c-1.1-1.8-.4-4.2 1.4-5.2l11.9-6.8c-1-3-1.9-6.1-2.6-9.3h-13.7c-2.1 0-3.8-1.7-3.8-3.8v-22.2c0-2.1 1.7-3.8 3.8-3.8h13.4c.6-3.2 1.4-6.4 2.4-9.5l-11.5-6.6c-1.8-1.1-2.5-3.4-1.4-5.3l11.1-19.6c.5-.9 1.4-1.5 2.3-1.8s2-.1 2.9.4l11.3 6.6c2.2-2.5 4.5-4.8 7-7l-6.5-11.3c-.5-.9-.6-1.9-.4-2.9.3-1 .9-1.8 1.8-2.3l19.2-11.1c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l6.4 11.2c3.1-1.1 6.4-1.9 9.7-2.6v-13c0-2.1 1.7-3.8 3.8-3.8h22.2c2.1 0 3.8 1.7 3.8 3.8v12.8c3.3.7 6.5 1.5 9.7 2.6l6.5-11.2c.5-.9 1.4-1.5 2.3-1.8 1-.3 2-.1 2.9.4l19.2 11.1c.9.5 1.5 1.3 1.8 2.3s.1 2-.4 2.9l-6.5 11.3c2.5 2.2 4.8 4.5 7 7.1l11.3-6.6c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l11.1 19.2c1.1 1.8.4 4.2-1.4 5.3l-11.5 6.6c1 3.1 1.8 6.3 2.5 9.5h13.6c2.1 0 3.8 1.7 3.8 3.8v22.2c0 2.1-1.7 3.8-3.8 3.8h-13.6c-.6 3.1-1.5 6.2-2.5 9.3l11.9 6.8c1.8 1.1 2.5 3.4 1.4 5.2l-11.2 19.5c-1.1 1.8-3.4 2.5-5.2 1.4l-12-7c-2.1 2.4-4.4 4.6-6.7 6.6l7 12.1c.5.9.6 1.9.4 2.9s-.9 1.8-1.8 2.3l-19.2 11.1c-1.8 1.1-4.2.4-5.2-1.4l-7-12.2c-3 1-6 1.8-9.1 2.4v14.1c-.2 2.3-2 4-4.1 4zm-18.4-7.7h14.5v-13.5c0-1.9 1.4-3.5 3.3-3.8 4.7-.7 9.4-2 13.8-3.7 1.8-.7 3.8 0 4.7 1.7l6.7 11.6 12.6-7.3-6.7-11.6c-1-1.6-.5-3.7.9-4.9 3.7-3 7.2-6.4 10.2-10.1 1.2-1.5 3.3-1.8 4.9-.9l11.5 6.6 7.3-12.6-11.3-6.5c-1.6-.9-2.4-3-1.6-4.7 1.8-4.5 3.1-9.2 3.9-14 .3-1.9 1.9-3.2 3.8-3.2h13v-14.6h-12.8c-1.9 0-3.5-1.4-3.8-3.3-.7-4.8-2-9.6-3.7-14.2-.7-1.8 0-3.7 1.7-4.7l10.9-6.3-7.3-12.6-10.8 6.3c-1.6.9-3.7.6-4.9-.9-3.1-3.9-6.6-7.4-10.4-10.6-1.5-1.2-1.9-3.3-.9-4.9l6.2-10.7-12.6-7.3-6.1 10.6c-1 1.6-3 2.3-4.7 1.7-4.6-1.8-9.5-3.1-14.4-3.9-1.9-.3-3.3-1.9-3.3-3.8v-12.2h-14.5v12.3c0 1.9-1.4 3.5-3.3 3.8-5 .8-9.8 2.1-14.4 3.9-1.8.7-3.8 0-4.7-1.7l-6.1-10.6-12.6 7.3 6.2 10.7c.9 1.6.6 3.7-.9 4.9-3.9 3.1-7.4 6.7-10.4 10.6-1.2 1.5-3.3 1.9-4.9.9l-10.8-6.3-7.3 12.6 10.9 6.3c1.6.9 2.3 2.9 1.7 4.7-1.7 4.6-3 9.4-3.7 14.2-.3 1.9-1.9 3.3-3.8 3.3h-12.8v14.5h13c1.9 0 3.5 1.4 3.8 3.2.8 4.8 2.1 9.5 3.9 14 .7 1.8 0 3.8-1.6 4.7l-11.3 6.5 7.3 12.6 11.5-6.6c1.6-.9 3.7-.6 4.9.9 3 3.7 6.5 7.1 10.3 10.1 1.5 1.2 1.9 3.3.9 4.9l-6.7 11.6 12.6 7.3 6.7-11.6c.9-1.6 2.9-2.3 4.7-1.7 4.5 1.7 9.1 2.9 13.8 3.7 1.9.3 3.3 1.9 3.3 3.8z\"></path></g><g><g><g><path d=\"m45.3 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m153.9 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path></g><g><path d=\"m189.3 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.2c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c0 2.1-1.7 3.8-3.8 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m73.3 326.4c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m126 326.4c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m99.7 325.6c-.6 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4s4.1 1.1 4.4 3.2c2.4 16.5 12.3 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m50.2 266.6c-.1 0-.2 0-.3 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.7 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-8.9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.5 2.2zm81.8-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13.1-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.4-.7 2.3-.7z\"></path></g></g></g><g><g><path d=\"m296.1 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m404.7 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path></g><g><path d=\"m440 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.1c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c.2 2.1-1.6 3.8-3.7 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m324 326.3c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m376.7 326.3c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m350.4 325.6c-.5 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4 2.1-.3 4 1.1 4.4 3.2 2.4 16.5 12.4 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m301 266.6c-.1 0-.2 0-.4 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.6 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.4 2.2zm81.7-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.5-.7 2.3-.7z\"></path></g></g></g></g></g></svg>				\n									<h5>\n							et ungt og engageret team						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"496pt\" viewBox=\"0 0 496 496\" width=\"496pt\"><path d=\"m440 328h-28.207031c5.078125-6.703125 8.207031-14.960938 8.207031-24 0-8.824219-7.175781-16-16-16h-12v-19.960938c59.574219-14.445312 104-68.085937 104-132.039062 0-74.992188-61.007812-136-136-136s-136 61.007812-136 136c0 63.953125 44.425781 117.59375 104 132.039062v19.960938h-8.449219c-6.167969 0-12.359375 1.464844-17.886719 4.214844l-50.480468 25.25c-3.320313 1.664062-7.03125 2.535156-10.734375 2.535156h-40.449219v-16h-104v16h56v56h16v-56h16v128h-16v-56h-16v56h-56v16h104v-16h40.449219c3.703125 0 7.414062.871094 10.734375 2.527344l34.488281 17.25c5.519531 2.757812 11.710937 4.222656 17.878906 4.222656h24.449219v24h64v-24h48c13.230469 0 24-10.769531 24-24 0-6.167969-2.40625-11.742188-6.238281-16 3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16 0-13.230469-10.769531-24-24-24zm8 24c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm-208-280c0-66.167969 53.832031-120 120-120s120 53.832031 120 120-53.832031 120-120 120-120-53.832031-120-120zm104 134.976562c5.257812.617188 10.574219 1.023438 16 1.023438s10.742188-.40625 16-1.023438v17.023438h-32zm-40.449219 185.023438c-3.703125 0-7.414062-.871094-10.734375-2.527344l-34.488281-17.25c-5.519531-2.757812-11.710937-4.222656-17.878906-4.222656h-40.449219v-96h40.449219c6.167969 0 12.359375-1.464844 17.886719-4.214844l50.480468-25.25c3.320313-1.664062 7.03125-2.535156 10.734375-2.535156h84.449219c0 13.230469-10.769531 24-24 24h-48.28125l-23.863281 35.808594c-6.101563 9.160156-14.527344 16.589844-24.367188 21.503906-8.753906 4.375-18.542969 6.6875-28.320312 6.6875h-15.167969v16h15.167969c12.246093 0 24.519531-2.894531 35.472656-8.375 12.328125-6.160156 22.878906-15.480469 30.527344-26.945312l6.832031-10.253907v93.574219zm40.449219 24v-136h17.472656c-.898437 2.511719-1.472656 5.183594-1.472656 8 0 6.167969 2.40625 11.742188 6.238281 16-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16 0 10.414062 6.710938 19.214844 16 22.527344v9.472656zm96-24h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8s-3.59375 8-8 8zm0 0\"></path><path d=\"m394.878906 73.007812-7.757812 13.984376c17.816406 9.878906 28.878906 28.664062 28.878906 49.007812h16c0-26.160156-14.222656-50.296875-37.121094-62.992188zm0 0\"></path><path d=\"m360 80c4.734375 0 9.449219.59375 14.007812 1.769531l3.976563-15.503906c-5.855469-1.496094-11.90625-2.265625-17.984375-2.265625zm0 0\"></path><path d=\"m360 48c48.519531 0 88 39.480469 88 88 0 20.753906-7.398438 40.910156-20.832031 56.785156l12.207031 10.34375c15.882812-18.761718 24.625-42.601562 24.625-67.128906 0-57.34375-46.65625-104-104-104-24.527344 0-48.367188 8.753906-67.128906 24.632812l10.335937 12.199219c15.871094-13.433593 36.039063-20.832031 56.792969-20.832031zm0 0\"></path><path d=\"m427.128906 215.367188-10.335937-12.199219c-15.871094 13.433593-36.039063 20.832031-56.792969 20.832031-48.519531 0-88-39.480469-88-88 0-20.753906 7.398438-40.910156 20.832031-56.785156l-12.207031-10.34375c-15.882812 18.761718-24.625 42.601562-24.625 67.128906 0 57.34375 46.65625 104 104 104 24.527344 0 48.367188-8.753906 67.128906-24.632812zm0 0\"></path><path d=\"m121.214844 165.640625c4.953125-1.375 9.695312-3.34375 14.183594-5.878906l9.769531 4.886719 19.472656-19.480469-4.886719-9.769531c2.535156-4.496094 4.503906-9.230469 5.886719-14.183594l10.359375-3.445313v-27.53125l-10.351562-3.453125c-1.375-4.953125-3.34375-9.707031-5.886719-14.183594l4.886719-9.777343-19.472657-19.472657-9.769531 4.886719c-4.484375-2.535156-9.230469-4.503906-14.183594-5.878906l-3.453125-10.359375h-27.539062l-3.445313 10.359375c-4.953125 1.375-9.695312 3.34375-14.183594 5.878906l-9.777343-4.886719-19.472657 19.472657 4.886719 9.777343c-2.535156 4.488282-4.503906 9.230469-5.886719 14.183594l-10.351562 3.445313v27.53125l10.351562 3.453125c1.375 4.953125 3.34375 9.695312 5.886719 14.183594l-4.886719 9.769531 19.472657 19.480469 9.769531-4.886719c4.484375 2.535156 9.230469 4.503906 14.183594 5.878906l3.453125 10.359375h27.539062zm-12.304688-13.679687-2.679687 8.039062h-4.460938l-2.679687-8.039062-4.554688-.90625c-6.128906-1.222657-11.878906-3.605469-17.109375-7.09375l-3.867187-2.578126-7.574219 3.800782-3.160156-3.167969 3.792969-7.582031-2.578126-3.859375c-3.488281-5.222657-5.871093-10.980469-7.09375-17.109375l-.914062-4.554688-8.03125-2.679687v-4.46875l8.03125-2.671875.914062-4.554688c1.222657-6.136718 3.613282-11.886718 7.09375-17.109375l2.578126-3.859375-3.792969-7.589844 3.160156-3.160156 7.574219 3.800782 3.867187-2.578126c5.222657-3.488281 10.980469-5.863281 17.109375-7.09375l4.554688-.90625 2.679687-8.039062h4.460938l2.679687 8.039062 4.554688.90625c6.128906 1.222657 11.878906 3.605469 17.109375 7.09375l3.867187 2.578126 7.574219-3.800782 3.160156 3.160156-3.792969 7.589844 2.578126 3.859375c3.488281 5.214844 5.871093 10.972657 7.09375 17.109375l.914062 4.554688 8.03125 2.679687v4.46875l-8.03125 2.671875-.914062 4.554688c-1.222657 6.128906-3.613282 11.878906-7.09375 17.109375l-2.578126 3.859375 3.792969 7.582031-3.160156 3.167969-7.574219-3.800782-3.867187 2.578126c-5.222657 3.488281-10.980469 5.863281-17.109375 7.09375zm0 0\"></path><path d=\"m104 72c-17.648438 0-32 14.351562-32 32s14.351562 32 32 32 32-14.351562 32-32-14.351562-32-32-32zm0 48c-8.824219 0-16-7.175781-16-16s7.175781-16 16-16 16 7.175781 16 16-7.175781 16-16 16zm0 0\"></path><path d=\"m160 248v-40h48v-208h-208v208h106.664062zm-144-232h176v176h-48v24l-32-24h-96zm0 0\"></path><path d=\"m0 272h16v16h-16zm0 0\"></path><path d=\"m32 272h16v16h-16zm0 0\"></path><path d=\"m64 272h16v16h-16zm0 0\"></path><path d=\"m32 304h16v16h-16zm0 0\"></path><path d=\"m64 304h16v16h-16zm0 0\"></path><path d=\"m0 480h16v16h-16zm0 0\"></path><path d=\"m32 480h16v16h-16zm0 0\"></path><path d=\"m64 480h16v16h-16zm0 0\"></path><path d=\"m32 448h16v16h-16zm0 0\"></path><path d=\"m64 448h16v16h-16zm0 0\"></path></svg>				\n									<h5>\n							fokus på kvalitet og detaljer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m469.12 408.93-67.26-33.63v-22.13c10.71-7.69 18.6-19.07 21.78-32.27h5.28c8.81 0 15.98-7.17 15.98-15.98v-5.29c0-6.35-3.74-11.84-9.12-14.41 5.19-18.64-1.65-39.76-19.44-59.78-12.58-14.16-30.67-22.27-49.62-22.27-18.93 0-37.01 8.12-49.59 22.27-13.38 15.05-20.95 41.01-14.03 59.62-5.56 2.5-9.45 8.09-9.45 14.57v5.29c0 8.81 7.17 15.98 15.98 15.98h5.55c3.16 13.09 10.94 24.39 21.51 32.08v22.32l-67.26 33.63c-16.7 5.87-27.89 21.6-27.89 39.28v41.63c0 3.31 2.69 6 6 6h243.46c3.31 0 6-2.69 6-6v-41.63c0-17.68-11.19-33.41-27.88-39.28zm-62.24-17.7-15.83 27.66-13.29-13.29 19.29-19.29zm-37.61 5.88-20.59-20.58v-16.91c6.41 2.57 13.4 4.01 20.72 4.01 7.22 0 14.11-1.39 20.45-3.9v16.8zm63.63-97.48v5.29c0 2.16-1.82 3.98-3.98 3.98h-3.74c.01-.36.03-.71.03-1.07v-12.18h3.71c2.15-.01 3.98 1.82 3.98 3.98zm-119.29 8.2v1.07h-3.98c-2.16 0-3.98-1.82-3.98-3.98v-5.29c0-2.16 1.82-3.98 3.98-3.98l3.98.22zm1.95-24.19c-7.33-13.69-.89-37.39 10.53-50.24 10.31-11.6 25.12-18.25 40.63-18.25 15.52 0 30.34 6.65 40.65 18.25 8.43 9.48 21.3 27.59 17.4 46.39-5.66-.35-10.67-2.55-14.4-6.36-5.37-5.49-7.72-14-6.63-23.94.29-2.62-1.17-5.13-3.6-6.17s-5.25-.37-6.95 1.65c-19.33 22.92-45.95 36.76-73.9 38.68h-3.73zm10.05 24.19v-12.73c24.57-2.92 47.92-14.05 66.73-31.8 1.43 7.26 4.63 13.6 9.45 18.52 3.27 3.35 7.14 5.89 11.41 7.58v18.42c0 24.15-19.65 43.8-43.8 43.8s-43.79-19.64-43.79-43.79zm15.89 78.48 19.29 19.29-13.29 13.29-15.84-27.66zm3.22 97.53h-39.42v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.76v-35.63c0-12.68 8.1-23.95 20.15-28.05.26-.09.51-.19.75-.31l46.47-23.23 20.07 35.06c.93 1.62 2.56 2.72 4.41 2.97.27.04.53.05.79.05 1.58 0 3.11-.62 4.24-1.76l.14-.14zm12.08 0 7.41-64.69 5.06-5.06 4.84 4.84 7.86 64.92h-25.17zm128.2 0h-39.76v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.18l-6.2-51.17.25.25c1.13 1.13 2.66 1.76 4.24 1.76.26 0 .53-.02.79-.05 1.85-.25 3.48-1.34 4.41-2.97l20.07-35.06 46.47 23.23c.24.12.49.23.75.31 12.05 4.1 20.15 15.38 20.15 28.05v35.65zm-67.04-346.65h-10.84l28.38 39.84 28.38-39.84h-10.84c-3.31 0-6-2.69-6-6v-64.58h-98.7c-3.31 0-6-2.69-6-6s2.69-6 6-6h104.7c3.31 0 6 2.69 6 6v64.58h16.48c2.25 0 4.3 1.25 5.33 3.25s.86 4.4-.45 6.23l-40.02 56.18c-1.13 1.58-2.95 2.52-4.89 2.52s-3.76-.94-4.89-2.52l-40.02-56.18c-1.3-1.83-1.48-4.23-.45-6.23s3.09-3.25 5.33-3.25h16.48v-23.5h-65.38c-3.31 0-6-2.69-6-6s2.69-6 6-6h71.38c3.31 0 6 2.69 6 6v35.5c.02 3.31-2.67 6-5.98 6zm-118.44 50.65v-133.26c0-21.18-17.23-38.41-38.41-38.41h-207.7c-21.18-.01-38.41 17.23-38.41 38.41v133.26c0 21.18 17.23 38.41 38.41 38.41h105.8l64.8 55.11c1.11.94 2.49 1.43 3.89 1.43.85 0 1.71-.18 2.52-.55 2.12-.98 3.48-3.11 3.48-5.45v-50.54h27.21c21.18 0 38.41-17.23 38.41-38.41zm-71.62 26.41c-3.31 0-6 2.69-6 6v43.56l-56.59-48.13c-1.08-.92-2.46-1.43-3.89-1.43h-108.01c-14.56 0-26.41-11.85-26.41-26.41v-133.26c0-14.56 11.85-26.41 26.41-26.41h207.69c14.56 0 26.41 11.85 26.41 26.41v133.26c0 14.56-11.85 26.41-26.41 26.41zm-156.34-87.87h56.97c3.31 0 6-2.69 6-6v-39.2l8.55-8.55c2.34-2.34 2.34-6.14 0-8.49-2.34-2.34-6.14-2.34-8.48 0l-.7.7c-.98-1.97-3.01-3.32-5.36-3.32h-56.98c-3.31 0-6 2.69-6 6v52.85c0 3.32 2.69 6.01 6 6.01zm6-52.86h44.97v2.69l-18.16 18.16-8.84-8.84c-2.34-2.34-6.14-2.34-8.49 0-2.34 2.34-2.34 6.14 0 8.49l13.08 13.08c1.17 1.17 2.71 1.76 4.24 1.76s3.07-.59 4.24-1.76l13.92-13.92v21.2h-44.96zm173.62 3.08c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 31.92c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 36.52c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.68 5.99 6zm0 31.92c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.69 5.99 6zm-119.36 165.01h10.84l-28.38-39.84-28.38 39.84h10.84c3.31 0 6 2.69 6 6v64.58h98.7c3.31 0 6 2.69 6 6s-2.69 6-6 6h-104.69c-3.31 0-6-2.69-6-6v-64.58h-16.48c-2.25 0-4.3-1.25-5.33-3.25s-.86-4.4.45-6.23l40.02-56.18c1.13-1.58 2.95-2.52 4.89-2.52s3.76.94 4.89 2.52l40.02 56.18c1.3 1.83 1.48 4.23.45 6.23s-3.09 3.25-5.33 3.25h-16.48v23.5h65.38c3.31 0 6 2.69 6 6s-2.69 6-6 6h-71.38c-3.31 0-6-2.69-6-6v-35.5c-.03-3.31 2.66-6 5.97-6z\"></path></svg>				\n									<h5>\n							ærlig<br> rådgivning						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 510 510\"><path d=\"m192.036 385.845c-4.787-46.972-19.459-64.336-30.658-82.352-8.672-13.951-15.5-28.245-15.5-54.252 0-60.242 48.865-109.109 109.135-109.109 60.242 0 109.109 48.866 109.109 109.109 0 26.007-6.828 40.301-15.5 54.252-11.199 18.016-25.871 35.38-30.658 82.352 9.985 2.864 17.345 12.101 17.345 22.975v36.44c0 13.109-10.747 23.866-23.893 23.866h-10.334v9.945c0 12.588-10.341 22.929-22.93 22.929h-46.304c-12.589 0-22.93-10.341-22.93-22.929v-9.945h-10.334c-13.146 0-23.893-10.757-23.893-23.866v-36.44c0-10.874 7.36-20.111 17.345-22.975zm111.948-.917c4.199-42.194 15.78-62.332 26.488-79.049 10.147-15.842 19.65-28.207 19.65-56.638 0-52.513-42.597-95.109-95.109-95.109-52.537 0-95.135 42.596-95.135 95.109 0 28.431 9.503 40.796 19.65 56.638 10.708 16.717 22.289 36.855 26.488 79.049zm2.554-78.61c-1.175 13.701-11.985 24.191-24.783 24.191-13.527 0-24.862-12.086-24.862-26.673v-99.328c0-14.12 11.335-26.673 24.862-26.673 11.309 0 21.031 8.139 23.975 19.497 9.12 3.904 15.688 13.438 15.688 24.78 0 1.153-.068 2.289-.201 3.403 5.078 5.326 8.283 12.802 8.283 21.117 0 6.39-1.889 12.262-5.06 17.053 1.996 4.099 3.13 8.773 3.13 13.76 0 14.1-9.065 25.697-21.032 28.873zm-16.452-109.977c-1.964-2.729-4.916-4.506-8.331-4.506-6.192 0-10.862 6.21-10.862 12.673v99.328c0 6.677 4.67 12.673 10.862 12.673 5.516 0 9.822-4.614 10.717-10.425-4.709-1.416-8.923-4.144-12.279-7.814-2.607-2.852-2.409-7.283.443-9.89 2.851-2.607 7.282-2.408 9.889.443 2.416 2.642 5.72 4.356 9.402 4.356 7.733 0 13.643-7.218 13.643-15.734s-5.91-15.734-13.643-15.734c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7 5.352 0 10.388 1.655 14.658 4.533.593-1.743.915-3.634.915-5.612 0-2.11-.366-4.128-1.036-5.972-.769.858-1.588 1.66-2.453 2.397-2.94 2.507-7.361 2.156-9.869-.784-2.507-2.939-2.155-7.361.784-9.868 2.773-2.365 4.492-6.122 4.492-10.293 0-6.072-3.705-11.374-8.898-12.467-.154-.023-.307-.052-.458-.085-.499-.08-1.01-.121-1.532-.121-2.947 0-5.591 1.389-7.515 3.525-2.585 2.87-7.015 3.101-9.886.515-2.87-2.586-3.101-7.015-.515-9.886 3.111-3.453 7.059-5.988 11.472-7.252zm-104.526 67.344c-3.171-4.791-5.06-10.663-5.06-17.053 0-8.307 3.198-15.777 8.284-21.104-.133-1.118-.202-2.258-.202-3.416 0-11.354 6.582-20.897 15.717-24.792 2.948-11.354 12.67-19.485 23.946-19.485 13.56 0 24.888 12.555 24.888 26.673v99.328c0 14.585-11.328 26.673-24.888 26.673-12.765 0-23.578-10.484-24.757-24.184-11.98-3.166-21.058-14.769-21.058-28.88 0-4.987 1.134-9.661 3.13-13.76zm9.982-23.036c-.675 1.847-1.042 3.869-1.042 5.983 0 1.978.322 3.869.915 5.612 4.27-2.878 9.306-4.533 14.658-4.533 3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7-7.733 0-13.643 7.218-13.643 15.734s5.91 15.734 13.643 15.734c3.682 0 6.986-1.714 9.402-4.356 2.607-2.851 7.038-3.05 9.889-.443 2.852 2.607 3.05 7.038.443 9.89-3.35 3.664-7.556 6.389-12.255 7.807.891 5.813 5.192 10.432 10.693 10.432 6.21 0 10.888-5.993 10.888-12.673v-99.328c0-6.466-4.678-12.673-10.888-12.673-3.404 0-6.349 1.777-8.309 4.507 4.421 1.264 8.367 3.8 11.476 7.251 2.586 2.871 2.355 7.3-.516 9.886-2.87 2.586-7.3 2.355-9.886-.515-1.926-2.138-4.574-3.525-7.54-3.525-.493 0-.976.037-1.448.108-.196.045-.395.082-.596.11-5.165 1.118-8.844 6.404-8.844 12.455 0 1.243.153 2.45.442 3.594.101.284.183.572.246.862.748 2.326 2.071 4.346 3.814 5.823 2.947 2.498 3.311 6.919.813 9.866s-6.919 3.312-9.866.814c-.878-.745-1.71-1.554-2.489-2.422zm3.042 158.279c-5.442 0-9.893 4.451-9.893 9.892v36.44c0 5.423 4.454 9.866 9.893 9.866h17.334c3.866 0 7 3.134 7 7v16.945c0 4.902 4.027 8.929 8.93 8.929h46.304c4.903 0 8.93-4.027 8.93-8.929v-16.945c0-3.866 3.134-7 7-7h17.334c5.439 0 9.893-4.443 9.893-9.866v-36.44c0-5.441-4.451-9.892-9.893-9.892zm63.416-314.093 2.907-5.412c1.828-3.403 6.075-4.683 9.479-2.854 3.403 1.828 4.682 6.075 2.854 9.479l-16.073 29.925c-1.22 2.271-3.589 3.688-6.167 3.688s-4.947-1.417-6.167-3.688l-16.073-29.925c-1.828-3.404-.549-7.651 2.854-9.479 3.404-1.829 7.651-.549 9.479 2.854l2.907 5.412v-69.835c0-3.863 3.137-7 7-7s7 3.137 7 7zm-132.198 54.758-49.381-49.381c-2.732-2.731-2.732-7.167 0-9.899s7.168-2.732 9.9 0l49.38 49.38-1.771-5.881c-1.114-3.7.985-7.608 4.684-8.722 3.7-1.114 7.607.985 8.721 4.685l9.796 32.526c.743 2.468.069 5.145-1.753 6.968-1.823 1.823-4.5 2.496-6.969 1.753l-32.526-9.795c-3.699-1.114-5.798-5.022-4.684-8.721s5.022-5.798 8.721-4.684zm-44.859 122.299h-69.835c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7h69.835l-5.412-2.907c-3.403-1.828-4.682-6.076-2.854-9.479 1.828-3.404 6.075-4.683 9.479-2.855l29.926 16.074c2.271 1.22 3.688 3.589 3.688 6.167 0 2.577-1.417 4.947-3.688 6.166l-29.926 16.074c-3.404 1.828-7.651.549-9.479-2.855-1.828-3.403-.549-7.651 2.854-9.479zm54.758 118.198-49.38 49.38c-2.732 2.732-7.168 2.732-9.9 0s-2.732-7.167 0-9.899l49.381-49.381-5.882 1.772c-3.699 1.114-7.607-.985-8.721-4.685-1.114-3.699.985-7.607 4.684-8.721l32.526-9.795c2.469-.743 5.146-.07 6.969 1.753 1.822 1.823 2.496 4.5 1.753 6.968l-9.796 32.527c-1.114 3.699-5.021 5.798-8.721 4.684-3.699-1.114-5.798-5.022-4.684-8.721zm240.497-240.497 5.882-1.771c3.699-1.114 7.607.985 8.721 4.684s-.985 7.607-4.684 8.721l-32.526 9.795c-2.469.743-5.146.07-6.969-1.753-1.822-1.823-2.496-4.5-1.753-6.968l9.796-32.526c1.114-3.7 5.021-5.799 8.721-4.685 3.699 1.114 5.798 5.022 4.684 8.722l-1.771 5.881 49.38-49.38c2.732-2.732 7.168-2.732 9.9 0s2.732 7.168 0 9.899zm44.859 122.299 5.412 2.906c3.403 1.828 4.682 6.076 2.854 9.479-1.828 3.404-6.075 4.683-9.479 2.855l-29.926-16.074c-2.271-1.219-3.688-3.589-3.688-6.166 0-2.578 1.417-4.947 3.688-6.167l29.926-16.074c3.404-1.828 7.651-.549 9.479 2.855 1.828 3.403.549 7.651-2.854 9.479l-5.412 2.907h69.835c3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7zm-54.758 118.198 1.771 5.882c1.114 3.699-.985 7.607-4.684 8.721-3.7 1.114-7.607-.985-8.721-4.684l-9.796-32.527c-.743-2.468-.069-5.145 1.753-6.968 1.823-1.823 4.5-2.496 6.969-1.753l32.526 9.795c3.699 1.114 5.798 5.022 4.684 8.721-1.114 3.7-5.022 5.799-8.721 4.685l-5.882-1.772 49.381 49.381c2.732 2.732 2.732 7.167 0 9.899s-7.168 2.732-9.9 0z\"></path></svg>				\n									<h5>\n							gennemtænkte løsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"outline\"><path d=\"M486.41,144A28,28,0,0,0,472,92H349.123l5.457-21.828a48.513,48.513,0,0,0-12.848-46.153A41.035,41.035,0,0,0,312.609,12H308a8.009,8.009,0,0,0-8,8V47.413l-19.233,64.112A17.376,17.376,0,0,1,268,123.539V112a4,4,0,0,0-4-4H152a4,4,0,0,0-4,4v72a4,4,0,0,0,8,0V116h72V276H156V248a4,4,0,0,0-8,0v32a4,4,0,0,0,4,4H264a4,4,0,0,0,4-4V268.5h11.168A37.07,37.07,0,0,1,305.092,279a45.025,45.025,0,0,0,31.48,12.752L440,292a27.987,27.987,0,0,0,19.369-48.2,27.987,27.987,0,0,0,16-48A28,28,0,0,0,486.41,144ZM260,276H236V116h24Zm212-88H396a4,4,0,0,0,0,8h60a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h40a20,20,0,0,1,.01,40l-103.428-.25a37.07,37.07,0,0,1-25.924-10.5,45.031,45.031,0,0,0-31.49-12.752H268V131.686a25.317,25.317,0,0,0,20.429-17.862l19.4-64.675A4,4,0,0,0,308,48V20h4.609a33.082,33.082,0,0,1,23.481,9.69,40.507,40.507,0,0,1,10.728,38.541l-6.7,26.8A4,4,0,0,0,344,100H472a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h72a20,20,0,0,1,0,40Z\"></path><path d=\"M194.5,183.243l-1.9-.217a4,4,0,0,0-4.169,2.491L184.29,195.9H135.278l-3.539-9.317a4,4,0,0,0-7.478,2.84l2.459,6.477h-8.474L68.452,156.872a4,4,0,1,0-4.935,6.3L77.6,174.209,56.961,194.48l-6.636-5.491a4,4,0,1,0-5.1,6.163L87.219,229.9a44.1,44.1,0,0,0,28.05,10.1H212a8.009,8.009,0,0,0,8-8V203.9a8.009,8.009,0,0,0-8-8h-8v-2.01A10.708,10.708,0,0,0,194.5,183.243ZM212,203.9V232H115.269a36.081,36.081,0,0,1-22.951-8.264l-29.16-24.128,20.8-20.422L114.4,203.045a4,4,0,0,0,2.468.852H187a4,4,0,0,0,3.715-2.517l3.929-9.843a2.712,2.712,0,0,1,1.356,2.35v6.01a4,4,0,0,0,4,4Z\"></path><path d=\"M223.084,484.672,200.87,469.863V346.36A44.1,44.1,0,0,0,195.327,325l-17.183-30.94a4,4,0,0,0-7,3.884l17.184,30.94a36.073,36.073,0,0,1,4.537,17.478V468H164.333a4,4,0,1,0,0,8h31.321l12,8H152.865V352a4,4,0,0,0-.358-1.655l-25.454-56A4,4,0,0,0,123.411,292H114.2a4,4,0,0,0-3.945,4.658l8.862,53.175a36.016,36.016,0,0,1-1.951,18.949L78.642,468H48.333a4,4,0,1,0,0,8H80.377L92,484H32.088L76.63,361.366a4.017,4.017,0,0,0,.183-2.044L61.1,268H136a4,4,0,0,0,0-8H59.233L30.555,173.966A19.723,19.723,0,0,1,49.27,148H76a12,12,0,0,0,24,0h15.2a21.975,21.975,0,0,1,8.395,1.652l10.889,4.458a4,4,0,1,0,3.032-7.4L126.63,142.25A29.938,29.938,0,0,0,115.2,140H100v-4.527A16.014,16.014,0,0,0,112,120V103.473A16.014,16.014,0,0,0,124,88V80a4,4,0,0,0-4-4H90A22.025,22.025,0,0,0,68,98v18a12.02,12.02,0,0,0,8,11.314V140H49.27a27.723,27.723,0,0,0-26.305,36.5l29.493,88.482,16.29,94.655-46.128,127A4,4,0,0,0,26.38,492h78.485a4,4,0,0,0,2.268-7.3L86.3,470.368l38.318-98.69a44.018,44.018,0,0,0,2.385-23.16L118.921,300h1.914l24.03,52.867V488a4,4,0,0,0,4,4h72a4,4,0,0,0,2.219-7.328ZM76,98A14.015,14.015,0,0,1,90,84h26v4a8.009,8.009,0,0,1-8,8H92a4,4,0,0,0-4,4,11.962,11.962,0,0,1-1.53,5.881A12.044,12.044,0,0,0,76,104.686Zm4,14a3.981,3.981,0,0,1,3.407,1.9,4,4,0,0,0,5.956.975c.207-.171.7-.648.7-.648.032-.028.061-.057.09-.087A19.907,19.907,0,0,0,95.6,104H104v16a8.009,8.009,0,0,1-8,8,12.133,12.133,0,0,1-2.681-.3,4,4,0,1,0-1.775,7.8c.151.035.3.06.456.091V148a4,4,0,1,1-8,0V124a4,4,0,0,0-4-4,4,4,0,0,1,0-8Z\"></path></g></svg>				\n									<h5>\n							arbejde udført med ansvar						\n					</h5>\n				<p>Vi lover ikke mere, end vi kan holde – men vi holder det, vi lover.</p>			<h2>KONTAKT OS</h2>		<p>Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.</p>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 15:07:40', '2026-01-26 15:07:40', '', 10, 'https://mrarif.me/cpnordic/?p=706', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(709, 1, '2026-01-26 15:10:41', '2026-01-26 15:10:41', '<h2>Kontaktoplysninger</h2>		<p>Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid<br />velkommen til at kontakte os for en uforpligtende snak.</p>					\n			<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>			\n							<h5>Placering</h5>							<ul>\n							<li>\n										Fyn, Denmark\n									</li>\n						</ul>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M358.57,0H153.43c-27.195,0-49.319,22.124-49.319,49.319v413.362h-0.001c0,27.195,22.124,49.319,49.319,49.319H358.57   c27.195,0,49.319-22.124,49.319-49.319V49.319C407.891,22.124,385.766,0,358.57,0z M124.508,49.319   c0-15.948,12.974-28.921,28.921-28.921H358.57c15.947,0,28.921,12.974,28.921,28.921v355.589H124.508V49.319z M387.493,462.681   L387.493,462.681c-0.001,15.947-12.975,28.921-28.922,28.921H153.43c-15.948,0-28.921-12.974-28.921-28.921v-37.374h262.984   V462.681z\"></path>	</g></g><g>	<g>		<path d=\"M270.789,34.677h-29.578c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h29.578   c5.632,0,10.199-4.566,10.199-10.199C280.988,39.243,276.421,34.677,270.789,34.677z\"></path>	</g></g><g>	<g>		<path d=\"M242.204,371.251h-91.255c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h91.255   c5.632,0,10.199-4.566,10.199-10.199C252.403,375.817,247.836,371.251,242.204,371.251z\"></path>	</g></g><g>	<g>		<path d=\"M282.518,371.251h-5.346c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h5.346   c5.632,0,10.199-4.566,10.199-10.199C292.717,375.817,288.15,371.251,282.518,371.251z\"></path>	</g></g><g>	<g>		<path d=\"M256,430.406c-14.903,0-27.028,12.125-27.028,27.028s12.125,27.028,27.028,27.028s27.028-12.125,27.028-27.028   S270.903,430.406,256,430.406z M256,464.064c-3.655,0-6.629-2.974-6.629-6.63s2.974-6.629,6.629-6.629s6.63,2.974,6.63,6.629   S259.655,464.064,256,464.064z\"></path>	</g></g><g>	<g>		<path d=\"M442.612,198.005c-3.984-3.983-10.44-3.983-14.425,0c-3.983,3.983-3.983,10.441,0,14.425   c23.463,23.462,23.463,61.639,0,85.1c-3.983,3.983-3.983,10.441,0,14.425c1.992,1.992,4.602,2.987,7.212,2.987   s5.22-0.995,7.212-2.987C474.027,280.539,474.027,229.421,442.612,198.005z\"></path>	</g></g><g>	<g>		<path d=\"M470.017,170.6c-3.984-3.983-10.44-3.983-14.425,0c-3.983,3.983-3.983,10.441,0,14.425   c18.686,18.686,28.977,43.53,28.977,69.955s-10.291,51.27-28.977,69.955c-3.983,3.983-3.983,10.441,0,14.425   c1.992,1.992,4.602,2.987,7.212,2.987c2.61,0,5.22-0.995,7.212-2.987C516.544,292.832,516.544,217.128,470.017,170.6z\"></path>	</g></g><g>	<g>		<path d=\"M83.812,212.43c3.984-3.984,3.984-10.442,0.001-14.425c-3.984-3.983-10.44-3.983-14.425,0   c-31.416,31.416-31.416,82.533,0,113.95c1.992,1.992,4.602,2.987,7.212,2.987s5.22-0.995,7.212-2.987   c3.983-3.983,3.983-10.441,0-14.425C60.349,274.068,60.349,235.891,83.812,212.43z\"></path>	</g></g><g>	<g>		<path d=\"M27.431,254.98c0-26.426,10.291-51.27,28.977-69.955c3.983-3.983,3.983-10.441,0-14.425   c-3.984-3.983-10.44-3.983-14.425,0c-46.527,46.528-46.527,122.232,0,168.76c1.992,1.992,4.602,2.987,7.212,2.987   s5.22-0.995,7.212-2.987c3.983-3.983,3.983-10.441,0-14.425C37.721,306.25,27.431,281.406,27.431,254.98z\"></path>	</g></g><g>	<g>		<path d=\"M358.06,280.099l-47.694-47.694c-2.619-2.618-6.45-3.613-10.015-2.595l-7.104,2.03c-1.015,0.291-1.98,0.736-2.859,1.323   l-14.669,9.788c-17.71-12.415-33.181-28.156-45.295-46.078l10.425-10.425c1.226-1.226,2.119-2.743,2.596-4.41l2.03-7.104   c1.018-3.562,0.023-7.394-2.595-10.015l-47.697-47.697c-2.827-2.827-7.048-3.742-10.793-2.338l-8.119,3.044   c-1.364,0.511-2.602,1.309-3.632,2.338c-1.938,1.939-3.804,4.028-5.546,6.207c-23.54,29.472-21.155,71.832,5.546,98.534   l77.633,77.632c14.404,14.405,33.363,21.733,52.398,21.732c16.254,0,32.564-5.343,46.138-16.187   c2.179-1.741,4.266-3.606,6.205-5.545c1.029-1.03,1.827-2.267,2.338-3.631l3.044-8.119   C361.802,287.147,360.888,282.927,358.06,280.099z M336.079,292.253c-21.345,17.05-52.032,15.315-71.379-4.034l-77.633-77.632   c-19.349-19.349-21.082-50.035-4.034-71.379c0.783-0.98,1.598-1.933,2.44-2.849l38.31,38.311l-13.591,13.592   c-3.331,3.331-3.947,8.51-1.491,12.531c15.402,25.2,36.656,46.986,61.469,63.005c3.415,2.204,7.81,2.17,11.194-0.085   l18.872-12.593l38.696,38.696C338.011,290.656,337.058,291.471,336.079,292.253z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>			\n							<h5>Ring til os</h5>							<ul>\n							<li>\n											<a href=\"tel:41600040\">\n											41 60 00 40\n											</a>\n									</li>\n						</ul>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M331.756,277.251l-42.881,43.026c-17.389,17.45-47.985,17.826-65.75,0l-42.883-43.026L26.226,431.767   C31.959,434.418,38.28,436,45,436h422c6.72,0,13.039-1.58,18.77-4.232L331.756,277.251z\"></path>	</g></g><g>	<g>		<path d=\"M467,76H45c-6.72,0-13.041,1.582-18.772,4.233l164.577,165.123c0.011,0.011,0.024,0.013,0.035,0.024   c0.011,0.011,0.013,0.026,0.013,0.026l53.513,53.69c5.684,5.684,17.586,5.684,23.27,0l53.502-53.681c0,0,0.013-0.024,0.024-0.035   c0,0,0.024-0.013,0.035-0.024L485.77,80.232C480.039,77.58,473.72,76,467,76z\"></path>	</g></g><g>	<g>		<path d=\"M4.786,101.212C1.82,107.21,0,113.868,0,121v270c0,7.132,1.818,13.79,4.785,19.788l154.283-154.783L4.786,101.212z\"></path>	</g></g><g>	<g>		<path d=\"M507.214,101.21L352.933,256.005L507.214,410.79C510.18,404.792,512,398.134,512,391V121   C512,113.866,510.18,107.208,507.214,101.21z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>			\n							<h5>Send os en email</h5>							<ul>\n							<li>\n											<a href=\"mailto:kontakt@cp-nordic.dk\">\n											kontakt@cp-nordic.dk\n											</a>\n									</li>\n						</ul>\n							<h2>KONTAKT OS</h2>		<p>Vi dækker hele Fyn – og tager også gerne opgaver uden for området, når der er tale om spændende eller teknisk krævende løsninger.</p>					\n					<a href=\"https://www.facebook.com/cpnordic/\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"https://www.instagram.com/cpnordic/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>', 'Kontakt', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-01-26 15:10:41', '2026-01-26 15:10:41', '', 18, 'https://mrarif.me/cpnordic/?p=709', 0, 'revision', '', 0),
(710, 1, '2026-01-26 15:10:42', '2026-01-26 15:10:42', '<h2>Kontaktoplysninger</h2>		<p>Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid<br />velkommen til at kontakte os for en uforpligtende snak.</p>					\n			<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>			\n							<h5>Placering</h5>							<ul>\n							<li>\n										Fyn, Denmark\n									</li>\n						</ul>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M358.57,0H153.43c-27.195,0-49.319,22.124-49.319,49.319v413.362h-0.001c0,27.195,22.124,49.319,49.319,49.319H358.57   c27.195,0,49.319-22.124,49.319-49.319V49.319C407.891,22.124,385.766,0,358.57,0z M124.508,49.319   c0-15.948,12.974-28.921,28.921-28.921H358.57c15.947,0,28.921,12.974,28.921,28.921v355.589H124.508V49.319z M387.493,462.681   L387.493,462.681c-0.001,15.947-12.975,28.921-28.922,28.921H153.43c-15.948,0-28.921-12.974-28.921-28.921v-37.374h262.984   V462.681z\"></path>	</g></g><g>	<g>		<path d=\"M270.789,34.677h-29.578c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h29.578   c5.632,0,10.199-4.566,10.199-10.199C280.988,39.243,276.421,34.677,270.789,34.677z\"></path>	</g></g><g>	<g>		<path d=\"M242.204,371.251h-91.255c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h91.255   c5.632,0,10.199-4.566,10.199-10.199C252.403,375.817,247.836,371.251,242.204,371.251z\"></path>	</g></g><g>	<g>		<path d=\"M282.518,371.251h-5.346c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h5.346   c5.632,0,10.199-4.566,10.199-10.199C292.717,375.817,288.15,371.251,282.518,371.251z\"></path>	</g></g><g>	<g>		<path d=\"M256,430.406c-14.903,0-27.028,12.125-27.028,27.028s12.125,27.028,27.028,27.028s27.028-12.125,27.028-27.028   S270.903,430.406,256,430.406z M256,464.064c-3.655,0-6.629-2.974-6.629-6.63s2.974-6.629,6.629-6.629s6.63,2.974,6.63,6.629   S259.655,464.064,256,464.064z\"></path>	</g></g><g>	<g>		<path d=\"M442.612,198.005c-3.984-3.983-10.44-3.983-14.425,0c-3.983,3.983-3.983,10.441,0,14.425   c23.463,23.462,23.463,61.639,0,85.1c-3.983,3.983-3.983,10.441,0,14.425c1.992,1.992,4.602,2.987,7.212,2.987   s5.22-0.995,7.212-2.987C474.027,280.539,474.027,229.421,442.612,198.005z\"></path>	</g></g><g>	<g>		<path d=\"M470.017,170.6c-3.984-3.983-10.44-3.983-14.425,0c-3.983,3.983-3.983,10.441,0,14.425   c18.686,18.686,28.977,43.53,28.977,69.955s-10.291,51.27-28.977,69.955c-3.983,3.983-3.983,10.441,0,14.425   c1.992,1.992,4.602,2.987,7.212,2.987c2.61,0,5.22-0.995,7.212-2.987C516.544,292.832,516.544,217.128,470.017,170.6z\"></path>	</g></g><g>	<g>		<path d=\"M83.812,212.43c3.984-3.984,3.984-10.442,0.001-14.425c-3.984-3.983-10.44-3.983-14.425,0   c-31.416,31.416-31.416,82.533,0,113.95c1.992,1.992,4.602,2.987,7.212,2.987s5.22-0.995,7.212-2.987   c3.983-3.983,3.983-10.441,0-14.425C60.349,274.068,60.349,235.891,83.812,212.43z\"></path>	</g></g><g>	<g>		<path d=\"M27.431,254.98c0-26.426,10.291-51.27,28.977-69.955c3.983-3.983,3.983-10.441,0-14.425   c-3.984-3.983-10.44-3.983-14.425,0c-46.527,46.528-46.527,122.232,0,168.76c1.992,1.992,4.602,2.987,7.212,2.987   s5.22-0.995,7.212-2.987c3.983-3.983,3.983-10.441,0-14.425C37.721,306.25,27.431,281.406,27.431,254.98z\"></path>	</g></g><g>	<g>		<path d=\"M358.06,280.099l-47.694-47.694c-2.619-2.618-6.45-3.613-10.015-2.595l-7.104,2.03c-1.015,0.291-1.98,0.736-2.859,1.323   l-14.669,9.788c-17.71-12.415-33.181-28.156-45.295-46.078l10.425-10.425c1.226-1.226,2.119-2.743,2.596-4.41l2.03-7.104   c1.018-3.562,0.023-7.394-2.595-10.015l-47.697-47.697c-2.827-2.827-7.048-3.742-10.793-2.338l-8.119,3.044   c-1.364,0.511-2.602,1.309-3.632,2.338c-1.938,1.939-3.804,4.028-5.546,6.207c-23.54,29.472-21.155,71.832,5.546,98.534   l77.633,77.632c14.404,14.405,33.363,21.733,52.398,21.732c16.254,0,32.564-5.343,46.138-16.187   c2.179-1.741,4.266-3.606,6.205-5.545c1.029-1.03,1.827-2.267,2.338-3.631l3.044-8.119   C361.802,287.147,360.888,282.927,358.06,280.099z M336.079,292.253c-21.345,17.05-52.032,15.315-71.379-4.034l-77.633-77.632   c-19.349-19.349-21.082-50.035-4.034-71.379c0.783-0.98,1.598-1.933,2.44-2.849l38.31,38.311l-13.591,13.592   c-3.331,3.331-3.947,8.51-1.491,12.531c15.402,25.2,36.656,46.986,61.469,63.005c3.415,2.204,7.81,2.17,11.194-0.085   l18.872-12.593l38.696,38.696C338.011,290.656,337.058,291.471,336.079,292.253z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>			\n							<h5>Ring til os</h5>							<ul>\n							<li>\n											<a href=\"tel:41600040\">\n											41 60 00 40\n											</a>\n									</li>\n						</ul>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M331.756,277.251l-42.881,43.026c-17.389,17.45-47.985,17.826-65.75,0l-42.883-43.026L26.226,431.767   C31.959,434.418,38.28,436,45,436h422c6.72,0,13.039-1.58,18.77-4.232L331.756,277.251z\"></path>	</g></g><g>	<g>		<path d=\"M467,76H45c-6.72,0-13.041,1.582-18.772,4.233l164.577,165.123c0.011,0.011,0.024,0.013,0.035,0.024   c0.011,0.011,0.013,0.026,0.013,0.026l53.513,53.69c5.684,5.684,17.586,5.684,23.27,0l53.502-53.681c0,0,0.013-0.024,0.024-0.035   c0,0,0.024-0.013,0.035-0.024L485.77,80.232C480.039,77.58,473.72,76,467,76z\"></path>	</g></g><g>	<g>		<path d=\"M4.786,101.212C1.82,107.21,0,113.868,0,121v270c0,7.132,1.818,13.79,4.785,19.788l154.283-154.783L4.786,101.212z\"></path>	</g></g><g>	<g>		<path d=\"M507.214,101.21L352.933,256.005L507.214,410.79C510.18,404.792,512,398.134,512,391V121   C512,113.866,510.18,107.208,507.214,101.21z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>			\n							<h5>Send os en email</h5>							<ul>\n							<li>\n											<a href=\"mailto:kontakt@cp-nordic.dk\">\n											kontakt@cp-nordic.dk\n											</a>\n									</li>\n						</ul>\n							<h2>KONTAKT OS</h2>		<p>Vi dækker hele Fyn – og tager også gerne opgaver uden for området, når der er tale om spændende eller teknisk krævende løsninger.</p>					\n					<a href=\"https://www.facebook.com/cpnordic/\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"https://www.instagram.com/cpnordic/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>', 'Kontakt', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-01-26 15:10:42', '2026-01-26 15:10:42', '', 18, 'https://mrarif.me/cpnordic/?p=710', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(714, 1, '2026-01-26 15:10:57', '2026-01-26 15:10:57', '<h1>CP NORDIC ApS</h1>					<h4>Byggeri – Tømrerarbejde og tagdækning</h4>										<a href=\"https://mrarif.me/cpnordic/kontakt/\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"https://mrarif.me/cpnordic/om-os/\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"https://mrarif.me/cpnordic/tomrerarbejde/\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>								<a href=\"https://mrarif.me/cpnordic/tagdaekning/\">\n									Lær mere\n					</a>\n									<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle ANMELDELSER\n					</a>\n					<h2>HVORFOR VÆLGE CP NORDIC ApS?</h2>		<p>Når du vælger CP NORDIC ApS, får du:</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 450 450\" width=\"512\"><g><g><path d=\"m225 165.2c-25.9 0-48.9-18.8-53.3-45.2-2.4-14.2.9-28.6 9.3-40.3 8.4-11.8 20.9-19.5 35.1-21.9 29.4-4.9 57.3 15 62.2 44.5 4.9 29.4-15 57.3-44.4 62.2-3 .5-6 .7-8.9.7zm-7.6-99.8c-12.2 2-22.9 8.7-30.1 18.8s-10.1 22.4-8 34.6c3.8 22.7 23.5 38.8 45.7 38.8 2.5 0 5.1-.2 7.6-.6 25.2-4.2 42.3-28.1 38.1-53.4s-28.1-42.4-53.3-38.2z\"></path><path d=\"m255.2 115c-2.1 0-3.8-1.7-3.8-3.8 0-14.6-11.8-26.4-26.4-26.4-2.1 0-3.8-1.7-3.8-3.8s1.7-3.8 3.8-3.8c18.8 0 34.1 15.3 34.1 34.1 0 2-1.8 3.7-3.9 3.7z\"></path><path d=\"m236.1 203h-22.2c-2.1 0-3.8-1.7-3.8-3.8v-14.1c-3.1-.6-6.1-1.4-9.1-2.4l-7 12.2c-1.1 1.8-3.4 2.5-5.3 1.4l-19.2-11.1c-.9-.5-1.5-1.4-1.8-2.3-.3-1-.1-2 .4-2.9l7-12.1c-2.4-2.1-4.6-4.3-6.7-6.6l-12.1 7c-1.8 1.1-4.2.4-5.2-1.4l-11.1-19.2c-1.1-1.8-.4-4.2 1.4-5.2l11.9-6.8c-1-3-1.9-6.1-2.6-9.3h-13.7c-2.1 0-3.8-1.7-3.8-3.8v-22.2c0-2.1 1.7-3.8 3.8-3.8h13.4c.6-3.2 1.4-6.4 2.4-9.5l-11.5-6.6c-1.8-1.1-2.5-3.4-1.4-5.3l11.1-19.6c.5-.9 1.4-1.5 2.3-1.8s2-.1 2.9.4l11.3 6.6c2.2-2.5 4.5-4.8 7-7l-6.5-11.3c-.5-.9-.6-1.9-.4-2.9.3-1 .9-1.8 1.8-2.3l19.2-11.1c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l6.4 11.2c3.1-1.1 6.4-1.9 9.7-2.6v-13c0-2.1 1.7-3.8 3.8-3.8h22.2c2.1 0 3.8 1.7 3.8 3.8v12.8c3.3.7 6.5 1.5 9.7 2.6l6.5-11.2c.5-.9 1.4-1.5 2.3-1.8 1-.3 2-.1 2.9.4l19.2 11.1c.9.5 1.5 1.3 1.8 2.3s.1 2-.4 2.9l-6.5 11.3c2.5 2.2 4.8 4.5 7 7.1l11.3-6.6c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l11.1 19.2c1.1 1.8.4 4.2-1.4 5.3l-11.5 6.6c1 3.1 1.8 6.3 2.5 9.5h13.6c2.1 0 3.8 1.7 3.8 3.8v22.2c0 2.1-1.7 3.8-3.8 3.8h-13.6c-.6 3.1-1.5 6.2-2.5 9.3l11.9 6.8c1.8 1.1 2.5 3.4 1.4 5.2l-11.2 19.5c-1.1 1.8-3.4 2.5-5.2 1.4l-12-7c-2.1 2.4-4.4 4.6-6.7 6.6l7 12.1c.5.9.6 1.9.4 2.9s-.9 1.8-1.8 2.3l-19.2 11.1c-1.8 1.1-4.2.4-5.2-1.4l-7-12.2c-3 1-6 1.8-9.1 2.4v14.1c-.2 2.3-2 4-4.1 4zm-18.4-7.7h14.5v-13.5c0-1.9 1.4-3.5 3.3-3.8 4.7-.7 9.4-2 13.8-3.7 1.8-.7 3.8 0 4.7 1.7l6.7 11.6 12.6-7.3-6.7-11.6c-1-1.6-.5-3.7.9-4.9 3.7-3 7.2-6.4 10.2-10.1 1.2-1.5 3.3-1.8 4.9-.9l11.5 6.6 7.3-12.6-11.3-6.5c-1.6-.9-2.4-3-1.6-4.7 1.8-4.5 3.1-9.2 3.9-14 .3-1.9 1.9-3.2 3.8-3.2h13v-14.6h-12.8c-1.9 0-3.5-1.4-3.8-3.3-.7-4.8-2-9.6-3.7-14.2-.7-1.8 0-3.7 1.7-4.7l10.9-6.3-7.3-12.6-10.8 6.3c-1.6.9-3.7.6-4.9-.9-3.1-3.9-6.6-7.4-10.4-10.6-1.5-1.2-1.9-3.3-.9-4.9l6.2-10.7-12.6-7.3-6.1 10.6c-1 1.6-3 2.3-4.7 1.7-4.6-1.8-9.5-3.1-14.4-3.9-1.9-.3-3.3-1.9-3.3-3.8v-12.2h-14.5v12.3c0 1.9-1.4 3.5-3.3 3.8-5 .8-9.8 2.1-14.4 3.9-1.8.7-3.8 0-4.7-1.7l-6.1-10.6-12.6 7.3 6.2 10.7c.9 1.6.6 3.7-.9 4.9-3.9 3.1-7.4 6.7-10.4 10.6-1.2 1.5-3.3 1.9-4.9.9l-10.8-6.3-7.3 12.6 10.9 6.3c1.6.9 2.3 2.9 1.7 4.7-1.7 4.6-3 9.4-3.7 14.2-.3 1.9-1.9 3.3-3.8 3.3h-12.8v14.5h13c1.9 0 3.5 1.4 3.8 3.2.8 4.8 2.1 9.5 3.9 14 .7 1.8 0 3.8-1.6 4.7l-11.3 6.5 7.3 12.6 11.5-6.6c1.6-.9 3.7-.6 4.9.9 3 3.7 6.5 7.1 10.3 10.1 1.5 1.2 1.9 3.3.9 4.9l-6.7 11.6 12.6 7.3 6.7-11.6c.9-1.6 2.9-2.3 4.7-1.7 4.5 1.7 9.1 2.9 13.8 3.7 1.9.3 3.3 1.9 3.3 3.8z\"></path></g><g><g><g><path d=\"m45.3 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m153.9 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path></g><g><path d=\"m189.3 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.2c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c0 2.1-1.7 3.8-3.8 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m73.3 326.4c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m126 326.4c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m99.7 325.6c-.6 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4s4.1 1.1 4.4 3.2c2.4 16.5 12.3 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m50.2 266.6c-.1 0-.2 0-.3 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.7 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-8.9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.5 2.2zm81.8-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13.1-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.4-.7 2.3-.7z\"></path></g></g></g><g><g><path d=\"m296.1 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m404.7 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path></g><g><path d=\"m440 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.1c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c.2 2.1-1.6 3.8-3.7 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m324 326.3c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m376.7 326.3c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m350.4 325.6c-.5 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4 2.1-.3 4 1.1 4.4 3.2 2.4 16.5 12.4 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m301 266.6c-.1 0-.2 0-.4 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.6 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.4 2.2zm81.7-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.5-.7 2.3-.7z\"></path></g></g></g></g></g></svg>				\n									<h5>\n							et ungt og engageret team						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"496pt\" viewBox=\"0 0 496 496\" width=\"496pt\"><path d=\"m440 328h-28.207031c5.078125-6.703125 8.207031-14.960938 8.207031-24 0-8.824219-7.175781-16-16-16h-12v-19.960938c59.574219-14.445312 104-68.085937 104-132.039062 0-74.992188-61.007812-136-136-136s-136 61.007812-136 136c0 63.953125 44.425781 117.59375 104 132.039062v19.960938h-8.449219c-6.167969 0-12.359375 1.464844-17.886719 4.214844l-50.480468 25.25c-3.320313 1.664062-7.03125 2.535156-10.734375 2.535156h-40.449219v-16h-104v16h56v56h16v-56h16v128h-16v-56h-16v56h-56v16h104v-16h40.449219c3.703125 0 7.414062.871094 10.734375 2.527344l34.488281 17.25c5.519531 2.757812 11.710937 4.222656 17.878906 4.222656h24.449219v24h64v-24h48c13.230469 0 24-10.769531 24-24 0-6.167969-2.40625-11.742188-6.238281-16 3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16 0-13.230469-10.769531-24-24-24zm8 24c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm-208-280c0-66.167969 53.832031-120 120-120s120 53.832031 120 120-53.832031 120-120 120-120-53.832031-120-120zm104 134.976562c5.257812.617188 10.574219 1.023438 16 1.023438s10.742188-.40625 16-1.023438v17.023438h-32zm-40.449219 185.023438c-3.703125 0-7.414062-.871094-10.734375-2.527344l-34.488281-17.25c-5.519531-2.757812-11.710937-4.222656-17.878906-4.222656h-40.449219v-96h40.449219c6.167969 0 12.359375-1.464844 17.886719-4.214844l50.480468-25.25c3.320313-1.664062 7.03125-2.535156 10.734375-2.535156h84.449219c0 13.230469-10.769531 24-24 24h-48.28125l-23.863281 35.808594c-6.101563 9.160156-14.527344 16.589844-24.367188 21.503906-8.753906 4.375-18.542969 6.6875-28.320312 6.6875h-15.167969v16h15.167969c12.246093 0 24.519531-2.894531 35.472656-8.375 12.328125-6.160156 22.878906-15.480469 30.527344-26.945312l6.832031-10.253907v93.574219zm40.449219 24v-136h17.472656c-.898437 2.511719-1.472656 5.183594-1.472656 8 0 6.167969 2.40625 11.742188 6.238281 16-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16 0 10.414062 6.710938 19.214844 16 22.527344v9.472656zm96-24h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8s-3.59375 8-8 8zm0 0\"></path><path d=\"m394.878906 73.007812-7.757812 13.984376c17.816406 9.878906 28.878906 28.664062 28.878906 49.007812h16c0-26.160156-14.222656-50.296875-37.121094-62.992188zm0 0\"></path><path d=\"m360 80c4.734375 0 9.449219.59375 14.007812 1.769531l3.976563-15.503906c-5.855469-1.496094-11.90625-2.265625-17.984375-2.265625zm0 0\"></path><path d=\"m360 48c48.519531 0 88 39.480469 88 88 0 20.753906-7.398438 40.910156-20.832031 56.785156l12.207031 10.34375c15.882812-18.761718 24.625-42.601562 24.625-67.128906 0-57.34375-46.65625-104-104-104-24.527344 0-48.367188 8.753906-67.128906 24.632812l10.335937 12.199219c15.871094-13.433593 36.039063-20.832031 56.792969-20.832031zm0 0\"></path><path d=\"m427.128906 215.367188-10.335937-12.199219c-15.871094 13.433593-36.039063 20.832031-56.792969 20.832031-48.519531 0-88-39.480469-88-88 0-20.753906 7.398438-40.910156 20.832031-56.785156l-12.207031-10.34375c-15.882812 18.761718-24.625 42.601562-24.625 67.128906 0 57.34375 46.65625 104 104 104 24.527344 0 48.367188-8.753906 67.128906-24.632812zm0 0\"></path><path d=\"m121.214844 165.640625c4.953125-1.375 9.695312-3.34375 14.183594-5.878906l9.769531 4.886719 19.472656-19.480469-4.886719-9.769531c2.535156-4.496094 4.503906-9.230469 5.886719-14.183594l10.359375-3.445313v-27.53125l-10.351562-3.453125c-1.375-4.953125-3.34375-9.707031-5.886719-14.183594l4.886719-9.777343-19.472657-19.472657-9.769531 4.886719c-4.484375-2.535156-9.230469-4.503906-14.183594-5.878906l-3.453125-10.359375h-27.539062l-3.445313 10.359375c-4.953125 1.375-9.695312 3.34375-14.183594 5.878906l-9.777343-4.886719-19.472657 19.472657 4.886719 9.777343c-2.535156 4.488282-4.503906 9.230469-5.886719 14.183594l-10.351562 3.445313v27.53125l10.351562 3.453125c1.375 4.953125 3.34375 9.695312 5.886719 14.183594l-4.886719 9.769531 19.472657 19.480469 9.769531-4.886719c4.484375 2.535156 9.230469 4.503906 14.183594 5.878906l3.453125 10.359375h27.539062zm-12.304688-13.679687-2.679687 8.039062h-4.460938l-2.679687-8.039062-4.554688-.90625c-6.128906-1.222657-11.878906-3.605469-17.109375-7.09375l-3.867187-2.578126-7.574219 3.800782-3.160156-3.167969 3.792969-7.582031-2.578126-3.859375c-3.488281-5.222657-5.871093-10.980469-7.09375-17.109375l-.914062-4.554688-8.03125-2.679687v-4.46875l8.03125-2.671875.914062-4.554688c1.222657-6.136718 3.613282-11.886718 7.09375-17.109375l2.578126-3.859375-3.792969-7.589844 3.160156-3.160156 7.574219 3.800782 3.867187-2.578126c5.222657-3.488281 10.980469-5.863281 17.109375-7.09375l4.554688-.90625 2.679687-8.039062h4.460938l2.679687 8.039062 4.554688.90625c6.128906 1.222657 11.878906 3.605469 17.109375 7.09375l3.867187 2.578126 7.574219-3.800782 3.160156 3.160156-3.792969 7.589844 2.578126 3.859375c3.488281 5.214844 5.871093 10.972657 7.09375 17.109375l.914062 4.554688 8.03125 2.679687v4.46875l-8.03125 2.671875-.914062 4.554688c-1.222657 6.128906-3.613282 11.878906-7.09375 17.109375l-2.578126 3.859375 3.792969 7.582031-3.160156 3.167969-7.574219-3.800782-3.867187 2.578126c-5.222657 3.488281-10.980469 5.863281-17.109375 7.09375zm0 0\"></path><path d=\"m104 72c-17.648438 0-32 14.351562-32 32s14.351562 32 32 32 32-14.351562 32-32-14.351562-32-32-32zm0 48c-8.824219 0-16-7.175781-16-16s7.175781-16 16-16 16 7.175781 16 16-7.175781 16-16 16zm0 0\"></path><path d=\"m160 248v-40h48v-208h-208v208h106.664062zm-144-232h176v176h-48v24l-32-24h-96zm0 0\"></path><path d=\"m0 272h16v16h-16zm0 0\"></path><path d=\"m32 272h16v16h-16zm0 0\"></path><path d=\"m64 272h16v16h-16zm0 0\"></path><path d=\"m32 304h16v16h-16zm0 0\"></path><path d=\"m64 304h16v16h-16zm0 0\"></path><path d=\"m0 480h16v16h-16zm0 0\"></path><path d=\"m32 480h16v16h-16zm0 0\"></path><path d=\"m64 480h16v16h-16zm0 0\"></path><path d=\"m32 448h16v16h-16zm0 0\"></path><path d=\"m64 448h16v16h-16zm0 0\"></path></svg>				\n									<h5>\n							fokus på kvalitet og detaljer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m469.12 408.93-67.26-33.63v-22.13c10.71-7.69 18.6-19.07 21.78-32.27h5.28c8.81 0 15.98-7.17 15.98-15.98v-5.29c0-6.35-3.74-11.84-9.12-14.41 5.19-18.64-1.65-39.76-19.44-59.78-12.58-14.16-30.67-22.27-49.62-22.27-18.93 0-37.01 8.12-49.59 22.27-13.38 15.05-20.95 41.01-14.03 59.62-5.56 2.5-9.45 8.09-9.45 14.57v5.29c0 8.81 7.17 15.98 15.98 15.98h5.55c3.16 13.09 10.94 24.39 21.51 32.08v22.32l-67.26 33.63c-16.7 5.87-27.89 21.6-27.89 39.28v41.63c0 3.31 2.69 6 6 6h243.46c3.31 0 6-2.69 6-6v-41.63c0-17.68-11.19-33.41-27.88-39.28zm-62.24-17.7-15.83 27.66-13.29-13.29 19.29-19.29zm-37.61 5.88-20.59-20.58v-16.91c6.41 2.57 13.4 4.01 20.72 4.01 7.22 0 14.11-1.39 20.45-3.9v16.8zm63.63-97.48v5.29c0 2.16-1.82 3.98-3.98 3.98h-3.74c.01-.36.03-.71.03-1.07v-12.18h3.71c2.15-.01 3.98 1.82 3.98 3.98zm-119.29 8.2v1.07h-3.98c-2.16 0-3.98-1.82-3.98-3.98v-5.29c0-2.16 1.82-3.98 3.98-3.98l3.98.22zm1.95-24.19c-7.33-13.69-.89-37.39 10.53-50.24 10.31-11.6 25.12-18.25 40.63-18.25 15.52 0 30.34 6.65 40.65 18.25 8.43 9.48 21.3 27.59 17.4 46.39-5.66-.35-10.67-2.55-14.4-6.36-5.37-5.49-7.72-14-6.63-23.94.29-2.62-1.17-5.13-3.6-6.17s-5.25-.37-6.95 1.65c-19.33 22.92-45.95 36.76-73.9 38.68h-3.73zm10.05 24.19v-12.73c24.57-2.92 47.92-14.05 66.73-31.8 1.43 7.26 4.63 13.6 9.45 18.52 3.27 3.35 7.14 5.89 11.41 7.58v18.42c0 24.15-19.65 43.8-43.8 43.8s-43.79-19.64-43.79-43.79zm15.89 78.48 19.29 19.29-13.29 13.29-15.84-27.66zm3.22 97.53h-39.42v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.76v-35.63c0-12.68 8.1-23.95 20.15-28.05.26-.09.51-.19.75-.31l46.47-23.23 20.07 35.06c.93 1.62 2.56 2.72 4.41 2.97.27.04.53.05.79.05 1.58 0 3.11-.62 4.24-1.76l.14-.14zm12.08 0 7.41-64.69 5.06-5.06 4.84 4.84 7.86 64.92h-25.17zm128.2 0h-39.76v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.18l-6.2-51.17.25.25c1.13 1.13 2.66 1.76 4.24 1.76.26 0 .53-.02.79-.05 1.85-.25 3.48-1.34 4.41-2.97l20.07-35.06 46.47 23.23c.24.12.49.23.75.31 12.05 4.1 20.15 15.38 20.15 28.05v35.65zm-67.04-346.65h-10.84l28.38 39.84 28.38-39.84h-10.84c-3.31 0-6-2.69-6-6v-64.58h-98.7c-3.31 0-6-2.69-6-6s2.69-6 6-6h104.7c3.31 0 6 2.69 6 6v64.58h16.48c2.25 0 4.3 1.25 5.33 3.25s.86 4.4-.45 6.23l-40.02 56.18c-1.13 1.58-2.95 2.52-4.89 2.52s-3.76-.94-4.89-2.52l-40.02-56.18c-1.3-1.83-1.48-4.23-.45-6.23s3.09-3.25 5.33-3.25h16.48v-23.5h-65.38c-3.31 0-6-2.69-6-6s2.69-6 6-6h71.38c3.31 0 6 2.69 6 6v35.5c.02 3.31-2.67 6-5.98 6zm-118.44 50.65v-133.26c0-21.18-17.23-38.41-38.41-38.41h-207.7c-21.18-.01-38.41 17.23-38.41 38.41v133.26c0 21.18 17.23 38.41 38.41 38.41h105.8l64.8 55.11c1.11.94 2.49 1.43 3.89 1.43.85 0 1.71-.18 2.52-.55 2.12-.98 3.48-3.11 3.48-5.45v-50.54h27.21c21.18 0 38.41-17.23 38.41-38.41zm-71.62 26.41c-3.31 0-6 2.69-6 6v43.56l-56.59-48.13c-1.08-.92-2.46-1.43-3.89-1.43h-108.01c-14.56 0-26.41-11.85-26.41-26.41v-133.26c0-14.56 11.85-26.41 26.41-26.41h207.69c14.56 0 26.41 11.85 26.41 26.41v133.26c0 14.56-11.85 26.41-26.41 26.41zm-156.34-87.87h56.97c3.31 0 6-2.69 6-6v-39.2l8.55-8.55c2.34-2.34 2.34-6.14 0-8.49-2.34-2.34-6.14-2.34-8.48 0l-.7.7c-.98-1.97-3.01-3.32-5.36-3.32h-56.98c-3.31 0-6 2.69-6 6v52.85c0 3.32 2.69 6.01 6 6.01zm6-52.86h44.97v2.69l-18.16 18.16-8.84-8.84c-2.34-2.34-6.14-2.34-8.49 0-2.34 2.34-2.34 6.14 0 8.49l13.08 13.08c1.17 1.17 2.71 1.76 4.24 1.76s3.07-.59 4.24-1.76l13.92-13.92v21.2h-44.96zm173.62 3.08c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 31.92c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 36.52c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.68 5.99 6zm0 31.92c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.69 5.99 6zm-119.36 165.01h10.84l-28.38-39.84-28.38 39.84h10.84c3.31 0 6 2.69 6 6v64.58h98.7c3.31 0 6 2.69 6 6s-2.69 6-6 6h-104.69c-3.31 0-6-2.69-6-6v-64.58h-16.48c-2.25 0-4.3-1.25-5.33-3.25s-.86-4.4.45-6.23l40.02-56.18c1.13-1.58 2.95-2.52 4.89-2.52s3.76.94 4.89 2.52l40.02 56.18c1.3 1.83 1.48 4.23.45 6.23s-3.09 3.25-5.33 3.25h-16.48v23.5h65.38c3.31 0 6 2.69 6 6s-2.69 6-6 6h-71.38c-3.31 0-6-2.69-6-6v-35.5c-.03-3.31 2.66-6 5.97-6z\"></path></svg>				\n									<h5>\n							ærlig<br> rådgivning						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 510 510\"><path d=\"m192.036 385.845c-4.787-46.972-19.459-64.336-30.658-82.352-8.672-13.951-15.5-28.245-15.5-54.252 0-60.242 48.865-109.109 109.135-109.109 60.242 0 109.109 48.866 109.109 109.109 0 26.007-6.828 40.301-15.5 54.252-11.199 18.016-25.871 35.38-30.658 82.352 9.985 2.864 17.345 12.101 17.345 22.975v36.44c0 13.109-10.747 23.866-23.893 23.866h-10.334v9.945c0 12.588-10.341 22.929-22.93 22.929h-46.304c-12.589 0-22.93-10.341-22.93-22.929v-9.945h-10.334c-13.146 0-23.893-10.757-23.893-23.866v-36.44c0-10.874 7.36-20.111 17.345-22.975zm111.948-.917c4.199-42.194 15.78-62.332 26.488-79.049 10.147-15.842 19.65-28.207 19.65-56.638 0-52.513-42.597-95.109-95.109-95.109-52.537 0-95.135 42.596-95.135 95.109 0 28.431 9.503 40.796 19.65 56.638 10.708 16.717 22.289 36.855 26.488 79.049zm2.554-78.61c-1.175 13.701-11.985 24.191-24.783 24.191-13.527 0-24.862-12.086-24.862-26.673v-99.328c0-14.12 11.335-26.673 24.862-26.673 11.309 0 21.031 8.139 23.975 19.497 9.12 3.904 15.688 13.438 15.688 24.78 0 1.153-.068 2.289-.201 3.403 5.078 5.326 8.283 12.802 8.283 21.117 0 6.39-1.889 12.262-5.06 17.053 1.996 4.099 3.13 8.773 3.13 13.76 0 14.1-9.065 25.697-21.032 28.873zm-16.452-109.977c-1.964-2.729-4.916-4.506-8.331-4.506-6.192 0-10.862 6.21-10.862 12.673v99.328c0 6.677 4.67 12.673 10.862 12.673 5.516 0 9.822-4.614 10.717-10.425-4.709-1.416-8.923-4.144-12.279-7.814-2.607-2.852-2.409-7.283.443-9.89 2.851-2.607 7.282-2.408 9.889.443 2.416 2.642 5.72 4.356 9.402 4.356 7.733 0 13.643-7.218 13.643-15.734s-5.91-15.734-13.643-15.734c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7 5.352 0 10.388 1.655 14.658 4.533.593-1.743.915-3.634.915-5.612 0-2.11-.366-4.128-1.036-5.972-.769.858-1.588 1.66-2.453 2.397-2.94 2.507-7.361 2.156-9.869-.784-2.507-2.939-2.155-7.361.784-9.868 2.773-2.365 4.492-6.122 4.492-10.293 0-6.072-3.705-11.374-8.898-12.467-.154-.023-.307-.052-.458-.085-.499-.08-1.01-.121-1.532-.121-2.947 0-5.591 1.389-7.515 3.525-2.585 2.87-7.015 3.101-9.886.515-2.87-2.586-3.101-7.015-.515-9.886 3.111-3.453 7.059-5.988 11.472-7.252zm-104.526 67.344c-3.171-4.791-5.06-10.663-5.06-17.053 0-8.307 3.198-15.777 8.284-21.104-.133-1.118-.202-2.258-.202-3.416 0-11.354 6.582-20.897 15.717-24.792 2.948-11.354 12.67-19.485 23.946-19.485 13.56 0 24.888 12.555 24.888 26.673v99.328c0 14.585-11.328 26.673-24.888 26.673-12.765 0-23.578-10.484-24.757-24.184-11.98-3.166-21.058-14.769-21.058-28.88 0-4.987 1.134-9.661 3.13-13.76zm9.982-23.036c-.675 1.847-1.042 3.869-1.042 5.983 0 1.978.322 3.869.915 5.612 4.27-2.878 9.306-4.533 14.658-4.533 3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7-7.733 0-13.643 7.218-13.643 15.734s5.91 15.734 13.643 15.734c3.682 0 6.986-1.714 9.402-4.356 2.607-2.851 7.038-3.05 9.889-.443 2.852 2.607 3.05 7.038.443 9.89-3.35 3.664-7.556 6.389-12.255 7.807.891 5.813 5.192 10.432 10.693 10.432 6.21 0 10.888-5.993 10.888-12.673v-99.328c0-6.466-4.678-12.673-10.888-12.673-3.404 0-6.349 1.777-8.309 4.507 4.421 1.264 8.367 3.8 11.476 7.251 2.586 2.871 2.355 7.3-.516 9.886-2.87 2.586-7.3 2.355-9.886-.515-1.926-2.138-4.574-3.525-7.54-3.525-.493 0-.976.037-1.448.108-.196.045-.395.082-.596.11-5.165 1.118-8.844 6.404-8.844 12.455 0 1.243.153 2.45.442 3.594.101.284.183.572.246.862.748 2.326 2.071 4.346 3.814 5.823 2.947 2.498 3.311 6.919.813 9.866s-6.919 3.312-9.866.814c-.878-.745-1.71-1.554-2.489-2.422zm3.042 158.279c-5.442 0-9.893 4.451-9.893 9.892v36.44c0 5.423 4.454 9.866 9.893 9.866h17.334c3.866 0 7 3.134 7 7v16.945c0 4.902 4.027 8.929 8.93 8.929h46.304c4.903 0 8.93-4.027 8.93-8.929v-16.945c0-3.866 3.134-7 7-7h17.334c5.439 0 9.893-4.443 9.893-9.866v-36.44c0-5.441-4.451-9.892-9.893-9.892zm63.416-314.093 2.907-5.412c1.828-3.403 6.075-4.683 9.479-2.854 3.403 1.828 4.682 6.075 2.854 9.479l-16.073 29.925c-1.22 2.271-3.589 3.688-6.167 3.688s-4.947-1.417-6.167-3.688l-16.073-29.925c-1.828-3.404-.549-7.651 2.854-9.479 3.404-1.829 7.651-.549 9.479 2.854l2.907 5.412v-69.835c0-3.863 3.137-7 7-7s7 3.137 7 7zm-132.198 54.758-49.381-49.381c-2.732-2.731-2.732-7.167 0-9.899s7.168-2.732 9.9 0l49.38 49.38-1.771-5.881c-1.114-3.7.985-7.608 4.684-8.722 3.7-1.114 7.607.985 8.721 4.685l9.796 32.526c.743 2.468.069 5.145-1.753 6.968-1.823 1.823-4.5 2.496-6.969 1.753l-32.526-9.795c-3.699-1.114-5.798-5.022-4.684-8.721s5.022-5.798 8.721-4.684zm-44.859 122.299h-69.835c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7h69.835l-5.412-2.907c-3.403-1.828-4.682-6.076-2.854-9.479 1.828-3.404 6.075-4.683 9.479-2.855l29.926 16.074c2.271 1.22 3.688 3.589 3.688 6.167 0 2.577-1.417 4.947-3.688 6.166l-29.926 16.074c-3.404 1.828-7.651.549-9.479-2.855-1.828-3.403-.549-7.651 2.854-9.479zm54.758 118.198-49.38 49.38c-2.732 2.732-7.168 2.732-9.9 0s-2.732-7.167 0-9.899l49.381-49.381-5.882 1.772c-3.699 1.114-7.607-.985-8.721-4.685-1.114-3.699.985-7.607 4.684-8.721l32.526-9.795c2.469-.743 5.146-.07 6.969 1.753 1.822 1.823 2.496 4.5 1.753 6.968l-9.796 32.527c-1.114 3.699-5.021 5.798-8.721 4.684-3.699-1.114-5.798-5.022-4.684-8.721zm240.497-240.497 5.882-1.771c3.699-1.114 7.607.985 8.721 4.684s-.985 7.607-4.684 8.721l-32.526 9.795c-2.469.743-5.146.07-6.969-1.753-1.822-1.823-2.496-4.5-1.753-6.968l9.796-32.526c1.114-3.7 5.021-5.799 8.721-4.685 3.699 1.114 5.798 5.022 4.684 8.722l-1.771 5.881 49.38-49.38c2.732-2.732 7.168-2.732 9.9 0s2.732 7.168 0 9.899zm44.859 122.299 5.412 2.906c3.403 1.828 4.682 6.076 2.854 9.479-1.828 3.404-6.075 4.683-9.479 2.855l-29.926-16.074c-2.271-1.219-3.688-3.589-3.688-6.166 0-2.578 1.417-4.947 3.688-6.167l29.926-16.074c3.404-1.828 7.651-.549 9.479 2.855 1.828 3.403.549 7.651-2.854 9.479l-5.412 2.907h69.835c3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7zm-54.758 118.198 1.771 5.882c1.114 3.699-.985 7.607-4.684 8.721-3.7 1.114-7.607-.985-8.721-4.684l-9.796-32.527c-.743-2.468-.069-5.145 1.753-6.968 1.823-1.823 4.5-2.496 6.969-1.753l32.526 9.795c3.699 1.114 5.798 5.022 4.684 8.721-1.114 3.7-5.022 5.799-8.721 4.685l-5.882-1.772 49.381 49.381c2.732 2.732 2.732 7.167 0 9.899s-7.168 2.732-9.9 0z\"></path></svg>				\n									<h5>\n							gennemtænkte løsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"outline\"><path d=\"M486.41,144A28,28,0,0,0,472,92H349.123l5.457-21.828a48.513,48.513,0,0,0-12.848-46.153A41.035,41.035,0,0,0,312.609,12H308a8.009,8.009,0,0,0-8,8V47.413l-19.233,64.112A17.376,17.376,0,0,1,268,123.539V112a4,4,0,0,0-4-4H152a4,4,0,0,0-4,4v72a4,4,0,0,0,8,0V116h72V276H156V248a4,4,0,0,0-8,0v32a4,4,0,0,0,4,4H264a4,4,0,0,0,4-4V268.5h11.168A37.07,37.07,0,0,1,305.092,279a45.025,45.025,0,0,0,31.48,12.752L440,292a27.987,27.987,0,0,0,19.369-48.2,27.987,27.987,0,0,0,16-48A28,28,0,0,0,486.41,144ZM260,276H236V116h24Zm212-88H396a4,4,0,0,0,0,8h60a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h40a20,20,0,0,1,.01,40l-103.428-.25a37.07,37.07,0,0,1-25.924-10.5,45.031,45.031,0,0,0-31.49-12.752H268V131.686a25.317,25.317,0,0,0,20.429-17.862l19.4-64.675A4,4,0,0,0,308,48V20h4.609a33.082,33.082,0,0,1,23.481,9.69,40.507,40.507,0,0,1,10.728,38.541l-6.7,26.8A4,4,0,0,0,344,100H472a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h72a20,20,0,0,1,0,40Z\"></path><path d=\"M194.5,183.243l-1.9-.217a4,4,0,0,0-4.169,2.491L184.29,195.9H135.278l-3.539-9.317a4,4,0,0,0-7.478,2.84l2.459,6.477h-8.474L68.452,156.872a4,4,0,1,0-4.935,6.3L77.6,174.209,56.961,194.48l-6.636-5.491a4,4,0,1,0-5.1,6.163L87.219,229.9a44.1,44.1,0,0,0,28.05,10.1H212a8.009,8.009,0,0,0,8-8V203.9a8.009,8.009,0,0,0-8-8h-8v-2.01A10.708,10.708,0,0,0,194.5,183.243ZM212,203.9V232H115.269a36.081,36.081,0,0,1-22.951-8.264l-29.16-24.128,20.8-20.422L114.4,203.045a4,4,0,0,0,2.468.852H187a4,4,0,0,0,3.715-2.517l3.929-9.843a2.712,2.712,0,0,1,1.356,2.35v6.01a4,4,0,0,0,4,4Z\"></path><path d=\"M223.084,484.672,200.87,469.863V346.36A44.1,44.1,0,0,0,195.327,325l-17.183-30.94a4,4,0,0,0-7,3.884l17.184,30.94a36.073,36.073,0,0,1,4.537,17.478V468H164.333a4,4,0,1,0,0,8h31.321l12,8H152.865V352a4,4,0,0,0-.358-1.655l-25.454-56A4,4,0,0,0,123.411,292H114.2a4,4,0,0,0-3.945,4.658l8.862,53.175a36.016,36.016,0,0,1-1.951,18.949L78.642,468H48.333a4,4,0,1,0,0,8H80.377L92,484H32.088L76.63,361.366a4.017,4.017,0,0,0,.183-2.044L61.1,268H136a4,4,0,0,0,0-8H59.233L30.555,173.966A19.723,19.723,0,0,1,49.27,148H76a12,12,0,0,0,24,0h15.2a21.975,21.975,0,0,1,8.395,1.652l10.889,4.458a4,4,0,1,0,3.032-7.4L126.63,142.25A29.938,29.938,0,0,0,115.2,140H100v-4.527A16.014,16.014,0,0,0,112,120V103.473A16.014,16.014,0,0,0,124,88V80a4,4,0,0,0-4-4H90A22.025,22.025,0,0,0,68,98v18a12.02,12.02,0,0,0,8,11.314V140H49.27a27.723,27.723,0,0,0-26.305,36.5l29.493,88.482,16.29,94.655-46.128,127A4,4,0,0,0,26.38,492h78.485a4,4,0,0,0,2.268-7.3L86.3,470.368l38.318-98.69a44.018,44.018,0,0,0,2.385-23.16L118.921,300h1.914l24.03,52.867V488a4,4,0,0,0,4,4h72a4,4,0,0,0,2.219-7.328ZM76,98A14.015,14.015,0,0,1,90,84h26v4a8.009,8.009,0,0,1-8,8H92a4,4,0,0,0-4,4,11.962,11.962,0,0,1-1.53,5.881A12.044,12.044,0,0,0,76,104.686Zm4,14a3.981,3.981,0,0,1,3.407,1.9,4,4,0,0,0,5.956.975c.207-.171.7-.648.7-.648.032-.028.061-.057.09-.087A19.907,19.907,0,0,0,95.6,104H104v16a8.009,8.009,0,0,1-8,8,12.133,12.133,0,0,1-2.681-.3,4,4,0,1,0-1.775,7.8c.151.035.3.06.456.091V148a4,4,0,1,1-8,0V124a4,4,0,0,0-4-4,4,4,0,0,1,0-8Z\"></path></g></svg>				\n									<h5>\n							arbejde udført med ansvar						\n					</h5>\n				<p>Vi lover ikke mere, end vi kan holde – men vi holder det, vi lover.</p>			<h2>KONTAKT OS</h2>		<p>Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.</p>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 15:10:57', '2026-01-26 15:10:57', '', 10, 'https://mrarif.me/cpnordic/?p=714', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(711, 1, '2026-01-26 15:10:42', '2026-01-26 15:10:42', '<h2>Kontaktoplysninger</h2>		<p>Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid<br />velkommen til at kontakte os for en uforpligtende snak.</p>					\n			<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>			\n							<h5>Placering</h5>							<ul>\n							<li>\n										Fyn, Denmark\n									</li>\n						</ul>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M358.57,0H153.43c-27.195,0-49.319,22.124-49.319,49.319v413.362h-0.001c0,27.195,22.124,49.319,49.319,49.319H358.57   c27.195,0,49.319-22.124,49.319-49.319V49.319C407.891,22.124,385.766,0,358.57,0z M124.508,49.319   c0-15.948,12.974-28.921,28.921-28.921H358.57c15.947,0,28.921,12.974,28.921,28.921v355.589H124.508V49.319z M387.493,462.681   L387.493,462.681c-0.001,15.947-12.975,28.921-28.922,28.921H153.43c-15.948,0-28.921-12.974-28.921-28.921v-37.374h262.984   V462.681z\"></path>	</g></g><g>	<g>		<path d=\"M270.789,34.677h-29.578c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h29.578   c5.632,0,10.199-4.566,10.199-10.199C280.988,39.243,276.421,34.677,270.789,34.677z\"></path>	</g></g><g>	<g>		<path d=\"M242.204,371.251h-91.255c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h91.255   c5.632,0,10.199-4.566,10.199-10.199C252.403,375.817,247.836,371.251,242.204,371.251z\"></path>	</g></g><g>	<g>		<path d=\"M282.518,371.251h-5.346c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h5.346   c5.632,0,10.199-4.566,10.199-10.199C292.717,375.817,288.15,371.251,282.518,371.251z\"></path>	</g></g><g>	<g>		<path d=\"M256,430.406c-14.903,0-27.028,12.125-27.028,27.028s12.125,27.028,27.028,27.028s27.028-12.125,27.028-27.028   S270.903,430.406,256,430.406z M256,464.064c-3.655,0-6.629-2.974-6.629-6.63s2.974-6.629,6.629-6.629s6.63,2.974,6.63,6.629   S259.655,464.064,256,464.064z\"></path>	</g></g><g>	<g>		<path d=\"M442.612,198.005c-3.984-3.983-10.44-3.983-14.425,0c-3.983,3.983-3.983,10.441,0,14.425   c23.463,23.462,23.463,61.639,0,85.1c-3.983,3.983-3.983,10.441,0,14.425c1.992,1.992,4.602,2.987,7.212,2.987   s5.22-0.995,7.212-2.987C474.027,280.539,474.027,229.421,442.612,198.005z\"></path>	</g></g><g>	<g>		<path d=\"M470.017,170.6c-3.984-3.983-10.44-3.983-14.425,0c-3.983,3.983-3.983,10.441,0,14.425   c18.686,18.686,28.977,43.53,28.977,69.955s-10.291,51.27-28.977,69.955c-3.983,3.983-3.983,10.441,0,14.425   c1.992,1.992,4.602,2.987,7.212,2.987c2.61,0,5.22-0.995,7.212-2.987C516.544,292.832,516.544,217.128,470.017,170.6z\"></path>	</g></g><g>	<g>		<path d=\"M83.812,212.43c3.984-3.984,3.984-10.442,0.001-14.425c-3.984-3.983-10.44-3.983-14.425,0   c-31.416,31.416-31.416,82.533,0,113.95c1.992,1.992,4.602,2.987,7.212,2.987s5.22-0.995,7.212-2.987   c3.983-3.983,3.983-10.441,0-14.425C60.349,274.068,60.349,235.891,83.812,212.43z\"></path>	</g></g><g>	<g>		<path d=\"M27.431,254.98c0-26.426,10.291-51.27,28.977-69.955c3.983-3.983,3.983-10.441,0-14.425   c-3.984-3.983-10.44-3.983-14.425,0c-46.527,46.528-46.527,122.232,0,168.76c1.992,1.992,4.602,2.987,7.212,2.987   s5.22-0.995,7.212-2.987c3.983-3.983,3.983-10.441,0-14.425C37.721,306.25,27.431,281.406,27.431,254.98z\"></path>	</g></g><g>	<g>		<path d=\"M358.06,280.099l-47.694-47.694c-2.619-2.618-6.45-3.613-10.015-2.595l-7.104,2.03c-1.015,0.291-1.98,0.736-2.859,1.323   l-14.669,9.788c-17.71-12.415-33.181-28.156-45.295-46.078l10.425-10.425c1.226-1.226,2.119-2.743,2.596-4.41l2.03-7.104   c1.018-3.562,0.023-7.394-2.595-10.015l-47.697-47.697c-2.827-2.827-7.048-3.742-10.793-2.338l-8.119,3.044   c-1.364,0.511-2.602,1.309-3.632,2.338c-1.938,1.939-3.804,4.028-5.546,6.207c-23.54,29.472-21.155,71.832,5.546,98.534   l77.633,77.632c14.404,14.405,33.363,21.733,52.398,21.732c16.254,0,32.564-5.343,46.138-16.187   c2.179-1.741,4.266-3.606,6.205-5.545c1.029-1.03,1.827-2.267,2.338-3.631l3.044-8.119   C361.802,287.147,360.888,282.927,358.06,280.099z M336.079,292.253c-21.345,17.05-52.032,15.315-71.379-4.034l-77.633-77.632   c-19.349-19.349-21.082-50.035-4.034-71.379c0.783-0.98,1.598-1.933,2.44-2.849l38.31,38.311l-13.591,13.592   c-3.331,3.331-3.947,8.51-1.491,12.531c15.402,25.2,36.656,46.986,61.469,63.005c3.415,2.204,7.81,2.17,11.194-0.085   l18.872-12.593l38.696,38.696C338.011,290.656,337.058,291.471,336.079,292.253z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>			\n							<h5>Ring til os</h5>							<ul>\n							<li>\n											<a href=\"tel:41600040\">\n											41 60 00 40\n											</a>\n									</li>\n						</ul>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M331.756,277.251l-42.881,43.026c-17.389,17.45-47.985,17.826-65.75,0l-42.883-43.026L26.226,431.767   C31.959,434.418,38.28,436,45,436h422c6.72,0,13.039-1.58,18.77-4.232L331.756,277.251z\"></path>	</g></g><g>	<g>		<path d=\"M467,76H45c-6.72,0-13.041,1.582-18.772,4.233l164.577,165.123c0.011,0.011,0.024,0.013,0.035,0.024   c0.011,0.011,0.013,0.026,0.013,0.026l53.513,53.69c5.684,5.684,17.586,5.684,23.27,0l53.502-53.681c0,0,0.013-0.024,0.024-0.035   c0,0,0.024-0.013,0.035-0.024L485.77,80.232C480.039,77.58,473.72,76,467,76z\"></path>	</g></g><g>	<g>		<path d=\"M4.786,101.212C1.82,107.21,0,113.868,0,121v270c0,7.132,1.818,13.79,4.785,19.788l154.283-154.783L4.786,101.212z\"></path>	</g></g><g>	<g>		<path d=\"M507.214,101.21L352.933,256.005L507.214,410.79C510.18,404.792,512,398.134,512,391V121   C512,113.866,510.18,107.208,507.214,101.21z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>			\n							<h5>Send os en email</h5>							<ul>\n							<li>\n											<a href=\"mailto:kontakt@cp-nordic.dk\">\n											kontakt@cp-nordic.dk\n											</a>\n									</li>\n						</ul>\n							<h2>KONTAKT OS</h2>		<p>Vi dækker hele Fyn – og tager også gerne opgaver uden for området, når der er tale om spændende eller teknisk krævende løsninger.</p>					\n					<a href=\"https://www.facebook.com/cpnordic/\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"https://www.instagram.com/cpnordic/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>', 'Kontakt', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-01-26 15:10:42', '2026-01-26 15:10:42', '', 18, 'https://mrarif.me/cpnordic/?p=711', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(712, 1, '2026-01-26 15:10:56', '2026-01-26 15:10:56', '<h1>CP NORDIC ApS</h1>					<h4>Byggeri – Tømrerarbejde og tagdækning</h4>										<a href=\"https://mrarif.me/cpnordic/kontakt/\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"https://mrarif.me/cpnordic/om-os/\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"https://mrarif.me/cpnordic/tomrerarbejde/\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>								<a href=\"https://mrarif.me/cpnordic/tagdaekning/\">\n									Lær mere\n					</a>\n									<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle ANMELDELSER\n					</a>\n					<h2>HVORFOR VÆLGE CP NORDIC ApS?</h2>		<p>Når du vælger CP NORDIC ApS, får du:</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 450 450\" width=\"512\"><g><g><path d=\"m225 165.2c-25.9 0-48.9-18.8-53.3-45.2-2.4-14.2.9-28.6 9.3-40.3 8.4-11.8 20.9-19.5 35.1-21.9 29.4-4.9 57.3 15 62.2 44.5 4.9 29.4-15 57.3-44.4 62.2-3 .5-6 .7-8.9.7zm-7.6-99.8c-12.2 2-22.9 8.7-30.1 18.8s-10.1 22.4-8 34.6c3.8 22.7 23.5 38.8 45.7 38.8 2.5 0 5.1-.2 7.6-.6 25.2-4.2 42.3-28.1 38.1-53.4s-28.1-42.4-53.3-38.2z\"></path><path d=\"m255.2 115c-2.1 0-3.8-1.7-3.8-3.8 0-14.6-11.8-26.4-26.4-26.4-2.1 0-3.8-1.7-3.8-3.8s1.7-3.8 3.8-3.8c18.8 0 34.1 15.3 34.1 34.1 0 2-1.8 3.7-3.9 3.7z\"></path><path d=\"m236.1 203h-22.2c-2.1 0-3.8-1.7-3.8-3.8v-14.1c-3.1-.6-6.1-1.4-9.1-2.4l-7 12.2c-1.1 1.8-3.4 2.5-5.3 1.4l-19.2-11.1c-.9-.5-1.5-1.4-1.8-2.3-.3-1-.1-2 .4-2.9l7-12.1c-2.4-2.1-4.6-4.3-6.7-6.6l-12.1 7c-1.8 1.1-4.2.4-5.2-1.4l-11.1-19.2c-1.1-1.8-.4-4.2 1.4-5.2l11.9-6.8c-1-3-1.9-6.1-2.6-9.3h-13.7c-2.1 0-3.8-1.7-3.8-3.8v-22.2c0-2.1 1.7-3.8 3.8-3.8h13.4c.6-3.2 1.4-6.4 2.4-9.5l-11.5-6.6c-1.8-1.1-2.5-3.4-1.4-5.3l11.1-19.6c.5-.9 1.4-1.5 2.3-1.8s2-.1 2.9.4l11.3 6.6c2.2-2.5 4.5-4.8 7-7l-6.5-11.3c-.5-.9-.6-1.9-.4-2.9.3-1 .9-1.8 1.8-2.3l19.2-11.1c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l6.4 11.2c3.1-1.1 6.4-1.9 9.7-2.6v-13c0-2.1 1.7-3.8 3.8-3.8h22.2c2.1 0 3.8 1.7 3.8 3.8v12.8c3.3.7 6.5 1.5 9.7 2.6l6.5-11.2c.5-.9 1.4-1.5 2.3-1.8 1-.3 2-.1 2.9.4l19.2 11.1c.9.5 1.5 1.3 1.8 2.3s.1 2-.4 2.9l-6.5 11.3c2.5 2.2 4.8 4.5 7 7.1l11.3-6.6c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l11.1 19.2c1.1 1.8.4 4.2-1.4 5.3l-11.5 6.6c1 3.1 1.8 6.3 2.5 9.5h13.6c2.1 0 3.8 1.7 3.8 3.8v22.2c0 2.1-1.7 3.8-3.8 3.8h-13.6c-.6 3.1-1.5 6.2-2.5 9.3l11.9 6.8c1.8 1.1 2.5 3.4 1.4 5.2l-11.2 19.5c-1.1 1.8-3.4 2.5-5.2 1.4l-12-7c-2.1 2.4-4.4 4.6-6.7 6.6l7 12.1c.5.9.6 1.9.4 2.9s-.9 1.8-1.8 2.3l-19.2 11.1c-1.8 1.1-4.2.4-5.2-1.4l-7-12.2c-3 1-6 1.8-9.1 2.4v14.1c-.2 2.3-2 4-4.1 4zm-18.4-7.7h14.5v-13.5c0-1.9 1.4-3.5 3.3-3.8 4.7-.7 9.4-2 13.8-3.7 1.8-.7 3.8 0 4.7 1.7l6.7 11.6 12.6-7.3-6.7-11.6c-1-1.6-.5-3.7.9-4.9 3.7-3 7.2-6.4 10.2-10.1 1.2-1.5 3.3-1.8 4.9-.9l11.5 6.6 7.3-12.6-11.3-6.5c-1.6-.9-2.4-3-1.6-4.7 1.8-4.5 3.1-9.2 3.9-14 .3-1.9 1.9-3.2 3.8-3.2h13v-14.6h-12.8c-1.9 0-3.5-1.4-3.8-3.3-.7-4.8-2-9.6-3.7-14.2-.7-1.8 0-3.7 1.7-4.7l10.9-6.3-7.3-12.6-10.8 6.3c-1.6.9-3.7.6-4.9-.9-3.1-3.9-6.6-7.4-10.4-10.6-1.5-1.2-1.9-3.3-.9-4.9l6.2-10.7-12.6-7.3-6.1 10.6c-1 1.6-3 2.3-4.7 1.7-4.6-1.8-9.5-3.1-14.4-3.9-1.9-.3-3.3-1.9-3.3-3.8v-12.2h-14.5v12.3c0 1.9-1.4 3.5-3.3 3.8-5 .8-9.8 2.1-14.4 3.9-1.8.7-3.8 0-4.7-1.7l-6.1-10.6-12.6 7.3 6.2 10.7c.9 1.6.6 3.7-.9 4.9-3.9 3.1-7.4 6.7-10.4 10.6-1.2 1.5-3.3 1.9-4.9.9l-10.8-6.3-7.3 12.6 10.9 6.3c1.6.9 2.3 2.9 1.7 4.7-1.7 4.6-3 9.4-3.7 14.2-.3 1.9-1.9 3.3-3.8 3.3h-12.8v14.5h13c1.9 0 3.5 1.4 3.8 3.2.8 4.8 2.1 9.5 3.9 14 .7 1.8 0 3.8-1.6 4.7l-11.3 6.5 7.3 12.6 11.5-6.6c1.6-.9 3.7-.6 4.9.9 3 3.7 6.5 7.1 10.3 10.1 1.5 1.2 1.9 3.3.9 4.9l-6.7 11.6 12.6 7.3 6.7-11.6c.9-1.6 2.9-2.3 4.7-1.7 4.5 1.7 9.1 2.9 13.8 3.7 1.9.3 3.3 1.9 3.3 3.8z\"></path></g><g><g><g><path d=\"m45.3 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m153.9 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path></g><g><path d=\"m189.3 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.2c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c0 2.1-1.7 3.8-3.8 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m73.3 326.4c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m126 326.4c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m99.7 325.6c-.6 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4s4.1 1.1 4.4 3.2c2.4 16.5 12.3 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m50.2 266.6c-.1 0-.2 0-.3 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.7 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-8.9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.5 2.2zm81.8-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13.1-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.4-.7 2.3-.7z\"></path></g></g></g><g><g><path d=\"m296.1 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m404.7 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path></g><g><path d=\"m440 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.1c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c.2 2.1-1.6 3.8-3.7 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m324 326.3c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m376.7 326.3c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m350.4 325.6c-.5 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4 2.1-.3 4 1.1 4.4 3.2 2.4 16.5 12.4 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m301 266.6c-.1 0-.2 0-.4 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.6 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.4 2.2zm81.7-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.5-.7 2.3-.7z\"></path></g></g></g></g></g></svg>				\n									<h5>\n							et ungt og engageret team						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"496pt\" viewBox=\"0 0 496 496\" width=\"496pt\"><path d=\"m440 328h-28.207031c5.078125-6.703125 8.207031-14.960938 8.207031-24 0-8.824219-7.175781-16-16-16h-12v-19.960938c59.574219-14.445312 104-68.085937 104-132.039062 0-74.992188-61.007812-136-136-136s-136 61.007812-136 136c0 63.953125 44.425781 117.59375 104 132.039062v19.960938h-8.449219c-6.167969 0-12.359375 1.464844-17.886719 4.214844l-50.480468 25.25c-3.320313 1.664062-7.03125 2.535156-10.734375 2.535156h-40.449219v-16h-104v16h56v56h16v-56h16v128h-16v-56h-16v56h-56v16h104v-16h40.449219c3.703125 0 7.414062.871094 10.734375 2.527344l34.488281 17.25c5.519531 2.757812 11.710937 4.222656 17.878906 4.222656h24.449219v24h64v-24h48c13.230469 0 24-10.769531 24-24 0-6.167969-2.40625-11.742188-6.238281-16 3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16 0-13.230469-10.769531-24-24-24zm8 24c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm-208-280c0-66.167969 53.832031-120 120-120s120 53.832031 120 120-53.832031 120-120 120-120-53.832031-120-120zm104 134.976562c5.257812.617188 10.574219 1.023438 16 1.023438s10.742188-.40625 16-1.023438v17.023438h-32zm-40.449219 185.023438c-3.703125 0-7.414062-.871094-10.734375-2.527344l-34.488281-17.25c-5.519531-2.757812-11.710937-4.222656-17.878906-4.222656h-40.449219v-96h40.449219c6.167969 0 12.359375-1.464844 17.886719-4.214844l50.480468-25.25c3.320313-1.664062 7.03125-2.535156 10.734375-2.535156h84.449219c0 13.230469-10.769531 24-24 24h-48.28125l-23.863281 35.808594c-6.101563 9.160156-14.527344 16.589844-24.367188 21.503906-8.753906 4.375-18.542969 6.6875-28.320312 6.6875h-15.167969v16h15.167969c12.246093 0 24.519531-2.894531 35.472656-8.375 12.328125-6.160156 22.878906-15.480469 30.527344-26.945312l6.832031-10.253907v93.574219zm40.449219 24v-136h17.472656c-.898437 2.511719-1.472656 5.183594-1.472656 8 0 6.167969 2.40625 11.742188 6.238281 16-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16 0 10.414062 6.710938 19.214844 16 22.527344v9.472656zm96-24h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8s-3.59375 8-8 8zm0 0\"></path><path d=\"m394.878906 73.007812-7.757812 13.984376c17.816406 9.878906 28.878906 28.664062 28.878906 49.007812h16c0-26.160156-14.222656-50.296875-37.121094-62.992188zm0 0\"></path><path d=\"m360 80c4.734375 0 9.449219.59375 14.007812 1.769531l3.976563-15.503906c-5.855469-1.496094-11.90625-2.265625-17.984375-2.265625zm0 0\"></path><path d=\"m360 48c48.519531 0 88 39.480469 88 88 0 20.753906-7.398438 40.910156-20.832031 56.785156l12.207031 10.34375c15.882812-18.761718 24.625-42.601562 24.625-67.128906 0-57.34375-46.65625-104-104-104-24.527344 0-48.367188 8.753906-67.128906 24.632812l10.335937 12.199219c15.871094-13.433593 36.039063-20.832031 56.792969-20.832031zm0 0\"></path><path d=\"m427.128906 215.367188-10.335937-12.199219c-15.871094 13.433593-36.039063 20.832031-56.792969 20.832031-48.519531 0-88-39.480469-88-88 0-20.753906 7.398438-40.910156 20.832031-56.785156l-12.207031-10.34375c-15.882812 18.761718-24.625 42.601562-24.625 67.128906 0 57.34375 46.65625 104 104 104 24.527344 0 48.367188-8.753906 67.128906-24.632812zm0 0\"></path><path d=\"m121.214844 165.640625c4.953125-1.375 9.695312-3.34375 14.183594-5.878906l9.769531 4.886719 19.472656-19.480469-4.886719-9.769531c2.535156-4.496094 4.503906-9.230469 5.886719-14.183594l10.359375-3.445313v-27.53125l-10.351562-3.453125c-1.375-4.953125-3.34375-9.707031-5.886719-14.183594l4.886719-9.777343-19.472657-19.472657-9.769531 4.886719c-4.484375-2.535156-9.230469-4.503906-14.183594-5.878906l-3.453125-10.359375h-27.539062l-3.445313 10.359375c-4.953125 1.375-9.695312 3.34375-14.183594 5.878906l-9.777343-4.886719-19.472657 19.472657 4.886719 9.777343c-2.535156 4.488282-4.503906 9.230469-5.886719 14.183594l-10.351562 3.445313v27.53125l10.351562 3.453125c1.375 4.953125 3.34375 9.695312 5.886719 14.183594l-4.886719 9.769531 19.472657 19.480469 9.769531-4.886719c4.484375 2.535156 9.230469 4.503906 14.183594 5.878906l3.453125 10.359375h27.539062zm-12.304688-13.679687-2.679687 8.039062h-4.460938l-2.679687-8.039062-4.554688-.90625c-6.128906-1.222657-11.878906-3.605469-17.109375-7.09375l-3.867187-2.578126-7.574219 3.800782-3.160156-3.167969 3.792969-7.582031-2.578126-3.859375c-3.488281-5.222657-5.871093-10.980469-7.09375-17.109375l-.914062-4.554688-8.03125-2.679687v-4.46875l8.03125-2.671875.914062-4.554688c1.222657-6.136718 3.613282-11.886718 7.09375-17.109375l2.578126-3.859375-3.792969-7.589844 3.160156-3.160156 7.574219 3.800782 3.867187-2.578126c5.222657-3.488281 10.980469-5.863281 17.109375-7.09375l4.554688-.90625 2.679687-8.039062h4.460938l2.679687 8.039062 4.554688.90625c6.128906 1.222657 11.878906 3.605469 17.109375 7.09375l3.867187 2.578126 7.574219-3.800782 3.160156 3.160156-3.792969 7.589844 2.578126 3.859375c3.488281 5.214844 5.871093 10.972657 7.09375 17.109375l.914062 4.554688 8.03125 2.679687v4.46875l-8.03125 2.671875-.914062 4.554688c-1.222657 6.128906-3.613282 11.878906-7.09375 17.109375l-2.578126 3.859375 3.792969 7.582031-3.160156 3.167969-7.574219-3.800782-3.867187 2.578126c-5.222657 3.488281-10.980469 5.863281-17.109375 7.09375zm0 0\"></path><path d=\"m104 72c-17.648438 0-32 14.351562-32 32s14.351562 32 32 32 32-14.351562 32-32-14.351562-32-32-32zm0 48c-8.824219 0-16-7.175781-16-16s7.175781-16 16-16 16 7.175781 16 16-7.175781 16-16 16zm0 0\"></path><path d=\"m160 248v-40h48v-208h-208v208h106.664062zm-144-232h176v176h-48v24l-32-24h-96zm0 0\"></path><path d=\"m0 272h16v16h-16zm0 0\"></path><path d=\"m32 272h16v16h-16zm0 0\"></path><path d=\"m64 272h16v16h-16zm0 0\"></path><path d=\"m32 304h16v16h-16zm0 0\"></path><path d=\"m64 304h16v16h-16zm0 0\"></path><path d=\"m0 480h16v16h-16zm0 0\"></path><path d=\"m32 480h16v16h-16zm0 0\"></path><path d=\"m64 480h16v16h-16zm0 0\"></path><path d=\"m32 448h16v16h-16zm0 0\"></path><path d=\"m64 448h16v16h-16zm0 0\"></path></svg>				\n									<h5>\n							fokus på kvalitet og detaljer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m469.12 408.93-67.26-33.63v-22.13c10.71-7.69 18.6-19.07 21.78-32.27h5.28c8.81 0 15.98-7.17 15.98-15.98v-5.29c0-6.35-3.74-11.84-9.12-14.41 5.19-18.64-1.65-39.76-19.44-59.78-12.58-14.16-30.67-22.27-49.62-22.27-18.93 0-37.01 8.12-49.59 22.27-13.38 15.05-20.95 41.01-14.03 59.62-5.56 2.5-9.45 8.09-9.45 14.57v5.29c0 8.81 7.17 15.98 15.98 15.98h5.55c3.16 13.09 10.94 24.39 21.51 32.08v22.32l-67.26 33.63c-16.7 5.87-27.89 21.6-27.89 39.28v41.63c0 3.31 2.69 6 6 6h243.46c3.31 0 6-2.69 6-6v-41.63c0-17.68-11.19-33.41-27.88-39.28zm-62.24-17.7-15.83 27.66-13.29-13.29 19.29-19.29zm-37.61 5.88-20.59-20.58v-16.91c6.41 2.57 13.4 4.01 20.72 4.01 7.22 0 14.11-1.39 20.45-3.9v16.8zm63.63-97.48v5.29c0 2.16-1.82 3.98-3.98 3.98h-3.74c.01-.36.03-.71.03-1.07v-12.18h3.71c2.15-.01 3.98 1.82 3.98 3.98zm-119.29 8.2v1.07h-3.98c-2.16 0-3.98-1.82-3.98-3.98v-5.29c0-2.16 1.82-3.98 3.98-3.98l3.98.22zm1.95-24.19c-7.33-13.69-.89-37.39 10.53-50.24 10.31-11.6 25.12-18.25 40.63-18.25 15.52 0 30.34 6.65 40.65 18.25 8.43 9.48 21.3 27.59 17.4 46.39-5.66-.35-10.67-2.55-14.4-6.36-5.37-5.49-7.72-14-6.63-23.94.29-2.62-1.17-5.13-3.6-6.17s-5.25-.37-6.95 1.65c-19.33 22.92-45.95 36.76-73.9 38.68h-3.73zm10.05 24.19v-12.73c24.57-2.92 47.92-14.05 66.73-31.8 1.43 7.26 4.63 13.6 9.45 18.52 3.27 3.35 7.14 5.89 11.41 7.58v18.42c0 24.15-19.65 43.8-43.8 43.8s-43.79-19.64-43.79-43.79zm15.89 78.48 19.29 19.29-13.29 13.29-15.84-27.66zm3.22 97.53h-39.42v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.76v-35.63c0-12.68 8.1-23.95 20.15-28.05.26-.09.51-.19.75-.31l46.47-23.23 20.07 35.06c.93 1.62 2.56 2.72 4.41 2.97.27.04.53.05.79.05 1.58 0 3.11-.62 4.24-1.76l.14-.14zm12.08 0 7.41-64.69 5.06-5.06 4.84 4.84 7.86 64.92h-25.17zm128.2 0h-39.76v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.18l-6.2-51.17.25.25c1.13 1.13 2.66 1.76 4.24 1.76.26 0 .53-.02.79-.05 1.85-.25 3.48-1.34 4.41-2.97l20.07-35.06 46.47 23.23c.24.12.49.23.75.31 12.05 4.1 20.15 15.38 20.15 28.05v35.65zm-67.04-346.65h-10.84l28.38 39.84 28.38-39.84h-10.84c-3.31 0-6-2.69-6-6v-64.58h-98.7c-3.31 0-6-2.69-6-6s2.69-6 6-6h104.7c3.31 0 6 2.69 6 6v64.58h16.48c2.25 0 4.3 1.25 5.33 3.25s.86 4.4-.45 6.23l-40.02 56.18c-1.13 1.58-2.95 2.52-4.89 2.52s-3.76-.94-4.89-2.52l-40.02-56.18c-1.3-1.83-1.48-4.23-.45-6.23s3.09-3.25 5.33-3.25h16.48v-23.5h-65.38c-3.31 0-6-2.69-6-6s2.69-6 6-6h71.38c3.31 0 6 2.69 6 6v35.5c.02 3.31-2.67 6-5.98 6zm-118.44 50.65v-133.26c0-21.18-17.23-38.41-38.41-38.41h-207.7c-21.18-.01-38.41 17.23-38.41 38.41v133.26c0 21.18 17.23 38.41 38.41 38.41h105.8l64.8 55.11c1.11.94 2.49 1.43 3.89 1.43.85 0 1.71-.18 2.52-.55 2.12-.98 3.48-3.11 3.48-5.45v-50.54h27.21c21.18 0 38.41-17.23 38.41-38.41zm-71.62 26.41c-3.31 0-6 2.69-6 6v43.56l-56.59-48.13c-1.08-.92-2.46-1.43-3.89-1.43h-108.01c-14.56 0-26.41-11.85-26.41-26.41v-133.26c0-14.56 11.85-26.41 26.41-26.41h207.69c14.56 0 26.41 11.85 26.41 26.41v133.26c0 14.56-11.85 26.41-26.41 26.41zm-156.34-87.87h56.97c3.31 0 6-2.69 6-6v-39.2l8.55-8.55c2.34-2.34 2.34-6.14 0-8.49-2.34-2.34-6.14-2.34-8.48 0l-.7.7c-.98-1.97-3.01-3.32-5.36-3.32h-56.98c-3.31 0-6 2.69-6 6v52.85c0 3.32 2.69 6.01 6 6.01zm6-52.86h44.97v2.69l-18.16 18.16-8.84-8.84c-2.34-2.34-6.14-2.34-8.49 0-2.34 2.34-2.34 6.14 0 8.49l13.08 13.08c1.17 1.17 2.71 1.76 4.24 1.76s3.07-.59 4.24-1.76l13.92-13.92v21.2h-44.96zm173.62 3.08c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 31.92c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 36.52c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.68 5.99 6zm0 31.92c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.69 5.99 6zm-119.36 165.01h10.84l-28.38-39.84-28.38 39.84h10.84c3.31 0 6 2.69 6 6v64.58h98.7c3.31 0 6 2.69 6 6s-2.69 6-6 6h-104.69c-3.31 0-6-2.69-6-6v-64.58h-16.48c-2.25 0-4.3-1.25-5.33-3.25s-.86-4.4.45-6.23l40.02-56.18c1.13-1.58 2.95-2.52 4.89-2.52s3.76.94 4.89 2.52l40.02 56.18c1.3 1.83 1.48 4.23.45 6.23s-3.09 3.25-5.33 3.25h-16.48v23.5h65.38c3.31 0 6 2.69 6 6s-2.69 6-6 6h-71.38c-3.31 0-6-2.69-6-6v-35.5c-.03-3.31 2.66-6 5.97-6z\"></path></svg>				\n									<h5>\n							ærlig<br> rådgivning						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 510 510\"><path d=\"m192.036 385.845c-4.787-46.972-19.459-64.336-30.658-82.352-8.672-13.951-15.5-28.245-15.5-54.252 0-60.242 48.865-109.109 109.135-109.109 60.242 0 109.109 48.866 109.109 109.109 0 26.007-6.828 40.301-15.5 54.252-11.199 18.016-25.871 35.38-30.658 82.352 9.985 2.864 17.345 12.101 17.345 22.975v36.44c0 13.109-10.747 23.866-23.893 23.866h-10.334v9.945c0 12.588-10.341 22.929-22.93 22.929h-46.304c-12.589 0-22.93-10.341-22.93-22.929v-9.945h-10.334c-13.146 0-23.893-10.757-23.893-23.866v-36.44c0-10.874 7.36-20.111 17.345-22.975zm111.948-.917c4.199-42.194 15.78-62.332 26.488-79.049 10.147-15.842 19.65-28.207 19.65-56.638 0-52.513-42.597-95.109-95.109-95.109-52.537 0-95.135 42.596-95.135 95.109 0 28.431 9.503 40.796 19.65 56.638 10.708 16.717 22.289 36.855 26.488 79.049zm2.554-78.61c-1.175 13.701-11.985 24.191-24.783 24.191-13.527 0-24.862-12.086-24.862-26.673v-99.328c0-14.12 11.335-26.673 24.862-26.673 11.309 0 21.031 8.139 23.975 19.497 9.12 3.904 15.688 13.438 15.688 24.78 0 1.153-.068 2.289-.201 3.403 5.078 5.326 8.283 12.802 8.283 21.117 0 6.39-1.889 12.262-5.06 17.053 1.996 4.099 3.13 8.773 3.13 13.76 0 14.1-9.065 25.697-21.032 28.873zm-16.452-109.977c-1.964-2.729-4.916-4.506-8.331-4.506-6.192 0-10.862 6.21-10.862 12.673v99.328c0 6.677 4.67 12.673 10.862 12.673 5.516 0 9.822-4.614 10.717-10.425-4.709-1.416-8.923-4.144-12.279-7.814-2.607-2.852-2.409-7.283.443-9.89 2.851-2.607 7.282-2.408 9.889.443 2.416 2.642 5.72 4.356 9.402 4.356 7.733 0 13.643-7.218 13.643-15.734s-5.91-15.734-13.643-15.734c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7 5.352 0 10.388 1.655 14.658 4.533.593-1.743.915-3.634.915-5.612 0-2.11-.366-4.128-1.036-5.972-.769.858-1.588 1.66-2.453 2.397-2.94 2.507-7.361 2.156-9.869-.784-2.507-2.939-2.155-7.361.784-9.868 2.773-2.365 4.492-6.122 4.492-10.293 0-6.072-3.705-11.374-8.898-12.467-.154-.023-.307-.052-.458-.085-.499-.08-1.01-.121-1.532-.121-2.947 0-5.591 1.389-7.515 3.525-2.585 2.87-7.015 3.101-9.886.515-2.87-2.586-3.101-7.015-.515-9.886 3.111-3.453 7.059-5.988 11.472-7.252zm-104.526 67.344c-3.171-4.791-5.06-10.663-5.06-17.053 0-8.307 3.198-15.777 8.284-21.104-.133-1.118-.202-2.258-.202-3.416 0-11.354 6.582-20.897 15.717-24.792 2.948-11.354 12.67-19.485 23.946-19.485 13.56 0 24.888 12.555 24.888 26.673v99.328c0 14.585-11.328 26.673-24.888 26.673-12.765 0-23.578-10.484-24.757-24.184-11.98-3.166-21.058-14.769-21.058-28.88 0-4.987 1.134-9.661 3.13-13.76zm9.982-23.036c-.675 1.847-1.042 3.869-1.042 5.983 0 1.978.322 3.869.915 5.612 4.27-2.878 9.306-4.533 14.658-4.533 3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7-7.733 0-13.643 7.218-13.643 15.734s5.91 15.734 13.643 15.734c3.682 0 6.986-1.714 9.402-4.356 2.607-2.851 7.038-3.05 9.889-.443 2.852 2.607 3.05 7.038.443 9.89-3.35 3.664-7.556 6.389-12.255 7.807.891 5.813 5.192 10.432 10.693 10.432 6.21 0 10.888-5.993 10.888-12.673v-99.328c0-6.466-4.678-12.673-10.888-12.673-3.404 0-6.349 1.777-8.309 4.507 4.421 1.264 8.367 3.8 11.476 7.251 2.586 2.871 2.355 7.3-.516 9.886-2.87 2.586-7.3 2.355-9.886-.515-1.926-2.138-4.574-3.525-7.54-3.525-.493 0-.976.037-1.448.108-.196.045-.395.082-.596.11-5.165 1.118-8.844 6.404-8.844 12.455 0 1.243.153 2.45.442 3.594.101.284.183.572.246.862.748 2.326 2.071 4.346 3.814 5.823 2.947 2.498 3.311 6.919.813 9.866s-6.919 3.312-9.866.814c-.878-.745-1.71-1.554-2.489-2.422zm3.042 158.279c-5.442 0-9.893 4.451-9.893 9.892v36.44c0 5.423 4.454 9.866 9.893 9.866h17.334c3.866 0 7 3.134 7 7v16.945c0 4.902 4.027 8.929 8.93 8.929h46.304c4.903 0 8.93-4.027 8.93-8.929v-16.945c0-3.866 3.134-7 7-7h17.334c5.439 0 9.893-4.443 9.893-9.866v-36.44c0-5.441-4.451-9.892-9.893-9.892zm63.416-314.093 2.907-5.412c1.828-3.403 6.075-4.683 9.479-2.854 3.403 1.828 4.682 6.075 2.854 9.479l-16.073 29.925c-1.22 2.271-3.589 3.688-6.167 3.688s-4.947-1.417-6.167-3.688l-16.073-29.925c-1.828-3.404-.549-7.651 2.854-9.479 3.404-1.829 7.651-.549 9.479 2.854l2.907 5.412v-69.835c0-3.863 3.137-7 7-7s7 3.137 7 7zm-132.198 54.758-49.381-49.381c-2.732-2.731-2.732-7.167 0-9.899s7.168-2.732 9.9 0l49.38 49.38-1.771-5.881c-1.114-3.7.985-7.608 4.684-8.722 3.7-1.114 7.607.985 8.721 4.685l9.796 32.526c.743 2.468.069 5.145-1.753 6.968-1.823 1.823-4.5 2.496-6.969 1.753l-32.526-9.795c-3.699-1.114-5.798-5.022-4.684-8.721s5.022-5.798 8.721-4.684zm-44.859 122.299h-69.835c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7h69.835l-5.412-2.907c-3.403-1.828-4.682-6.076-2.854-9.479 1.828-3.404 6.075-4.683 9.479-2.855l29.926 16.074c2.271 1.22 3.688 3.589 3.688 6.167 0 2.577-1.417 4.947-3.688 6.166l-29.926 16.074c-3.404 1.828-7.651.549-9.479-2.855-1.828-3.403-.549-7.651 2.854-9.479zm54.758 118.198-49.38 49.38c-2.732 2.732-7.168 2.732-9.9 0s-2.732-7.167 0-9.899l49.381-49.381-5.882 1.772c-3.699 1.114-7.607-.985-8.721-4.685-1.114-3.699.985-7.607 4.684-8.721l32.526-9.795c2.469-.743 5.146-.07 6.969 1.753 1.822 1.823 2.496 4.5 1.753 6.968l-9.796 32.527c-1.114 3.699-5.021 5.798-8.721 4.684-3.699-1.114-5.798-5.022-4.684-8.721zm240.497-240.497 5.882-1.771c3.699-1.114 7.607.985 8.721 4.684s-.985 7.607-4.684 8.721l-32.526 9.795c-2.469.743-5.146.07-6.969-1.753-1.822-1.823-2.496-4.5-1.753-6.968l9.796-32.526c1.114-3.7 5.021-5.799 8.721-4.685 3.699 1.114 5.798 5.022 4.684 8.722l-1.771 5.881 49.38-49.38c2.732-2.732 7.168-2.732 9.9 0s2.732 7.168 0 9.899zm44.859 122.299 5.412 2.906c3.403 1.828 4.682 6.076 2.854 9.479-1.828 3.404-6.075 4.683-9.479 2.855l-29.926-16.074c-2.271-1.219-3.688-3.589-3.688-6.166 0-2.578 1.417-4.947 3.688-6.167l29.926-16.074c3.404-1.828 7.651-.549 9.479 2.855 1.828 3.403.549 7.651-2.854 9.479l-5.412 2.907h69.835c3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7zm-54.758 118.198 1.771 5.882c1.114 3.699-.985 7.607-4.684 8.721-3.7 1.114-7.607-.985-8.721-4.684l-9.796-32.527c-.743-2.468-.069-5.145 1.753-6.968 1.823-1.823 4.5-2.496 6.969-1.753l32.526 9.795c3.699 1.114 5.798 5.022 4.684 8.721-1.114 3.7-5.022 5.799-8.721 4.685l-5.882-1.772 49.381 49.381c2.732 2.732 2.732 7.167 0 9.899s-7.168 2.732-9.9 0z\"></path></svg>				\n									<h5>\n							gennemtænkte løsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"outline\"><path d=\"M486.41,144A28,28,0,0,0,472,92H349.123l5.457-21.828a48.513,48.513,0,0,0-12.848-46.153A41.035,41.035,0,0,0,312.609,12H308a8.009,8.009,0,0,0-8,8V47.413l-19.233,64.112A17.376,17.376,0,0,1,268,123.539V112a4,4,0,0,0-4-4H152a4,4,0,0,0-4,4v72a4,4,0,0,0,8,0V116h72V276H156V248a4,4,0,0,0-8,0v32a4,4,0,0,0,4,4H264a4,4,0,0,0,4-4V268.5h11.168A37.07,37.07,0,0,1,305.092,279a45.025,45.025,0,0,0,31.48,12.752L440,292a27.987,27.987,0,0,0,19.369-48.2,27.987,27.987,0,0,0,16-48A28,28,0,0,0,486.41,144ZM260,276H236V116h24Zm212-88H396a4,4,0,0,0,0,8h60a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h40a20,20,0,0,1,.01,40l-103.428-.25a37.07,37.07,0,0,1-25.924-10.5,45.031,45.031,0,0,0-31.49-12.752H268V131.686a25.317,25.317,0,0,0,20.429-17.862l19.4-64.675A4,4,0,0,0,308,48V20h4.609a33.082,33.082,0,0,1,23.481,9.69,40.507,40.507,0,0,1,10.728,38.541l-6.7,26.8A4,4,0,0,0,344,100H472a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h72a20,20,0,0,1,0,40Z\"></path><path d=\"M194.5,183.243l-1.9-.217a4,4,0,0,0-4.169,2.491L184.29,195.9H135.278l-3.539-9.317a4,4,0,0,0-7.478,2.84l2.459,6.477h-8.474L68.452,156.872a4,4,0,1,0-4.935,6.3L77.6,174.209,56.961,194.48l-6.636-5.491a4,4,0,1,0-5.1,6.163L87.219,229.9a44.1,44.1,0,0,0,28.05,10.1H212a8.009,8.009,0,0,0,8-8V203.9a8.009,8.009,0,0,0-8-8h-8v-2.01A10.708,10.708,0,0,0,194.5,183.243ZM212,203.9V232H115.269a36.081,36.081,0,0,1-22.951-8.264l-29.16-24.128,20.8-20.422L114.4,203.045a4,4,0,0,0,2.468.852H187a4,4,0,0,0,3.715-2.517l3.929-9.843a2.712,2.712,0,0,1,1.356,2.35v6.01a4,4,0,0,0,4,4Z\"></path><path d=\"M223.084,484.672,200.87,469.863V346.36A44.1,44.1,0,0,0,195.327,325l-17.183-30.94a4,4,0,0,0-7,3.884l17.184,30.94a36.073,36.073,0,0,1,4.537,17.478V468H164.333a4,4,0,1,0,0,8h31.321l12,8H152.865V352a4,4,0,0,0-.358-1.655l-25.454-56A4,4,0,0,0,123.411,292H114.2a4,4,0,0,0-3.945,4.658l8.862,53.175a36.016,36.016,0,0,1-1.951,18.949L78.642,468H48.333a4,4,0,1,0,0,8H80.377L92,484H32.088L76.63,361.366a4.017,4.017,0,0,0,.183-2.044L61.1,268H136a4,4,0,0,0,0-8H59.233L30.555,173.966A19.723,19.723,0,0,1,49.27,148H76a12,12,0,0,0,24,0h15.2a21.975,21.975,0,0,1,8.395,1.652l10.889,4.458a4,4,0,1,0,3.032-7.4L126.63,142.25A29.938,29.938,0,0,0,115.2,140H100v-4.527A16.014,16.014,0,0,0,112,120V103.473A16.014,16.014,0,0,0,124,88V80a4,4,0,0,0-4-4H90A22.025,22.025,0,0,0,68,98v18a12.02,12.02,0,0,0,8,11.314V140H49.27a27.723,27.723,0,0,0-26.305,36.5l29.493,88.482,16.29,94.655-46.128,127A4,4,0,0,0,26.38,492h78.485a4,4,0,0,0,2.268-7.3L86.3,470.368l38.318-98.69a44.018,44.018,0,0,0,2.385-23.16L118.921,300h1.914l24.03,52.867V488a4,4,0,0,0,4,4h72a4,4,0,0,0,2.219-7.328ZM76,98A14.015,14.015,0,0,1,90,84h26v4a8.009,8.009,0,0,1-8,8H92a4,4,0,0,0-4,4,11.962,11.962,0,0,1-1.53,5.881A12.044,12.044,0,0,0,76,104.686Zm4,14a3.981,3.981,0,0,1,3.407,1.9,4,4,0,0,0,5.956.975c.207-.171.7-.648.7-.648.032-.028.061-.057.09-.087A19.907,19.907,0,0,0,95.6,104H104v16a8.009,8.009,0,0,1-8,8,12.133,12.133,0,0,1-2.681-.3,4,4,0,1,0-1.775,7.8c.151.035.3.06.456.091V148a4,4,0,1,1-8,0V124a4,4,0,0,0-4-4,4,4,0,0,1,0-8Z\"></path></g></svg>				\n									<h5>\n							arbejde udført med ansvar						\n					</h5>\n				<p>Vi lover ikke mere, end vi kan holde – men vi holder det, vi lover.</p>			<h2>KONTAKT OS</h2>		<p>Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.</p>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 15:10:56', '2026-01-26 15:10:56', '', 10, 'https://mrarif.me/cpnordic/?p=712', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(713, 1, '2026-01-26 15:10:57', '2026-01-26 15:10:57', '<h1>CP NORDIC ApS</h1>					<h4>Byggeri – Tømrerarbejde og tagdækning</h4>										<a href=\"https://mrarif.me/cpnordic/kontakt/\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"https://mrarif.me/cpnordic/om-os/\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"https://mrarif.me/cpnordic/tomrerarbejde/\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>								<a href=\"https://mrarif.me/cpnordic/tagdaekning/\">\n									Lær mere\n					</a>\n									<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle ANMELDELSER\n					</a>\n					<h2>HVORFOR VÆLGE CP NORDIC ApS?</h2>		<p>Når du vælger CP NORDIC ApS, får du:</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 450 450\" width=\"512\"><g><g><path d=\"m225 165.2c-25.9 0-48.9-18.8-53.3-45.2-2.4-14.2.9-28.6 9.3-40.3 8.4-11.8 20.9-19.5 35.1-21.9 29.4-4.9 57.3 15 62.2 44.5 4.9 29.4-15 57.3-44.4 62.2-3 .5-6 .7-8.9.7zm-7.6-99.8c-12.2 2-22.9 8.7-30.1 18.8s-10.1 22.4-8 34.6c3.8 22.7 23.5 38.8 45.7 38.8 2.5 0 5.1-.2 7.6-.6 25.2-4.2 42.3-28.1 38.1-53.4s-28.1-42.4-53.3-38.2z\"></path><path d=\"m255.2 115c-2.1 0-3.8-1.7-3.8-3.8 0-14.6-11.8-26.4-26.4-26.4-2.1 0-3.8-1.7-3.8-3.8s1.7-3.8 3.8-3.8c18.8 0 34.1 15.3 34.1 34.1 0 2-1.8 3.7-3.9 3.7z\"></path><path d=\"m236.1 203h-22.2c-2.1 0-3.8-1.7-3.8-3.8v-14.1c-3.1-.6-6.1-1.4-9.1-2.4l-7 12.2c-1.1 1.8-3.4 2.5-5.3 1.4l-19.2-11.1c-.9-.5-1.5-1.4-1.8-2.3-.3-1-.1-2 .4-2.9l7-12.1c-2.4-2.1-4.6-4.3-6.7-6.6l-12.1 7c-1.8 1.1-4.2.4-5.2-1.4l-11.1-19.2c-1.1-1.8-.4-4.2 1.4-5.2l11.9-6.8c-1-3-1.9-6.1-2.6-9.3h-13.7c-2.1 0-3.8-1.7-3.8-3.8v-22.2c0-2.1 1.7-3.8 3.8-3.8h13.4c.6-3.2 1.4-6.4 2.4-9.5l-11.5-6.6c-1.8-1.1-2.5-3.4-1.4-5.3l11.1-19.6c.5-.9 1.4-1.5 2.3-1.8s2-.1 2.9.4l11.3 6.6c2.2-2.5 4.5-4.8 7-7l-6.5-11.3c-.5-.9-.6-1.9-.4-2.9.3-1 .9-1.8 1.8-2.3l19.2-11.1c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l6.4 11.2c3.1-1.1 6.4-1.9 9.7-2.6v-13c0-2.1 1.7-3.8 3.8-3.8h22.2c2.1 0 3.8 1.7 3.8 3.8v12.8c3.3.7 6.5 1.5 9.7 2.6l6.5-11.2c.5-.9 1.4-1.5 2.3-1.8 1-.3 2-.1 2.9.4l19.2 11.1c.9.5 1.5 1.3 1.8 2.3s.1 2-.4 2.9l-6.5 11.3c2.5 2.2 4.8 4.5 7 7.1l11.3-6.6c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l11.1 19.2c1.1 1.8.4 4.2-1.4 5.3l-11.5 6.6c1 3.1 1.8 6.3 2.5 9.5h13.6c2.1 0 3.8 1.7 3.8 3.8v22.2c0 2.1-1.7 3.8-3.8 3.8h-13.6c-.6 3.1-1.5 6.2-2.5 9.3l11.9 6.8c1.8 1.1 2.5 3.4 1.4 5.2l-11.2 19.5c-1.1 1.8-3.4 2.5-5.2 1.4l-12-7c-2.1 2.4-4.4 4.6-6.7 6.6l7 12.1c.5.9.6 1.9.4 2.9s-.9 1.8-1.8 2.3l-19.2 11.1c-1.8 1.1-4.2.4-5.2-1.4l-7-12.2c-3 1-6 1.8-9.1 2.4v14.1c-.2 2.3-2 4-4.1 4zm-18.4-7.7h14.5v-13.5c0-1.9 1.4-3.5 3.3-3.8 4.7-.7 9.4-2 13.8-3.7 1.8-.7 3.8 0 4.7 1.7l6.7 11.6 12.6-7.3-6.7-11.6c-1-1.6-.5-3.7.9-4.9 3.7-3 7.2-6.4 10.2-10.1 1.2-1.5 3.3-1.8 4.9-.9l11.5 6.6 7.3-12.6-11.3-6.5c-1.6-.9-2.4-3-1.6-4.7 1.8-4.5 3.1-9.2 3.9-14 .3-1.9 1.9-3.2 3.8-3.2h13v-14.6h-12.8c-1.9 0-3.5-1.4-3.8-3.3-.7-4.8-2-9.6-3.7-14.2-.7-1.8 0-3.7 1.7-4.7l10.9-6.3-7.3-12.6-10.8 6.3c-1.6.9-3.7.6-4.9-.9-3.1-3.9-6.6-7.4-10.4-10.6-1.5-1.2-1.9-3.3-.9-4.9l6.2-10.7-12.6-7.3-6.1 10.6c-1 1.6-3 2.3-4.7 1.7-4.6-1.8-9.5-3.1-14.4-3.9-1.9-.3-3.3-1.9-3.3-3.8v-12.2h-14.5v12.3c0 1.9-1.4 3.5-3.3 3.8-5 .8-9.8 2.1-14.4 3.9-1.8.7-3.8 0-4.7-1.7l-6.1-10.6-12.6 7.3 6.2 10.7c.9 1.6.6 3.7-.9 4.9-3.9 3.1-7.4 6.7-10.4 10.6-1.2 1.5-3.3 1.9-4.9.9l-10.8-6.3-7.3 12.6 10.9 6.3c1.6.9 2.3 2.9 1.7 4.7-1.7 4.6-3 9.4-3.7 14.2-.3 1.9-1.9 3.3-3.8 3.3h-12.8v14.5h13c1.9 0 3.5 1.4 3.8 3.2.8 4.8 2.1 9.5 3.9 14 .7 1.8 0 3.8-1.6 4.7l-11.3 6.5 7.3 12.6 11.5-6.6c1.6-.9 3.7-.6 4.9.9 3 3.7 6.5 7.1 10.3 10.1 1.5 1.2 1.9 3.3.9 4.9l-6.7 11.6 12.6 7.3 6.7-11.6c.9-1.6 2.9-2.3 4.7-1.7 4.5 1.7 9.1 2.9 13.8 3.7 1.9.3 3.3 1.9 3.3 3.8z\"></path></g><g><g><g><path d=\"m45.3 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m153.9 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path></g><g><path d=\"m189.3 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.2c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c0 2.1-1.7 3.8-3.8 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m73.3 326.4c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m126 326.4c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m99.7 325.6c-.6 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4s4.1 1.1 4.4 3.2c2.4 16.5 12.3 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m50.2 266.6c-.1 0-.2 0-.3 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.7 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-8.9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.5 2.2zm81.8-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13.1-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.4-.7 2.3-.7z\"></path></g></g></g><g><g><path d=\"m296.1 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m404.7 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path></g><g><path d=\"m440 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.1c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c.2 2.1-1.6 3.8-3.7 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m324 326.3c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m376.7 326.3c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m350.4 325.6c-.5 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4 2.1-.3 4 1.1 4.4 3.2 2.4 16.5 12.4 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m301 266.6c-.1 0-.2 0-.4 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.6 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.4 2.2zm81.7-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.5-.7 2.3-.7z\"></path></g></g></g></g></g></svg>				\n									<h5>\n							et ungt og engageret team						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"496pt\" viewBox=\"0 0 496 496\" width=\"496pt\"><path d=\"m440 328h-28.207031c5.078125-6.703125 8.207031-14.960938 8.207031-24 0-8.824219-7.175781-16-16-16h-12v-19.960938c59.574219-14.445312 104-68.085937 104-132.039062 0-74.992188-61.007812-136-136-136s-136 61.007812-136 136c0 63.953125 44.425781 117.59375 104 132.039062v19.960938h-8.449219c-6.167969 0-12.359375 1.464844-17.886719 4.214844l-50.480468 25.25c-3.320313 1.664062-7.03125 2.535156-10.734375 2.535156h-40.449219v-16h-104v16h56v56h16v-56h16v128h-16v-56h-16v56h-56v16h104v-16h40.449219c3.703125 0 7.414062.871094 10.734375 2.527344l34.488281 17.25c5.519531 2.757812 11.710937 4.222656 17.878906 4.222656h24.449219v24h64v-24h48c13.230469 0 24-10.769531 24-24 0-6.167969-2.40625-11.742188-6.238281-16 3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16 0-13.230469-10.769531-24-24-24zm8 24c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm-208-280c0-66.167969 53.832031-120 120-120s120 53.832031 120 120-53.832031 120-120 120-120-53.832031-120-120zm104 134.976562c5.257812.617188 10.574219 1.023438 16 1.023438s10.742188-.40625 16-1.023438v17.023438h-32zm-40.449219 185.023438c-3.703125 0-7.414062-.871094-10.734375-2.527344l-34.488281-17.25c-5.519531-2.757812-11.710937-4.222656-17.878906-4.222656h-40.449219v-96h40.449219c6.167969 0 12.359375-1.464844 17.886719-4.214844l50.480468-25.25c3.320313-1.664062 7.03125-2.535156 10.734375-2.535156h84.449219c0 13.230469-10.769531 24-24 24h-48.28125l-23.863281 35.808594c-6.101563 9.160156-14.527344 16.589844-24.367188 21.503906-8.753906 4.375-18.542969 6.6875-28.320312 6.6875h-15.167969v16h15.167969c12.246093 0 24.519531-2.894531 35.472656-8.375 12.328125-6.160156 22.878906-15.480469 30.527344-26.945312l6.832031-10.253907v93.574219zm40.449219 24v-136h17.472656c-.898437 2.511719-1.472656 5.183594-1.472656 8 0 6.167969 2.40625 11.742188 6.238281 16-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16 0 10.414062 6.710938 19.214844 16 22.527344v9.472656zm96-24h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8s-3.59375 8-8 8zm0 0\"></path><path d=\"m394.878906 73.007812-7.757812 13.984376c17.816406 9.878906 28.878906 28.664062 28.878906 49.007812h16c0-26.160156-14.222656-50.296875-37.121094-62.992188zm0 0\"></path><path d=\"m360 80c4.734375 0 9.449219.59375 14.007812 1.769531l3.976563-15.503906c-5.855469-1.496094-11.90625-2.265625-17.984375-2.265625zm0 0\"></path><path d=\"m360 48c48.519531 0 88 39.480469 88 88 0 20.753906-7.398438 40.910156-20.832031 56.785156l12.207031 10.34375c15.882812-18.761718 24.625-42.601562 24.625-67.128906 0-57.34375-46.65625-104-104-104-24.527344 0-48.367188 8.753906-67.128906 24.632812l10.335937 12.199219c15.871094-13.433593 36.039063-20.832031 56.792969-20.832031zm0 0\"></path><path d=\"m427.128906 215.367188-10.335937-12.199219c-15.871094 13.433593-36.039063 20.832031-56.792969 20.832031-48.519531 0-88-39.480469-88-88 0-20.753906 7.398438-40.910156 20.832031-56.785156l-12.207031-10.34375c-15.882812 18.761718-24.625 42.601562-24.625 67.128906 0 57.34375 46.65625 104 104 104 24.527344 0 48.367188-8.753906 67.128906-24.632812zm0 0\"></path><path d=\"m121.214844 165.640625c4.953125-1.375 9.695312-3.34375 14.183594-5.878906l9.769531 4.886719 19.472656-19.480469-4.886719-9.769531c2.535156-4.496094 4.503906-9.230469 5.886719-14.183594l10.359375-3.445313v-27.53125l-10.351562-3.453125c-1.375-4.953125-3.34375-9.707031-5.886719-14.183594l4.886719-9.777343-19.472657-19.472657-9.769531 4.886719c-4.484375-2.535156-9.230469-4.503906-14.183594-5.878906l-3.453125-10.359375h-27.539062l-3.445313 10.359375c-4.953125 1.375-9.695312 3.34375-14.183594 5.878906l-9.777343-4.886719-19.472657 19.472657 4.886719 9.777343c-2.535156 4.488282-4.503906 9.230469-5.886719 14.183594l-10.351562 3.445313v27.53125l10.351562 3.453125c1.375 4.953125 3.34375 9.695312 5.886719 14.183594l-4.886719 9.769531 19.472657 19.480469 9.769531-4.886719c4.484375 2.535156 9.230469 4.503906 14.183594 5.878906l3.453125 10.359375h27.539062zm-12.304688-13.679687-2.679687 8.039062h-4.460938l-2.679687-8.039062-4.554688-.90625c-6.128906-1.222657-11.878906-3.605469-17.109375-7.09375l-3.867187-2.578126-7.574219 3.800782-3.160156-3.167969 3.792969-7.582031-2.578126-3.859375c-3.488281-5.222657-5.871093-10.980469-7.09375-17.109375l-.914062-4.554688-8.03125-2.679687v-4.46875l8.03125-2.671875.914062-4.554688c1.222657-6.136718 3.613282-11.886718 7.09375-17.109375l2.578126-3.859375-3.792969-7.589844 3.160156-3.160156 7.574219 3.800782 3.867187-2.578126c5.222657-3.488281 10.980469-5.863281 17.109375-7.09375l4.554688-.90625 2.679687-8.039062h4.460938l2.679687 8.039062 4.554688.90625c6.128906 1.222657 11.878906 3.605469 17.109375 7.09375l3.867187 2.578126 7.574219-3.800782 3.160156 3.160156-3.792969 7.589844 2.578126 3.859375c3.488281 5.214844 5.871093 10.972657 7.09375 17.109375l.914062 4.554688 8.03125 2.679687v4.46875l-8.03125 2.671875-.914062 4.554688c-1.222657 6.128906-3.613282 11.878906-7.09375 17.109375l-2.578126 3.859375 3.792969 7.582031-3.160156 3.167969-7.574219-3.800782-3.867187 2.578126c-5.222657 3.488281-10.980469 5.863281-17.109375 7.09375zm0 0\"></path><path d=\"m104 72c-17.648438 0-32 14.351562-32 32s14.351562 32 32 32 32-14.351562 32-32-14.351562-32-32-32zm0 48c-8.824219 0-16-7.175781-16-16s7.175781-16 16-16 16 7.175781 16 16-7.175781 16-16 16zm0 0\"></path><path d=\"m160 248v-40h48v-208h-208v208h106.664062zm-144-232h176v176h-48v24l-32-24h-96zm0 0\"></path><path d=\"m0 272h16v16h-16zm0 0\"></path><path d=\"m32 272h16v16h-16zm0 0\"></path><path d=\"m64 272h16v16h-16zm0 0\"></path><path d=\"m32 304h16v16h-16zm0 0\"></path><path d=\"m64 304h16v16h-16zm0 0\"></path><path d=\"m0 480h16v16h-16zm0 0\"></path><path d=\"m32 480h16v16h-16zm0 0\"></path><path d=\"m64 480h16v16h-16zm0 0\"></path><path d=\"m32 448h16v16h-16zm0 0\"></path><path d=\"m64 448h16v16h-16zm0 0\"></path></svg>				\n									<h5>\n							fokus på kvalitet og detaljer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m469.12 408.93-67.26-33.63v-22.13c10.71-7.69 18.6-19.07 21.78-32.27h5.28c8.81 0 15.98-7.17 15.98-15.98v-5.29c0-6.35-3.74-11.84-9.12-14.41 5.19-18.64-1.65-39.76-19.44-59.78-12.58-14.16-30.67-22.27-49.62-22.27-18.93 0-37.01 8.12-49.59 22.27-13.38 15.05-20.95 41.01-14.03 59.62-5.56 2.5-9.45 8.09-9.45 14.57v5.29c0 8.81 7.17 15.98 15.98 15.98h5.55c3.16 13.09 10.94 24.39 21.51 32.08v22.32l-67.26 33.63c-16.7 5.87-27.89 21.6-27.89 39.28v41.63c0 3.31 2.69 6 6 6h243.46c3.31 0 6-2.69 6-6v-41.63c0-17.68-11.19-33.41-27.88-39.28zm-62.24-17.7-15.83 27.66-13.29-13.29 19.29-19.29zm-37.61 5.88-20.59-20.58v-16.91c6.41 2.57 13.4 4.01 20.72 4.01 7.22 0 14.11-1.39 20.45-3.9v16.8zm63.63-97.48v5.29c0 2.16-1.82 3.98-3.98 3.98h-3.74c.01-.36.03-.71.03-1.07v-12.18h3.71c2.15-.01 3.98 1.82 3.98 3.98zm-119.29 8.2v1.07h-3.98c-2.16 0-3.98-1.82-3.98-3.98v-5.29c0-2.16 1.82-3.98 3.98-3.98l3.98.22zm1.95-24.19c-7.33-13.69-.89-37.39 10.53-50.24 10.31-11.6 25.12-18.25 40.63-18.25 15.52 0 30.34 6.65 40.65 18.25 8.43 9.48 21.3 27.59 17.4 46.39-5.66-.35-10.67-2.55-14.4-6.36-5.37-5.49-7.72-14-6.63-23.94.29-2.62-1.17-5.13-3.6-6.17s-5.25-.37-6.95 1.65c-19.33 22.92-45.95 36.76-73.9 38.68h-3.73zm10.05 24.19v-12.73c24.57-2.92 47.92-14.05 66.73-31.8 1.43 7.26 4.63 13.6 9.45 18.52 3.27 3.35 7.14 5.89 11.41 7.58v18.42c0 24.15-19.65 43.8-43.8 43.8s-43.79-19.64-43.79-43.79zm15.89 78.48 19.29 19.29-13.29 13.29-15.84-27.66zm3.22 97.53h-39.42v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.76v-35.63c0-12.68 8.1-23.95 20.15-28.05.26-.09.51-.19.75-.31l46.47-23.23 20.07 35.06c.93 1.62 2.56 2.72 4.41 2.97.27.04.53.05.79.05 1.58 0 3.11-.62 4.24-1.76l.14-.14zm12.08 0 7.41-64.69 5.06-5.06 4.84 4.84 7.86 64.92h-25.17zm128.2 0h-39.76v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.18l-6.2-51.17.25.25c1.13 1.13 2.66 1.76 4.24 1.76.26 0 .53-.02.79-.05 1.85-.25 3.48-1.34 4.41-2.97l20.07-35.06 46.47 23.23c.24.12.49.23.75.31 12.05 4.1 20.15 15.38 20.15 28.05v35.65zm-67.04-346.65h-10.84l28.38 39.84 28.38-39.84h-10.84c-3.31 0-6-2.69-6-6v-64.58h-98.7c-3.31 0-6-2.69-6-6s2.69-6 6-6h104.7c3.31 0 6 2.69 6 6v64.58h16.48c2.25 0 4.3 1.25 5.33 3.25s.86 4.4-.45 6.23l-40.02 56.18c-1.13 1.58-2.95 2.52-4.89 2.52s-3.76-.94-4.89-2.52l-40.02-56.18c-1.3-1.83-1.48-4.23-.45-6.23s3.09-3.25 5.33-3.25h16.48v-23.5h-65.38c-3.31 0-6-2.69-6-6s2.69-6 6-6h71.38c3.31 0 6 2.69 6 6v35.5c.02 3.31-2.67 6-5.98 6zm-118.44 50.65v-133.26c0-21.18-17.23-38.41-38.41-38.41h-207.7c-21.18-.01-38.41 17.23-38.41 38.41v133.26c0 21.18 17.23 38.41 38.41 38.41h105.8l64.8 55.11c1.11.94 2.49 1.43 3.89 1.43.85 0 1.71-.18 2.52-.55 2.12-.98 3.48-3.11 3.48-5.45v-50.54h27.21c21.18 0 38.41-17.23 38.41-38.41zm-71.62 26.41c-3.31 0-6 2.69-6 6v43.56l-56.59-48.13c-1.08-.92-2.46-1.43-3.89-1.43h-108.01c-14.56 0-26.41-11.85-26.41-26.41v-133.26c0-14.56 11.85-26.41 26.41-26.41h207.69c14.56 0 26.41 11.85 26.41 26.41v133.26c0 14.56-11.85 26.41-26.41 26.41zm-156.34-87.87h56.97c3.31 0 6-2.69 6-6v-39.2l8.55-8.55c2.34-2.34 2.34-6.14 0-8.49-2.34-2.34-6.14-2.34-8.48 0l-.7.7c-.98-1.97-3.01-3.32-5.36-3.32h-56.98c-3.31 0-6 2.69-6 6v52.85c0 3.32 2.69 6.01 6 6.01zm6-52.86h44.97v2.69l-18.16 18.16-8.84-8.84c-2.34-2.34-6.14-2.34-8.49 0-2.34 2.34-2.34 6.14 0 8.49l13.08 13.08c1.17 1.17 2.71 1.76 4.24 1.76s3.07-.59 4.24-1.76l13.92-13.92v21.2h-44.96zm173.62 3.08c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 31.92c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 36.52c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.68 5.99 6zm0 31.92c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.69 5.99 6zm-119.36 165.01h10.84l-28.38-39.84-28.38 39.84h10.84c3.31 0 6 2.69 6 6v64.58h98.7c3.31 0 6 2.69 6 6s-2.69 6-6 6h-104.69c-3.31 0-6-2.69-6-6v-64.58h-16.48c-2.25 0-4.3-1.25-5.33-3.25s-.86-4.4.45-6.23l40.02-56.18c1.13-1.58 2.95-2.52 4.89-2.52s3.76.94 4.89 2.52l40.02 56.18c1.3 1.83 1.48 4.23.45 6.23s-3.09 3.25-5.33 3.25h-16.48v23.5h65.38c3.31 0 6 2.69 6 6s-2.69 6-6 6h-71.38c-3.31 0-6-2.69-6-6v-35.5c-.03-3.31 2.66-6 5.97-6z\"></path></svg>				\n									<h5>\n							ærlig<br> rådgivning						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 510 510\"><path d=\"m192.036 385.845c-4.787-46.972-19.459-64.336-30.658-82.352-8.672-13.951-15.5-28.245-15.5-54.252 0-60.242 48.865-109.109 109.135-109.109 60.242 0 109.109 48.866 109.109 109.109 0 26.007-6.828 40.301-15.5 54.252-11.199 18.016-25.871 35.38-30.658 82.352 9.985 2.864 17.345 12.101 17.345 22.975v36.44c0 13.109-10.747 23.866-23.893 23.866h-10.334v9.945c0 12.588-10.341 22.929-22.93 22.929h-46.304c-12.589 0-22.93-10.341-22.93-22.929v-9.945h-10.334c-13.146 0-23.893-10.757-23.893-23.866v-36.44c0-10.874 7.36-20.111 17.345-22.975zm111.948-.917c4.199-42.194 15.78-62.332 26.488-79.049 10.147-15.842 19.65-28.207 19.65-56.638 0-52.513-42.597-95.109-95.109-95.109-52.537 0-95.135 42.596-95.135 95.109 0 28.431 9.503 40.796 19.65 56.638 10.708 16.717 22.289 36.855 26.488 79.049zm2.554-78.61c-1.175 13.701-11.985 24.191-24.783 24.191-13.527 0-24.862-12.086-24.862-26.673v-99.328c0-14.12 11.335-26.673 24.862-26.673 11.309 0 21.031 8.139 23.975 19.497 9.12 3.904 15.688 13.438 15.688 24.78 0 1.153-.068 2.289-.201 3.403 5.078 5.326 8.283 12.802 8.283 21.117 0 6.39-1.889 12.262-5.06 17.053 1.996 4.099 3.13 8.773 3.13 13.76 0 14.1-9.065 25.697-21.032 28.873zm-16.452-109.977c-1.964-2.729-4.916-4.506-8.331-4.506-6.192 0-10.862 6.21-10.862 12.673v99.328c0 6.677 4.67 12.673 10.862 12.673 5.516 0 9.822-4.614 10.717-10.425-4.709-1.416-8.923-4.144-12.279-7.814-2.607-2.852-2.409-7.283.443-9.89 2.851-2.607 7.282-2.408 9.889.443 2.416 2.642 5.72 4.356 9.402 4.356 7.733 0 13.643-7.218 13.643-15.734s-5.91-15.734-13.643-15.734c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7 5.352 0 10.388 1.655 14.658 4.533.593-1.743.915-3.634.915-5.612 0-2.11-.366-4.128-1.036-5.972-.769.858-1.588 1.66-2.453 2.397-2.94 2.507-7.361 2.156-9.869-.784-2.507-2.939-2.155-7.361.784-9.868 2.773-2.365 4.492-6.122 4.492-10.293 0-6.072-3.705-11.374-8.898-12.467-.154-.023-.307-.052-.458-.085-.499-.08-1.01-.121-1.532-.121-2.947 0-5.591 1.389-7.515 3.525-2.585 2.87-7.015 3.101-9.886.515-2.87-2.586-3.101-7.015-.515-9.886 3.111-3.453 7.059-5.988 11.472-7.252zm-104.526 67.344c-3.171-4.791-5.06-10.663-5.06-17.053 0-8.307 3.198-15.777 8.284-21.104-.133-1.118-.202-2.258-.202-3.416 0-11.354 6.582-20.897 15.717-24.792 2.948-11.354 12.67-19.485 23.946-19.485 13.56 0 24.888 12.555 24.888 26.673v99.328c0 14.585-11.328 26.673-24.888 26.673-12.765 0-23.578-10.484-24.757-24.184-11.98-3.166-21.058-14.769-21.058-28.88 0-4.987 1.134-9.661 3.13-13.76zm9.982-23.036c-.675 1.847-1.042 3.869-1.042 5.983 0 1.978.322 3.869.915 5.612 4.27-2.878 9.306-4.533 14.658-4.533 3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7-7.733 0-13.643 7.218-13.643 15.734s5.91 15.734 13.643 15.734c3.682 0 6.986-1.714 9.402-4.356 2.607-2.851 7.038-3.05 9.889-.443 2.852 2.607 3.05 7.038.443 9.89-3.35 3.664-7.556 6.389-12.255 7.807.891 5.813 5.192 10.432 10.693 10.432 6.21 0 10.888-5.993 10.888-12.673v-99.328c0-6.466-4.678-12.673-10.888-12.673-3.404 0-6.349 1.777-8.309 4.507 4.421 1.264 8.367 3.8 11.476 7.251 2.586 2.871 2.355 7.3-.516 9.886-2.87 2.586-7.3 2.355-9.886-.515-1.926-2.138-4.574-3.525-7.54-3.525-.493 0-.976.037-1.448.108-.196.045-.395.082-.596.11-5.165 1.118-8.844 6.404-8.844 12.455 0 1.243.153 2.45.442 3.594.101.284.183.572.246.862.748 2.326 2.071 4.346 3.814 5.823 2.947 2.498 3.311 6.919.813 9.866s-6.919 3.312-9.866.814c-.878-.745-1.71-1.554-2.489-2.422zm3.042 158.279c-5.442 0-9.893 4.451-9.893 9.892v36.44c0 5.423 4.454 9.866 9.893 9.866h17.334c3.866 0 7 3.134 7 7v16.945c0 4.902 4.027 8.929 8.93 8.929h46.304c4.903 0 8.93-4.027 8.93-8.929v-16.945c0-3.866 3.134-7 7-7h17.334c5.439 0 9.893-4.443 9.893-9.866v-36.44c0-5.441-4.451-9.892-9.893-9.892zm63.416-314.093 2.907-5.412c1.828-3.403 6.075-4.683 9.479-2.854 3.403 1.828 4.682 6.075 2.854 9.479l-16.073 29.925c-1.22 2.271-3.589 3.688-6.167 3.688s-4.947-1.417-6.167-3.688l-16.073-29.925c-1.828-3.404-.549-7.651 2.854-9.479 3.404-1.829 7.651-.549 9.479 2.854l2.907 5.412v-69.835c0-3.863 3.137-7 7-7s7 3.137 7 7zm-132.198 54.758-49.381-49.381c-2.732-2.731-2.732-7.167 0-9.899s7.168-2.732 9.9 0l49.38 49.38-1.771-5.881c-1.114-3.7.985-7.608 4.684-8.722 3.7-1.114 7.607.985 8.721 4.685l9.796 32.526c.743 2.468.069 5.145-1.753 6.968-1.823 1.823-4.5 2.496-6.969 1.753l-32.526-9.795c-3.699-1.114-5.798-5.022-4.684-8.721s5.022-5.798 8.721-4.684zm-44.859 122.299h-69.835c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7h69.835l-5.412-2.907c-3.403-1.828-4.682-6.076-2.854-9.479 1.828-3.404 6.075-4.683 9.479-2.855l29.926 16.074c2.271 1.22 3.688 3.589 3.688 6.167 0 2.577-1.417 4.947-3.688 6.166l-29.926 16.074c-3.404 1.828-7.651.549-9.479-2.855-1.828-3.403-.549-7.651 2.854-9.479zm54.758 118.198-49.38 49.38c-2.732 2.732-7.168 2.732-9.9 0s-2.732-7.167 0-9.899l49.381-49.381-5.882 1.772c-3.699 1.114-7.607-.985-8.721-4.685-1.114-3.699.985-7.607 4.684-8.721l32.526-9.795c2.469-.743 5.146-.07 6.969 1.753 1.822 1.823 2.496 4.5 1.753 6.968l-9.796 32.527c-1.114 3.699-5.021 5.798-8.721 4.684-3.699-1.114-5.798-5.022-4.684-8.721zm240.497-240.497 5.882-1.771c3.699-1.114 7.607.985 8.721 4.684s-.985 7.607-4.684 8.721l-32.526 9.795c-2.469.743-5.146.07-6.969-1.753-1.822-1.823-2.496-4.5-1.753-6.968l9.796-32.526c1.114-3.7 5.021-5.799 8.721-4.685 3.699 1.114 5.798 5.022 4.684 8.722l-1.771 5.881 49.38-49.38c2.732-2.732 7.168-2.732 9.9 0s2.732 7.168 0 9.899zm44.859 122.299 5.412 2.906c3.403 1.828 4.682 6.076 2.854 9.479-1.828 3.404-6.075 4.683-9.479 2.855l-29.926-16.074c-2.271-1.219-3.688-3.589-3.688-6.166 0-2.578 1.417-4.947 3.688-6.167l29.926-16.074c3.404-1.828 7.651-.549 9.479 2.855 1.828 3.403.549 7.651-2.854 9.479l-5.412 2.907h69.835c3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7zm-54.758 118.198 1.771 5.882c1.114 3.699-.985 7.607-4.684 8.721-3.7 1.114-7.607-.985-8.721-4.684l-9.796-32.527c-.743-2.468-.069-5.145 1.753-6.968 1.823-1.823 4.5-2.496 6.969-1.753l32.526 9.795c3.699 1.114 5.798 5.022 4.684 8.721-1.114 3.7-5.022 5.799-8.721 4.685l-5.882-1.772 49.381 49.381c2.732 2.732 2.732 7.167 0 9.899s-7.168 2.732-9.9 0z\"></path></svg>				\n									<h5>\n							gennemtænkte løsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"outline\"><path d=\"M486.41,144A28,28,0,0,0,472,92H349.123l5.457-21.828a48.513,48.513,0,0,0-12.848-46.153A41.035,41.035,0,0,0,312.609,12H308a8.009,8.009,0,0,0-8,8V47.413l-19.233,64.112A17.376,17.376,0,0,1,268,123.539V112a4,4,0,0,0-4-4H152a4,4,0,0,0-4,4v72a4,4,0,0,0,8,0V116h72V276H156V248a4,4,0,0,0-8,0v32a4,4,0,0,0,4,4H264a4,4,0,0,0,4-4V268.5h11.168A37.07,37.07,0,0,1,305.092,279a45.025,45.025,0,0,0,31.48,12.752L440,292a27.987,27.987,0,0,0,19.369-48.2,27.987,27.987,0,0,0,16-48A28,28,0,0,0,486.41,144ZM260,276H236V116h24Zm212-88H396a4,4,0,0,0,0,8h60a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h40a20,20,0,0,1,.01,40l-103.428-.25a37.07,37.07,0,0,1-25.924-10.5,45.031,45.031,0,0,0-31.49-12.752H268V131.686a25.317,25.317,0,0,0,20.429-17.862l19.4-64.675A4,4,0,0,0,308,48V20h4.609a33.082,33.082,0,0,1,23.481,9.69,40.507,40.507,0,0,1,10.728,38.541l-6.7,26.8A4,4,0,0,0,344,100H472a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h72a20,20,0,0,1,0,40Z\"></path><path d=\"M194.5,183.243l-1.9-.217a4,4,0,0,0-4.169,2.491L184.29,195.9H135.278l-3.539-9.317a4,4,0,0,0-7.478,2.84l2.459,6.477h-8.474L68.452,156.872a4,4,0,1,0-4.935,6.3L77.6,174.209,56.961,194.48l-6.636-5.491a4,4,0,1,0-5.1,6.163L87.219,229.9a44.1,44.1,0,0,0,28.05,10.1H212a8.009,8.009,0,0,0,8-8V203.9a8.009,8.009,0,0,0-8-8h-8v-2.01A10.708,10.708,0,0,0,194.5,183.243ZM212,203.9V232H115.269a36.081,36.081,0,0,1-22.951-8.264l-29.16-24.128,20.8-20.422L114.4,203.045a4,4,0,0,0,2.468.852H187a4,4,0,0,0,3.715-2.517l3.929-9.843a2.712,2.712,0,0,1,1.356,2.35v6.01a4,4,0,0,0,4,4Z\"></path><path d=\"M223.084,484.672,200.87,469.863V346.36A44.1,44.1,0,0,0,195.327,325l-17.183-30.94a4,4,0,0,0-7,3.884l17.184,30.94a36.073,36.073,0,0,1,4.537,17.478V468H164.333a4,4,0,1,0,0,8h31.321l12,8H152.865V352a4,4,0,0,0-.358-1.655l-25.454-56A4,4,0,0,0,123.411,292H114.2a4,4,0,0,0-3.945,4.658l8.862,53.175a36.016,36.016,0,0,1-1.951,18.949L78.642,468H48.333a4,4,0,1,0,0,8H80.377L92,484H32.088L76.63,361.366a4.017,4.017,0,0,0,.183-2.044L61.1,268H136a4,4,0,0,0,0-8H59.233L30.555,173.966A19.723,19.723,0,0,1,49.27,148H76a12,12,0,0,0,24,0h15.2a21.975,21.975,0,0,1,8.395,1.652l10.889,4.458a4,4,0,1,0,3.032-7.4L126.63,142.25A29.938,29.938,0,0,0,115.2,140H100v-4.527A16.014,16.014,0,0,0,112,120V103.473A16.014,16.014,0,0,0,124,88V80a4,4,0,0,0-4-4H90A22.025,22.025,0,0,0,68,98v18a12.02,12.02,0,0,0,8,11.314V140H49.27a27.723,27.723,0,0,0-26.305,36.5l29.493,88.482,16.29,94.655-46.128,127A4,4,0,0,0,26.38,492h78.485a4,4,0,0,0,2.268-7.3L86.3,470.368l38.318-98.69a44.018,44.018,0,0,0,2.385-23.16L118.921,300h1.914l24.03,52.867V488a4,4,0,0,0,4,4h72a4,4,0,0,0,2.219-7.328ZM76,98A14.015,14.015,0,0,1,90,84h26v4a8.009,8.009,0,0,1-8,8H92a4,4,0,0,0-4,4,11.962,11.962,0,0,1-1.53,5.881A12.044,12.044,0,0,0,76,104.686Zm4,14a3.981,3.981,0,0,1,3.407,1.9,4,4,0,0,0,5.956.975c.207-.171.7-.648.7-.648.032-.028.061-.057.09-.087A19.907,19.907,0,0,0,95.6,104H104v16a8.009,8.009,0,0,1-8,8,12.133,12.133,0,0,1-2.681-.3,4,4,0,1,0-1.775,7.8c.151.035.3.06.456.091V148a4,4,0,1,1-8,0V124a4,4,0,0,0-4-4,4,4,0,0,1,0-8Z\"></path></g></svg>				\n									<h5>\n							arbejde udført med ansvar						\n					</h5>\n				<p>Vi lover ikke mere, end vi kan holde – men vi holder det, vi lover.</p>			<h2>KONTAKT OS</h2>		<p>Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.</p>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-01-26 15:10:57', '2026-01-26 15:10:57', '', 10, 'https://mrarif.me/cpnordic/?p=713', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(716, 1, '2026-02-14 10:50:04', '2026-02-14 10:50:04', '<h1>CP NORDIC ApS</h1>					<h4>Byggeri – Tømrerarbejde og tagdækning</h4>										<a href=\"https://mrarif.me/cpnordic/kontakt/\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"https://mrarif.me/cpnordic/om-os/\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"https://mrarif.me/cpnordic/tomrerarbejde/\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>								<a href=\"https://mrarif.me/cpnordic/tagdaekning/\">\n									Lær mere\n					</a>\n									<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle ANMELDELSER\n					</a>\n					<h2>HVORFOR VÆLGE CP NORDIC ApS?</h2>		<p>Når du vælger CP NORDIC ApS, får du:</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 450 450\" width=\"512\"><g><g><path d=\"m225 165.2c-25.9 0-48.9-18.8-53.3-45.2-2.4-14.2.9-28.6 9.3-40.3 8.4-11.8 20.9-19.5 35.1-21.9 29.4-4.9 57.3 15 62.2 44.5 4.9 29.4-15 57.3-44.4 62.2-3 .5-6 .7-8.9.7zm-7.6-99.8c-12.2 2-22.9 8.7-30.1 18.8s-10.1 22.4-8 34.6c3.8 22.7 23.5 38.8 45.7 38.8 2.5 0 5.1-.2 7.6-.6 25.2-4.2 42.3-28.1 38.1-53.4s-28.1-42.4-53.3-38.2z\"></path><path d=\"m255.2 115c-2.1 0-3.8-1.7-3.8-3.8 0-14.6-11.8-26.4-26.4-26.4-2.1 0-3.8-1.7-3.8-3.8s1.7-3.8 3.8-3.8c18.8 0 34.1 15.3 34.1 34.1 0 2-1.8 3.7-3.9 3.7z\"></path><path d=\"m236.1 203h-22.2c-2.1 0-3.8-1.7-3.8-3.8v-14.1c-3.1-.6-6.1-1.4-9.1-2.4l-7 12.2c-1.1 1.8-3.4 2.5-5.3 1.4l-19.2-11.1c-.9-.5-1.5-1.4-1.8-2.3-.3-1-.1-2 .4-2.9l7-12.1c-2.4-2.1-4.6-4.3-6.7-6.6l-12.1 7c-1.8 1.1-4.2.4-5.2-1.4l-11.1-19.2c-1.1-1.8-.4-4.2 1.4-5.2l11.9-6.8c-1-3-1.9-6.1-2.6-9.3h-13.7c-2.1 0-3.8-1.7-3.8-3.8v-22.2c0-2.1 1.7-3.8 3.8-3.8h13.4c.6-3.2 1.4-6.4 2.4-9.5l-11.5-6.6c-1.8-1.1-2.5-3.4-1.4-5.3l11.1-19.6c.5-.9 1.4-1.5 2.3-1.8s2-.1 2.9.4l11.3 6.6c2.2-2.5 4.5-4.8 7-7l-6.5-11.3c-.5-.9-.6-1.9-.4-2.9.3-1 .9-1.8 1.8-2.3l19.2-11.1c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l6.4 11.2c3.1-1.1 6.4-1.9 9.7-2.6v-13c0-2.1 1.7-3.8 3.8-3.8h22.2c2.1 0 3.8 1.7 3.8 3.8v12.8c3.3.7 6.5 1.5 9.7 2.6l6.5-11.2c.5-.9 1.4-1.5 2.3-1.8 1-.3 2-.1 2.9.4l19.2 11.1c.9.5 1.5 1.3 1.8 2.3s.1 2-.4 2.9l-6.5 11.3c2.5 2.2 4.8 4.5 7 7.1l11.3-6.6c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l11.1 19.2c1.1 1.8.4 4.2-1.4 5.3l-11.5 6.6c1 3.1 1.8 6.3 2.5 9.5h13.6c2.1 0 3.8 1.7 3.8 3.8v22.2c0 2.1-1.7 3.8-3.8 3.8h-13.6c-.6 3.1-1.5 6.2-2.5 9.3l11.9 6.8c1.8 1.1 2.5 3.4 1.4 5.2l-11.2 19.5c-1.1 1.8-3.4 2.5-5.2 1.4l-12-7c-2.1 2.4-4.4 4.6-6.7 6.6l7 12.1c.5.9.6 1.9.4 2.9s-.9 1.8-1.8 2.3l-19.2 11.1c-1.8 1.1-4.2.4-5.2-1.4l-7-12.2c-3 1-6 1.8-9.1 2.4v14.1c-.2 2.3-2 4-4.1 4zm-18.4-7.7h14.5v-13.5c0-1.9 1.4-3.5 3.3-3.8 4.7-.7 9.4-2 13.8-3.7 1.8-.7 3.8 0 4.7 1.7l6.7 11.6 12.6-7.3-6.7-11.6c-1-1.6-.5-3.7.9-4.9 3.7-3 7.2-6.4 10.2-10.1 1.2-1.5 3.3-1.8 4.9-.9l11.5 6.6 7.3-12.6-11.3-6.5c-1.6-.9-2.4-3-1.6-4.7 1.8-4.5 3.1-9.2 3.9-14 .3-1.9 1.9-3.2 3.8-3.2h13v-14.6h-12.8c-1.9 0-3.5-1.4-3.8-3.3-.7-4.8-2-9.6-3.7-14.2-.7-1.8 0-3.7 1.7-4.7l10.9-6.3-7.3-12.6-10.8 6.3c-1.6.9-3.7.6-4.9-.9-3.1-3.9-6.6-7.4-10.4-10.6-1.5-1.2-1.9-3.3-.9-4.9l6.2-10.7-12.6-7.3-6.1 10.6c-1 1.6-3 2.3-4.7 1.7-4.6-1.8-9.5-3.1-14.4-3.9-1.9-.3-3.3-1.9-3.3-3.8v-12.2h-14.5v12.3c0 1.9-1.4 3.5-3.3 3.8-5 .8-9.8 2.1-14.4 3.9-1.8.7-3.8 0-4.7-1.7l-6.1-10.6-12.6 7.3 6.2 10.7c.9 1.6.6 3.7-.9 4.9-3.9 3.1-7.4 6.7-10.4 10.6-1.2 1.5-3.3 1.9-4.9.9l-10.8-6.3-7.3 12.6 10.9 6.3c1.6.9 2.3 2.9 1.7 4.7-1.7 4.6-3 9.4-3.7 14.2-.3 1.9-1.9 3.3-3.8 3.3h-12.8v14.5h13c1.9 0 3.5 1.4 3.8 3.2.8 4.8 2.1 9.5 3.9 14 .7 1.8 0 3.8-1.6 4.7l-11.3 6.5 7.3 12.6 11.5-6.6c1.6-.9 3.7-.6 4.9.9 3 3.7 6.5 7.1 10.3 10.1 1.5 1.2 1.9 3.3.9 4.9l-6.7 11.6 12.6 7.3 6.7-11.6c.9-1.6 2.9-2.3 4.7-1.7 4.5 1.7 9.1 2.9 13.8 3.7 1.9.3 3.3 1.9 3.3 3.8z\"></path></g><g><g><g><path d=\"m45.3 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m153.9 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path></g><g><path d=\"m189.3 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.2c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c0 2.1-1.7 3.8-3.8 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m73.3 326.4c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m126 326.4c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m99.7 325.6c-.6 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4s4.1 1.1 4.4 3.2c2.4 16.5 12.3 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m50.2 266.6c-.1 0-.2 0-.3 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.7 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-8.9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.5 2.2zm81.8-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13.1-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.4-.7 2.3-.7z\"></path></g></g></g><g><g><path d=\"m296.1 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m404.7 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path></g><g><path d=\"m440 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.1c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c.2 2.1-1.6 3.8-3.7 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m324 326.3c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m376.7 326.3c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m350.4 325.6c-.5 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4 2.1-.3 4 1.1 4.4 3.2 2.4 16.5 12.4 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m301 266.6c-.1 0-.2 0-.4 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.6 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.4 2.2zm81.7-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.5-.7 2.3-.7z\"></path></g></g></g></g></g></svg>				\n									<h5>\n							et ungt og engageret team						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"496pt\" viewBox=\"0 0 496 496\" width=\"496pt\"><path d=\"m440 328h-28.207031c5.078125-6.703125 8.207031-14.960938 8.207031-24 0-8.824219-7.175781-16-16-16h-12v-19.960938c59.574219-14.445312 104-68.085937 104-132.039062 0-74.992188-61.007812-136-136-136s-136 61.007812-136 136c0 63.953125 44.425781 117.59375 104 132.039062v19.960938h-8.449219c-6.167969 0-12.359375 1.464844-17.886719 4.214844l-50.480468 25.25c-3.320313 1.664062-7.03125 2.535156-10.734375 2.535156h-40.449219v-16h-104v16h56v56h16v-56h16v128h-16v-56h-16v56h-56v16h104v-16h40.449219c3.703125 0 7.414062.871094 10.734375 2.527344l34.488281 17.25c5.519531 2.757812 11.710937 4.222656 17.878906 4.222656h24.449219v24h64v-24h48c13.230469 0 24-10.769531 24-24 0-6.167969-2.40625-11.742188-6.238281-16 3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16 0-13.230469-10.769531-24-24-24zm8 24c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm-208-280c0-66.167969 53.832031-120 120-120s120 53.832031 120 120-53.832031 120-120 120-120-53.832031-120-120zm104 134.976562c5.257812.617188 10.574219 1.023438 16 1.023438s10.742188-.40625 16-1.023438v17.023438h-32zm-40.449219 185.023438c-3.703125 0-7.414062-.871094-10.734375-2.527344l-34.488281-17.25c-5.519531-2.757812-11.710937-4.222656-17.878906-4.222656h-40.449219v-96h40.449219c6.167969 0 12.359375-1.464844 17.886719-4.214844l50.480468-25.25c3.320313-1.664062 7.03125-2.535156 10.734375-2.535156h84.449219c0 13.230469-10.769531 24-24 24h-48.28125l-23.863281 35.808594c-6.101563 9.160156-14.527344 16.589844-24.367188 21.503906-8.753906 4.375-18.542969 6.6875-28.320312 6.6875h-15.167969v16h15.167969c12.246093 0 24.519531-2.894531 35.472656-8.375 12.328125-6.160156 22.878906-15.480469 30.527344-26.945312l6.832031-10.253907v93.574219zm40.449219 24v-136h17.472656c-.898437 2.511719-1.472656 5.183594-1.472656 8 0 6.167969 2.40625 11.742188 6.238281 16-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16 0 10.414062 6.710938 19.214844 16 22.527344v9.472656zm96-24h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8s-3.59375 8-8 8zm0 0\"></path><path d=\"m394.878906 73.007812-7.757812 13.984376c17.816406 9.878906 28.878906 28.664062 28.878906 49.007812h16c0-26.160156-14.222656-50.296875-37.121094-62.992188zm0 0\"></path><path d=\"m360 80c4.734375 0 9.449219.59375 14.007812 1.769531l3.976563-15.503906c-5.855469-1.496094-11.90625-2.265625-17.984375-2.265625zm0 0\"></path><path d=\"m360 48c48.519531 0 88 39.480469 88 88 0 20.753906-7.398438 40.910156-20.832031 56.785156l12.207031 10.34375c15.882812-18.761718 24.625-42.601562 24.625-67.128906 0-57.34375-46.65625-104-104-104-24.527344 0-48.367188 8.753906-67.128906 24.632812l10.335937 12.199219c15.871094-13.433593 36.039063-20.832031 56.792969-20.832031zm0 0\"></path><path d=\"m427.128906 215.367188-10.335937-12.199219c-15.871094 13.433593-36.039063 20.832031-56.792969 20.832031-48.519531 0-88-39.480469-88-88 0-20.753906 7.398438-40.910156 20.832031-56.785156l-12.207031-10.34375c-15.882812 18.761718-24.625 42.601562-24.625 67.128906 0 57.34375 46.65625 104 104 104 24.527344 0 48.367188-8.753906 67.128906-24.632812zm0 0\"></path><path d=\"m121.214844 165.640625c4.953125-1.375 9.695312-3.34375 14.183594-5.878906l9.769531 4.886719 19.472656-19.480469-4.886719-9.769531c2.535156-4.496094 4.503906-9.230469 5.886719-14.183594l10.359375-3.445313v-27.53125l-10.351562-3.453125c-1.375-4.953125-3.34375-9.707031-5.886719-14.183594l4.886719-9.777343-19.472657-19.472657-9.769531 4.886719c-4.484375-2.535156-9.230469-4.503906-14.183594-5.878906l-3.453125-10.359375h-27.539062l-3.445313 10.359375c-4.953125 1.375-9.695312 3.34375-14.183594 5.878906l-9.777343-4.886719-19.472657 19.472657 4.886719 9.777343c-2.535156 4.488282-4.503906 9.230469-5.886719 14.183594l-10.351562 3.445313v27.53125l10.351562 3.453125c1.375 4.953125 3.34375 9.695312 5.886719 14.183594l-4.886719 9.769531 19.472657 19.480469 9.769531-4.886719c4.484375 2.535156 9.230469 4.503906 14.183594 5.878906l3.453125 10.359375h27.539062zm-12.304688-13.679687-2.679687 8.039062h-4.460938l-2.679687-8.039062-4.554688-.90625c-6.128906-1.222657-11.878906-3.605469-17.109375-7.09375l-3.867187-2.578126-7.574219 3.800782-3.160156-3.167969 3.792969-7.582031-2.578126-3.859375c-3.488281-5.222657-5.871093-10.980469-7.09375-17.109375l-.914062-4.554688-8.03125-2.679687v-4.46875l8.03125-2.671875.914062-4.554688c1.222657-6.136718 3.613282-11.886718 7.09375-17.109375l2.578126-3.859375-3.792969-7.589844 3.160156-3.160156 7.574219 3.800782 3.867187-2.578126c5.222657-3.488281 10.980469-5.863281 17.109375-7.09375l4.554688-.90625 2.679687-8.039062h4.460938l2.679687 8.039062 4.554688.90625c6.128906 1.222657 11.878906 3.605469 17.109375 7.09375l3.867187 2.578126 7.574219-3.800782 3.160156 3.160156-3.792969 7.589844 2.578126 3.859375c3.488281 5.214844 5.871093 10.972657 7.09375 17.109375l.914062 4.554688 8.03125 2.679687v4.46875l-8.03125 2.671875-.914062 4.554688c-1.222657 6.128906-3.613282 11.878906-7.09375 17.109375l-2.578126 3.859375 3.792969 7.582031-3.160156 3.167969-7.574219-3.800782-3.867187 2.578126c-5.222657 3.488281-10.980469 5.863281-17.109375 7.09375zm0 0\"></path><path d=\"m104 72c-17.648438 0-32 14.351562-32 32s14.351562 32 32 32 32-14.351562 32-32-14.351562-32-32-32zm0 48c-8.824219 0-16-7.175781-16-16s7.175781-16 16-16 16 7.175781 16 16-7.175781 16-16 16zm0 0\"></path><path d=\"m160 248v-40h48v-208h-208v208h106.664062zm-144-232h176v176h-48v24l-32-24h-96zm0 0\"></path><path d=\"m0 272h16v16h-16zm0 0\"></path><path d=\"m32 272h16v16h-16zm0 0\"></path><path d=\"m64 272h16v16h-16zm0 0\"></path><path d=\"m32 304h16v16h-16zm0 0\"></path><path d=\"m64 304h16v16h-16zm0 0\"></path><path d=\"m0 480h16v16h-16zm0 0\"></path><path d=\"m32 480h16v16h-16zm0 0\"></path><path d=\"m64 480h16v16h-16zm0 0\"></path><path d=\"m32 448h16v16h-16zm0 0\"></path><path d=\"m64 448h16v16h-16zm0 0\"></path></svg>				\n									<h5>\n							fokus på kvalitet og detaljer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m469.12 408.93-67.26-33.63v-22.13c10.71-7.69 18.6-19.07 21.78-32.27h5.28c8.81 0 15.98-7.17 15.98-15.98v-5.29c0-6.35-3.74-11.84-9.12-14.41 5.19-18.64-1.65-39.76-19.44-59.78-12.58-14.16-30.67-22.27-49.62-22.27-18.93 0-37.01 8.12-49.59 22.27-13.38 15.05-20.95 41.01-14.03 59.62-5.56 2.5-9.45 8.09-9.45 14.57v5.29c0 8.81 7.17 15.98 15.98 15.98h5.55c3.16 13.09 10.94 24.39 21.51 32.08v22.32l-67.26 33.63c-16.7 5.87-27.89 21.6-27.89 39.28v41.63c0 3.31 2.69 6 6 6h243.46c3.31 0 6-2.69 6-6v-41.63c0-17.68-11.19-33.41-27.88-39.28zm-62.24-17.7-15.83 27.66-13.29-13.29 19.29-19.29zm-37.61 5.88-20.59-20.58v-16.91c6.41 2.57 13.4 4.01 20.72 4.01 7.22 0 14.11-1.39 20.45-3.9v16.8zm63.63-97.48v5.29c0 2.16-1.82 3.98-3.98 3.98h-3.74c.01-.36.03-.71.03-1.07v-12.18h3.71c2.15-.01 3.98 1.82 3.98 3.98zm-119.29 8.2v1.07h-3.98c-2.16 0-3.98-1.82-3.98-3.98v-5.29c0-2.16 1.82-3.98 3.98-3.98l3.98.22zm1.95-24.19c-7.33-13.69-.89-37.39 10.53-50.24 10.31-11.6 25.12-18.25 40.63-18.25 15.52 0 30.34 6.65 40.65 18.25 8.43 9.48 21.3 27.59 17.4 46.39-5.66-.35-10.67-2.55-14.4-6.36-5.37-5.49-7.72-14-6.63-23.94.29-2.62-1.17-5.13-3.6-6.17s-5.25-.37-6.95 1.65c-19.33 22.92-45.95 36.76-73.9 38.68h-3.73zm10.05 24.19v-12.73c24.57-2.92 47.92-14.05 66.73-31.8 1.43 7.26 4.63 13.6 9.45 18.52 3.27 3.35 7.14 5.89 11.41 7.58v18.42c0 24.15-19.65 43.8-43.8 43.8s-43.79-19.64-43.79-43.79zm15.89 78.48 19.29 19.29-13.29 13.29-15.84-27.66zm3.22 97.53h-39.42v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.76v-35.63c0-12.68 8.1-23.95 20.15-28.05.26-.09.51-.19.75-.31l46.47-23.23 20.07 35.06c.93 1.62 2.56 2.72 4.41 2.97.27.04.53.05.79.05 1.58 0 3.11-.62 4.24-1.76l.14-.14zm12.08 0 7.41-64.69 5.06-5.06 4.84 4.84 7.86 64.92h-25.17zm128.2 0h-39.76v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.18l-6.2-51.17.25.25c1.13 1.13 2.66 1.76 4.24 1.76.26 0 .53-.02.79-.05 1.85-.25 3.48-1.34 4.41-2.97l20.07-35.06 46.47 23.23c.24.12.49.23.75.31 12.05 4.1 20.15 15.38 20.15 28.05v35.65zm-67.04-346.65h-10.84l28.38 39.84 28.38-39.84h-10.84c-3.31 0-6-2.69-6-6v-64.58h-98.7c-3.31 0-6-2.69-6-6s2.69-6 6-6h104.7c3.31 0 6 2.69 6 6v64.58h16.48c2.25 0 4.3 1.25 5.33 3.25s.86 4.4-.45 6.23l-40.02 56.18c-1.13 1.58-2.95 2.52-4.89 2.52s-3.76-.94-4.89-2.52l-40.02-56.18c-1.3-1.83-1.48-4.23-.45-6.23s3.09-3.25 5.33-3.25h16.48v-23.5h-65.38c-3.31 0-6-2.69-6-6s2.69-6 6-6h71.38c3.31 0 6 2.69 6 6v35.5c.02 3.31-2.67 6-5.98 6zm-118.44 50.65v-133.26c0-21.18-17.23-38.41-38.41-38.41h-207.7c-21.18-.01-38.41 17.23-38.41 38.41v133.26c0 21.18 17.23 38.41 38.41 38.41h105.8l64.8 55.11c1.11.94 2.49 1.43 3.89 1.43.85 0 1.71-.18 2.52-.55 2.12-.98 3.48-3.11 3.48-5.45v-50.54h27.21c21.18 0 38.41-17.23 38.41-38.41zm-71.62 26.41c-3.31 0-6 2.69-6 6v43.56l-56.59-48.13c-1.08-.92-2.46-1.43-3.89-1.43h-108.01c-14.56 0-26.41-11.85-26.41-26.41v-133.26c0-14.56 11.85-26.41 26.41-26.41h207.69c14.56 0 26.41 11.85 26.41 26.41v133.26c0 14.56-11.85 26.41-26.41 26.41zm-156.34-87.87h56.97c3.31 0 6-2.69 6-6v-39.2l8.55-8.55c2.34-2.34 2.34-6.14 0-8.49-2.34-2.34-6.14-2.34-8.48 0l-.7.7c-.98-1.97-3.01-3.32-5.36-3.32h-56.98c-3.31 0-6 2.69-6 6v52.85c0 3.32 2.69 6.01 6 6.01zm6-52.86h44.97v2.69l-18.16 18.16-8.84-8.84c-2.34-2.34-6.14-2.34-8.49 0-2.34 2.34-2.34 6.14 0 8.49l13.08 13.08c1.17 1.17 2.71 1.76 4.24 1.76s3.07-.59 4.24-1.76l13.92-13.92v21.2h-44.96zm173.62 3.08c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 31.92c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 36.52c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.68 5.99 6zm0 31.92c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.69 5.99 6zm-119.36 165.01h10.84l-28.38-39.84-28.38 39.84h10.84c3.31 0 6 2.69 6 6v64.58h98.7c3.31 0 6 2.69 6 6s-2.69 6-6 6h-104.69c-3.31 0-6-2.69-6-6v-64.58h-16.48c-2.25 0-4.3-1.25-5.33-3.25s-.86-4.4.45-6.23l40.02-56.18c1.13-1.58 2.95-2.52 4.89-2.52s3.76.94 4.89 2.52l40.02 56.18c1.3 1.83 1.48 4.23.45 6.23s-3.09 3.25-5.33 3.25h-16.48v23.5h65.38c3.31 0 6 2.69 6 6s-2.69 6-6 6h-71.38c-3.31 0-6-2.69-6-6v-35.5c-.03-3.31 2.66-6 5.97-6z\"></path></svg>				\n									<h5>\n							ærlig<br> rådgivning						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 510 510\"><path d=\"m192.036 385.845c-4.787-46.972-19.459-64.336-30.658-82.352-8.672-13.951-15.5-28.245-15.5-54.252 0-60.242 48.865-109.109 109.135-109.109 60.242 0 109.109 48.866 109.109 109.109 0 26.007-6.828 40.301-15.5 54.252-11.199 18.016-25.871 35.38-30.658 82.352 9.985 2.864 17.345 12.101 17.345 22.975v36.44c0 13.109-10.747 23.866-23.893 23.866h-10.334v9.945c0 12.588-10.341 22.929-22.93 22.929h-46.304c-12.589 0-22.93-10.341-22.93-22.929v-9.945h-10.334c-13.146 0-23.893-10.757-23.893-23.866v-36.44c0-10.874 7.36-20.111 17.345-22.975zm111.948-.917c4.199-42.194 15.78-62.332 26.488-79.049 10.147-15.842 19.65-28.207 19.65-56.638 0-52.513-42.597-95.109-95.109-95.109-52.537 0-95.135 42.596-95.135 95.109 0 28.431 9.503 40.796 19.65 56.638 10.708 16.717 22.289 36.855 26.488 79.049zm2.554-78.61c-1.175 13.701-11.985 24.191-24.783 24.191-13.527 0-24.862-12.086-24.862-26.673v-99.328c0-14.12 11.335-26.673 24.862-26.673 11.309 0 21.031 8.139 23.975 19.497 9.12 3.904 15.688 13.438 15.688 24.78 0 1.153-.068 2.289-.201 3.403 5.078 5.326 8.283 12.802 8.283 21.117 0 6.39-1.889 12.262-5.06 17.053 1.996 4.099 3.13 8.773 3.13 13.76 0 14.1-9.065 25.697-21.032 28.873zm-16.452-109.977c-1.964-2.729-4.916-4.506-8.331-4.506-6.192 0-10.862 6.21-10.862 12.673v99.328c0 6.677 4.67 12.673 10.862 12.673 5.516 0 9.822-4.614 10.717-10.425-4.709-1.416-8.923-4.144-12.279-7.814-2.607-2.852-2.409-7.283.443-9.89 2.851-2.607 7.282-2.408 9.889.443 2.416 2.642 5.72 4.356 9.402 4.356 7.733 0 13.643-7.218 13.643-15.734s-5.91-15.734-13.643-15.734c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7 5.352 0 10.388 1.655 14.658 4.533.593-1.743.915-3.634.915-5.612 0-2.11-.366-4.128-1.036-5.972-.769.858-1.588 1.66-2.453 2.397-2.94 2.507-7.361 2.156-9.869-.784-2.507-2.939-2.155-7.361.784-9.868 2.773-2.365 4.492-6.122 4.492-10.293 0-6.072-3.705-11.374-8.898-12.467-.154-.023-.307-.052-.458-.085-.499-.08-1.01-.121-1.532-.121-2.947 0-5.591 1.389-7.515 3.525-2.585 2.87-7.015 3.101-9.886.515-2.87-2.586-3.101-7.015-.515-9.886 3.111-3.453 7.059-5.988 11.472-7.252zm-104.526 67.344c-3.171-4.791-5.06-10.663-5.06-17.053 0-8.307 3.198-15.777 8.284-21.104-.133-1.118-.202-2.258-.202-3.416 0-11.354 6.582-20.897 15.717-24.792 2.948-11.354 12.67-19.485 23.946-19.485 13.56 0 24.888 12.555 24.888 26.673v99.328c0 14.585-11.328 26.673-24.888 26.673-12.765 0-23.578-10.484-24.757-24.184-11.98-3.166-21.058-14.769-21.058-28.88 0-4.987 1.134-9.661 3.13-13.76zm9.982-23.036c-.675 1.847-1.042 3.869-1.042 5.983 0 1.978.322 3.869.915 5.612 4.27-2.878 9.306-4.533 14.658-4.533 3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7-7.733 0-13.643 7.218-13.643 15.734s5.91 15.734 13.643 15.734c3.682 0 6.986-1.714 9.402-4.356 2.607-2.851 7.038-3.05 9.889-.443 2.852 2.607 3.05 7.038.443 9.89-3.35 3.664-7.556 6.389-12.255 7.807.891 5.813 5.192 10.432 10.693 10.432 6.21 0 10.888-5.993 10.888-12.673v-99.328c0-6.466-4.678-12.673-10.888-12.673-3.404 0-6.349 1.777-8.309 4.507 4.421 1.264 8.367 3.8 11.476 7.251 2.586 2.871 2.355 7.3-.516 9.886-2.87 2.586-7.3 2.355-9.886-.515-1.926-2.138-4.574-3.525-7.54-3.525-.493 0-.976.037-1.448.108-.196.045-.395.082-.596.11-5.165 1.118-8.844 6.404-8.844 12.455 0 1.243.153 2.45.442 3.594.101.284.183.572.246.862.748 2.326 2.071 4.346 3.814 5.823 2.947 2.498 3.311 6.919.813 9.866s-6.919 3.312-9.866.814c-.878-.745-1.71-1.554-2.489-2.422zm3.042 158.279c-5.442 0-9.893 4.451-9.893 9.892v36.44c0 5.423 4.454 9.866 9.893 9.866h17.334c3.866 0 7 3.134 7 7v16.945c0 4.902 4.027 8.929 8.93 8.929h46.304c4.903 0 8.93-4.027 8.93-8.929v-16.945c0-3.866 3.134-7 7-7h17.334c5.439 0 9.893-4.443 9.893-9.866v-36.44c0-5.441-4.451-9.892-9.893-9.892zm63.416-314.093 2.907-5.412c1.828-3.403 6.075-4.683 9.479-2.854 3.403 1.828 4.682 6.075 2.854 9.479l-16.073 29.925c-1.22 2.271-3.589 3.688-6.167 3.688s-4.947-1.417-6.167-3.688l-16.073-29.925c-1.828-3.404-.549-7.651 2.854-9.479 3.404-1.829 7.651-.549 9.479 2.854l2.907 5.412v-69.835c0-3.863 3.137-7 7-7s7 3.137 7 7zm-132.198 54.758-49.381-49.381c-2.732-2.731-2.732-7.167 0-9.899s7.168-2.732 9.9 0l49.38 49.38-1.771-5.881c-1.114-3.7.985-7.608 4.684-8.722 3.7-1.114 7.607.985 8.721 4.685l9.796 32.526c.743 2.468.069 5.145-1.753 6.968-1.823 1.823-4.5 2.496-6.969 1.753l-32.526-9.795c-3.699-1.114-5.798-5.022-4.684-8.721s5.022-5.798 8.721-4.684zm-44.859 122.299h-69.835c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7h69.835l-5.412-2.907c-3.403-1.828-4.682-6.076-2.854-9.479 1.828-3.404 6.075-4.683 9.479-2.855l29.926 16.074c2.271 1.22 3.688 3.589 3.688 6.167 0 2.577-1.417 4.947-3.688 6.166l-29.926 16.074c-3.404 1.828-7.651.549-9.479-2.855-1.828-3.403-.549-7.651 2.854-9.479zm54.758 118.198-49.38 49.38c-2.732 2.732-7.168 2.732-9.9 0s-2.732-7.167 0-9.899l49.381-49.381-5.882 1.772c-3.699 1.114-7.607-.985-8.721-4.685-1.114-3.699.985-7.607 4.684-8.721l32.526-9.795c2.469-.743 5.146-.07 6.969 1.753 1.822 1.823 2.496 4.5 1.753 6.968l-9.796 32.527c-1.114 3.699-5.021 5.798-8.721 4.684-3.699-1.114-5.798-5.022-4.684-8.721zm240.497-240.497 5.882-1.771c3.699-1.114 7.607.985 8.721 4.684s-.985 7.607-4.684 8.721l-32.526 9.795c-2.469.743-5.146.07-6.969-1.753-1.822-1.823-2.496-4.5-1.753-6.968l9.796-32.526c1.114-3.7 5.021-5.799 8.721-4.685 3.699 1.114 5.798 5.022 4.684 8.722l-1.771 5.881 49.38-49.38c2.732-2.732 7.168-2.732 9.9 0s2.732 7.168 0 9.899zm44.859 122.299 5.412 2.906c3.403 1.828 4.682 6.076 2.854 9.479-1.828 3.404-6.075 4.683-9.479 2.855l-29.926-16.074c-2.271-1.219-3.688-3.589-3.688-6.166 0-2.578 1.417-4.947 3.688-6.167l29.926-16.074c3.404-1.828 7.651-.549 9.479 2.855 1.828 3.403.549 7.651-2.854 9.479l-5.412 2.907h69.835c3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7zm-54.758 118.198 1.771 5.882c1.114 3.699-.985 7.607-4.684 8.721-3.7 1.114-7.607-.985-8.721-4.684l-9.796-32.527c-.743-2.468-.069-5.145 1.753-6.968 1.823-1.823 4.5-2.496 6.969-1.753l32.526 9.795c3.699 1.114 5.798 5.022 4.684 8.721-1.114 3.7-5.022 5.799-8.721 4.685l-5.882-1.772 49.381 49.381c2.732 2.732 2.732 7.167 0 9.899s-7.168 2.732-9.9 0z\"></path></svg>				\n									<h5>\n							gennemtænkte løsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"outline\"><path d=\"M486.41,144A28,28,0,0,0,472,92H349.123l5.457-21.828a48.513,48.513,0,0,0-12.848-46.153A41.035,41.035,0,0,0,312.609,12H308a8.009,8.009,0,0,0-8,8V47.413l-19.233,64.112A17.376,17.376,0,0,1,268,123.539V112a4,4,0,0,0-4-4H152a4,4,0,0,0-4,4v72a4,4,0,0,0,8,0V116h72V276H156V248a4,4,0,0,0-8,0v32a4,4,0,0,0,4,4H264a4,4,0,0,0,4-4V268.5h11.168A37.07,37.07,0,0,1,305.092,279a45.025,45.025,0,0,0,31.48,12.752L440,292a27.987,27.987,0,0,0,19.369-48.2,27.987,27.987,0,0,0,16-48A28,28,0,0,0,486.41,144ZM260,276H236V116h24Zm212-88H396a4,4,0,0,0,0,8h60a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h40a20,20,0,0,1,.01,40l-103.428-.25a37.07,37.07,0,0,1-25.924-10.5,45.031,45.031,0,0,0-31.49-12.752H268V131.686a25.317,25.317,0,0,0,20.429-17.862l19.4-64.675A4,4,0,0,0,308,48V20h4.609a33.082,33.082,0,0,1,23.481,9.69,40.507,40.507,0,0,1,10.728,38.541l-6.7,26.8A4,4,0,0,0,344,100H472a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h72a20,20,0,0,1,0,40Z\"></path><path d=\"M194.5,183.243l-1.9-.217a4,4,0,0,0-4.169,2.491L184.29,195.9H135.278l-3.539-9.317a4,4,0,0,0-7.478,2.84l2.459,6.477h-8.474L68.452,156.872a4,4,0,1,0-4.935,6.3L77.6,174.209,56.961,194.48l-6.636-5.491a4,4,0,1,0-5.1,6.163L87.219,229.9a44.1,44.1,0,0,0,28.05,10.1H212a8.009,8.009,0,0,0,8-8V203.9a8.009,8.009,0,0,0-8-8h-8v-2.01A10.708,10.708,0,0,0,194.5,183.243ZM212,203.9V232H115.269a36.081,36.081,0,0,1-22.951-8.264l-29.16-24.128,20.8-20.422L114.4,203.045a4,4,0,0,0,2.468.852H187a4,4,0,0,0,3.715-2.517l3.929-9.843a2.712,2.712,0,0,1,1.356,2.35v6.01a4,4,0,0,0,4,4Z\"></path><path d=\"M223.084,484.672,200.87,469.863V346.36A44.1,44.1,0,0,0,195.327,325l-17.183-30.94a4,4,0,0,0-7,3.884l17.184,30.94a36.073,36.073,0,0,1,4.537,17.478V468H164.333a4,4,0,1,0,0,8h31.321l12,8H152.865V352a4,4,0,0,0-.358-1.655l-25.454-56A4,4,0,0,0,123.411,292H114.2a4,4,0,0,0-3.945,4.658l8.862,53.175a36.016,36.016,0,0,1-1.951,18.949L78.642,468H48.333a4,4,0,1,0,0,8H80.377L92,484H32.088L76.63,361.366a4.017,4.017,0,0,0,.183-2.044L61.1,268H136a4,4,0,0,0,0-8H59.233L30.555,173.966A19.723,19.723,0,0,1,49.27,148H76a12,12,0,0,0,24,0h15.2a21.975,21.975,0,0,1,8.395,1.652l10.889,4.458a4,4,0,1,0,3.032-7.4L126.63,142.25A29.938,29.938,0,0,0,115.2,140H100v-4.527A16.014,16.014,0,0,0,112,120V103.473A16.014,16.014,0,0,0,124,88V80a4,4,0,0,0-4-4H90A22.025,22.025,0,0,0,68,98v18a12.02,12.02,0,0,0,8,11.314V140H49.27a27.723,27.723,0,0,0-26.305,36.5l29.493,88.482,16.29,94.655-46.128,127A4,4,0,0,0,26.38,492h78.485a4,4,0,0,0,2.268-7.3L86.3,470.368l38.318-98.69a44.018,44.018,0,0,0,2.385-23.16L118.921,300h1.914l24.03,52.867V488a4,4,0,0,0,4,4h72a4,4,0,0,0,2.219-7.328ZM76,98A14.015,14.015,0,0,1,90,84h26v4a8.009,8.009,0,0,1-8,8H92a4,4,0,0,0-4,4,11.962,11.962,0,0,1-1.53,5.881A12.044,12.044,0,0,0,76,104.686Zm4,14a3.981,3.981,0,0,1,3.407,1.9,4,4,0,0,0,5.956.975c.207-.171.7-.648.7-.648.032-.028.061-.057.09-.087A19.907,19.907,0,0,0,95.6,104H104v16a8.009,8.009,0,0,1-8,8,12.133,12.133,0,0,1-2.681-.3,4,4,0,1,0-1.775,7.8c.151.035.3.06.456.091V148a4,4,0,1,1-8,0V124a4,4,0,0,0-4-4,4,4,0,0,1,0-8Z\"></path></g></svg>				\n									<h5>\n							arbejde udført med ansvar						\n					</h5>\n				<p>Vi lover ikke mere, end vi kan holde – men vi holder det, vi lover.</p>			<h2>KONTAKT OS</h2>		<p>Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.</p>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-14 10:50:04', '2026-02-14 10:50:04', '', 10, 'https://mrarif.me/cpnordic/?p=716', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(717, 1, '2026-02-14 10:50:06', '2026-02-14 10:50:06', '<h1>CP NORDIC ApS</h1>					<h4>Byggeri – Tømrerarbejde og tagdækning</h4>										<a href=\"https://mrarif.me/cpnordic/kontakt/\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"https://mrarif.me/cpnordic/om-os/\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"https://mrarif.me/cpnordic/tomrerarbejde/\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>								<a href=\"https://mrarif.me/cpnordic/tagdaekning/\">\n									Lær mere\n					</a>\n									<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle ANMELDELSER\n					</a>\n					<h2>HVORFOR VÆLGE CP NORDIC ApS?</h2>		<p>Når du vælger CP NORDIC ApS, får du:</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 450 450\" width=\"512\"><g><g><path d=\"m225 165.2c-25.9 0-48.9-18.8-53.3-45.2-2.4-14.2.9-28.6 9.3-40.3 8.4-11.8 20.9-19.5 35.1-21.9 29.4-4.9 57.3 15 62.2 44.5 4.9 29.4-15 57.3-44.4 62.2-3 .5-6 .7-8.9.7zm-7.6-99.8c-12.2 2-22.9 8.7-30.1 18.8s-10.1 22.4-8 34.6c3.8 22.7 23.5 38.8 45.7 38.8 2.5 0 5.1-.2 7.6-.6 25.2-4.2 42.3-28.1 38.1-53.4s-28.1-42.4-53.3-38.2z\"></path><path d=\"m255.2 115c-2.1 0-3.8-1.7-3.8-3.8 0-14.6-11.8-26.4-26.4-26.4-2.1 0-3.8-1.7-3.8-3.8s1.7-3.8 3.8-3.8c18.8 0 34.1 15.3 34.1 34.1 0 2-1.8 3.7-3.9 3.7z\"></path><path d=\"m236.1 203h-22.2c-2.1 0-3.8-1.7-3.8-3.8v-14.1c-3.1-.6-6.1-1.4-9.1-2.4l-7 12.2c-1.1 1.8-3.4 2.5-5.3 1.4l-19.2-11.1c-.9-.5-1.5-1.4-1.8-2.3-.3-1-.1-2 .4-2.9l7-12.1c-2.4-2.1-4.6-4.3-6.7-6.6l-12.1 7c-1.8 1.1-4.2.4-5.2-1.4l-11.1-19.2c-1.1-1.8-.4-4.2 1.4-5.2l11.9-6.8c-1-3-1.9-6.1-2.6-9.3h-13.7c-2.1 0-3.8-1.7-3.8-3.8v-22.2c0-2.1 1.7-3.8 3.8-3.8h13.4c.6-3.2 1.4-6.4 2.4-9.5l-11.5-6.6c-1.8-1.1-2.5-3.4-1.4-5.3l11.1-19.6c.5-.9 1.4-1.5 2.3-1.8s2-.1 2.9.4l11.3 6.6c2.2-2.5 4.5-4.8 7-7l-6.5-11.3c-.5-.9-.6-1.9-.4-2.9.3-1 .9-1.8 1.8-2.3l19.2-11.1c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l6.4 11.2c3.1-1.1 6.4-1.9 9.7-2.6v-13c0-2.1 1.7-3.8 3.8-3.8h22.2c2.1 0 3.8 1.7 3.8 3.8v12.8c3.3.7 6.5 1.5 9.7 2.6l6.5-11.2c.5-.9 1.4-1.5 2.3-1.8 1-.3 2-.1 2.9.4l19.2 11.1c.9.5 1.5 1.3 1.8 2.3s.1 2-.4 2.9l-6.5 11.3c2.5 2.2 4.8 4.5 7 7.1l11.3-6.6c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l11.1 19.2c1.1 1.8.4 4.2-1.4 5.3l-11.5 6.6c1 3.1 1.8 6.3 2.5 9.5h13.6c2.1 0 3.8 1.7 3.8 3.8v22.2c0 2.1-1.7 3.8-3.8 3.8h-13.6c-.6 3.1-1.5 6.2-2.5 9.3l11.9 6.8c1.8 1.1 2.5 3.4 1.4 5.2l-11.2 19.5c-1.1 1.8-3.4 2.5-5.2 1.4l-12-7c-2.1 2.4-4.4 4.6-6.7 6.6l7 12.1c.5.9.6 1.9.4 2.9s-.9 1.8-1.8 2.3l-19.2 11.1c-1.8 1.1-4.2.4-5.2-1.4l-7-12.2c-3 1-6 1.8-9.1 2.4v14.1c-.2 2.3-2 4-4.1 4zm-18.4-7.7h14.5v-13.5c0-1.9 1.4-3.5 3.3-3.8 4.7-.7 9.4-2 13.8-3.7 1.8-.7 3.8 0 4.7 1.7l6.7 11.6 12.6-7.3-6.7-11.6c-1-1.6-.5-3.7.9-4.9 3.7-3 7.2-6.4 10.2-10.1 1.2-1.5 3.3-1.8 4.9-.9l11.5 6.6 7.3-12.6-11.3-6.5c-1.6-.9-2.4-3-1.6-4.7 1.8-4.5 3.1-9.2 3.9-14 .3-1.9 1.9-3.2 3.8-3.2h13v-14.6h-12.8c-1.9 0-3.5-1.4-3.8-3.3-.7-4.8-2-9.6-3.7-14.2-.7-1.8 0-3.7 1.7-4.7l10.9-6.3-7.3-12.6-10.8 6.3c-1.6.9-3.7.6-4.9-.9-3.1-3.9-6.6-7.4-10.4-10.6-1.5-1.2-1.9-3.3-.9-4.9l6.2-10.7-12.6-7.3-6.1 10.6c-1 1.6-3 2.3-4.7 1.7-4.6-1.8-9.5-3.1-14.4-3.9-1.9-.3-3.3-1.9-3.3-3.8v-12.2h-14.5v12.3c0 1.9-1.4 3.5-3.3 3.8-5 .8-9.8 2.1-14.4 3.9-1.8.7-3.8 0-4.7-1.7l-6.1-10.6-12.6 7.3 6.2 10.7c.9 1.6.6 3.7-.9 4.9-3.9 3.1-7.4 6.7-10.4 10.6-1.2 1.5-3.3 1.9-4.9.9l-10.8-6.3-7.3 12.6 10.9 6.3c1.6.9 2.3 2.9 1.7 4.7-1.7 4.6-3 9.4-3.7 14.2-.3 1.9-1.9 3.3-3.8 3.3h-12.8v14.5h13c1.9 0 3.5 1.4 3.8 3.2.8 4.8 2.1 9.5 3.9 14 .7 1.8 0 3.8-1.6 4.7l-11.3 6.5 7.3 12.6 11.5-6.6c1.6-.9 3.7-.6 4.9.9 3 3.7 6.5 7.1 10.3 10.1 1.5 1.2 1.9 3.3.9 4.9l-6.7 11.6 12.6 7.3 6.7-11.6c.9-1.6 2.9-2.3 4.7-1.7 4.5 1.7 9.1 2.9 13.8 3.7 1.9.3 3.3 1.9 3.3 3.8z\"></path></g><g><g><g><path d=\"m45.3 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m153.9 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path></g><g><path d=\"m189.3 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.2c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c0 2.1-1.7 3.8-3.8 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m73.3 326.4c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m126 326.4c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m99.7 325.6c-.6 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4s4.1 1.1 4.4 3.2c2.4 16.5 12.3 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m50.2 266.6c-.1 0-.2 0-.3 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.7 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-8.9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.5 2.2zm81.8-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13.1-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.4-.7 2.3-.7z\"></path></g></g></g><g><g><path d=\"m296.1 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m404.7 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path></g><g><path d=\"m440 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.1c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c.2 2.1-1.6 3.8-3.7 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m324 326.3c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m376.7 326.3c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m350.4 325.6c-.5 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4 2.1-.3 4 1.1 4.4 3.2 2.4 16.5 12.4 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m301 266.6c-.1 0-.2 0-.4 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.6 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.4 2.2zm81.7-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.5-.7 2.3-.7z\"></path></g></g></g></g></g></svg>				\n									<h5>\n							et ungt og engageret team						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"496pt\" viewBox=\"0 0 496 496\" width=\"496pt\"><path d=\"m440 328h-28.207031c5.078125-6.703125 8.207031-14.960938 8.207031-24 0-8.824219-7.175781-16-16-16h-12v-19.960938c59.574219-14.445312 104-68.085937 104-132.039062 0-74.992188-61.007812-136-136-136s-136 61.007812-136 136c0 63.953125 44.425781 117.59375 104 132.039062v19.960938h-8.449219c-6.167969 0-12.359375 1.464844-17.886719 4.214844l-50.480468 25.25c-3.320313 1.664062-7.03125 2.535156-10.734375 2.535156h-40.449219v-16h-104v16h56v56h16v-56h16v128h-16v-56h-16v56h-56v16h104v-16h40.449219c3.703125 0 7.414062.871094 10.734375 2.527344l34.488281 17.25c5.519531 2.757812 11.710937 4.222656 17.878906 4.222656h24.449219v24h64v-24h48c13.230469 0 24-10.769531 24-24 0-6.167969-2.40625-11.742188-6.238281-16 3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16 0-13.230469-10.769531-24-24-24zm8 24c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm-208-280c0-66.167969 53.832031-120 120-120s120 53.832031 120 120-53.832031 120-120 120-120-53.832031-120-120zm104 134.976562c5.257812.617188 10.574219 1.023438 16 1.023438s10.742188-.40625 16-1.023438v17.023438h-32zm-40.449219 185.023438c-3.703125 0-7.414062-.871094-10.734375-2.527344l-34.488281-17.25c-5.519531-2.757812-11.710937-4.222656-17.878906-4.222656h-40.449219v-96h40.449219c6.167969 0 12.359375-1.464844 17.886719-4.214844l50.480468-25.25c3.320313-1.664062 7.03125-2.535156 10.734375-2.535156h84.449219c0 13.230469-10.769531 24-24 24h-48.28125l-23.863281 35.808594c-6.101563 9.160156-14.527344 16.589844-24.367188 21.503906-8.753906 4.375-18.542969 6.6875-28.320312 6.6875h-15.167969v16h15.167969c12.246093 0 24.519531-2.894531 35.472656-8.375 12.328125-6.160156 22.878906-15.480469 30.527344-26.945312l6.832031-10.253907v93.574219zm40.449219 24v-136h17.472656c-.898437 2.511719-1.472656 5.183594-1.472656 8 0 6.167969 2.40625 11.742188 6.238281 16-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16 0 10.414062 6.710938 19.214844 16 22.527344v9.472656zm96-24h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8s-3.59375 8-8 8zm0 0\"></path><path d=\"m394.878906 73.007812-7.757812 13.984376c17.816406 9.878906 28.878906 28.664062 28.878906 49.007812h16c0-26.160156-14.222656-50.296875-37.121094-62.992188zm0 0\"></path><path d=\"m360 80c4.734375 0 9.449219.59375 14.007812 1.769531l3.976563-15.503906c-5.855469-1.496094-11.90625-2.265625-17.984375-2.265625zm0 0\"></path><path d=\"m360 48c48.519531 0 88 39.480469 88 88 0 20.753906-7.398438 40.910156-20.832031 56.785156l12.207031 10.34375c15.882812-18.761718 24.625-42.601562 24.625-67.128906 0-57.34375-46.65625-104-104-104-24.527344 0-48.367188 8.753906-67.128906 24.632812l10.335937 12.199219c15.871094-13.433593 36.039063-20.832031 56.792969-20.832031zm0 0\"></path><path d=\"m427.128906 215.367188-10.335937-12.199219c-15.871094 13.433593-36.039063 20.832031-56.792969 20.832031-48.519531 0-88-39.480469-88-88 0-20.753906 7.398438-40.910156 20.832031-56.785156l-12.207031-10.34375c-15.882812 18.761718-24.625 42.601562-24.625 67.128906 0 57.34375 46.65625 104 104 104 24.527344 0 48.367188-8.753906 67.128906-24.632812zm0 0\"></path><path d=\"m121.214844 165.640625c4.953125-1.375 9.695312-3.34375 14.183594-5.878906l9.769531 4.886719 19.472656-19.480469-4.886719-9.769531c2.535156-4.496094 4.503906-9.230469 5.886719-14.183594l10.359375-3.445313v-27.53125l-10.351562-3.453125c-1.375-4.953125-3.34375-9.707031-5.886719-14.183594l4.886719-9.777343-19.472657-19.472657-9.769531 4.886719c-4.484375-2.535156-9.230469-4.503906-14.183594-5.878906l-3.453125-10.359375h-27.539062l-3.445313 10.359375c-4.953125 1.375-9.695312 3.34375-14.183594 5.878906l-9.777343-4.886719-19.472657 19.472657 4.886719 9.777343c-2.535156 4.488282-4.503906 9.230469-5.886719 14.183594l-10.351562 3.445313v27.53125l10.351562 3.453125c1.375 4.953125 3.34375 9.695312 5.886719 14.183594l-4.886719 9.769531 19.472657 19.480469 9.769531-4.886719c4.484375 2.535156 9.230469 4.503906 14.183594 5.878906l3.453125 10.359375h27.539062zm-12.304688-13.679687-2.679687 8.039062h-4.460938l-2.679687-8.039062-4.554688-.90625c-6.128906-1.222657-11.878906-3.605469-17.109375-7.09375l-3.867187-2.578126-7.574219 3.800782-3.160156-3.167969 3.792969-7.582031-2.578126-3.859375c-3.488281-5.222657-5.871093-10.980469-7.09375-17.109375l-.914062-4.554688-8.03125-2.679687v-4.46875l8.03125-2.671875.914062-4.554688c1.222657-6.136718 3.613282-11.886718 7.09375-17.109375l2.578126-3.859375-3.792969-7.589844 3.160156-3.160156 7.574219 3.800782 3.867187-2.578126c5.222657-3.488281 10.980469-5.863281 17.109375-7.09375l4.554688-.90625 2.679687-8.039062h4.460938l2.679687 8.039062 4.554688.90625c6.128906 1.222657 11.878906 3.605469 17.109375 7.09375l3.867187 2.578126 7.574219-3.800782 3.160156 3.160156-3.792969 7.589844 2.578126 3.859375c3.488281 5.214844 5.871093 10.972657 7.09375 17.109375l.914062 4.554688 8.03125 2.679687v4.46875l-8.03125 2.671875-.914062 4.554688c-1.222657 6.128906-3.613282 11.878906-7.09375 17.109375l-2.578126 3.859375 3.792969 7.582031-3.160156 3.167969-7.574219-3.800782-3.867187 2.578126c-5.222657 3.488281-10.980469 5.863281-17.109375 7.09375zm0 0\"></path><path d=\"m104 72c-17.648438 0-32 14.351562-32 32s14.351562 32 32 32 32-14.351562 32-32-14.351562-32-32-32zm0 48c-8.824219 0-16-7.175781-16-16s7.175781-16 16-16 16 7.175781 16 16-7.175781 16-16 16zm0 0\"></path><path d=\"m160 248v-40h48v-208h-208v208h106.664062zm-144-232h176v176h-48v24l-32-24h-96zm0 0\"></path><path d=\"m0 272h16v16h-16zm0 0\"></path><path d=\"m32 272h16v16h-16zm0 0\"></path><path d=\"m64 272h16v16h-16zm0 0\"></path><path d=\"m32 304h16v16h-16zm0 0\"></path><path d=\"m64 304h16v16h-16zm0 0\"></path><path d=\"m0 480h16v16h-16zm0 0\"></path><path d=\"m32 480h16v16h-16zm0 0\"></path><path d=\"m64 480h16v16h-16zm0 0\"></path><path d=\"m32 448h16v16h-16zm0 0\"></path><path d=\"m64 448h16v16h-16zm0 0\"></path></svg>				\n									<h5>\n							fokus på kvalitet og detaljer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m469.12 408.93-67.26-33.63v-22.13c10.71-7.69 18.6-19.07 21.78-32.27h5.28c8.81 0 15.98-7.17 15.98-15.98v-5.29c0-6.35-3.74-11.84-9.12-14.41 5.19-18.64-1.65-39.76-19.44-59.78-12.58-14.16-30.67-22.27-49.62-22.27-18.93 0-37.01 8.12-49.59 22.27-13.38 15.05-20.95 41.01-14.03 59.62-5.56 2.5-9.45 8.09-9.45 14.57v5.29c0 8.81 7.17 15.98 15.98 15.98h5.55c3.16 13.09 10.94 24.39 21.51 32.08v22.32l-67.26 33.63c-16.7 5.87-27.89 21.6-27.89 39.28v41.63c0 3.31 2.69 6 6 6h243.46c3.31 0 6-2.69 6-6v-41.63c0-17.68-11.19-33.41-27.88-39.28zm-62.24-17.7-15.83 27.66-13.29-13.29 19.29-19.29zm-37.61 5.88-20.59-20.58v-16.91c6.41 2.57 13.4 4.01 20.72 4.01 7.22 0 14.11-1.39 20.45-3.9v16.8zm63.63-97.48v5.29c0 2.16-1.82 3.98-3.98 3.98h-3.74c.01-.36.03-.71.03-1.07v-12.18h3.71c2.15-.01 3.98 1.82 3.98 3.98zm-119.29 8.2v1.07h-3.98c-2.16 0-3.98-1.82-3.98-3.98v-5.29c0-2.16 1.82-3.98 3.98-3.98l3.98.22zm1.95-24.19c-7.33-13.69-.89-37.39 10.53-50.24 10.31-11.6 25.12-18.25 40.63-18.25 15.52 0 30.34 6.65 40.65 18.25 8.43 9.48 21.3 27.59 17.4 46.39-5.66-.35-10.67-2.55-14.4-6.36-5.37-5.49-7.72-14-6.63-23.94.29-2.62-1.17-5.13-3.6-6.17s-5.25-.37-6.95 1.65c-19.33 22.92-45.95 36.76-73.9 38.68h-3.73zm10.05 24.19v-12.73c24.57-2.92 47.92-14.05 66.73-31.8 1.43 7.26 4.63 13.6 9.45 18.52 3.27 3.35 7.14 5.89 11.41 7.58v18.42c0 24.15-19.65 43.8-43.8 43.8s-43.79-19.64-43.79-43.79zm15.89 78.48 19.29 19.29-13.29 13.29-15.84-27.66zm3.22 97.53h-39.42v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.76v-35.63c0-12.68 8.1-23.95 20.15-28.05.26-.09.51-.19.75-.31l46.47-23.23 20.07 35.06c.93 1.62 2.56 2.72 4.41 2.97.27.04.53.05.79.05 1.58 0 3.11-.62 4.24-1.76l.14-.14zm12.08 0 7.41-64.69 5.06-5.06 4.84 4.84 7.86 64.92h-25.17zm128.2 0h-39.76v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.18l-6.2-51.17.25.25c1.13 1.13 2.66 1.76 4.24 1.76.26 0 .53-.02.79-.05 1.85-.25 3.48-1.34 4.41-2.97l20.07-35.06 46.47 23.23c.24.12.49.23.75.31 12.05 4.1 20.15 15.38 20.15 28.05v35.65zm-67.04-346.65h-10.84l28.38 39.84 28.38-39.84h-10.84c-3.31 0-6-2.69-6-6v-64.58h-98.7c-3.31 0-6-2.69-6-6s2.69-6 6-6h104.7c3.31 0 6 2.69 6 6v64.58h16.48c2.25 0 4.3 1.25 5.33 3.25s.86 4.4-.45 6.23l-40.02 56.18c-1.13 1.58-2.95 2.52-4.89 2.52s-3.76-.94-4.89-2.52l-40.02-56.18c-1.3-1.83-1.48-4.23-.45-6.23s3.09-3.25 5.33-3.25h16.48v-23.5h-65.38c-3.31 0-6-2.69-6-6s2.69-6 6-6h71.38c3.31 0 6 2.69 6 6v35.5c.02 3.31-2.67 6-5.98 6zm-118.44 50.65v-133.26c0-21.18-17.23-38.41-38.41-38.41h-207.7c-21.18-.01-38.41 17.23-38.41 38.41v133.26c0 21.18 17.23 38.41 38.41 38.41h105.8l64.8 55.11c1.11.94 2.49 1.43 3.89 1.43.85 0 1.71-.18 2.52-.55 2.12-.98 3.48-3.11 3.48-5.45v-50.54h27.21c21.18 0 38.41-17.23 38.41-38.41zm-71.62 26.41c-3.31 0-6 2.69-6 6v43.56l-56.59-48.13c-1.08-.92-2.46-1.43-3.89-1.43h-108.01c-14.56 0-26.41-11.85-26.41-26.41v-133.26c0-14.56 11.85-26.41 26.41-26.41h207.69c14.56 0 26.41 11.85 26.41 26.41v133.26c0 14.56-11.85 26.41-26.41 26.41zm-156.34-87.87h56.97c3.31 0 6-2.69 6-6v-39.2l8.55-8.55c2.34-2.34 2.34-6.14 0-8.49-2.34-2.34-6.14-2.34-8.48 0l-.7.7c-.98-1.97-3.01-3.32-5.36-3.32h-56.98c-3.31 0-6 2.69-6 6v52.85c0 3.32 2.69 6.01 6 6.01zm6-52.86h44.97v2.69l-18.16 18.16-8.84-8.84c-2.34-2.34-6.14-2.34-8.49 0-2.34 2.34-2.34 6.14 0 8.49l13.08 13.08c1.17 1.17 2.71 1.76 4.24 1.76s3.07-.59 4.24-1.76l13.92-13.92v21.2h-44.96zm173.62 3.08c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 31.92c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 36.52c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.68 5.99 6zm0 31.92c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.69 5.99 6zm-119.36 165.01h10.84l-28.38-39.84-28.38 39.84h10.84c3.31 0 6 2.69 6 6v64.58h98.7c3.31 0 6 2.69 6 6s-2.69 6-6 6h-104.69c-3.31 0-6-2.69-6-6v-64.58h-16.48c-2.25 0-4.3-1.25-5.33-3.25s-.86-4.4.45-6.23l40.02-56.18c1.13-1.58 2.95-2.52 4.89-2.52s3.76.94 4.89 2.52l40.02 56.18c1.3 1.83 1.48 4.23.45 6.23s-3.09 3.25-5.33 3.25h-16.48v23.5h65.38c3.31 0 6 2.69 6 6s-2.69 6-6 6h-71.38c-3.31 0-6-2.69-6-6v-35.5c-.03-3.31 2.66-6 5.97-6z\"></path></svg>				\n									<h5>\n							ærlig<br> rådgivning						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 510 510\"><path d=\"m192.036 385.845c-4.787-46.972-19.459-64.336-30.658-82.352-8.672-13.951-15.5-28.245-15.5-54.252 0-60.242 48.865-109.109 109.135-109.109 60.242 0 109.109 48.866 109.109 109.109 0 26.007-6.828 40.301-15.5 54.252-11.199 18.016-25.871 35.38-30.658 82.352 9.985 2.864 17.345 12.101 17.345 22.975v36.44c0 13.109-10.747 23.866-23.893 23.866h-10.334v9.945c0 12.588-10.341 22.929-22.93 22.929h-46.304c-12.589 0-22.93-10.341-22.93-22.929v-9.945h-10.334c-13.146 0-23.893-10.757-23.893-23.866v-36.44c0-10.874 7.36-20.111 17.345-22.975zm111.948-.917c4.199-42.194 15.78-62.332 26.488-79.049 10.147-15.842 19.65-28.207 19.65-56.638 0-52.513-42.597-95.109-95.109-95.109-52.537 0-95.135 42.596-95.135 95.109 0 28.431 9.503 40.796 19.65 56.638 10.708 16.717 22.289 36.855 26.488 79.049zm2.554-78.61c-1.175 13.701-11.985 24.191-24.783 24.191-13.527 0-24.862-12.086-24.862-26.673v-99.328c0-14.12 11.335-26.673 24.862-26.673 11.309 0 21.031 8.139 23.975 19.497 9.12 3.904 15.688 13.438 15.688 24.78 0 1.153-.068 2.289-.201 3.403 5.078 5.326 8.283 12.802 8.283 21.117 0 6.39-1.889 12.262-5.06 17.053 1.996 4.099 3.13 8.773 3.13 13.76 0 14.1-9.065 25.697-21.032 28.873zm-16.452-109.977c-1.964-2.729-4.916-4.506-8.331-4.506-6.192 0-10.862 6.21-10.862 12.673v99.328c0 6.677 4.67 12.673 10.862 12.673 5.516 0 9.822-4.614 10.717-10.425-4.709-1.416-8.923-4.144-12.279-7.814-2.607-2.852-2.409-7.283.443-9.89 2.851-2.607 7.282-2.408 9.889.443 2.416 2.642 5.72 4.356 9.402 4.356 7.733 0 13.643-7.218 13.643-15.734s-5.91-15.734-13.643-15.734c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7 5.352 0 10.388 1.655 14.658 4.533.593-1.743.915-3.634.915-5.612 0-2.11-.366-4.128-1.036-5.972-.769.858-1.588 1.66-2.453 2.397-2.94 2.507-7.361 2.156-9.869-.784-2.507-2.939-2.155-7.361.784-9.868 2.773-2.365 4.492-6.122 4.492-10.293 0-6.072-3.705-11.374-8.898-12.467-.154-.023-.307-.052-.458-.085-.499-.08-1.01-.121-1.532-.121-2.947 0-5.591 1.389-7.515 3.525-2.585 2.87-7.015 3.101-9.886.515-2.87-2.586-3.101-7.015-.515-9.886 3.111-3.453 7.059-5.988 11.472-7.252zm-104.526 67.344c-3.171-4.791-5.06-10.663-5.06-17.053 0-8.307 3.198-15.777 8.284-21.104-.133-1.118-.202-2.258-.202-3.416 0-11.354 6.582-20.897 15.717-24.792 2.948-11.354 12.67-19.485 23.946-19.485 13.56 0 24.888 12.555 24.888 26.673v99.328c0 14.585-11.328 26.673-24.888 26.673-12.765 0-23.578-10.484-24.757-24.184-11.98-3.166-21.058-14.769-21.058-28.88 0-4.987 1.134-9.661 3.13-13.76zm9.982-23.036c-.675 1.847-1.042 3.869-1.042 5.983 0 1.978.322 3.869.915 5.612 4.27-2.878 9.306-4.533 14.658-4.533 3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7-7.733 0-13.643 7.218-13.643 15.734s5.91 15.734 13.643 15.734c3.682 0 6.986-1.714 9.402-4.356 2.607-2.851 7.038-3.05 9.889-.443 2.852 2.607 3.05 7.038.443 9.89-3.35 3.664-7.556 6.389-12.255 7.807.891 5.813 5.192 10.432 10.693 10.432 6.21 0 10.888-5.993 10.888-12.673v-99.328c0-6.466-4.678-12.673-10.888-12.673-3.404 0-6.349 1.777-8.309 4.507 4.421 1.264 8.367 3.8 11.476 7.251 2.586 2.871 2.355 7.3-.516 9.886-2.87 2.586-7.3 2.355-9.886-.515-1.926-2.138-4.574-3.525-7.54-3.525-.493 0-.976.037-1.448.108-.196.045-.395.082-.596.11-5.165 1.118-8.844 6.404-8.844 12.455 0 1.243.153 2.45.442 3.594.101.284.183.572.246.862.748 2.326 2.071 4.346 3.814 5.823 2.947 2.498 3.311 6.919.813 9.866s-6.919 3.312-9.866.814c-.878-.745-1.71-1.554-2.489-2.422zm3.042 158.279c-5.442 0-9.893 4.451-9.893 9.892v36.44c0 5.423 4.454 9.866 9.893 9.866h17.334c3.866 0 7 3.134 7 7v16.945c0 4.902 4.027 8.929 8.93 8.929h46.304c4.903 0 8.93-4.027 8.93-8.929v-16.945c0-3.866 3.134-7 7-7h17.334c5.439 0 9.893-4.443 9.893-9.866v-36.44c0-5.441-4.451-9.892-9.893-9.892zm63.416-314.093 2.907-5.412c1.828-3.403 6.075-4.683 9.479-2.854 3.403 1.828 4.682 6.075 2.854 9.479l-16.073 29.925c-1.22 2.271-3.589 3.688-6.167 3.688s-4.947-1.417-6.167-3.688l-16.073-29.925c-1.828-3.404-.549-7.651 2.854-9.479 3.404-1.829 7.651-.549 9.479 2.854l2.907 5.412v-69.835c0-3.863 3.137-7 7-7s7 3.137 7 7zm-132.198 54.758-49.381-49.381c-2.732-2.731-2.732-7.167 0-9.899s7.168-2.732 9.9 0l49.38 49.38-1.771-5.881c-1.114-3.7.985-7.608 4.684-8.722 3.7-1.114 7.607.985 8.721 4.685l9.796 32.526c.743 2.468.069 5.145-1.753 6.968-1.823 1.823-4.5 2.496-6.969 1.753l-32.526-9.795c-3.699-1.114-5.798-5.022-4.684-8.721s5.022-5.798 8.721-4.684zm-44.859 122.299h-69.835c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7h69.835l-5.412-2.907c-3.403-1.828-4.682-6.076-2.854-9.479 1.828-3.404 6.075-4.683 9.479-2.855l29.926 16.074c2.271 1.22 3.688 3.589 3.688 6.167 0 2.577-1.417 4.947-3.688 6.166l-29.926 16.074c-3.404 1.828-7.651.549-9.479-2.855-1.828-3.403-.549-7.651 2.854-9.479zm54.758 118.198-49.38 49.38c-2.732 2.732-7.168 2.732-9.9 0s-2.732-7.167 0-9.899l49.381-49.381-5.882 1.772c-3.699 1.114-7.607-.985-8.721-4.685-1.114-3.699.985-7.607 4.684-8.721l32.526-9.795c2.469-.743 5.146-.07 6.969 1.753 1.822 1.823 2.496 4.5 1.753 6.968l-9.796 32.527c-1.114 3.699-5.021 5.798-8.721 4.684-3.699-1.114-5.798-5.022-4.684-8.721zm240.497-240.497 5.882-1.771c3.699-1.114 7.607.985 8.721 4.684s-.985 7.607-4.684 8.721l-32.526 9.795c-2.469.743-5.146.07-6.969-1.753-1.822-1.823-2.496-4.5-1.753-6.968l9.796-32.526c1.114-3.7 5.021-5.799 8.721-4.685 3.699 1.114 5.798 5.022 4.684 8.722l-1.771 5.881 49.38-49.38c2.732-2.732 7.168-2.732 9.9 0s2.732 7.168 0 9.899zm44.859 122.299 5.412 2.906c3.403 1.828 4.682 6.076 2.854 9.479-1.828 3.404-6.075 4.683-9.479 2.855l-29.926-16.074c-2.271-1.219-3.688-3.589-3.688-6.166 0-2.578 1.417-4.947 3.688-6.167l29.926-16.074c3.404-1.828 7.651-.549 9.479 2.855 1.828 3.403.549 7.651-2.854 9.479l-5.412 2.907h69.835c3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7zm-54.758 118.198 1.771 5.882c1.114 3.699-.985 7.607-4.684 8.721-3.7 1.114-7.607-.985-8.721-4.684l-9.796-32.527c-.743-2.468-.069-5.145 1.753-6.968 1.823-1.823 4.5-2.496 6.969-1.753l32.526 9.795c3.699 1.114 5.798 5.022 4.684 8.721-1.114 3.7-5.022 5.799-8.721 4.685l-5.882-1.772 49.381 49.381c2.732 2.732 2.732 7.167 0 9.899s-7.168 2.732-9.9 0z\"></path></svg>				\n									<h5>\n							gennemtænkte løsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"outline\"><path d=\"M486.41,144A28,28,0,0,0,472,92H349.123l5.457-21.828a48.513,48.513,0,0,0-12.848-46.153A41.035,41.035,0,0,0,312.609,12H308a8.009,8.009,0,0,0-8,8V47.413l-19.233,64.112A17.376,17.376,0,0,1,268,123.539V112a4,4,0,0,0-4-4H152a4,4,0,0,0-4,4v72a4,4,0,0,0,8,0V116h72V276H156V248a4,4,0,0,0-8,0v32a4,4,0,0,0,4,4H264a4,4,0,0,0,4-4V268.5h11.168A37.07,37.07,0,0,1,305.092,279a45.025,45.025,0,0,0,31.48,12.752L440,292a27.987,27.987,0,0,0,19.369-48.2,27.987,27.987,0,0,0,16-48A28,28,0,0,0,486.41,144ZM260,276H236V116h24Zm212-88H396a4,4,0,0,0,0,8h60a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h40a20,20,0,0,1,.01,40l-103.428-.25a37.07,37.07,0,0,1-25.924-10.5,45.031,45.031,0,0,0-31.49-12.752H268V131.686a25.317,25.317,0,0,0,20.429-17.862l19.4-64.675A4,4,0,0,0,308,48V20h4.609a33.082,33.082,0,0,1,23.481,9.69,40.507,40.507,0,0,1,10.728,38.541l-6.7,26.8A4,4,0,0,0,344,100H472a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h72a20,20,0,0,1,0,40Z\"></path><path d=\"M194.5,183.243l-1.9-.217a4,4,0,0,0-4.169,2.491L184.29,195.9H135.278l-3.539-9.317a4,4,0,0,0-7.478,2.84l2.459,6.477h-8.474L68.452,156.872a4,4,0,1,0-4.935,6.3L77.6,174.209,56.961,194.48l-6.636-5.491a4,4,0,1,0-5.1,6.163L87.219,229.9a44.1,44.1,0,0,0,28.05,10.1H212a8.009,8.009,0,0,0,8-8V203.9a8.009,8.009,0,0,0-8-8h-8v-2.01A10.708,10.708,0,0,0,194.5,183.243ZM212,203.9V232H115.269a36.081,36.081,0,0,1-22.951-8.264l-29.16-24.128,20.8-20.422L114.4,203.045a4,4,0,0,0,2.468.852H187a4,4,0,0,0,3.715-2.517l3.929-9.843a2.712,2.712,0,0,1,1.356,2.35v6.01a4,4,0,0,0,4,4Z\"></path><path d=\"M223.084,484.672,200.87,469.863V346.36A44.1,44.1,0,0,0,195.327,325l-17.183-30.94a4,4,0,0,0-7,3.884l17.184,30.94a36.073,36.073,0,0,1,4.537,17.478V468H164.333a4,4,0,1,0,0,8h31.321l12,8H152.865V352a4,4,0,0,0-.358-1.655l-25.454-56A4,4,0,0,0,123.411,292H114.2a4,4,0,0,0-3.945,4.658l8.862,53.175a36.016,36.016,0,0,1-1.951,18.949L78.642,468H48.333a4,4,0,1,0,0,8H80.377L92,484H32.088L76.63,361.366a4.017,4.017,0,0,0,.183-2.044L61.1,268H136a4,4,0,0,0,0-8H59.233L30.555,173.966A19.723,19.723,0,0,1,49.27,148H76a12,12,0,0,0,24,0h15.2a21.975,21.975,0,0,1,8.395,1.652l10.889,4.458a4,4,0,1,0,3.032-7.4L126.63,142.25A29.938,29.938,0,0,0,115.2,140H100v-4.527A16.014,16.014,0,0,0,112,120V103.473A16.014,16.014,0,0,0,124,88V80a4,4,0,0,0-4-4H90A22.025,22.025,0,0,0,68,98v18a12.02,12.02,0,0,0,8,11.314V140H49.27a27.723,27.723,0,0,0-26.305,36.5l29.493,88.482,16.29,94.655-46.128,127A4,4,0,0,0,26.38,492h78.485a4,4,0,0,0,2.268-7.3L86.3,470.368l38.318-98.69a44.018,44.018,0,0,0,2.385-23.16L118.921,300h1.914l24.03,52.867V488a4,4,0,0,0,4,4h72a4,4,0,0,0,2.219-7.328ZM76,98A14.015,14.015,0,0,1,90,84h26v4a8.009,8.009,0,0,1-8,8H92a4,4,0,0,0-4,4,11.962,11.962,0,0,1-1.53,5.881A12.044,12.044,0,0,0,76,104.686Zm4,14a3.981,3.981,0,0,1,3.407,1.9,4,4,0,0,0,5.956.975c.207-.171.7-.648.7-.648.032-.028.061-.057.09-.087A19.907,19.907,0,0,0,95.6,104H104v16a8.009,8.009,0,0,1-8,8,12.133,12.133,0,0,1-2.681-.3,4,4,0,1,0-1.775,7.8c.151.035.3.06.456.091V148a4,4,0,1,1-8,0V124a4,4,0,0,0-4-4,4,4,0,0,1,0-8Z\"></path></g></svg>				\n									<h5>\n							arbejde udført med ansvar						\n					</h5>\n				<p>Vi lover ikke mere, end vi kan holde – men vi holder det, vi lover.</p>			<h2>KONTAKT OS</h2>		<p>Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.</p>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-14 10:50:06', '2026-02-14 10:50:06', '', 10, 'https://mrarif.me/cpnordic/?p=717', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(718, 1, '2026-02-14 10:50:08', '2026-02-14 10:50:08', '<h1>CP NORDIC ApS</h1>					<h4>Byggeri – Tømrerarbejde og tagdækning</h4>										<a href=\"https://mrarif.me/cpnordic/kontakt/\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"https://mrarif.me/cpnordic/om-os/\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"https://mrarif.me/cpnordic/tomrerarbejde/\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>								<a href=\"https://mrarif.me/cpnordic/tagdaekning/\">\n									Lær mere\n					</a>\n									<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle ANMELDELSER\n					</a>\n					<h2>HVORFOR VÆLGE CP NORDIC ApS?</h2>		<p>Når du vælger CP NORDIC ApS, får du:</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 450 450\" width=\"512\"><g><g><path d=\"m225 165.2c-25.9 0-48.9-18.8-53.3-45.2-2.4-14.2.9-28.6 9.3-40.3 8.4-11.8 20.9-19.5 35.1-21.9 29.4-4.9 57.3 15 62.2 44.5 4.9 29.4-15 57.3-44.4 62.2-3 .5-6 .7-8.9.7zm-7.6-99.8c-12.2 2-22.9 8.7-30.1 18.8s-10.1 22.4-8 34.6c3.8 22.7 23.5 38.8 45.7 38.8 2.5 0 5.1-.2 7.6-.6 25.2-4.2 42.3-28.1 38.1-53.4s-28.1-42.4-53.3-38.2z\"></path><path d=\"m255.2 115c-2.1 0-3.8-1.7-3.8-3.8 0-14.6-11.8-26.4-26.4-26.4-2.1 0-3.8-1.7-3.8-3.8s1.7-3.8 3.8-3.8c18.8 0 34.1 15.3 34.1 34.1 0 2-1.8 3.7-3.9 3.7z\"></path><path d=\"m236.1 203h-22.2c-2.1 0-3.8-1.7-3.8-3.8v-14.1c-3.1-.6-6.1-1.4-9.1-2.4l-7 12.2c-1.1 1.8-3.4 2.5-5.3 1.4l-19.2-11.1c-.9-.5-1.5-1.4-1.8-2.3-.3-1-.1-2 .4-2.9l7-12.1c-2.4-2.1-4.6-4.3-6.7-6.6l-12.1 7c-1.8 1.1-4.2.4-5.2-1.4l-11.1-19.2c-1.1-1.8-.4-4.2 1.4-5.2l11.9-6.8c-1-3-1.9-6.1-2.6-9.3h-13.7c-2.1 0-3.8-1.7-3.8-3.8v-22.2c0-2.1 1.7-3.8 3.8-3.8h13.4c.6-3.2 1.4-6.4 2.4-9.5l-11.5-6.6c-1.8-1.1-2.5-3.4-1.4-5.3l11.1-19.6c.5-.9 1.4-1.5 2.3-1.8s2-.1 2.9.4l11.3 6.6c2.2-2.5 4.5-4.8 7-7l-6.5-11.3c-.5-.9-.6-1.9-.4-2.9.3-1 .9-1.8 1.8-2.3l19.2-11.1c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l6.4 11.2c3.1-1.1 6.4-1.9 9.7-2.6v-13c0-2.1 1.7-3.8 3.8-3.8h22.2c2.1 0 3.8 1.7 3.8 3.8v12.8c3.3.7 6.5 1.5 9.7 2.6l6.5-11.2c.5-.9 1.4-1.5 2.3-1.8 1-.3 2-.1 2.9.4l19.2 11.1c.9.5 1.5 1.3 1.8 2.3s.1 2-.4 2.9l-6.5 11.3c2.5 2.2 4.8 4.5 7 7.1l11.3-6.6c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l11.1 19.2c1.1 1.8.4 4.2-1.4 5.3l-11.5 6.6c1 3.1 1.8 6.3 2.5 9.5h13.6c2.1 0 3.8 1.7 3.8 3.8v22.2c0 2.1-1.7 3.8-3.8 3.8h-13.6c-.6 3.1-1.5 6.2-2.5 9.3l11.9 6.8c1.8 1.1 2.5 3.4 1.4 5.2l-11.2 19.5c-1.1 1.8-3.4 2.5-5.2 1.4l-12-7c-2.1 2.4-4.4 4.6-6.7 6.6l7 12.1c.5.9.6 1.9.4 2.9s-.9 1.8-1.8 2.3l-19.2 11.1c-1.8 1.1-4.2.4-5.2-1.4l-7-12.2c-3 1-6 1.8-9.1 2.4v14.1c-.2 2.3-2 4-4.1 4zm-18.4-7.7h14.5v-13.5c0-1.9 1.4-3.5 3.3-3.8 4.7-.7 9.4-2 13.8-3.7 1.8-.7 3.8 0 4.7 1.7l6.7 11.6 12.6-7.3-6.7-11.6c-1-1.6-.5-3.7.9-4.9 3.7-3 7.2-6.4 10.2-10.1 1.2-1.5 3.3-1.8 4.9-.9l11.5 6.6 7.3-12.6-11.3-6.5c-1.6-.9-2.4-3-1.6-4.7 1.8-4.5 3.1-9.2 3.9-14 .3-1.9 1.9-3.2 3.8-3.2h13v-14.6h-12.8c-1.9 0-3.5-1.4-3.8-3.3-.7-4.8-2-9.6-3.7-14.2-.7-1.8 0-3.7 1.7-4.7l10.9-6.3-7.3-12.6-10.8 6.3c-1.6.9-3.7.6-4.9-.9-3.1-3.9-6.6-7.4-10.4-10.6-1.5-1.2-1.9-3.3-.9-4.9l6.2-10.7-12.6-7.3-6.1 10.6c-1 1.6-3 2.3-4.7 1.7-4.6-1.8-9.5-3.1-14.4-3.9-1.9-.3-3.3-1.9-3.3-3.8v-12.2h-14.5v12.3c0 1.9-1.4 3.5-3.3 3.8-5 .8-9.8 2.1-14.4 3.9-1.8.7-3.8 0-4.7-1.7l-6.1-10.6-12.6 7.3 6.2 10.7c.9 1.6.6 3.7-.9 4.9-3.9 3.1-7.4 6.7-10.4 10.6-1.2 1.5-3.3 1.9-4.9.9l-10.8-6.3-7.3 12.6 10.9 6.3c1.6.9 2.3 2.9 1.7 4.7-1.7 4.6-3 9.4-3.7 14.2-.3 1.9-1.9 3.3-3.8 3.3h-12.8v14.5h13c1.9 0 3.5 1.4 3.8 3.2.8 4.8 2.1 9.5 3.9 14 .7 1.8 0 3.8-1.6 4.7l-11.3 6.5 7.3 12.6 11.5-6.6c1.6-.9 3.7-.6 4.9.9 3 3.7 6.5 7.1 10.3 10.1 1.5 1.2 1.9 3.3.9 4.9l-6.7 11.6 12.6 7.3 6.7-11.6c.9-1.6 2.9-2.3 4.7-1.7 4.5 1.7 9.1 2.9 13.8 3.7 1.9.3 3.3 1.9 3.3 3.8z\"></path></g><g><g><g><path d=\"m45.3 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m153.9 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path></g><g><path d=\"m189.3 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.2c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c0 2.1-1.7 3.8-3.8 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m73.3 326.4c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m126 326.4c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m99.7 325.6c-.6 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4s4.1 1.1 4.4 3.2c2.4 16.5 12.3 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m50.2 266.6c-.1 0-.2 0-.3 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.7 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-8.9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.5 2.2zm81.8-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13.1-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.4-.7 2.3-.7z\"></path></g></g></g><g><g><path d=\"m296.1 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m404.7 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path></g><g><path d=\"m440 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.1c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c.2 2.1-1.6 3.8-3.7 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m324 326.3c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m376.7 326.3c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m350.4 325.6c-.5 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4 2.1-.3 4 1.1 4.4 3.2 2.4 16.5 12.4 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m301 266.6c-.1 0-.2 0-.4 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.6 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.4 2.2zm81.7-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.5-.7 2.3-.7z\"></path></g></g></g></g></g></svg>				\n									<h5>\n							et ungt og engageret team						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"496pt\" viewBox=\"0 0 496 496\" width=\"496pt\"><path d=\"m440 328h-28.207031c5.078125-6.703125 8.207031-14.960938 8.207031-24 0-8.824219-7.175781-16-16-16h-12v-19.960938c59.574219-14.445312 104-68.085937 104-132.039062 0-74.992188-61.007812-136-136-136s-136 61.007812-136 136c0 63.953125 44.425781 117.59375 104 132.039062v19.960938h-8.449219c-6.167969 0-12.359375 1.464844-17.886719 4.214844l-50.480468 25.25c-3.320313 1.664062-7.03125 2.535156-10.734375 2.535156h-40.449219v-16h-104v16h56v56h16v-56h16v128h-16v-56h-16v56h-56v16h104v-16h40.449219c3.703125 0 7.414062.871094 10.734375 2.527344l34.488281 17.25c5.519531 2.757812 11.710937 4.222656 17.878906 4.222656h24.449219v24h64v-24h48c13.230469 0 24-10.769531 24-24 0-6.167969-2.40625-11.742188-6.238281-16 3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16 0-13.230469-10.769531-24-24-24zm8 24c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm-208-280c0-66.167969 53.832031-120 120-120s120 53.832031 120 120-53.832031 120-120 120-120-53.832031-120-120zm104 134.976562c5.257812.617188 10.574219 1.023438 16 1.023438s10.742188-.40625 16-1.023438v17.023438h-32zm-40.449219 185.023438c-3.703125 0-7.414062-.871094-10.734375-2.527344l-34.488281-17.25c-5.519531-2.757812-11.710937-4.222656-17.878906-4.222656h-40.449219v-96h40.449219c6.167969 0 12.359375-1.464844 17.886719-4.214844l50.480468-25.25c3.320313-1.664062 7.03125-2.535156 10.734375-2.535156h84.449219c0 13.230469-10.769531 24-24 24h-48.28125l-23.863281 35.808594c-6.101563 9.160156-14.527344 16.589844-24.367188 21.503906-8.753906 4.375-18.542969 6.6875-28.320312 6.6875h-15.167969v16h15.167969c12.246093 0 24.519531-2.894531 35.472656-8.375 12.328125-6.160156 22.878906-15.480469 30.527344-26.945312l6.832031-10.253907v93.574219zm40.449219 24v-136h17.472656c-.898437 2.511719-1.472656 5.183594-1.472656 8 0 6.167969 2.40625 11.742188 6.238281 16-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16 0 10.414062 6.710938 19.214844 16 22.527344v9.472656zm96-24h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8s-3.59375 8-8 8zm0 0\"></path><path d=\"m394.878906 73.007812-7.757812 13.984376c17.816406 9.878906 28.878906 28.664062 28.878906 49.007812h16c0-26.160156-14.222656-50.296875-37.121094-62.992188zm0 0\"></path><path d=\"m360 80c4.734375 0 9.449219.59375 14.007812 1.769531l3.976563-15.503906c-5.855469-1.496094-11.90625-2.265625-17.984375-2.265625zm0 0\"></path><path d=\"m360 48c48.519531 0 88 39.480469 88 88 0 20.753906-7.398438 40.910156-20.832031 56.785156l12.207031 10.34375c15.882812-18.761718 24.625-42.601562 24.625-67.128906 0-57.34375-46.65625-104-104-104-24.527344 0-48.367188 8.753906-67.128906 24.632812l10.335937 12.199219c15.871094-13.433593 36.039063-20.832031 56.792969-20.832031zm0 0\"></path><path d=\"m427.128906 215.367188-10.335937-12.199219c-15.871094 13.433593-36.039063 20.832031-56.792969 20.832031-48.519531 0-88-39.480469-88-88 0-20.753906 7.398438-40.910156 20.832031-56.785156l-12.207031-10.34375c-15.882812 18.761718-24.625 42.601562-24.625 67.128906 0 57.34375 46.65625 104 104 104 24.527344 0 48.367188-8.753906 67.128906-24.632812zm0 0\"></path><path d=\"m121.214844 165.640625c4.953125-1.375 9.695312-3.34375 14.183594-5.878906l9.769531 4.886719 19.472656-19.480469-4.886719-9.769531c2.535156-4.496094 4.503906-9.230469 5.886719-14.183594l10.359375-3.445313v-27.53125l-10.351562-3.453125c-1.375-4.953125-3.34375-9.707031-5.886719-14.183594l4.886719-9.777343-19.472657-19.472657-9.769531 4.886719c-4.484375-2.535156-9.230469-4.503906-14.183594-5.878906l-3.453125-10.359375h-27.539062l-3.445313 10.359375c-4.953125 1.375-9.695312 3.34375-14.183594 5.878906l-9.777343-4.886719-19.472657 19.472657 4.886719 9.777343c-2.535156 4.488282-4.503906 9.230469-5.886719 14.183594l-10.351562 3.445313v27.53125l10.351562 3.453125c1.375 4.953125 3.34375 9.695312 5.886719 14.183594l-4.886719 9.769531 19.472657 19.480469 9.769531-4.886719c4.484375 2.535156 9.230469 4.503906 14.183594 5.878906l3.453125 10.359375h27.539062zm-12.304688-13.679687-2.679687 8.039062h-4.460938l-2.679687-8.039062-4.554688-.90625c-6.128906-1.222657-11.878906-3.605469-17.109375-7.09375l-3.867187-2.578126-7.574219 3.800782-3.160156-3.167969 3.792969-7.582031-2.578126-3.859375c-3.488281-5.222657-5.871093-10.980469-7.09375-17.109375l-.914062-4.554688-8.03125-2.679687v-4.46875l8.03125-2.671875.914062-4.554688c1.222657-6.136718 3.613282-11.886718 7.09375-17.109375l2.578126-3.859375-3.792969-7.589844 3.160156-3.160156 7.574219 3.800782 3.867187-2.578126c5.222657-3.488281 10.980469-5.863281 17.109375-7.09375l4.554688-.90625 2.679687-8.039062h4.460938l2.679687 8.039062 4.554688.90625c6.128906 1.222657 11.878906 3.605469 17.109375 7.09375l3.867187 2.578126 7.574219-3.800782 3.160156 3.160156-3.792969 7.589844 2.578126 3.859375c3.488281 5.214844 5.871093 10.972657 7.09375 17.109375l.914062 4.554688 8.03125 2.679687v4.46875l-8.03125 2.671875-.914062 4.554688c-1.222657 6.128906-3.613282 11.878906-7.09375 17.109375l-2.578126 3.859375 3.792969 7.582031-3.160156 3.167969-7.574219-3.800782-3.867187 2.578126c-5.222657 3.488281-10.980469 5.863281-17.109375 7.09375zm0 0\"></path><path d=\"m104 72c-17.648438 0-32 14.351562-32 32s14.351562 32 32 32 32-14.351562 32-32-14.351562-32-32-32zm0 48c-8.824219 0-16-7.175781-16-16s7.175781-16 16-16 16 7.175781 16 16-7.175781 16-16 16zm0 0\"></path><path d=\"m160 248v-40h48v-208h-208v208h106.664062zm-144-232h176v176h-48v24l-32-24h-96zm0 0\"></path><path d=\"m0 272h16v16h-16zm0 0\"></path><path d=\"m32 272h16v16h-16zm0 0\"></path><path d=\"m64 272h16v16h-16zm0 0\"></path><path d=\"m32 304h16v16h-16zm0 0\"></path><path d=\"m64 304h16v16h-16zm0 0\"></path><path d=\"m0 480h16v16h-16zm0 0\"></path><path d=\"m32 480h16v16h-16zm0 0\"></path><path d=\"m64 480h16v16h-16zm0 0\"></path><path d=\"m32 448h16v16h-16zm0 0\"></path><path d=\"m64 448h16v16h-16zm0 0\"></path></svg>				\n									<h5>\n							fokus på kvalitet og detaljer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m469.12 408.93-67.26-33.63v-22.13c10.71-7.69 18.6-19.07 21.78-32.27h5.28c8.81 0 15.98-7.17 15.98-15.98v-5.29c0-6.35-3.74-11.84-9.12-14.41 5.19-18.64-1.65-39.76-19.44-59.78-12.58-14.16-30.67-22.27-49.62-22.27-18.93 0-37.01 8.12-49.59 22.27-13.38 15.05-20.95 41.01-14.03 59.62-5.56 2.5-9.45 8.09-9.45 14.57v5.29c0 8.81 7.17 15.98 15.98 15.98h5.55c3.16 13.09 10.94 24.39 21.51 32.08v22.32l-67.26 33.63c-16.7 5.87-27.89 21.6-27.89 39.28v41.63c0 3.31 2.69 6 6 6h243.46c3.31 0 6-2.69 6-6v-41.63c0-17.68-11.19-33.41-27.88-39.28zm-62.24-17.7-15.83 27.66-13.29-13.29 19.29-19.29zm-37.61 5.88-20.59-20.58v-16.91c6.41 2.57 13.4 4.01 20.72 4.01 7.22 0 14.11-1.39 20.45-3.9v16.8zm63.63-97.48v5.29c0 2.16-1.82 3.98-3.98 3.98h-3.74c.01-.36.03-.71.03-1.07v-12.18h3.71c2.15-.01 3.98 1.82 3.98 3.98zm-119.29 8.2v1.07h-3.98c-2.16 0-3.98-1.82-3.98-3.98v-5.29c0-2.16 1.82-3.98 3.98-3.98l3.98.22zm1.95-24.19c-7.33-13.69-.89-37.39 10.53-50.24 10.31-11.6 25.12-18.25 40.63-18.25 15.52 0 30.34 6.65 40.65 18.25 8.43 9.48 21.3 27.59 17.4 46.39-5.66-.35-10.67-2.55-14.4-6.36-5.37-5.49-7.72-14-6.63-23.94.29-2.62-1.17-5.13-3.6-6.17s-5.25-.37-6.95 1.65c-19.33 22.92-45.95 36.76-73.9 38.68h-3.73zm10.05 24.19v-12.73c24.57-2.92 47.92-14.05 66.73-31.8 1.43 7.26 4.63 13.6 9.45 18.52 3.27 3.35 7.14 5.89 11.41 7.58v18.42c0 24.15-19.65 43.8-43.8 43.8s-43.79-19.64-43.79-43.79zm15.89 78.48 19.29 19.29-13.29 13.29-15.84-27.66zm3.22 97.53h-39.42v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.76v-35.63c0-12.68 8.1-23.95 20.15-28.05.26-.09.51-.19.75-.31l46.47-23.23 20.07 35.06c.93 1.62 2.56 2.72 4.41 2.97.27.04.53.05.79.05 1.58 0 3.11-.62 4.24-1.76l.14-.14zm12.08 0 7.41-64.69 5.06-5.06 4.84 4.84 7.86 64.92h-25.17zm128.2 0h-39.76v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.18l-6.2-51.17.25.25c1.13 1.13 2.66 1.76 4.24 1.76.26 0 .53-.02.79-.05 1.85-.25 3.48-1.34 4.41-2.97l20.07-35.06 46.47 23.23c.24.12.49.23.75.31 12.05 4.1 20.15 15.38 20.15 28.05v35.65zm-67.04-346.65h-10.84l28.38 39.84 28.38-39.84h-10.84c-3.31 0-6-2.69-6-6v-64.58h-98.7c-3.31 0-6-2.69-6-6s2.69-6 6-6h104.7c3.31 0 6 2.69 6 6v64.58h16.48c2.25 0 4.3 1.25 5.33 3.25s.86 4.4-.45 6.23l-40.02 56.18c-1.13 1.58-2.95 2.52-4.89 2.52s-3.76-.94-4.89-2.52l-40.02-56.18c-1.3-1.83-1.48-4.23-.45-6.23s3.09-3.25 5.33-3.25h16.48v-23.5h-65.38c-3.31 0-6-2.69-6-6s2.69-6 6-6h71.38c3.31 0 6 2.69 6 6v35.5c.02 3.31-2.67 6-5.98 6zm-118.44 50.65v-133.26c0-21.18-17.23-38.41-38.41-38.41h-207.7c-21.18-.01-38.41 17.23-38.41 38.41v133.26c0 21.18 17.23 38.41 38.41 38.41h105.8l64.8 55.11c1.11.94 2.49 1.43 3.89 1.43.85 0 1.71-.18 2.52-.55 2.12-.98 3.48-3.11 3.48-5.45v-50.54h27.21c21.18 0 38.41-17.23 38.41-38.41zm-71.62 26.41c-3.31 0-6 2.69-6 6v43.56l-56.59-48.13c-1.08-.92-2.46-1.43-3.89-1.43h-108.01c-14.56 0-26.41-11.85-26.41-26.41v-133.26c0-14.56 11.85-26.41 26.41-26.41h207.69c14.56 0 26.41 11.85 26.41 26.41v133.26c0 14.56-11.85 26.41-26.41 26.41zm-156.34-87.87h56.97c3.31 0 6-2.69 6-6v-39.2l8.55-8.55c2.34-2.34 2.34-6.14 0-8.49-2.34-2.34-6.14-2.34-8.48 0l-.7.7c-.98-1.97-3.01-3.32-5.36-3.32h-56.98c-3.31 0-6 2.69-6 6v52.85c0 3.32 2.69 6.01 6 6.01zm6-52.86h44.97v2.69l-18.16 18.16-8.84-8.84c-2.34-2.34-6.14-2.34-8.49 0-2.34 2.34-2.34 6.14 0 8.49l13.08 13.08c1.17 1.17 2.71 1.76 4.24 1.76s3.07-.59 4.24-1.76l13.92-13.92v21.2h-44.96zm173.62 3.08c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 31.92c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 36.52c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.68 5.99 6zm0 31.92c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.69 5.99 6zm-119.36 165.01h10.84l-28.38-39.84-28.38 39.84h10.84c3.31 0 6 2.69 6 6v64.58h98.7c3.31 0 6 2.69 6 6s-2.69 6-6 6h-104.69c-3.31 0-6-2.69-6-6v-64.58h-16.48c-2.25 0-4.3-1.25-5.33-3.25s-.86-4.4.45-6.23l40.02-56.18c1.13-1.58 2.95-2.52 4.89-2.52s3.76.94 4.89 2.52l40.02 56.18c1.3 1.83 1.48 4.23.45 6.23s-3.09 3.25-5.33 3.25h-16.48v23.5h65.38c3.31 0 6 2.69 6 6s-2.69 6-6 6h-71.38c-3.31 0-6-2.69-6-6v-35.5c-.03-3.31 2.66-6 5.97-6z\"></path></svg>				\n									<h5>\n							ærlig<br> rådgivning						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 510 510\"><path d=\"m192.036 385.845c-4.787-46.972-19.459-64.336-30.658-82.352-8.672-13.951-15.5-28.245-15.5-54.252 0-60.242 48.865-109.109 109.135-109.109 60.242 0 109.109 48.866 109.109 109.109 0 26.007-6.828 40.301-15.5 54.252-11.199 18.016-25.871 35.38-30.658 82.352 9.985 2.864 17.345 12.101 17.345 22.975v36.44c0 13.109-10.747 23.866-23.893 23.866h-10.334v9.945c0 12.588-10.341 22.929-22.93 22.929h-46.304c-12.589 0-22.93-10.341-22.93-22.929v-9.945h-10.334c-13.146 0-23.893-10.757-23.893-23.866v-36.44c0-10.874 7.36-20.111 17.345-22.975zm111.948-.917c4.199-42.194 15.78-62.332 26.488-79.049 10.147-15.842 19.65-28.207 19.65-56.638 0-52.513-42.597-95.109-95.109-95.109-52.537 0-95.135 42.596-95.135 95.109 0 28.431 9.503 40.796 19.65 56.638 10.708 16.717 22.289 36.855 26.488 79.049zm2.554-78.61c-1.175 13.701-11.985 24.191-24.783 24.191-13.527 0-24.862-12.086-24.862-26.673v-99.328c0-14.12 11.335-26.673 24.862-26.673 11.309 0 21.031 8.139 23.975 19.497 9.12 3.904 15.688 13.438 15.688 24.78 0 1.153-.068 2.289-.201 3.403 5.078 5.326 8.283 12.802 8.283 21.117 0 6.39-1.889 12.262-5.06 17.053 1.996 4.099 3.13 8.773 3.13 13.76 0 14.1-9.065 25.697-21.032 28.873zm-16.452-109.977c-1.964-2.729-4.916-4.506-8.331-4.506-6.192 0-10.862 6.21-10.862 12.673v99.328c0 6.677 4.67 12.673 10.862 12.673 5.516 0 9.822-4.614 10.717-10.425-4.709-1.416-8.923-4.144-12.279-7.814-2.607-2.852-2.409-7.283.443-9.89 2.851-2.607 7.282-2.408 9.889.443 2.416 2.642 5.72 4.356 9.402 4.356 7.733 0 13.643-7.218 13.643-15.734s-5.91-15.734-13.643-15.734c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7 5.352 0 10.388 1.655 14.658 4.533.593-1.743.915-3.634.915-5.612 0-2.11-.366-4.128-1.036-5.972-.769.858-1.588 1.66-2.453 2.397-2.94 2.507-7.361 2.156-9.869-.784-2.507-2.939-2.155-7.361.784-9.868 2.773-2.365 4.492-6.122 4.492-10.293 0-6.072-3.705-11.374-8.898-12.467-.154-.023-.307-.052-.458-.085-.499-.08-1.01-.121-1.532-.121-2.947 0-5.591 1.389-7.515 3.525-2.585 2.87-7.015 3.101-9.886.515-2.87-2.586-3.101-7.015-.515-9.886 3.111-3.453 7.059-5.988 11.472-7.252zm-104.526 67.344c-3.171-4.791-5.06-10.663-5.06-17.053 0-8.307 3.198-15.777 8.284-21.104-.133-1.118-.202-2.258-.202-3.416 0-11.354 6.582-20.897 15.717-24.792 2.948-11.354 12.67-19.485 23.946-19.485 13.56 0 24.888 12.555 24.888 26.673v99.328c0 14.585-11.328 26.673-24.888 26.673-12.765 0-23.578-10.484-24.757-24.184-11.98-3.166-21.058-14.769-21.058-28.88 0-4.987 1.134-9.661 3.13-13.76zm9.982-23.036c-.675 1.847-1.042 3.869-1.042 5.983 0 1.978.322 3.869.915 5.612 4.27-2.878 9.306-4.533 14.658-4.533 3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7-7.733 0-13.643 7.218-13.643 15.734s5.91 15.734 13.643 15.734c3.682 0 6.986-1.714 9.402-4.356 2.607-2.851 7.038-3.05 9.889-.443 2.852 2.607 3.05 7.038.443 9.89-3.35 3.664-7.556 6.389-12.255 7.807.891 5.813 5.192 10.432 10.693 10.432 6.21 0 10.888-5.993 10.888-12.673v-99.328c0-6.466-4.678-12.673-10.888-12.673-3.404 0-6.349 1.777-8.309 4.507 4.421 1.264 8.367 3.8 11.476 7.251 2.586 2.871 2.355 7.3-.516 9.886-2.87 2.586-7.3 2.355-9.886-.515-1.926-2.138-4.574-3.525-7.54-3.525-.493 0-.976.037-1.448.108-.196.045-.395.082-.596.11-5.165 1.118-8.844 6.404-8.844 12.455 0 1.243.153 2.45.442 3.594.101.284.183.572.246.862.748 2.326 2.071 4.346 3.814 5.823 2.947 2.498 3.311 6.919.813 9.866s-6.919 3.312-9.866.814c-.878-.745-1.71-1.554-2.489-2.422zm3.042 158.279c-5.442 0-9.893 4.451-9.893 9.892v36.44c0 5.423 4.454 9.866 9.893 9.866h17.334c3.866 0 7 3.134 7 7v16.945c0 4.902 4.027 8.929 8.93 8.929h46.304c4.903 0 8.93-4.027 8.93-8.929v-16.945c0-3.866 3.134-7 7-7h17.334c5.439 0 9.893-4.443 9.893-9.866v-36.44c0-5.441-4.451-9.892-9.893-9.892zm63.416-314.093 2.907-5.412c1.828-3.403 6.075-4.683 9.479-2.854 3.403 1.828 4.682 6.075 2.854 9.479l-16.073 29.925c-1.22 2.271-3.589 3.688-6.167 3.688s-4.947-1.417-6.167-3.688l-16.073-29.925c-1.828-3.404-.549-7.651 2.854-9.479 3.404-1.829 7.651-.549 9.479 2.854l2.907 5.412v-69.835c0-3.863 3.137-7 7-7s7 3.137 7 7zm-132.198 54.758-49.381-49.381c-2.732-2.731-2.732-7.167 0-9.899s7.168-2.732 9.9 0l49.38 49.38-1.771-5.881c-1.114-3.7.985-7.608 4.684-8.722 3.7-1.114 7.607.985 8.721 4.685l9.796 32.526c.743 2.468.069 5.145-1.753 6.968-1.823 1.823-4.5 2.496-6.969 1.753l-32.526-9.795c-3.699-1.114-5.798-5.022-4.684-8.721s5.022-5.798 8.721-4.684zm-44.859 122.299h-69.835c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7h69.835l-5.412-2.907c-3.403-1.828-4.682-6.076-2.854-9.479 1.828-3.404 6.075-4.683 9.479-2.855l29.926 16.074c2.271 1.22 3.688 3.589 3.688 6.167 0 2.577-1.417 4.947-3.688 6.166l-29.926 16.074c-3.404 1.828-7.651.549-9.479-2.855-1.828-3.403-.549-7.651 2.854-9.479zm54.758 118.198-49.38 49.38c-2.732 2.732-7.168 2.732-9.9 0s-2.732-7.167 0-9.899l49.381-49.381-5.882 1.772c-3.699 1.114-7.607-.985-8.721-4.685-1.114-3.699.985-7.607 4.684-8.721l32.526-9.795c2.469-.743 5.146-.07 6.969 1.753 1.822 1.823 2.496 4.5 1.753 6.968l-9.796 32.527c-1.114 3.699-5.021 5.798-8.721 4.684-3.699-1.114-5.798-5.022-4.684-8.721zm240.497-240.497 5.882-1.771c3.699-1.114 7.607.985 8.721 4.684s-.985 7.607-4.684 8.721l-32.526 9.795c-2.469.743-5.146.07-6.969-1.753-1.822-1.823-2.496-4.5-1.753-6.968l9.796-32.526c1.114-3.7 5.021-5.799 8.721-4.685 3.699 1.114 5.798 5.022 4.684 8.722l-1.771 5.881 49.38-49.38c2.732-2.732 7.168-2.732 9.9 0s2.732 7.168 0 9.899zm44.859 122.299 5.412 2.906c3.403 1.828 4.682 6.076 2.854 9.479-1.828 3.404-6.075 4.683-9.479 2.855l-29.926-16.074c-2.271-1.219-3.688-3.589-3.688-6.166 0-2.578 1.417-4.947 3.688-6.167l29.926-16.074c3.404-1.828 7.651-.549 9.479 2.855 1.828 3.403.549 7.651-2.854 9.479l-5.412 2.907h69.835c3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7zm-54.758 118.198 1.771 5.882c1.114 3.699-.985 7.607-4.684 8.721-3.7 1.114-7.607-.985-8.721-4.684l-9.796-32.527c-.743-2.468-.069-5.145 1.753-6.968 1.823-1.823 4.5-2.496 6.969-1.753l32.526 9.795c3.699 1.114 5.798 5.022 4.684 8.721-1.114 3.7-5.022 5.799-8.721 4.685l-5.882-1.772 49.381 49.381c2.732 2.732 2.732 7.167 0 9.899s-7.168 2.732-9.9 0z\"></path></svg>				\n									<h5>\n							gennemtænkte løsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"outline\"><path d=\"M486.41,144A28,28,0,0,0,472,92H349.123l5.457-21.828a48.513,48.513,0,0,0-12.848-46.153A41.035,41.035,0,0,0,312.609,12H308a8.009,8.009,0,0,0-8,8V47.413l-19.233,64.112A17.376,17.376,0,0,1,268,123.539V112a4,4,0,0,0-4-4H152a4,4,0,0,0-4,4v72a4,4,0,0,0,8,0V116h72V276H156V248a4,4,0,0,0-8,0v32a4,4,0,0,0,4,4H264a4,4,0,0,0,4-4V268.5h11.168A37.07,37.07,0,0,1,305.092,279a45.025,45.025,0,0,0,31.48,12.752L440,292a27.987,27.987,0,0,0,19.369-48.2,27.987,27.987,0,0,0,16-48A28,28,0,0,0,486.41,144ZM260,276H236V116h24Zm212-88H396a4,4,0,0,0,0,8h60a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h40a20,20,0,0,1,.01,40l-103.428-.25a37.07,37.07,0,0,1-25.924-10.5,45.031,45.031,0,0,0-31.49-12.752H268V131.686a25.317,25.317,0,0,0,20.429-17.862l19.4-64.675A4,4,0,0,0,308,48V20h4.609a33.082,33.082,0,0,1,23.481,9.69,40.507,40.507,0,0,1,10.728,38.541l-6.7,26.8A4,4,0,0,0,344,100H472a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h72a20,20,0,0,1,0,40Z\"></path><path d=\"M194.5,183.243l-1.9-.217a4,4,0,0,0-4.169,2.491L184.29,195.9H135.278l-3.539-9.317a4,4,0,0,0-7.478,2.84l2.459,6.477h-8.474L68.452,156.872a4,4,0,1,0-4.935,6.3L77.6,174.209,56.961,194.48l-6.636-5.491a4,4,0,1,0-5.1,6.163L87.219,229.9a44.1,44.1,0,0,0,28.05,10.1H212a8.009,8.009,0,0,0,8-8V203.9a8.009,8.009,0,0,0-8-8h-8v-2.01A10.708,10.708,0,0,0,194.5,183.243ZM212,203.9V232H115.269a36.081,36.081,0,0,1-22.951-8.264l-29.16-24.128,20.8-20.422L114.4,203.045a4,4,0,0,0,2.468.852H187a4,4,0,0,0,3.715-2.517l3.929-9.843a2.712,2.712,0,0,1,1.356,2.35v6.01a4,4,0,0,0,4,4Z\"></path><path d=\"M223.084,484.672,200.87,469.863V346.36A44.1,44.1,0,0,0,195.327,325l-17.183-30.94a4,4,0,0,0-7,3.884l17.184,30.94a36.073,36.073,0,0,1,4.537,17.478V468H164.333a4,4,0,1,0,0,8h31.321l12,8H152.865V352a4,4,0,0,0-.358-1.655l-25.454-56A4,4,0,0,0,123.411,292H114.2a4,4,0,0,0-3.945,4.658l8.862,53.175a36.016,36.016,0,0,1-1.951,18.949L78.642,468H48.333a4,4,0,1,0,0,8H80.377L92,484H32.088L76.63,361.366a4.017,4.017,0,0,0,.183-2.044L61.1,268H136a4,4,0,0,0,0-8H59.233L30.555,173.966A19.723,19.723,0,0,1,49.27,148H76a12,12,0,0,0,24,0h15.2a21.975,21.975,0,0,1,8.395,1.652l10.889,4.458a4,4,0,1,0,3.032-7.4L126.63,142.25A29.938,29.938,0,0,0,115.2,140H100v-4.527A16.014,16.014,0,0,0,112,120V103.473A16.014,16.014,0,0,0,124,88V80a4,4,0,0,0-4-4H90A22.025,22.025,0,0,0,68,98v18a12.02,12.02,0,0,0,8,11.314V140H49.27a27.723,27.723,0,0,0-26.305,36.5l29.493,88.482,16.29,94.655-46.128,127A4,4,0,0,0,26.38,492h78.485a4,4,0,0,0,2.268-7.3L86.3,470.368l38.318-98.69a44.018,44.018,0,0,0,2.385-23.16L118.921,300h1.914l24.03,52.867V488a4,4,0,0,0,4,4h72a4,4,0,0,0,2.219-7.328ZM76,98A14.015,14.015,0,0,1,90,84h26v4a8.009,8.009,0,0,1-8,8H92a4,4,0,0,0-4,4,11.962,11.962,0,0,1-1.53,5.881A12.044,12.044,0,0,0,76,104.686Zm4,14a3.981,3.981,0,0,1,3.407,1.9,4,4,0,0,0,5.956.975c.207-.171.7-.648.7-.648.032-.028.061-.057.09-.087A19.907,19.907,0,0,0,95.6,104H104v16a8.009,8.009,0,0,1-8,8,12.133,12.133,0,0,1-2.681-.3,4,4,0,1,0-1.775,7.8c.151.035.3.06.456.091V148a4,4,0,1,1-8,0V124a4,4,0,0,0-4-4,4,4,0,0,1,0-8Z\"></path></g></svg>				\n									<h5>\n							arbejde udført med ansvar						\n					</h5>\n				<p>Vi lover ikke mere, end vi kan holde – men vi holder det, vi lover.</p>			<h2>KONTAKT OS</h2>		<p>Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.</p>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-14 10:50:08', '2026-02-14 10:50:08', '', 10, 'https://mrarif.me/cpnordic/?p=718', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(719, 1, '2026-02-14 10:53:31', '2026-02-14 10:53:31', '<h2>Vores tjenester</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>				\n									<h4>\n							TØMRERARBEJDE						\n					</h4>\n									<p>\n						Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:\n					</p>\n												<a href=\"https://mrarif.me/cpnordic/tomrerarbejde/\">\n									Lær mere\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>				\n									<h4>\n							TAGDÆKNING						\n					</h4>\n									<p>\n						Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.					</p>\n												<a href=\"https://mrarif.me/cpnordic/tagdaekning/\">\n									Lær mere\n					</a>', 'Tjenester', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-14 10:53:31', '2026-02-14 10:53:31', '', 12, 'https://mrarif.me/cpnordic/?p=719', 0, 'revision', '', 0),
(720, 1, '2026-02-14 10:53:31', '2026-02-14 10:53:31', '<h2>Vores tjenester</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>				\n									<h4>\n							TØMRERARBEJDE						\n					</h4>\n									<p>\n						Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:\n					</p>\n												<a href=\"https://mrarif.me/cpnordic/tomrerarbejde/\">\n									Lær mere\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>				\n									<h4>\n							TAGDÆKNING						\n					</h4>\n									<p>\n						Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.					</p>\n												<a href=\"https://mrarif.me/cpnordic/tagdaekning/\">\n									Lær mere\n					</a>', 'Tjenester', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-14 10:53:31', '2026-02-14 10:53:31', '', 12, 'https://mrarif.me/cpnordic/?p=720', 0, 'revision', '', 0),
(721, 1, '2026-02-14 10:53:31', '2026-02-14 10:53:31', '<h2>Vores tjenester</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>				\n									<h4>\n							TØMRERARBEJDE						\n					</h4>\n									<p>\n						Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:\n					</p>\n												<a href=\"https://mrarif.me/cpnordic/tomrerarbejde/\">\n									Lær mere\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>				\n									<h4>\n							TAGDÆKNING						\n					</h4>\n									<p>\n						Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.					</p>\n												<a href=\"https://mrarif.me/cpnordic/tagdaekning/\">\n									Lær mere\n					</a>', 'Tjenester', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-14 10:53:31', '2026-02-14 10:53:31', '', 12, 'https://mrarif.me/cpnordic/?p=721', 0, 'revision', '', 0),
(734, 1, '2026-02-14 11:05:51', '2026-02-14 11:05:51', '<h5>\n						Terrasser					</h5>\n									<h5>\n						Totalrenoveringer					</h5>\n									<h5>\n						Tilbygninger					</h5>\n									<h5>\n						Carporte					</h5>\n									<h5>\n						Udskiftning og montering af døre og vinduer					</h5>\n									<h5>\n						Specialtilpassede løsninger					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>Terrasser</h2>		<p>Terrasser er et af vores kerneområder. Vi lægger stor vægt på korrekt opbygning, stabilitet og finish, da det er afgørende for både holdbarhed og udseende.</p><p>Vi arbejder gerne med hårdttræsterrasser og foretrækker træsorter som cumaru, ipé og thermobehandlet træ, da disse materialer har:</p>					<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										høj naturlig holdbarhed\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										god modstandsdygtighed over for fugt\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										et flot og tidløst udtryk\n									</li>\n						</ul>\n				<p>Med korrekt montage giver disse træsorter terrasser, der ældes pænt og kræver minimal vedligeholdelse.</p><p>Vi rådgiver altid om materialevalg, opbygning og vedligeholdelse, så løsningen passer til både huset, omgivelserne og kundens behov.</p>', 'TØMRERARBEJDE', '', 'inherit', 'closed', 'closed', '', '640-revision-v1', '', '', '2026-02-14 11:05:51', '2026-02-14 11:05:51', '', 640, 'https://mrarif.me/cpnordic/?p=734', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(723, 1, '2026-02-14 10:57:54', '2026-02-14 10:57:54', '<h1>CP NORDIC ApS</h1>					<h4>Byggeri – Tømrerarbejde og tagdækning</h4>										<a href=\"https://mrarif.me/cpnordic/kontakt/\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"https://mrarif.me/cpnordic/om-os/\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"https://mrarif.me/cpnordic/tomrerarbejde/\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>								<a href=\"https://mrarif.me/cpnordic/tagdaekning/\">\n									Lær mere\n					</a>\n									<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle ANMELDELSER\n					</a>\n					<h2>HVORFOR VÆLGE CP NORDIC ApS?</h2>		<p>Når du vælger CP NORDIC ApS, får du:</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 450 450\" width=\"512\"><g><g><path d=\"m225 165.2c-25.9 0-48.9-18.8-53.3-45.2-2.4-14.2.9-28.6 9.3-40.3 8.4-11.8 20.9-19.5 35.1-21.9 29.4-4.9 57.3 15 62.2 44.5 4.9 29.4-15 57.3-44.4 62.2-3 .5-6 .7-8.9.7zm-7.6-99.8c-12.2 2-22.9 8.7-30.1 18.8s-10.1 22.4-8 34.6c3.8 22.7 23.5 38.8 45.7 38.8 2.5 0 5.1-.2 7.6-.6 25.2-4.2 42.3-28.1 38.1-53.4s-28.1-42.4-53.3-38.2z\"></path><path d=\"m255.2 115c-2.1 0-3.8-1.7-3.8-3.8 0-14.6-11.8-26.4-26.4-26.4-2.1 0-3.8-1.7-3.8-3.8s1.7-3.8 3.8-3.8c18.8 0 34.1 15.3 34.1 34.1 0 2-1.8 3.7-3.9 3.7z\"></path><path d=\"m236.1 203h-22.2c-2.1 0-3.8-1.7-3.8-3.8v-14.1c-3.1-.6-6.1-1.4-9.1-2.4l-7 12.2c-1.1 1.8-3.4 2.5-5.3 1.4l-19.2-11.1c-.9-.5-1.5-1.4-1.8-2.3-.3-1-.1-2 .4-2.9l7-12.1c-2.4-2.1-4.6-4.3-6.7-6.6l-12.1 7c-1.8 1.1-4.2.4-5.2-1.4l-11.1-19.2c-1.1-1.8-.4-4.2 1.4-5.2l11.9-6.8c-1-3-1.9-6.1-2.6-9.3h-13.7c-2.1 0-3.8-1.7-3.8-3.8v-22.2c0-2.1 1.7-3.8 3.8-3.8h13.4c.6-3.2 1.4-6.4 2.4-9.5l-11.5-6.6c-1.8-1.1-2.5-3.4-1.4-5.3l11.1-19.6c.5-.9 1.4-1.5 2.3-1.8s2-.1 2.9.4l11.3 6.6c2.2-2.5 4.5-4.8 7-7l-6.5-11.3c-.5-.9-.6-1.9-.4-2.9.3-1 .9-1.8 1.8-2.3l19.2-11.1c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l6.4 11.2c3.1-1.1 6.4-1.9 9.7-2.6v-13c0-2.1 1.7-3.8 3.8-3.8h22.2c2.1 0 3.8 1.7 3.8 3.8v12.8c3.3.7 6.5 1.5 9.7 2.6l6.5-11.2c.5-.9 1.4-1.5 2.3-1.8 1-.3 2-.1 2.9.4l19.2 11.1c.9.5 1.5 1.3 1.8 2.3s.1 2-.4 2.9l-6.5 11.3c2.5 2.2 4.8 4.5 7 7.1l11.3-6.6c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l11.1 19.2c1.1 1.8.4 4.2-1.4 5.3l-11.5 6.6c1 3.1 1.8 6.3 2.5 9.5h13.6c2.1 0 3.8 1.7 3.8 3.8v22.2c0 2.1-1.7 3.8-3.8 3.8h-13.6c-.6 3.1-1.5 6.2-2.5 9.3l11.9 6.8c1.8 1.1 2.5 3.4 1.4 5.2l-11.2 19.5c-1.1 1.8-3.4 2.5-5.2 1.4l-12-7c-2.1 2.4-4.4 4.6-6.7 6.6l7 12.1c.5.9.6 1.9.4 2.9s-.9 1.8-1.8 2.3l-19.2 11.1c-1.8 1.1-4.2.4-5.2-1.4l-7-12.2c-3 1-6 1.8-9.1 2.4v14.1c-.2 2.3-2 4-4.1 4zm-18.4-7.7h14.5v-13.5c0-1.9 1.4-3.5 3.3-3.8 4.7-.7 9.4-2 13.8-3.7 1.8-.7 3.8 0 4.7 1.7l6.7 11.6 12.6-7.3-6.7-11.6c-1-1.6-.5-3.7.9-4.9 3.7-3 7.2-6.4 10.2-10.1 1.2-1.5 3.3-1.8 4.9-.9l11.5 6.6 7.3-12.6-11.3-6.5c-1.6-.9-2.4-3-1.6-4.7 1.8-4.5 3.1-9.2 3.9-14 .3-1.9 1.9-3.2 3.8-3.2h13v-14.6h-12.8c-1.9 0-3.5-1.4-3.8-3.3-.7-4.8-2-9.6-3.7-14.2-.7-1.8 0-3.7 1.7-4.7l10.9-6.3-7.3-12.6-10.8 6.3c-1.6.9-3.7.6-4.9-.9-3.1-3.9-6.6-7.4-10.4-10.6-1.5-1.2-1.9-3.3-.9-4.9l6.2-10.7-12.6-7.3-6.1 10.6c-1 1.6-3 2.3-4.7 1.7-4.6-1.8-9.5-3.1-14.4-3.9-1.9-.3-3.3-1.9-3.3-3.8v-12.2h-14.5v12.3c0 1.9-1.4 3.5-3.3 3.8-5 .8-9.8 2.1-14.4 3.9-1.8.7-3.8 0-4.7-1.7l-6.1-10.6-12.6 7.3 6.2 10.7c.9 1.6.6 3.7-.9 4.9-3.9 3.1-7.4 6.7-10.4 10.6-1.2 1.5-3.3 1.9-4.9.9l-10.8-6.3-7.3 12.6 10.9 6.3c1.6.9 2.3 2.9 1.7 4.7-1.7 4.6-3 9.4-3.7 14.2-.3 1.9-1.9 3.3-3.8 3.3h-12.8v14.5h13c1.9 0 3.5 1.4 3.8 3.2.8 4.8 2.1 9.5 3.9 14 .7 1.8 0 3.8-1.6 4.7l-11.3 6.5 7.3 12.6 11.5-6.6c1.6-.9 3.7-.6 4.9.9 3 3.7 6.5 7.1 10.3 10.1 1.5 1.2 1.9 3.3.9 4.9l-6.7 11.6 12.6 7.3 6.7-11.6c.9-1.6 2.9-2.3 4.7-1.7 4.5 1.7 9.1 2.9 13.8 3.7 1.9.3 3.3 1.9 3.3 3.8z\"></path></g><g><g><g><path d=\"m45.3 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m153.9 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path></g><g><path d=\"m189.3 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.2c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c0 2.1-1.7 3.8-3.8 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m73.3 326.4c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m126 326.4c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m99.7 325.6c-.6 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4s4.1 1.1 4.4 3.2c2.4 16.5 12.3 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m50.2 266.6c-.1 0-.2 0-.3 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.7 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-8.9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.5 2.2zm81.8-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13.1-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.4-.7 2.3-.7z\"></path></g></g></g><g><g><path d=\"m296.1 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m404.7 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path></g><g><path d=\"m440 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.1c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c.2 2.1-1.6 3.8-3.7 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m324 326.3c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m376.7 326.3c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m350.4 325.6c-.5 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4 2.1-.3 4 1.1 4.4 3.2 2.4 16.5 12.4 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m301 266.6c-.1 0-.2 0-.4 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.6 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.4 2.2zm81.7-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.5-.7 2.3-.7z\"></path></g></g></g></g></g></svg>				\n									<h5>\n							et ungt og engageret team						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"496pt\" viewBox=\"0 0 496 496\" width=\"496pt\"><path d=\"m440 328h-28.207031c5.078125-6.703125 8.207031-14.960938 8.207031-24 0-8.824219-7.175781-16-16-16h-12v-19.960938c59.574219-14.445312 104-68.085937 104-132.039062 0-74.992188-61.007812-136-136-136s-136 61.007812-136 136c0 63.953125 44.425781 117.59375 104 132.039062v19.960938h-8.449219c-6.167969 0-12.359375 1.464844-17.886719 4.214844l-50.480468 25.25c-3.320313 1.664062-7.03125 2.535156-10.734375 2.535156h-40.449219v-16h-104v16h56v56h16v-56h16v128h-16v-56h-16v56h-56v16h104v-16h40.449219c3.703125 0 7.414062.871094 10.734375 2.527344l34.488281 17.25c5.519531 2.757812 11.710937 4.222656 17.878906 4.222656h24.449219v24h64v-24h48c13.230469 0 24-10.769531 24-24 0-6.167969-2.40625-11.742188-6.238281-16 3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16 0-13.230469-10.769531-24-24-24zm8 24c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm-208-280c0-66.167969 53.832031-120 120-120s120 53.832031 120 120-53.832031 120-120 120-120-53.832031-120-120zm104 134.976562c5.257812.617188 10.574219 1.023438 16 1.023438s10.742188-.40625 16-1.023438v17.023438h-32zm-40.449219 185.023438c-3.703125 0-7.414062-.871094-10.734375-2.527344l-34.488281-17.25c-5.519531-2.757812-11.710937-4.222656-17.878906-4.222656h-40.449219v-96h40.449219c6.167969 0 12.359375-1.464844 17.886719-4.214844l50.480468-25.25c3.320313-1.664062 7.03125-2.535156 10.734375-2.535156h84.449219c0 13.230469-10.769531 24-24 24h-48.28125l-23.863281 35.808594c-6.101563 9.160156-14.527344 16.589844-24.367188 21.503906-8.753906 4.375-18.542969 6.6875-28.320312 6.6875h-15.167969v16h15.167969c12.246093 0 24.519531-2.894531 35.472656-8.375 12.328125-6.160156 22.878906-15.480469 30.527344-26.945312l6.832031-10.253907v93.574219zm40.449219 24v-136h17.472656c-.898437 2.511719-1.472656 5.183594-1.472656 8 0 6.167969 2.40625 11.742188 6.238281 16-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16 0 10.414062 6.710938 19.214844 16 22.527344v9.472656zm96-24h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8s-3.59375 8-8 8zm0 0\"></path><path d=\"m394.878906 73.007812-7.757812 13.984376c17.816406 9.878906 28.878906 28.664062 28.878906 49.007812h16c0-26.160156-14.222656-50.296875-37.121094-62.992188zm0 0\"></path><path d=\"m360 80c4.734375 0 9.449219.59375 14.007812 1.769531l3.976563-15.503906c-5.855469-1.496094-11.90625-2.265625-17.984375-2.265625zm0 0\"></path><path d=\"m360 48c48.519531 0 88 39.480469 88 88 0 20.753906-7.398438 40.910156-20.832031 56.785156l12.207031 10.34375c15.882812-18.761718 24.625-42.601562 24.625-67.128906 0-57.34375-46.65625-104-104-104-24.527344 0-48.367188 8.753906-67.128906 24.632812l10.335937 12.199219c15.871094-13.433593 36.039063-20.832031 56.792969-20.832031zm0 0\"></path><path d=\"m427.128906 215.367188-10.335937-12.199219c-15.871094 13.433593-36.039063 20.832031-56.792969 20.832031-48.519531 0-88-39.480469-88-88 0-20.753906 7.398438-40.910156 20.832031-56.785156l-12.207031-10.34375c-15.882812 18.761718-24.625 42.601562-24.625 67.128906 0 57.34375 46.65625 104 104 104 24.527344 0 48.367188-8.753906 67.128906-24.632812zm0 0\"></path><path d=\"m121.214844 165.640625c4.953125-1.375 9.695312-3.34375 14.183594-5.878906l9.769531 4.886719 19.472656-19.480469-4.886719-9.769531c2.535156-4.496094 4.503906-9.230469 5.886719-14.183594l10.359375-3.445313v-27.53125l-10.351562-3.453125c-1.375-4.953125-3.34375-9.707031-5.886719-14.183594l4.886719-9.777343-19.472657-19.472657-9.769531 4.886719c-4.484375-2.535156-9.230469-4.503906-14.183594-5.878906l-3.453125-10.359375h-27.539062l-3.445313 10.359375c-4.953125 1.375-9.695312 3.34375-14.183594 5.878906l-9.777343-4.886719-19.472657 19.472657 4.886719 9.777343c-2.535156 4.488282-4.503906 9.230469-5.886719 14.183594l-10.351562 3.445313v27.53125l10.351562 3.453125c1.375 4.953125 3.34375 9.695312 5.886719 14.183594l-4.886719 9.769531 19.472657 19.480469 9.769531-4.886719c4.484375 2.535156 9.230469 4.503906 14.183594 5.878906l3.453125 10.359375h27.539062zm-12.304688-13.679687-2.679687 8.039062h-4.460938l-2.679687-8.039062-4.554688-.90625c-6.128906-1.222657-11.878906-3.605469-17.109375-7.09375l-3.867187-2.578126-7.574219 3.800782-3.160156-3.167969 3.792969-7.582031-2.578126-3.859375c-3.488281-5.222657-5.871093-10.980469-7.09375-17.109375l-.914062-4.554688-8.03125-2.679687v-4.46875l8.03125-2.671875.914062-4.554688c1.222657-6.136718 3.613282-11.886718 7.09375-17.109375l2.578126-3.859375-3.792969-7.589844 3.160156-3.160156 7.574219 3.800782 3.867187-2.578126c5.222657-3.488281 10.980469-5.863281 17.109375-7.09375l4.554688-.90625 2.679687-8.039062h4.460938l2.679687 8.039062 4.554688.90625c6.128906 1.222657 11.878906 3.605469 17.109375 7.09375l3.867187 2.578126 7.574219-3.800782 3.160156 3.160156-3.792969 7.589844 2.578126 3.859375c3.488281 5.214844 5.871093 10.972657 7.09375 17.109375l.914062 4.554688 8.03125 2.679687v4.46875l-8.03125 2.671875-.914062 4.554688c-1.222657 6.128906-3.613282 11.878906-7.09375 17.109375l-2.578126 3.859375 3.792969 7.582031-3.160156 3.167969-7.574219-3.800782-3.867187 2.578126c-5.222657 3.488281-10.980469 5.863281-17.109375 7.09375zm0 0\"></path><path d=\"m104 72c-17.648438 0-32 14.351562-32 32s14.351562 32 32 32 32-14.351562 32-32-14.351562-32-32-32zm0 48c-8.824219 0-16-7.175781-16-16s7.175781-16 16-16 16 7.175781 16 16-7.175781 16-16 16zm0 0\"></path><path d=\"m160 248v-40h48v-208h-208v208h106.664062zm-144-232h176v176h-48v24l-32-24h-96zm0 0\"></path><path d=\"m0 272h16v16h-16zm0 0\"></path><path d=\"m32 272h16v16h-16zm0 0\"></path><path d=\"m64 272h16v16h-16zm0 0\"></path><path d=\"m32 304h16v16h-16zm0 0\"></path><path d=\"m64 304h16v16h-16zm0 0\"></path><path d=\"m0 480h16v16h-16zm0 0\"></path><path d=\"m32 480h16v16h-16zm0 0\"></path><path d=\"m64 480h16v16h-16zm0 0\"></path><path d=\"m32 448h16v16h-16zm0 0\"></path><path d=\"m64 448h16v16h-16zm0 0\"></path></svg>				\n									<h5>\n							fokus på kvalitet og detaljer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m469.12 408.93-67.26-33.63v-22.13c10.71-7.69 18.6-19.07 21.78-32.27h5.28c8.81 0 15.98-7.17 15.98-15.98v-5.29c0-6.35-3.74-11.84-9.12-14.41 5.19-18.64-1.65-39.76-19.44-59.78-12.58-14.16-30.67-22.27-49.62-22.27-18.93 0-37.01 8.12-49.59 22.27-13.38 15.05-20.95 41.01-14.03 59.62-5.56 2.5-9.45 8.09-9.45 14.57v5.29c0 8.81 7.17 15.98 15.98 15.98h5.55c3.16 13.09 10.94 24.39 21.51 32.08v22.32l-67.26 33.63c-16.7 5.87-27.89 21.6-27.89 39.28v41.63c0 3.31 2.69 6 6 6h243.46c3.31 0 6-2.69 6-6v-41.63c0-17.68-11.19-33.41-27.88-39.28zm-62.24-17.7-15.83 27.66-13.29-13.29 19.29-19.29zm-37.61 5.88-20.59-20.58v-16.91c6.41 2.57 13.4 4.01 20.72 4.01 7.22 0 14.11-1.39 20.45-3.9v16.8zm63.63-97.48v5.29c0 2.16-1.82 3.98-3.98 3.98h-3.74c.01-.36.03-.71.03-1.07v-12.18h3.71c2.15-.01 3.98 1.82 3.98 3.98zm-119.29 8.2v1.07h-3.98c-2.16 0-3.98-1.82-3.98-3.98v-5.29c0-2.16 1.82-3.98 3.98-3.98l3.98.22zm1.95-24.19c-7.33-13.69-.89-37.39 10.53-50.24 10.31-11.6 25.12-18.25 40.63-18.25 15.52 0 30.34 6.65 40.65 18.25 8.43 9.48 21.3 27.59 17.4 46.39-5.66-.35-10.67-2.55-14.4-6.36-5.37-5.49-7.72-14-6.63-23.94.29-2.62-1.17-5.13-3.6-6.17s-5.25-.37-6.95 1.65c-19.33 22.92-45.95 36.76-73.9 38.68h-3.73zm10.05 24.19v-12.73c24.57-2.92 47.92-14.05 66.73-31.8 1.43 7.26 4.63 13.6 9.45 18.52 3.27 3.35 7.14 5.89 11.41 7.58v18.42c0 24.15-19.65 43.8-43.8 43.8s-43.79-19.64-43.79-43.79zm15.89 78.48 19.29 19.29-13.29 13.29-15.84-27.66zm3.22 97.53h-39.42v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.76v-35.63c0-12.68 8.1-23.95 20.15-28.05.26-.09.51-.19.75-.31l46.47-23.23 20.07 35.06c.93 1.62 2.56 2.72 4.41 2.97.27.04.53.05.79.05 1.58 0 3.11-.62 4.24-1.76l.14-.14zm12.08 0 7.41-64.69 5.06-5.06 4.84 4.84 7.86 64.92h-25.17zm128.2 0h-39.76v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.18l-6.2-51.17.25.25c1.13 1.13 2.66 1.76 4.24 1.76.26 0 .53-.02.79-.05 1.85-.25 3.48-1.34 4.41-2.97l20.07-35.06 46.47 23.23c.24.12.49.23.75.31 12.05 4.1 20.15 15.38 20.15 28.05v35.65zm-67.04-346.65h-10.84l28.38 39.84 28.38-39.84h-10.84c-3.31 0-6-2.69-6-6v-64.58h-98.7c-3.31 0-6-2.69-6-6s2.69-6 6-6h104.7c3.31 0 6 2.69 6 6v64.58h16.48c2.25 0 4.3 1.25 5.33 3.25s.86 4.4-.45 6.23l-40.02 56.18c-1.13 1.58-2.95 2.52-4.89 2.52s-3.76-.94-4.89-2.52l-40.02-56.18c-1.3-1.83-1.48-4.23-.45-6.23s3.09-3.25 5.33-3.25h16.48v-23.5h-65.38c-3.31 0-6-2.69-6-6s2.69-6 6-6h71.38c3.31 0 6 2.69 6 6v35.5c.02 3.31-2.67 6-5.98 6zm-118.44 50.65v-133.26c0-21.18-17.23-38.41-38.41-38.41h-207.7c-21.18-.01-38.41 17.23-38.41 38.41v133.26c0 21.18 17.23 38.41 38.41 38.41h105.8l64.8 55.11c1.11.94 2.49 1.43 3.89 1.43.85 0 1.71-.18 2.52-.55 2.12-.98 3.48-3.11 3.48-5.45v-50.54h27.21c21.18 0 38.41-17.23 38.41-38.41zm-71.62 26.41c-3.31 0-6 2.69-6 6v43.56l-56.59-48.13c-1.08-.92-2.46-1.43-3.89-1.43h-108.01c-14.56 0-26.41-11.85-26.41-26.41v-133.26c0-14.56 11.85-26.41 26.41-26.41h207.69c14.56 0 26.41 11.85 26.41 26.41v133.26c0 14.56-11.85 26.41-26.41 26.41zm-156.34-87.87h56.97c3.31 0 6-2.69 6-6v-39.2l8.55-8.55c2.34-2.34 2.34-6.14 0-8.49-2.34-2.34-6.14-2.34-8.48 0l-.7.7c-.98-1.97-3.01-3.32-5.36-3.32h-56.98c-3.31 0-6 2.69-6 6v52.85c0 3.32 2.69 6.01 6 6.01zm6-52.86h44.97v2.69l-18.16 18.16-8.84-8.84c-2.34-2.34-6.14-2.34-8.49 0-2.34 2.34-2.34 6.14 0 8.49l13.08 13.08c1.17 1.17 2.71 1.76 4.24 1.76s3.07-.59 4.24-1.76l13.92-13.92v21.2h-44.96zm173.62 3.08c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 31.92c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 36.52c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.68 5.99 6zm0 31.92c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.69 5.99 6zm-119.36 165.01h10.84l-28.38-39.84-28.38 39.84h10.84c3.31 0 6 2.69 6 6v64.58h98.7c3.31 0 6 2.69 6 6s-2.69 6-6 6h-104.69c-3.31 0-6-2.69-6-6v-64.58h-16.48c-2.25 0-4.3-1.25-5.33-3.25s-.86-4.4.45-6.23l40.02-56.18c1.13-1.58 2.95-2.52 4.89-2.52s3.76.94 4.89 2.52l40.02 56.18c1.3 1.83 1.48 4.23.45 6.23s-3.09 3.25-5.33 3.25h-16.48v23.5h65.38c3.31 0 6 2.69 6 6s-2.69 6-6 6h-71.38c-3.31 0-6-2.69-6-6v-35.5c-.03-3.31 2.66-6 5.97-6z\"></path></svg>				\n									<h5>\n							ærlig<br> rådgivning						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 510 510\"><path d=\"m192.036 385.845c-4.787-46.972-19.459-64.336-30.658-82.352-8.672-13.951-15.5-28.245-15.5-54.252 0-60.242 48.865-109.109 109.135-109.109 60.242 0 109.109 48.866 109.109 109.109 0 26.007-6.828 40.301-15.5 54.252-11.199 18.016-25.871 35.38-30.658 82.352 9.985 2.864 17.345 12.101 17.345 22.975v36.44c0 13.109-10.747 23.866-23.893 23.866h-10.334v9.945c0 12.588-10.341 22.929-22.93 22.929h-46.304c-12.589 0-22.93-10.341-22.93-22.929v-9.945h-10.334c-13.146 0-23.893-10.757-23.893-23.866v-36.44c0-10.874 7.36-20.111 17.345-22.975zm111.948-.917c4.199-42.194 15.78-62.332 26.488-79.049 10.147-15.842 19.65-28.207 19.65-56.638 0-52.513-42.597-95.109-95.109-95.109-52.537 0-95.135 42.596-95.135 95.109 0 28.431 9.503 40.796 19.65 56.638 10.708 16.717 22.289 36.855 26.488 79.049zm2.554-78.61c-1.175 13.701-11.985 24.191-24.783 24.191-13.527 0-24.862-12.086-24.862-26.673v-99.328c0-14.12 11.335-26.673 24.862-26.673 11.309 0 21.031 8.139 23.975 19.497 9.12 3.904 15.688 13.438 15.688 24.78 0 1.153-.068 2.289-.201 3.403 5.078 5.326 8.283 12.802 8.283 21.117 0 6.39-1.889 12.262-5.06 17.053 1.996 4.099 3.13 8.773 3.13 13.76 0 14.1-9.065 25.697-21.032 28.873zm-16.452-109.977c-1.964-2.729-4.916-4.506-8.331-4.506-6.192 0-10.862 6.21-10.862 12.673v99.328c0 6.677 4.67 12.673 10.862 12.673 5.516 0 9.822-4.614 10.717-10.425-4.709-1.416-8.923-4.144-12.279-7.814-2.607-2.852-2.409-7.283.443-9.89 2.851-2.607 7.282-2.408 9.889.443 2.416 2.642 5.72 4.356 9.402 4.356 7.733 0 13.643-7.218 13.643-15.734s-5.91-15.734-13.643-15.734c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7 5.352 0 10.388 1.655 14.658 4.533.593-1.743.915-3.634.915-5.612 0-2.11-.366-4.128-1.036-5.972-.769.858-1.588 1.66-2.453 2.397-2.94 2.507-7.361 2.156-9.869-.784-2.507-2.939-2.155-7.361.784-9.868 2.773-2.365 4.492-6.122 4.492-10.293 0-6.072-3.705-11.374-8.898-12.467-.154-.023-.307-.052-.458-.085-.499-.08-1.01-.121-1.532-.121-2.947 0-5.591 1.389-7.515 3.525-2.585 2.87-7.015 3.101-9.886.515-2.87-2.586-3.101-7.015-.515-9.886 3.111-3.453 7.059-5.988 11.472-7.252zm-104.526 67.344c-3.171-4.791-5.06-10.663-5.06-17.053 0-8.307 3.198-15.777 8.284-21.104-.133-1.118-.202-2.258-.202-3.416 0-11.354 6.582-20.897 15.717-24.792 2.948-11.354 12.67-19.485 23.946-19.485 13.56 0 24.888 12.555 24.888 26.673v99.328c0 14.585-11.328 26.673-24.888 26.673-12.765 0-23.578-10.484-24.757-24.184-11.98-3.166-21.058-14.769-21.058-28.88 0-4.987 1.134-9.661 3.13-13.76zm9.982-23.036c-.675 1.847-1.042 3.869-1.042 5.983 0 1.978.322 3.869.915 5.612 4.27-2.878 9.306-4.533 14.658-4.533 3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7-7.733 0-13.643 7.218-13.643 15.734s5.91 15.734 13.643 15.734c3.682 0 6.986-1.714 9.402-4.356 2.607-2.851 7.038-3.05 9.889-.443 2.852 2.607 3.05 7.038.443 9.89-3.35 3.664-7.556 6.389-12.255 7.807.891 5.813 5.192 10.432 10.693 10.432 6.21 0 10.888-5.993 10.888-12.673v-99.328c0-6.466-4.678-12.673-10.888-12.673-3.404 0-6.349 1.777-8.309 4.507 4.421 1.264 8.367 3.8 11.476 7.251 2.586 2.871 2.355 7.3-.516 9.886-2.87 2.586-7.3 2.355-9.886-.515-1.926-2.138-4.574-3.525-7.54-3.525-.493 0-.976.037-1.448.108-.196.045-.395.082-.596.11-5.165 1.118-8.844 6.404-8.844 12.455 0 1.243.153 2.45.442 3.594.101.284.183.572.246.862.748 2.326 2.071 4.346 3.814 5.823 2.947 2.498 3.311 6.919.813 9.866s-6.919 3.312-9.866.814c-.878-.745-1.71-1.554-2.489-2.422zm3.042 158.279c-5.442 0-9.893 4.451-9.893 9.892v36.44c0 5.423 4.454 9.866 9.893 9.866h17.334c3.866 0 7 3.134 7 7v16.945c0 4.902 4.027 8.929 8.93 8.929h46.304c4.903 0 8.93-4.027 8.93-8.929v-16.945c0-3.866 3.134-7 7-7h17.334c5.439 0 9.893-4.443 9.893-9.866v-36.44c0-5.441-4.451-9.892-9.893-9.892zm63.416-314.093 2.907-5.412c1.828-3.403 6.075-4.683 9.479-2.854 3.403 1.828 4.682 6.075 2.854 9.479l-16.073 29.925c-1.22 2.271-3.589 3.688-6.167 3.688s-4.947-1.417-6.167-3.688l-16.073-29.925c-1.828-3.404-.549-7.651 2.854-9.479 3.404-1.829 7.651-.549 9.479 2.854l2.907 5.412v-69.835c0-3.863 3.137-7 7-7s7 3.137 7 7zm-132.198 54.758-49.381-49.381c-2.732-2.731-2.732-7.167 0-9.899s7.168-2.732 9.9 0l49.38 49.38-1.771-5.881c-1.114-3.7.985-7.608 4.684-8.722 3.7-1.114 7.607.985 8.721 4.685l9.796 32.526c.743 2.468.069 5.145-1.753 6.968-1.823 1.823-4.5 2.496-6.969 1.753l-32.526-9.795c-3.699-1.114-5.798-5.022-4.684-8.721s5.022-5.798 8.721-4.684zm-44.859 122.299h-69.835c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7h69.835l-5.412-2.907c-3.403-1.828-4.682-6.076-2.854-9.479 1.828-3.404 6.075-4.683 9.479-2.855l29.926 16.074c2.271 1.22 3.688 3.589 3.688 6.167 0 2.577-1.417 4.947-3.688 6.166l-29.926 16.074c-3.404 1.828-7.651.549-9.479-2.855-1.828-3.403-.549-7.651 2.854-9.479zm54.758 118.198-49.38 49.38c-2.732 2.732-7.168 2.732-9.9 0s-2.732-7.167 0-9.899l49.381-49.381-5.882 1.772c-3.699 1.114-7.607-.985-8.721-4.685-1.114-3.699.985-7.607 4.684-8.721l32.526-9.795c2.469-.743 5.146-.07 6.969 1.753 1.822 1.823 2.496 4.5 1.753 6.968l-9.796 32.527c-1.114 3.699-5.021 5.798-8.721 4.684-3.699-1.114-5.798-5.022-4.684-8.721zm240.497-240.497 5.882-1.771c3.699-1.114 7.607.985 8.721 4.684s-.985 7.607-4.684 8.721l-32.526 9.795c-2.469.743-5.146.07-6.969-1.753-1.822-1.823-2.496-4.5-1.753-6.968l9.796-32.526c1.114-3.7 5.021-5.799 8.721-4.685 3.699 1.114 5.798 5.022 4.684 8.722l-1.771 5.881 49.38-49.38c2.732-2.732 7.168-2.732 9.9 0s2.732 7.168 0 9.899zm44.859 122.299 5.412 2.906c3.403 1.828 4.682 6.076 2.854 9.479-1.828 3.404-6.075 4.683-9.479 2.855l-29.926-16.074c-2.271-1.219-3.688-3.589-3.688-6.166 0-2.578 1.417-4.947 3.688-6.167l29.926-16.074c3.404-1.828 7.651-.549 9.479 2.855 1.828 3.403.549 7.651-2.854 9.479l-5.412 2.907h69.835c3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7zm-54.758 118.198 1.771 5.882c1.114 3.699-.985 7.607-4.684 8.721-3.7 1.114-7.607-.985-8.721-4.684l-9.796-32.527c-.743-2.468-.069-5.145 1.753-6.968 1.823-1.823 4.5-2.496 6.969-1.753l32.526 9.795c3.699 1.114 5.798 5.022 4.684 8.721-1.114 3.7-5.022 5.799-8.721 4.685l-5.882-1.772 49.381 49.381c2.732 2.732 2.732 7.167 0 9.899s-7.168 2.732-9.9 0z\"></path></svg>				\n									<h5>\n							gennemtænkte løsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"outline\"><path d=\"M486.41,144A28,28,0,0,0,472,92H349.123l5.457-21.828a48.513,48.513,0,0,0-12.848-46.153A41.035,41.035,0,0,0,312.609,12H308a8.009,8.009,0,0,0-8,8V47.413l-19.233,64.112A17.376,17.376,0,0,1,268,123.539V112a4,4,0,0,0-4-4H152a4,4,0,0,0-4,4v72a4,4,0,0,0,8,0V116h72V276H156V248a4,4,0,0,0-8,0v32a4,4,0,0,0,4,4H264a4,4,0,0,0,4-4V268.5h11.168A37.07,37.07,0,0,1,305.092,279a45.025,45.025,0,0,0,31.48,12.752L440,292a27.987,27.987,0,0,0,19.369-48.2,27.987,27.987,0,0,0,16-48A28,28,0,0,0,486.41,144ZM260,276H236V116h24Zm212-88H396a4,4,0,0,0,0,8h60a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h40a20,20,0,0,1,.01,40l-103.428-.25a37.07,37.07,0,0,1-25.924-10.5,45.031,45.031,0,0,0-31.49-12.752H268V131.686a25.317,25.317,0,0,0,20.429-17.862l19.4-64.675A4,4,0,0,0,308,48V20h4.609a33.082,33.082,0,0,1,23.481,9.69,40.507,40.507,0,0,1,10.728,38.541l-6.7,26.8A4,4,0,0,0,344,100H472a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h72a20,20,0,0,1,0,40Z\"></path><path d=\"M194.5,183.243l-1.9-.217a4,4,0,0,0-4.169,2.491L184.29,195.9H135.278l-3.539-9.317a4,4,0,0,0-7.478,2.84l2.459,6.477h-8.474L68.452,156.872a4,4,0,1,0-4.935,6.3L77.6,174.209,56.961,194.48l-6.636-5.491a4,4,0,1,0-5.1,6.163L87.219,229.9a44.1,44.1,0,0,0,28.05,10.1H212a8.009,8.009,0,0,0,8-8V203.9a8.009,8.009,0,0,0-8-8h-8v-2.01A10.708,10.708,0,0,0,194.5,183.243ZM212,203.9V232H115.269a36.081,36.081,0,0,1-22.951-8.264l-29.16-24.128,20.8-20.422L114.4,203.045a4,4,0,0,0,2.468.852H187a4,4,0,0,0,3.715-2.517l3.929-9.843a2.712,2.712,0,0,1,1.356,2.35v6.01a4,4,0,0,0,4,4Z\"></path><path d=\"M223.084,484.672,200.87,469.863V346.36A44.1,44.1,0,0,0,195.327,325l-17.183-30.94a4,4,0,0,0-7,3.884l17.184,30.94a36.073,36.073,0,0,1,4.537,17.478V468H164.333a4,4,0,1,0,0,8h31.321l12,8H152.865V352a4,4,0,0,0-.358-1.655l-25.454-56A4,4,0,0,0,123.411,292H114.2a4,4,0,0,0-3.945,4.658l8.862,53.175a36.016,36.016,0,0,1-1.951,18.949L78.642,468H48.333a4,4,0,1,0,0,8H80.377L92,484H32.088L76.63,361.366a4.017,4.017,0,0,0,.183-2.044L61.1,268H136a4,4,0,0,0,0-8H59.233L30.555,173.966A19.723,19.723,0,0,1,49.27,148H76a12,12,0,0,0,24,0h15.2a21.975,21.975,0,0,1,8.395,1.652l10.889,4.458a4,4,0,1,0,3.032-7.4L126.63,142.25A29.938,29.938,0,0,0,115.2,140H100v-4.527A16.014,16.014,0,0,0,112,120V103.473A16.014,16.014,0,0,0,124,88V80a4,4,0,0,0-4-4H90A22.025,22.025,0,0,0,68,98v18a12.02,12.02,0,0,0,8,11.314V140H49.27a27.723,27.723,0,0,0-26.305,36.5l29.493,88.482,16.29,94.655-46.128,127A4,4,0,0,0,26.38,492h78.485a4,4,0,0,0,2.268-7.3L86.3,470.368l38.318-98.69a44.018,44.018,0,0,0,2.385-23.16L118.921,300h1.914l24.03,52.867V488a4,4,0,0,0,4,4h72a4,4,0,0,0,2.219-7.328ZM76,98A14.015,14.015,0,0,1,90,84h26v4a8.009,8.009,0,0,1-8,8H92a4,4,0,0,0-4,4,11.962,11.962,0,0,1-1.53,5.881A12.044,12.044,0,0,0,76,104.686Zm4,14a3.981,3.981,0,0,1,3.407,1.9,4,4,0,0,0,5.956.975c.207-.171.7-.648.7-.648.032-.028.061-.057.09-.087A19.907,19.907,0,0,0,95.6,104H104v16a8.009,8.009,0,0,1-8,8,12.133,12.133,0,0,1-2.681-.3,4,4,0,1,0-1.775,7.8c.151.035.3.06.456.091V148a4,4,0,1,1-8,0V124a4,4,0,0,0-4-4,4,4,0,0,1,0-8Z\"></path></g></svg>				\n									<h5>\n							arbejde udført med ansvar						\n					</h5>\n				<p>Vi lover ikke mere, end vi kan holde – men vi holder det, vi lover.</p>			<h2>KONTAKT OS</h2>		<p>Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.</p>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-14 10:57:54', '2026-02-14 10:57:54', '', 10, 'https://mrarif.me/cpnordic/?p=723', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(724, 1, '2026-02-14 10:57:54', '2026-02-14 10:57:54', '<h1>CP NORDIC ApS</h1>					<h4>Byggeri – Tømrerarbejde og tagdækning</h4>										<a href=\"https://mrarif.me/cpnordic/kontakt/\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"https://mrarif.me/cpnordic/om-os/\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"https://mrarif.me/cpnordic/tomrerarbejde/\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>								<a href=\"https://mrarif.me/cpnordic/tagdaekning/\">\n									Lær mere\n					</a>\n									<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle ANMELDELSER\n					</a>\n					<h2>HVORFOR VÆLGE CP NORDIC ApS?</h2>		<p>Når du vælger CP NORDIC ApS, får du:</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 450 450\" width=\"512\"><g><g><path d=\"m225 165.2c-25.9 0-48.9-18.8-53.3-45.2-2.4-14.2.9-28.6 9.3-40.3 8.4-11.8 20.9-19.5 35.1-21.9 29.4-4.9 57.3 15 62.2 44.5 4.9 29.4-15 57.3-44.4 62.2-3 .5-6 .7-8.9.7zm-7.6-99.8c-12.2 2-22.9 8.7-30.1 18.8s-10.1 22.4-8 34.6c3.8 22.7 23.5 38.8 45.7 38.8 2.5 0 5.1-.2 7.6-.6 25.2-4.2 42.3-28.1 38.1-53.4s-28.1-42.4-53.3-38.2z\"></path><path d=\"m255.2 115c-2.1 0-3.8-1.7-3.8-3.8 0-14.6-11.8-26.4-26.4-26.4-2.1 0-3.8-1.7-3.8-3.8s1.7-3.8 3.8-3.8c18.8 0 34.1 15.3 34.1 34.1 0 2-1.8 3.7-3.9 3.7z\"></path><path d=\"m236.1 203h-22.2c-2.1 0-3.8-1.7-3.8-3.8v-14.1c-3.1-.6-6.1-1.4-9.1-2.4l-7 12.2c-1.1 1.8-3.4 2.5-5.3 1.4l-19.2-11.1c-.9-.5-1.5-1.4-1.8-2.3-.3-1-.1-2 .4-2.9l7-12.1c-2.4-2.1-4.6-4.3-6.7-6.6l-12.1 7c-1.8 1.1-4.2.4-5.2-1.4l-11.1-19.2c-1.1-1.8-.4-4.2 1.4-5.2l11.9-6.8c-1-3-1.9-6.1-2.6-9.3h-13.7c-2.1 0-3.8-1.7-3.8-3.8v-22.2c0-2.1 1.7-3.8 3.8-3.8h13.4c.6-3.2 1.4-6.4 2.4-9.5l-11.5-6.6c-1.8-1.1-2.5-3.4-1.4-5.3l11.1-19.6c.5-.9 1.4-1.5 2.3-1.8s2-.1 2.9.4l11.3 6.6c2.2-2.5 4.5-4.8 7-7l-6.5-11.3c-.5-.9-.6-1.9-.4-2.9.3-1 .9-1.8 1.8-2.3l19.2-11.1c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l6.4 11.2c3.1-1.1 6.4-1.9 9.7-2.6v-13c0-2.1 1.7-3.8 3.8-3.8h22.2c2.1 0 3.8 1.7 3.8 3.8v12.8c3.3.7 6.5 1.5 9.7 2.6l6.5-11.2c.5-.9 1.4-1.5 2.3-1.8 1-.3 2-.1 2.9.4l19.2 11.1c.9.5 1.5 1.3 1.8 2.3s.1 2-.4 2.9l-6.5 11.3c2.5 2.2 4.8 4.5 7 7.1l11.3-6.6c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l11.1 19.2c1.1 1.8.4 4.2-1.4 5.3l-11.5 6.6c1 3.1 1.8 6.3 2.5 9.5h13.6c2.1 0 3.8 1.7 3.8 3.8v22.2c0 2.1-1.7 3.8-3.8 3.8h-13.6c-.6 3.1-1.5 6.2-2.5 9.3l11.9 6.8c1.8 1.1 2.5 3.4 1.4 5.2l-11.2 19.5c-1.1 1.8-3.4 2.5-5.2 1.4l-12-7c-2.1 2.4-4.4 4.6-6.7 6.6l7 12.1c.5.9.6 1.9.4 2.9s-.9 1.8-1.8 2.3l-19.2 11.1c-1.8 1.1-4.2.4-5.2-1.4l-7-12.2c-3 1-6 1.8-9.1 2.4v14.1c-.2 2.3-2 4-4.1 4zm-18.4-7.7h14.5v-13.5c0-1.9 1.4-3.5 3.3-3.8 4.7-.7 9.4-2 13.8-3.7 1.8-.7 3.8 0 4.7 1.7l6.7 11.6 12.6-7.3-6.7-11.6c-1-1.6-.5-3.7.9-4.9 3.7-3 7.2-6.4 10.2-10.1 1.2-1.5 3.3-1.8 4.9-.9l11.5 6.6 7.3-12.6-11.3-6.5c-1.6-.9-2.4-3-1.6-4.7 1.8-4.5 3.1-9.2 3.9-14 .3-1.9 1.9-3.2 3.8-3.2h13v-14.6h-12.8c-1.9 0-3.5-1.4-3.8-3.3-.7-4.8-2-9.6-3.7-14.2-.7-1.8 0-3.7 1.7-4.7l10.9-6.3-7.3-12.6-10.8 6.3c-1.6.9-3.7.6-4.9-.9-3.1-3.9-6.6-7.4-10.4-10.6-1.5-1.2-1.9-3.3-.9-4.9l6.2-10.7-12.6-7.3-6.1 10.6c-1 1.6-3 2.3-4.7 1.7-4.6-1.8-9.5-3.1-14.4-3.9-1.9-.3-3.3-1.9-3.3-3.8v-12.2h-14.5v12.3c0 1.9-1.4 3.5-3.3 3.8-5 .8-9.8 2.1-14.4 3.9-1.8.7-3.8 0-4.7-1.7l-6.1-10.6-12.6 7.3 6.2 10.7c.9 1.6.6 3.7-.9 4.9-3.9 3.1-7.4 6.7-10.4 10.6-1.2 1.5-3.3 1.9-4.9.9l-10.8-6.3-7.3 12.6 10.9 6.3c1.6.9 2.3 2.9 1.7 4.7-1.7 4.6-3 9.4-3.7 14.2-.3 1.9-1.9 3.3-3.8 3.3h-12.8v14.5h13c1.9 0 3.5 1.4 3.8 3.2.8 4.8 2.1 9.5 3.9 14 .7 1.8 0 3.8-1.6 4.7l-11.3 6.5 7.3 12.6 11.5-6.6c1.6-.9 3.7-.6 4.9.9 3 3.7 6.5 7.1 10.3 10.1 1.5 1.2 1.9 3.3.9 4.9l-6.7 11.6 12.6 7.3 6.7-11.6c.9-1.6 2.9-2.3 4.7-1.7 4.5 1.7 9.1 2.9 13.8 3.7 1.9.3 3.3 1.9 3.3 3.8z\"></path></g><g><g><g><path d=\"m45.3 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m153.9 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path></g><g><path d=\"m189.3 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.2c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c0 2.1-1.7 3.8-3.8 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m73.3 326.4c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m126 326.4c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m99.7 325.6c-.6 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4s4.1 1.1 4.4 3.2c2.4 16.5 12.3 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m50.2 266.6c-.1 0-.2 0-.3 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.7 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-8.9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.5 2.2zm81.8-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13.1-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.4-.7 2.3-.7z\"></path></g></g></g><g><g><path d=\"m296.1 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m404.7 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path></g><g><path d=\"m440 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.1c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c.2 2.1-1.6 3.8-3.7 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m324 326.3c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m376.7 326.3c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m350.4 325.6c-.5 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4 2.1-.3 4 1.1 4.4 3.2 2.4 16.5 12.4 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m301 266.6c-.1 0-.2 0-.4 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.6 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.4 2.2zm81.7-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.5-.7 2.3-.7z\"></path></g></g></g></g></g></svg>				\n									<h5>\n							et ungt og engageret team						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"496pt\" viewBox=\"0 0 496 496\" width=\"496pt\"><path d=\"m440 328h-28.207031c5.078125-6.703125 8.207031-14.960938 8.207031-24 0-8.824219-7.175781-16-16-16h-12v-19.960938c59.574219-14.445312 104-68.085937 104-132.039062 0-74.992188-61.007812-136-136-136s-136 61.007812-136 136c0 63.953125 44.425781 117.59375 104 132.039062v19.960938h-8.449219c-6.167969 0-12.359375 1.464844-17.886719 4.214844l-50.480468 25.25c-3.320313 1.664062-7.03125 2.535156-10.734375 2.535156h-40.449219v-16h-104v16h56v56h16v-56h16v128h-16v-56h-16v56h-56v16h104v-16h40.449219c3.703125 0 7.414062.871094 10.734375 2.527344l34.488281 17.25c5.519531 2.757812 11.710937 4.222656 17.878906 4.222656h24.449219v24h64v-24h48c13.230469 0 24-10.769531 24-24 0-6.167969-2.40625-11.742188-6.238281-16 3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16 0-13.230469-10.769531-24-24-24zm8 24c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm-208-280c0-66.167969 53.832031-120 120-120s120 53.832031 120 120-53.832031 120-120 120-120-53.832031-120-120zm104 134.976562c5.257812.617188 10.574219 1.023438 16 1.023438s10.742188-.40625 16-1.023438v17.023438h-32zm-40.449219 185.023438c-3.703125 0-7.414062-.871094-10.734375-2.527344l-34.488281-17.25c-5.519531-2.757812-11.710937-4.222656-17.878906-4.222656h-40.449219v-96h40.449219c6.167969 0 12.359375-1.464844 17.886719-4.214844l50.480468-25.25c3.320313-1.664062 7.03125-2.535156 10.734375-2.535156h84.449219c0 13.230469-10.769531 24-24 24h-48.28125l-23.863281 35.808594c-6.101563 9.160156-14.527344 16.589844-24.367188 21.503906-8.753906 4.375-18.542969 6.6875-28.320312 6.6875h-15.167969v16h15.167969c12.246093 0 24.519531-2.894531 35.472656-8.375 12.328125-6.160156 22.878906-15.480469 30.527344-26.945312l6.832031-10.253907v93.574219zm40.449219 24v-136h17.472656c-.898437 2.511719-1.472656 5.183594-1.472656 8 0 6.167969 2.40625 11.742188 6.238281 16-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16 0 10.414062 6.710938 19.214844 16 22.527344v9.472656zm96-24h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8s-3.59375 8-8 8zm0 0\"></path><path d=\"m394.878906 73.007812-7.757812 13.984376c17.816406 9.878906 28.878906 28.664062 28.878906 49.007812h16c0-26.160156-14.222656-50.296875-37.121094-62.992188zm0 0\"></path><path d=\"m360 80c4.734375 0 9.449219.59375 14.007812 1.769531l3.976563-15.503906c-5.855469-1.496094-11.90625-2.265625-17.984375-2.265625zm0 0\"></path><path d=\"m360 48c48.519531 0 88 39.480469 88 88 0 20.753906-7.398438 40.910156-20.832031 56.785156l12.207031 10.34375c15.882812-18.761718 24.625-42.601562 24.625-67.128906 0-57.34375-46.65625-104-104-104-24.527344 0-48.367188 8.753906-67.128906 24.632812l10.335937 12.199219c15.871094-13.433593 36.039063-20.832031 56.792969-20.832031zm0 0\"></path><path d=\"m427.128906 215.367188-10.335937-12.199219c-15.871094 13.433593-36.039063 20.832031-56.792969 20.832031-48.519531 0-88-39.480469-88-88 0-20.753906 7.398438-40.910156 20.832031-56.785156l-12.207031-10.34375c-15.882812 18.761718-24.625 42.601562-24.625 67.128906 0 57.34375 46.65625 104 104 104 24.527344 0 48.367188-8.753906 67.128906-24.632812zm0 0\"></path><path d=\"m121.214844 165.640625c4.953125-1.375 9.695312-3.34375 14.183594-5.878906l9.769531 4.886719 19.472656-19.480469-4.886719-9.769531c2.535156-4.496094 4.503906-9.230469 5.886719-14.183594l10.359375-3.445313v-27.53125l-10.351562-3.453125c-1.375-4.953125-3.34375-9.707031-5.886719-14.183594l4.886719-9.777343-19.472657-19.472657-9.769531 4.886719c-4.484375-2.535156-9.230469-4.503906-14.183594-5.878906l-3.453125-10.359375h-27.539062l-3.445313 10.359375c-4.953125 1.375-9.695312 3.34375-14.183594 5.878906l-9.777343-4.886719-19.472657 19.472657 4.886719 9.777343c-2.535156 4.488282-4.503906 9.230469-5.886719 14.183594l-10.351562 3.445313v27.53125l10.351562 3.453125c1.375 4.953125 3.34375 9.695312 5.886719 14.183594l-4.886719 9.769531 19.472657 19.480469 9.769531-4.886719c4.484375 2.535156 9.230469 4.503906 14.183594 5.878906l3.453125 10.359375h27.539062zm-12.304688-13.679687-2.679687 8.039062h-4.460938l-2.679687-8.039062-4.554688-.90625c-6.128906-1.222657-11.878906-3.605469-17.109375-7.09375l-3.867187-2.578126-7.574219 3.800782-3.160156-3.167969 3.792969-7.582031-2.578126-3.859375c-3.488281-5.222657-5.871093-10.980469-7.09375-17.109375l-.914062-4.554688-8.03125-2.679687v-4.46875l8.03125-2.671875.914062-4.554688c1.222657-6.136718 3.613282-11.886718 7.09375-17.109375l2.578126-3.859375-3.792969-7.589844 3.160156-3.160156 7.574219 3.800782 3.867187-2.578126c5.222657-3.488281 10.980469-5.863281 17.109375-7.09375l4.554688-.90625 2.679687-8.039062h4.460938l2.679687 8.039062 4.554688.90625c6.128906 1.222657 11.878906 3.605469 17.109375 7.09375l3.867187 2.578126 7.574219-3.800782 3.160156 3.160156-3.792969 7.589844 2.578126 3.859375c3.488281 5.214844 5.871093 10.972657 7.09375 17.109375l.914062 4.554688 8.03125 2.679687v4.46875l-8.03125 2.671875-.914062 4.554688c-1.222657 6.128906-3.613282 11.878906-7.09375 17.109375l-2.578126 3.859375 3.792969 7.582031-3.160156 3.167969-7.574219-3.800782-3.867187 2.578126c-5.222657 3.488281-10.980469 5.863281-17.109375 7.09375zm0 0\"></path><path d=\"m104 72c-17.648438 0-32 14.351562-32 32s14.351562 32 32 32 32-14.351562 32-32-14.351562-32-32-32zm0 48c-8.824219 0-16-7.175781-16-16s7.175781-16 16-16 16 7.175781 16 16-7.175781 16-16 16zm0 0\"></path><path d=\"m160 248v-40h48v-208h-208v208h106.664062zm-144-232h176v176h-48v24l-32-24h-96zm0 0\"></path><path d=\"m0 272h16v16h-16zm0 0\"></path><path d=\"m32 272h16v16h-16zm0 0\"></path><path d=\"m64 272h16v16h-16zm0 0\"></path><path d=\"m32 304h16v16h-16zm0 0\"></path><path d=\"m64 304h16v16h-16zm0 0\"></path><path d=\"m0 480h16v16h-16zm0 0\"></path><path d=\"m32 480h16v16h-16zm0 0\"></path><path d=\"m64 480h16v16h-16zm0 0\"></path><path d=\"m32 448h16v16h-16zm0 0\"></path><path d=\"m64 448h16v16h-16zm0 0\"></path></svg>				\n									<h5>\n							fokus på kvalitet og detaljer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m469.12 408.93-67.26-33.63v-22.13c10.71-7.69 18.6-19.07 21.78-32.27h5.28c8.81 0 15.98-7.17 15.98-15.98v-5.29c0-6.35-3.74-11.84-9.12-14.41 5.19-18.64-1.65-39.76-19.44-59.78-12.58-14.16-30.67-22.27-49.62-22.27-18.93 0-37.01 8.12-49.59 22.27-13.38 15.05-20.95 41.01-14.03 59.62-5.56 2.5-9.45 8.09-9.45 14.57v5.29c0 8.81 7.17 15.98 15.98 15.98h5.55c3.16 13.09 10.94 24.39 21.51 32.08v22.32l-67.26 33.63c-16.7 5.87-27.89 21.6-27.89 39.28v41.63c0 3.31 2.69 6 6 6h243.46c3.31 0 6-2.69 6-6v-41.63c0-17.68-11.19-33.41-27.88-39.28zm-62.24-17.7-15.83 27.66-13.29-13.29 19.29-19.29zm-37.61 5.88-20.59-20.58v-16.91c6.41 2.57 13.4 4.01 20.72 4.01 7.22 0 14.11-1.39 20.45-3.9v16.8zm63.63-97.48v5.29c0 2.16-1.82 3.98-3.98 3.98h-3.74c.01-.36.03-.71.03-1.07v-12.18h3.71c2.15-.01 3.98 1.82 3.98 3.98zm-119.29 8.2v1.07h-3.98c-2.16 0-3.98-1.82-3.98-3.98v-5.29c0-2.16 1.82-3.98 3.98-3.98l3.98.22zm1.95-24.19c-7.33-13.69-.89-37.39 10.53-50.24 10.31-11.6 25.12-18.25 40.63-18.25 15.52 0 30.34 6.65 40.65 18.25 8.43 9.48 21.3 27.59 17.4 46.39-5.66-.35-10.67-2.55-14.4-6.36-5.37-5.49-7.72-14-6.63-23.94.29-2.62-1.17-5.13-3.6-6.17s-5.25-.37-6.95 1.65c-19.33 22.92-45.95 36.76-73.9 38.68h-3.73zm10.05 24.19v-12.73c24.57-2.92 47.92-14.05 66.73-31.8 1.43 7.26 4.63 13.6 9.45 18.52 3.27 3.35 7.14 5.89 11.41 7.58v18.42c0 24.15-19.65 43.8-43.8 43.8s-43.79-19.64-43.79-43.79zm15.89 78.48 19.29 19.29-13.29 13.29-15.84-27.66zm3.22 97.53h-39.42v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.76v-35.63c0-12.68 8.1-23.95 20.15-28.05.26-.09.51-.19.75-.31l46.47-23.23 20.07 35.06c.93 1.62 2.56 2.72 4.41 2.97.27.04.53.05.79.05 1.58 0 3.11-.62 4.24-1.76l.14-.14zm12.08 0 7.41-64.69 5.06-5.06 4.84 4.84 7.86 64.92h-25.17zm128.2 0h-39.76v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.18l-6.2-51.17.25.25c1.13 1.13 2.66 1.76 4.24 1.76.26 0 .53-.02.79-.05 1.85-.25 3.48-1.34 4.41-2.97l20.07-35.06 46.47 23.23c.24.12.49.23.75.31 12.05 4.1 20.15 15.38 20.15 28.05v35.65zm-67.04-346.65h-10.84l28.38 39.84 28.38-39.84h-10.84c-3.31 0-6-2.69-6-6v-64.58h-98.7c-3.31 0-6-2.69-6-6s2.69-6 6-6h104.7c3.31 0 6 2.69 6 6v64.58h16.48c2.25 0 4.3 1.25 5.33 3.25s.86 4.4-.45 6.23l-40.02 56.18c-1.13 1.58-2.95 2.52-4.89 2.52s-3.76-.94-4.89-2.52l-40.02-56.18c-1.3-1.83-1.48-4.23-.45-6.23s3.09-3.25 5.33-3.25h16.48v-23.5h-65.38c-3.31 0-6-2.69-6-6s2.69-6 6-6h71.38c3.31 0 6 2.69 6 6v35.5c.02 3.31-2.67 6-5.98 6zm-118.44 50.65v-133.26c0-21.18-17.23-38.41-38.41-38.41h-207.7c-21.18-.01-38.41 17.23-38.41 38.41v133.26c0 21.18 17.23 38.41 38.41 38.41h105.8l64.8 55.11c1.11.94 2.49 1.43 3.89 1.43.85 0 1.71-.18 2.52-.55 2.12-.98 3.48-3.11 3.48-5.45v-50.54h27.21c21.18 0 38.41-17.23 38.41-38.41zm-71.62 26.41c-3.31 0-6 2.69-6 6v43.56l-56.59-48.13c-1.08-.92-2.46-1.43-3.89-1.43h-108.01c-14.56 0-26.41-11.85-26.41-26.41v-133.26c0-14.56 11.85-26.41 26.41-26.41h207.69c14.56 0 26.41 11.85 26.41 26.41v133.26c0 14.56-11.85 26.41-26.41 26.41zm-156.34-87.87h56.97c3.31 0 6-2.69 6-6v-39.2l8.55-8.55c2.34-2.34 2.34-6.14 0-8.49-2.34-2.34-6.14-2.34-8.48 0l-.7.7c-.98-1.97-3.01-3.32-5.36-3.32h-56.98c-3.31 0-6 2.69-6 6v52.85c0 3.32 2.69 6.01 6 6.01zm6-52.86h44.97v2.69l-18.16 18.16-8.84-8.84c-2.34-2.34-6.14-2.34-8.49 0-2.34 2.34-2.34 6.14 0 8.49l13.08 13.08c1.17 1.17 2.71 1.76 4.24 1.76s3.07-.59 4.24-1.76l13.92-13.92v21.2h-44.96zm173.62 3.08c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 31.92c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 36.52c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.68 5.99 6zm0 31.92c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.69 5.99 6zm-119.36 165.01h10.84l-28.38-39.84-28.38 39.84h10.84c3.31 0 6 2.69 6 6v64.58h98.7c3.31 0 6 2.69 6 6s-2.69 6-6 6h-104.69c-3.31 0-6-2.69-6-6v-64.58h-16.48c-2.25 0-4.3-1.25-5.33-3.25s-.86-4.4.45-6.23l40.02-56.18c1.13-1.58 2.95-2.52 4.89-2.52s3.76.94 4.89 2.52l40.02 56.18c1.3 1.83 1.48 4.23.45 6.23s-3.09 3.25-5.33 3.25h-16.48v23.5h65.38c3.31 0 6 2.69 6 6s-2.69 6-6 6h-71.38c-3.31 0-6-2.69-6-6v-35.5c-.03-3.31 2.66-6 5.97-6z\"></path></svg>				\n									<h5>\n							ærlig<br> rådgivning						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 510 510\"><path d=\"m192.036 385.845c-4.787-46.972-19.459-64.336-30.658-82.352-8.672-13.951-15.5-28.245-15.5-54.252 0-60.242 48.865-109.109 109.135-109.109 60.242 0 109.109 48.866 109.109 109.109 0 26.007-6.828 40.301-15.5 54.252-11.199 18.016-25.871 35.38-30.658 82.352 9.985 2.864 17.345 12.101 17.345 22.975v36.44c0 13.109-10.747 23.866-23.893 23.866h-10.334v9.945c0 12.588-10.341 22.929-22.93 22.929h-46.304c-12.589 0-22.93-10.341-22.93-22.929v-9.945h-10.334c-13.146 0-23.893-10.757-23.893-23.866v-36.44c0-10.874 7.36-20.111 17.345-22.975zm111.948-.917c4.199-42.194 15.78-62.332 26.488-79.049 10.147-15.842 19.65-28.207 19.65-56.638 0-52.513-42.597-95.109-95.109-95.109-52.537 0-95.135 42.596-95.135 95.109 0 28.431 9.503 40.796 19.65 56.638 10.708 16.717 22.289 36.855 26.488 79.049zm2.554-78.61c-1.175 13.701-11.985 24.191-24.783 24.191-13.527 0-24.862-12.086-24.862-26.673v-99.328c0-14.12 11.335-26.673 24.862-26.673 11.309 0 21.031 8.139 23.975 19.497 9.12 3.904 15.688 13.438 15.688 24.78 0 1.153-.068 2.289-.201 3.403 5.078 5.326 8.283 12.802 8.283 21.117 0 6.39-1.889 12.262-5.06 17.053 1.996 4.099 3.13 8.773 3.13 13.76 0 14.1-9.065 25.697-21.032 28.873zm-16.452-109.977c-1.964-2.729-4.916-4.506-8.331-4.506-6.192 0-10.862 6.21-10.862 12.673v99.328c0 6.677 4.67 12.673 10.862 12.673 5.516 0 9.822-4.614 10.717-10.425-4.709-1.416-8.923-4.144-12.279-7.814-2.607-2.852-2.409-7.283.443-9.89 2.851-2.607 7.282-2.408 9.889.443 2.416 2.642 5.72 4.356 9.402 4.356 7.733 0 13.643-7.218 13.643-15.734s-5.91-15.734-13.643-15.734c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7 5.352 0 10.388 1.655 14.658 4.533.593-1.743.915-3.634.915-5.612 0-2.11-.366-4.128-1.036-5.972-.769.858-1.588 1.66-2.453 2.397-2.94 2.507-7.361 2.156-9.869-.784-2.507-2.939-2.155-7.361.784-9.868 2.773-2.365 4.492-6.122 4.492-10.293 0-6.072-3.705-11.374-8.898-12.467-.154-.023-.307-.052-.458-.085-.499-.08-1.01-.121-1.532-.121-2.947 0-5.591 1.389-7.515 3.525-2.585 2.87-7.015 3.101-9.886.515-2.87-2.586-3.101-7.015-.515-9.886 3.111-3.453 7.059-5.988 11.472-7.252zm-104.526 67.344c-3.171-4.791-5.06-10.663-5.06-17.053 0-8.307 3.198-15.777 8.284-21.104-.133-1.118-.202-2.258-.202-3.416 0-11.354 6.582-20.897 15.717-24.792 2.948-11.354 12.67-19.485 23.946-19.485 13.56 0 24.888 12.555 24.888 26.673v99.328c0 14.585-11.328 26.673-24.888 26.673-12.765 0-23.578-10.484-24.757-24.184-11.98-3.166-21.058-14.769-21.058-28.88 0-4.987 1.134-9.661 3.13-13.76zm9.982-23.036c-.675 1.847-1.042 3.869-1.042 5.983 0 1.978.322 3.869.915 5.612 4.27-2.878 9.306-4.533 14.658-4.533 3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7-7.733 0-13.643 7.218-13.643 15.734s5.91 15.734 13.643 15.734c3.682 0 6.986-1.714 9.402-4.356 2.607-2.851 7.038-3.05 9.889-.443 2.852 2.607 3.05 7.038.443 9.89-3.35 3.664-7.556 6.389-12.255 7.807.891 5.813 5.192 10.432 10.693 10.432 6.21 0 10.888-5.993 10.888-12.673v-99.328c0-6.466-4.678-12.673-10.888-12.673-3.404 0-6.349 1.777-8.309 4.507 4.421 1.264 8.367 3.8 11.476 7.251 2.586 2.871 2.355 7.3-.516 9.886-2.87 2.586-7.3 2.355-9.886-.515-1.926-2.138-4.574-3.525-7.54-3.525-.493 0-.976.037-1.448.108-.196.045-.395.082-.596.11-5.165 1.118-8.844 6.404-8.844 12.455 0 1.243.153 2.45.442 3.594.101.284.183.572.246.862.748 2.326 2.071 4.346 3.814 5.823 2.947 2.498 3.311 6.919.813 9.866s-6.919 3.312-9.866.814c-.878-.745-1.71-1.554-2.489-2.422zm3.042 158.279c-5.442 0-9.893 4.451-9.893 9.892v36.44c0 5.423 4.454 9.866 9.893 9.866h17.334c3.866 0 7 3.134 7 7v16.945c0 4.902 4.027 8.929 8.93 8.929h46.304c4.903 0 8.93-4.027 8.93-8.929v-16.945c0-3.866 3.134-7 7-7h17.334c5.439 0 9.893-4.443 9.893-9.866v-36.44c0-5.441-4.451-9.892-9.893-9.892zm63.416-314.093 2.907-5.412c1.828-3.403 6.075-4.683 9.479-2.854 3.403 1.828 4.682 6.075 2.854 9.479l-16.073 29.925c-1.22 2.271-3.589 3.688-6.167 3.688s-4.947-1.417-6.167-3.688l-16.073-29.925c-1.828-3.404-.549-7.651 2.854-9.479 3.404-1.829 7.651-.549 9.479 2.854l2.907 5.412v-69.835c0-3.863 3.137-7 7-7s7 3.137 7 7zm-132.198 54.758-49.381-49.381c-2.732-2.731-2.732-7.167 0-9.899s7.168-2.732 9.9 0l49.38 49.38-1.771-5.881c-1.114-3.7.985-7.608 4.684-8.722 3.7-1.114 7.607.985 8.721 4.685l9.796 32.526c.743 2.468.069 5.145-1.753 6.968-1.823 1.823-4.5 2.496-6.969 1.753l-32.526-9.795c-3.699-1.114-5.798-5.022-4.684-8.721s5.022-5.798 8.721-4.684zm-44.859 122.299h-69.835c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7h69.835l-5.412-2.907c-3.403-1.828-4.682-6.076-2.854-9.479 1.828-3.404 6.075-4.683 9.479-2.855l29.926 16.074c2.271 1.22 3.688 3.589 3.688 6.167 0 2.577-1.417 4.947-3.688 6.166l-29.926 16.074c-3.404 1.828-7.651.549-9.479-2.855-1.828-3.403-.549-7.651 2.854-9.479zm54.758 118.198-49.38 49.38c-2.732 2.732-7.168 2.732-9.9 0s-2.732-7.167 0-9.899l49.381-49.381-5.882 1.772c-3.699 1.114-7.607-.985-8.721-4.685-1.114-3.699.985-7.607 4.684-8.721l32.526-9.795c2.469-.743 5.146-.07 6.969 1.753 1.822 1.823 2.496 4.5 1.753 6.968l-9.796 32.527c-1.114 3.699-5.021 5.798-8.721 4.684-3.699-1.114-5.798-5.022-4.684-8.721zm240.497-240.497 5.882-1.771c3.699-1.114 7.607.985 8.721 4.684s-.985 7.607-4.684 8.721l-32.526 9.795c-2.469.743-5.146.07-6.969-1.753-1.822-1.823-2.496-4.5-1.753-6.968l9.796-32.526c1.114-3.7 5.021-5.799 8.721-4.685 3.699 1.114 5.798 5.022 4.684 8.722l-1.771 5.881 49.38-49.38c2.732-2.732 7.168-2.732 9.9 0s2.732 7.168 0 9.899zm44.859 122.299 5.412 2.906c3.403 1.828 4.682 6.076 2.854 9.479-1.828 3.404-6.075 4.683-9.479 2.855l-29.926-16.074c-2.271-1.219-3.688-3.589-3.688-6.166 0-2.578 1.417-4.947 3.688-6.167l29.926-16.074c3.404-1.828 7.651-.549 9.479 2.855 1.828 3.403.549 7.651-2.854 9.479l-5.412 2.907h69.835c3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7zm-54.758 118.198 1.771 5.882c1.114 3.699-.985 7.607-4.684 8.721-3.7 1.114-7.607-.985-8.721-4.684l-9.796-32.527c-.743-2.468-.069-5.145 1.753-6.968 1.823-1.823 4.5-2.496 6.969-1.753l32.526 9.795c3.699 1.114 5.798 5.022 4.684 8.721-1.114 3.7-5.022 5.799-8.721 4.685l-5.882-1.772 49.381 49.381c2.732 2.732 2.732 7.167 0 9.899s-7.168 2.732-9.9 0z\"></path></svg>				\n									<h5>\n							gennemtænkte løsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"outline\"><path d=\"M486.41,144A28,28,0,0,0,472,92H349.123l5.457-21.828a48.513,48.513,0,0,0-12.848-46.153A41.035,41.035,0,0,0,312.609,12H308a8.009,8.009,0,0,0-8,8V47.413l-19.233,64.112A17.376,17.376,0,0,1,268,123.539V112a4,4,0,0,0-4-4H152a4,4,0,0,0-4,4v72a4,4,0,0,0,8,0V116h72V276H156V248a4,4,0,0,0-8,0v32a4,4,0,0,0,4,4H264a4,4,0,0,0,4-4V268.5h11.168A37.07,37.07,0,0,1,305.092,279a45.025,45.025,0,0,0,31.48,12.752L440,292a27.987,27.987,0,0,0,19.369-48.2,27.987,27.987,0,0,0,16-48A28,28,0,0,0,486.41,144ZM260,276H236V116h24Zm212-88H396a4,4,0,0,0,0,8h60a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h40a20,20,0,0,1,.01,40l-103.428-.25a37.07,37.07,0,0,1-25.924-10.5,45.031,45.031,0,0,0-31.49-12.752H268V131.686a25.317,25.317,0,0,0,20.429-17.862l19.4-64.675A4,4,0,0,0,308,48V20h4.609a33.082,33.082,0,0,1,23.481,9.69,40.507,40.507,0,0,1,10.728,38.541l-6.7,26.8A4,4,0,0,0,344,100H472a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h72a20,20,0,0,1,0,40Z\"></path><path d=\"M194.5,183.243l-1.9-.217a4,4,0,0,0-4.169,2.491L184.29,195.9H135.278l-3.539-9.317a4,4,0,0,0-7.478,2.84l2.459,6.477h-8.474L68.452,156.872a4,4,0,1,0-4.935,6.3L77.6,174.209,56.961,194.48l-6.636-5.491a4,4,0,1,0-5.1,6.163L87.219,229.9a44.1,44.1,0,0,0,28.05,10.1H212a8.009,8.009,0,0,0,8-8V203.9a8.009,8.009,0,0,0-8-8h-8v-2.01A10.708,10.708,0,0,0,194.5,183.243ZM212,203.9V232H115.269a36.081,36.081,0,0,1-22.951-8.264l-29.16-24.128,20.8-20.422L114.4,203.045a4,4,0,0,0,2.468.852H187a4,4,0,0,0,3.715-2.517l3.929-9.843a2.712,2.712,0,0,1,1.356,2.35v6.01a4,4,0,0,0,4,4Z\"></path><path d=\"M223.084,484.672,200.87,469.863V346.36A44.1,44.1,0,0,0,195.327,325l-17.183-30.94a4,4,0,0,0-7,3.884l17.184,30.94a36.073,36.073,0,0,1,4.537,17.478V468H164.333a4,4,0,1,0,0,8h31.321l12,8H152.865V352a4,4,0,0,0-.358-1.655l-25.454-56A4,4,0,0,0,123.411,292H114.2a4,4,0,0,0-3.945,4.658l8.862,53.175a36.016,36.016,0,0,1-1.951,18.949L78.642,468H48.333a4,4,0,1,0,0,8H80.377L92,484H32.088L76.63,361.366a4.017,4.017,0,0,0,.183-2.044L61.1,268H136a4,4,0,0,0,0-8H59.233L30.555,173.966A19.723,19.723,0,0,1,49.27,148H76a12,12,0,0,0,24,0h15.2a21.975,21.975,0,0,1,8.395,1.652l10.889,4.458a4,4,0,1,0,3.032-7.4L126.63,142.25A29.938,29.938,0,0,0,115.2,140H100v-4.527A16.014,16.014,0,0,0,112,120V103.473A16.014,16.014,0,0,0,124,88V80a4,4,0,0,0-4-4H90A22.025,22.025,0,0,0,68,98v18a12.02,12.02,0,0,0,8,11.314V140H49.27a27.723,27.723,0,0,0-26.305,36.5l29.493,88.482,16.29,94.655-46.128,127A4,4,0,0,0,26.38,492h78.485a4,4,0,0,0,2.268-7.3L86.3,470.368l38.318-98.69a44.018,44.018,0,0,0,2.385-23.16L118.921,300h1.914l24.03,52.867V488a4,4,0,0,0,4,4h72a4,4,0,0,0,2.219-7.328ZM76,98A14.015,14.015,0,0,1,90,84h26v4a8.009,8.009,0,0,1-8,8H92a4,4,0,0,0-4,4,11.962,11.962,0,0,1-1.53,5.881A12.044,12.044,0,0,0,76,104.686Zm4,14a3.981,3.981,0,0,1,3.407,1.9,4,4,0,0,0,5.956.975c.207-.171.7-.648.7-.648.032-.028.061-.057.09-.087A19.907,19.907,0,0,0,95.6,104H104v16a8.009,8.009,0,0,1-8,8,12.133,12.133,0,0,1-2.681-.3,4,4,0,1,0-1.775,7.8c.151.035.3.06.456.091V148a4,4,0,1,1-8,0V124a4,4,0,0,0-4-4,4,4,0,0,1,0-8Z\"></path></g></svg>				\n									<h5>\n							arbejde udført med ansvar						\n					</h5>\n				<p>Vi lover ikke mere, end vi kan holde – men vi holder det, vi lover.</p>			<h2>KONTAKT OS</h2>		<p>Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.</p>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-14 10:57:54', '2026-02-14 10:57:54', '', 10, 'https://mrarif.me/cpnordic/?p=724', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(725, 1, '2026-02-14 10:57:55', '2026-02-14 10:57:55', '<h1>CP NORDIC ApS</h1>					<h4>Byggeri – Tømrerarbejde og tagdækning</h4>										<a href=\"https://mrarif.me/cpnordic/kontakt/\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"https://mrarif.me/cpnordic/om-os/\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"https://mrarif.me/cpnordic/tomrerarbejde/\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>								<a href=\"https://mrarif.me/cpnordic/tagdaekning/\">\n									Lær mere\n					</a>\n									<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle ANMELDELSER\n					</a>\n					<h2>HVORFOR VÆLGE CP NORDIC ApS?</h2>		<p>Når du vælger CP NORDIC ApS, får du:</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 450 450\" width=\"512\"><g><g><path d=\"m225 165.2c-25.9 0-48.9-18.8-53.3-45.2-2.4-14.2.9-28.6 9.3-40.3 8.4-11.8 20.9-19.5 35.1-21.9 29.4-4.9 57.3 15 62.2 44.5 4.9 29.4-15 57.3-44.4 62.2-3 .5-6 .7-8.9.7zm-7.6-99.8c-12.2 2-22.9 8.7-30.1 18.8s-10.1 22.4-8 34.6c3.8 22.7 23.5 38.8 45.7 38.8 2.5 0 5.1-.2 7.6-.6 25.2-4.2 42.3-28.1 38.1-53.4s-28.1-42.4-53.3-38.2z\"></path><path d=\"m255.2 115c-2.1 0-3.8-1.7-3.8-3.8 0-14.6-11.8-26.4-26.4-26.4-2.1 0-3.8-1.7-3.8-3.8s1.7-3.8 3.8-3.8c18.8 0 34.1 15.3 34.1 34.1 0 2-1.8 3.7-3.9 3.7z\"></path><path d=\"m236.1 203h-22.2c-2.1 0-3.8-1.7-3.8-3.8v-14.1c-3.1-.6-6.1-1.4-9.1-2.4l-7 12.2c-1.1 1.8-3.4 2.5-5.3 1.4l-19.2-11.1c-.9-.5-1.5-1.4-1.8-2.3-.3-1-.1-2 .4-2.9l7-12.1c-2.4-2.1-4.6-4.3-6.7-6.6l-12.1 7c-1.8 1.1-4.2.4-5.2-1.4l-11.1-19.2c-1.1-1.8-.4-4.2 1.4-5.2l11.9-6.8c-1-3-1.9-6.1-2.6-9.3h-13.7c-2.1 0-3.8-1.7-3.8-3.8v-22.2c0-2.1 1.7-3.8 3.8-3.8h13.4c.6-3.2 1.4-6.4 2.4-9.5l-11.5-6.6c-1.8-1.1-2.5-3.4-1.4-5.3l11.1-19.6c.5-.9 1.4-1.5 2.3-1.8s2-.1 2.9.4l11.3 6.6c2.2-2.5 4.5-4.8 7-7l-6.5-11.3c-.5-.9-.6-1.9-.4-2.9.3-1 .9-1.8 1.8-2.3l19.2-11.1c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l6.4 11.2c3.1-1.1 6.4-1.9 9.7-2.6v-13c0-2.1 1.7-3.8 3.8-3.8h22.2c2.1 0 3.8 1.7 3.8 3.8v12.8c3.3.7 6.5 1.5 9.7 2.6l6.5-11.2c.5-.9 1.4-1.5 2.3-1.8 1-.3 2-.1 2.9.4l19.2 11.1c.9.5 1.5 1.3 1.8 2.3s.1 2-.4 2.9l-6.5 11.3c2.5 2.2 4.8 4.5 7 7.1l11.3-6.6c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l11.1 19.2c1.1 1.8.4 4.2-1.4 5.3l-11.5 6.6c1 3.1 1.8 6.3 2.5 9.5h13.6c2.1 0 3.8 1.7 3.8 3.8v22.2c0 2.1-1.7 3.8-3.8 3.8h-13.6c-.6 3.1-1.5 6.2-2.5 9.3l11.9 6.8c1.8 1.1 2.5 3.4 1.4 5.2l-11.2 19.5c-1.1 1.8-3.4 2.5-5.2 1.4l-12-7c-2.1 2.4-4.4 4.6-6.7 6.6l7 12.1c.5.9.6 1.9.4 2.9s-.9 1.8-1.8 2.3l-19.2 11.1c-1.8 1.1-4.2.4-5.2-1.4l-7-12.2c-3 1-6 1.8-9.1 2.4v14.1c-.2 2.3-2 4-4.1 4zm-18.4-7.7h14.5v-13.5c0-1.9 1.4-3.5 3.3-3.8 4.7-.7 9.4-2 13.8-3.7 1.8-.7 3.8 0 4.7 1.7l6.7 11.6 12.6-7.3-6.7-11.6c-1-1.6-.5-3.7.9-4.9 3.7-3 7.2-6.4 10.2-10.1 1.2-1.5 3.3-1.8 4.9-.9l11.5 6.6 7.3-12.6-11.3-6.5c-1.6-.9-2.4-3-1.6-4.7 1.8-4.5 3.1-9.2 3.9-14 .3-1.9 1.9-3.2 3.8-3.2h13v-14.6h-12.8c-1.9 0-3.5-1.4-3.8-3.3-.7-4.8-2-9.6-3.7-14.2-.7-1.8 0-3.7 1.7-4.7l10.9-6.3-7.3-12.6-10.8 6.3c-1.6.9-3.7.6-4.9-.9-3.1-3.9-6.6-7.4-10.4-10.6-1.5-1.2-1.9-3.3-.9-4.9l6.2-10.7-12.6-7.3-6.1 10.6c-1 1.6-3 2.3-4.7 1.7-4.6-1.8-9.5-3.1-14.4-3.9-1.9-.3-3.3-1.9-3.3-3.8v-12.2h-14.5v12.3c0 1.9-1.4 3.5-3.3 3.8-5 .8-9.8 2.1-14.4 3.9-1.8.7-3.8 0-4.7-1.7l-6.1-10.6-12.6 7.3 6.2 10.7c.9 1.6.6 3.7-.9 4.9-3.9 3.1-7.4 6.7-10.4 10.6-1.2 1.5-3.3 1.9-4.9.9l-10.8-6.3-7.3 12.6 10.9 6.3c1.6.9 2.3 2.9 1.7 4.7-1.7 4.6-3 9.4-3.7 14.2-.3 1.9-1.9 3.3-3.8 3.3h-12.8v14.5h13c1.9 0 3.5 1.4 3.8 3.2.8 4.8 2.1 9.5 3.9 14 .7 1.8 0 3.8-1.6 4.7l-11.3 6.5 7.3 12.6 11.5-6.6c1.6-.9 3.7-.6 4.9.9 3 3.7 6.5 7.1 10.3 10.1 1.5 1.2 1.9 3.3.9 4.9l-6.7 11.6 12.6 7.3 6.7-11.6c.9-1.6 2.9-2.3 4.7-1.7 4.5 1.7 9.1 2.9 13.8 3.7 1.9.3 3.3 1.9 3.3 3.8z\"></path></g><g><g><g><path d=\"m45.3 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m153.9 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path></g><g><path d=\"m189.3 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.2c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c0 2.1-1.7 3.8-3.8 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m73.3 326.4c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m126 326.4c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m99.7 325.6c-.6 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4s4.1 1.1 4.4 3.2c2.4 16.5 12.3 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m50.2 266.6c-.1 0-.2 0-.3 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.7 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-8.9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.5 2.2zm81.8-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13.1-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.4-.7 2.3-.7z\"></path></g></g></g><g><g><path d=\"m296.1 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m404.7 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path></g><g><path d=\"m440 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.1c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c.2 2.1-1.6 3.8-3.7 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m324 326.3c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m376.7 326.3c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m350.4 325.6c-.5 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4 2.1-.3 4 1.1 4.4 3.2 2.4 16.5 12.4 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m301 266.6c-.1 0-.2 0-.4 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.6 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.4 2.2zm81.7-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.5-.7 2.3-.7z\"></path></g></g></g></g></g></svg>				\n									<h5>\n							et ungt og engageret team						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"496pt\" viewBox=\"0 0 496 496\" width=\"496pt\"><path d=\"m440 328h-28.207031c5.078125-6.703125 8.207031-14.960938 8.207031-24 0-8.824219-7.175781-16-16-16h-12v-19.960938c59.574219-14.445312 104-68.085937 104-132.039062 0-74.992188-61.007812-136-136-136s-136 61.007812-136 136c0 63.953125 44.425781 117.59375 104 132.039062v19.960938h-8.449219c-6.167969 0-12.359375 1.464844-17.886719 4.214844l-50.480468 25.25c-3.320313 1.664062-7.03125 2.535156-10.734375 2.535156h-40.449219v-16h-104v16h56v56h16v-56h16v128h-16v-56h-16v56h-56v16h104v-16h40.449219c3.703125 0 7.414062.871094 10.734375 2.527344l34.488281 17.25c5.519531 2.757812 11.710937 4.222656 17.878906 4.222656h24.449219v24h64v-24h48c13.230469 0 24-10.769531 24-24 0-6.167969-2.40625-11.742188-6.238281-16 3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16 0-13.230469-10.769531-24-24-24zm8 24c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm-208-280c0-66.167969 53.832031-120 120-120s120 53.832031 120 120-53.832031 120-120 120-120-53.832031-120-120zm104 134.976562c5.257812.617188 10.574219 1.023438 16 1.023438s10.742188-.40625 16-1.023438v17.023438h-32zm-40.449219 185.023438c-3.703125 0-7.414062-.871094-10.734375-2.527344l-34.488281-17.25c-5.519531-2.757812-11.710937-4.222656-17.878906-4.222656h-40.449219v-96h40.449219c6.167969 0 12.359375-1.464844 17.886719-4.214844l50.480468-25.25c3.320313-1.664062 7.03125-2.535156 10.734375-2.535156h84.449219c0 13.230469-10.769531 24-24 24h-48.28125l-23.863281 35.808594c-6.101563 9.160156-14.527344 16.589844-24.367188 21.503906-8.753906 4.375-18.542969 6.6875-28.320312 6.6875h-15.167969v16h15.167969c12.246093 0 24.519531-2.894531 35.472656-8.375 12.328125-6.160156 22.878906-15.480469 30.527344-26.945312l6.832031-10.253907v93.574219zm40.449219 24v-136h17.472656c-.898437 2.511719-1.472656 5.183594-1.472656 8 0 6.167969 2.40625 11.742188 6.238281 16-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16 0 10.414062 6.710938 19.214844 16 22.527344v9.472656zm96-24h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8s-3.59375 8-8 8zm0 0\"></path><path d=\"m394.878906 73.007812-7.757812 13.984376c17.816406 9.878906 28.878906 28.664062 28.878906 49.007812h16c0-26.160156-14.222656-50.296875-37.121094-62.992188zm0 0\"></path><path d=\"m360 80c4.734375 0 9.449219.59375 14.007812 1.769531l3.976563-15.503906c-5.855469-1.496094-11.90625-2.265625-17.984375-2.265625zm0 0\"></path><path d=\"m360 48c48.519531 0 88 39.480469 88 88 0 20.753906-7.398438 40.910156-20.832031 56.785156l12.207031 10.34375c15.882812-18.761718 24.625-42.601562 24.625-67.128906 0-57.34375-46.65625-104-104-104-24.527344 0-48.367188 8.753906-67.128906 24.632812l10.335937 12.199219c15.871094-13.433593 36.039063-20.832031 56.792969-20.832031zm0 0\"></path><path d=\"m427.128906 215.367188-10.335937-12.199219c-15.871094 13.433593-36.039063 20.832031-56.792969 20.832031-48.519531 0-88-39.480469-88-88 0-20.753906 7.398438-40.910156 20.832031-56.785156l-12.207031-10.34375c-15.882812 18.761718-24.625 42.601562-24.625 67.128906 0 57.34375 46.65625 104 104 104 24.527344 0 48.367188-8.753906 67.128906-24.632812zm0 0\"></path><path d=\"m121.214844 165.640625c4.953125-1.375 9.695312-3.34375 14.183594-5.878906l9.769531 4.886719 19.472656-19.480469-4.886719-9.769531c2.535156-4.496094 4.503906-9.230469 5.886719-14.183594l10.359375-3.445313v-27.53125l-10.351562-3.453125c-1.375-4.953125-3.34375-9.707031-5.886719-14.183594l4.886719-9.777343-19.472657-19.472657-9.769531 4.886719c-4.484375-2.535156-9.230469-4.503906-14.183594-5.878906l-3.453125-10.359375h-27.539062l-3.445313 10.359375c-4.953125 1.375-9.695312 3.34375-14.183594 5.878906l-9.777343-4.886719-19.472657 19.472657 4.886719 9.777343c-2.535156 4.488282-4.503906 9.230469-5.886719 14.183594l-10.351562 3.445313v27.53125l10.351562 3.453125c1.375 4.953125 3.34375 9.695312 5.886719 14.183594l-4.886719 9.769531 19.472657 19.480469 9.769531-4.886719c4.484375 2.535156 9.230469 4.503906 14.183594 5.878906l3.453125 10.359375h27.539062zm-12.304688-13.679687-2.679687 8.039062h-4.460938l-2.679687-8.039062-4.554688-.90625c-6.128906-1.222657-11.878906-3.605469-17.109375-7.09375l-3.867187-2.578126-7.574219 3.800782-3.160156-3.167969 3.792969-7.582031-2.578126-3.859375c-3.488281-5.222657-5.871093-10.980469-7.09375-17.109375l-.914062-4.554688-8.03125-2.679687v-4.46875l8.03125-2.671875.914062-4.554688c1.222657-6.136718 3.613282-11.886718 7.09375-17.109375l2.578126-3.859375-3.792969-7.589844 3.160156-3.160156 7.574219 3.800782 3.867187-2.578126c5.222657-3.488281 10.980469-5.863281 17.109375-7.09375l4.554688-.90625 2.679687-8.039062h4.460938l2.679687 8.039062 4.554688.90625c6.128906 1.222657 11.878906 3.605469 17.109375 7.09375l3.867187 2.578126 7.574219-3.800782 3.160156 3.160156-3.792969 7.589844 2.578126 3.859375c3.488281 5.214844 5.871093 10.972657 7.09375 17.109375l.914062 4.554688 8.03125 2.679687v4.46875l-8.03125 2.671875-.914062 4.554688c-1.222657 6.128906-3.613282 11.878906-7.09375 17.109375l-2.578126 3.859375 3.792969 7.582031-3.160156 3.167969-7.574219-3.800782-3.867187 2.578126c-5.222657 3.488281-10.980469 5.863281-17.109375 7.09375zm0 0\"></path><path d=\"m104 72c-17.648438 0-32 14.351562-32 32s14.351562 32 32 32 32-14.351562 32-32-14.351562-32-32-32zm0 48c-8.824219 0-16-7.175781-16-16s7.175781-16 16-16 16 7.175781 16 16-7.175781 16-16 16zm0 0\"></path><path d=\"m160 248v-40h48v-208h-208v208h106.664062zm-144-232h176v176h-48v24l-32-24h-96zm0 0\"></path><path d=\"m0 272h16v16h-16zm0 0\"></path><path d=\"m32 272h16v16h-16zm0 0\"></path><path d=\"m64 272h16v16h-16zm0 0\"></path><path d=\"m32 304h16v16h-16zm0 0\"></path><path d=\"m64 304h16v16h-16zm0 0\"></path><path d=\"m0 480h16v16h-16zm0 0\"></path><path d=\"m32 480h16v16h-16zm0 0\"></path><path d=\"m64 480h16v16h-16zm0 0\"></path><path d=\"m32 448h16v16h-16zm0 0\"></path><path d=\"m64 448h16v16h-16zm0 0\"></path></svg>				\n									<h5>\n							fokus på kvalitet og detaljer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m469.12 408.93-67.26-33.63v-22.13c10.71-7.69 18.6-19.07 21.78-32.27h5.28c8.81 0 15.98-7.17 15.98-15.98v-5.29c0-6.35-3.74-11.84-9.12-14.41 5.19-18.64-1.65-39.76-19.44-59.78-12.58-14.16-30.67-22.27-49.62-22.27-18.93 0-37.01 8.12-49.59 22.27-13.38 15.05-20.95 41.01-14.03 59.62-5.56 2.5-9.45 8.09-9.45 14.57v5.29c0 8.81 7.17 15.98 15.98 15.98h5.55c3.16 13.09 10.94 24.39 21.51 32.08v22.32l-67.26 33.63c-16.7 5.87-27.89 21.6-27.89 39.28v41.63c0 3.31 2.69 6 6 6h243.46c3.31 0 6-2.69 6-6v-41.63c0-17.68-11.19-33.41-27.88-39.28zm-62.24-17.7-15.83 27.66-13.29-13.29 19.29-19.29zm-37.61 5.88-20.59-20.58v-16.91c6.41 2.57 13.4 4.01 20.72 4.01 7.22 0 14.11-1.39 20.45-3.9v16.8zm63.63-97.48v5.29c0 2.16-1.82 3.98-3.98 3.98h-3.74c.01-.36.03-.71.03-1.07v-12.18h3.71c2.15-.01 3.98 1.82 3.98 3.98zm-119.29 8.2v1.07h-3.98c-2.16 0-3.98-1.82-3.98-3.98v-5.29c0-2.16 1.82-3.98 3.98-3.98l3.98.22zm1.95-24.19c-7.33-13.69-.89-37.39 10.53-50.24 10.31-11.6 25.12-18.25 40.63-18.25 15.52 0 30.34 6.65 40.65 18.25 8.43 9.48 21.3 27.59 17.4 46.39-5.66-.35-10.67-2.55-14.4-6.36-5.37-5.49-7.72-14-6.63-23.94.29-2.62-1.17-5.13-3.6-6.17s-5.25-.37-6.95 1.65c-19.33 22.92-45.95 36.76-73.9 38.68h-3.73zm10.05 24.19v-12.73c24.57-2.92 47.92-14.05 66.73-31.8 1.43 7.26 4.63 13.6 9.45 18.52 3.27 3.35 7.14 5.89 11.41 7.58v18.42c0 24.15-19.65 43.8-43.8 43.8s-43.79-19.64-43.79-43.79zm15.89 78.48 19.29 19.29-13.29 13.29-15.84-27.66zm3.22 97.53h-39.42v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.76v-35.63c0-12.68 8.1-23.95 20.15-28.05.26-.09.51-.19.75-.31l46.47-23.23 20.07 35.06c.93 1.62 2.56 2.72 4.41 2.97.27.04.53.05.79.05 1.58 0 3.11-.62 4.24-1.76l.14-.14zm12.08 0 7.41-64.69 5.06-5.06 4.84 4.84 7.86 64.92h-25.17zm128.2 0h-39.76v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.18l-6.2-51.17.25.25c1.13 1.13 2.66 1.76 4.24 1.76.26 0 .53-.02.79-.05 1.85-.25 3.48-1.34 4.41-2.97l20.07-35.06 46.47 23.23c.24.12.49.23.75.31 12.05 4.1 20.15 15.38 20.15 28.05v35.65zm-67.04-346.65h-10.84l28.38 39.84 28.38-39.84h-10.84c-3.31 0-6-2.69-6-6v-64.58h-98.7c-3.31 0-6-2.69-6-6s2.69-6 6-6h104.7c3.31 0 6 2.69 6 6v64.58h16.48c2.25 0 4.3 1.25 5.33 3.25s.86 4.4-.45 6.23l-40.02 56.18c-1.13 1.58-2.95 2.52-4.89 2.52s-3.76-.94-4.89-2.52l-40.02-56.18c-1.3-1.83-1.48-4.23-.45-6.23s3.09-3.25 5.33-3.25h16.48v-23.5h-65.38c-3.31 0-6-2.69-6-6s2.69-6 6-6h71.38c3.31 0 6 2.69 6 6v35.5c.02 3.31-2.67 6-5.98 6zm-118.44 50.65v-133.26c0-21.18-17.23-38.41-38.41-38.41h-207.7c-21.18-.01-38.41 17.23-38.41 38.41v133.26c0 21.18 17.23 38.41 38.41 38.41h105.8l64.8 55.11c1.11.94 2.49 1.43 3.89 1.43.85 0 1.71-.18 2.52-.55 2.12-.98 3.48-3.11 3.48-5.45v-50.54h27.21c21.18 0 38.41-17.23 38.41-38.41zm-71.62 26.41c-3.31 0-6 2.69-6 6v43.56l-56.59-48.13c-1.08-.92-2.46-1.43-3.89-1.43h-108.01c-14.56 0-26.41-11.85-26.41-26.41v-133.26c0-14.56 11.85-26.41 26.41-26.41h207.69c14.56 0 26.41 11.85 26.41 26.41v133.26c0 14.56-11.85 26.41-26.41 26.41zm-156.34-87.87h56.97c3.31 0 6-2.69 6-6v-39.2l8.55-8.55c2.34-2.34 2.34-6.14 0-8.49-2.34-2.34-6.14-2.34-8.48 0l-.7.7c-.98-1.97-3.01-3.32-5.36-3.32h-56.98c-3.31 0-6 2.69-6 6v52.85c0 3.32 2.69 6.01 6 6.01zm6-52.86h44.97v2.69l-18.16 18.16-8.84-8.84c-2.34-2.34-6.14-2.34-8.49 0-2.34 2.34-2.34 6.14 0 8.49l13.08 13.08c1.17 1.17 2.71 1.76 4.24 1.76s3.07-.59 4.24-1.76l13.92-13.92v21.2h-44.96zm173.62 3.08c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 31.92c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 36.52c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.68 5.99 6zm0 31.92c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.69 5.99 6zm-119.36 165.01h10.84l-28.38-39.84-28.38 39.84h10.84c3.31 0 6 2.69 6 6v64.58h98.7c3.31 0 6 2.69 6 6s-2.69 6-6 6h-104.69c-3.31 0-6-2.69-6-6v-64.58h-16.48c-2.25 0-4.3-1.25-5.33-3.25s-.86-4.4.45-6.23l40.02-56.18c1.13-1.58 2.95-2.52 4.89-2.52s3.76.94 4.89 2.52l40.02 56.18c1.3 1.83 1.48 4.23.45 6.23s-3.09 3.25-5.33 3.25h-16.48v23.5h65.38c3.31 0 6 2.69 6 6s-2.69 6-6 6h-71.38c-3.31 0-6-2.69-6-6v-35.5c-.03-3.31 2.66-6 5.97-6z\"></path></svg>				\n									<h5>\n							ærlig<br> rådgivning						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 510 510\"><path d=\"m192.036 385.845c-4.787-46.972-19.459-64.336-30.658-82.352-8.672-13.951-15.5-28.245-15.5-54.252 0-60.242 48.865-109.109 109.135-109.109 60.242 0 109.109 48.866 109.109 109.109 0 26.007-6.828 40.301-15.5 54.252-11.199 18.016-25.871 35.38-30.658 82.352 9.985 2.864 17.345 12.101 17.345 22.975v36.44c0 13.109-10.747 23.866-23.893 23.866h-10.334v9.945c0 12.588-10.341 22.929-22.93 22.929h-46.304c-12.589 0-22.93-10.341-22.93-22.929v-9.945h-10.334c-13.146 0-23.893-10.757-23.893-23.866v-36.44c0-10.874 7.36-20.111 17.345-22.975zm111.948-.917c4.199-42.194 15.78-62.332 26.488-79.049 10.147-15.842 19.65-28.207 19.65-56.638 0-52.513-42.597-95.109-95.109-95.109-52.537 0-95.135 42.596-95.135 95.109 0 28.431 9.503 40.796 19.65 56.638 10.708 16.717 22.289 36.855 26.488 79.049zm2.554-78.61c-1.175 13.701-11.985 24.191-24.783 24.191-13.527 0-24.862-12.086-24.862-26.673v-99.328c0-14.12 11.335-26.673 24.862-26.673 11.309 0 21.031 8.139 23.975 19.497 9.12 3.904 15.688 13.438 15.688 24.78 0 1.153-.068 2.289-.201 3.403 5.078 5.326 8.283 12.802 8.283 21.117 0 6.39-1.889 12.262-5.06 17.053 1.996 4.099 3.13 8.773 3.13 13.76 0 14.1-9.065 25.697-21.032 28.873zm-16.452-109.977c-1.964-2.729-4.916-4.506-8.331-4.506-6.192 0-10.862 6.21-10.862 12.673v99.328c0 6.677 4.67 12.673 10.862 12.673 5.516 0 9.822-4.614 10.717-10.425-4.709-1.416-8.923-4.144-12.279-7.814-2.607-2.852-2.409-7.283.443-9.89 2.851-2.607 7.282-2.408 9.889.443 2.416 2.642 5.72 4.356 9.402 4.356 7.733 0 13.643-7.218 13.643-15.734s-5.91-15.734-13.643-15.734c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7 5.352 0 10.388 1.655 14.658 4.533.593-1.743.915-3.634.915-5.612 0-2.11-.366-4.128-1.036-5.972-.769.858-1.588 1.66-2.453 2.397-2.94 2.507-7.361 2.156-9.869-.784-2.507-2.939-2.155-7.361.784-9.868 2.773-2.365 4.492-6.122 4.492-10.293 0-6.072-3.705-11.374-8.898-12.467-.154-.023-.307-.052-.458-.085-.499-.08-1.01-.121-1.532-.121-2.947 0-5.591 1.389-7.515 3.525-2.585 2.87-7.015 3.101-9.886.515-2.87-2.586-3.101-7.015-.515-9.886 3.111-3.453 7.059-5.988 11.472-7.252zm-104.526 67.344c-3.171-4.791-5.06-10.663-5.06-17.053 0-8.307 3.198-15.777 8.284-21.104-.133-1.118-.202-2.258-.202-3.416 0-11.354 6.582-20.897 15.717-24.792 2.948-11.354 12.67-19.485 23.946-19.485 13.56 0 24.888 12.555 24.888 26.673v99.328c0 14.585-11.328 26.673-24.888 26.673-12.765 0-23.578-10.484-24.757-24.184-11.98-3.166-21.058-14.769-21.058-28.88 0-4.987 1.134-9.661 3.13-13.76zm9.982-23.036c-.675 1.847-1.042 3.869-1.042 5.983 0 1.978.322 3.869.915 5.612 4.27-2.878 9.306-4.533 14.658-4.533 3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7-7.733 0-13.643 7.218-13.643 15.734s5.91 15.734 13.643 15.734c3.682 0 6.986-1.714 9.402-4.356 2.607-2.851 7.038-3.05 9.889-.443 2.852 2.607 3.05 7.038.443 9.89-3.35 3.664-7.556 6.389-12.255 7.807.891 5.813 5.192 10.432 10.693 10.432 6.21 0 10.888-5.993 10.888-12.673v-99.328c0-6.466-4.678-12.673-10.888-12.673-3.404 0-6.349 1.777-8.309 4.507 4.421 1.264 8.367 3.8 11.476 7.251 2.586 2.871 2.355 7.3-.516 9.886-2.87 2.586-7.3 2.355-9.886-.515-1.926-2.138-4.574-3.525-7.54-3.525-.493 0-.976.037-1.448.108-.196.045-.395.082-.596.11-5.165 1.118-8.844 6.404-8.844 12.455 0 1.243.153 2.45.442 3.594.101.284.183.572.246.862.748 2.326 2.071 4.346 3.814 5.823 2.947 2.498 3.311 6.919.813 9.866s-6.919 3.312-9.866.814c-.878-.745-1.71-1.554-2.489-2.422zm3.042 158.279c-5.442 0-9.893 4.451-9.893 9.892v36.44c0 5.423 4.454 9.866 9.893 9.866h17.334c3.866 0 7 3.134 7 7v16.945c0 4.902 4.027 8.929 8.93 8.929h46.304c4.903 0 8.93-4.027 8.93-8.929v-16.945c0-3.866 3.134-7 7-7h17.334c5.439 0 9.893-4.443 9.893-9.866v-36.44c0-5.441-4.451-9.892-9.893-9.892zm63.416-314.093 2.907-5.412c1.828-3.403 6.075-4.683 9.479-2.854 3.403 1.828 4.682 6.075 2.854 9.479l-16.073 29.925c-1.22 2.271-3.589 3.688-6.167 3.688s-4.947-1.417-6.167-3.688l-16.073-29.925c-1.828-3.404-.549-7.651 2.854-9.479 3.404-1.829 7.651-.549 9.479 2.854l2.907 5.412v-69.835c0-3.863 3.137-7 7-7s7 3.137 7 7zm-132.198 54.758-49.381-49.381c-2.732-2.731-2.732-7.167 0-9.899s7.168-2.732 9.9 0l49.38 49.38-1.771-5.881c-1.114-3.7.985-7.608 4.684-8.722 3.7-1.114 7.607.985 8.721 4.685l9.796 32.526c.743 2.468.069 5.145-1.753 6.968-1.823 1.823-4.5 2.496-6.969 1.753l-32.526-9.795c-3.699-1.114-5.798-5.022-4.684-8.721s5.022-5.798 8.721-4.684zm-44.859 122.299h-69.835c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7h69.835l-5.412-2.907c-3.403-1.828-4.682-6.076-2.854-9.479 1.828-3.404 6.075-4.683 9.479-2.855l29.926 16.074c2.271 1.22 3.688 3.589 3.688 6.167 0 2.577-1.417 4.947-3.688 6.166l-29.926 16.074c-3.404 1.828-7.651.549-9.479-2.855-1.828-3.403-.549-7.651 2.854-9.479zm54.758 118.198-49.38 49.38c-2.732 2.732-7.168 2.732-9.9 0s-2.732-7.167 0-9.899l49.381-49.381-5.882 1.772c-3.699 1.114-7.607-.985-8.721-4.685-1.114-3.699.985-7.607 4.684-8.721l32.526-9.795c2.469-.743 5.146-.07 6.969 1.753 1.822 1.823 2.496 4.5 1.753 6.968l-9.796 32.527c-1.114 3.699-5.021 5.798-8.721 4.684-3.699-1.114-5.798-5.022-4.684-8.721zm240.497-240.497 5.882-1.771c3.699-1.114 7.607.985 8.721 4.684s-.985 7.607-4.684 8.721l-32.526 9.795c-2.469.743-5.146.07-6.969-1.753-1.822-1.823-2.496-4.5-1.753-6.968l9.796-32.526c1.114-3.7 5.021-5.799 8.721-4.685 3.699 1.114 5.798 5.022 4.684 8.722l-1.771 5.881 49.38-49.38c2.732-2.732 7.168-2.732 9.9 0s2.732 7.168 0 9.899zm44.859 122.299 5.412 2.906c3.403 1.828 4.682 6.076 2.854 9.479-1.828 3.404-6.075 4.683-9.479 2.855l-29.926-16.074c-2.271-1.219-3.688-3.589-3.688-6.166 0-2.578 1.417-4.947 3.688-6.167l29.926-16.074c3.404-1.828 7.651-.549 9.479 2.855 1.828 3.403.549 7.651-2.854 9.479l-5.412 2.907h69.835c3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7zm-54.758 118.198 1.771 5.882c1.114 3.699-.985 7.607-4.684 8.721-3.7 1.114-7.607-.985-8.721-4.684l-9.796-32.527c-.743-2.468-.069-5.145 1.753-6.968 1.823-1.823 4.5-2.496 6.969-1.753l32.526 9.795c3.699 1.114 5.798 5.022 4.684 8.721-1.114 3.7-5.022 5.799-8.721 4.685l-5.882-1.772 49.381 49.381c2.732 2.732 2.732 7.167 0 9.899s-7.168 2.732-9.9 0z\"></path></svg>				\n									<h5>\n							gennemtænkte løsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"outline\"><path d=\"M486.41,144A28,28,0,0,0,472,92H349.123l5.457-21.828a48.513,48.513,0,0,0-12.848-46.153A41.035,41.035,0,0,0,312.609,12H308a8.009,8.009,0,0,0-8,8V47.413l-19.233,64.112A17.376,17.376,0,0,1,268,123.539V112a4,4,0,0,0-4-4H152a4,4,0,0,0-4,4v72a4,4,0,0,0,8,0V116h72V276H156V248a4,4,0,0,0-8,0v32a4,4,0,0,0,4,4H264a4,4,0,0,0,4-4V268.5h11.168A37.07,37.07,0,0,1,305.092,279a45.025,45.025,0,0,0,31.48,12.752L440,292a27.987,27.987,0,0,0,19.369-48.2,27.987,27.987,0,0,0,16-48A28,28,0,0,0,486.41,144ZM260,276H236V116h24Zm212-88H396a4,4,0,0,0,0,8h60a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h40a20,20,0,0,1,.01,40l-103.428-.25a37.07,37.07,0,0,1-25.924-10.5,45.031,45.031,0,0,0-31.49-12.752H268V131.686a25.317,25.317,0,0,0,20.429-17.862l19.4-64.675A4,4,0,0,0,308,48V20h4.609a33.082,33.082,0,0,1,23.481,9.69,40.507,40.507,0,0,1,10.728,38.541l-6.7,26.8A4,4,0,0,0,344,100H472a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h72a20,20,0,0,1,0,40Z\"></path><path d=\"M194.5,183.243l-1.9-.217a4,4,0,0,0-4.169,2.491L184.29,195.9H135.278l-3.539-9.317a4,4,0,0,0-7.478,2.84l2.459,6.477h-8.474L68.452,156.872a4,4,0,1,0-4.935,6.3L77.6,174.209,56.961,194.48l-6.636-5.491a4,4,0,1,0-5.1,6.163L87.219,229.9a44.1,44.1,0,0,0,28.05,10.1H212a8.009,8.009,0,0,0,8-8V203.9a8.009,8.009,0,0,0-8-8h-8v-2.01A10.708,10.708,0,0,0,194.5,183.243ZM212,203.9V232H115.269a36.081,36.081,0,0,1-22.951-8.264l-29.16-24.128,20.8-20.422L114.4,203.045a4,4,0,0,0,2.468.852H187a4,4,0,0,0,3.715-2.517l3.929-9.843a2.712,2.712,0,0,1,1.356,2.35v6.01a4,4,0,0,0,4,4Z\"></path><path d=\"M223.084,484.672,200.87,469.863V346.36A44.1,44.1,0,0,0,195.327,325l-17.183-30.94a4,4,0,0,0-7,3.884l17.184,30.94a36.073,36.073,0,0,1,4.537,17.478V468H164.333a4,4,0,1,0,0,8h31.321l12,8H152.865V352a4,4,0,0,0-.358-1.655l-25.454-56A4,4,0,0,0,123.411,292H114.2a4,4,0,0,0-3.945,4.658l8.862,53.175a36.016,36.016,0,0,1-1.951,18.949L78.642,468H48.333a4,4,0,1,0,0,8H80.377L92,484H32.088L76.63,361.366a4.017,4.017,0,0,0,.183-2.044L61.1,268H136a4,4,0,0,0,0-8H59.233L30.555,173.966A19.723,19.723,0,0,1,49.27,148H76a12,12,0,0,0,24,0h15.2a21.975,21.975,0,0,1,8.395,1.652l10.889,4.458a4,4,0,1,0,3.032-7.4L126.63,142.25A29.938,29.938,0,0,0,115.2,140H100v-4.527A16.014,16.014,0,0,0,112,120V103.473A16.014,16.014,0,0,0,124,88V80a4,4,0,0,0-4-4H90A22.025,22.025,0,0,0,68,98v18a12.02,12.02,0,0,0,8,11.314V140H49.27a27.723,27.723,0,0,0-26.305,36.5l29.493,88.482,16.29,94.655-46.128,127A4,4,0,0,0,26.38,492h78.485a4,4,0,0,0,2.268-7.3L86.3,470.368l38.318-98.69a44.018,44.018,0,0,0,2.385-23.16L118.921,300h1.914l24.03,52.867V488a4,4,0,0,0,4,4h72a4,4,0,0,0,2.219-7.328ZM76,98A14.015,14.015,0,0,1,90,84h26v4a8.009,8.009,0,0,1-8,8H92a4,4,0,0,0-4,4,11.962,11.962,0,0,1-1.53,5.881A12.044,12.044,0,0,0,76,104.686Zm4,14a3.981,3.981,0,0,1,3.407,1.9,4,4,0,0,0,5.956.975c.207-.171.7-.648.7-.648.032-.028.061-.057.09-.087A19.907,19.907,0,0,0,95.6,104H104v16a8.009,8.009,0,0,1-8,8,12.133,12.133,0,0,1-2.681-.3,4,4,0,1,0-1.775,7.8c.151.035.3.06.456.091V148a4,4,0,1,1-8,0V124a4,4,0,0,0-4-4,4,4,0,0,1,0-8Z\"></path></g></svg>				\n									<h5>\n							arbejde udført med ansvar						\n					</h5>\n				<p>Vi lover ikke mere, end vi kan holde – men vi holder det, vi lover.</p>			<h2>KONTAKT OS</h2>		<p>Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.</p>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-14 10:57:55', '2026-02-14 10:57:55', '', 10, 'https://mrarif.me/cpnordic/?p=725', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(726, 1, '2026-02-14 11:01:23', '2026-02-14 11:01:23', '<h1>CP NORDIC ApS</h1>					<h4>Byggeri – Tømrerarbejde og tagdækning</h4>										<a href=\"https://mrarif.me/cpnordic/kontakt/\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"https://mrarif.me/cpnordic/om-os/\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"https://mrarif.me/cpnordic/tomrerarbejde/\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>								<a href=\"https://mrarif.me/cpnordic/tagdaekning/\">\n									Lær mere\n					</a>\n									<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle ANMELDELSER\n					</a>\n					<h2>HVORFOR VÆLGE CP NORDIC ApS?</h2>		<p>Når du vælger CP NORDIC ApS, får du:</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 450 450\" width=\"512\"><g><g><path d=\"m225 165.2c-25.9 0-48.9-18.8-53.3-45.2-2.4-14.2.9-28.6 9.3-40.3 8.4-11.8 20.9-19.5 35.1-21.9 29.4-4.9 57.3 15 62.2 44.5 4.9 29.4-15 57.3-44.4 62.2-3 .5-6 .7-8.9.7zm-7.6-99.8c-12.2 2-22.9 8.7-30.1 18.8s-10.1 22.4-8 34.6c3.8 22.7 23.5 38.8 45.7 38.8 2.5 0 5.1-.2 7.6-.6 25.2-4.2 42.3-28.1 38.1-53.4s-28.1-42.4-53.3-38.2z\"></path><path d=\"m255.2 115c-2.1 0-3.8-1.7-3.8-3.8 0-14.6-11.8-26.4-26.4-26.4-2.1 0-3.8-1.7-3.8-3.8s1.7-3.8 3.8-3.8c18.8 0 34.1 15.3 34.1 34.1 0 2-1.8 3.7-3.9 3.7z\"></path><path d=\"m236.1 203h-22.2c-2.1 0-3.8-1.7-3.8-3.8v-14.1c-3.1-.6-6.1-1.4-9.1-2.4l-7 12.2c-1.1 1.8-3.4 2.5-5.3 1.4l-19.2-11.1c-.9-.5-1.5-1.4-1.8-2.3-.3-1-.1-2 .4-2.9l7-12.1c-2.4-2.1-4.6-4.3-6.7-6.6l-12.1 7c-1.8 1.1-4.2.4-5.2-1.4l-11.1-19.2c-1.1-1.8-.4-4.2 1.4-5.2l11.9-6.8c-1-3-1.9-6.1-2.6-9.3h-13.7c-2.1 0-3.8-1.7-3.8-3.8v-22.2c0-2.1 1.7-3.8 3.8-3.8h13.4c.6-3.2 1.4-6.4 2.4-9.5l-11.5-6.6c-1.8-1.1-2.5-3.4-1.4-5.3l11.1-19.6c.5-.9 1.4-1.5 2.3-1.8s2-.1 2.9.4l11.3 6.6c2.2-2.5 4.5-4.8 7-7l-6.5-11.3c-.5-.9-.6-1.9-.4-2.9.3-1 .9-1.8 1.8-2.3l19.2-11.1c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l6.4 11.2c3.1-1.1 6.4-1.9 9.7-2.6v-13c0-2.1 1.7-3.8 3.8-3.8h22.2c2.1 0 3.8 1.7 3.8 3.8v12.8c3.3.7 6.5 1.5 9.7 2.6l6.5-11.2c.5-.9 1.4-1.5 2.3-1.8 1-.3 2-.1 2.9.4l19.2 11.1c.9.5 1.5 1.3 1.8 2.3s.1 2-.4 2.9l-6.5 11.3c2.5 2.2 4.8 4.5 7 7.1l11.3-6.6c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l11.1 19.2c1.1 1.8.4 4.2-1.4 5.3l-11.5 6.6c1 3.1 1.8 6.3 2.5 9.5h13.6c2.1 0 3.8 1.7 3.8 3.8v22.2c0 2.1-1.7 3.8-3.8 3.8h-13.6c-.6 3.1-1.5 6.2-2.5 9.3l11.9 6.8c1.8 1.1 2.5 3.4 1.4 5.2l-11.2 19.5c-1.1 1.8-3.4 2.5-5.2 1.4l-12-7c-2.1 2.4-4.4 4.6-6.7 6.6l7 12.1c.5.9.6 1.9.4 2.9s-.9 1.8-1.8 2.3l-19.2 11.1c-1.8 1.1-4.2.4-5.2-1.4l-7-12.2c-3 1-6 1.8-9.1 2.4v14.1c-.2 2.3-2 4-4.1 4zm-18.4-7.7h14.5v-13.5c0-1.9 1.4-3.5 3.3-3.8 4.7-.7 9.4-2 13.8-3.7 1.8-.7 3.8 0 4.7 1.7l6.7 11.6 12.6-7.3-6.7-11.6c-1-1.6-.5-3.7.9-4.9 3.7-3 7.2-6.4 10.2-10.1 1.2-1.5 3.3-1.8 4.9-.9l11.5 6.6 7.3-12.6-11.3-6.5c-1.6-.9-2.4-3-1.6-4.7 1.8-4.5 3.1-9.2 3.9-14 .3-1.9 1.9-3.2 3.8-3.2h13v-14.6h-12.8c-1.9 0-3.5-1.4-3.8-3.3-.7-4.8-2-9.6-3.7-14.2-.7-1.8 0-3.7 1.7-4.7l10.9-6.3-7.3-12.6-10.8 6.3c-1.6.9-3.7.6-4.9-.9-3.1-3.9-6.6-7.4-10.4-10.6-1.5-1.2-1.9-3.3-.9-4.9l6.2-10.7-12.6-7.3-6.1 10.6c-1 1.6-3 2.3-4.7 1.7-4.6-1.8-9.5-3.1-14.4-3.9-1.9-.3-3.3-1.9-3.3-3.8v-12.2h-14.5v12.3c0 1.9-1.4 3.5-3.3 3.8-5 .8-9.8 2.1-14.4 3.9-1.8.7-3.8 0-4.7-1.7l-6.1-10.6-12.6 7.3 6.2 10.7c.9 1.6.6 3.7-.9 4.9-3.9 3.1-7.4 6.7-10.4 10.6-1.2 1.5-3.3 1.9-4.9.9l-10.8-6.3-7.3 12.6 10.9 6.3c1.6.9 2.3 2.9 1.7 4.7-1.7 4.6-3 9.4-3.7 14.2-.3 1.9-1.9 3.3-3.8 3.3h-12.8v14.5h13c1.9 0 3.5 1.4 3.8 3.2.8 4.8 2.1 9.5 3.9 14 .7 1.8 0 3.8-1.6 4.7l-11.3 6.5 7.3 12.6 11.5-6.6c1.6-.9 3.7-.6 4.9.9 3 3.7 6.5 7.1 10.3 10.1 1.5 1.2 1.9 3.3.9 4.9l-6.7 11.6 12.6 7.3 6.7-11.6c.9-1.6 2.9-2.3 4.7-1.7 4.5 1.7 9.1 2.9 13.8 3.7 1.9.3 3.3 1.9 3.3 3.8z\"></path></g><g><g><g><path d=\"m45.3 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m153.9 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path></g><g><path d=\"m189.3 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.2c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c0 2.1-1.7 3.8-3.8 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m73.3 326.4c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m126 326.4c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m99.7 325.6c-.6 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4s4.1 1.1 4.4 3.2c2.4 16.5 12.3 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m50.2 266.6c-.1 0-.2 0-.3 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.7 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-8.9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.5 2.2zm81.8-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13.1-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.4-.7 2.3-.7z\"></path></g></g></g><g><g><path d=\"m296.1 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m404.7 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path></g><g><path d=\"m440 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.1c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c.2 2.1-1.6 3.8-3.7 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m324 326.3c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m376.7 326.3c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m350.4 325.6c-.5 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4 2.1-.3 4 1.1 4.4 3.2 2.4 16.5 12.4 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m301 266.6c-.1 0-.2 0-.4 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.6 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.4 2.2zm81.7-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.5-.7 2.3-.7z\"></path></g></g></g></g></g></svg>				\n									<h5>\n							et ungt og engageret team						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"496pt\" viewBox=\"0 0 496 496\" width=\"496pt\"><path d=\"m440 328h-28.207031c5.078125-6.703125 8.207031-14.960938 8.207031-24 0-8.824219-7.175781-16-16-16h-12v-19.960938c59.574219-14.445312 104-68.085937 104-132.039062 0-74.992188-61.007812-136-136-136s-136 61.007812-136 136c0 63.953125 44.425781 117.59375 104 132.039062v19.960938h-8.449219c-6.167969 0-12.359375 1.464844-17.886719 4.214844l-50.480468 25.25c-3.320313 1.664062-7.03125 2.535156-10.734375 2.535156h-40.449219v-16h-104v16h56v56h16v-56h16v128h-16v-56h-16v56h-56v16h104v-16h40.449219c3.703125 0 7.414062.871094 10.734375 2.527344l34.488281 17.25c5.519531 2.757812 11.710937 4.222656 17.878906 4.222656h24.449219v24h64v-24h48c13.230469 0 24-10.769531 24-24 0-6.167969-2.40625-11.742188-6.238281-16 3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16 0-13.230469-10.769531-24-24-24zm8 24c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm-208-280c0-66.167969 53.832031-120 120-120s120 53.832031 120 120-53.832031 120-120 120-120-53.832031-120-120zm104 134.976562c5.257812.617188 10.574219 1.023438 16 1.023438s10.742188-.40625 16-1.023438v17.023438h-32zm-40.449219 185.023438c-3.703125 0-7.414062-.871094-10.734375-2.527344l-34.488281-17.25c-5.519531-2.757812-11.710937-4.222656-17.878906-4.222656h-40.449219v-96h40.449219c6.167969 0 12.359375-1.464844 17.886719-4.214844l50.480468-25.25c3.320313-1.664062 7.03125-2.535156 10.734375-2.535156h84.449219c0 13.230469-10.769531 24-24 24h-48.28125l-23.863281 35.808594c-6.101563 9.160156-14.527344 16.589844-24.367188 21.503906-8.753906 4.375-18.542969 6.6875-28.320312 6.6875h-15.167969v16h15.167969c12.246093 0 24.519531-2.894531 35.472656-8.375 12.328125-6.160156 22.878906-15.480469 30.527344-26.945312l6.832031-10.253907v93.574219zm40.449219 24v-136h17.472656c-.898437 2.511719-1.472656 5.183594-1.472656 8 0 6.167969 2.40625 11.742188 6.238281 16-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16 0 10.414062 6.710938 19.214844 16 22.527344v9.472656zm96-24h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8s-3.59375 8-8 8zm0 0\"></path><path d=\"m394.878906 73.007812-7.757812 13.984376c17.816406 9.878906 28.878906 28.664062 28.878906 49.007812h16c0-26.160156-14.222656-50.296875-37.121094-62.992188zm0 0\"></path><path d=\"m360 80c4.734375 0 9.449219.59375 14.007812 1.769531l3.976563-15.503906c-5.855469-1.496094-11.90625-2.265625-17.984375-2.265625zm0 0\"></path><path d=\"m360 48c48.519531 0 88 39.480469 88 88 0 20.753906-7.398438 40.910156-20.832031 56.785156l12.207031 10.34375c15.882812-18.761718 24.625-42.601562 24.625-67.128906 0-57.34375-46.65625-104-104-104-24.527344 0-48.367188 8.753906-67.128906 24.632812l10.335937 12.199219c15.871094-13.433593 36.039063-20.832031 56.792969-20.832031zm0 0\"></path><path d=\"m427.128906 215.367188-10.335937-12.199219c-15.871094 13.433593-36.039063 20.832031-56.792969 20.832031-48.519531 0-88-39.480469-88-88 0-20.753906 7.398438-40.910156 20.832031-56.785156l-12.207031-10.34375c-15.882812 18.761718-24.625 42.601562-24.625 67.128906 0 57.34375 46.65625 104 104 104 24.527344 0 48.367188-8.753906 67.128906-24.632812zm0 0\"></path><path d=\"m121.214844 165.640625c4.953125-1.375 9.695312-3.34375 14.183594-5.878906l9.769531 4.886719 19.472656-19.480469-4.886719-9.769531c2.535156-4.496094 4.503906-9.230469 5.886719-14.183594l10.359375-3.445313v-27.53125l-10.351562-3.453125c-1.375-4.953125-3.34375-9.707031-5.886719-14.183594l4.886719-9.777343-19.472657-19.472657-9.769531 4.886719c-4.484375-2.535156-9.230469-4.503906-14.183594-5.878906l-3.453125-10.359375h-27.539062l-3.445313 10.359375c-4.953125 1.375-9.695312 3.34375-14.183594 5.878906l-9.777343-4.886719-19.472657 19.472657 4.886719 9.777343c-2.535156 4.488282-4.503906 9.230469-5.886719 14.183594l-10.351562 3.445313v27.53125l10.351562 3.453125c1.375 4.953125 3.34375 9.695312 5.886719 14.183594l-4.886719 9.769531 19.472657 19.480469 9.769531-4.886719c4.484375 2.535156 9.230469 4.503906 14.183594 5.878906l3.453125 10.359375h27.539062zm-12.304688-13.679687-2.679687 8.039062h-4.460938l-2.679687-8.039062-4.554688-.90625c-6.128906-1.222657-11.878906-3.605469-17.109375-7.09375l-3.867187-2.578126-7.574219 3.800782-3.160156-3.167969 3.792969-7.582031-2.578126-3.859375c-3.488281-5.222657-5.871093-10.980469-7.09375-17.109375l-.914062-4.554688-8.03125-2.679687v-4.46875l8.03125-2.671875.914062-4.554688c1.222657-6.136718 3.613282-11.886718 7.09375-17.109375l2.578126-3.859375-3.792969-7.589844 3.160156-3.160156 7.574219 3.800782 3.867187-2.578126c5.222657-3.488281 10.980469-5.863281 17.109375-7.09375l4.554688-.90625 2.679687-8.039062h4.460938l2.679687 8.039062 4.554688.90625c6.128906 1.222657 11.878906 3.605469 17.109375 7.09375l3.867187 2.578126 7.574219-3.800782 3.160156 3.160156-3.792969 7.589844 2.578126 3.859375c3.488281 5.214844 5.871093 10.972657 7.09375 17.109375l.914062 4.554688 8.03125 2.679687v4.46875l-8.03125 2.671875-.914062 4.554688c-1.222657 6.128906-3.613282 11.878906-7.09375 17.109375l-2.578126 3.859375 3.792969 7.582031-3.160156 3.167969-7.574219-3.800782-3.867187 2.578126c-5.222657 3.488281-10.980469 5.863281-17.109375 7.09375zm0 0\"></path><path d=\"m104 72c-17.648438 0-32 14.351562-32 32s14.351562 32 32 32 32-14.351562 32-32-14.351562-32-32-32zm0 48c-8.824219 0-16-7.175781-16-16s7.175781-16 16-16 16 7.175781 16 16-7.175781 16-16 16zm0 0\"></path><path d=\"m160 248v-40h48v-208h-208v208h106.664062zm-144-232h176v176h-48v24l-32-24h-96zm0 0\"></path><path d=\"m0 272h16v16h-16zm0 0\"></path><path d=\"m32 272h16v16h-16zm0 0\"></path><path d=\"m64 272h16v16h-16zm0 0\"></path><path d=\"m32 304h16v16h-16zm0 0\"></path><path d=\"m64 304h16v16h-16zm0 0\"></path><path d=\"m0 480h16v16h-16zm0 0\"></path><path d=\"m32 480h16v16h-16zm0 0\"></path><path d=\"m64 480h16v16h-16zm0 0\"></path><path d=\"m32 448h16v16h-16zm0 0\"></path><path d=\"m64 448h16v16h-16zm0 0\"></path></svg>				\n									<h5>\n							fokus på kvalitet og detaljer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m469.12 408.93-67.26-33.63v-22.13c10.71-7.69 18.6-19.07 21.78-32.27h5.28c8.81 0 15.98-7.17 15.98-15.98v-5.29c0-6.35-3.74-11.84-9.12-14.41 5.19-18.64-1.65-39.76-19.44-59.78-12.58-14.16-30.67-22.27-49.62-22.27-18.93 0-37.01 8.12-49.59 22.27-13.38 15.05-20.95 41.01-14.03 59.62-5.56 2.5-9.45 8.09-9.45 14.57v5.29c0 8.81 7.17 15.98 15.98 15.98h5.55c3.16 13.09 10.94 24.39 21.51 32.08v22.32l-67.26 33.63c-16.7 5.87-27.89 21.6-27.89 39.28v41.63c0 3.31 2.69 6 6 6h243.46c3.31 0 6-2.69 6-6v-41.63c0-17.68-11.19-33.41-27.88-39.28zm-62.24-17.7-15.83 27.66-13.29-13.29 19.29-19.29zm-37.61 5.88-20.59-20.58v-16.91c6.41 2.57 13.4 4.01 20.72 4.01 7.22 0 14.11-1.39 20.45-3.9v16.8zm63.63-97.48v5.29c0 2.16-1.82 3.98-3.98 3.98h-3.74c.01-.36.03-.71.03-1.07v-12.18h3.71c2.15-.01 3.98 1.82 3.98 3.98zm-119.29 8.2v1.07h-3.98c-2.16 0-3.98-1.82-3.98-3.98v-5.29c0-2.16 1.82-3.98 3.98-3.98l3.98.22zm1.95-24.19c-7.33-13.69-.89-37.39 10.53-50.24 10.31-11.6 25.12-18.25 40.63-18.25 15.52 0 30.34 6.65 40.65 18.25 8.43 9.48 21.3 27.59 17.4 46.39-5.66-.35-10.67-2.55-14.4-6.36-5.37-5.49-7.72-14-6.63-23.94.29-2.62-1.17-5.13-3.6-6.17s-5.25-.37-6.95 1.65c-19.33 22.92-45.95 36.76-73.9 38.68h-3.73zm10.05 24.19v-12.73c24.57-2.92 47.92-14.05 66.73-31.8 1.43 7.26 4.63 13.6 9.45 18.52 3.27 3.35 7.14 5.89 11.41 7.58v18.42c0 24.15-19.65 43.8-43.8 43.8s-43.79-19.64-43.79-43.79zm15.89 78.48 19.29 19.29-13.29 13.29-15.84-27.66zm3.22 97.53h-39.42v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.76v-35.63c0-12.68 8.1-23.95 20.15-28.05.26-.09.51-.19.75-.31l46.47-23.23 20.07 35.06c.93 1.62 2.56 2.72 4.41 2.97.27.04.53.05.79.05 1.58 0 3.11-.62 4.24-1.76l.14-.14zm12.08 0 7.41-64.69 5.06-5.06 4.84 4.84 7.86 64.92h-25.17zm128.2 0h-39.76v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.18l-6.2-51.17.25.25c1.13 1.13 2.66 1.76 4.24 1.76.26 0 .53-.02.79-.05 1.85-.25 3.48-1.34 4.41-2.97l20.07-35.06 46.47 23.23c.24.12.49.23.75.31 12.05 4.1 20.15 15.38 20.15 28.05v35.65zm-67.04-346.65h-10.84l28.38 39.84 28.38-39.84h-10.84c-3.31 0-6-2.69-6-6v-64.58h-98.7c-3.31 0-6-2.69-6-6s2.69-6 6-6h104.7c3.31 0 6 2.69 6 6v64.58h16.48c2.25 0 4.3 1.25 5.33 3.25s.86 4.4-.45 6.23l-40.02 56.18c-1.13 1.58-2.95 2.52-4.89 2.52s-3.76-.94-4.89-2.52l-40.02-56.18c-1.3-1.83-1.48-4.23-.45-6.23s3.09-3.25 5.33-3.25h16.48v-23.5h-65.38c-3.31 0-6-2.69-6-6s2.69-6 6-6h71.38c3.31 0 6 2.69 6 6v35.5c.02 3.31-2.67 6-5.98 6zm-118.44 50.65v-133.26c0-21.18-17.23-38.41-38.41-38.41h-207.7c-21.18-.01-38.41 17.23-38.41 38.41v133.26c0 21.18 17.23 38.41 38.41 38.41h105.8l64.8 55.11c1.11.94 2.49 1.43 3.89 1.43.85 0 1.71-.18 2.52-.55 2.12-.98 3.48-3.11 3.48-5.45v-50.54h27.21c21.18 0 38.41-17.23 38.41-38.41zm-71.62 26.41c-3.31 0-6 2.69-6 6v43.56l-56.59-48.13c-1.08-.92-2.46-1.43-3.89-1.43h-108.01c-14.56 0-26.41-11.85-26.41-26.41v-133.26c0-14.56 11.85-26.41 26.41-26.41h207.69c14.56 0 26.41 11.85 26.41 26.41v133.26c0 14.56-11.85 26.41-26.41 26.41zm-156.34-87.87h56.97c3.31 0 6-2.69 6-6v-39.2l8.55-8.55c2.34-2.34 2.34-6.14 0-8.49-2.34-2.34-6.14-2.34-8.48 0l-.7.7c-.98-1.97-3.01-3.32-5.36-3.32h-56.98c-3.31 0-6 2.69-6 6v52.85c0 3.32 2.69 6.01 6 6.01zm6-52.86h44.97v2.69l-18.16 18.16-8.84-8.84c-2.34-2.34-6.14-2.34-8.49 0-2.34 2.34-2.34 6.14 0 8.49l13.08 13.08c1.17 1.17 2.71 1.76 4.24 1.76s3.07-.59 4.24-1.76l13.92-13.92v21.2h-44.96zm173.62 3.08c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 31.92c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 36.52c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.68 5.99 6zm0 31.92c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.69 5.99 6zm-119.36 165.01h10.84l-28.38-39.84-28.38 39.84h10.84c3.31 0 6 2.69 6 6v64.58h98.7c3.31 0 6 2.69 6 6s-2.69 6-6 6h-104.69c-3.31 0-6-2.69-6-6v-64.58h-16.48c-2.25 0-4.3-1.25-5.33-3.25s-.86-4.4.45-6.23l40.02-56.18c1.13-1.58 2.95-2.52 4.89-2.52s3.76.94 4.89 2.52l40.02 56.18c1.3 1.83 1.48 4.23.45 6.23s-3.09 3.25-5.33 3.25h-16.48v23.5h65.38c3.31 0 6 2.69 6 6s-2.69 6-6 6h-71.38c-3.31 0-6-2.69-6-6v-35.5c-.03-3.31 2.66-6 5.97-6z\"></path></svg>				\n									<h5>\n							ærlig<br> rådgivning						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 510 510\"><path d=\"m192.036 385.845c-4.787-46.972-19.459-64.336-30.658-82.352-8.672-13.951-15.5-28.245-15.5-54.252 0-60.242 48.865-109.109 109.135-109.109 60.242 0 109.109 48.866 109.109 109.109 0 26.007-6.828 40.301-15.5 54.252-11.199 18.016-25.871 35.38-30.658 82.352 9.985 2.864 17.345 12.101 17.345 22.975v36.44c0 13.109-10.747 23.866-23.893 23.866h-10.334v9.945c0 12.588-10.341 22.929-22.93 22.929h-46.304c-12.589 0-22.93-10.341-22.93-22.929v-9.945h-10.334c-13.146 0-23.893-10.757-23.893-23.866v-36.44c0-10.874 7.36-20.111 17.345-22.975zm111.948-.917c4.199-42.194 15.78-62.332 26.488-79.049 10.147-15.842 19.65-28.207 19.65-56.638 0-52.513-42.597-95.109-95.109-95.109-52.537 0-95.135 42.596-95.135 95.109 0 28.431 9.503 40.796 19.65 56.638 10.708 16.717 22.289 36.855 26.488 79.049zm2.554-78.61c-1.175 13.701-11.985 24.191-24.783 24.191-13.527 0-24.862-12.086-24.862-26.673v-99.328c0-14.12 11.335-26.673 24.862-26.673 11.309 0 21.031 8.139 23.975 19.497 9.12 3.904 15.688 13.438 15.688 24.78 0 1.153-.068 2.289-.201 3.403 5.078 5.326 8.283 12.802 8.283 21.117 0 6.39-1.889 12.262-5.06 17.053 1.996 4.099 3.13 8.773 3.13 13.76 0 14.1-9.065 25.697-21.032 28.873zm-16.452-109.977c-1.964-2.729-4.916-4.506-8.331-4.506-6.192 0-10.862 6.21-10.862 12.673v99.328c0 6.677 4.67 12.673 10.862 12.673 5.516 0 9.822-4.614 10.717-10.425-4.709-1.416-8.923-4.144-12.279-7.814-2.607-2.852-2.409-7.283.443-9.89 2.851-2.607 7.282-2.408 9.889.443 2.416 2.642 5.72 4.356 9.402 4.356 7.733 0 13.643-7.218 13.643-15.734s-5.91-15.734-13.643-15.734c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7 5.352 0 10.388 1.655 14.658 4.533.593-1.743.915-3.634.915-5.612 0-2.11-.366-4.128-1.036-5.972-.769.858-1.588 1.66-2.453 2.397-2.94 2.507-7.361 2.156-9.869-.784-2.507-2.939-2.155-7.361.784-9.868 2.773-2.365 4.492-6.122 4.492-10.293 0-6.072-3.705-11.374-8.898-12.467-.154-.023-.307-.052-.458-.085-.499-.08-1.01-.121-1.532-.121-2.947 0-5.591 1.389-7.515 3.525-2.585 2.87-7.015 3.101-9.886.515-2.87-2.586-3.101-7.015-.515-9.886 3.111-3.453 7.059-5.988 11.472-7.252zm-104.526 67.344c-3.171-4.791-5.06-10.663-5.06-17.053 0-8.307 3.198-15.777 8.284-21.104-.133-1.118-.202-2.258-.202-3.416 0-11.354 6.582-20.897 15.717-24.792 2.948-11.354 12.67-19.485 23.946-19.485 13.56 0 24.888 12.555 24.888 26.673v99.328c0 14.585-11.328 26.673-24.888 26.673-12.765 0-23.578-10.484-24.757-24.184-11.98-3.166-21.058-14.769-21.058-28.88 0-4.987 1.134-9.661 3.13-13.76zm9.982-23.036c-.675 1.847-1.042 3.869-1.042 5.983 0 1.978.322 3.869.915 5.612 4.27-2.878 9.306-4.533 14.658-4.533 3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7-7.733 0-13.643 7.218-13.643 15.734s5.91 15.734 13.643 15.734c3.682 0 6.986-1.714 9.402-4.356 2.607-2.851 7.038-3.05 9.889-.443 2.852 2.607 3.05 7.038.443 9.89-3.35 3.664-7.556 6.389-12.255 7.807.891 5.813 5.192 10.432 10.693 10.432 6.21 0 10.888-5.993 10.888-12.673v-99.328c0-6.466-4.678-12.673-10.888-12.673-3.404 0-6.349 1.777-8.309 4.507 4.421 1.264 8.367 3.8 11.476 7.251 2.586 2.871 2.355 7.3-.516 9.886-2.87 2.586-7.3 2.355-9.886-.515-1.926-2.138-4.574-3.525-7.54-3.525-.493 0-.976.037-1.448.108-.196.045-.395.082-.596.11-5.165 1.118-8.844 6.404-8.844 12.455 0 1.243.153 2.45.442 3.594.101.284.183.572.246.862.748 2.326 2.071 4.346 3.814 5.823 2.947 2.498 3.311 6.919.813 9.866s-6.919 3.312-9.866.814c-.878-.745-1.71-1.554-2.489-2.422zm3.042 158.279c-5.442 0-9.893 4.451-9.893 9.892v36.44c0 5.423 4.454 9.866 9.893 9.866h17.334c3.866 0 7 3.134 7 7v16.945c0 4.902 4.027 8.929 8.93 8.929h46.304c4.903 0 8.93-4.027 8.93-8.929v-16.945c0-3.866 3.134-7 7-7h17.334c5.439 0 9.893-4.443 9.893-9.866v-36.44c0-5.441-4.451-9.892-9.893-9.892zm63.416-314.093 2.907-5.412c1.828-3.403 6.075-4.683 9.479-2.854 3.403 1.828 4.682 6.075 2.854 9.479l-16.073 29.925c-1.22 2.271-3.589 3.688-6.167 3.688s-4.947-1.417-6.167-3.688l-16.073-29.925c-1.828-3.404-.549-7.651 2.854-9.479 3.404-1.829 7.651-.549 9.479 2.854l2.907 5.412v-69.835c0-3.863 3.137-7 7-7s7 3.137 7 7zm-132.198 54.758-49.381-49.381c-2.732-2.731-2.732-7.167 0-9.899s7.168-2.732 9.9 0l49.38 49.38-1.771-5.881c-1.114-3.7.985-7.608 4.684-8.722 3.7-1.114 7.607.985 8.721 4.685l9.796 32.526c.743 2.468.069 5.145-1.753 6.968-1.823 1.823-4.5 2.496-6.969 1.753l-32.526-9.795c-3.699-1.114-5.798-5.022-4.684-8.721s5.022-5.798 8.721-4.684zm-44.859 122.299h-69.835c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7h69.835l-5.412-2.907c-3.403-1.828-4.682-6.076-2.854-9.479 1.828-3.404 6.075-4.683 9.479-2.855l29.926 16.074c2.271 1.22 3.688 3.589 3.688 6.167 0 2.577-1.417 4.947-3.688 6.166l-29.926 16.074c-3.404 1.828-7.651.549-9.479-2.855-1.828-3.403-.549-7.651 2.854-9.479zm54.758 118.198-49.38 49.38c-2.732 2.732-7.168 2.732-9.9 0s-2.732-7.167 0-9.899l49.381-49.381-5.882 1.772c-3.699 1.114-7.607-.985-8.721-4.685-1.114-3.699.985-7.607 4.684-8.721l32.526-9.795c2.469-.743 5.146-.07 6.969 1.753 1.822 1.823 2.496 4.5 1.753 6.968l-9.796 32.527c-1.114 3.699-5.021 5.798-8.721 4.684-3.699-1.114-5.798-5.022-4.684-8.721zm240.497-240.497 5.882-1.771c3.699-1.114 7.607.985 8.721 4.684s-.985 7.607-4.684 8.721l-32.526 9.795c-2.469.743-5.146.07-6.969-1.753-1.822-1.823-2.496-4.5-1.753-6.968l9.796-32.526c1.114-3.7 5.021-5.799 8.721-4.685 3.699 1.114 5.798 5.022 4.684 8.722l-1.771 5.881 49.38-49.38c2.732-2.732 7.168-2.732 9.9 0s2.732 7.168 0 9.899zm44.859 122.299 5.412 2.906c3.403 1.828 4.682 6.076 2.854 9.479-1.828 3.404-6.075 4.683-9.479 2.855l-29.926-16.074c-2.271-1.219-3.688-3.589-3.688-6.166 0-2.578 1.417-4.947 3.688-6.167l29.926-16.074c3.404-1.828 7.651-.549 9.479 2.855 1.828 3.403.549 7.651-2.854 9.479l-5.412 2.907h69.835c3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7zm-54.758 118.198 1.771 5.882c1.114 3.699-.985 7.607-4.684 8.721-3.7 1.114-7.607-.985-8.721-4.684l-9.796-32.527c-.743-2.468-.069-5.145 1.753-6.968 1.823-1.823 4.5-2.496 6.969-1.753l32.526 9.795c3.699 1.114 5.798 5.022 4.684 8.721-1.114 3.7-5.022 5.799-8.721 4.685l-5.882-1.772 49.381 49.381c2.732 2.732 2.732 7.167 0 9.899s-7.168 2.732-9.9 0z\"></path></svg>				\n									<h5>\n							gennemtænkte løsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"outline\"><path d=\"M486.41,144A28,28,0,0,0,472,92H349.123l5.457-21.828a48.513,48.513,0,0,0-12.848-46.153A41.035,41.035,0,0,0,312.609,12H308a8.009,8.009,0,0,0-8,8V47.413l-19.233,64.112A17.376,17.376,0,0,1,268,123.539V112a4,4,0,0,0-4-4H152a4,4,0,0,0-4,4v72a4,4,0,0,0,8,0V116h72V276H156V248a4,4,0,0,0-8,0v32a4,4,0,0,0,4,4H264a4,4,0,0,0,4-4V268.5h11.168A37.07,37.07,0,0,1,305.092,279a45.025,45.025,0,0,0,31.48,12.752L440,292a27.987,27.987,0,0,0,19.369-48.2,27.987,27.987,0,0,0,16-48A28,28,0,0,0,486.41,144ZM260,276H236V116h24Zm212-88H396a4,4,0,0,0,0,8h60a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h40a20,20,0,0,1,.01,40l-103.428-.25a37.07,37.07,0,0,1-25.924-10.5,45.031,45.031,0,0,0-31.49-12.752H268V131.686a25.317,25.317,0,0,0,20.429-17.862l19.4-64.675A4,4,0,0,0,308,48V20h4.609a33.082,33.082,0,0,1,23.481,9.69,40.507,40.507,0,0,1,10.728,38.541l-6.7,26.8A4,4,0,0,0,344,100H472a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h72a20,20,0,0,1,0,40Z\"></path><path d=\"M194.5,183.243l-1.9-.217a4,4,0,0,0-4.169,2.491L184.29,195.9H135.278l-3.539-9.317a4,4,0,0,0-7.478,2.84l2.459,6.477h-8.474L68.452,156.872a4,4,0,1,0-4.935,6.3L77.6,174.209,56.961,194.48l-6.636-5.491a4,4,0,1,0-5.1,6.163L87.219,229.9a44.1,44.1,0,0,0,28.05,10.1H212a8.009,8.009,0,0,0,8-8V203.9a8.009,8.009,0,0,0-8-8h-8v-2.01A10.708,10.708,0,0,0,194.5,183.243ZM212,203.9V232H115.269a36.081,36.081,0,0,1-22.951-8.264l-29.16-24.128,20.8-20.422L114.4,203.045a4,4,0,0,0,2.468.852H187a4,4,0,0,0,3.715-2.517l3.929-9.843a2.712,2.712,0,0,1,1.356,2.35v6.01a4,4,0,0,0,4,4Z\"></path><path d=\"M223.084,484.672,200.87,469.863V346.36A44.1,44.1,0,0,0,195.327,325l-17.183-30.94a4,4,0,0,0-7,3.884l17.184,30.94a36.073,36.073,0,0,1,4.537,17.478V468H164.333a4,4,0,1,0,0,8h31.321l12,8H152.865V352a4,4,0,0,0-.358-1.655l-25.454-56A4,4,0,0,0,123.411,292H114.2a4,4,0,0,0-3.945,4.658l8.862,53.175a36.016,36.016,0,0,1-1.951,18.949L78.642,468H48.333a4,4,0,1,0,0,8H80.377L92,484H32.088L76.63,361.366a4.017,4.017,0,0,0,.183-2.044L61.1,268H136a4,4,0,0,0,0-8H59.233L30.555,173.966A19.723,19.723,0,0,1,49.27,148H76a12,12,0,0,0,24,0h15.2a21.975,21.975,0,0,1,8.395,1.652l10.889,4.458a4,4,0,1,0,3.032-7.4L126.63,142.25A29.938,29.938,0,0,0,115.2,140H100v-4.527A16.014,16.014,0,0,0,112,120V103.473A16.014,16.014,0,0,0,124,88V80a4,4,0,0,0-4-4H90A22.025,22.025,0,0,0,68,98v18a12.02,12.02,0,0,0,8,11.314V140H49.27a27.723,27.723,0,0,0-26.305,36.5l29.493,88.482,16.29,94.655-46.128,127A4,4,0,0,0,26.38,492h78.485a4,4,0,0,0,2.268-7.3L86.3,470.368l38.318-98.69a44.018,44.018,0,0,0,2.385-23.16L118.921,300h1.914l24.03,52.867V488a4,4,0,0,0,4,4h72a4,4,0,0,0,2.219-7.328ZM76,98A14.015,14.015,0,0,1,90,84h26v4a8.009,8.009,0,0,1-8,8H92a4,4,0,0,0-4,4,11.962,11.962,0,0,1-1.53,5.881A12.044,12.044,0,0,0,76,104.686Zm4,14a3.981,3.981,0,0,1,3.407,1.9,4,4,0,0,0,5.956.975c.207-.171.7-.648.7-.648.032-.028.061-.057.09-.087A19.907,19.907,0,0,0,95.6,104H104v16a8.009,8.009,0,0,1-8,8,12.133,12.133,0,0,1-2.681-.3,4,4,0,1,0-1.775,7.8c.151.035.3.06.456.091V148a4,4,0,1,1-8,0V124a4,4,0,0,0-4-4,4,4,0,0,1,0-8Z\"></path></g></svg>				\n									<h5>\n							arbejde udført med ansvar						\n					</h5>\n				<p>Vi lover ikke mere, end vi kan holde – men vi holder det, vi lover.</p>			<h2>KONTAKT OS</h2>		<p>Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.</p>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-14 11:01:23', '2026-02-14 11:01:23', '', 10, 'https://mrarif.me/cpnordic/?p=726', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(727, 1, '2026-02-14 11:01:23', '2026-02-14 11:01:23', '<h1>CP NORDIC ApS</h1>					<h4>Byggeri – Tømrerarbejde og tagdækning</h4>										<a href=\"https://mrarif.me/cpnordic/kontakt/\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"https://mrarif.me/cpnordic/om-os/\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"https://mrarif.me/cpnordic/tomrerarbejde/\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>								<a href=\"https://mrarif.me/cpnordic/tagdaekning/\">\n									Lær mere\n					</a>\n									<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle ANMELDELSER\n					</a>\n					<h2>HVORFOR VÆLGE CP NORDIC ApS?</h2>		<p>Når du vælger CP NORDIC ApS, får du:</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 450 450\" width=\"512\"><g><g><path d=\"m225 165.2c-25.9 0-48.9-18.8-53.3-45.2-2.4-14.2.9-28.6 9.3-40.3 8.4-11.8 20.9-19.5 35.1-21.9 29.4-4.9 57.3 15 62.2 44.5 4.9 29.4-15 57.3-44.4 62.2-3 .5-6 .7-8.9.7zm-7.6-99.8c-12.2 2-22.9 8.7-30.1 18.8s-10.1 22.4-8 34.6c3.8 22.7 23.5 38.8 45.7 38.8 2.5 0 5.1-.2 7.6-.6 25.2-4.2 42.3-28.1 38.1-53.4s-28.1-42.4-53.3-38.2z\"></path><path d=\"m255.2 115c-2.1 0-3.8-1.7-3.8-3.8 0-14.6-11.8-26.4-26.4-26.4-2.1 0-3.8-1.7-3.8-3.8s1.7-3.8 3.8-3.8c18.8 0 34.1 15.3 34.1 34.1 0 2-1.8 3.7-3.9 3.7z\"></path><path d=\"m236.1 203h-22.2c-2.1 0-3.8-1.7-3.8-3.8v-14.1c-3.1-.6-6.1-1.4-9.1-2.4l-7 12.2c-1.1 1.8-3.4 2.5-5.3 1.4l-19.2-11.1c-.9-.5-1.5-1.4-1.8-2.3-.3-1-.1-2 .4-2.9l7-12.1c-2.4-2.1-4.6-4.3-6.7-6.6l-12.1 7c-1.8 1.1-4.2.4-5.2-1.4l-11.1-19.2c-1.1-1.8-.4-4.2 1.4-5.2l11.9-6.8c-1-3-1.9-6.1-2.6-9.3h-13.7c-2.1 0-3.8-1.7-3.8-3.8v-22.2c0-2.1 1.7-3.8 3.8-3.8h13.4c.6-3.2 1.4-6.4 2.4-9.5l-11.5-6.6c-1.8-1.1-2.5-3.4-1.4-5.3l11.1-19.6c.5-.9 1.4-1.5 2.3-1.8s2-.1 2.9.4l11.3 6.6c2.2-2.5 4.5-4.8 7-7l-6.5-11.3c-.5-.9-.6-1.9-.4-2.9.3-1 .9-1.8 1.8-2.3l19.2-11.1c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l6.4 11.2c3.1-1.1 6.4-1.9 9.7-2.6v-13c0-2.1 1.7-3.8 3.8-3.8h22.2c2.1 0 3.8 1.7 3.8 3.8v12.8c3.3.7 6.5 1.5 9.7 2.6l6.5-11.2c.5-.9 1.4-1.5 2.3-1.8 1-.3 2-.1 2.9.4l19.2 11.1c.9.5 1.5 1.3 1.8 2.3s.1 2-.4 2.9l-6.5 11.3c2.5 2.2 4.8 4.5 7 7.1l11.3-6.6c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l11.1 19.2c1.1 1.8.4 4.2-1.4 5.3l-11.5 6.6c1 3.1 1.8 6.3 2.5 9.5h13.6c2.1 0 3.8 1.7 3.8 3.8v22.2c0 2.1-1.7 3.8-3.8 3.8h-13.6c-.6 3.1-1.5 6.2-2.5 9.3l11.9 6.8c1.8 1.1 2.5 3.4 1.4 5.2l-11.2 19.5c-1.1 1.8-3.4 2.5-5.2 1.4l-12-7c-2.1 2.4-4.4 4.6-6.7 6.6l7 12.1c.5.9.6 1.9.4 2.9s-.9 1.8-1.8 2.3l-19.2 11.1c-1.8 1.1-4.2.4-5.2-1.4l-7-12.2c-3 1-6 1.8-9.1 2.4v14.1c-.2 2.3-2 4-4.1 4zm-18.4-7.7h14.5v-13.5c0-1.9 1.4-3.5 3.3-3.8 4.7-.7 9.4-2 13.8-3.7 1.8-.7 3.8 0 4.7 1.7l6.7 11.6 12.6-7.3-6.7-11.6c-1-1.6-.5-3.7.9-4.9 3.7-3 7.2-6.4 10.2-10.1 1.2-1.5 3.3-1.8 4.9-.9l11.5 6.6 7.3-12.6-11.3-6.5c-1.6-.9-2.4-3-1.6-4.7 1.8-4.5 3.1-9.2 3.9-14 .3-1.9 1.9-3.2 3.8-3.2h13v-14.6h-12.8c-1.9 0-3.5-1.4-3.8-3.3-.7-4.8-2-9.6-3.7-14.2-.7-1.8 0-3.7 1.7-4.7l10.9-6.3-7.3-12.6-10.8 6.3c-1.6.9-3.7.6-4.9-.9-3.1-3.9-6.6-7.4-10.4-10.6-1.5-1.2-1.9-3.3-.9-4.9l6.2-10.7-12.6-7.3-6.1 10.6c-1 1.6-3 2.3-4.7 1.7-4.6-1.8-9.5-3.1-14.4-3.9-1.9-.3-3.3-1.9-3.3-3.8v-12.2h-14.5v12.3c0 1.9-1.4 3.5-3.3 3.8-5 .8-9.8 2.1-14.4 3.9-1.8.7-3.8 0-4.7-1.7l-6.1-10.6-12.6 7.3 6.2 10.7c.9 1.6.6 3.7-.9 4.9-3.9 3.1-7.4 6.7-10.4 10.6-1.2 1.5-3.3 1.9-4.9.9l-10.8-6.3-7.3 12.6 10.9 6.3c1.6.9 2.3 2.9 1.7 4.7-1.7 4.6-3 9.4-3.7 14.2-.3 1.9-1.9 3.3-3.8 3.3h-12.8v14.5h13c1.9 0 3.5 1.4 3.8 3.2.8 4.8 2.1 9.5 3.9 14 .7 1.8 0 3.8-1.6 4.7l-11.3 6.5 7.3 12.6 11.5-6.6c1.6-.9 3.7-.6 4.9.9 3 3.7 6.5 7.1 10.3 10.1 1.5 1.2 1.9 3.3.9 4.9l-6.7 11.6 12.6 7.3 6.7-11.6c.9-1.6 2.9-2.3 4.7-1.7 4.5 1.7 9.1 2.9 13.8 3.7 1.9.3 3.3 1.9 3.3 3.8z\"></path></g><g><g><g><path d=\"m45.3 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m153.9 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path></g><g><path d=\"m189.3 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.2c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c0 2.1-1.7 3.8-3.8 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m73.3 326.4c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m126 326.4c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m99.7 325.6c-.6 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4s4.1 1.1 4.4 3.2c2.4 16.5 12.3 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m50.2 266.6c-.1 0-.2 0-.3 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.7 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-8.9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.5 2.2zm81.8-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13.1-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.4-.7 2.3-.7z\"></path></g></g></g><g><g><path d=\"m296.1 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m404.7 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path></g><g><path d=\"m440 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.1c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c.2 2.1-1.6 3.8-3.7 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m324 326.3c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m376.7 326.3c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m350.4 325.6c-.5 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4 2.1-.3 4 1.1 4.4 3.2 2.4 16.5 12.4 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m301 266.6c-.1 0-.2 0-.4 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.6 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.4 2.2zm81.7-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.5-.7 2.3-.7z\"></path></g></g></g></g></g></svg>				\n									<h5>\n							et ungt og engageret team						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"496pt\" viewBox=\"0 0 496 496\" width=\"496pt\"><path d=\"m440 328h-28.207031c5.078125-6.703125 8.207031-14.960938 8.207031-24 0-8.824219-7.175781-16-16-16h-12v-19.960938c59.574219-14.445312 104-68.085937 104-132.039062 0-74.992188-61.007812-136-136-136s-136 61.007812-136 136c0 63.953125 44.425781 117.59375 104 132.039062v19.960938h-8.449219c-6.167969 0-12.359375 1.464844-17.886719 4.214844l-50.480468 25.25c-3.320313 1.664062-7.03125 2.535156-10.734375 2.535156h-40.449219v-16h-104v16h56v56h16v-56h16v128h-16v-56h-16v56h-56v16h104v-16h40.449219c3.703125 0 7.414062.871094 10.734375 2.527344l34.488281 17.25c5.519531 2.757812 11.710937 4.222656 17.878906 4.222656h24.449219v24h64v-24h48c13.230469 0 24-10.769531 24-24 0-6.167969-2.40625-11.742188-6.238281-16 3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16 0-13.230469-10.769531-24-24-24zm8 24c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm-208-280c0-66.167969 53.832031-120 120-120s120 53.832031 120 120-53.832031 120-120 120-120-53.832031-120-120zm104 134.976562c5.257812.617188 10.574219 1.023438 16 1.023438s10.742188-.40625 16-1.023438v17.023438h-32zm-40.449219 185.023438c-3.703125 0-7.414062-.871094-10.734375-2.527344l-34.488281-17.25c-5.519531-2.757812-11.710937-4.222656-17.878906-4.222656h-40.449219v-96h40.449219c6.167969 0 12.359375-1.464844 17.886719-4.214844l50.480468-25.25c3.320313-1.664062 7.03125-2.535156 10.734375-2.535156h84.449219c0 13.230469-10.769531 24-24 24h-48.28125l-23.863281 35.808594c-6.101563 9.160156-14.527344 16.589844-24.367188 21.503906-8.753906 4.375-18.542969 6.6875-28.320312 6.6875h-15.167969v16h15.167969c12.246093 0 24.519531-2.894531 35.472656-8.375 12.328125-6.160156 22.878906-15.480469 30.527344-26.945312l6.832031-10.253907v93.574219zm40.449219 24v-136h17.472656c-.898437 2.511719-1.472656 5.183594-1.472656 8 0 6.167969 2.40625 11.742188 6.238281 16-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16 0 10.414062 6.710938 19.214844 16 22.527344v9.472656zm96-24h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8s-3.59375 8-8 8zm0 0\"></path><path d=\"m394.878906 73.007812-7.757812 13.984376c17.816406 9.878906 28.878906 28.664062 28.878906 49.007812h16c0-26.160156-14.222656-50.296875-37.121094-62.992188zm0 0\"></path><path d=\"m360 80c4.734375 0 9.449219.59375 14.007812 1.769531l3.976563-15.503906c-5.855469-1.496094-11.90625-2.265625-17.984375-2.265625zm0 0\"></path><path d=\"m360 48c48.519531 0 88 39.480469 88 88 0 20.753906-7.398438 40.910156-20.832031 56.785156l12.207031 10.34375c15.882812-18.761718 24.625-42.601562 24.625-67.128906 0-57.34375-46.65625-104-104-104-24.527344 0-48.367188 8.753906-67.128906 24.632812l10.335937 12.199219c15.871094-13.433593 36.039063-20.832031 56.792969-20.832031zm0 0\"></path><path d=\"m427.128906 215.367188-10.335937-12.199219c-15.871094 13.433593-36.039063 20.832031-56.792969 20.832031-48.519531 0-88-39.480469-88-88 0-20.753906 7.398438-40.910156 20.832031-56.785156l-12.207031-10.34375c-15.882812 18.761718-24.625 42.601562-24.625 67.128906 0 57.34375 46.65625 104 104 104 24.527344 0 48.367188-8.753906 67.128906-24.632812zm0 0\"></path><path d=\"m121.214844 165.640625c4.953125-1.375 9.695312-3.34375 14.183594-5.878906l9.769531 4.886719 19.472656-19.480469-4.886719-9.769531c2.535156-4.496094 4.503906-9.230469 5.886719-14.183594l10.359375-3.445313v-27.53125l-10.351562-3.453125c-1.375-4.953125-3.34375-9.707031-5.886719-14.183594l4.886719-9.777343-19.472657-19.472657-9.769531 4.886719c-4.484375-2.535156-9.230469-4.503906-14.183594-5.878906l-3.453125-10.359375h-27.539062l-3.445313 10.359375c-4.953125 1.375-9.695312 3.34375-14.183594 5.878906l-9.777343-4.886719-19.472657 19.472657 4.886719 9.777343c-2.535156 4.488282-4.503906 9.230469-5.886719 14.183594l-10.351562 3.445313v27.53125l10.351562 3.453125c1.375 4.953125 3.34375 9.695312 5.886719 14.183594l-4.886719 9.769531 19.472657 19.480469 9.769531-4.886719c4.484375 2.535156 9.230469 4.503906 14.183594 5.878906l3.453125 10.359375h27.539062zm-12.304688-13.679687-2.679687 8.039062h-4.460938l-2.679687-8.039062-4.554688-.90625c-6.128906-1.222657-11.878906-3.605469-17.109375-7.09375l-3.867187-2.578126-7.574219 3.800782-3.160156-3.167969 3.792969-7.582031-2.578126-3.859375c-3.488281-5.222657-5.871093-10.980469-7.09375-17.109375l-.914062-4.554688-8.03125-2.679687v-4.46875l8.03125-2.671875.914062-4.554688c1.222657-6.136718 3.613282-11.886718 7.09375-17.109375l2.578126-3.859375-3.792969-7.589844 3.160156-3.160156 7.574219 3.800782 3.867187-2.578126c5.222657-3.488281 10.980469-5.863281 17.109375-7.09375l4.554688-.90625 2.679687-8.039062h4.460938l2.679687 8.039062 4.554688.90625c6.128906 1.222657 11.878906 3.605469 17.109375 7.09375l3.867187 2.578126 7.574219-3.800782 3.160156 3.160156-3.792969 7.589844 2.578126 3.859375c3.488281 5.214844 5.871093 10.972657 7.09375 17.109375l.914062 4.554688 8.03125 2.679687v4.46875l-8.03125 2.671875-.914062 4.554688c-1.222657 6.128906-3.613282 11.878906-7.09375 17.109375l-2.578126 3.859375 3.792969 7.582031-3.160156 3.167969-7.574219-3.800782-3.867187 2.578126c-5.222657 3.488281-10.980469 5.863281-17.109375 7.09375zm0 0\"></path><path d=\"m104 72c-17.648438 0-32 14.351562-32 32s14.351562 32 32 32 32-14.351562 32-32-14.351562-32-32-32zm0 48c-8.824219 0-16-7.175781-16-16s7.175781-16 16-16 16 7.175781 16 16-7.175781 16-16 16zm0 0\"></path><path d=\"m160 248v-40h48v-208h-208v208h106.664062zm-144-232h176v176h-48v24l-32-24h-96zm0 0\"></path><path d=\"m0 272h16v16h-16zm0 0\"></path><path d=\"m32 272h16v16h-16zm0 0\"></path><path d=\"m64 272h16v16h-16zm0 0\"></path><path d=\"m32 304h16v16h-16zm0 0\"></path><path d=\"m64 304h16v16h-16zm0 0\"></path><path d=\"m0 480h16v16h-16zm0 0\"></path><path d=\"m32 480h16v16h-16zm0 0\"></path><path d=\"m64 480h16v16h-16zm0 0\"></path><path d=\"m32 448h16v16h-16zm0 0\"></path><path d=\"m64 448h16v16h-16zm0 0\"></path></svg>				\n									<h5>\n							fokus på kvalitet og detaljer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m469.12 408.93-67.26-33.63v-22.13c10.71-7.69 18.6-19.07 21.78-32.27h5.28c8.81 0 15.98-7.17 15.98-15.98v-5.29c0-6.35-3.74-11.84-9.12-14.41 5.19-18.64-1.65-39.76-19.44-59.78-12.58-14.16-30.67-22.27-49.62-22.27-18.93 0-37.01 8.12-49.59 22.27-13.38 15.05-20.95 41.01-14.03 59.62-5.56 2.5-9.45 8.09-9.45 14.57v5.29c0 8.81 7.17 15.98 15.98 15.98h5.55c3.16 13.09 10.94 24.39 21.51 32.08v22.32l-67.26 33.63c-16.7 5.87-27.89 21.6-27.89 39.28v41.63c0 3.31 2.69 6 6 6h243.46c3.31 0 6-2.69 6-6v-41.63c0-17.68-11.19-33.41-27.88-39.28zm-62.24-17.7-15.83 27.66-13.29-13.29 19.29-19.29zm-37.61 5.88-20.59-20.58v-16.91c6.41 2.57 13.4 4.01 20.72 4.01 7.22 0 14.11-1.39 20.45-3.9v16.8zm63.63-97.48v5.29c0 2.16-1.82 3.98-3.98 3.98h-3.74c.01-.36.03-.71.03-1.07v-12.18h3.71c2.15-.01 3.98 1.82 3.98 3.98zm-119.29 8.2v1.07h-3.98c-2.16 0-3.98-1.82-3.98-3.98v-5.29c0-2.16 1.82-3.98 3.98-3.98l3.98.22zm1.95-24.19c-7.33-13.69-.89-37.39 10.53-50.24 10.31-11.6 25.12-18.25 40.63-18.25 15.52 0 30.34 6.65 40.65 18.25 8.43 9.48 21.3 27.59 17.4 46.39-5.66-.35-10.67-2.55-14.4-6.36-5.37-5.49-7.72-14-6.63-23.94.29-2.62-1.17-5.13-3.6-6.17s-5.25-.37-6.95 1.65c-19.33 22.92-45.95 36.76-73.9 38.68h-3.73zm10.05 24.19v-12.73c24.57-2.92 47.92-14.05 66.73-31.8 1.43 7.26 4.63 13.6 9.45 18.52 3.27 3.35 7.14 5.89 11.41 7.58v18.42c0 24.15-19.65 43.8-43.8 43.8s-43.79-19.64-43.79-43.79zm15.89 78.48 19.29 19.29-13.29 13.29-15.84-27.66zm3.22 97.53h-39.42v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.76v-35.63c0-12.68 8.1-23.95 20.15-28.05.26-.09.51-.19.75-.31l46.47-23.23 20.07 35.06c.93 1.62 2.56 2.72 4.41 2.97.27.04.53.05.79.05 1.58 0 3.11-.62 4.24-1.76l.14-.14zm12.08 0 7.41-64.69 5.06-5.06 4.84 4.84 7.86 64.92h-25.17zm128.2 0h-39.76v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.18l-6.2-51.17.25.25c1.13 1.13 2.66 1.76 4.24 1.76.26 0 .53-.02.79-.05 1.85-.25 3.48-1.34 4.41-2.97l20.07-35.06 46.47 23.23c.24.12.49.23.75.31 12.05 4.1 20.15 15.38 20.15 28.05v35.65zm-67.04-346.65h-10.84l28.38 39.84 28.38-39.84h-10.84c-3.31 0-6-2.69-6-6v-64.58h-98.7c-3.31 0-6-2.69-6-6s2.69-6 6-6h104.7c3.31 0 6 2.69 6 6v64.58h16.48c2.25 0 4.3 1.25 5.33 3.25s.86 4.4-.45 6.23l-40.02 56.18c-1.13 1.58-2.95 2.52-4.89 2.52s-3.76-.94-4.89-2.52l-40.02-56.18c-1.3-1.83-1.48-4.23-.45-6.23s3.09-3.25 5.33-3.25h16.48v-23.5h-65.38c-3.31 0-6-2.69-6-6s2.69-6 6-6h71.38c3.31 0 6 2.69 6 6v35.5c.02 3.31-2.67 6-5.98 6zm-118.44 50.65v-133.26c0-21.18-17.23-38.41-38.41-38.41h-207.7c-21.18-.01-38.41 17.23-38.41 38.41v133.26c0 21.18 17.23 38.41 38.41 38.41h105.8l64.8 55.11c1.11.94 2.49 1.43 3.89 1.43.85 0 1.71-.18 2.52-.55 2.12-.98 3.48-3.11 3.48-5.45v-50.54h27.21c21.18 0 38.41-17.23 38.41-38.41zm-71.62 26.41c-3.31 0-6 2.69-6 6v43.56l-56.59-48.13c-1.08-.92-2.46-1.43-3.89-1.43h-108.01c-14.56 0-26.41-11.85-26.41-26.41v-133.26c0-14.56 11.85-26.41 26.41-26.41h207.69c14.56 0 26.41 11.85 26.41 26.41v133.26c0 14.56-11.85 26.41-26.41 26.41zm-156.34-87.87h56.97c3.31 0 6-2.69 6-6v-39.2l8.55-8.55c2.34-2.34 2.34-6.14 0-8.49-2.34-2.34-6.14-2.34-8.48 0l-.7.7c-.98-1.97-3.01-3.32-5.36-3.32h-56.98c-3.31 0-6 2.69-6 6v52.85c0 3.32 2.69 6.01 6 6.01zm6-52.86h44.97v2.69l-18.16 18.16-8.84-8.84c-2.34-2.34-6.14-2.34-8.49 0-2.34 2.34-2.34 6.14 0 8.49l13.08 13.08c1.17 1.17 2.71 1.76 4.24 1.76s3.07-.59 4.24-1.76l13.92-13.92v21.2h-44.96zm173.62 3.08c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 31.92c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 36.52c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.68 5.99 6zm0 31.92c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.69 5.99 6zm-119.36 165.01h10.84l-28.38-39.84-28.38 39.84h10.84c3.31 0 6 2.69 6 6v64.58h98.7c3.31 0 6 2.69 6 6s-2.69 6-6 6h-104.69c-3.31 0-6-2.69-6-6v-64.58h-16.48c-2.25 0-4.3-1.25-5.33-3.25s-.86-4.4.45-6.23l40.02-56.18c1.13-1.58 2.95-2.52 4.89-2.52s3.76.94 4.89 2.52l40.02 56.18c1.3 1.83 1.48 4.23.45 6.23s-3.09 3.25-5.33 3.25h-16.48v23.5h65.38c3.31 0 6 2.69 6 6s-2.69 6-6 6h-71.38c-3.31 0-6-2.69-6-6v-35.5c-.03-3.31 2.66-6 5.97-6z\"></path></svg>				\n									<h5>\n							ærlig<br> rådgivning						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 510 510\"><path d=\"m192.036 385.845c-4.787-46.972-19.459-64.336-30.658-82.352-8.672-13.951-15.5-28.245-15.5-54.252 0-60.242 48.865-109.109 109.135-109.109 60.242 0 109.109 48.866 109.109 109.109 0 26.007-6.828 40.301-15.5 54.252-11.199 18.016-25.871 35.38-30.658 82.352 9.985 2.864 17.345 12.101 17.345 22.975v36.44c0 13.109-10.747 23.866-23.893 23.866h-10.334v9.945c0 12.588-10.341 22.929-22.93 22.929h-46.304c-12.589 0-22.93-10.341-22.93-22.929v-9.945h-10.334c-13.146 0-23.893-10.757-23.893-23.866v-36.44c0-10.874 7.36-20.111 17.345-22.975zm111.948-.917c4.199-42.194 15.78-62.332 26.488-79.049 10.147-15.842 19.65-28.207 19.65-56.638 0-52.513-42.597-95.109-95.109-95.109-52.537 0-95.135 42.596-95.135 95.109 0 28.431 9.503 40.796 19.65 56.638 10.708 16.717 22.289 36.855 26.488 79.049zm2.554-78.61c-1.175 13.701-11.985 24.191-24.783 24.191-13.527 0-24.862-12.086-24.862-26.673v-99.328c0-14.12 11.335-26.673 24.862-26.673 11.309 0 21.031 8.139 23.975 19.497 9.12 3.904 15.688 13.438 15.688 24.78 0 1.153-.068 2.289-.201 3.403 5.078 5.326 8.283 12.802 8.283 21.117 0 6.39-1.889 12.262-5.06 17.053 1.996 4.099 3.13 8.773 3.13 13.76 0 14.1-9.065 25.697-21.032 28.873zm-16.452-109.977c-1.964-2.729-4.916-4.506-8.331-4.506-6.192 0-10.862 6.21-10.862 12.673v99.328c0 6.677 4.67 12.673 10.862 12.673 5.516 0 9.822-4.614 10.717-10.425-4.709-1.416-8.923-4.144-12.279-7.814-2.607-2.852-2.409-7.283.443-9.89 2.851-2.607 7.282-2.408 9.889.443 2.416 2.642 5.72 4.356 9.402 4.356 7.733 0 13.643-7.218 13.643-15.734s-5.91-15.734-13.643-15.734c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7 5.352 0 10.388 1.655 14.658 4.533.593-1.743.915-3.634.915-5.612 0-2.11-.366-4.128-1.036-5.972-.769.858-1.588 1.66-2.453 2.397-2.94 2.507-7.361 2.156-9.869-.784-2.507-2.939-2.155-7.361.784-9.868 2.773-2.365 4.492-6.122 4.492-10.293 0-6.072-3.705-11.374-8.898-12.467-.154-.023-.307-.052-.458-.085-.499-.08-1.01-.121-1.532-.121-2.947 0-5.591 1.389-7.515 3.525-2.585 2.87-7.015 3.101-9.886.515-2.87-2.586-3.101-7.015-.515-9.886 3.111-3.453 7.059-5.988 11.472-7.252zm-104.526 67.344c-3.171-4.791-5.06-10.663-5.06-17.053 0-8.307 3.198-15.777 8.284-21.104-.133-1.118-.202-2.258-.202-3.416 0-11.354 6.582-20.897 15.717-24.792 2.948-11.354 12.67-19.485 23.946-19.485 13.56 0 24.888 12.555 24.888 26.673v99.328c0 14.585-11.328 26.673-24.888 26.673-12.765 0-23.578-10.484-24.757-24.184-11.98-3.166-21.058-14.769-21.058-28.88 0-4.987 1.134-9.661 3.13-13.76zm9.982-23.036c-.675 1.847-1.042 3.869-1.042 5.983 0 1.978.322 3.869.915 5.612 4.27-2.878 9.306-4.533 14.658-4.533 3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7-7.733 0-13.643 7.218-13.643 15.734s5.91 15.734 13.643 15.734c3.682 0 6.986-1.714 9.402-4.356 2.607-2.851 7.038-3.05 9.889-.443 2.852 2.607 3.05 7.038.443 9.89-3.35 3.664-7.556 6.389-12.255 7.807.891 5.813 5.192 10.432 10.693 10.432 6.21 0 10.888-5.993 10.888-12.673v-99.328c0-6.466-4.678-12.673-10.888-12.673-3.404 0-6.349 1.777-8.309 4.507 4.421 1.264 8.367 3.8 11.476 7.251 2.586 2.871 2.355 7.3-.516 9.886-2.87 2.586-7.3 2.355-9.886-.515-1.926-2.138-4.574-3.525-7.54-3.525-.493 0-.976.037-1.448.108-.196.045-.395.082-.596.11-5.165 1.118-8.844 6.404-8.844 12.455 0 1.243.153 2.45.442 3.594.101.284.183.572.246.862.748 2.326 2.071 4.346 3.814 5.823 2.947 2.498 3.311 6.919.813 9.866s-6.919 3.312-9.866.814c-.878-.745-1.71-1.554-2.489-2.422zm3.042 158.279c-5.442 0-9.893 4.451-9.893 9.892v36.44c0 5.423 4.454 9.866 9.893 9.866h17.334c3.866 0 7 3.134 7 7v16.945c0 4.902 4.027 8.929 8.93 8.929h46.304c4.903 0 8.93-4.027 8.93-8.929v-16.945c0-3.866 3.134-7 7-7h17.334c5.439 0 9.893-4.443 9.893-9.866v-36.44c0-5.441-4.451-9.892-9.893-9.892zm63.416-314.093 2.907-5.412c1.828-3.403 6.075-4.683 9.479-2.854 3.403 1.828 4.682 6.075 2.854 9.479l-16.073 29.925c-1.22 2.271-3.589 3.688-6.167 3.688s-4.947-1.417-6.167-3.688l-16.073-29.925c-1.828-3.404-.549-7.651 2.854-9.479 3.404-1.829 7.651-.549 9.479 2.854l2.907 5.412v-69.835c0-3.863 3.137-7 7-7s7 3.137 7 7zm-132.198 54.758-49.381-49.381c-2.732-2.731-2.732-7.167 0-9.899s7.168-2.732 9.9 0l49.38 49.38-1.771-5.881c-1.114-3.7.985-7.608 4.684-8.722 3.7-1.114 7.607.985 8.721 4.685l9.796 32.526c.743 2.468.069 5.145-1.753 6.968-1.823 1.823-4.5 2.496-6.969 1.753l-32.526-9.795c-3.699-1.114-5.798-5.022-4.684-8.721s5.022-5.798 8.721-4.684zm-44.859 122.299h-69.835c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7h69.835l-5.412-2.907c-3.403-1.828-4.682-6.076-2.854-9.479 1.828-3.404 6.075-4.683 9.479-2.855l29.926 16.074c2.271 1.22 3.688 3.589 3.688 6.167 0 2.577-1.417 4.947-3.688 6.166l-29.926 16.074c-3.404 1.828-7.651.549-9.479-2.855-1.828-3.403-.549-7.651 2.854-9.479zm54.758 118.198-49.38 49.38c-2.732 2.732-7.168 2.732-9.9 0s-2.732-7.167 0-9.899l49.381-49.381-5.882 1.772c-3.699 1.114-7.607-.985-8.721-4.685-1.114-3.699.985-7.607 4.684-8.721l32.526-9.795c2.469-.743 5.146-.07 6.969 1.753 1.822 1.823 2.496 4.5 1.753 6.968l-9.796 32.527c-1.114 3.699-5.021 5.798-8.721 4.684-3.699-1.114-5.798-5.022-4.684-8.721zm240.497-240.497 5.882-1.771c3.699-1.114 7.607.985 8.721 4.684s-.985 7.607-4.684 8.721l-32.526 9.795c-2.469.743-5.146.07-6.969-1.753-1.822-1.823-2.496-4.5-1.753-6.968l9.796-32.526c1.114-3.7 5.021-5.799 8.721-4.685 3.699 1.114 5.798 5.022 4.684 8.722l-1.771 5.881 49.38-49.38c2.732-2.732 7.168-2.732 9.9 0s2.732 7.168 0 9.899zm44.859 122.299 5.412 2.906c3.403 1.828 4.682 6.076 2.854 9.479-1.828 3.404-6.075 4.683-9.479 2.855l-29.926-16.074c-2.271-1.219-3.688-3.589-3.688-6.166 0-2.578 1.417-4.947 3.688-6.167l29.926-16.074c3.404-1.828 7.651-.549 9.479 2.855 1.828 3.403.549 7.651-2.854 9.479l-5.412 2.907h69.835c3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7zm-54.758 118.198 1.771 5.882c1.114 3.699-.985 7.607-4.684 8.721-3.7 1.114-7.607-.985-8.721-4.684l-9.796-32.527c-.743-2.468-.069-5.145 1.753-6.968 1.823-1.823 4.5-2.496 6.969-1.753l32.526 9.795c3.699 1.114 5.798 5.022 4.684 8.721-1.114 3.7-5.022 5.799-8.721 4.685l-5.882-1.772 49.381 49.381c2.732 2.732 2.732 7.167 0 9.899s-7.168 2.732-9.9 0z\"></path></svg>				\n									<h5>\n							gennemtænkte løsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"outline\"><path d=\"M486.41,144A28,28,0,0,0,472,92H349.123l5.457-21.828a48.513,48.513,0,0,0-12.848-46.153A41.035,41.035,0,0,0,312.609,12H308a8.009,8.009,0,0,0-8,8V47.413l-19.233,64.112A17.376,17.376,0,0,1,268,123.539V112a4,4,0,0,0-4-4H152a4,4,0,0,0-4,4v72a4,4,0,0,0,8,0V116h72V276H156V248a4,4,0,0,0-8,0v32a4,4,0,0,0,4,4H264a4,4,0,0,0,4-4V268.5h11.168A37.07,37.07,0,0,1,305.092,279a45.025,45.025,0,0,0,31.48,12.752L440,292a27.987,27.987,0,0,0,19.369-48.2,27.987,27.987,0,0,0,16-48A28,28,0,0,0,486.41,144ZM260,276H236V116h24Zm212-88H396a4,4,0,0,0,0,8h60a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h40a20,20,0,0,1,.01,40l-103.428-.25a37.07,37.07,0,0,1-25.924-10.5,45.031,45.031,0,0,0-31.49-12.752H268V131.686a25.317,25.317,0,0,0,20.429-17.862l19.4-64.675A4,4,0,0,0,308,48V20h4.609a33.082,33.082,0,0,1,23.481,9.69,40.507,40.507,0,0,1,10.728,38.541l-6.7,26.8A4,4,0,0,0,344,100H472a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h72a20,20,0,0,1,0,40Z\"></path><path d=\"M194.5,183.243l-1.9-.217a4,4,0,0,0-4.169,2.491L184.29,195.9H135.278l-3.539-9.317a4,4,0,0,0-7.478,2.84l2.459,6.477h-8.474L68.452,156.872a4,4,0,1,0-4.935,6.3L77.6,174.209,56.961,194.48l-6.636-5.491a4,4,0,1,0-5.1,6.163L87.219,229.9a44.1,44.1,0,0,0,28.05,10.1H212a8.009,8.009,0,0,0,8-8V203.9a8.009,8.009,0,0,0-8-8h-8v-2.01A10.708,10.708,0,0,0,194.5,183.243ZM212,203.9V232H115.269a36.081,36.081,0,0,1-22.951-8.264l-29.16-24.128,20.8-20.422L114.4,203.045a4,4,0,0,0,2.468.852H187a4,4,0,0,0,3.715-2.517l3.929-9.843a2.712,2.712,0,0,1,1.356,2.35v6.01a4,4,0,0,0,4,4Z\"></path><path d=\"M223.084,484.672,200.87,469.863V346.36A44.1,44.1,0,0,0,195.327,325l-17.183-30.94a4,4,0,0,0-7,3.884l17.184,30.94a36.073,36.073,0,0,1,4.537,17.478V468H164.333a4,4,0,1,0,0,8h31.321l12,8H152.865V352a4,4,0,0,0-.358-1.655l-25.454-56A4,4,0,0,0,123.411,292H114.2a4,4,0,0,0-3.945,4.658l8.862,53.175a36.016,36.016,0,0,1-1.951,18.949L78.642,468H48.333a4,4,0,1,0,0,8H80.377L92,484H32.088L76.63,361.366a4.017,4.017,0,0,0,.183-2.044L61.1,268H136a4,4,0,0,0,0-8H59.233L30.555,173.966A19.723,19.723,0,0,1,49.27,148H76a12,12,0,0,0,24,0h15.2a21.975,21.975,0,0,1,8.395,1.652l10.889,4.458a4,4,0,1,0,3.032-7.4L126.63,142.25A29.938,29.938,0,0,0,115.2,140H100v-4.527A16.014,16.014,0,0,0,112,120V103.473A16.014,16.014,0,0,0,124,88V80a4,4,0,0,0-4-4H90A22.025,22.025,0,0,0,68,98v18a12.02,12.02,0,0,0,8,11.314V140H49.27a27.723,27.723,0,0,0-26.305,36.5l29.493,88.482,16.29,94.655-46.128,127A4,4,0,0,0,26.38,492h78.485a4,4,0,0,0,2.268-7.3L86.3,470.368l38.318-98.69a44.018,44.018,0,0,0,2.385-23.16L118.921,300h1.914l24.03,52.867V488a4,4,0,0,0,4,4h72a4,4,0,0,0,2.219-7.328ZM76,98A14.015,14.015,0,0,1,90,84h26v4a8.009,8.009,0,0,1-8,8H92a4,4,0,0,0-4,4,11.962,11.962,0,0,1-1.53,5.881A12.044,12.044,0,0,0,76,104.686Zm4,14a3.981,3.981,0,0,1,3.407,1.9,4,4,0,0,0,5.956.975c.207-.171.7-.648.7-.648.032-.028.061-.057.09-.087A19.907,19.907,0,0,0,95.6,104H104v16a8.009,8.009,0,0,1-8,8,12.133,12.133,0,0,1-2.681-.3,4,4,0,1,0-1.775,7.8c.151.035.3.06.456.091V148a4,4,0,1,1-8,0V124a4,4,0,0,0-4-4,4,4,0,0,1,0-8Z\"></path></g></svg>				\n									<h5>\n							arbejde udført med ansvar						\n					</h5>\n				<p>Vi lover ikke mere, end vi kan holde – men vi holder det, vi lover.</p>			<h2>KONTAKT OS</h2>		<p>Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.</p>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-14 11:01:23', '2026-02-14 11:01:23', '', 10, 'https://mrarif.me/cpnordic/?p=727', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(728, 1, '2026-02-14 11:01:24', '2026-02-14 11:01:24', '<h1>CP NORDIC ApS</h1>					<h4>Byggeri – Tømrerarbejde og tagdækning</h4>										<a href=\"https://mrarif.me/cpnordic/kontakt/\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"https://mrarif.me/cpnordic/om-os/\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"https://mrarif.me/cpnordic/tomrerarbejde/\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>								<a href=\"https://mrarif.me/cpnordic/tagdaekning/\">\n									Lær mere\n					</a>\n									<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle ANMELDELSER\n					</a>\n					<h2>HVORFOR VÆLGE CP NORDIC ApS?</h2>		<p>Når du vælger CP NORDIC ApS, får du:</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 450 450\" width=\"512\"><g><g><path d=\"m225 165.2c-25.9 0-48.9-18.8-53.3-45.2-2.4-14.2.9-28.6 9.3-40.3 8.4-11.8 20.9-19.5 35.1-21.9 29.4-4.9 57.3 15 62.2 44.5 4.9 29.4-15 57.3-44.4 62.2-3 .5-6 .7-8.9.7zm-7.6-99.8c-12.2 2-22.9 8.7-30.1 18.8s-10.1 22.4-8 34.6c3.8 22.7 23.5 38.8 45.7 38.8 2.5 0 5.1-.2 7.6-.6 25.2-4.2 42.3-28.1 38.1-53.4s-28.1-42.4-53.3-38.2z\"></path><path d=\"m255.2 115c-2.1 0-3.8-1.7-3.8-3.8 0-14.6-11.8-26.4-26.4-26.4-2.1 0-3.8-1.7-3.8-3.8s1.7-3.8 3.8-3.8c18.8 0 34.1 15.3 34.1 34.1 0 2-1.8 3.7-3.9 3.7z\"></path><path d=\"m236.1 203h-22.2c-2.1 0-3.8-1.7-3.8-3.8v-14.1c-3.1-.6-6.1-1.4-9.1-2.4l-7 12.2c-1.1 1.8-3.4 2.5-5.3 1.4l-19.2-11.1c-.9-.5-1.5-1.4-1.8-2.3-.3-1-.1-2 .4-2.9l7-12.1c-2.4-2.1-4.6-4.3-6.7-6.6l-12.1 7c-1.8 1.1-4.2.4-5.2-1.4l-11.1-19.2c-1.1-1.8-.4-4.2 1.4-5.2l11.9-6.8c-1-3-1.9-6.1-2.6-9.3h-13.7c-2.1 0-3.8-1.7-3.8-3.8v-22.2c0-2.1 1.7-3.8 3.8-3.8h13.4c.6-3.2 1.4-6.4 2.4-9.5l-11.5-6.6c-1.8-1.1-2.5-3.4-1.4-5.3l11.1-19.6c.5-.9 1.4-1.5 2.3-1.8s2-.1 2.9.4l11.3 6.6c2.2-2.5 4.5-4.8 7-7l-6.5-11.3c-.5-.9-.6-1.9-.4-2.9.3-1 .9-1.8 1.8-2.3l19.2-11.1c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l6.4 11.2c3.1-1.1 6.4-1.9 9.7-2.6v-13c0-2.1 1.7-3.8 3.8-3.8h22.2c2.1 0 3.8 1.7 3.8 3.8v12.8c3.3.7 6.5 1.5 9.7 2.6l6.5-11.2c.5-.9 1.4-1.5 2.3-1.8 1-.3 2-.1 2.9.4l19.2 11.1c.9.5 1.5 1.3 1.8 2.3s.1 2-.4 2.9l-6.5 11.3c2.5 2.2 4.8 4.5 7 7.1l11.3-6.6c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l11.1 19.2c1.1 1.8.4 4.2-1.4 5.3l-11.5 6.6c1 3.1 1.8 6.3 2.5 9.5h13.6c2.1 0 3.8 1.7 3.8 3.8v22.2c0 2.1-1.7 3.8-3.8 3.8h-13.6c-.6 3.1-1.5 6.2-2.5 9.3l11.9 6.8c1.8 1.1 2.5 3.4 1.4 5.2l-11.2 19.5c-1.1 1.8-3.4 2.5-5.2 1.4l-12-7c-2.1 2.4-4.4 4.6-6.7 6.6l7 12.1c.5.9.6 1.9.4 2.9s-.9 1.8-1.8 2.3l-19.2 11.1c-1.8 1.1-4.2.4-5.2-1.4l-7-12.2c-3 1-6 1.8-9.1 2.4v14.1c-.2 2.3-2 4-4.1 4zm-18.4-7.7h14.5v-13.5c0-1.9 1.4-3.5 3.3-3.8 4.7-.7 9.4-2 13.8-3.7 1.8-.7 3.8 0 4.7 1.7l6.7 11.6 12.6-7.3-6.7-11.6c-1-1.6-.5-3.7.9-4.9 3.7-3 7.2-6.4 10.2-10.1 1.2-1.5 3.3-1.8 4.9-.9l11.5 6.6 7.3-12.6-11.3-6.5c-1.6-.9-2.4-3-1.6-4.7 1.8-4.5 3.1-9.2 3.9-14 .3-1.9 1.9-3.2 3.8-3.2h13v-14.6h-12.8c-1.9 0-3.5-1.4-3.8-3.3-.7-4.8-2-9.6-3.7-14.2-.7-1.8 0-3.7 1.7-4.7l10.9-6.3-7.3-12.6-10.8 6.3c-1.6.9-3.7.6-4.9-.9-3.1-3.9-6.6-7.4-10.4-10.6-1.5-1.2-1.9-3.3-.9-4.9l6.2-10.7-12.6-7.3-6.1 10.6c-1 1.6-3 2.3-4.7 1.7-4.6-1.8-9.5-3.1-14.4-3.9-1.9-.3-3.3-1.9-3.3-3.8v-12.2h-14.5v12.3c0 1.9-1.4 3.5-3.3 3.8-5 .8-9.8 2.1-14.4 3.9-1.8.7-3.8 0-4.7-1.7l-6.1-10.6-12.6 7.3 6.2 10.7c.9 1.6.6 3.7-.9 4.9-3.9 3.1-7.4 6.7-10.4 10.6-1.2 1.5-3.3 1.9-4.9.9l-10.8-6.3-7.3 12.6 10.9 6.3c1.6.9 2.3 2.9 1.7 4.7-1.7 4.6-3 9.4-3.7 14.2-.3 1.9-1.9 3.3-3.8 3.3h-12.8v14.5h13c1.9 0 3.5 1.4 3.8 3.2.8 4.8 2.1 9.5 3.9 14 .7 1.8 0 3.8-1.6 4.7l-11.3 6.5 7.3 12.6 11.5-6.6c1.6-.9 3.7-.6 4.9.9 3 3.7 6.5 7.1 10.3 10.1 1.5 1.2 1.9 3.3.9 4.9l-6.7 11.6 12.6 7.3 6.7-11.6c.9-1.6 2.9-2.3 4.7-1.7 4.5 1.7 9.1 2.9 13.8 3.7 1.9.3 3.3 1.9 3.3 3.8z\"></path></g><g><g><g><path d=\"m45.3 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m153.9 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path></g><g><path d=\"m189.3 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.2c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c0 2.1-1.7 3.8-3.8 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m73.3 326.4c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m126 326.4c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m99.7 325.6c-.6 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4s4.1 1.1 4.4 3.2c2.4 16.5 12.3 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m50.2 266.6c-.1 0-.2 0-.3 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.7 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-8.9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.5 2.2zm81.8-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13.1-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.4-.7 2.3-.7z\"></path></g></g></g><g><g><path d=\"m296.1 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m404.7 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path></g><g><path d=\"m440 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.1c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c.2 2.1-1.6 3.8-3.7 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m324 326.3c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m376.7 326.3c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m350.4 325.6c-.5 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4 2.1-.3 4 1.1 4.4 3.2 2.4 16.5 12.4 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m301 266.6c-.1 0-.2 0-.4 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.6 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.4 2.2zm81.7-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.5-.7 2.3-.7z\"></path></g></g></g></g></g></svg>				\n									<h5>\n							et ungt og engageret team						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"496pt\" viewBox=\"0 0 496 496\" width=\"496pt\"><path d=\"m440 328h-28.207031c5.078125-6.703125 8.207031-14.960938 8.207031-24 0-8.824219-7.175781-16-16-16h-12v-19.960938c59.574219-14.445312 104-68.085937 104-132.039062 0-74.992188-61.007812-136-136-136s-136 61.007812-136 136c0 63.953125 44.425781 117.59375 104 132.039062v19.960938h-8.449219c-6.167969 0-12.359375 1.464844-17.886719 4.214844l-50.480468 25.25c-3.320313 1.664062-7.03125 2.535156-10.734375 2.535156h-40.449219v-16h-104v16h56v56h16v-56h16v128h-16v-56h-16v56h-56v16h104v-16h40.449219c3.703125 0 7.414062.871094 10.734375 2.527344l34.488281 17.25c5.519531 2.757812 11.710937 4.222656 17.878906 4.222656h24.449219v24h64v-24h48c13.230469 0 24-10.769531 24-24 0-6.167969-2.40625-11.742188-6.238281-16 3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16 0-13.230469-10.769531-24-24-24zm8 24c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm-208-280c0-66.167969 53.832031-120 120-120s120 53.832031 120 120-53.832031 120-120 120-120-53.832031-120-120zm104 134.976562c5.257812.617188 10.574219 1.023438 16 1.023438s10.742188-.40625 16-1.023438v17.023438h-32zm-40.449219 185.023438c-3.703125 0-7.414062-.871094-10.734375-2.527344l-34.488281-17.25c-5.519531-2.757812-11.710937-4.222656-17.878906-4.222656h-40.449219v-96h40.449219c6.167969 0 12.359375-1.464844 17.886719-4.214844l50.480468-25.25c3.320313-1.664062 7.03125-2.535156 10.734375-2.535156h84.449219c0 13.230469-10.769531 24-24 24h-48.28125l-23.863281 35.808594c-6.101563 9.160156-14.527344 16.589844-24.367188 21.503906-8.753906 4.375-18.542969 6.6875-28.320312 6.6875h-15.167969v16h15.167969c12.246093 0 24.519531-2.894531 35.472656-8.375 12.328125-6.160156 22.878906-15.480469 30.527344-26.945312l6.832031-10.253907v93.574219zm40.449219 24v-136h17.472656c-.898437 2.511719-1.472656 5.183594-1.472656 8 0 6.167969 2.40625 11.742188 6.238281 16-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16 0 10.414062 6.710938 19.214844 16 22.527344v9.472656zm96-24h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8s-3.59375 8-8 8zm0 0\"></path><path d=\"m394.878906 73.007812-7.757812 13.984376c17.816406 9.878906 28.878906 28.664062 28.878906 49.007812h16c0-26.160156-14.222656-50.296875-37.121094-62.992188zm0 0\"></path><path d=\"m360 80c4.734375 0 9.449219.59375 14.007812 1.769531l3.976563-15.503906c-5.855469-1.496094-11.90625-2.265625-17.984375-2.265625zm0 0\"></path><path d=\"m360 48c48.519531 0 88 39.480469 88 88 0 20.753906-7.398438 40.910156-20.832031 56.785156l12.207031 10.34375c15.882812-18.761718 24.625-42.601562 24.625-67.128906 0-57.34375-46.65625-104-104-104-24.527344 0-48.367188 8.753906-67.128906 24.632812l10.335937 12.199219c15.871094-13.433593 36.039063-20.832031 56.792969-20.832031zm0 0\"></path><path d=\"m427.128906 215.367188-10.335937-12.199219c-15.871094 13.433593-36.039063 20.832031-56.792969 20.832031-48.519531 0-88-39.480469-88-88 0-20.753906 7.398438-40.910156 20.832031-56.785156l-12.207031-10.34375c-15.882812 18.761718-24.625 42.601562-24.625 67.128906 0 57.34375 46.65625 104 104 104 24.527344 0 48.367188-8.753906 67.128906-24.632812zm0 0\"></path><path d=\"m121.214844 165.640625c4.953125-1.375 9.695312-3.34375 14.183594-5.878906l9.769531 4.886719 19.472656-19.480469-4.886719-9.769531c2.535156-4.496094 4.503906-9.230469 5.886719-14.183594l10.359375-3.445313v-27.53125l-10.351562-3.453125c-1.375-4.953125-3.34375-9.707031-5.886719-14.183594l4.886719-9.777343-19.472657-19.472657-9.769531 4.886719c-4.484375-2.535156-9.230469-4.503906-14.183594-5.878906l-3.453125-10.359375h-27.539062l-3.445313 10.359375c-4.953125 1.375-9.695312 3.34375-14.183594 5.878906l-9.777343-4.886719-19.472657 19.472657 4.886719 9.777343c-2.535156 4.488282-4.503906 9.230469-5.886719 14.183594l-10.351562 3.445313v27.53125l10.351562 3.453125c1.375 4.953125 3.34375 9.695312 5.886719 14.183594l-4.886719 9.769531 19.472657 19.480469 9.769531-4.886719c4.484375 2.535156 9.230469 4.503906 14.183594 5.878906l3.453125 10.359375h27.539062zm-12.304688-13.679687-2.679687 8.039062h-4.460938l-2.679687-8.039062-4.554688-.90625c-6.128906-1.222657-11.878906-3.605469-17.109375-7.09375l-3.867187-2.578126-7.574219 3.800782-3.160156-3.167969 3.792969-7.582031-2.578126-3.859375c-3.488281-5.222657-5.871093-10.980469-7.09375-17.109375l-.914062-4.554688-8.03125-2.679687v-4.46875l8.03125-2.671875.914062-4.554688c1.222657-6.136718 3.613282-11.886718 7.09375-17.109375l2.578126-3.859375-3.792969-7.589844 3.160156-3.160156 7.574219 3.800782 3.867187-2.578126c5.222657-3.488281 10.980469-5.863281 17.109375-7.09375l4.554688-.90625 2.679687-8.039062h4.460938l2.679687 8.039062 4.554688.90625c6.128906 1.222657 11.878906 3.605469 17.109375 7.09375l3.867187 2.578126 7.574219-3.800782 3.160156 3.160156-3.792969 7.589844 2.578126 3.859375c3.488281 5.214844 5.871093 10.972657 7.09375 17.109375l.914062 4.554688 8.03125 2.679687v4.46875l-8.03125 2.671875-.914062 4.554688c-1.222657 6.128906-3.613282 11.878906-7.09375 17.109375l-2.578126 3.859375 3.792969 7.582031-3.160156 3.167969-7.574219-3.800782-3.867187 2.578126c-5.222657 3.488281-10.980469 5.863281-17.109375 7.09375zm0 0\"></path><path d=\"m104 72c-17.648438 0-32 14.351562-32 32s14.351562 32 32 32 32-14.351562 32-32-14.351562-32-32-32zm0 48c-8.824219 0-16-7.175781-16-16s7.175781-16 16-16 16 7.175781 16 16-7.175781 16-16 16zm0 0\"></path><path d=\"m160 248v-40h48v-208h-208v208h106.664062zm-144-232h176v176h-48v24l-32-24h-96zm0 0\"></path><path d=\"m0 272h16v16h-16zm0 0\"></path><path d=\"m32 272h16v16h-16zm0 0\"></path><path d=\"m64 272h16v16h-16zm0 0\"></path><path d=\"m32 304h16v16h-16zm0 0\"></path><path d=\"m64 304h16v16h-16zm0 0\"></path><path d=\"m0 480h16v16h-16zm0 0\"></path><path d=\"m32 480h16v16h-16zm0 0\"></path><path d=\"m64 480h16v16h-16zm0 0\"></path><path d=\"m32 448h16v16h-16zm0 0\"></path><path d=\"m64 448h16v16h-16zm0 0\"></path></svg>				\n									<h5>\n							fokus på kvalitet og detaljer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m469.12 408.93-67.26-33.63v-22.13c10.71-7.69 18.6-19.07 21.78-32.27h5.28c8.81 0 15.98-7.17 15.98-15.98v-5.29c0-6.35-3.74-11.84-9.12-14.41 5.19-18.64-1.65-39.76-19.44-59.78-12.58-14.16-30.67-22.27-49.62-22.27-18.93 0-37.01 8.12-49.59 22.27-13.38 15.05-20.95 41.01-14.03 59.62-5.56 2.5-9.45 8.09-9.45 14.57v5.29c0 8.81 7.17 15.98 15.98 15.98h5.55c3.16 13.09 10.94 24.39 21.51 32.08v22.32l-67.26 33.63c-16.7 5.87-27.89 21.6-27.89 39.28v41.63c0 3.31 2.69 6 6 6h243.46c3.31 0 6-2.69 6-6v-41.63c0-17.68-11.19-33.41-27.88-39.28zm-62.24-17.7-15.83 27.66-13.29-13.29 19.29-19.29zm-37.61 5.88-20.59-20.58v-16.91c6.41 2.57 13.4 4.01 20.72 4.01 7.22 0 14.11-1.39 20.45-3.9v16.8zm63.63-97.48v5.29c0 2.16-1.82 3.98-3.98 3.98h-3.74c.01-.36.03-.71.03-1.07v-12.18h3.71c2.15-.01 3.98 1.82 3.98 3.98zm-119.29 8.2v1.07h-3.98c-2.16 0-3.98-1.82-3.98-3.98v-5.29c0-2.16 1.82-3.98 3.98-3.98l3.98.22zm1.95-24.19c-7.33-13.69-.89-37.39 10.53-50.24 10.31-11.6 25.12-18.25 40.63-18.25 15.52 0 30.34 6.65 40.65 18.25 8.43 9.48 21.3 27.59 17.4 46.39-5.66-.35-10.67-2.55-14.4-6.36-5.37-5.49-7.72-14-6.63-23.94.29-2.62-1.17-5.13-3.6-6.17s-5.25-.37-6.95 1.65c-19.33 22.92-45.95 36.76-73.9 38.68h-3.73zm10.05 24.19v-12.73c24.57-2.92 47.92-14.05 66.73-31.8 1.43 7.26 4.63 13.6 9.45 18.52 3.27 3.35 7.14 5.89 11.41 7.58v18.42c0 24.15-19.65 43.8-43.8 43.8s-43.79-19.64-43.79-43.79zm15.89 78.48 19.29 19.29-13.29 13.29-15.84-27.66zm3.22 97.53h-39.42v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.76v-35.63c0-12.68 8.1-23.95 20.15-28.05.26-.09.51-.19.75-.31l46.47-23.23 20.07 35.06c.93 1.62 2.56 2.72 4.41 2.97.27.04.53.05.79.05 1.58 0 3.11-.62 4.24-1.76l.14-.14zm12.08 0 7.41-64.69 5.06-5.06 4.84 4.84 7.86 64.92h-25.17zm128.2 0h-39.76v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.18l-6.2-51.17.25.25c1.13 1.13 2.66 1.76 4.24 1.76.26 0 .53-.02.79-.05 1.85-.25 3.48-1.34 4.41-2.97l20.07-35.06 46.47 23.23c.24.12.49.23.75.31 12.05 4.1 20.15 15.38 20.15 28.05v35.65zm-67.04-346.65h-10.84l28.38 39.84 28.38-39.84h-10.84c-3.31 0-6-2.69-6-6v-64.58h-98.7c-3.31 0-6-2.69-6-6s2.69-6 6-6h104.7c3.31 0 6 2.69 6 6v64.58h16.48c2.25 0 4.3 1.25 5.33 3.25s.86 4.4-.45 6.23l-40.02 56.18c-1.13 1.58-2.95 2.52-4.89 2.52s-3.76-.94-4.89-2.52l-40.02-56.18c-1.3-1.83-1.48-4.23-.45-6.23s3.09-3.25 5.33-3.25h16.48v-23.5h-65.38c-3.31 0-6-2.69-6-6s2.69-6 6-6h71.38c3.31 0 6 2.69 6 6v35.5c.02 3.31-2.67 6-5.98 6zm-118.44 50.65v-133.26c0-21.18-17.23-38.41-38.41-38.41h-207.7c-21.18-.01-38.41 17.23-38.41 38.41v133.26c0 21.18 17.23 38.41 38.41 38.41h105.8l64.8 55.11c1.11.94 2.49 1.43 3.89 1.43.85 0 1.71-.18 2.52-.55 2.12-.98 3.48-3.11 3.48-5.45v-50.54h27.21c21.18 0 38.41-17.23 38.41-38.41zm-71.62 26.41c-3.31 0-6 2.69-6 6v43.56l-56.59-48.13c-1.08-.92-2.46-1.43-3.89-1.43h-108.01c-14.56 0-26.41-11.85-26.41-26.41v-133.26c0-14.56 11.85-26.41 26.41-26.41h207.69c14.56 0 26.41 11.85 26.41 26.41v133.26c0 14.56-11.85 26.41-26.41 26.41zm-156.34-87.87h56.97c3.31 0 6-2.69 6-6v-39.2l8.55-8.55c2.34-2.34 2.34-6.14 0-8.49-2.34-2.34-6.14-2.34-8.48 0l-.7.7c-.98-1.97-3.01-3.32-5.36-3.32h-56.98c-3.31 0-6 2.69-6 6v52.85c0 3.32 2.69 6.01 6 6.01zm6-52.86h44.97v2.69l-18.16 18.16-8.84-8.84c-2.34-2.34-6.14-2.34-8.49 0-2.34 2.34-2.34 6.14 0 8.49l13.08 13.08c1.17 1.17 2.71 1.76 4.24 1.76s3.07-.59 4.24-1.76l13.92-13.92v21.2h-44.96zm173.62 3.08c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 31.92c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 36.52c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.68 5.99 6zm0 31.92c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.69 5.99 6zm-119.36 165.01h10.84l-28.38-39.84-28.38 39.84h10.84c3.31 0 6 2.69 6 6v64.58h98.7c3.31 0 6 2.69 6 6s-2.69 6-6 6h-104.69c-3.31 0-6-2.69-6-6v-64.58h-16.48c-2.25 0-4.3-1.25-5.33-3.25s-.86-4.4.45-6.23l40.02-56.18c1.13-1.58 2.95-2.52 4.89-2.52s3.76.94 4.89 2.52l40.02 56.18c1.3 1.83 1.48 4.23.45 6.23s-3.09 3.25-5.33 3.25h-16.48v23.5h65.38c3.31 0 6 2.69 6 6s-2.69 6-6 6h-71.38c-3.31 0-6-2.69-6-6v-35.5c-.03-3.31 2.66-6 5.97-6z\"></path></svg>				\n									<h5>\n							ærlig<br> rådgivning						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 510 510\"><path d=\"m192.036 385.845c-4.787-46.972-19.459-64.336-30.658-82.352-8.672-13.951-15.5-28.245-15.5-54.252 0-60.242 48.865-109.109 109.135-109.109 60.242 0 109.109 48.866 109.109 109.109 0 26.007-6.828 40.301-15.5 54.252-11.199 18.016-25.871 35.38-30.658 82.352 9.985 2.864 17.345 12.101 17.345 22.975v36.44c0 13.109-10.747 23.866-23.893 23.866h-10.334v9.945c0 12.588-10.341 22.929-22.93 22.929h-46.304c-12.589 0-22.93-10.341-22.93-22.929v-9.945h-10.334c-13.146 0-23.893-10.757-23.893-23.866v-36.44c0-10.874 7.36-20.111 17.345-22.975zm111.948-.917c4.199-42.194 15.78-62.332 26.488-79.049 10.147-15.842 19.65-28.207 19.65-56.638 0-52.513-42.597-95.109-95.109-95.109-52.537 0-95.135 42.596-95.135 95.109 0 28.431 9.503 40.796 19.65 56.638 10.708 16.717 22.289 36.855 26.488 79.049zm2.554-78.61c-1.175 13.701-11.985 24.191-24.783 24.191-13.527 0-24.862-12.086-24.862-26.673v-99.328c0-14.12 11.335-26.673 24.862-26.673 11.309 0 21.031 8.139 23.975 19.497 9.12 3.904 15.688 13.438 15.688 24.78 0 1.153-.068 2.289-.201 3.403 5.078 5.326 8.283 12.802 8.283 21.117 0 6.39-1.889 12.262-5.06 17.053 1.996 4.099 3.13 8.773 3.13 13.76 0 14.1-9.065 25.697-21.032 28.873zm-16.452-109.977c-1.964-2.729-4.916-4.506-8.331-4.506-6.192 0-10.862 6.21-10.862 12.673v99.328c0 6.677 4.67 12.673 10.862 12.673 5.516 0 9.822-4.614 10.717-10.425-4.709-1.416-8.923-4.144-12.279-7.814-2.607-2.852-2.409-7.283.443-9.89 2.851-2.607 7.282-2.408 9.889.443 2.416 2.642 5.72 4.356 9.402 4.356 7.733 0 13.643-7.218 13.643-15.734s-5.91-15.734-13.643-15.734c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7 5.352 0 10.388 1.655 14.658 4.533.593-1.743.915-3.634.915-5.612 0-2.11-.366-4.128-1.036-5.972-.769.858-1.588 1.66-2.453 2.397-2.94 2.507-7.361 2.156-9.869-.784-2.507-2.939-2.155-7.361.784-9.868 2.773-2.365 4.492-6.122 4.492-10.293 0-6.072-3.705-11.374-8.898-12.467-.154-.023-.307-.052-.458-.085-.499-.08-1.01-.121-1.532-.121-2.947 0-5.591 1.389-7.515 3.525-2.585 2.87-7.015 3.101-9.886.515-2.87-2.586-3.101-7.015-.515-9.886 3.111-3.453 7.059-5.988 11.472-7.252zm-104.526 67.344c-3.171-4.791-5.06-10.663-5.06-17.053 0-8.307 3.198-15.777 8.284-21.104-.133-1.118-.202-2.258-.202-3.416 0-11.354 6.582-20.897 15.717-24.792 2.948-11.354 12.67-19.485 23.946-19.485 13.56 0 24.888 12.555 24.888 26.673v99.328c0 14.585-11.328 26.673-24.888 26.673-12.765 0-23.578-10.484-24.757-24.184-11.98-3.166-21.058-14.769-21.058-28.88 0-4.987 1.134-9.661 3.13-13.76zm9.982-23.036c-.675 1.847-1.042 3.869-1.042 5.983 0 1.978.322 3.869.915 5.612 4.27-2.878 9.306-4.533 14.658-4.533 3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7-7.733 0-13.643 7.218-13.643 15.734s5.91 15.734 13.643 15.734c3.682 0 6.986-1.714 9.402-4.356 2.607-2.851 7.038-3.05 9.889-.443 2.852 2.607 3.05 7.038.443 9.89-3.35 3.664-7.556 6.389-12.255 7.807.891 5.813 5.192 10.432 10.693 10.432 6.21 0 10.888-5.993 10.888-12.673v-99.328c0-6.466-4.678-12.673-10.888-12.673-3.404 0-6.349 1.777-8.309 4.507 4.421 1.264 8.367 3.8 11.476 7.251 2.586 2.871 2.355 7.3-.516 9.886-2.87 2.586-7.3 2.355-9.886-.515-1.926-2.138-4.574-3.525-7.54-3.525-.493 0-.976.037-1.448.108-.196.045-.395.082-.596.11-5.165 1.118-8.844 6.404-8.844 12.455 0 1.243.153 2.45.442 3.594.101.284.183.572.246.862.748 2.326 2.071 4.346 3.814 5.823 2.947 2.498 3.311 6.919.813 9.866s-6.919 3.312-9.866.814c-.878-.745-1.71-1.554-2.489-2.422zm3.042 158.279c-5.442 0-9.893 4.451-9.893 9.892v36.44c0 5.423 4.454 9.866 9.893 9.866h17.334c3.866 0 7 3.134 7 7v16.945c0 4.902 4.027 8.929 8.93 8.929h46.304c4.903 0 8.93-4.027 8.93-8.929v-16.945c0-3.866 3.134-7 7-7h17.334c5.439 0 9.893-4.443 9.893-9.866v-36.44c0-5.441-4.451-9.892-9.893-9.892zm63.416-314.093 2.907-5.412c1.828-3.403 6.075-4.683 9.479-2.854 3.403 1.828 4.682 6.075 2.854 9.479l-16.073 29.925c-1.22 2.271-3.589 3.688-6.167 3.688s-4.947-1.417-6.167-3.688l-16.073-29.925c-1.828-3.404-.549-7.651 2.854-9.479 3.404-1.829 7.651-.549 9.479 2.854l2.907 5.412v-69.835c0-3.863 3.137-7 7-7s7 3.137 7 7zm-132.198 54.758-49.381-49.381c-2.732-2.731-2.732-7.167 0-9.899s7.168-2.732 9.9 0l49.38 49.38-1.771-5.881c-1.114-3.7.985-7.608 4.684-8.722 3.7-1.114 7.607.985 8.721 4.685l9.796 32.526c.743 2.468.069 5.145-1.753 6.968-1.823 1.823-4.5 2.496-6.969 1.753l-32.526-9.795c-3.699-1.114-5.798-5.022-4.684-8.721s5.022-5.798 8.721-4.684zm-44.859 122.299h-69.835c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7h69.835l-5.412-2.907c-3.403-1.828-4.682-6.076-2.854-9.479 1.828-3.404 6.075-4.683 9.479-2.855l29.926 16.074c2.271 1.22 3.688 3.589 3.688 6.167 0 2.577-1.417 4.947-3.688 6.166l-29.926 16.074c-3.404 1.828-7.651.549-9.479-2.855-1.828-3.403-.549-7.651 2.854-9.479zm54.758 118.198-49.38 49.38c-2.732 2.732-7.168 2.732-9.9 0s-2.732-7.167 0-9.899l49.381-49.381-5.882 1.772c-3.699 1.114-7.607-.985-8.721-4.685-1.114-3.699.985-7.607 4.684-8.721l32.526-9.795c2.469-.743 5.146-.07 6.969 1.753 1.822 1.823 2.496 4.5 1.753 6.968l-9.796 32.527c-1.114 3.699-5.021 5.798-8.721 4.684-3.699-1.114-5.798-5.022-4.684-8.721zm240.497-240.497 5.882-1.771c3.699-1.114 7.607.985 8.721 4.684s-.985 7.607-4.684 8.721l-32.526 9.795c-2.469.743-5.146.07-6.969-1.753-1.822-1.823-2.496-4.5-1.753-6.968l9.796-32.526c1.114-3.7 5.021-5.799 8.721-4.685 3.699 1.114 5.798 5.022 4.684 8.722l-1.771 5.881 49.38-49.38c2.732-2.732 7.168-2.732 9.9 0s2.732 7.168 0 9.899zm44.859 122.299 5.412 2.906c3.403 1.828 4.682 6.076 2.854 9.479-1.828 3.404-6.075 4.683-9.479 2.855l-29.926-16.074c-2.271-1.219-3.688-3.589-3.688-6.166 0-2.578 1.417-4.947 3.688-6.167l29.926-16.074c3.404-1.828 7.651-.549 9.479 2.855 1.828 3.403.549 7.651-2.854 9.479l-5.412 2.907h69.835c3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7zm-54.758 118.198 1.771 5.882c1.114 3.699-.985 7.607-4.684 8.721-3.7 1.114-7.607-.985-8.721-4.684l-9.796-32.527c-.743-2.468-.069-5.145 1.753-6.968 1.823-1.823 4.5-2.496 6.969-1.753l32.526 9.795c3.699 1.114 5.798 5.022 4.684 8.721-1.114 3.7-5.022 5.799-8.721 4.685l-5.882-1.772 49.381 49.381c2.732 2.732 2.732 7.167 0 9.899s-7.168 2.732-9.9 0z\"></path></svg>				\n									<h5>\n							gennemtænkte løsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"outline\"><path d=\"M486.41,144A28,28,0,0,0,472,92H349.123l5.457-21.828a48.513,48.513,0,0,0-12.848-46.153A41.035,41.035,0,0,0,312.609,12H308a8.009,8.009,0,0,0-8,8V47.413l-19.233,64.112A17.376,17.376,0,0,1,268,123.539V112a4,4,0,0,0-4-4H152a4,4,0,0,0-4,4v72a4,4,0,0,0,8,0V116h72V276H156V248a4,4,0,0,0-8,0v32a4,4,0,0,0,4,4H264a4,4,0,0,0,4-4V268.5h11.168A37.07,37.07,0,0,1,305.092,279a45.025,45.025,0,0,0,31.48,12.752L440,292a27.987,27.987,0,0,0,19.369-48.2,27.987,27.987,0,0,0,16-48A28,28,0,0,0,486.41,144ZM260,276H236V116h24Zm212-88H396a4,4,0,0,0,0,8h60a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h40a20,20,0,0,1,.01,40l-103.428-.25a37.07,37.07,0,0,1-25.924-10.5,45.031,45.031,0,0,0-31.49-12.752H268V131.686a25.317,25.317,0,0,0,20.429-17.862l19.4-64.675A4,4,0,0,0,308,48V20h4.609a33.082,33.082,0,0,1,23.481,9.69,40.507,40.507,0,0,1,10.728,38.541l-6.7,26.8A4,4,0,0,0,344,100H472a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h72a20,20,0,0,1,0,40Z\"></path><path d=\"M194.5,183.243l-1.9-.217a4,4,0,0,0-4.169,2.491L184.29,195.9H135.278l-3.539-9.317a4,4,0,0,0-7.478,2.84l2.459,6.477h-8.474L68.452,156.872a4,4,0,1,0-4.935,6.3L77.6,174.209,56.961,194.48l-6.636-5.491a4,4,0,1,0-5.1,6.163L87.219,229.9a44.1,44.1,0,0,0,28.05,10.1H212a8.009,8.009,0,0,0,8-8V203.9a8.009,8.009,0,0,0-8-8h-8v-2.01A10.708,10.708,0,0,0,194.5,183.243ZM212,203.9V232H115.269a36.081,36.081,0,0,1-22.951-8.264l-29.16-24.128,20.8-20.422L114.4,203.045a4,4,0,0,0,2.468.852H187a4,4,0,0,0,3.715-2.517l3.929-9.843a2.712,2.712,0,0,1,1.356,2.35v6.01a4,4,0,0,0,4,4Z\"></path><path d=\"M223.084,484.672,200.87,469.863V346.36A44.1,44.1,0,0,0,195.327,325l-17.183-30.94a4,4,0,0,0-7,3.884l17.184,30.94a36.073,36.073,0,0,1,4.537,17.478V468H164.333a4,4,0,1,0,0,8h31.321l12,8H152.865V352a4,4,0,0,0-.358-1.655l-25.454-56A4,4,0,0,0,123.411,292H114.2a4,4,0,0,0-3.945,4.658l8.862,53.175a36.016,36.016,0,0,1-1.951,18.949L78.642,468H48.333a4,4,0,1,0,0,8H80.377L92,484H32.088L76.63,361.366a4.017,4.017,0,0,0,.183-2.044L61.1,268H136a4,4,0,0,0,0-8H59.233L30.555,173.966A19.723,19.723,0,0,1,49.27,148H76a12,12,0,0,0,24,0h15.2a21.975,21.975,0,0,1,8.395,1.652l10.889,4.458a4,4,0,1,0,3.032-7.4L126.63,142.25A29.938,29.938,0,0,0,115.2,140H100v-4.527A16.014,16.014,0,0,0,112,120V103.473A16.014,16.014,0,0,0,124,88V80a4,4,0,0,0-4-4H90A22.025,22.025,0,0,0,68,98v18a12.02,12.02,0,0,0,8,11.314V140H49.27a27.723,27.723,0,0,0-26.305,36.5l29.493,88.482,16.29,94.655-46.128,127A4,4,0,0,0,26.38,492h78.485a4,4,0,0,0,2.268-7.3L86.3,470.368l38.318-98.69a44.018,44.018,0,0,0,2.385-23.16L118.921,300h1.914l24.03,52.867V488a4,4,0,0,0,4,4h72a4,4,0,0,0,2.219-7.328ZM76,98A14.015,14.015,0,0,1,90,84h26v4a8.009,8.009,0,0,1-8,8H92a4,4,0,0,0-4,4,11.962,11.962,0,0,1-1.53,5.881A12.044,12.044,0,0,0,76,104.686Zm4,14a3.981,3.981,0,0,1,3.407,1.9,4,4,0,0,0,5.956.975c.207-.171.7-.648.7-.648.032-.028.061-.057.09-.087A19.907,19.907,0,0,0,95.6,104H104v16a8.009,8.009,0,0,1-8,8,12.133,12.133,0,0,1-2.681-.3,4,4,0,1,0-1.775,7.8c.151.035.3.06.456.091V148a4,4,0,1,1-8,0V124a4,4,0,0,0-4-4,4,4,0,0,1,0-8Z\"></path></g></svg>				\n									<h5>\n							arbejde udført med ansvar						\n					</h5>\n				<p>Vi lover ikke mere, end vi kan holde – men vi holder det, vi lover.</p>			<h2>KONTAKT OS</h2>		<p>Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.</p>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-14 11:01:24', '2026-02-14 11:01:24', '', 10, 'https://mrarif.me/cpnordic/?p=728', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(729, 1, '2026-02-14 11:04:54', '2026-02-14 11:04:54', '<h2>Vores tjenester</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>				\n									<h4>\n							TØMRERARBEJDE						\n					</h4>\n									<p>\n						Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:\n					</p>\n												<a href=\"https://mrarif.me/cpnordic/tomrerarbejde/\">\n									Lær mere\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>				\n									<h4>\n							TAGDÆKNING						\n					</h4>\n									<p>\n						Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.					</p>\n												<a href=\"https://mrarif.me/cpnordic/tagdaekning/\">\n									Lær mere\n					</a>', 'Tjenester', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-14 11:04:54', '2026-02-14 11:04:54', '', 12, 'https://mrarif.me/cpnordic/?p=729', 0, 'revision', '', 0),
(730, 1, '2026-02-14 11:04:54', '2026-02-14 11:04:54', '<h2>Vores tjenester</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>				\n									<h4>\n							TØMRERARBEJDE						\n					</h4>\n									<p>\n						Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:\n					</p>\n												<a href=\"https://mrarif.me/cpnordic/tomrerarbejde/\">\n									Lær mere\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>				\n									<h4>\n							TAGDÆKNING						\n					</h4>\n									<p>\n						Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.					</p>\n												<a href=\"https://mrarif.me/cpnordic/tagdaekning/\">\n									Lær mere\n					</a>', 'Tjenester', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-14 11:04:54', '2026-02-14 11:04:54', '', 12, 'https://mrarif.me/cpnordic/?p=730', 0, 'revision', '', 0),
(731, 1, '2026-02-14 11:04:54', '2026-02-14 11:04:54', '<h2>Vores tjenester</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>				\n									<h4>\n							TØMRERARBEJDE						\n					</h4>\n									<p>\n						Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:\n					</p>\n												<a href=\"https://mrarif.me/cpnordic/tomrerarbejde/\">\n									Lær mere\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>				\n									<h4>\n							TAGDÆKNING						\n					</h4>\n									<p>\n						Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.					</p>\n												<a href=\"https://mrarif.me/cpnordic/tagdaekning/\">\n									Lær mere\n					</a>', 'Tjenester', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-14 11:04:54', '2026-02-14 11:04:54', '', 12, 'https://mrarif.me/cpnordic/?p=731', 0, 'revision', '', 0),
(732, 1, '2026-02-14 11:05:50', '2026-02-14 11:05:50', '<h5>\n						Terrasser					</h5>\n									<h5>\n						Totalrenoveringer					</h5>\n									<h5>\n						Tilbygninger					</h5>\n									<h5>\n						Carporte					</h5>\n									<h5>\n						Udskiftning og montering af døre og vinduer					</h5>\n									<h5>\n						Specialtilpassede løsninger					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>Terrasser</h2>		<p>Terrasser er et af vores kerneområder. Vi lægger stor vægt på korrekt opbygning, stabilitet og finish, da det er afgørende for både holdbarhed og udseende.</p><p>Vi arbejder gerne med hårdttræsterrasser og foretrækker træsorter som cumaru, ipé og thermobehandlet træ, da disse materialer har:</p>					<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										høj naturlig holdbarhed\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										god modstandsdygtighed over for fugt\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										et flot og tidløst udtryk\n									</li>\n						</ul>\n				<p>Med korrekt montage giver disse træsorter terrasser, der ældes pænt og kræver minimal vedligeholdelse.</p><p>Vi rådgiver altid om materialevalg, opbygning og vedligeholdelse, så løsningen passer til både huset, omgivelserne og kundens behov.</p>', 'TØMRERARBEJDE', '', 'inherit', 'closed', 'closed', '', '640-revision-v1', '', '', '2026-02-14 11:05:50', '2026-02-14 11:05:50', '', 640, 'https://mrarif.me/cpnordic/?p=732', 0, 'revision', '', 0),
(733, 1, '2026-02-14 11:05:50', '2026-02-14 11:05:50', '<h5>\n						Terrasser					</h5>\n									<h5>\n						Totalrenoveringer					</h5>\n									<h5>\n						Tilbygninger					</h5>\n									<h5>\n						Carporte					</h5>\n									<h5>\n						Udskiftning og montering af døre og vinduer					</h5>\n									<h5>\n						Specialtilpassede løsninger					</h5>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>Terrasser</h2>		<p>Terrasser er et af vores kerneområder. Vi lægger stor vægt på korrekt opbygning, stabilitet og finish, da det er afgørende for både holdbarhed og udseende.</p><p>Vi arbejder gerne med hårdttræsterrasser og foretrækker træsorter som cumaru, ipé og thermobehandlet træ, da disse materialer har:</p>					<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										høj naturlig holdbarhed\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										god modstandsdygtighed over for fugt\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										et flot og tidløst udtryk\n									</li>\n						</ul>\n				<p>Med korrekt montage giver disse træsorter terrasser, der ældes pænt og kræver minimal vedligeholdelse.</p><p>Vi rådgiver altid om materialevalg, opbygning og vedligeholdelse, så løsningen passer til både huset, omgivelserne og kundens behov.</p>', 'TØMRERARBEJDE', '', 'inherit', 'closed', 'closed', '', '640-revision-v1', '', '', '2026-02-14 11:05:50', '2026-02-14 11:05:50', '', 640, 'https://mrarif.me/cpnordic/?p=733', 0, 'revision', '', 0),
(735, 1, '2026-02-14 11:06:58', '2026-02-14 11:06:58', '<h2>Vores tjenester</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>				\n									<h4>\n							TØMRERARBEJDE						\n					</h4>\n									<p>\n						Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:\n					</p>\n												<a href=\"https://mrarif.me/cpnordic/tomrerarbejde/\">\n									Lær mere\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>				\n									<h4>\n							TAGDÆKNING						\n					</h4>\n									<p>\n						Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.					</p>\n												<a href=\"https://mrarif.me/cpnordic/tagdaekning/\">\n									Lær mere\n					</a>', 'Tjenester', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-14 11:06:58', '2026-02-14 11:06:58', '', 12, 'https://mrarif.me/cpnordic/?p=735', 0, 'revision', '', 0),
(736, 1, '2026-02-14 11:06:58', '2026-02-14 11:06:58', '<h2>Vores tjenester</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>				\n									<h4>\n							TØMRERARBEJDE						\n					</h4>\n									<p>\n						Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:\n					</p>\n												<a href=\"https://mrarif.me/cpnordic/tomrerarbejde/\">\n									Lær mere\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>				\n									<h4>\n							TAGDÆKNING						\n					</h4>\n									<p>\n						Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.					</p>\n												<a href=\"https://mrarif.me/cpnordic/tagdaekning/\">\n									Lær mere\n					</a>', 'Tjenester', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-14 11:06:58', '2026-02-14 11:06:58', '', 12, 'https://mrarif.me/cpnordic/?p=736', 0, 'revision', '', 0),
(737, 1, '2026-02-14 11:06:58', '2026-02-14 11:06:58', '<h2>Vores tjenester</h2>							\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>				\n									<h4>\n							TØMRERARBEJDE						\n					</h4>\n									<p>\n						Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:\n					</p>\n												<a href=\"https://mrarif.me/cpnordic/tomrerarbejde/\">\n									Lær mere\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>				\n									<h4>\n							TAGDÆKNING						\n					</h4>\n									<p>\n						Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.					</p>\n												<a href=\"https://mrarif.me/cpnordic/tagdaekning/\">\n									Lær mere\n					</a>', 'Tjenester', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-14 11:06:58', '2026-02-14 11:06:58', '', 12, 'https://mrarif.me/cpnordic/?p=737', 0, 'revision', '', 0),
(738, 1, '2026-02-14 11:08:34', '2026-02-14 11:08:34', '<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>SPECIALLØSNINGER</h2>		<p>Vi har en særlig interesse for opgaver, der kræver noget ekstra. Når standardløsninger ikke passer, finder vi løsninger, der gør.</p>			<h5>Det kan være:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										teknisk krævende detaljer\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										specialtilpassede konstruktioner\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										samspil mellem flere materialer\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										løsninger, der kræver ekstra omtanke\n									</li>\n						</ul>\n				<p>Her kommer vores faglighed og erfaring virkelig i spil.</p>			<h2>KVALITET FREM FOR KVANTITET</h2>		<p>Vi tager bevidst et begrænset antal opgaver ad gangen. Det giver os mulighed for at:</p>					<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										bevare overblik\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										sikre høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										være tilgængelige for kunden\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										følge op på detaljerne\n									</li>\n						</ul>\n				<p>Vi tror på, at godt håndværk kræver tid og fokus.</p>', 'TAGDÆKNING', '', 'inherit', 'closed', 'closed', '', '642-revision-v1', '', '', '2026-02-14 11:08:34', '2026-02-14 11:08:34', '', 642, 'https://mrarif.me/cpnordic/?p=738', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(739, 1, '2026-02-14 11:08:34', '2026-02-14 11:08:34', '<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>SPECIALLØSNINGER</h2>		<p>Vi har en særlig interesse for opgaver, der kræver noget ekstra. Når standardløsninger ikke passer, finder vi løsninger, der gør.</p>			<h5>Det kan være:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										teknisk krævende detaljer\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										specialtilpassede konstruktioner\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										samspil mellem flere materialer\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										løsninger, der kræver ekstra omtanke\n									</li>\n						</ul>\n				<p>Her kommer vores faglighed og erfaring virkelig i spil.</p>			<h2>KVALITET FREM FOR KVANTITET</h2>		<p>Vi tager bevidst et begrænset antal opgaver ad gangen. Det giver os mulighed for at:</p>					<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										bevare overblik\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										sikre høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										være tilgængelige for kunden\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										følge op på detaljerne\n									</li>\n						</ul>\n				<p>Vi tror på, at godt håndværk kræver tid og fokus.</p>', 'TAGDÆKNING', '', 'inherit', 'closed', 'closed', '', '642-revision-v1', '', '', '2026-02-14 11:08:34', '2026-02-14 11:08:34', '', 642, 'https://mrarif.me/cpnordic/?p=739', 0, 'revision', '', 0),
(740, 1, '2026-02-14 11:08:35', '2026-02-14 11:08:35', '<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>			<h2>SPECIALLØSNINGER</h2>		<p>Vi har en særlig interesse for opgaver, der kræver noget ekstra. Når standardløsninger ikke passer, finder vi løsninger, der gør.</p>			<h5>Det kan være:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										teknisk krævende detaljer\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										specialtilpassede konstruktioner\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										samspil mellem flere materialer\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										løsninger, der kræver ekstra omtanke\n									</li>\n						</ul>\n				Her kommer vores faglighed og erfaring virkelig i spil.			<h2>KVALITET FREM FOR KVANTITET</h2>		<p>Vi tager bevidst et begrænset antal opgaver ad gangen. Det giver os mulighed for at:</p>					<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										bevare overblik\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										sikre høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										være tilgængelige for kunden\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										følge op på detaljerne\n									</li>\n						</ul>\n				Vi tror på, at godt håndværk kræver tid og fokus.', 'TAGDÆKNING', '', 'inherit', 'closed', 'closed', '', '642-revision-v1', '', '', '2026-02-14 11:08:35', '2026-02-14 11:08:35', '', 642, 'https://mrarif.me/cpnordic/?p=740', 0, 'revision', '', 0),
(741, 1, '2026-02-14 11:10:33', '2026-02-14 11:10:33', '<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle ANMELDELSER\n					</a>', 'ANMELDELSER', '', 'inherit', 'closed', 'closed', '', '668-revision-v1', '', '', '2026-02-14 11:10:33', '2026-02-14 11:10:33', '', 668, 'https://mrarif.me/cpnordic/?p=741', 0, 'revision', '', 0),
(742, 1, '2026-02-14 11:10:33', '2026-02-14 11:10:33', '<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle ANMELDELSER\n					</a>', 'ANMELDELSER', '', 'inherit', 'closed', 'closed', '', '668-revision-v1', '', '', '2026-02-14 11:10:33', '2026-02-14 11:10:33', '', 668, 'https://mrarif.me/cpnordic/?p=742', 0, 'revision', '', 0),
(743, 1, '2026-02-14 11:10:33', '2026-02-14 11:10:33', '<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle ANMELDELSER\n					</a>', 'ANMELDELSER', '', 'inherit', 'closed', 'closed', '', '668-revision-v1', '', '', '2026-02-14 11:10:33', '2026-02-14 11:10:33', '', 668, 'https://mrarif.me/cpnordic/?p=743', 0, 'revision', '', 0),
(744, 1, '2026-02-14 11:14:29', '2026-02-14 11:14:29', '<h2>Kontaktoplysninger</h2>		<p>Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid<br />velkommen til at kontakte os for en uforpligtende snak.</p>					\n			<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>			\n							<h5>Placering</h5>							<ul>\n							<li>\n										Fyn, Denmark\n									</li>\n						</ul>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M358.57,0H153.43c-27.195,0-49.319,22.124-49.319,49.319v413.362h-0.001c0,27.195,22.124,49.319,49.319,49.319H358.57   c27.195,0,49.319-22.124,49.319-49.319V49.319C407.891,22.124,385.766,0,358.57,0z M124.508,49.319   c0-15.948,12.974-28.921,28.921-28.921H358.57c15.947,0,28.921,12.974,28.921,28.921v355.589H124.508V49.319z M387.493,462.681   L387.493,462.681c-0.001,15.947-12.975,28.921-28.922,28.921H153.43c-15.948,0-28.921-12.974-28.921-28.921v-37.374h262.984   V462.681z\"></path>	</g></g><g>	<g>		<path d=\"M270.789,34.677h-29.578c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h29.578   c5.632,0,10.199-4.566,10.199-10.199C280.988,39.243,276.421,34.677,270.789,34.677z\"></path>	</g></g><g>	<g>		<path d=\"M242.204,371.251h-91.255c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h91.255   c5.632,0,10.199-4.566,10.199-10.199C252.403,375.817,247.836,371.251,242.204,371.251z\"></path>	</g></g><g>	<g>		<path d=\"M282.518,371.251h-5.346c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h5.346   c5.632,0,10.199-4.566,10.199-10.199C292.717,375.817,288.15,371.251,282.518,371.251z\"></path>	</g></g><g>	<g>		<path d=\"M256,430.406c-14.903,0-27.028,12.125-27.028,27.028s12.125,27.028,27.028,27.028s27.028-12.125,27.028-27.028   S270.903,430.406,256,430.406z M256,464.064c-3.655,0-6.629-2.974-6.629-6.63s2.974-6.629,6.629-6.629s6.63,2.974,6.63,6.629   S259.655,464.064,256,464.064z\"></path>	</g></g><g>	<g>		<path d=\"M442.612,198.005c-3.984-3.983-10.44-3.983-14.425,0c-3.983,3.983-3.983,10.441,0,14.425   c23.463,23.462,23.463,61.639,0,85.1c-3.983,3.983-3.983,10.441,0,14.425c1.992,1.992,4.602,2.987,7.212,2.987   s5.22-0.995,7.212-2.987C474.027,280.539,474.027,229.421,442.612,198.005z\"></path>	</g></g><g>	<g>		<path d=\"M470.017,170.6c-3.984-3.983-10.44-3.983-14.425,0c-3.983,3.983-3.983,10.441,0,14.425   c18.686,18.686,28.977,43.53,28.977,69.955s-10.291,51.27-28.977,69.955c-3.983,3.983-3.983,10.441,0,14.425   c1.992,1.992,4.602,2.987,7.212,2.987c2.61,0,5.22-0.995,7.212-2.987C516.544,292.832,516.544,217.128,470.017,170.6z\"></path>	</g></g><g>	<g>		<path d=\"M83.812,212.43c3.984-3.984,3.984-10.442,0.001-14.425c-3.984-3.983-10.44-3.983-14.425,0   c-31.416,31.416-31.416,82.533,0,113.95c1.992,1.992,4.602,2.987,7.212,2.987s5.22-0.995,7.212-2.987   c3.983-3.983,3.983-10.441,0-14.425C60.349,274.068,60.349,235.891,83.812,212.43z\"></path>	</g></g><g>	<g>		<path d=\"M27.431,254.98c0-26.426,10.291-51.27,28.977-69.955c3.983-3.983,3.983-10.441,0-14.425   c-3.984-3.983-10.44-3.983-14.425,0c-46.527,46.528-46.527,122.232,0,168.76c1.992,1.992,4.602,2.987,7.212,2.987   s5.22-0.995,7.212-2.987c3.983-3.983,3.983-10.441,0-14.425C37.721,306.25,27.431,281.406,27.431,254.98z\"></path>	</g></g><g>	<g>		<path d=\"M358.06,280.099l-47.694-47.694c-2.619-2.618-6.45-3.613-10.015-2.595l-7.104,2.03c-1.015,0.291-1.98,0.736-2.859,1.323   l-14.669,9.788c-17.71-12.415-33.181-28.156-45.295-46.078l10.425-10.425c1.226-1.226,2.119-2.743,2.596-4.41l2.03-7.104   c1.018-3.562,0.023-7.394-2.595-10.015l-47.697-47.697c-2.827-2.827-7.048-3.742-10.793-2.338l-8.119,3.044   c-1.364,0.511-2.602,1.309-3.632,2.338c-1.938,1.939-3.804,4.028-5.546,6.207c-23.54,29.472-21.155,71.832,5.546,98.534   l77.633,77.632c14.404,14.405,33.363,21.733,52.398,21.732c16.254,0,32.564-5.343,46.138-16.187   c2.179-1.741,4.266-3.606,6.205-5.545c1.029-1.03,1.827-2.267,2.338-3.631l3.044-8.119   C361.802,287.147,360.888,282.927,358.06,280.099z M336.079,292.253c-21.345,17.05-52.032,15.315-71.379-4.034l-77.633-77.632   c-19.349-19.349-21.082-50.035-4.034-71.379c0.783-0.98,1.598-1.933,2.44-2.849l38.31,38.311l-13.591,13.592   c-3.331,3.331-3.947,8.51-1.491,12.531c15.402,25.2,36.656,46.986,61.469,63.005c3.415,2.204,7.81,2.17,11.194-0.085   l18.872-12.593l38.696,38.696C338.011,290.656,337.058,291.471,336.079,292.253z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>			\n							<h5>Ring til os</h5>							<ul>\n							<li>\n											<a href=\"tel:41600040\">\n											41 60 00 40\n											</a>\n									</li>\n						</ul>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M331.756,277.251l-42.881,43.026c-17.389,17.45-47.985,17.826-65.75,0l-42.883-43.026L26.226,431.767   C31.959,434.418,38.28,436,45,436h422c6.72,0,13.039-1.58,18.77-4.232L331.756,277.251z\"></path>	</g></g><g>	<g>		<path d=\"M467,76H45c-6.72,0-13.041,1.582-18.772,4.233l164.577,165.123c0.011,0.011,0.024,0.013,0.035,0.024   c0.011,0.011,0.013,0.026,0.013,0.026l53.513,53.69c5.684,5.684,17.586,5.684,23.27,0l53.502-53.681c0,0,0.013-0.024,0.024-0.035   c0,0,0.024-0.013,0.035-0.024L485.77,80.232C480.039,77.58,473.72,76,467,76z\"></path>	</g></g><g>	<g>		<path d=\"M4.786,101.212C1.82,107.21,0,113.868,0,121v270c0,7.132,1.818,13.79,4.785,19.788l154.283-154.783L4.786,101.212z\"></path>	</g></g><g>	<g>		<path d=\"M507.214,101.21L352.933,256.005L507.214,410.79C510.18,404.792,512,398.134,512,391V121   C512,113.866,510.18,107.208,507.214,101.21z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>			\n							<h5>Send os en email</h5>							<ul>\n							<li>\n											<a href=\"mailto:kontakt@cp-nordic.dk\">\n											kontakt@cp-nordic.dk\n											</a>\n									</li>\n						</ul>\n							<h2>KONTAKT OS</h2>		<p>Vi dækker hele Fyn – og tager også gerne opgaver uden for området, når der er tale om spændende eller teknisk krævende løsninger.</p>					\n					<a href=\"https://www.facebook.com/cpnordic/\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"https://www.instagram.com/cpnordic/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>', 'Kontakt', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-02-14 11:14:29', '2026-02-14 11:14:29', '', 18, 'https://mrarif.me/cpnordic/?p=744', 0, 'revision', '', 0),
(745, 1, '2026-02-14 11:14:29', '2026-02-14 11:14:29', '<h2>Kontaktoplysninger</h2>		<p>Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid<br />velkommen til at kontakte os for en uforpligtende snak.</p>					\n			<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>			\n							<h5>Placering</h5>							<ul>\n							<li>\n										Fyn, Denmark\n									</li>\n						</ul>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M358.57,0H153.43c-27.195,0-49.319,22.124-49.319,49.319v413.362h-0.001c0,27.195,22.124,49.319,49.319,49.319H358.57   c27.195,0,49.319-22.124,49.319-49.319V49.319C407.891,22.124,385.766,0,358.57,0z M124.508,49.319   c0-15.948,12.974-28.921,28.921-28.921H358.57c15.947,0,28.921,12.974,28.921,28.921v355.589H124.508V49.319z M387.493,462.681   L387.493,462.681c-0.001,15.947-12.975,28.921-28.922,28.921H153.43c-15.948,0-28.921-12.974-28.921-28.921v-37.374h262.984   V462.681z\"></path>	</g></g><g>	<g>		<path d=\"M270.789,34.677h-29.578c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h29.578   c5.632,0,10.199-4.566,10.199-10.199C280.988,39.243,276.421,34.677,270.789,34.677z\"></path>	</g></g><g>	<g>		<path d=\"M242.204,371.251h-91.255c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h91.255   c5.632,0,10.199-4.566,10.199-10.199C252.403,375.817,247.836,371.251,242.204,371.251z\"></path>	</g></g><g>	<g>		<path d=\"M282.518,371.251h-5.346c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h5.346   c5.632,0,10.199-4.566,10.199-10.199C292.717,375.817,288.15,371.251,282.518,371.251z\"></path>	</g></g><g>	<g>		<path d=\"M256,430.406c-14.903,0-27.028,12.125-27.028,27.028s12.125,27.028,27.028,27.028s27.028-12.125,27.028-27.028   S270.903,430.406,256,430.406z M256,464.064c-3.655,0-6.629-2.974-6.629-6.63s2.974-6.629,6.629-6.629s6.63,2.974,6.63,6.629   S259.655,464.064,256,464.064z\"></path>	</g></g><g>	<g>		<path d=\"M442.612,198.005c-3.984-3.983-10.44-3.983-14.425,0c-3.983,3.983-3.983,10.441,0,14.425   c23.463,23.462,23.463,61.639,0,85.1c-3.983,3.983-3.983,10.441,0,14.425c1.992,1.992,4.602,2.987,7.212,2.987   s5.22-0.995,7.212-2.987C474.027,280.539,474.027,229.421,442.612,198.005z\"></path>	</g></g><g>	<g>		<path d=\"M470.017,170.6c-3.984-3.983-10.44-3.983-14.425,0c-3.983,3.983-3.983,10.441,0,14.425   c18.686,18.686,28.977,43.53,28.977,69.955s-10.291,51.27-28.977,69.955c-3.983,3.983-3.983,10.441,0,14.425   c1.992,1.992,4.602,2.987,7.212,2.987c2.61,0,5.22-0.995,7.212-2.987C516.544,292.832,516.544,217.128,470.017,170.6z\"></path>	</g></g><g>	<g>		<path d=\"M83.812,212.43c3.984-3.984,3.984-10.442,0.001-14.425c-3.984-3.983-10.44-3.983-14.425,0   c-31.416,31.416-31.416,82.533,0,113.95c1.992,1.992,4.602,2.987,7.212,2.987s5.22-0.995,7.212-2.987   c3.983-3.983,3.983-10.441,0-14.425C60.349,274.068,60.349,235.891,83.812,212.43z\"></path>	</g></g><g>	<g>		<path d=\"M27.431,254.98c0-26.426,10.291-51.27,28.977-69.955c3.983-3.983,3.983-10.441,0-14.425   c-3.984-3.983-10.44-3.983-14.425,0c-46.527,46.528-46.527,122.232,0,168.76c1.992,1.992,4.602,2.987,7.212,2.987   s5.22-0.995,7.212-2.987c3.983-3.983,3.983-10.441,0-14.425C37.721,306.25,27.431,281.406,27.431,254.98z\"></path>	</g></g><g>	<g>		<path d=\"M358.06,280.099l-47.694-47.694c-2.619-2.618-6.45-3.613-10.015-2.595l-7.104,2.03c-1.015,0.291-1.98,0.736-2.859,1.323   l-14.669,9.788c-17.71-12.415-33.181-28.156-45.295-46.078l10.425-10.425c1.226-1.226,2.119-2.743,2.596-4.41l2.03-7.104   c1.018-3.562,0.023-7.394-2.595-10.015l-47.697-47.697c-2.827-2.827-7.048-3.742-10.793-2.338l-8.119,3.044   c-1.364,0.511-2.602,1.309-3.632,2.338c-1.938,1.939-3.804,4.028-5.546,6.207c-23.54,29.472-21.155,71.832,5.546,98.534   l77.633,77.632c14.404,14.405,33.363,21.733,52.398,21.732c16.254,0,32.564-5.343,46.138-16.187   c2.179-1.741,4.266-3.606,6.205-5.545c1.029-1.03,1.827-2.267,2.338-3.631l3.044-8.119   C361.802,287.147,360.888,282.927,358.06,280.099z M336.079,292.253c-21.345,17.05-52.032,15.315-71.379-4.034l-77.633-77.632   c-19.349-19.349-21.082-50.035-4.034-71.379c0.783-0.98,1.598-1.933,2.44-2.849l38.31,38.311l-13.591,13.592   c-3.331,3.331-3.947,8.51-1.491,12.531c15.402,25.2,36.656,46.986,61.469,63.005c3.415,2.204,7.81,2.17,11.194-0.085   l18.872-12.593l38.696,38.696C338.011,290.656,337.058,291.471,336.079,292.253z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>			\n							<h5>Ring til os</h5>							<ul>\n							<li>\n											<a href=\"tel:41600040\">\n											41 60 00 40\n											</a>\n									</li>\n						</ul>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M331.756,277.251l-42.881,43.026c-17.389,17.45-47.985,17.826-65.75,0l-42.883-43.026L26.226,431.767   C31.959,434.418,38.28,436,45,436h422c6.72,0,13.039-1.58,18.77-4.232L331.756,277.251z\"></path>	</g></g><g>	<g>		<path d=\"M467,76H45c-6.72,0-13.041,1.582-18.772,4.233l164.577,165.123c0.011,0.011,0.024,0.013,0.035,0.024   c0.011,0.011,0.013,0.026,0.013,0.026l53.513,53.69c5.684,5.684,17.586,5.684,23.27,0l53.502-53.681c0,0,0.013-0.024,0.024-0.035   c0,0,0.024-0.013,0.035-0.024L485.77,80.232C480.039,77.58,473.72,76,467,76z\"></path>	</g></g><g>	<g>		<path d=\"M4.786,101.212C1.82,107.21,0,113.868,0,121v270c0,7.132,1.818,13.79,4.785,19.788l154.283-154.783L4.786,101.212z\"></path>	</g></g><g>	<g>		<path d=\"M507.214,101.21L352.933,256.005L507.214,410.79C510.18,404.792,512,398.134,512,391V121   C512,113.866,510.18,107.208,507.214,101.21z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>			\n							<h5>Send os en email</h5>							<ul>\n							<li>\n											<a href=\"mailto:kontakt@cp-nordic.dk\">\n											kontakt@cp-nordic.dk\n											</a>\n									</li>\n						</ul>\n							<h2>KONTAKT OS</h2>		<p>Vi dækker hele Fyn – og tager også gerne opgaver uden for området, når der er tale om spændende eller teknisk krævende løsninger.</p>					\n					<a href=\"https://www.facebook.com/cpnordic/\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"https://www.instagram.com/cpnordic/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>', 'Kontakt', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-02-14 11:14:29', '2026-02-14 11:14:29', '', 18, 'https://mrarif.me/cpnordic/?p=745', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(746, 1, '2026-02-14 11:14:29', '2026-02-14 11:14:29', '<h2>Kontaktoplysninger</h2>		Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid\nvelkommen til at kontakte os for en uforpligtende snak.					\n			<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>			\n							<h5>Placering</h5>							<ul>\n							<li>\n										Fyn, Denmark\n									</li>\n						</ul>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M358.57,0H153.43c-27.195,0-49.319,22.124-49.319,49.319v413.362h-0.001c0,27.195,22.124,49.319,49.319,49.319H358.57   c27.195,0,49.319-22.124,49.319-49.319V49.319C407.891,22.124,385.766,0,358.57,0z M124.508,49.319   c0-15.948,12.974-28.921,28.921-28.921H358.57c15.947,0,28.921,12.974,28.921,28.921v355.589H124.508V49.319z M387.493,462.681   L387.493,462.681c-0.001,15.947-12.975,28.921-28.922,28.921H153.43c-15.948,0-28.921-12.974-28.921-28.921v-37.374h262.984   V462.681z\"></path>	</g></g><g>	<g>		<path d=\"M270.789,34.677h-29.578c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h29.578   c5.632,0,10.199-4.566,10.199-10.199C280.988,39.243,276.421,34.677,270.789,34.677z\"></path>	</g></g><g>	<g>		<path d=\"M242.204,371.251h-91.255c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h91.255   c5.632,0,10.199-4.566,10.199-10.199C252.403,375.817,247.836,371.251,242.204,371.251z\"></path>	</g></g><g>	<g>		<path d=\"M282.518,371.251h-5.346c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h5.346   c5.632,0,10.199-4.566,10.199-10.199C292.717,375.817,288.15,371.251,282.518,371.251z\"></path>	</g></g><g>	<g>		<path d=\"M256,430.406c-14.903,0-27.028,12.125-27.028,27.028s12.125,27.028,27.028,27.028s27.028-12.125,27.028-27.028   S270.903,430.406,256,430.406z M256,464.064c-3.655,0-6.629-2.974-6.629-6.63s2.974-6.629,6.629-6.629s6.63,2.974,6.63,6.629   S259.655,464.064,256,464.064z\"></path>	</g></g><g>	<g>		<path d=\"M442.612,198.005c-3.984-3.983-10.44-3.983-14.425,0c-3.983,3.983-3.983,10.441,0,14.425   c23.463,23.462,23.463,61.639,0,85.1c-3.983,3.983-3.983,10.441,0,14.425c1.992,1.992,4.602,2.987,7.212,2.987   s5.22-0.995,7.212-2.987C474.027,280.539,474.027,229.421,442.612,198.005z\"></path>	</g></g><g>	<g>		<path d=\"M470.017,170.6c-3.984-3.983-10.44-3.983-14.425,0c-3.983,3.983-3.983,10.441,0,14.425   c18.686,18.686,28.977,43.53,28.977,69.955s-10.291,51.27-28.977,69.955c-3.983,3.983-3.983,10.441,0,14.425   c1.992,1.992,4.602,2.987,7.212,2.987c2.61,0,5.22-0.995,7.212-2.987C516.544,292.832,516.544,217.128,470.017,170.6z\"></path>	</g></g><g>	<g>		<path d=\"M83.812,212.43c3.984-3.984,3.984-10.442,0.001-14.425c-3.984-3.983-10.44-3.983-14.425,0   c-31.416,31.416-31.416,82.533,0,113.95c1.992,1.992,4.602,2.987,7.212,2.987s5.22-0.995,7.212-2.987   c3.983-3.983,3.983-10.441,0-14.425C60.349,274.068,60.349,235.891,83.812,212.43z\"></path>	</g></g><g>	<g>		<path d=\"M27.431,254.98c0-26.426,10.291-51.27,28.977-69.955c3.983-3.983,3.983-10.441,0-14.425   c-3.984-3.983-10.44-3.983-14.425,0c-46.527,46.528-46.527,122.232,0,168.76c1.992,1.992,4.602,2.987,7.212,2.987   s5.22-0.995,7.212-2.987c3.983-3.983,3.983-10.441,0-14.425C37.721,306.25,27.431,281.406,27.431,254.98z\"></path>	</g></g><g>	<g>		<path d=\"M358.06,280.099l-47.694-47.694c-2.619-2.618-6.45-3.613-10.015-2.595l-7.104,2.03c-1.015,0.291-1.98,0.736-2.859,1.323   l-14.669,9.788c-17.71-12.415-33.181-28.156-45.295-46.078l10.425-10.425c1.226-1.226,2.119-2.743,2.596-4.41l2.03-7.104   c1.018-3.562,0.023-7.394-2.595-10.015l-47.697-47.697c-2.827-2.827-7.048-3.742-10.793-2.338l-8.119,3.044   c-1.364,0.511-2.602,1.309-3.632,2.338c-1.938,1.939-3.804,4.028-5.546,6.207c-23.54,29.472-21.155,71.832,5.546,98.534   l77.633,77.632c14.404,14.405,33.363,21.733,52.398,21.732c16.254,0,32.564-5.343,46.138-16.187   c2.179-1.741,4.266-3.606,6.205-5.545c1.029-1.03,1.827-2.267,2.338-3.631l3.044-8.119   C361.802,287.147,360.888,282.927,358.06,280.099z M336.079,292.253c-21.345,17.05-52.032,15.315-71.379-4.034l-77.633-77.632   c-19.349-19.349-21.082-50.035-4.034-71.379c0.783-0.98,1.598-1.933,2.44-2.849l38.31,38.311l-13.591,13.592   c-3.331,3.331-3.947,8.51-1.491,12.531c15.402,25.2,36.656,46.986,61.469,63.005c3.415,2.204,7.81,2.17,11.194-0.085   l18.872-12.593l38.696,38.696C338.011,290.656,337.058,291.471,336.079,292.253z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>			\n							<h5>Ring til os</h5>							<ul>\n							<li>\n											<a href=\"tel:41600040\">\n											41 60 00 40\n											</a>\n									</li>\n						</ul>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M331.756,277.251l-42.881,43.026c-17.389,17.45-47.985,17.826-65.75,0l-42.883-43.026L26.226,431.767   C31.959,434.418,38.28,436,45,436h422c6.72,0,13.039-1.58,18.77-4.232L331.756,277.251z\"></path>	</g></g><g>	<g>		<path d=\"M467,76H45c-6.72,0-13.041,1.582-18.772,4.233l164.577,165.123c0.011,0.011,0.024,0.013,0.035,0.024   c0.011,0.011,0.013,0.026,0.013,0.026l53.513,53.69c5.684,5.684,17.586,5.684,23.27,0l53.502-53.681c0,0,0.013-0.024,0.024-0.035   c0,0,0.024-0.013,0.035-0.024L485.77,80.232C480.039,77.58,473.72,76,467,76z\"></path>	</g></g><g>	<g>		<path d=\"M4.786,101.212C1.82,107.21,0,113.868,0,121v270c0,7.132,1.818,13.79,4.785,19.788l154.283-154.783L4.786,101.212z\"></path>	</g></g><g>	<g>		<path d=\"M507.214,101.21L352.933,256.005L507.214,410.79C510.18,404.792,512,398.134,512,391V121   C512,113.866,510.18,107.208,507.214,101.21z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>			\n							<h5>Send os en email</h5>							<ul>\n							<li>\n											<a href=\"mailto:kontakt@cp-nordic.dk\">\n											kontakt@cp-nordic.dk\n											</a>\n									</li>\n						</ul>\n							<h2>KONTAKT OS</h2>		<p>Vi dækker hele Fyn – og tager også gerne opgaver uden for området, når der er tale om spændende eller teknisk krævende løsninger.</p>					\n					<a href=\"https://www.facebook.com/cpnordic/\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"https://www.instagram.com/cpnordic/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>', 'Kontakt', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-02-14 11:14:29', '2026-02-14 11:14:29', '', 18, 'https://mrarif.me/cpnordic/?p=746', 0, 'revision', '', 0),
(747, 1, '2026-02-14 11:16:11', '2026-02-14 11:16:11', '<h2>Kontaktoplysninger</h2>		Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid\nvelkommen til at kontakte os for en uforpligtende snak.					\n			<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>			\n							<h5>Placering</h5>							<ul>\n							<li>\n										Fyn, Denmark\n									</li>\n						</ul>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M358.57,0H153.43c-27.195,0-49.319,22.124-49.319,49.319v413.362h-0.001c0,27.195,22.124,49.319,49.319,49.319H358.57   c27.195,0,49.319-22.124,49.319-49.319V49.319C407.891,22.124,385.766,0,358.57,0z M124.508,49.319   c0-15.948,12.974-28.921,28.921-28.921H358.57c15.947,0,28.921,12.974,28.921,28.921v355.589H124.508V49.319z M387.493,462.681   L387.493,462.681c-0.001,15.947-12.975,28.921-28.922,28.921H153.43c-15.948,0-28.921-12.974-28.921-28.921v-37.374h262.984   V462.681z\"></path>	</g></g><g>	<g>		<path d=\"M270.789,34.677h-29.578c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h29.578   c5.632,0,10.199-4.566,10.199-10.199C280.988,39.243,276.421,34.677,270.789,34.677z\"></path>	</g></g><g>	<g>		<path d=\"M242.204,371.251h-91.255c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h91.255   c5.632,0,10.199-4.566,10.199-10.199C252.403,375.817,247.836,371.251,242.204,371.251z\"></path>	</g></g><g>	<g>		<path d=\"M282.518,371.251h-5.346c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h5.346   c5.632,0,10.199-4.566,10.199-10.199C292.717,375.817,288.15,371.251,282.518,371.251z\"></path>	</g></g><g>	<g>		<path d=\"M256,430.406c-14.903,0-27.028,12.125-27.028,27.028s12.125,27.028,27.028,27.028s27.028-12.125,27.028-27.028   S270.903,430.406,256,430.406z M256,464.064c-3.655,0-6.629-2.974-6.629-6.63s2.974-6.629,6.629-6.629s6.63,2.974,6.63,6.629   S259.655,464.064,256,464.064z\"></path>	</g></g><g>	<g>		<path d=\"M442.612,198.005c-3.984-3.983-10.44-3.983-14.425,0c-3.983,3.983-3.983,10.441,0,14.425   c23.463,23.462,23.463,61.639,0,85.1c-3.983,3.983-3.983,10.441,0,14.425c1.992,1.992,4.602,2.987,7.212,2.987   s5.22-0.995,7.212-2.987C474.027,280.539,474.027,229.421,442.612,198.005z\"></path>	</g></g><g>	<g>		<path d=\"M470.017,170.6c-3.984-3.983-10.44-3.983-14.425,0c-3.983,3.983-3.983,10.441,0,14.425   c18.686,18.686,28.977,43.53,28.977,69.955s-10.291,51.27-28.977,69.955c-3.983,3.983-3.983,10.441,0,14.425   c1.992,1.992,4.602,2.987,7.212,2.987c2.61,0,5.22-0.995,7.212-2.987C516.544,292.832,516.544,217.128,470.017,170.6z\"></path>	</g></g><g>	<g>		<path d=\"M83.812,212.43c3.984-3.984,3.984-10.442,0.001-14.425c-3.984-3.983-10.44-3.983-14.425,0   c-31.416,31.416-31.416,82.533,0,113.95c1.992,1.992,4.602,2.987,7.212,2.987s5.22-0.995,7.212-2.987   c3.983-3.983,3.983-10.441,0-14.425C60.349,274.068,60.349,235.891,83.812,212.43z\"></path>	</g></g><g>	<g>		<path d=\"M27.431,254.98c0-26.426,10.291-51.27,28.977-69.955c3.983-3.983,3.983-10.441,0-14.425   c-3.984-3.983-10.44-3.983-14.425,0c-46.527,46.528-46.527,122.232,0,168.76c1.992,1.992,4.602,2.987,7.212,2.987   s5.22-0.995,7.212-2.987c3.983-3.983,3.983-10.441,0-14.425C37.721,306.25,27.431,281.406,27.431,254.98z\"></path>	</g></g><g>	<g>		<path d=\"M358.06,280.099l-47.694-47.694c-2.619-2.618-6.45-3.613-10.015-2.595l-7.104,2.03c-1.015,0.291-1.98,0.736-2.859,1.323   l-14.669,9.788c-17.71-12.415-33.181-28.156-45.295-46.078l10.425-10.425c1.226-1.226,2.119-2.743,2.596-4.41l2.03-7.104   c1.018-3.562,0.023-7.394-2.595-10.015l-47.697-47.697c-2.827-2.827-7.048-3.742-10.793-2.338l-8.119,3.044   c-1.364,0.511-2.602,1.309-3.632,2.338c-1.938,1.939-3.804,4.028-5.546,6.207c-23.54,29.472-21.155,71.832,5.546,98.534   l77.633,77.632c14.404,14.405,33.363,21.733,52.398,21.732c16.254,0,32.564-5.343,46.138-16.187   c2.179-1.741,4.266-3.606,6.205-5.545c1.029-1.03,1.827-2.267,2.338-3.631l3.044-8.119   C361.802,287.147,360.888,282.927,358.06,280.099z M336.079,292.253c-21.345,17.05-52.032,15.315-71.379-4.034l-77.633-77.632   c-19.349-19.349-21.082-50.035-4.034-71.379c0.783-0.98,1.598-1.933,2.44-2.849l38.31,38.311l-13.591,13.592   c-3.331,3.331-3.947,8.51-1.491,12.531c15.402,25.2,36.656,46.986,61.469,63.005c3.415,2.204,7.81,2.17,11.194-0.085   l18.872-12.593l38.696,38.696C338.011,290.656,337.058,291.471,336.079,292.253z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>			\n							<h5>Ring til os</h5>							<ul>\n							<li>\n											<a href=\"tel:41600040\">\n											41 60 00 40\n											</a>\n									</li>\n						</ul>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M331.756,277.251l-42.881,43.026c-17.389,17.45-47.985,17.826-65.75,0l-42.883-43.026L26.226,431.767   C31.959,434.418,38.28,436,45,436h422c6.72,0,13.039-1.58,18.77-4.232L331.756,277.251z\"></path>	</g></g><g>	<g>		<path d=\"M467,76H45c-6.72,0-13.041,1.582-18.772,4.233l164.577,165.123c0.011,0.011,0.024,0.013,0.035,0.024   c0.011,0.011,0.013,0.026,0.013,0.026l53.513,53.69c5.684,5.684,17.586,5.684,23.27,0l53.502-53.681c0,0,0.013-0.024,0.024-0.035   c0,0,0.024-0.013,0.035-0.024L485.77,80.232C480.039,77.58,473.72,76,467,76z\"></path>	</g></g><g>	<g>		<path d=\"M4.786,101.212C1.82,107.21,0,113.868,0,121v270c0,7.132,1.818,13.79,4.785,19.788l154.283-154.783L4.786,101.212z\"></path>	</g></g><g>	<g>		<path d=\"M507.214,101.21L352.933,256.005L507.214,410.79C510.18,404.792,512,398.134,512,391V121   C512,113.866,510.18,107.208,507.214,101.21z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>			\n							<h5>Send os en email</h5>							<ul>\n							<li>\n											<a href=\"mailto:kontakt@cp-nordic.dk\">\n											kontakt@cp-nordic.dk\n											</a>\n									</li>\n						</ul>\n							<h2>KONTAKT OS</h2>		<p>Vi dækker hele Fyn – og tager også gerne opgaver uden for området, når der er tale om spændende eller teknisk krævende løsninger.</p>					\n					<a href=\"https://www.facebook.com/cpnordic/\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"https://www.instagram.com/cpnordic/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>', 'Kontakt', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-02-14 11:16:11', '2026-02-14 11:16:11', '', 18, 'https://mrarif.me/cpnordic/?p=747', 0, 'revision', '', 0),
(748, 1, '2026-02-14 11:16:11', '2026-02-14 11:16:11', '<h2>Kontaktoplysninger</h2>		Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid\nvelkommen til at kontakte os for en uforpligtende snak.					\n			<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>			\n							<h5>Placering</h5>							<ul>\n							<li>\n										Fyn, Denmark\n									</li>\n						</ul>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M358.57,0H153.43c-27.195,0-49.319,22.124-49.319,49.319v413.362h-0.001c0,27.195,22.124,49.319,49.319,49.319H358.57   c27.195,0,49.319-22.124,49.319-49.319V49.319C407.891,22.124,385.766,0,358.57,0z M124.508,49.319   c0-15.948,12.974-28.921,28.921-28.921H358.57c15.947,0,28.921,12.974,28.921,28.921v355.589H124.508V49.319z M387.493,462.681   L387.493,462.681c-0.001,15.947-12.975,28.921-28.922,28.921H153.43c-15.948,0-28.921-12.974-28.921-28.921v-37.374h262.984   V462.681z\"></path>	</g></g><g>	<g>		<path d=\"M270.789,34.677h-29.578c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h29.578   c5.632,0,10.199-4.566,10.199-10.199C280.988,39.243,276.421,34.677,270.789,34.677z\"></path>	</g></g><g>	<g>		<path d=\"M242.204,371.251h-91.255c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h91.255   c5.632,0,10.199-4.566,10.199-10.199C252.403,375.817,247.836,371.251,242.204,371.251z\"></path>	</g></g><g>	<g>		<path d=\"M282.518,371.251h-5.346c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h5.346   c5.632,0,10.199-4.566,10.199-10.199C292.717,375.817,288.15,371.251,282.518,371.251z\"></path>	</g></g><g>	<g>		<path d=\"M256,430.406c-14.903,0-27.028,12.125-27.028,27.028s12.125,27.028,27.028,27.028s27.028-12.125,27.028-27.028   S270.903,430.406,256,430.406z M256,464.064c-3.655,0-6.629-2.974-6.629-6.63s2.974-6.629,6.629-6.629s6.63,2.974,6.63,6.629   S259.655,464.064,256,464.064z\"></path>	</g></g><g>	<g>		<path d=\"M442.612,198.005c-3.984-3.983-10.44-3.983-14.425,0c-3.983,3.983-3.983,10.441,0,14.425   c23.463,23.462,23.463,61.639,0,85.1c-3.983,3.983-3.983,10.441,0,14.425c1.992,1.992,4.602,2.987,7.212,2.987   s5.22-0.995,7.212-2.987C474.027,280.539,474.027,229.421,442.612,198.005z\"></path>	</g></g><g>	<g>		<path d=\"M470.017,170.6c-3.984-3.983-10.44-3.983-14.425,0c-3.983,3.983-3.983,10.441,0,14.425   c18.686,18.686,28.977,43.53,28.977,69.955s-10.291,51.27-28.977,69.955c-3.983,3.983-3.983,10.441,0,14.425   c1.992,1.992,4.602,2.987,7.212,2.987c2.61,0,5.22-0.995,7.212-2.987C516.544,292.832,516.544,217.128,470.017,170.6z\"></path>	</g></g><g>	<g>		<path d=\"M83.812,212.43c3.984-3.984,3.984-10.442,0.001-14.425c-3.984-3.983-10.44-3.983-14.425,0   c-31.416,31.416-31.416,82.533,0,113.95c1.992,1.992,4.602,2.987,7.212,2.987s5.22-0.995,7.212-2.987   c3.983-3.983,3.983-10.441,0-14.425C60.349,274.068,60.349,235.891,83.812,212.43z\"></path>	</g></g><g>	<g>		<path d=\"M27.431,254.98c0-26.426,10.291-51.27,28.977-69.955c3.983-3.983,3.983-10.441,0-14.425   c-3.984-3.983-10.44-3.983-14.425,0c-46.527,46.528-46.527,122.232,0,168.76c1.992,1.992,4.602,2.987,7.212,2.987   s5.22-0.995,7.212-2.987c3.983-3.983,3.983-10.441,0-14.425C37.721,306.25,27.431,281.406,27.431,254.98z\"></path>	</g></g><g>	<g>		<path d=\"M358.06,280.099l-47.694-47.694c-2.619-2.618-6.45-3.613-10.015-2.595l-7.104,2.03c-1.015,0.291-1.98,0.736-2.859,1.323   l-14.669,9.788c-17.71-12.415-33.181-28.156-45.295-46.078l10.425-10.425c1.226-1.226,2.119-2.743,2.596-4.41l2.03-7.104   c1.018-3.562,0.023-7.394-2.595-10.015l-47.697-47.697c-2.827-2.827-7.048-3.742-10.793-2.338l-8.119,3.044   c-1.364,0.511-2.602,1.309-3.632,2.338c-1.938,1.939-3.804,4.028-5.546,6.207c-23.54,29.472-21.155,71.832,5.546,98.534   l77.633,77.632c14.404,14.405,33.363,21.733,52.398,21.732c16.254,0,32.564-5.343,46.138-16.187   c2.179-1.741,4.266-3.606,6.205-5.545c1.029-1.03,1.827-2.267,2.338-3.631l3.044-8.119   C361.802,287.147,360.888,282.927,358.06,280.099z M336.079,292.253c-21.345,17.05-52.032,15.315-71.379-4.034l-77.633-77.632   c-19.349-19.349-21.082-50.035-4.034-71.379c0.783-0.98,1.598-1.933,2.44-2.849l38.31,38.311l-13.591,13.592   c-3.331,3.331-3.947,8.51-1.491,12.531c15.402,25.2,36.656,46.986,61.469,63.005c3.415,2.204,7.81,2.17,11.194-0.085   l18.872-12.593l38.696,38.696C338.011,290.656,337.058,291.471,336.079,292.253z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>			\n							<h5>Ring til os</h5>							<ul>\n							<li>\n											<a href=\"tel:41600040\">\n											41 60 00 40\n											</a>\n									</li>\n						</ul>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M331.756,277.251l-42.881,43.026c-17.389,17.45-47.985,17.826-65.75,0l-42.883-43.026L26.226,431.767   C31.959,434.418,38.28,436,45,436h422c6.72,0,13.039-1.58,18.77-4.232L331.756,277.251z\"></path>	</g></g><g>	<g>		<path d=\"M467,76H45c-6.72,0-13.041,1.582-18.772,4.233l164.577,165.123c0.011,0.011,0.024,0.013,0.035,0.024   c0.011,0.011,0.013,0.026,0.013,0.026l53.513,53.69c5.684,5.684,17.586,5.684,23.27,0l53.502-53.681c0,0,0.013-0.024,0.024-0.035   c0,0,0.024-0.013,0.035-0.024L485.77,80.232C480.039,77.58,473.72,76,467,76z\"></path>	</g></g><g>	<g>		<path d=\"M4.786,101.212C1.82,107.21,0,113.868,0,121v270c0,7.132,1.818,13.79,4.785,19.788l154.283-154.783L4.786,101.212z\"></path>	</g></g><g>	<g>		<path d=\"M507.214,101.21L352.933,256.005L507.214,410.79C510.18,404.792,512,398.134,512,391V121   C512,113.866,510.18,107.208,507.214,101.21z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>			\n							<h5>Send os en email</h5>							<ul>\n							<li>\n											<a href=\"mailto:kontakt@cp-nordic.dk\">\n											kontakt@cp-nordic.dk\n											</a>\n									</li>\n						</ul>\n							<h2>KONTAKT OS</h2>		<p>Vi dækker hele Fyn – og tager også gerne opgaver uden for området, når der er tale om spændende eller teknisk krævende løsninger.</p>					\n					<a href=\"https://www.facebook.com/cpnordic/\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"https://www.instagram.com/cpnordic/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>', 'Kontakt', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-02-14 11:16:11', '2026-02-14 11:16:11', '', 18, 'https://mrarif.me/cpnordic/?p=748', 0, 'revision', '', 0),
(749, 1, '2026-02-14 11:16:12', '2026-02-14 11:16:12', '<h2>Kontaktoplysninger</h2>		Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid\nvelkommen til at kontakte os for en uforpligtende snak.					\n			<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>			\n							<h5>Placering</h5>							<ul>\n							<li>\n										Fyn, Denmark\n									</li>\n						</ul>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M358.57,0H153.43c-27.195,0-49.319,22.124-49.319,49.319v413.362h-0.001c0,27.195,22.124,49.319,49.319,49.319H358.57   c27.195,0,49.319-22.124,49.319-49.319V49.319C407.891,22.124,385.766,0,358.57,0z M124.508,49.319   c0-15.948,12.974-28.921,28.921-28.921H358.57c15.947,0,28.921,12.974,28.921,28.921v355.589H124.508V49.319z M387.493,462.681   L387.493,462.681c-0.001,15.947-12.975,28.921-28.922,28.921H153.43c-15.948,0-28.921-12.974-28.921-28.921v-37.374h262.984   V462.681z\"></path>	</g></g><g>	<g>		<path d=\"M270.789,34.677h-29.578c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h29.578   c5.632,0,10.199-4.566,10.199-10.199C280.988,39.243,276.421,34.677,270.789,34.677z\"></path>	</g></g><g>	<g>		<path d=\"M242.204,371.251h-91.255c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h91.255   c5.632,0,10.199-4.566,10.199-10.199C252.403,375.817,247.836,371.251,242.204,371.251z\"></path>	</g></g><g>	<g>		<path d=\"M282.518,371.251h-5.346c-5.632,0-10.199,4.566-10.199,10.199c0,5.633,4.567,10.199,10.199,10.199h5.346   c5.632,0,10.199-4.566,10.199-10.199C292.717,375.817,288.15,371.251,282.518,371.251z\"></path>	</g></g><g>	<g>		<path d=\"M256,430.406c-14.903,0-27.028,12.125-27.028,27.028s12.125,27.028,27.028,27.028s27.028-12.125,27.028-27.028   S270.903,430.406,256,430.406z M256,464.064c-3.655,0-6.629-2.974-6.629-6.63s2.974-6.629,6.629-6.629s6.63,2.974,6.63,6.629   S259.655,464.064,256,464.064z\"></path>	</g></g><g>	<g>		<path d=\"M442.612,198.005c-3.984-3.983-10.44-3.983-14.425,0c-3.983,3.983-3.983,10.441,0,14.425   c23.463,23.462,23.463,61.639,0,85.1c-3.983,3.983-3.983,10.441,0,14.425c1.992,1.992,4.602,2.987,7.212,2.987   s5.22-0.995,7.212-2.987C474.027,280.539,474.027,229.421,442.612,198.005z\"></path>	</g></g><g>	<g>		<path d=\"M470.017,170.6c-3.984-3.983-10.44-3.983-14.425,0c-3.983,3.983-3.983,10.441,0,14.425   c18.686,18.686,28.977,43.53,28.977,69.955s-10.291,51.27-28.977,69.955c-3.983,3.983-3.983,10.441,0,14.425   c1.992,1.992,4.602,2.987,7.212,2.987c2.61,0,5.22-0.995,7.212-2.987C516.544,292.832,516.544,217.128,470.017,170.6z\"></path>	</g></g><g>	<g>		<path d=\"M83.812,212.43c3.984-3.984,3.984-10.442,0.001-14.425c-3.984-3.983-10.44-3.983-14.425,0   c-31.416,31.416-31.416,82.533,0,113.95c1.992,1.992,4.602,2.987,7.212,2.987s5.22-0.995,7.212-2.987   c3.983-3.983,3.983-10.441,0-14.425C60.349,274.068,60.349,235.891,83.812,212.43z\"></path>	</g></g><g>	<g>		<path d=\"M27.431,254.98c0-26.426,10.291-51.27,28.977-69.955c3.983-3.983,3.983-10.441,0-14.425   c-3.984-3.983-10.44-3.983-14.425,0c-46.527,46.528-46.527,122.232,0,168.76c1.992,1.992,4.602,2.987,7.212,2.987   s5.22-0.995,7.212-2.987c3.983-3.983,3.983-10.441,0-14.425C37.721,306.25,27.431,281.406,27.431,254.98z\"></path>	</g></g><g>	<g>		<path d=\"M358.06,280.099l-47.694-47.694c-2.619-2.618-6.45-3.613-10.015-2.595l-7.104,2.03c-1.015,0.291-1.98,0.736-2.859,1.323   l-14.669,9.788c-17.71-12.415-33.181-28.156-45.295-46.078l10.425-10.425c1.226-1.226,2.119-2.743,2.596-4.41l2.03-7.104   c1.018-3.562,0.023-7.394-2.595-10.015l-47.697-47.697c-2.827-2.827-7.048-3.742-10.793-2.338l-8.119,3.044   c-1.364,0.511-2.602,1.309-3.632,2.338c-1.938,1.939-3.804,4.028-5.546,6.207c-23.54,29.472-21.155,71.832,5.546,98.534   l77.633,77.632c14.404,14.405,33.363,21.733,52.398,21.732c16.254,0,32.564-5.343,46.138-16.187   c2.179-1.741,4.266-3.606,6.205-5.545c1.029-1.03,1.827-2.267,2.338-3.631l3.044-8.119   C361.802,287.147,360.888,282.927,358.06,280.099z M336.079,292.253c-21.345,17.05-52.032,15.315-71.379-4.034l-77.633-77.632   c-19.349-19.349-21.082-50.035-4.034-71.379c0.783-0.98,1.598-1.933,2.44-2.849l38.31,38.311l-13.591,13.592   c-3.331,3.331-3.947,8.51-1.491,12.531c15.402,25.2,36.656,46.986,61.469,63.005c3.415,2.204,7.81,2.17,11.194-0.085   l18.872-12.593l38.696,38.696C338.011,290.656,337.058,291.471,336.079,292.253z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>			\n							<h5>Ring til os</h5>							<ul>\n							<li>\n											<a href=\"tel:41600040\">\n											41 60 00 40\n											</a>\n									</li>\n						</ul>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\"><g>	<g>		<path d=\"M331.756,277.251l-42.881,43.026c-17.389,17.45-47.985,17.826-65.75,0l-42.883-43.026L26.226,431.767   C31.959,434.418,38.28,436,45,436h422c6.72,0,13.039-1.58,18.77-4.232L331.756,277.251z\"></path>	</g></g><g>	<g>		<path d=\"M467,76H45c-6.72,0-13.041,1.582-18.772,4.233l164.577,165.123c0.011,0.011,0.024,0.013,0.035,0.024   c0.011,0.011,0.013,0.026,0.013,0.026l53.513,53.69c5.684,5.684,17.586,5.684,23.27,0l53.502-53.681c0,0,0.013-0.024,0.024-0.035   c0,0,0.024-0.013,0.035-0.024L485.77,80.232C480.039,77.58,473.72,76,467,76z\"></path>	</g></g><g>	<g>		<path d=\"M4.786,101.212C1.82,107.21,0,113.868,0,121v270c0,7.132,1.818,13.79,4.785,19.788l154.283-154.783L4.786,101.212z\"></path>	</g></g><g>	<g>		<path d=\"M507.214,101.21L352.933,256.005L507.214,410.79C510.18,404.792,512,398.134,512,391V121   C512,113.866,510.18,107.208,507.214,101.21z\"></path>	</g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>			\n							<h5>Send os en email</h5>							<ul>\n							<li>\n											<a href=\"mailto:kontakt@cp-nordic.dk\">\n											kontakt@cp-nordic.dk\n											</a>\n									</li>\n						</ul>\n							<h2>KONTAKT OS</h2>		Vi dækker hele Fyn – og tager også gerne opgaver uden for området, når der er tale om spændende eller teknisk krævende løsninger.					\n					<a href=\"https://www.facebook.com/cpnordic/\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"https://www.instagram.com/cpnordic/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>', 'Kontakt', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-02-14 11:16:12', '2026-02-14 11:16:12', '', 18, 'https://mrarif.me/cpnordic/?p=749', 0, 'revision', '', 0),
(751, 1, '2026-02-14 11:33:00', '2026-02-14 11:33:00', '<img width=\"2560\" height=\"1157\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-scaled.png\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-scaled.png 2560w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-300x136.png 300w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-1024x463.png 1024w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-768x347.png 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-1536x694.png 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-2048x925.png 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />													We cover all of Funen and also operate throughout Denmark by agreement.<br>\nCVR: 45458830			<h5>Quick Links</h5>							<ul>\n							<li>\n											<a href=\"https://mrarif.me/cpnordic/\">\n											Hjem\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/cpnordic/tjenester/\">\n											Tjenester\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/cpnordic/referencer/\">\n											Referencer\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/cpnordic/om-os/\">\n											Om os\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/cpnordic/kontakt/\">\n											Kontakt\n											</a>\n									</li>\n						</ul>\n							<h5>Contact Info</h5>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										CP NORDIC ApS\n									</li>\n								<li>\n											<a href=\"tel:41600040\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										41 60 00 40\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:kontakt@cp-nordic.dk\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										kontakt@cp-nordic.dk\n											</a>\n									</li>\n						</ul>\n					<a href=\"https://www.facebook.com/cpnordic/\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"https://www.instagram.com/cpnordic/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"London Eye, London, United Kingdom\"\n					aria-label=\"London Eye, London, United Kingdom\"\n			></iframe>\n									<ul>\n							<li>\n										© Copyright 2026 all rights reserved\n									</li>\n						</ul>', 'Footer', '', 'inherit', 'closed', 'closed', '', '104-revision-v1', '', '', '2026-02-14 11:33:00', '2026-02-14 11:33:00', '', 104, 'https://mrarif.me/cpnordic/?p=751', 0, 'revision', '', 0),
(750, 1, '2026-02-14 11:31:11', '2026-02-14 11:31:11', '<img width=\"2560\" height=\"1157\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-scaled.png\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-scaled.png 2560w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-300x136.png 300w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-1024x463.png 1024w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-768x347.png 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-1536x694.png 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-2048x925.png 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />													<p>Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.</p>			<h5>Quick Links</h5>							<ul>\n							<li>\n											<a href=\"https://mrarif.me/cpnordic/\">\n											Hjem\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/cpnordic/tjenester/\">\n											Tjenester\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/cpnordic/referencer/\">\n											Referencer\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/cpnordic/om-os/\">\n											Om os\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/cpnordic/kontakt/\">\n											Kontakt\n											</a>\n									</li>\n						</ul>\n							<h5>Contact Info</h5>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										CP NORDIC ApS\n									</li>\n								<li>\n											<a href=\"tel:41600040\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										41 60 00 40\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:kontakt@cp-nordic.dk\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										kontakt@cp-nordic.dk\n											</a>\n									</li>\n						</ul>\n					<a href=\"https://www.facebook.com/cpnordic/\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"https://www.instagram.com/cpnordic/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"London Eye, London, United Kingdom\"\n					aria-label=\"London Eye, London, United Kingdom\"\n			></iframe>\n									<ul>\n							<li>\n										© Copyright 2026 all rights reserved\n									</li>\n						</ul>', 'Footer', '', 'inherit', 'closed', 'closed', '', '104-revision-v1', '', '', '2026-02-14 11:31:11', '2026-02-14 11:31:11', '', 104, 'https://mrarif.me/cpnordic/?p=750', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(752, 1, '2026-02-14 11:38:53', '2026-02-14 11:38:53', '<img width=\"2560\" height=\"1157\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-scaled.png\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-scaled.png 2560w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-300x136.png 300w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-1024x463.png 1024w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-768x347.png 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-1536x694.png 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-2048x925.png 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />													We cover all of Funen and also operate throughout Denmark by agreement.<br>\nCVR: 45458830			<h5>Quick Links</h5>							<ul>\n							<li>\n											<a href=\"https://mrarif.me/cpnordic/\">\n											Hjem\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/cpnordic/tjenester/\">\n											Tjenester\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/cpnordic/referencer/\">\n											Referencer\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/cpnordic/om-os/\">\n											Om os\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/cpnordic/kontakt/\">\n											Kontakt\n											</a>\n									</li>\n						</ul>\n							<h5>Contact Info</h5>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										CP NORDIC ApS : Bøjdenvejen 7, 5772 Kværndrup\n									</li>\n								<li>\n											<a href=\"tel:41600040\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										41 60 00 40\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:kontakt@cp-nordic.dk\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										kontakt@cp-nordic.dk\n											</a>\n									</li>\n						</ul>\n					<a href=\"https://www.facebook.com/cpnordic/\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"https://www.instagram.com/cpnordic/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=B%C3%B8jdenvejen%207%2C%205772%20Kv%C3%A6rndrup&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"Bøjdenvejen 7, 5772 Kværndrup\"\n					aria-label=\"Bøjdenvejen 7, 5772 Kværndrup\"\n			></iframe>\n									<ul>\n							<li>\n										© Copyright 2026 all rights reserved\n									</li>\n						</ul>', 'Footer', '', 'inherit', 'closed', 'closed', '', '104-revision-v1', '', '', '2026-02-14 11:38:53', '2026-02-14 11:38:53', '', 104, 'https://mrarif.me/cpnordic/?p=752', 0, 'revision', '', 0),
(753, 1, '2026-02-14 11:39:17', '2026-02-14 11:39:17', '<img width=\"2560\" height=\"1157\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-scaled.png\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-scaled.png 2560w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-300x136.png 300w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-1024x463.png 1024w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-768x347.png 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-1536x694.png 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/Transparent-File-02-2048x925.png 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />													We cover all of Funen and also operate throughout Denmark by agreement.<br>\nCVR: 45458830			<h5>Quick Links</h5>							<ul>\n							<li>\n											<a href=\"https://mrarif.me/cpnordic/\">\n											Hjem\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/cpnordic/tjenester/\">\n											Tjenester\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/cpnordic/referencer/\">\n											Referencer\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/cpnordic/om-os/\">\n											Om os\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/cpnordic/kontakt/\">\n											Kontakt\n											</a>\n									</li>\n						</ul>\n							<h5>Contact Info</h5>							<ul>\n							<li>\n											<a href=\"https://maps.google.com/maps?ll=55.178036,10.52236&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=B%C3%B8jdenvejen%207%205772%20Kv%C3%A6rndrup%20Denmark\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										CP NORDIC ApS : Bøjdenvejen 7, 5772 Kværndrup\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:41600040\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										41 60 00 40\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:kontakt@cp-nordic.dk\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										kontakt@cp-nordic.dk\n											</a>\n									</li>\n						</ul>\n					<a href=\"https://www.facebook.com/cpnordic/\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"https://www.instagram.com/cpnordic/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=B%C3%B8jdenvejen%207%2C%205772%20Kv%C3%A6rndrup&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"Bøjdenvejen 7, 5772 Kværndrup\"\n					aria-label=\"Bøjdenvejen 7, 5772 Kværndrup\"\n			></iframe>\n									<ul>\n							<li>\n										© Copyright 2026 all rights reserved\n									</li>\n						</ul>', 'Footer', '', 'inherit', 'closed', 'closed', '', '104-revision-v1', '', '', '2026-02-14 11:39:17', '2026-02-14 11:39:17', '', 104, 'https://mrarif.me/cpnordic/?p=753', 0, 'revision', '', 0),
(754, 1, '2026-02-14 11:52:39', '2026-02-14 11:52:39', '<h2>OM CP NORDIC ApS</h2>		<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p><p> </p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>', 'Om os', '', 'inherit', 'closed', 'closed', '', '16-revision-v1', '', '', '2026-02-14 11:52:39', '2026-02-14 11:52:39', '', 16, 'https://mrarif.me/cpnordic/?p=754', 0, 'revision', '', 0),
(755, 1, '2026-02-14 11:52:39', '2026-02-14 11:52:39', '<h2>OM CP NORDIC ApS</h2>		<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p><p>At være en ung virksomhed ser vi som en styrke. Vi er engagerede, motiverede og går til hver opgave med ansvar og stolthed. Vores mål er ikke at være størst eller hurtigst, men at være kendt for at levere arbejde, der er udført ordentligt og holder i mange år.</p><p> </p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>', 'Om os', '', 'inherit', 'closed', 'closed', '', '16-revision-v1', '', '', '2026-02-14 11:52:39', '2026-02-14 11:52:39', '', 16, 'https://mrarif.me/cpnordic/?p=755', 0, 'revision', '', 0),
(756, 1, '2026-02-14 11:52:39', '2026-02-14 11:52:39', '<h2>OM CP NORDIC ApS</h2>		<p>CP NORDIC ApS is run by two skilled craftsmen who completed their apprenticeships together in 2022. We are both 25 years old and share a strong passion for quality craftsmanship and long-lasting solutions.</p><p>We originally come from East Funen but are now based in Central Funen, from where we carry out work for both private and commercial clients. Our work ranges from carpentry and roofing to installation and specialized tasks, and we approach every project with professionalism, honesty, and attention to detail.</p><p>With us, there are no long decision-making processes or changing contact persons. You are in direct dialogue with the people carrying out the work, and we place great importance on clear agreements, good communication, and a finished result we can stand behind.</p><p>We cover all of Funen and also take on projects in the rest of Denmark by agreement.</p>													<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>', 'Om os', '', 'inherit', 'closed', 'closed', '', '16-revision-v1', '', '', '2026-02-14 11:52:39', '2026-02-14 11:52:39', '', 16, 'https://mrarif.me/cpnordic/?p=756', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(757, 1, '2026-02-14 12:09:49', '2026-02-14 12:09:49', '<h1>CP NORDIC ApS</h1>					<h4>Byggeri – Tømrerarbejde og tagdækning</h4>										<a href=\"https://mrarif.me/cpnordic/kontakt/\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"https://mrarif.me/cpnordic/om-os/\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"https://mrarif.me/cpnordic/tomrerarbejde/\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>								<a href=\"https://mrarif.me/cpnordic/tagdaekning/\">\n									Lær mere\n					</a>\n									<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle ANMELDELSER\n					</a>\n					<h2>HVORFOR VÆLGE CP NORDIC ApS?</h2>		<p>Når du vælger CP NORDIC ApS, får du:</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 450 450\" width=\"512\"><g><g><path d=\"m225 165.2c-25.9 0-48.9-18.8-53.3-45.2-2.4-14.2.9-28.6 9.3-40.3 8.4-11.8 20.9-19.5 35.1-21.9 29.4-4.9 57.3 15 62.2 44.5 4.9 29.4-15 57.3-44.4 62.2-3 .5-6 .7-8.9.7zm-7.6-99.8c-12.2 2-22.9 8.7-30.1 18.8s-10.1 22.4-8 34.6c3.8 22.7 23.5 38.8 45.7 38.8 2.5 0 5.1-.2 7.6-.6 25.2-4.2 42.3-28.1 38.1-53.4s-28.1-42.4-53.3-38.2z\"></path><path d=\"m255.2 115c-2.1 0-3.8-1.7-3.8-3.8 0-14.6-11.8-26.4-26.4-26.4-2.1 0-3.8-1.7-3.8-3.8s1.7-3.8 3.8-3.8c18.8 0 34.1 15.3 34.1 34.1 0 2-1.8 3.7-3.9 3.7z\"></path><path d=\"m236.1 203h-22.2c-2.1 0-3.8-1.7-3.8-3.8v-14.1c-3.1-.6-6.1-1.4-9.1-2.4l-7 12.2c-1.1 1.8-3.4 2.5-5.3 1.4l-19.2-11.1c-.9-.5-1.5-1.4-1.8-2.3-.3-1-.1-2 .4-2.9l7-12.1c-2.4-2.1-4.6-4.3-6.7-6.6l-12.1 7c-1.8 1.1-4.2.4-5.2-1.4l-11.1-19.2c-1.1-1.8-.4-4.2 1.4-5.2l11.9-6.8c-1-3-1.9-6.1-2.6-9.3h-13.7c-2.1 0-3.8-1.7-3.8-3.8v-22.2c0-2.1 1.7-3.8 3.8-3.8h13.4c.6-3.2 1.4-6.4 2.4-9.5l-11.5-6.6c-1.8-1.1-2.5-3.4-1.4-5.3l11.1-19.6c.5-.9 1.4-1.5 2.3-1.8s2-.1 2.9.4l11.3 6.6c2.2-2.5 4.5-4.8 7-7l-6.5-11.3c-.5-.9-.6-1.9-.4-2.9.3-1 .9-1.8 1.8-2.3l19.2-11.1c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l6.4 11.2c3.1-1.1 6.4-1.9 9.7-2.6v-13c0-2.1 1.7-3.8 3.8-3.8h22.2c2.1 0 3.8 1.7 3.8 3.8v12.8c3.3.7 6.5 1.5 9.7 2.6l6.5-11.2c.5-.9 1.4-1.5 2.3-1.8 1-.3 2-.1 2.9.4l19.2 11.1c.9.5 1.5 1.3 1.8 2.3s.1 2-.4 2.9l-6.5 11.3c2.5 2.2 4.8 4.5 7 7.1l11.3-6.6c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l11.1 19.2c1.1 1.8.4 4.2-1.4 5.3l-11.5 6.6c1 3.1 1.8 6.3 2.5 9.5h13.6c2.1 0 3.8 1.7 3.8 3.8v22.2c0 2.1-1.7 3.8-3.8 3.8h-13.6c-.6 3.1-1.5 6.2-2.5 9.3l11.9 6.8c1.8 1.1 2.5 3.4 1.4 5.2l-11.2 19.5c-1.1 1.8-3.4 2.5-5.2 1.4l-12-7c-2.1 2.4-4.4 4.6-6.7 6.6l7 12.1c.5.9.6 1.9.4 2.9s-.9 1.8-1.8 2.3l-19.2 11.1c-1.8 1.1-4.2.4-5.2-1.4l-7-12.2c-3 1-6 1.8-9.1 2.4v14.1c-.2 2.3-2 4-4.1 4zm-18.4-7.7h14.5v-13.5c0-1.9 1.4-3.5 3.3-3.8 4.7-.7 9.4-2 13.8-3.7 1.8-.7 3.8 0 4.7 1.7l6.7 11.6 12.6-7.3-6.7-11.6c-1-1.6-.5-3.7.9-4.9 3.7-3 7.2-6.4 10.2-10.1 1.2-1.5 3.3-1.8 4.9-.9l11.5 6.6 7.3-12.6-11.3-6.5c-1.6-.9-2.4-3-1.6-4.7 1.8-4.5 3.1-9.2 3.9-14 .3-1.9 1.9-3.2 3.8-3.2h13v-14.6h-12.8c-1.9 0-3.5-1.4-3.8-3.3-.7-4.8-2-9.6-3.7-14.2-.7-1.8 0-3.7 1.7-4.7l10.9-6.3-7.3-12.6-10.8 6.3c-1.6.9-3.7.6-4.9-.9-3.1-3.9-6.6-7.4-10.4-10.6-1.5-1.2-1.9-3.3-.9-4.9l6.2-10.7-12.6-7.3-6.1 10.6c-1 1.6-3 2.3-4.7 1.7-4.6-1.8-9.5-3.1-14.4-3.9-1.9-.3-3.3-1.9-3.3-3.8v-12.2h-14.5v12.3c0 1.9-1.4 3.5-3.3 3.8-5 .8-9.8 2.1-14.4 3.9-1.8.7-3.8 0-4.7-1.7l-6.1-10.6-12.6 7.3 6.2 10.7c.9 1.6.6 3.7-.9 4.9-3.9 3.1-7.4 6.7-10.4 10.6-1.2 1.5-3.3 1.9-4.9.9l-10.8-6.3-7.3 12.6 10.9 6.3c1.6.9 2.3 2.9 1.7 4.7-1.7 4.6-3 9.4-3.7 14.2-.3 1.9-1.9 3.3-3.8 3.3h-12.8v14.5h13c1.9 0 3.5 1.4 3.8 3.2.8 4.8 2.1 9.5 3.9 14 .7 1.8 0 3.8-1.6 4.7l-11.3 6.5 7.3 12.6 11.5-6.6c1.6-.9 3.7-.6 4.9.9 3 3.7 6.5 7.1 10.3 10.1 1.5 1.2 1.9 3.3.9 4.9l-6.7 11.6 12.6 7.3 6.7-11.6c.9-1.6 2.9-2.3 4.7-1.7 4.5 1.7 9.1 2.9 13.8 3.7 1.9.3 3.3 1.9 3.3 3.8z\"></path></g><g><g><g><path d=\"m45.3 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m153.9 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path></g><g><path d=\"m189.3 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.2c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c0 2.1-1.7 3.8-3.8 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m73.3 326.4c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m126 326.4c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m99.7 325.6c-.6 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4s4.1 1.1 4.4 3.2c2.4 16.5 12.3 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m50.2 266.6c-.1 0-.2 0-.3 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.7 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-8.9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.5 2.2zm81.8-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13.1-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.4-.7 2.3-.7z\"></path></g></g></g><g><g><path d=\"m296.1 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m404.7 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path></g><g><path d=\"m440 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.1c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c.2 2.1-1.6 3.8-3.7 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m324 326.3c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m376.7 326.3c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m350.4 325.6c-.5 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4 2.1-.3 4 1.1 4.4 3.2 2.4 16.5 12.4 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m301 266.6c-.1 0-.2 0-.4 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.6 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.4 2.2zm81.7-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.5-.7 2.3-.7z\"></path></g></g></g></g></g></svg>				\n									<h5>\n							et ungt og engageret team						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"496pt\" viewBox=\"0 0 496 496\" width=\"496pt\"><path d=\"m440 328h-28.207031c5.078125-6.703125 8.207031-14.960938 8.207031-24 0-8.824219-7.175781-16-16-16h-12v-19.960938c59.574219-14.445312 104-68.085937 104-132.039062 0-74.992188-61.007812-136-136-136s-136 61.007812-136 136c0 63.953125 44.425781 117.59375 104 132.039062v19.960938h-8.449219c-6.167969 0-12.359375 1.464844-17.886719 4.214844l-50.480468 25.25c-3.320313 1.664062-7.03125 2.535156-10.734375 2.535156h-40.449219v-16h-104v16h56v56h16v-56h16v128h-16v-56h-16v56h-56v16h104v-16h40.449219c3.703125 0 7.414062.871094 10.734375 2.527344l34.488281 17.25c5.519531 2.757812 11.710937 4.222656 17.878906 4.222656h24.449219v24h64v-24h48c13.230469 0 24-10.769531 24-24 0-6.167969-2.40625-11.742188-6.238281-16 3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16 0-13.230469-10.769531-24-24-24zm8 24c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm-208-280c0-66.167969 53.832031-120 120-120s120 53.832031 120 120-53.832031 120-120 120-120-53.832031-120-120zm104 134.976562c5.257812.617188 10.574219 1.023438 16 1.023438s10.742188-.40625 16-1.023438v17.023438h-32zm-40.449219 185.023438c-3.703125 0-7.414062-.871094-10.734375-2.527344l-34.488281-17.25c-5.519531-2.757812-11.710937-4.222656-17.878906-4.222656h-40.449219v-96h40.449219c6.167969 0 12.359375-1.464844 17.886719-4.214844l50.480468-25.25c3.320313-1.664062 7.03125-2.535156 10.734375-2.535156h84.449219c0 13.230469-10.769531 24-24 24h-48.28125l-23.863281 35.808594c-6.101563 9.160156-14.527344 16.589844-24.367188 21.503906-8.753906 4.375-18.542969 6.6875-28.320312 6.6875h-15.167969v16h15.167969c12.246093 0 24.519531-2.894531 35.472656-8.375 12.328125-6.160156 22.878906-15.480469 30.527344-26.945312l6.832031-10.253907v93.574219zm40.449219 24v-136h17.472656c-.898437 2.511719-1.472656 5.183594-1.472656 8 0 6.167969 2.40625 11.742188 6.238281 16-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16 0 10.414062 6.710938 19.214844 16 22.527344v9.472656zm96-24h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8s-3.59375 8-8 8zm0 0\"></path><path d=\"m394.878906 73.007812-7.757812 13.984376c17.816406 9.878906 28.878906 28.664062 28.878906 49.007812h16c0-26.160156-14.222656-50.296875-37.121094-62.992188zm0 0\"></path><path d=\"m360 80c4.734375 0 9.449219.59375 14.007812 1.769531l3.976563-15.503906c-5.855469-1.496094-11.90625-2.265625-17.984375-2.265625zm0 0\"></path><path d=\"m360 48c48.519531 0 88 39.480469 88 88 0 20.753906-7.398438 40.910156-20.832031 56.785156l12.207031 10.34375c15.882812-18.761718 24.625-42.601562 24.625-67.128906 0-57.34375-46.65625-104-104-104-24.527344 0-48.367188 8.753906-67.128906 24.632812l10.335937 12.199219c15.871094-13.433593 36.039063-20.832031 56.792969-20.832031zm0 0\"></path><path d=\"m427.128906 215.367188-10.335937-12.199219c-15.871094 13.433593-36.039063 20.832031-56.792969 20.832031-48.519531 0-88-39.480469-88-88 0-20.753906 7.398438-40.910156 20.832031-56.785156l-12.207031-10.34375c-15.882812 18.761718-24.625 42.601562-24.625 67.128906 0 57.34375 46.65625 104 104 104 24.527344 0 48.367188-8.753906 67.128906-24.632812zm0 0\"></path><path d=\"m121.214844 165.640625c4.953125-1.375 9.695312-3.34375 14.183594-5.878906l9.769531 4.886719 19.472656-19.480469-4.886719-9.769531c2.535156-4.496094 4.503906-9.230469 5.886719-14.183594l10.359375-3.445313v-27.53125l-10.351562-3.453125c-1.375-4.953125-3.34375-9.707031-5.886719-14.183594l4.886719-9.777343-19.472657-19.472657-9.769531 4.886719c-4.484375-2.535156-9.230469-4.503906-14.183594-5.878906l-3.453125-10.359375h-27.539062l-3.445313 10.359375c-4.953125 1.375-9.695312 3.34375-14.183594 5.878906l-9.777343-4.886719-19.472657 19.472657 4.886719 9.777343c-2.535156 4.488282-4.503906 9.230469-5.886719 14.183594l-10.351562 3.445313v27.53125l10.351562 3.453125c1.375 4.953125 3.34375 9.695312 5.886719 14.183594l-4.886719 9.769531 19.472657 19.480469 9.769531-4.886719c4.484375 2.535156 9.230469 4.503906 14.183594 5.878906l3.453125 10.359375h27.539062zm-12.304688-13.679687-2.679687 8.039062h-4.460938l-2.679687-8.039062-4.554688-.90625c-6.128906-1.222657-11.878906-3.605469-17.109375-7.09375l-3.867187-2.578126-7.574219 3.800782-3.160156-3.167969 3.792969-7.582031-2.578126-3.859375c-3.488281-5.222657-5.871093-10.980469-7.09375-17.109375l-.914062-4.554688-8.03125-2.679687v-4.46875l8.03125-2.671875.914062-4.554688c1.222657-6.136718 3.613282-11.886718 7.09375-17.109375l2.578126-3.859375-3.792969-7.589844 3.160156-3.160156 7.574219 3.800782 3.867187-2.578126c5.222657-3.488281 10.980469-5.863281 17.109375-7.09375l4.554688-.90625 2.679687-8.039062h4.460938l2.679687 8.039062 4.554688.90625c6.128906 1.222657 11.878906 3.605469 17.109375 7.09375l3.867187 2.578126 7.574219-3.800782 3.160156 3.160156-3.792969 7.589844 2.578126 3.859375c3.488281 5.214844 5.871093 10.972657 7.09375 17.109375l.914062 4.554688 8.03125 2.679687v4.46875l-8.03125 2.671875-.914062 4.554688c-1.222657 6.128906-3.613282 11.878906-7.09375 17.109375l-2.578126 3.859375 3.792969 7.582031-3.160156 3.167969-7.574219-3.800782-3.867187 2.578126c-5.222657 3.488281-10.980469 5.863281-17.109375 7.09375zm0 0\"></path><path d=\"m104 72c-17.648438 0-32 14.351562-32 32s14.351562 32 32 32 32-14.351562 32-32-14.351562-32-32-32zm0 48c-8.824219 0-16-7.175781-16-16s7.175781-16 16-16 16 7.175781 16 16-7.175781 16-16 16zm0 0\"></path><path d=\"m160 248v-40h48v-208h-208v208h106.664062zm-144-232h176v176h-48v24l-32-24h-96zm0 0\"></path><path d=\"m0 272h16v16h-16zm0 0\"></path><path d=\"m32 272h16v16h-16zm0 0\"></path><path d=\"m64 272h16v16h-16zm0 0\"></path><path d=\"m32 304h16v16h-16zm0 0\"></path><path d=\"m64 304h16v16h-16zm0 0\"></path><path d=\"m0 480h16v16h-16zm0 0\"></path><path d=\"m32 480h16v16h-16zm0 0\"></path><path d=\"m64 480h16v16h-16zm0 0\"></path><path d=\"m32 448h16v16h-16zm0 0\"></path><path d=\"m64 448h16v16h-16zm0 0\"></path></svg>				\n									<h5>\n							fokus på kvalitet og detaljer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m469.12 408.93-67.26-33.63v-22.13c10.71-7.69 18.6-19.07 21.78-32.27h5.28c8.81 0 15.98-7.17 15.98-15.98v-5.29c0-6.35-3.74-11.84-9.12-14.41 5.19-18.64-1.65-39.76-19.44-59.78-12.58-14.16-30.67-22.27-49.62-22.27-18.93 0-37.01 8.12-49.59 22.27-13.38 15.05-20.95 41.01-14.03 59.62-5.56 2.5-9.45 8.09-9.45 14.57v5.29c0 8.81 7.17 15.98 15.98 15.98h5.55c3.16 13.09 10.94 24.39 21.51 32.08v22.32l-67.26 33.63c-16.7 5.87-27.89 21.6-27.89 39.28v41.63c0 3.31 2.69 6 6 6h243.46c3.31 0 6-2.69 6-6v-41.63c0-17.68-11.19-33.41-27.88-39.28zm-62.24-17.7-15.83 27.66-13.29-13.29 19.29-19.29zm-37.61 5.88-20.59-20.58v-16.91c6.41 2.57 13.4 4.01 20.72 4.01 7.22 0 14.11-1.39 20.45-3.9v16.8zm63.63-97.48v5.29c0 2.16-1.82 3.98-3.98 3.98h-3.74c.01-.36.03-.71.03-1.07v-12.18h3.71c2.15-.01 3.98 1.82 3.98 3.98zm-119.29 8.2v1.07h-3.98c-2.16 0-3.98-1.82-3.98-3.98v-5.29c0-2.16 1.82-3.98 3.98-3.98l3.98.22zm1.95-24.19c-7.33-13.69-.89-37.39 10.53-50.24 10.31-11.6 25.12-18.25 40.63-18.25 15.52 0 30.34 6.65 40.65 18.25 8.43 9.48 21.3 27.59 17.4 46.39-5.66-.35-10.67-2.55-14.4-6.36-5.37-5.49-7.72-14-6.63-23.94.29-2.62-1.17-5.13-3.6-6.17s-5.25-.37-6.95 1.65c-19.33 22.92-45.95 36.76-73.9 38.68h-3.73zm10.05 24.19v-12.73c24.57-2.92 47.92-14.05 66.73-31.8 1.43 7.26 4.63 13.6 9.45 18.52 3.27 3.35 7.14 5.89 11.41 7.58v18.42c0 24.15-19.65 43.8-43.8 43.8s-43.79-19.64-43.79-43.79zm15.89 78.48 19.29 19.29-13.29 13.29-15.84-27.66zm3.22 97.53h-39.42v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.76v-35.63c0-12.68 8.1-23.95 20.15-28.05.26-.09.51-.19.75-.31l46.47-23.23 20.07 35.06c.93 1.62 2.56 2.72 4.41 2.97.27.04.53.05.79.05 1.58 0 3.11-.62 4.24-1.76l.14-.14zm12.08 0 7.41-64.69 5.06-5.06 4.84 4.84 7.86 64.92h-25.17zm128.2 0h-39.76v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.18l-6.2-51.17.25.25c1.13 1.13 2.66 1.76 4.24 1.76.26 0 .53-.02.79-.05 1.85-.25 3.48-1.34 4.41-2.97l20.07-35.06 46.47 23.23c.24.12.49.23.75.31 12.05 4.1 20.15 15.38 20.15 28.05v35.65zm-67.04-346.65h-10.84l28.38 39.84 28.38-39.84h-10.84c-3.31 0-6-2.69-6-6v-64.58h-98.7c-3.31 0-6-2.69-6-6s2.69-6 6-6h104.7c3.31 0 6 2.69 6 6v64.58h16.48c2.25 0 4.3 1.25 5.33 3.25s.86 4.4-.45 6.23l-40.02 56.18c-1.13 1.58-2.95 2.52-4.89 2.52s-3.76-.94-4.89-2.52l-40.02-56.18c-1.3-1.83-1.48-4.23-.45-6.23s3.09-3.25 5.33-3.25h16.48v-23.5h-65.38c-3.31 0-6-2.69-6-6s2.69-6 6-6h71.38c3.31 0 6 2.69 6 6v35.5c.02 3.31-2.67 6-5.98 6zm-118.44 50.65v-133.26c0-21.18-17.23-38.41-38.41-38.41h-207.7c-21.18-.01-38.41 17.23-38.41 38.41v133.26c0 21.18 17.23 38.41 38.41 38.41h105.8l64.8 55.11c1.11.94 2.49 1.43 3.89 1.43.85 0 1.71-.18 2.52-.55 2.12-.98 3.48-3.11 3.48-5.45v-50.54h27.21c21.18 0 38.41-17.23 38.41-38.41zm-71.62 26.41c-3.31 0-6 2.69-6 6v43.56l-56.59-48.13c-1.08-.92-2.46-1.43-3.89-1.43h-108.01c-14.56 0-26.41-11.85-26.41-26.41v-133.26c0-14.56 11.85-26.41 26.41-26.41h207.69c14.56 0 26.41 11.85 26.41 26.41v133.26c0 14.56-11.85 26.41-26.41 26.41zm-156.34-87.87h56.97c3.31 0 6-2.69 6-6v-39.2l8.55-8.55c2.34-2.34 2.34-6.14 0-8.49-2.34-2.34-6.14-2.34-8.48 0l-.7.7c-.98-1.97-3.01-3.32-5.36-3.32h-56.98c-3.31 0-6 2.69-6 6v52.85c0 3.32 2.69 6.01 6 6.01zm6-52.86h44.97v2.69l-18.16 18.16-8.84-8.84c-2.34-2.34-6.14-2.34-8.49 0-2.34 2.34-2.34 6.14 0 8.49l13.08 13.08c1.17 1.17 2.71 1.76 4.24 1.76s3.07-.59 4.24-1.76l13.92-13.92v21.2h-44.96zm173.62 3.08c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 31.92c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 36.52c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.68 5.99 6zm0 31.92c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.69 5.99 6zm-119.36 165.01h10.84l-28.38-39.84-28.38 39.84h10.84c3.31 0 6 2.69 6 6v64.58h98.7c3.31 0 6 2.69 6 6s-2.69 6-6 6h-104.69c-3.31 0-6-2.69-6-6v-64.58h-16.48c-2.25 0-4.3-1.25-5.33-3.25s-.86-4.4.45-6.23l40.02-56.18c1.13-1.58 2.95-2.52 4.89-2.52s3.76.94 4.89 2.52l40.02 56.18c1.3 1.83 1.48 4.23.45 6.23s-3.09 3.25-5.33 3.25h-16.48v23.5h65.38c3.31 0 6 2.69 6 6s-2.69 6-6 6h-71.38c-3.31 0-6-2.69-6-6v-35.5c-.03-3.31 2.66-6 5.97-6z\"></path></svg>				\n									<h5>\n							ærlig<br> rådgivning						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 510 510\"><path d=\"m192.036 385.845c-4.787-46.972-19.459-64.336-30.658-82.352-8.672-13.951-15.5-28.245-15.5-54.252 0-60.242 48.865-109.109 109.135-109.109 60.242 0 109.109 48.866 109.109 109.109 0 26.007-6.828 40.301-15.5 54.252-11.199 18.016-25.871 35.38-30.658 82.352 9.985 2.864 17.345 12.101 17.345 22.975v36.44c0 13.109-10.747 23.866-23.893 23.866h-10.334v9.945c0 12.588-10.341 22.929-22.93 22.929h-46.304c-12.589 0-22.93-10.341-22.93-22.929v-9.945h-10.334c-13.146 0-23.893-10.757-23.893-23.866v-36.44c0-10.874 7.36-20.111 17.345-22.975zm111.948-.917c4.199-42.194 15.78-62.332 26.488-79.049 10.147-15.842 19.65-28.207 19.65-56.638 0-52.513-42.597-95.109-95.109-95.109-52.537 0-95.135 42.596-95.135 95.109 0 28.431 9.503 40.796 19.65 56.638 10.708 16.717 22.289 36.855 26.488 79.049zm2.554-78.61c-1.175 13.701-11.985 24.191-24.783 24.191-13.527 0-24.862-12.086-24.862-26.673v-99.328c0-14.12 11.335-26.673 24.862-26.673 11.309 0 21.031 8.139 23.975 19.497 9.12 3.904 15.688 13.438 15.688 24.78 0 1.153-.068 2.289-.201 3.403 5.078 5.326 8.283 12.802 8.283 21.117 0 6.39-1.889 12.262-5.06 17.053 1.996 4.099 3.13 8.773 3.13 13.76 0 14.1-9.065 25.697-21.032 28.873zm-16.452-109.977c-1.964-2.729-4.916-4.506-8.331-4.506-6.192 0-10.862 6.21-10.862 12.673v99.328c0 6.677 4.67 12.673 10.862 12.673 5.516 0 9.822-4.614 10.717-10.425-4.709-1.416-8.923-4.144-12.279-7.814-2.607-2.852-2.409-7.283.443-9.89 2.851-2.607 7.282-2.408 9.889.443 2.416 2.642 5.72 4.356 9.402 4.356 7.733 0 13.643-7.218 13.643-15.734s-5.91-15.734-13.643-15.734c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7 5.352 0 10.388 1.655 14.658 4.533.593-1.743.915-3.634.915-5.612 0-2.11-.366-4.128-1.036-5.972-.769.858-1.588 1.66-2.453 2.397-2.94 2.507-7.361 2.156-9.869-.784-2.507-2.939-2.155-7.361.784-9.868 2.773-2.365 4.492-6.122 4.492-10.293 0-6.072-3.705-11.374-8.898-12.467-.154-.023-.307-.052-.458-.085-.499-.08-1.01-.121-1.532-.121-2.947 0-5.591 1.389-7.515 3.525-2.585 2.87-7.015 3.101-9.886.515-2.87-2.586-3.101-7.015-.515-9.886 3.111-3.453 7.059-5.988 11.472-7.252zm-104.526 67.344c-3.171-4.791-5.06-10.663-5.06-17.053 0-8.307 3.198-15.777 8.284-21.104-.133-1.118-.202-2.258-.202-3.416 0-11.354 6.582-20.897 15.717-24.792 2.948-11.354 12.67-19.485 23.946-19.485 13.56 0 24.888 12.555 24.888 26.673v99.328c0 14.585-11.328 26.673-24.888 26.673-12.765 0-23.578-10.484-24.757-24.184-11.98-3.166-21.058-14.769-21.058-28.88 0-4.987 1.134-9.661 3.13-13.76zm9.982-23.036c-.675 1.847-1.042 3.869-1.042 5.983 0 1.978.322 3.869.915 5.612 4.27-2.878 9.306-4.533 14.658-4.533 3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7-7.733 0-13.643 7.218-13.643 15.734s5.91 15.734 13.643 15.734c3.682 0 6.986-1.714 9.402-4.356 2.607-2.851 7.038-3.05 9.889-.443 2.852 2.607 3.05 7.038.443 9.89-3.35 3.664-7.556 6.389-12.255 7.807.891 5.813 5.192 10.432 10.693 10.432 6.21 0 10.888-5.993 10.888-12.673v-99.328c0-6.466-4.678-12.673-10.888-12.673-3.404 0-6.349 1.777-8.309 4.507 4.421 1.264 8.367 3.8 11.476 7.251 2.586 2.871 2.355 7.3-.516 9.886-2.87 2.586-7.3 2.355-9.886-.515-1.926-2.138-4.574-3.525-7.54-3.525-.493 0-.976.037-1.448.108-.196.045-.395.082-.596.11-5.165 1.118-8.844 6.404-8.844 12.455 0 1.243.153 2.45.442 3.594.101.284.183.572.246.862.748 2.326 2.071 4.346 3.814 5.823 2.947 2.498 3.311 6.919.813 9.866s-6.919 3.312-9.866.814c-.878-.745-1.71-1.554-2.489-2.422zm3.042 158.279c-5.442 0-9.893 4.451-9.893 9.892v36.44c0 5.423 4.454 9.866 9.893 9.866h17.334c3.866 0 7 3.134 7 7v16.945c0 4.902 4.027 8.929 8.93 8.929h46.304c4.903 0 8.93-4.027 8.93-8.929v-16.945c0-3.866 3.134-7 7-7h17.334c5.439 0 9.893-4.443 9.893-9.866v-36.44c0-5.441-4.451-9.892-9.893-9.892zm63.416-314.093 2.907-5.412c1.828-3.403 6.075-4.683 9.479-2.854 3.403 1.828 4.682 6.075 2.854 9.479l-16.073 29.925c-1.22 2.271-3.589 3.688-6.167 3.688s-4.947-1.417-6.167-3.688l-16.073-29.925c-1.828-3.404-.549-7.651 2.854-9.479 3.404-1.829 7.651-.549 9.479 2.854l2.907 5.412v-69.835c0-3.863 3.137-7 7-7s7 3.137 7 7zm-132.198 54.758-49.381-49.381c-2.732-2.731-2.732-7.167 0-9.899s7.168-2.732 9.9 0l49.38 49.38-1.771-5.881c-1.114-3.7.985-7.608 4.684-8.722 3.7-1.114 7.607.985 8.721 4.685l9.796 32.526c.743 2.468.069 5.145-1.753 6.968-1.823 1.823-4.5 2.496-6.969 1.753l-32.526-9.795c-3.699-1.114-5.798-5.022-4.684-8.721s5.022-5.798 8.721-4.684zm-44.859 122.299h-69.835c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7h69.835l-5.412-2.907c-3.403-1.828-4.682-6.076-2.854-9.479 1.828-3.404 6.075-4.683 9.479-2.855l29.926 16.074c2.271 1.22 3.688 3.589 3.688 6.167 0 2.577-1.417 4.947-3.688 6.166l-29.926 16.074c-3.404 1.828-7.651.549-9.479-2.855-1.828-3.403-.549-7.651 2.854-9.479zm54.758 118.198-49.38 49.38c-2.732 2.732-7.168 2.732-9.9 0s-2.732-7.167 0-9.899l49.381-49.381-5.882 1.772c-3.699 1.114-7.607-.985-8.721-4.685-1.114-3.699.985-7.607 4.684-8.721l32.526-9.795c2.469-.743 5.146-.07 6.969 1.753 1.822 1.823 2.496 4.5 1.753 6.968l-9.796 32.527c-1.114 3.699-5.021 5.798-8.721 4.684-3.699-1.114-5.798-5.022-4.684-8.721zm240.497-240.497 5.882-1.771c3.699-1.114 7.607.985 8.721 4.684s-.985 7.607-4.684 8.721l-32.526 9.795c-2.469.743-5.146.07-6.969-1.753-1.822-1.823-2.496-4.5-1.753-6.968l9.796-32.526c1.114-3.7 5.021-5.799 8.721-4.685 3.699 1.114 5.798 5.022 4.684 8.722l-1.771 5.881 49.38-49.38c2.732-2.732 7.168-2.732 9.9 0s2.732 7.168 0 9.899zm44.859 122.299 5.412 2.906c3.403 1.828 4.682 6.076 2.854 9.479-1.828 3.404-6.075 4.683-9.479 2.855l-29.926-16.074c-2.271-1.219-3.688-3.589-3.688-6.166 0-2.578 1.417-4.947 3.688-6.167l29.926-16.074c3.404-1.828 7.651-.549 9.479 2.855 1.828 3.403.549 7.651-2.854 9.479l-5.412 2.907h69.835c3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7zm-54.758 118.198 1.771 5.882c1.114 3.699-.985 7.607-4.684 8.721-3.7 1.114-7.607-.985-8.721-4.684l-9.796-32.527c-.743-2.468-.069-5.145 1.753-6.968 1.823-1.823 4.5-2.496 6.969-1.753l32.526 9.795c3.699 1.114 5.798 5.022 4.684 8.721-1.114 3.7-5.022 5.799-8.721 4.685l-5.882-1.772 49.381 49.381c2.732 2.732 2.732 7.167 0 9.899s-7.168 2.732-9.9 0z\"></path></svg>				\n									<h5>\n							gennemtænkte løsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"outline\"><path d=\"M486.41,144A28,28,0,0,0,472,92H349.123l5.457-21.828a48.513,48.513,0,0,0-12.848-46.153A41.035,41.035,0,0,0,312.609,12H308a8.009,8.009,0,0,0-8,8V47.413l-19.233,64.112A17.376,17.376,0,0,1,268,123.539V112a4,4,0,0,0-4-4H152a4,4,0,0,0-4,4v72a4,4,0,0,0,8,0V116h72V276H156V248a4,4,0,0,0-8,0v32a4,4,0,0,0,4,4H264a4,4,0,0,0,4-4V268.5h11.168A37.07,37.07,0,0,1,305.092,279a45.025,45.025,0,0,0,31.48,12.752L440,292a27.987,27.987,0,0,0,19.369-48.2,27.987,27.987,0,0,0,16-48A28,28,0,0,0,486.41,144ZM260,276H236V116h24Zm212-88H396a4,4,0,0,0,0,8h60a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h40a20,20,0,0,1,.01,40l-103.428-.25a37.07,37.07,0,0,1-25.924-10.5,45.031,45.031,0,0,0-31.49-12.752H268V131.686a25.317,25.317,0,0,0,20.429-17.862l19.4-64.675A4,4,0,0,0,308,48V20h4.609a33.082,33.082,0,0,1,23.481,9.69,40.507,40.507,0,0,1,10.728,38.541l-6.7,26.8A4,4,0,0,0,344,100H472a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h72a20,20,0,0,1,0,40Z\"></path><path d=\"M194.5,183.243l-1.9-.217a4,4,0,0,0-4.169,2.491L184.29,195.9H135.278l-3.539-9.317a4,4,0,0,0-7.478,2.84l2.459,6.477h-8.474L68.452,156.872a4,4,0,1,0-4.935,6.3L77.6,174.209,56.961,194.48l-6.636-5.491a4,4,0,1,0-5.1,6.163L87.219,229.9a44.1,44.1,0,0,0,28.05,10.1H212a8.009,8.009,0,0,0,8-8V203.9a8.009,8.009,0,0,0-8-8h-8v-2.01A10.708,10.708,0,0,0,194.5,183.243ZM212,203.9V232H115.269a36.081,36.081,0,0,1-22.951-8.264l-29.16-24.128,20.8-20.422L114.4,203.045a4,4,0,0,0,2.468.852H187a4,4,0,0,0,3.715-2.517l3.929-9.843a2.712,2.712,0,0,1,1.356,2.35v6.01a4,4,0,0,0,4,4Z\"></path><path d=\"M223.084,484.672,200.87,469.863V346.36A44.1,44.1,0,0,0,195.327,325l-17.183-30.94a4,4,0,0,0-7,3.884l17.184,30.94a36.073,36.073,0,0,1,4.537,17.478V468H164.333a4,4,0,1,0,0,8h31.321l12,8H152.865V352a4,4,0,0,0-.358-1.655l-25.454-56A4,4,0,0,0,123.411,292H114.2a4,4,0,0,0-3.945,4.658l8.862,53.175a36.016,36.016,0,0,1-1.951,18.949L78.642,468H48.333a4,4,0,1,0,0,8H80.377L92,484H32.088L76.63,361.366a4.017,4.017,0,0,0,.183-2.044L61.1,268H136a4,4,0,0,0,0-8H59.233L30.555,173.966A19.723,19.723,0,0,1,49.27,148H76a12,12,0,0,0,24,0h15.2a21.975,21.975,0,0,1,8.395,1.652l10.889,4.458a4,4,0,1,0,3.032-7.4L126.63,142.25A29.938,29.938,0,0,0,115.2,140H100v-4.527A16.014,16.014,0,0,0,112,120V103.473A16.014,16.014,0,0,0,124,88V80a4,4,0,0,0-4-4H90A22.025,22.025,0,0,0,68,98v18a12.02,12.02,0,0,0,8,11.314V140H49.27a27.723,27.723,0,0,0-26.305,36.5l29.493,88.482,16.29,94.655-46.128,127A4,4,0,0,0,26.38,492h78.485a4,4,0,0,0,2.268-7.3L86.3,470.368l38.318-98.69a44.018,44.018,0,0,0,2.385-23.16L118.921,300h1.914l24.03,52.867V488a4,4,0,0,0,4,4h72a4,4,0,0,0,2.219-7.328ZM76,98A14.015,14.015,0,0,1,90,84h26v4a8.009,8.009,0,0,1-8,8H92a4,4,0,0,0-4,4,11.962,11.962,0,0,1-1.53,5.881A12.044,12.044,0,0,0,76,104.686Zm4,14a3.981,3.981,0,0,1,3.407,1.9,4,4,0,0,0,5.956.975c.207-.171.7-.648.7-.648.032-.028.061-.057.09-.087A19.907,19.907,0,0,0,95.6,104H104v16a8.009,8.009,0,0,1-8,8,12.133,12.133,0,0,1-2.681-.3,4,4,0,1,0-1.775,7.8c.151.035.3.06.456.091V148a4,4,0,1,1-8,0V124a4,4,0,0,0-4-4,4,4,0,0,1,0-8Z\"></path></g></svg>				\n									<h5>\n							arbejde udført med ansvar						\n					</h5>\n				<p>Vi lover ikke mere, end vi kan holde – men vi holder det, vi lover.</p>			<h2>KONTAKT OS</h2>		<p>Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.</p>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-14 12:09:49', '2026-02-14 12:09:49', '', 10, 'https://mrarif.me/cpnordic/?p=757', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(758, 1, '2026-02-14 12:09:49', '2026-02-14 12:09:49', '<h1>CP NORDIC ApS</h1>					<h4>Byggeri – Tømrerarbejde og tagdækning</h4>										<a href=\"https://mrarif.me/cpnordic/kontakt/\">\n									Kontakt\n					</a>\n						<p>CP NORDIC ApS er et dansk tømrer- og tagdækkerfirma startet af to unge håndværkere på 25 år. Virksomheden blev etableret i marts sidste år med en klar ambition: at drive et firma, hvor kvalitet, grundighed og ordentlighed er fundamentet for alt arbejde.</p><p>Inden opstarten af CP NORDIC ApS har vi begge flere års erfaring fra byggebranchen. Den erfaring har givet os et solidt fagligt fundament og en klar forståelse for, hvad der fungerer i praksis – og hvad der ikke gør. Da vi valgte at starte selv, var det med ønsket om at gøre tingene rigtigt fra starten, uden smutveje og halve løsninger.</p>								<a href=\"https://mrarif.me/cpnordic/om-os/\">\n									Lær mere\n					</a>\n									<h2>OM CP NORDIC ApS</h2>															<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h2>VORES FILOSOFI</h2>		For os handler godt håndværk om mere end det, man kan se på overfladen. Det handler om korrekt opbygning, gennemtænkte løsninger og respekt for både bygningen og kunden.			<h5>Vi lægger stor vægt på:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										grundig planlægning\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										korrekt udførelse\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										materialer af høj kvalitet\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										ærlig og tydelig kommunikation\n									</li>\n						</ul>\n				<p>Vi tror på, at et godt resultat starter med god dialog. Derfor bruger vi tid på at forstå kundens ønsker og rådgive om de løsninger, der giver bedst mening – både funktionelt og økonomisk.</p>								<a href=\"https://mrarif.me/cpnordic/tomrerarbejde/\">\n									Se alle tjenester\n					</a>\n									<h4>\n						Terrasser					</h4>\n									<h4>\n						Totalrenoveringer					</h4>\n									<h4>\n						Tilbygninger					</h4>\n									<h4>\n						Carporte					</h4>\n							<h2>TØMRERARBEJDE</h2>		<p>Vi udfører en bred vifte af tømreropgaver for private boligejere og mindre erhverv, herunder:</p>			<h2>TAGDÆKNING</h2>		<p>Inden for tagdækning udfører vi professionelt arbejde med fokus på tæthed, korrekt opbygning og lang levetid.</p>			<h5>Vores ydelser omfatter blandt andet:</h5>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										2-lags tagpapløsninger\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Listedækning på skrå flader\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Tagpap klar til sedum\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_20-Checked\" data-name=\"20-Checked\"><path d=\"m212.907 420.621a10 10 0 0 1 -8.624-4.938c-33.338-56.8-122.22-177.735-123.113-178.95a10 10 0 0 1 1.026-13.04l27.332-27.007a10 10 0 0 1 12.754-1.086l88.543 61.828c59.239-75.972 114.263-128.448 150.463-159.412 40.75-34.856 66.691-50.542 67.775-51.192a10 10 0 0 1 5.146-1.426h44.215a10 10 0 0 1 6.651 17.468c-125.566 111.842-262.114 350.309-263.475 352.704a10 10 0 0 1 -8.624 5.051z\"></path><path d=\"m381.576 474.6h-340a10 10 0 0 1 -10-10v-340a10 10 0 0 1 10-10h220.489a10 10 0 0 1 0 20h-210.489v320h320v-210.488a10 10 0 1 1 20 0v220.488a10 10 0 0 1 -10 10z\"></path></g></svg>						\n										Foliearbejde\n									</li>\n						</ul>\n				<p>Alt tagarbejde udføres med professionel svejsning og korrekt opbygning. Vi går ikke på kompromis med detaljerne, da tagets opbygning er afgørende for både holdbarhed og funktion.</p><p>Vi rådgiver gerne om den rette løsning ud fra bygningens type, hældning og anvendelse.</p>								<a href=\"https://mrarif.me/cpnordic/tagdaekning/\">\n									Lær mere\n					</a>\n									<h2>Galleri</h2>							\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-2\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0yLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEyLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS0xLmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-9.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDExLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS05LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-8.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-8\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDEwLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS04LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-7.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-7\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA5LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS03LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-6\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS02LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-item-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS item-5\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDA3LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaXRlbS01LmpwZyIsInNsaWRlc2hvdyI6ImM1ZDAxNGUifQ%3D%3D\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mjc4LCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTMuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n							<a href=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/CP-NORDIC-ApS-img-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5d014e\" data-elementor-lightbox-title=\"CP NORDIC ApS img-1\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjMzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9jcG5vcmRpY1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDFcL0NQLU5PUkRJQy1BcFMtaW1nLTEuanBnIiwic2xpZGVzaG93IjoiYzVkMDE0ZSJ9\">\n														</a>\n																<img width=\"1536\" height=\"2048\" src=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg\" alt=\"\" srcset=\"https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n.jpg 1536w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-225x300.jpg 225w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-768x1024.jpg 768w, https://mrarif.me/cpnordic/wp-content/uploads/2026/01/616053345_122151193490928164_8199765515366368063_n-1152x1536.jpg 1152w\" sizes=\"(max-width: 1536px) 100vw, 1536px\" />																<h1>Carpentry</h1>							<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 48 48\"><g><path d=\"m24.26 3.57c-.16-.1-.36-.1-.51 0l-20 12c-.16.09-.25.25-.25.43v4c0 .28.22.5.5.5h19.5v15h-6.5c-.28 0-.5.22-.5.5s.22.5.5.5h6.5v7h-8v-5.5c0-.28-.22-.5-.5-.5h-5.5v-6.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v12.5h-4.5c-.28 0-.5.22-.5.5s.22.5.5.5h40c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-4.5v-12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v6.5h-5.5c-.28 0-.5.22-.5.5v5.5h-8v-7h6.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-6.5v-15h19.5c.28 0 .5-.22.5-.5v-4c0-.18-.09-.34-.24-.43zm-9.76 39.93h-5v-5h5zm19-5h5v5h-5zm10-19h-39v-3.22l19.5-11.7 19.5 11.7z\"></path></g></svg>						\n										Terraces\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 100 100\" width=\"512\"><path d=\"m50.7119141 10.2978516c-.3759766-.3808594-1.0478516-.3808594-1.4238281 0l-39 39.5371094c-.2832031.2871094-.3662109.7158203-.2104492 1.0878906.1552734.3720703.5190429.6142578.9223632.6142578h12.6386719v37.4628906c0 .5527344.4477539 1 1 1h50.7226562c.5522461 0 1-.4472656 1-1v-37.4628906h12.6386719c.4033203 0 .7670898-.2421875.9223633-.6142578.1557617-.3720703.0727539-.8007812-.2104492-1.0878906zm24.649414 39.2392578c-.5522461 0-1 .4472656-1 1v37.4628906h-48.7226562v-37.4628906c0-.5527344-.4477539-1-1-1h-11.2475586l36.6088867-37.1132813 36.6088867 37.1132812h-11.2475586z\"></path><path d=\"m39.6842041 41.3737183-.0050049-2.2750854c-.0009766-.5517578-.4487305-.9980469-1-.9980469-.0004883 0-.0014648 0-.0019531 0-.5522461.0009766-.9990234.4501953-.9980469 1.0019531l.0092774 4.3349609c.0009766.5507812.4472656.9970703.9980469.9980469l4.3188477.0087891h.0019531c.5512695 0 .9990234-.4462891 1-.9980469s-.4458008-1.0009766-.9980469-1.0019531l-1.2947998-.0026855c2.481018-1.515381 5.3452148-2.3410646 8.2855224-2.3410646 8.7670898 0 15.8999023 7.1328125 15.8999023 15.8994141 0 2.6894531-.6835938 5.3466797-1.9765625 7.6835938-.2675781.4833984-.0922852 1.0917969.3911133 1.359375.1533203.0849609.3193359.125.4829102.125.3520508 0 .6933594-.1865234.8759766-.515625 1.456543-2.6328125 2.2265625-5.625 2.2265625-8.6523438 0-9.8701172-8.0297852-17.8994141-17.8999023-17.8994141-3.7059327 0-7.3107911 1.1542969-10.315796 3.2731324z\"></path><path d=\"m61.2851562 67.5556641h-4.3188477c-.5522461 0-1 .4472656-1 1s.4477539 1 1 1h1.3373413c-2.4830322 1.5217285-5.3500366 2.34375-8.3036499 2.34375-8.7670898 0-15.8999023-7.1328125-15.8999023-15.8994141 0-2.7011719.6894531-5.3691406 1.9941406-7.7148438.2685547-.4833984.0947266-1.0917969-.3881836-1.3603516-.4819336-.2695312-1.090332-.09375-1.3598633.3876953-1.4692383 2.6425781-2.2460938 5.6464844-2.2460938 8.6875 0 9.8701172 8.0297852 17.8994141 17.8999023 17.8994141 3.7069702 0 7.2890625-1.1558838 10.2893066-3.2670898l.0046387 2.269043c.0009766.5517578.4487305.9980469 1 .9980469h.0019531c.5522461-.0009766.9990234-.4501953.9980469-1.0019531l-.0087891-4.34375c-.0009763-.5517579-.4487302-.9980469-.9999998-.9980469z\"></path></svg>						\n										Total renovations\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 520 520\" width=\"512\"><g id=\"_x31_710_x5F_37_-_Layer_41_x2C__Api_x2C__autism_x2C__jigsaw_x2C__pieces_x2C__plugin_x2C__puzzle_x2C__two\"><g><g><g><g><path d=\"m390 425c-1.279 0-2.56-.488-3.535-1.465l-40-40c-1.953-1.952-1.953-5.118 0-7.07l11.464-11.465h-67.929c-2.762 0-5-2.238-5-5v-80c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-80c0-2.761 2.238-5 5-5h67.929l-11.464-11.464c-1.953-1.953-1.953-5.119 0-7.071l40-40c1.951-1.952 5.119-1.952 7.07 0l40 40c1.953 1.953 1.953 5.119 0 7.071l-11.464 11.464h67.929c2.762 0 5 2.239 5 5v80c0 2.022-1.218 3.846-3.087 4.619-1.865.774-4.019.347-5.448-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.465-16.464c1.43-1.431 3.583-1.858 5.448-1.084 1.869.773 3.087 2.597 3.087 4.619v80c0 2.762-2.238 5-5 5h-67.929l11.464 11.465c1.953 1.952 1.953 5.118 0 7.07l-40 40c-.975.977-2.256 1.465-3.535 1.465zm-32.929-45 32.929 32.929 32.929-32.929-16.464-16.465c-1.431-1.43-1.858-3.58-1.084-5.448.773-1.869 2.597-3.087 4.619-3.087h75v-62.929l-11.465 11.464c-1.951 1.953-5.119 1.953-7.07 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.951-1.953 5.119-1.953 7.07 0l11.465 11.464v-62.929h-75c-2.022 0-3.846-1.218-4.619-3.086-.774-1.869-.347-4.019 1.084-5.449l16.464-16.465-32.929-32.929-32.929 32.929 16.464 16.464c1.431 1.43 1.858 3.581 1.084 5.449-.773 1.869-2.597 3.087-4.619 3.087h-75v62.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.465-11.464v62.929h75c2.022 0 3.846 1.218 4.619 3.087.774 1.868.347 4.019-1.084 5.448z\"></path></g></g><g><g><path d=\"m290 365h-80c-2.022 0-3.846-1.218-4.62-3.087-.774-1.868-.346-4.019 1.084-5.448l16.465-16.465-32.929-32.929-32.929 32.929 16.208 16.208c1.066.917 1.741 2.275 1.741 3.792 0 2.762-2.239 5-5 5-.006-.001-.013-.001-.02 0h-80c-2.761 0-5-2.238-5-5v-67.929l-11.464 11.464c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l11.464 11.464v-67.929c0-2.761 2.239-5 5-5h80c2.022 0 3.846 1.218 4.62 3.086.774 1.869.346 4.019-1.084 5.449l-16.465 16.465 32.929 32.929 32.929-32.929-16.464-16.464c-1.43-1.43-1.858-3.581-1.084-5.449s2.597-3.086 4.62-3.086h80c2.762 0 5 2.239 5 5v67.929l11.465-11.464c1.951-1.953 5.119-1.953 7.07 0l40 40c1.953 1.952 1.953 5.118 0 7.07l-40 40c-1.951 1.953-5.119 1.953-7.07 0l-11.466-11.465v67.929c0 2.762-2.238 5-5 5zm-67.929-10h62.929v-75c0-2.022 1.218-3.846 3.087-4.619 1.866-.774 4.019-.347 5.448 1.084l16.465 16.464 32.929-32.929-32.929-32.929-16.465 16.464c-1.43 1.431-3.582 1.858-5.448 1.084-1.869-.773-3.087-2.597-3.087-4.619v-75h-62.929l11.464 11.464c1.953 1.953 1.953 5.119 0 7.071l-40 40c-1.953 1.953-5.118 1.953-7.071 0l-40-40c-1.953-1.952-1.953-5.118 0-7.071l11.465-11.464h-62.929v75c0 2.022-1.218 3.846-3.086 4.619-1.869.775-4.019.347-5.449-1.084l-16.465-16.464-32.929 32.929 32.929 32.929 16.464-16.464c1.43-1.431 3.58-1.86 5.449-1.084 1.869.773 3.087 2.597 3.087 4.619v75h62.929l-11.464-11.465c-1.953-1.952-1.953-5.118 0-7.07l40-40c1.953-1.953 5.118-1.953 7.071 0l40 40c1.953 1.952 1.953 5.118 0 7.07z\"></path></g></g></g></g></g></svg>						\n										Extensions\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 64 64\"><g fill=\"rgb(0,0,0)\"><path d=\"m62.788 24.051-6.739-4.678c-.071-.122-.19-.206-.334-.232l-23.525-16.327c-.169-.117-.393-.117-.56 0l-30.417 21.059c-.224.155-.28.461-.125.684.155.225.464.281.684.125l6.106-4.227v40.326c0 .272.22.492.492.492h47.26c.272 0 .492-.22.492-.492v-40.158l6.105 4.237c.086.059.184.087.281.087.156 0 .309-.074.405-.211.155-.223.099-.53-.124-.685zm-40.574-13.522h19.365l6.948 4.823h-33.279zm9.696-6.712 8.252 5.728h-16.526zm23.229 24.617h-46.277v-6.292h46.276v6.292zm-46.277 31.855v-30.871h46.276v30.871zm46.276-39.131h-46.276v-1.384l4.965-3.438h36.119l5.193 3.604v1.217z\"></path><path d=\"m40.797 35.328h-17.432c-.231 0-.431.16-.481.385l-1.114 4.998c-.033.145.003.298.097.414.093.116.234.185.383.185h19.659c.149 0 .29-.068.383-.185.094-.116.13-.269.097-.414l-1.114-4.998c-.05-.225-.25-.385-.481-.385zm-17.931 4.998.894-4.014h16.644l.894 4.014h-18.433z\"></path><path d=\"m52.836 37.827h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.262l-1.094 3.185c-.793-.68-1.745-1.177-2.792-1.432l-1.896-8.507c-.303-1.363-1.474-2.314-2.848-2.314h-18.055c-1.372 0-2.543.951-2.848 2.314l-1.9 8.532c-1.027.266-1.96.766-2.737 1.443l-1.107-3.22h1.38c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492h-4.359c-.272 0-.492.22-.492.492v2.78c0 .272.22.492.492.492h1.939l1.339 3.896c.012.034.043.051.06.08-.986 1.175-1.582 2.687-1.582 4.337v3.386c0 .272.22.492.492.492h1.786v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h14.071v1.606c0 1.546 1.258 2.804 2.804 2.804h3.964c1.546 0 2.804-1.258 2.804-2.804v-1.606h1.786c.272 0 .492-.22.492-.492v-3.386c0-1.665-.608-3.188-1.609-4.367.01-.019.03-.029.037-.05l1.339-3.896h2.058c.272 0 .492-.22.492-.492v-2.78c0-.272-.22-.492-.492-.492zm-40.861.984h3.375v1.796h-3.375zm9.193-3.76c.203-.909.978-1.544 1.887-1.544h18.054c.909 0 1.685.634 1.887 1.543l1.801 8.08h-25.43l1.8-8.079zm2.939 20.337c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm23.644 0c0 1.003-.817 1.82-1.82 1.82h-3.964c-1.003 0-1.82-.817-1.82-1.82v-1.606h7.605v1.606zm2.278-2.59h-35.806v-2.894c0-3.184 2.591-5.775 5.775-5.775h24.254c3.184 0 5.775 2.591 5.775 5.775v2.894zm2.316-12.191h-3.375v-1.796h3.375z\"></path><path d=\"m45.367 46.398c-1.375 0-2.495 1.12-2.495 2.496s1.12 2.495 2.495 2.495 2.496-1.12 2.496-2.495-1.12-2.496-2.496-2.496zm0 4.007c-.833 0-1.511-.678-1.511-1.511s.678-1.512 1.511-1.512 1.512.679 1.512 1.512-.678 1.511-1.512 1.511z\"></path><path d=\"m18.661 46.398c-1.376 0-2.496 1.12-2.496 2.496s1.12 2.495 2.496 2.495 2.495-1.12 2.495-2.495-1.12-2.496-2.495-2.496zm0 4.007c-.833 0-1.512-.678-1.512-1.511s.679-1.512 1.512-1.512 1.511.679 1.511 1.512-.678 1.511-1.511 1.511z\"></path><path d=\"m36.797 45.691h-9.275c-1.529 0-2.773 1.245-2.773 2.774s1.244 2.773 2.773 2.773h9.275c1.529 0 2.773-1.244 2.773-2.773s-1.244-2.774-2.773-2.774zm-4.146.984h2.624v3.578h-2.624zm-.984 3.578h-2.623v-3.578h2.623zm-5.934-1.789c0-.987.802-1.789 1.789-1.789h.538v3.578h-.538c-.986 0-1.789-.802-1.789-1.789zm11.064 1.789h-.538v-3.578h.538c.986 0 1.789.802 1.789 1.789s-.802 1.789-1.789 1.789z\"></path></g></svg>						\n										Carports\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"100\" viewBox=\"0 0 100 100\" width=\"100\"><g style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:2\"><path d=\"m75 85h-20.002-29.998v-70h50z\"></path><path d=\"m54.998 75.001-29.998 9.999v-70h29.998z\"></path><path d=\"m47.5 41.251v7.5z\"></path></g></svg>						\n										Doors &amp; windows\n									</li>\n						</ul>\n							<h2>ANMELDELSER</h2>					</script>\n		<p>Vi sætter stor pris på feedback fra vores kunder og er stolte af de anmeldelser, vi har modtaget.<br />Du kan læse anmeldelser og vurderinger af vores arbejde på Anmeld Håndværker:</p>								<a href=\"https://www.anmeld-haandvaerker.dk/tomrer/cp-nordic-aps\" target=\"_blank\" rel=\"nofollow\">\n									Se alle ANMELDELSER\n					</a>\n					<h2>HVORFOR VÆLGE CP NORDIC ApS?</h2>		<p>Når du vælger CP NORDIC ApS, får du:</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 450 450\" width=\"512\"><g><g><path d=\"m225 165.2c-25.9 0-48.9-18.8-53.3-45.2-2.4-14.2.9-28.6 9.3-40.3 8.4-11.8 20.9-19.5 35.1-21.9 29.4-4.9 57.3 15 62.2 44.5 4.9 29.4-15 57.3-44.4 62.2-3 .5-6 .7-8.9.7zm-7.6-99.8c-12.2 2-22.9 8.7-30.1 18.8s-10.1 22.4-8 34.6c3.8 22.7 23.5 38.8 45.7 38.8 2.5 0 5.1-.2 7.6-.6 25.2-4.2 42.3-28.1 38.1-53.4s-28.1-42.4-53.3-38.2z\"></path><path d=\"m255.2 115c-2.1 0-3.8-1.7-3.8-3.8 0-14.6-11.8-26.4-26.4-26.4-2.1 0-3.8-1.7-3.8-3.8s1.7-3.8 3.8-3.8c18.8 0 34.1 15.3 34.1 34.1 0 2-1.8 3.7-3.9 3.7z\"></path><path d=\"m236.1 203h-22.2c-2.1 0-3.8-1.7-3.8-3.8v-14.1c-3.1-.6-6.1-1.4-9.1-2.4l-7 12.2c-1.1 1.8-3.4 2.5-5.3 1.4l-19.2-11.1c-.9-.5-1.5-1.4-1.8-2.3-.3-1-.1-2 .4-2.9l7-12.1c-2.4-2.1-4.6-4.3-6.7-6.6l-12.1 7c-1.8 1.1-4.2.4-5.2-1.4l-11.1-19.2c-1.1-1.8-.4-4.2 1.4-5.2l11.9-6.8c-1-3-1.9-6.1-2.6-9.3h-13.7c-2.1 0-3.8-1.7-3.8-3.8v-22.2c0-2.1 1.7-3.8 3.8-3.8h13.4c.6-3.2 1.4-6.4 2.4-9.5l-11.5-6.6c-1.8-1.1-2.5-3.4-1.4-5.3l11.1-19.6c.5-.9 1.4-1.5 2.3-1.8s2-.1 2.9.4l11.3 6.6c2.2-2.5 4.5-4.8 7-7l-6.5-11.3c-.5-.9-.6-1.9-.4-2.9.3-1 .9-1.8 1.8-2.3l19.2-11.1c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l6.4 11.2c3.1-1.1 6.4-1.9 9.7-2.6v-13c0-2.1 1.7-3.8 3.8-3.8h22.2c2.1 0 3.8 1.7 3.8 3.8v12.8c3.3.7 6.5 1.5 9.7 2.6l6.5-11.2c.5-.9 1.4-1.5 2.3-1.8 1-.3 2-.1 2.9.4l19.2 11.1c.9.5 1.5 1.3 1.8 2.3s.1 2-.4 2.9l-6.5 11.3c2.5 2.2 4.8 4.5 7 7.1l11.3-6.6c.9-.5 1.9-.7 2.9-.4s1.8.9 2.3 1.8l11.1 19.2c1.1 1.8.4 4.2-1.4 5.3l-11.5 6.6c1 3.1 1.8 6.3 2.5 9.5h13.6c2.1 0 3.8 1.7 3.8 3.8v22.2c0 2.1-1.7 3.8-3.8 3.8h-13.6c-.6 3.1-1.5 6.2-2.5 9.3l11.9 6.8c1.8 1.1 2.5 3.4 1.4 5.2l-11.2 19.5c-1.1 1.8-3.4 2.5-5.2 1.4l-12-7c-2.1 2.4-4.4 4.6-6.7 6.6l7 12.1c.5.9.6 1.9.4 2.9s-.9 1.8-1.8 2.3l-19.2 11.1c-1.8 1.1-4.2.4-5.2-1.4l-7-12.2c-3 1-6 1.8-9.1 2.4v14.1c-.2 2.3-2 4-4.1 4zm-18.4-7.7h14.5v-13.5c0-1.9 1.4-3.5 3.3-3.8 4.7-.7 9.4-2 13.8-3.7 1.8-.7 3.8 0 4.7 1.7l6.7 11.6 12.6-7.3-6.7-11.6c-1-1.6-.5-3.7.9-4.9 3.7-3 7.2-6.4 10.2-10.1 1.2-1.5 3.3-1.8 4.9-.9l11.5 6.6 7.3-12.6-11.3-6.5c-1.6-.9-2.4-3-1.6-4.7 1.8-4.5 3.1-9.2 3.9-14 .3-1.9 1.9-3.2 3.8-3.2h13v-14.6h-12.8c-1.9 0-3.5-1.4-3.8-3.3-.7-4.8-2-9.6-3.7-14.2-.7-1.8 0-3.7 1.7-4.7l10.9-6.3-7.3-12.6-10.8 6.3c-1.6.9-3.7.6-4.9-.9-3.1-3.9-6.6-7.4-10.4-10.6-1.5-1.2-1.9-3.3-.9-4.9l6.2-10.7-12.6-7.3-6.1 10.6c-1 1.6-3 2.3-4.7 1.7-4.6-1.8-9.5-3.1-14.4-3.9-1.9-.3-3.3-1.9-3.3-3.8v-12.2h-14.5v12.3c0 1.9-1.4 3.5-3.3 3.8-5 .8-9.8 2.1-14.4 3.9-1.8.7-3.8 0-4.7-1.7l-6.1-10.6-12.6 7.3 6.2 10.7c.9 1.6.6 3.7-.9 4.9-3.9 3.1-7.4 6.7-10.4 10.6-1.2 1.5-3.3 1.9-4.9.9l-10.8-6.3-7.3 12.6 10.9 6.3c1.6.9 2.3 2.9 1.7 4.7-1.7 4.6-3 9.4-3.7 14.2-.3 1.9-1.9 3.3-3.8 3.3h-12.8v14.5h13c1.9 0 3.5 1.4 3.8 3.2.8 4.8 2.1 9.5 3.9 14 .7 1.8 0 3.8-1.6 4.7l-11.3 6.5 7.3 12.6 11.5-6.6c1.6-.9 3.7-.6 4.9.9 3 3.7 6.5 7.1 10.3 10.1 1.5 1.2 1.9 3.3.9 4.9l-6.7 11.6 12.6 7.3 6.7-11.6c.9-1.6 2.9-2.3 4.7-1.7 4.5 1.7 9.1 2.9 13.8 3.7 1.9.3 3.3 1.9 3.3 3.8z\"></path></g><g><g><g><path d=\"m45.3 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m153.9 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path></g><g><path d=\"m189.3 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.2c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c0 2.1-1.7 3.8-3.8 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m73.3 326.4c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m126 326.4c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2-1.7 3.8-3.8 3.8z\"></path><path d=\"m99.7 325.6c-.6 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4s4.1 1.1 4.4 3.2c2.4 16.5 12.3 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m50.2 266.6c-.1 0-.2 0-.3 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.7 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-8.9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.5 2.2zm81.8-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13.1-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.4-.7 2.3-.7z\"></path></g></g></g><g><g><path d=\"m296.1 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m404.7 430.7c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v52.2c0 2.1-1.7 3.8-3.8 3.8z\"></path></g><g><path d=\"m440 430.7h-179.3c-2.1 0-3.8-1.7-3.8-3.8v-52.2c0-30.9 25.1-56 56-56h11.1c2 0 3.7 1.6 3.8 3.6.8 11.8 10.7 21.1 22.5 21.1s21.8-9.3 22.5-21.1c.1-2 1.8-3.6 3.8-3.6h11.1c30.9 0 56 25.1 56 56v52.2c.2 2.1-1.6 3.8-3.7 3.8zm-175.5-7.7h171.7v-48.3c0-26.6-21.7-48.3-48.3-48.3h-7.8c-2.6 14.1-15.1 24.7-29.7 24.7s-27.1-10.6-29.7-24.7h-7.8c-26.6 0-48.3 21.7-48.3 48.3z\"></path><g><path d=\"m324 326.3c-2.1 0-3.8-1.7-3.8-3.8v-17.7c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v17.7c0 2.1-1.7 3.8-3.8 3.8z\"></path><path d=\"m376.7 326.3c-2.1 0-3.8-1.7-3.8-3.8v-20.2c0-2.1 1.7-3.8 3.8-3.8s3.8 1.7 3.8 3.8v20.2c.1 2.1-1.6 3.8-3.8 3.8z\"></path><path d=\"m350.4 325.6c-.5 0-1.1-.1-1.6-.4-37.6-17.4-48.8-43.3-51.6-61.9-.3-2.1 1.1-4 3.2-4.4 2.1-.3 4 1.1 4.4 3.2 2.4 16.5 12.4 39.3 45.5 55.2 30.9-17 40-39.3 42.2-55.2.3-2.1 2.2-3.6 4.3-3.3s3.6 2.2 3.3 4.3c-2.5 17.9-12.8 43.2-47.9 61.8-.6.6-1.2.7-1.8.7z\"></path><path d=\"m301 266.6c-.1 0-.2 0-.4 0-1.6-.1-2.9-1.2-3.3-2.7-9.8-32.5-5.3-52.9-1.7-62.2 1.7-4.3 3.2-6.6 3.4-6.8 1.1-1.6 3.2-2.1 4.9-1.2 8.7 4.5 10.6 3.5 17.6-1.5 16.7-12 46.4-8.6 61.8 2.3 14.3 10.2 21.7 25.5 21.4 44.4-.2 14-4.6 24.9-4.8 25.3-.6 1.4-1.9 2.4-3.5 2.4-1.5 0-2.9-.8-3.6-2.2l-11.7-25.3c-9 5-21.8 7.3-31.8 2.3-9.2-4.5-13.9-5.9-23.7-5.4-9.3.5-12.7 7.7-17.3 19.3-1.2 3.1-2.5 6.3-3.9 9.1-.7 1.4-2 2.2-3.4 2.2zm81.7-36.9c.3 0 .6 0 .9.1 1.1.3 2.1 1.1 2.6 2.1l9.3 20c2.8-13 4.1-36.3-16.7-51.1-13-9.3-39-12.3-52.9-2.3-7.8 5.6-12.6 7.8-22.2 3.6-.3.6-.6 1.4-1 2.3-2.8 7.3-6.3 22.5-.9 46.5 4-10 9.3-21.7 23.3-22.5 11.7-.7 17.7 1.3 27.6 6.1 7.4 3.7 19.8 1.8 27.7-4.1.6-.5 1.5-.7 2.3-.7z\"></path></g></g></g></g></g></svg>				\n									<h5>\n							et ungt og engageret team						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"496pt\" viewBox=\"0 0 496 496\" width=\"496pt\"><path d=\"m440 328h-28.207031c5.078125-6.703125 8.207031-14.960938 8.207031-24 0-8.824219-7.175781-16-16-16h-12v-19.960938c59.574219-14.445312 104-68.085937 104-132.039062 0-74.992188-61.007812-136-136-136s-136 61.007812-136 136c0 63.953125 44.425781 117.59375 104 132.039062v19.960938h-8.449219c-6.167969 0-12.359375 1.464844-17.886719 4.214844l-50.480468 25.25c-3.320313 1.664062-7.03125 2.535156-10.734375 2.535156h-40.449219v-16h-104v16h56v56h16v-56h16v128h-16v-56h-16v56h-56v16h104v-16h40.449219c3.703125 0 7.414062.871094 10.734375 2.527344l34.488281 17.25c5.519531 2.757812 11.710937 4.222656 17.878906 4.222656h24.449219v24h64v-24h48c13.230469 0 24-10.769531 24-24 0-6.167969-2.40625-11.742188-6.238281-16 3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16s-2.40625-11.742188-6.238281-16c3.839843-4.257812 6.238281-9.832031 6.238281-16 0-13.230469-10.769531-24-24-24zm8 24c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm0 32c0 4.414062-3.59375 8-8 8h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8zm-208-280c0-66.167969 53.832031-120 120-120s120 53.832031 120 120-53.832031 120-120 120-120-53.832031-120-120zm104 134.976562c5.257812.617188 10.574219 1.023438 16 1.023438s10.742188-.40625 16-1.023438v17.023438h-32zm-40.449219 185.023438c-3.703125 0-7.414062-.871094-10.734375-2.527344l-34.488281-17.25c-5.519531-2.757812-11.710937-4.222656-17.878906-4.222656h-40.449219v-96h40.449219c6.167969 0 12.359375-1.464844 17.886719-4.214844l50.480468-25.25c3.320313-1.664062 7.03125-2.535156 10.734375-2.535156h84.449219c0 13.230469-10.769531 24-24 24h-48.28125l-23.863281 35.808594c-6.101563 9.160156-14.527344 16.589844-24.367188 21.503906-8.753906 4.375-18.542969 6.6875-28.320312 6.6875h-15.167969v16h15.167969c12.246093 0 24.519531-2.894531 35.472656-8.375 12.328125-6.160156 22.878906-15.480469 30.527344-26.945312l6.832031-10.253907v93.574219zm40.449219 24v-136h17.472656c-.898437 2.511719-1.472656 5.183594-1.472656 8 0 6.167969 2.40625 11.742188 6.238281 16-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16s2.40625 11.742188 6.238281 16c-3.839843 4.257812-6.238281 9.832031-6.238281 16 0 10.414062 6.710938 19.214844 16 22.527344v9.472656zm96-24h-56c-4.40625 0-8-3.585938-8-8s3.59375-8 8-8h56c4.40625 0 8 3.585938 8 8s-3.59375 8-8 8zm0 0\"></path><path d=\"m394.878906 73.007812-7.757812 13.984376c17.816406 9.878906 28.878906 28.664062 28.878906 49.007812h16c0-26.160156-14.222656-50.296875-37.121094-62.992188zm0 0\"></path><path d=\"m360 80c4.734375 0 9.449219.59375 14.007812 1.769531l3.976563-15.503906c-5.855469-1.496094-11.90625-2.265625-17.984375-2.265625zm0 0\"></path><path d=\"m360 48c48.519531 0 88 39.480469 88 88 0 20.753906-7.398438 40.910156-20.832031 56.785156l12.207031 10.34375c15.882812-18.761718 24.625-42.601562 24.625-67.128906 0-57.34375-46.65625-104-104-104-24.527344 0-48.367188 8.753906-67.128906 24.632812l10.335937 12.199219c15.871094-13.433593 36.039063-20.832031 56.792969-20.832031zm0 0\"></path><path d=\"m427.128906 215.367188-10.335937-12.199219c-15.871094 13.433593-36.039063 20.832031-56.792969 20.832031-48.519531 0-88-39.480469-88-88 0-20.753906 7.398438-40.910156 20.832031-56.785156l-12.207031-10.34375c-15.882812 18.761718-24.625 42.601562-24.625 67.128906 0 57.34375 46.65625 104 104 104 24.527344 0 48.367188-8.753906 67.128906-24.632812zm0 0\"></path><path d=\"m121.214844 165.640625c4.953125-1.375 9.695312-3.34375 14.183594-5.878906l9.769531 4.886719 19.472656-19.480469-4.886719-9.769531c2.535156-4.496094 4.503906-9.230469 5.886719-14.183594l10.359375-3.445313v-27.53125l-10.351562-3.453125c-1.375-4.953125-3.34375-9.707031-5.886719-14.183594l4.886719-9.777343-19.472657-19.472657-9.769531 4.886719c-4.484375-2.535156-9.230469-4.503906-14.183594-5.878906l-3.453125-10.359375h-27.539062l-3.445313 10.359375c-4.953125 1.375-9.695312 3.34375-14.183594 5.878906l-9.777343-4.886719-19.472657 19.472657 4.886719 9.777343c-2.535156 4.488282-4.503906 9.230469-5.886719 14.183594l-10.351562 3.445313v27.53125l10.351562 3.453125c1.375 4.953125 3.34375 9.695312 5.886719 14.183594l-4.886719 9.769531 19.472657 19.480469 9.769531-4.886719c4.484375 2.535156 9.230469 4.503906 14.183594 5.878906l3.453125 10.359375h27.539062zm-12.304688-13.679687-2.679687 8.039062h-4.460938l-2.679687-8.039062-4.554688-.90625c-6.128906-1.222657-11.878906-3.605469-17.109375-7.09375l-3.867187-2.578126-7.574219 3.800782-3.160156-3.167969 3.792969-7.582031-2.578126-3.859375c-3.488281-5.222657-5.871093-10.980469-7.09375-17.109375l-.914062-4.554688-8.03125-2.679687v-4.46875l8.03125-2.671875.914062-4.554688c1.222657-6.136718 3.613282-11.886718 7.09375-17.109375l2.578126-3.859375-3.792969-7.589844 3.160156-3.160156 7.574219 3.800782 3.867187-2.578126c5.222657-3.488281 10.980469-5.863281 17.109375-7.09375l4.554688-.90625 2.679687-8.039062h4.460938l2.679687 8.039062 4.554688.90625c6.128906 1.222657 11.878906 3.605469 17.109375 7.09375l3.867187 2.578126 7.574219-3.800782 3.160156 3.160156-3.792969 7.589844 2.578126 3.859375c3.488281 5.214844 5.871093 10.972657 7.09375 17.109375l.914062 4.554688 8.03125 2.679687v4.46875l-8.03125 2.671875-.914062 4.554688c-1.222657 6.128906-3.613282 11.878906-7.09375 17.109375l-2.578126 3.859375 3.792969 7.582031-3.160156 3.167969-7.574219-3.800782-3.867187 2.578126c-5.222657 3.488281-10.980469 5.863281-17.109375 7.09375zm0 0\"></path><path d=\"m104 72c-17.648438 0-32 14.351562-32 32s14.351562 32 32 32 32-14.351562 32-32-14.351562-32-32-32zm0 48c-8.824219 0-16-7.175781-16-16s7.175781-16 16-16 16 7.175781 16 16-7.175781 16-16 16zm0 0\"></path><path d=\"m160 248v-40h48v-208h-208v208h106.664062zm-144-232h176v176h-48v24l-32-24h-96zm0 0\"></path><path d=\"m0 272h16v16h-16zm0 0\"></path><path d=\"m32 272h16v16h-16zm0 0\"></path><path d=\"m64 272h16v16h-16zm0 0\"></path><path d=\"m32 304h16v16h-16zm0 0\"></path><path d=\"m64 304h16v16h-16zm0 0\"></path><path d=\"m0 480h16v16h-16zm0 0\"></path><path d=\"m32 480h16v16h-16zm0 0\"></path><path d=\"m64 480h16v16h-16zm0 0\"></path><path d=\"m32 448h16v16h-16zm0 0\"></path><path d=\"m64 448h16v16h-16zm0 0\"></path></svg>				\n									<h5>\n							fokus på kvalitet og detaljer						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m469.12 408.93-67.26-33.63v-22.13c10.71-7.69 18.6-19.07 21.78-32.27h5.28c8.81 0 15.98-7.17 15.98-15.98v-5.29c0-6.35-3.74-11.84-9.12-14.41 5.19-18.64-1.65-39.76-19.44-59.78-12.58-14.16-30.67-22.27-49.62-22.27-18.93 0-37.01 8.12-49.59 22.27-13.38 15.05-20.95 41.01-14.03 59.62-5.56 2.5-9.45 8.09-9.45 14.57v5.29c0 8.81 7.17 15.98 15.98 15.98h5.55c3.16 13.09 10.94 24.39 21.51 32.08v22.32l-67.26 33.63c-16.7 5.87-27.89 21.6-27.89 39.28v41.63c0 3.31 2.69 6 6 6h243.46c3.31 0 6-2.69 6-6v-41.63c0-17.68-11.19-33.41-27.88-39.28zm-62.24-17.7-15.83 27.66-13.29-13.29 19.29-19.29zm-37.61 5.88-20.59-20.58v-16.91c6.41 2.57 13.4 4.01 20.72 4.01 7.22 0 14.11-1.39 20.45-3.9v16.8zm63.63-97.48v5.29c0 2.16-1.82 3.98-3.98 3.98h-3.74c.01-.36.03-.71.03-1.07v-12.18h3.71c2.15-.01 3.98 1.82 3.98 3.98zm-119.29 8.2v1.07h-3.98c-2.16 0-3.98-1.82-3.98-3.98v-5.29c0-2.16 1.82-3.98 3.98-3.98l3.98.22zm1.95-24.19c-7.33-13.69-.89-37.39 10.53-50.24 10.31-11.6 25.12-18.25 40.63-18.25 15.52 0 30.34 6.65 40.65 18.25 8.43 9.48 21.3 27.59 17.4 46.39-5.66-.35-10.67-2.55-14.4-6.36-5.37-5.49-7.72-14-6.63-23.94.29-2.62-1.17-5.13-3.6-6.17s-5.25-.37-6.95 1.65c-19.33 22.92-45.95 36.76-73.9 38.68h-3.73zm10.05 24.19v-12.73c24.57-2.92 47.92-14.05 66.73-31.8 1.43 7.26 4.63 13.6 9.45 18.52 3.27 3.35 7.14 5.89 11.41 7.58v18.42c0 24.15-19.65 43.8-43.8 43.8s-43.79-19.64-43.79-43.79zm15.89 78.48 19.29 19.29-13.29 13.29-15.84-27.66zm3.22 97.53h-39.42v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.76v-35.63c0-12.68 8.1-23.95 20.15-28.05.26-.09.51-.19.75-.31l46.47-23.23 20.07 35.06c.93 1.62 2.56 2.72 4.41 2.97.27.04.53.05.79.05 1.58 0 3.11-.62 4.24-1.76l.14-.14zm12.08 0 7.41-64.69 5.06-5.06 4.84 4.84 7.86 64.92h-25.17zm128.2 0h-39.76v-28.34c0-3.31-2.69-6-6-6s-6 2.69-6 6v28.34h-39.18l-6.2-51.17.25.25c1.13 1.13 2.66 1.76 4.24 1.76.26 0 .53-.02.79-.05 1.85-.25 3.48-1.34 4.41-2.97l20.07-35.06 46.47 23.23c.24.12.49.23.75.31 12.05 4.1 20.15 15.38 20.15 28.05v35.65zm-67.04-346.65h-10.84l28.38 39.84 28.38-39.84h-10.84c-3.31 0-6-2.69-6-6v-64.58h-98.7c-3.31 0-6-2.69-6-6s2.69-6 6-6h104.7c3.31 0 6 2.69 6 6v64.58h16.48c2.25 0 4.3 1.25 5.33 3.25s.86 4.4-.45 6.23l-40.02 56.18c-1.13 1.58-2.95 2.52-4.89 2.52s-3.76-.94-4.89-2.52l-40.02-56.18c-1.3-1.83-1.48-4.23-.45-6.23s3.09-3.25 5.33-3.25h16.48v-23.5h-65.38c-3.31 0-6-2.69-6-6s2.69-6 6-6h71.38c3.31 0 6 2.69 6 6v35.5c.02 3.31-2.67 6-5.98 6zm-118.44 50.65v-133.26c0-21.18-17.23-38.41-38.41-38.41h-207.7c-21.18-.01-38.41 17.23-38.41 38.41v133.26c0 21.18 17.23 38.41 38.41 38.41h105.8l64.8 55.11c1.11.94 2.49 1.43 3.89 1.43.85 0 1.71-.18 2.52-.55 2.12-.98 3.48-3.11 3.48-5.45v-50.54h27.21c21.18 0 38.41-17.23 38.41-38.41zm-71.62 26.41c-3.31 0-6 2.69-6 6v43.56l-56.59-48.13c-1.08-.92-2.46-1.43-3.89-1.43h-108.01c-14.56 0-26.41-11.85-26.41-26.41v-133.26c0-14.56 11.85-26.41 26.41-26.41h207.69c14.56 0 26.41 11.85 26.41 26.41v133.26c0 14.56-11.85 26.41-26.41 26.41zm-156.34-87.87h56.97c3.31 0 6-2.69 6-6v-39.2l8.55-8.55c2.34-2.34 2.34-6.14 0-8.49-2.34-2.34-6.14-2.34-8.48 0l-.7.7c-.98-1.97-3.01-3.32-5.36-3.32h-56.98c-3.31 0-6 2.69-6 6v52.85c0 3.32 2.69 6.01 6 6.01zm6-52.86h44.97v2.69l-18.16 18.16-8.84-8.84c-2.34-2.34-6.14-2.34-8.49 0-2.34 2.34-2.34 6.14 0 8.49l13.08 13.08c1.17 1.17 2.71 1.76 4.24 1.76s3.07-.59 4.24-1.76l13.92-13.92v21.2h-44.96zm173.62 3.08c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 31.92c0 3.31-2.69 6-6 6h-78.15c-3.31 0-6-2.69-6-6s2.69-6 6-6h78.15c3.32 0 6 2.69 6 6zm0 36.52c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.68 5.99 6zm0 31.92c0 3.31-2.69 6-6 6h-175.09c-3.31 0-6-2.69-6-6s2.69-6 6-6h175.1c3.31 0 5.99 2.69 5.99 6zm-119.36 165.01h10.84l-28.38-39.84-28.38 39.84h10.84c3.31 0 6 2.69 6 6v64.58h98.7c3.31 0 6 2.69 6 6s-2.69 6-6 6h-104.69c-3.31 0-6-2.69-6-6v-64.58h-16.48c-2.25 0-4.3-1.25-5.33-3.25s-.86-4.4.45-6.23l40.02-56.18c1.13-1.58 2.95-2.52 4.89-2.52s3.76.94 4.89 2.52l40.02 56.18c1.3 1.83 1.48 4.23.45 6.23s-3.09 3.25-5.33 3.25h-16.48v23.5h65.38c3.31 0 6 2.69 6 6s-2.69 6-6 6h-71.38c-3.31 0-6-2.69-6-6v-35.5c-.03-3.31 2.66-6 5.97-6z\"></path></svg>				\n									<h5>\n							ærlig<br> rådgivning						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:serif=\"http://www.serif.com/\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 510 510\"><path d=\"m192.036 385.845c-4.787-46.972-19.459-64.336-30.658-82.352-8.672-13.951-15.5-28.245-15.5-54.252 0-60.242 48.865-109.109 109.135-109.109 60.242 0 109.109 48.866 109.109 109.109 0 26.007-6.828 40.301-15.5 54.252-11.199 18.016-25.871 35.38-30.658 82.352 9.985 2.864 17.345 12.101 17.345 22.975v36.44c0 13.109-10.747 23.866-23.893 23.866h-10.334v9.945c0 12.588-10.341 22.929-22.93 22.929h-46.304c-12.589 0-22.93-10.341-22.93-22.929v-9.945h-10.334c-13.146 0-23.893-10.757-23.893-23.866v-36.44c0-10.874 7.36-20.111 17.345-22.975zm111.948-.917c4.199-42.194 15.78-62.332 26.488-79.049 10.147-15.842 19.65-28.207 19.65-56.638 0-52.513-42.597-95.109-95.109-95.109-52.537 0-95.135 42.596-95.135 95.109 0 28.431 9.503 40.796 19.65 56.638 10.708 16.717 22.289 36.855 26.488 79.049zm2.554-78.61c-1.175 13.701-11.985 24.191-24.783 24.191-13.527 0-24.862-12.086-24.862-26.673v-99.328c0-14.12 11.335-26.673 24.862-26.673 11.309 0 21.031 8.139 23.975 19.497 9.12 3.904 15.688 13.438 15.688 24.78 0 1.153-.068 2.289-.201 3.403 5.078 5.326 8.283 12.802 8.283 21.117 0 6.39-1.889 12.262-5.06 17.053 1.996 4.099 3.13 8.773 3.13 13.76 0 14.1-9.065 25.697-21.032 28.873zm-16.452-109.977c-1.964-2.729-4.916-4.506-8.331-4.506-6.192 0-10.862 6.21-10.862 12.673v99.328c0 6.677 4.67 12.673 10.862 12.673 5.516 0 9.822-4.614 10.717-10.425-4.709-1.416-8.923-4.144-12.279-7.814-2.607-2.852-2.409-7.283.443-9.89 2.851-2.607 7.282-2.408 9.889.443 2.416 2.642 5.72 4.356 9.402 4.356 7.733 0 13.643-7.218 13.643-15.734s-5.91-15.734-13.643-15.734c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7 5.352 0 10.388 1.655 14.658 4.533.593-1.743.915-3.634.915-5.612 0-2.11-.366-4.128-1.036-5.972-.769.858-1.588 1.66-2.453 2.397-2.94 2.507-7.361 2.156-9.869-.784-2.507-2.939-2.155-7.361.784-9.868 2.773-2.365 4.492-6.122 4.492-10.293 0-6.072-3.705-11.374-8.898-12.467-.154-.023-.307-.052-.458-.085-.499-.08-1.01-.121-1.532-.121-2.947 0-5.591 1.389-7.515 3.525-2.585 2.87-7.015 3.101-9.886.515-2.87-2.586-3.101-7.015-.515-9.886 3.111-3.453 7.059-5.988 11.472-7.252zm-104.526 67.344c-3.171-4.791-5.06-10.663-5.06-17.053 0-8.307 3.198-15.777 8.284-21.104-.133-1.118-.202-2.258-.202-3.416 0-11.354 6.582-20.897 15.717-24.792 2.948-11.354 12.67-19.485 23.946-19.485 13.56 0 24.888 12.555 24.888 26.673v99.328c0 14.585-11.328 26.673-24.888 26.673-12.765 0-23.578-10.484-24.757-24.184-11.98-3.166-21.058-14.769-21.058-28.88 0-4.987 1.134-9.661 3.13-13.76zm9.982-23.036c-.675 1.847-1.042 3.869-1.042 5.983 0 1.978.322 3.869.915 5.612 4.27-2.878 9.306-4.533 14.658-4.533 3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7-7.733 0-13.643 7.218-13.643 15.734s5.91 15.734 13.643 15.734c3.682 0 6.986-1.714 9.402-4.356 2.607-2.851 7.038-3.05 9.889-.443 2.852 2.607 3.05 7.038.443 9.89-3.35 3.664-7.556 6.389-12.255 7.807.891 5.813 5.192 10.432 10.693 10.432 6.21 0 10.888-5.993 10.888-12.673v-99.328c0-6.466-4.678-12.673-10.888-12.673-3.404 0-6.349 1.777-8.309 4.507 4.421 1.264 8.367 3.8 11.476 7.251 2.586 2.871 2.355 7.3-.516 9.886-2.87 2.586-7.3 2.355-9.886-.515-1.926-2.138-4.574-3.525-7.54-3.525-.493 0-.976.037-1.448.108-.196.045-.395.082-.596.11-5.165 1.118-8.844 6.404-8.844 12.455 0 1.243.153 2.45.442 3.594.101.284.183.572.246.862.748 2.326 2.071 4.346 3.814 5.823 2.947 2.498 3.311 6.919.813 9.866s-6.919 3.312-9.866.814c-.878-.745-1.71-1.554-2.489-2.422zm3.042 158.279c-5.442 0-9.893 4.451-9.893 9.892v36.44c0 5.423 4.454 9.866 9.893 9.866h17.334c3.866 0 7 3.134 7 7v16.945c0 4.902 4.027 8.929 8.93 8.929h46.304c4.903 0 8.93-4.027 8.93-8.929v-16.945c0-3.866 3.134-7 7-7h17.334c5.439 0 9.893-4.443 9.893-9.866v-36.44c0-5.441-4.451-9.892-9.893-9.892zm63.416-314.093 2.907-5.412c1.828-3.403 6.075-4.683 9.479-2.854 3.403 1.828 4.682 6.075 2.854 9.479l-16.073 29.925c-1.22 2.271-3.589 3.688-6.167 3.688s-4.947-1.417-6.167-3.688l-16.073-29.925c-1.828-3.404-.549-7.651 2.854-9.479 3.404-1.829 7.651-.549 9.479 2.854l2.907 5.412v-69.835c0-3.863 3.137-7 7-7s7 3.137 7 7zm-132.198 54.758-49.381-49.381c-2.732-2.731-2.732-7.167 0-9.899s7.168-2.732 9.9 0l49.38 49.38-1.771-5.881c-1.114-3.7.985-7.608 4.684-8.722 3.7-1.114 7.607.985 8.721 4.685l9.796 32.526c.743 2.468.069 5.145-1.753 6.968-1.823 1.823-4.5 2.496-6.969 1.753l-32.526-9.795c-3.699-1.114-5.798-5.022-4.684-8.721s5.022-5.798 8.721-4.684zm-44.859 122.299h-69.835c-3.863 0-7-3.137-7-7 0-3.864 3.137-7 7-7h69.835l-5.412-2.907c-3.403-1.828-4.682-6.076-2.854-9.479 1.828-3.404 6.075-4.683 9.479-2.855l29.926 16.074c2.271 1.22 3.688 3.589 3.688 6.167 0 2.577-1.417 4.947-3.688 6.166l-29.926 16.074c-3.404 1.828-7.651.549-9.479-2.855-1.828-3.403-.549-7.651 2.854-9.479zm54.758 118.198-49.38 49.38c-2.732 2.732-7.168 2.732-9.9 0s-2.732-7.167 0-9.899l49.381-49.381-5.882 1.772c-3.699 1.114-7.607-.985-8.721-4.685-1.114-3.699.985-7.607 4.684-8.721l32.526-9.795c2.469-.743 5.146-.07 6.969 1.753 1.822 1.823 2.496 4.5 1.753 6.968l-9.796 32.527c-1.114 3.699-5.021 5.798-8.721 4.684-3.699-1.114-5.798-5.022-4.684-8.721zm240.497-240.497 5.882-1.771c3.699-1.114 7.607.985 8.721 4.684s-.985 7.607-4.684 8.721l-32.526 9.795c-2.469.743-5.146.07-6.969-1.753-1.822-1.823-2.496-4.5-1.753-6.968l9.796-32.526c1.114-3.7 5.021-5.799 8.721-4.685 3.699 1.114 5.798 5.022 4.684 8.722l-1.771 5.881 49.38-49.38c2.732-2.732 7.168-2.732 9.9 0s2.732 7.168 0 9.899zm44.859 122.299 5.412 2.906c3.403 1.828 4.682 6.076 2.854 9.479-1.828 3.404-6.075 4.683-9.479 2.855l-29.926-16.074c-2.271-1.219-3.688-3.589-3.688-6.166 0-2.578 1.417-4.947 3.688-6.167l29.926-16.074c3.404-1.828 7.651-.549 9.479 2.855 1.828 3.403.549 7.651-2.854 9.479l-5.412 2.907h69.835c3.863 0 7 3.136 7 7 0 3.863-3.137 7-7 7zm-54.758 118.198 1.771 5.882c1.114 3.699-.985 7.607-4.684 8.721-3.7 1.114-7.607-.985-8.721-4.684l-9.796-32.527c-.743-2.468-.069-5.145 1.753-6.968 1.823-1.823 4.5-2.496 6.969-1.753l32.526 9.795c3.699 1.114 5.798 5.022 4.684 8.721-1.114 3.7-5.022 5.799-8.721 4.685l-5.882-1.772 49.381 49.381c2.732 2.732 2.732 7.167 0 9.899s-7.168 2.732-9.9 0z\"></path></svg>				\n									<h5>\n							gennemtænkte løsninger						\n					</h5>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" width=\"512\" height=\"512\"><g id=\"outline\"><path d=\"M486.41,144A28,28,0,0,0,472,92H349.123l5.457-21.828a48.513,48.513,0,0,0-12.848-46.153A41.035,41.035,0,0,0,312.609,12H308a8.009,8.009,0,0,0-8,8V47.413l-19.233,64.112A17.376,17.376,0,0,1,268,123.539V112a4,4,0,0,0-4-4H152a4,4,0,0,0-4,4v72a4,4,0,0,0,8,0V116h72V276H156V248a4,4,0,0,0-8,0v32a4,4,0,0,0,4,4H264a4,4,0,0,0,4-4V268.5h11.168A37.07,37.07,0,0,1,305.092,279a45.025,45.025,0,0,0,31.48,12.752L440,292a27.987,27.987,0,0,0,19.369-48.2,27.987,27.987,0,0,0,16-48A28,28,0,0,0,486.41,144ZM260,276H236V116h24Zm212-88H396a4,4,0,0,0,0,8h60a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h40a20,20,0,0,1,.01,40l-103.428-.25a37.07,37.07,0,0,1-25.924-10.5,45.031,45.031,0,0,0-31.49-12.752H268V131.686a25.317,25.317,0,0,0,20.429-17.862l19.4-64.675A4,4,0,0,0,308,48V20h4.609a33.082,33.082,0,0,1,23.481,9.69,40.507,40.507,0,0,1,10.728,38.541l-6.7,26.8A4,4,0,0,0,344,100H472a20,20,0,0,1,0,40H400a4,4,0,0,0,0,8h72a20,20,0,0,1,0,40Z\"></path><path d=\"M194.5,183.243l-1.9-.217a4,4,0,0,0-4.169,2.491L184.29,195.9H135.278l-3.539-9.317a4,4,0,0,0-7.478,2.84l2.459,6.477h-8.474L68.452,156.872a4,4,0,1,0-4.935,6.3L77.6,174.209,56.961,194.48l-6.636-5.491a4,4,0,1,0-5.1,6.163L87.219,229.9a44.1,44.1,0,0,0,28.05,10.1H212a8.009,8.009,0,0,0,8-8V203.9a8.009,8.009,0,0,0-8-8h-8v-2.01A10.708,10.708,0,0,0,194.5,183.243ZM212,203.9V232H115.269a36.081,36.081,0,0,1-22.951-8.264l-29.16-24.128,20.8-20.422L114.4,203.045a4,4,0,0,0,2.468.852H187a4,4,0,0,0,3.715-2.517l3.929-9.843a2.712,2.712,0,0,1,1.356,2.35v6.01a4,4,0,0,0,4,4Z\"></path><path d=\"M223.084,484.672,200.87,469.863V346.36A44.1,44.1,0,0,0,195.327,325l-17.183-30.94a4,4,0,0,0-7,3.884l17.184,30.94a36.073,36.073,0,0,1,4.537,17.478V468H164.333a4,4,0,1,0,0,8h31.321l12,8H152.865V352a4,4,0,0,0-.358-1.655l-25.454-56A4,4,0,0,0,123.411,292H114.2a4,4,0,0,0-3.945,4.658l8.862,53.175a36.016,36.016,0,0,1-1.951,18.949L78.642,468H48.333a4,4,0,1,0,0,8H80.377L92,484H32.088L76.63,361.366a4.017,4.017,0,0,0,.183-2.044L61.1,268H136a4,4,0,0,0,0-8H59.233L30.555,173.966A19.723,19.723,0,0,1,49.27,148H76a12,12,0,0,0,24,0h15.2a21.975,21.975,0,0,1,8.395,1.652l10.889,4.458a4,4,0,1,0,3.032-7.4L126.63,142.25A29.938,29.938,0,0,0,115.2,140H100v-4.527A16.014,16.014,0,0,0,112,120V103.473A16.014,16.014,0,0,0,124,88V80a4,4,0,0,0-4-4H90A22.025,22.025,0,0,0,68,98v18a12.02,12.02,0,0,0,8,11.314V140H49.27a27.723,27.723,0,0,0-26.305,36.5l29.493,88.482,16.29,94.655-46.128,127A4,4,0,0,0,26.38,492h78.485a4,4,0,0,0,2.268-7.3L86.3,470.368l38.318-98.69a44.018,44.018,0,0,0,2.385-23.16L118.921,300h1.914l24.03,52.867V488a4,4,0,0,0,4,4h72a4,4,0,0,0,2.219-7.328ZM76,98A14.015,14.015,0,0,1,90,84h26v4a8.009,8.009,0,0,1-8,8H92a4,4,0,0,0-4,4,11.962,11.962,0,0,1-1.53,5.881A12.044,12.044,0,0,0,76,104.686Zm4,14a3.981,3.981,0,0,1,3.407,1.9,4,4,0,0,0,5.956.975c.207-.171.7-.648.7-.648.032-.028.061-.057.09-.087A19.907,19.907,0,0,0,95.6,104H104v16a8.009,8.009,0,0,1-8,8,12.133,12.133,0,0,1-2.681-.3,4,4,0,1,0-1.775,7.8c.151.035.3.06.456.091V148a4,4,0,1,1-8,0V124a4,4,0,0,0-4-4,4,4,0,0,1,0-8Z\"></path></g></svg>				\n									<h5>\n							arbejde udført med ansvar						\n					</h5>\n				<p>Vi lover ikke mere, end vi kan holde – men vi holder det, vi lover.</p>			<h2>KONTAKT OS</h2>		<p>Har du et projekt i tankerne, eller ønsker du at høre mere om dine muligheder, er du altid velkommen til at kontakte os for en uforpligtende snak.</p>', 'Hjem', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2026-02-14 12:09:49', '2026-02-14 12:09:49', '', 10, 'https://mrarif.me/cpnordic/?p=758', 0, 'revision', '', 0);
INSERT INTO `wpcn_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(760, 1, '2026-02-14 12:14:03', '2026-02-14 12:14:03', '<h2>Få et vejledende prisoverslag</h2>', 'Prisberegner', '', 'publish', 'closed', 'closed', '', 'prisberegner', '', '', '2026-02-14 12:36:11', '2026-02-14 12:36:11', '', 0, 'https://mrarif.me/cpnordic/?page_id=760', 0, 'page', '', 0),
(761, 1, '2026-02-14 12:14:03', '2026-02-14 12:14:03', '', 'Prisberegner', '', 'inherit', 'closed', 'closed', '', '760-revision-v1', '', '', '2026-02-14 12:14:03', '2026-02-14 12:14:03', '', 760, 'https://mrarif.me/cpnordic/?p=761', 0, 'revision', '', 0),
(762, 1, '2026-02-14 12:14:17', '2026-02-14 12:14:17', ' ', '', '', 'publish', 'closed', 'closed', '', '762', '', '', '2026-02-14 12:14:17', '2026-02-14 12:14:17', '', 0, 'https://mrarif.me/cpnordic/?p=762', 6, 'nav_menu_item', '', 0),
(763, 1, '2026-02-14 12:19:42', '2026-02-14 12:19:42', '', 'Prisberegner', '', 'inherit', 'closed', 'closed', '', '760-revision-v1', '', '', '2026-02-14 12:19:42', '2026-02-14 12:19:42', '', 760, 'https://mrarif.me/cpnordic/?p=763', 0, 'revision', '', 0),
(764, 1, '2026-02-14 12:19:42', '2026-02-14 12:19:42', '', 'Prisberegner', '', 'inherit', 'closed', 'closed', '', '760-revision-v1', '', '', '2026-02-14 12:19:42', '2026-02-14 12:19:42', '', 760, 'https://mrarif.me/cpnordic/?p=764', 0, 'revision', '', 0),
(769, 1, '2026-02-14 12:26:36', '2026-02-14 12:26:36', '', 'Prisberegner', '', 'inherit', 'closed', 'closed', '', '760-revision-v1', '', '', '2026-02-14 12:26:36', '2026-02-14 12:26:36', '', 760, 'https://mrarif.me/cpnordic/?p=769', 0, 'revision', '', 0),
(770, 1, '2026-02-14 12:28:17', '2026-02-14 12:28:17', '', 'Prisberegner', '', 'inherit', 'closed', 'closed', '', '760-revision-v1', '', '', '2026-02-14 12:28:17', '2026-02-14 12:28:17', '', 760, 'https://mrarif.me/cpnordic/?p=770', 0, 'revision', '', 0),
(771, 1, '2026-02-14 12:28:17', '2026-02-14 12:28:17', '', 'Prisberegner', '', 'inherit', 'closed', 'closed', '', '760-revision-v1', '', '', '2026-02-14 12:28:17', '2026-02-14 12:28:17', '', 760, 'https://mrarif.me/cpnordic/?p=771', 0, 'revision', '', 0),
(772, 1, '2026-02-14 12:28:17', '2026-02-14 12:28:17', '', 'Prisberegner', '', 'inherit', 'closed', 'closed', '', '760-revision-v1', '', '', '2026-02-14 12:28:17', '2026-02-14 12:28:17', '', 760, 'https://mrarif.me/cpnordic/?p=772', 0, 'revision', '', 0),
(773, 1, '2026-02-14 12:29:40', '2026-02-14 12:29:40', '', 'Prisberegner', '', 'inherit', 'closed', 'closed', '', '760-revision-v1', '', '', '2026-02-14 12:29:40', '2026-02-14 12:29:40', '', 760, 'https://mrarif.me/cpnordic/?p=773', 0, 'revision', '', 0),
(774, 1, '2026-02-14 12:29:40', '2026-02-14 12:29:40', '', 'Prisberegner', '', 'inherit', 'closed', 'closed', '', '760-revision-v1', '', '', '2026-02-14 12:29:40', '2026-02-14 12:29:40', '', 760, 'https://mrarif.me/cpnordic/?p=774', 0, 'revision', '', 0),
(775, 1, '2026-02-14 12:29:40', '2026-02-14 12:29:40', '', 'Prisberegner', '', 'inherit', 'closed', 'closed', '', '760-revision-v1', '', '', '2026-02-14 12:29:40', '2026-02-14 12:29:40', '', 760, 'https://mrarif.me/cpnordic/?p=775', 0, 'revision', '', 0),
(776, 1, '2026-02-14 12:31:46', '2026-02-14 12:31:46', '', 'Prisberegner', '', 'inherit', 'closed', 'closed', '', '760-revision-v1', '', '', '2026-02-14 12:31:46', '2026-02-14 12:31:46', '', 760, 'https://mrarif.me/cpnordic/?p=776', 0, 'revision', '', 0),
(777, 1, '2026-02-14 12:31:46', '2026-02-14 12:31:46', '', 'Prisberegner', '', 'inherit', 'closed', 'closed', '', '760-revision-v1', '', '', '2026-02-14 12:31:46', '2026-02-14 12:31:46', '', 760, 'https://mrarif.me/cpnordic/?p=777', 0, 'revision', '', 0),
(778, 1, '2026-02-14 12:31:46', '2026-02-14 12:31:46', '', 'Prisberegner', '', 'inherit', 'closed', 'closed', '', '760-revision-v1', '', '', '2026-02-14 12:31:46', '2026-02-14 12:31:46', '', 760, 'https://mrarif.me/cpnordic/?p=778', 0, 'revision', '', 0),
(779, 1, '2026-02-14 12:35:19', '2026-02-14 12:35:19', '', 'Prisberegner', '', 'inherit', 'closed', 'closed', '', '760-revision-v1', '', '', '2026-02-14 12:35:19', '2026-02-14 12:35:19', '', 760, 'https://mrarif.me/cpnordic/?p=779', 0, 'revision', '', 0),
(765, 1, '2026-02-14 12:19:42', '2026-02-14 12:19:42', '<h2>KONTAKT OS</h2>		Vi dækker hele Fyn – og tager også gerne opgaver uden for området, når der er tale om spændende eller teknisk krævende løsninger.					\n					<a href=\"https://www.facebook.com/cpnordic/\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"https://www.instagram.com/cpnordic/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>', 'Prisberegner', '', 'inherit', 'closed', 'closed', '', '760-revision-v1', '', '', '2026-02-14 12:19:42', '2026-02-14 12:19:42', '', 760, 'https://mrarif.me/cpnordic/?p=765', 0, 'revision', '', 0),
(780, 1, '2026-02-14 12:35:19', '2026-02-14 12:35:19', '', 'Prisberegner', '', 'inherit', 'closed', 'closed', '', '760-revision-v1', '', '', '2026-02-14 12:35:19', '2026-02-14 12:35:19', '', 760, 'https://mrarif.me/cpnordic/?p=780', 0, 'revision', '', 0),
(767, 1, '2026-02-14 12:26:35', '2026-02-14 12:26:35', '<h2>KONTAKT OS</h2>		Vi dækker hele Fyn – og tager også gerne opgaver uden for området, når der er tale om spændende eller teknisk krævende løsninger.					\n					<a href=\"https://www.facebook.com/cpnordic/\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"https://www.instagram.com/cpnordic/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>', 'Prisberegner', '', 'inherit', 'closed', 'closed', '', '760-revision-v1', '', '', '2026-02-14 12:26:35', '2026-02-14 12:26:35', '', 760, 'https://mrarif.me/cpnordic/?p=767', 0, 'revision', '', 0),
(768, 1, '2026-02-14 12:26:35', '2026-02-14 12:26:35', '<h2>KONTAKT OS</h2>		Vi dækker hele Fyn – og tager også gerne opgaver uden for området, når der er tale om spændende eller teknisk krævende løsninger.					\n					<a href=\"https://www.facebook.com/cpnordic/\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"https://www.instagram.com/cpnordic/\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>', 'Prisberegner', '', 'inherit', 'closed', 'closed', '', '760-revision-v1', '', '', '2026-02-14 12:26:35', '2026-02-14 12:26:35', '', 760, 'https://mrarif.me/cpnordic/?p=768', 0, 'revision', '', 0),
(781, 1, '2026-02-14 12:35:19', '2026-02-14 12:35:19', '<h2>Få et vejledende prisoverslag</h2>', 'Prisberegner', '', 'inherit', 'closed', 'closed', '', '760-revision-v1', '', '', '2026-02-14 12:35:19', '2026-02-14 12:35:19', '', 760, 'https://mrarif.me/cpnordic/?p=781', 0, 'revision', '', 0),
(782, 1, '2026-02-14 12:35:46', '2026-02-14 12:35:46', '<h2>Få et vejledende prisoverslag</h2>', 'Prisberegner', '', 'inherit', 'closed', 'closed', '', '760-revision-v1', '', '', '2026-02-14 12:35:46', '2026-02-14 12:35:46', '', 760, 'https://mrarif.me/cpnordic/?p=782', 0, 'revision', '', 0),
(783, 1, '2026-02-14 12:35:46', '2026-02-14 12:35:46', '<h2>Få et vejledende prisoverslag</h2>', 'Prisberegner', '', 'inherit', 'closed', 'closed', '', '760-revision-v1', '', '', '2026-02-14 12:35:46', '2026-02-14 12:35:46', '', 760, 'https://mrarif.me/cpnordic/?p=783', 0, 'revision', '', 0),
(784, 1, '2026-02-14 12:35:47', '2026-02-14 12:35:47', '<h2>Få et vejledende prisoverslag</h2>', 'Prisberegner', '', 'inherit', 'closed', 'closed', '', '760-revision-v1', '', '', '2026-02-14 12:35:47', '2026-02-14 12:35:47', '', 760, 'https://mrarif.me/cpnordic/?p=784', 0, 'revision', '', 0),
(785, 1, '2026-02-14 12:36:11', '2026-02-14 12:36:11', '<h2>Få et vejledende prisoverslag</h2>', 'Prisberegner', '', 'inherit', 'closed', 'closed', '', '760-revision-v1', '', '', '2026-02-14 12:36:11', '2026-02-14 12:36:11', '', 760, 'https://mrarif.me/cpnordic/?p=785', 0, 'revision', '', 0),
(786, 1, '2026-02-14 12:36:11', '2026-02-14 12:36:11', '<h2>Få et vejledende prisoverslag</h2>', 'Prisberegner', '', 'inherit', 'closed', 'closed', '', '760-revision-v1', '', '', '2026-02-14 12:36:11', '2026-02-14 12:36:11', '', 760, 'https://mrarif.me/cpnordic/?p=786', 0, 'revision', '', 0),
(787, 1, '2026-02-14 12:36:11', '2026-02-14 12:36:11', '<h2>Få et vejledende prisoverslag</h2>', 'Prisberegner', '', 'inherit', 'closed', 'closed', '', '760-revision-v1', '', '', '2026-02-14 12:36:11', '2026-02-14 12:36:11', '', 760, 'https://mrarif.me/cpnordic/?p=787', 0, 'revision', '', 0);

-- --------------------------------------------------------

--
-- Table structure for table `wpcn_termmeta`
--

CREATE TABLE `wpcn_termmeta` (
  `meta_id` bigint(20) UNSIGNED NOT NULL,
  `term_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpcn_terms`
--

CREATE TABLE `wpcn_terms` (
  `term_id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(200) NOT NULL DEFAULT '',
  `slug` varchar(200) NOT NULL DEFAULT '',
  `term_group` bigint(10) NOT NULL DEFAULT 0
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `wpcn_terms`
--

INSERT INTO `wpcn_terms` (`term_id`, `name`, `slug`, `term_group`) VALUES
(1, 'Uncategorized', 'uncategorized', 0),
(2, 'Primary', 'primary', 0),
(3, 'header', 'header', 0),
(4, 'section', 'section', 0),
(5, 'footer', 'footer', 0),
(6, 'custom', 'custom', 0),
(7, 'page', 'page', 0);

-- --------------------------------------------------------

--
-- Table structure for table `wpcn_term_relationships`
--

CREATE TABLE `wpcn_term_relationships` (
  `object_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `term_taxonomy_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `term_order` int(11) NOT NULL DEFAULT 0
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `wpcn_term_relationships`
--

INSERT INTO `wpcn_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES
(30, 3, 0),
(21, 2, 0),
(91, 3, 0),
(23, 2, 0),
(762, 2, 0),
(25, 2, 0),
(31, 4, 0),
(104, 5, 0),
(108, 5, 0),
(111, 5, 0),
(115, 5, 0),
(117, 6, 0),
(508, 7, 0),
(525, 5, 0),
(645, 2, 0),
(644, 2, 0),
(670, 2, 0);

-- --------------------------------------------------------

--
-- Table structure for table `wpcn_term_taxonomy`
--

CREATE TABLE `wpcn_term_taxonomy` (
  `term_taxonomy_id` bigint(20) UNSIGNED NOT NULL,
  `term_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `taxonomy` varchar(32) NOT NULL DEFAULT '',
  `description` longtext NOT NULL,
  `parent` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `count` bigint(20) NOT NULL DEFAULT 0
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `wpcn_term_taxonomy`
--

INSERT INTO `wpcn_term_taxonomy` (`term_taxonomy_id`, `term_id`, `taxonomy`, `description`, `parent`, `count`) VALUES
(1, 1, 'category', '', 0, 0),
(2, 2, 'nav_menu', '', 0, 7),
(3, 3, 'elementor_library_type', '', 0, 1),
(4, 4, 'elementor_library_type', '', 0, 1),
(5, 5, 'elementor_library_type', '', 0, 1),
(6, 6, 'elementor_font_type', '', 0, 1),
(7, 7, 'elementor_library_type', '', 0, 1);

-- --------------------------------------------------------

--
-- Table structure for table `wpcn_usermeta`
--

CREATE TABLE `wpcn_usermeta` (
  `umeta_id` bigint(20) UNSIGNED NOT NULL,
  `user_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `wpcn_usermeta`
--

INSERT INTO `wpcn_usermeta` (`umeta_id`, `user_id`, `meta_key`, `meta_value`) VALUES
(1, 1, 'nickname', 'web-admin'),
(2, 1, 'first_name', ''),
(3, 1, 'last_name', ''),
(4, 1, 'description', ''),
(5, 1, 'rich_editing', 'true'),
(6, 1, 'syntax_highlighting', 'true'),
(7, 1, 'comment_shortcuts', 'false'),
(8, 1, 'admin_color', 'modern'),
(9, 1, 'use_ssl', '0'),
(10, 1, 'show_admin_bar_front', 'true'),
(11, 1, 'locale', ''),
(12, 1, 'wpcn_capabilities', 'a:1:{s:13:\"administrator\";b:1;}'),
(13, 1, 'wpcn_user_level', '10'),
(14, 1, 'dismissed_wp_pointers', 'theme_editor_notice'),
(15, 1, 'show_welcome_panel', '1'),
(16, 1, 'session_tokens', 'a:1:{s:64:\"455b17416be99868644e915b87aca689037cb9e795b73670586bb22cb7452d8e\";a:4:{s:10:\"expiration\";i:1773938809;s:2:\"ip\";s:14:\"118.179.24.111\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36\";s:5:\"login\";i:1773766009;}}'),
(17, 1, 'wpcn_dashboard_quick_press_last_post_id', '788'),
(18, 1, 'community-events-location', 'a:1:{s:2:\"ip\";s:12:\"118.179.24.0\";}'),
(19, 1, 'managenav-menuscolumnshidden', 'a:5:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";i:4;s:15:\"title-attribute\";}'),
(20, 1, 'metaboxhidden_nav-menus', 'a:2:{i:0;s:12:\"add-post_tag\";i:1;s:15:\"add-post_format\";}'),
(21, 1, 'elementor_introduction', 'a:3:{s:27:\"e-editor-one-notice-pointer\";b:1;s:27:\"ai-get-started-announcement\";b:1;s:20:\"globals_introduction\";b:1;}'),
(22, 1, 'wpcn_elementor_connect_common_data', 'a:7:{s:9:\"client_id\";s:32:\"SlTA6cK9NAa2pACU9SbFq8GDbvys0IWR\";s:11:\"auth_secret\";s:32:\"DuOR6laIsGMpenIdM3G5UzL0je7zQ63n\";s:12:\"access_token\";s:296:\"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI2MTQ4NjIiLCJhdWQiOiJodHRwczovL21yYXJpZi5tZS9jcG5vcmRpYy8iLCJjbGllbnRfaWQiOiJTbFRBNmNLOU5BYTJwQUNVOVNiRnE4R0RidnlzMElXUiIsImNvbm5lY3RfdHlwZSI6ImFjdGl2YXRlIiwiaWF0IjoxNzY5MzQyNDI0LCJleHAiOjMxNzMxMzc4NDgyNH0.39-Qwdmz1GhPpfu9x7IVs6wSd9staH0Jr1QNCkhji1s\";s:19:\"access_token_secret\";s:32:\"eELMgAmmIx06sCTXqYLV3Jr0KLfLN03V\";s:10:\"token_type\";s:6:\"bearer\";s:4:\"user\";O:8:\"stdClass\":1:{s:5:\"email\";s:21:\"arifbabu587@gmail.com\";}s:19:\"data_share_opted_in\";b:1;}'),
(23, 1, 'nav_menu_recently_edited', '2'),
(24, 1, 'wpcn_user-settings', 'libraryContent=browse&editor=tinymce'),
(25, 1, 'wpcn_user-settings-time', '1769440266');

-- --------------------------------------------------------

--
-- Table structure for table `wpcn_users`
--

CREATE TABLE `wpcn_users` (
  `ID` bigint(20) UNSIGNED NOT NULL,
  `user_login` varchar(60) NOT NULL DEFAULT '',
  `user_pass` varchar(255) NOT NULL DEFAULT '',
  `user_nicename` varchar(50) NOT NULL DEFAULT '',
  `user_email` varchar(100) NOT NULL DEFAULT '',
  `user_url` varchar(100) NOT NULL DEFAULT '',
  `user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `user_activation_key` varchar(255) NOT NULL DEFAULT '',
  `user_status` int(11) NOT NULL DEFAULT 0,
  `display_name` varchar(250) NOT NULL DEFAULT ''
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `wpcn_users`
--

INSERT INTO `wpcn_users` (`ID`, `user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `user_status`, `display_name`) VALUES
(1, 'web-admin', '$wp$2y$10$va4AWOIePiVIC9QRUMGgC.uOZCnx21S6n4RS8aMIXAPeFaNMnDRTC', 'web-admin', 'arifwebsols@gmail.com', 'https://mrarif.me/cpnordic', '2026-01-25 11:12:47', '', 0, 'web-admin');

--
-- Indexes for dumped tables
--

--
-- Indexes for table `wpcn_commentmeta`
--
ALTER TABLE `wpcn_commentmeta`
  ADD PRIMARY KEY (`meta_id`),
  ADD KEY `comment_id` (`comment_id`),
  ADD KEY `meta_key` (`meta_key`(191));

--
-- Indexes for table `wpcn_comments`
--
ALTER TABLE `wpcn_comments`
  ADD PRIMARY KEY (`comment_ID`),
  ADD KEY `comment_post_ID` (`comment_post_ID`),
  ADD KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
  ADD KEY `comment_date_gmt` (`comment_date_gmt`),
  ADD KEY `comment_parent` (`comment_parent`),
  ADD KEY `comment_author_email` (`comment_author_email`(10));

--
-- Indexes for table `wpcn_e_events`
--
ALTER TABLE `wpcn_e_events`
  ADD PRIMARY KEY (`id`),
  ADD KEY `created_at_index` (`created_at`);

--
-- Indexes for table `wpcn_e_notes`
--
ALTER TABLE `wpcn_e_notes`
  ADD PRIMARY KEY (`id`),
  ADD KEY `route_url_index` (`route_url`(191)),
  ADD KEY `post_id_index` (`post_id`),
  ADD KEY `element_id_index` (`element_id`),
  ADD KEY `parent_id_index` (`parent_id`),
  ADD KEY `author_id_index` (`author_id`),
  ADD KEY `status_index` (`status`),
  ADD KEY `is_resolved_index` (`is_resolved`),
  ADD KEY `is_public_index` (`is_public`),
  ADD KEY `created_at_index` (`created_at`),
  ADD KEY `updated_at_index` (`updated_at`),
  ADD KEY `last_activity_at_index` (`last_activity_at`);

--
-- Indexes for table `wpcn_e_notes_users_relations`
--
ALTER TABLE `wpcn_e_notes_users_relations`
  ADD PRIMARY KEY (`id`),
  ADD KEY `type_index` (`type`),
  ADD KEY `note_id_index` (`note_id`),
  ADD KEY `user_id_index` (`user_id`);

--
-- Indexes for table `wpcn_e_submissions`
--
ALTER TABLE `wpcn_e_submissions`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `hash_id_unique_index` (`hash_id`),
  ADD KEY `main_meta_id_index` (`main_meta_id`),
  ADD KEY `hash_id_index` (`hash_id`),
  ADD KEY `type_index` (`type`),
  ADD KEY `post_id_index` (`post_id`),
  ADD KEY `element_id_index` (`element_id`),
  ADD KEY `campaign_id_index` (`campaign_id`),
  ADD KEY `user_id_index` (`user_id`),
  ADD KEY `user_ip_index` (`user_ip`),
  ADD KEY `status_index` (`status`),
  ADD KEY `is_read_index` (`is_read`),
  ADD KEY `created_at_gmt_index` (`created_at_gmt`),
  ADD KEY `updated_at_gmt_index` (`updated_at_gmt`),
  ADD KEY `created_at_index` (`created_at`),
  ADD KEY `updated_at_index` (`updated_at`),
  ADD KEY `referer_index` (`referer`(191)),
  ADD KEY `referer_title_index` (`referer_title`(191));

--
-- Indexes for table `wpcn_e_submissions_actions_log`
--
ALTER TABLE `wpcn_e_submissions_actions_log`
  ADD PRIMARY KEY (`id`),
  ADD KEY `submission_id_index` (`submission_id`),
  ADD KEY `action_name_index` (`action_name`),
  ADD KEY `status_index` (`status`),
  ADD KEY `created_at_gmt_index` (`created_at_gmt`),
  ADD KEY `updated_at_gmt_index` (`updated_at_gmt`),
  ADD KEY `created_at_index` (`created_at`),
  ADD KEY `updated_at_index` (`updated_at`);

--
-- Indexes for table `wpcn_e_submissions_values`
--
ALTER TABLE `wpcn_e_submissions_values`
  ADD PRIMARY KEY (`id`),
  ADD KEY `submission_id_index` (`submission_id`),
  ADD KEY `key_index` (`key`);

--
-- Indexes for table `wpcn_links`
--
ALTER TABLE `wpcn_links`
  ADD PRIMARY KEY (`link_id`),
  ADD KEY `link_visible` (`link_visible`);

--
-- Indexes for table `wpcn_litespeed_url`
--
ALTER TABLE `wpcn_litespeed_url`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `url` (`url`(191)),
  ADD KEY `cache_tags` (`cache_tags`(191));

--
-- Indexes for table `wpcn_litespeed_url_file`
--
ALTER TABLE `wpcn_litespeed_url_file`
  ADD PRIMARY KEY (`id`),
  ADD KEY `filename` (`filename`),
  ADD KEY `type` (`type`),
  ADD KEY `url_id_2` (`url_id`,`vary`,`type`),
  ADD KEY `filename_2` (`filename`,`expired`),
  ADD KEY `url_id` (`url_id`,`expired`);

--
-- Indexes for table `wpcn_options`
--
ALTER TABLE `wpcn_options`
  ADD PRIMARY KEY (`option_id`),
  ADD UNIQUE KEY `option_name` (`option_name`),
  ADD KEY `autoload` (`autoload`);

--
-- Indexes for table `wpcn_postmeta`
--
ALTER TABLE `wpcn_postmeta`
  ADD PRIMARY KEY (`meta_id`),
  ADD KEY `post_id` (`post_id`),
  ADD KEY `meta_key` (`meta_key`(191));

--
-- Indexes for table `wpcn_posts`
--
ALTER TABLE `wpcn_posts`
  ADD PRIMARY KEY (`ID`),
  ADD KEY `post_name` (`post_name`(191)),
  ADD KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
  ADD KEY `post_parent` (`post_parent`),
  ADD KEY `post_author` (`post_author`),
  ADD KEY `type_status_author` (`post_type`,`post_status`,`post_author`);

--
-- Indexes for table `wpcn_termmeta`
--
ALTER TABLE `wpcn_termmeta`
  ADD PRIMARY KEY (`meta_id`),
  ADD KEY `term_id` (`term_id`),
  ADD KEY `meta_key` (`meta_key`(191));

--
-- Indexes for table `wpcn_terms`
--
ALTER TABLE `wpcn_terms`
  ADD PRIMARY KEY (`term_id`),
  ADD KEY `slug` (`slug`(191)),
  ADD KEY `name` (`name`(191));

--
-- Indexes for table `wpcn_term_relationships`
--
ALTER TABLE `wpcn_term_relationships`
  ADD PRIMARY KEY (`object_id`,`term_taxonomy_id`),
  ADD KEY `term_taxonomy_id` (`term_taxonomy_id`);

--
-- Indexes for table `wpcn_term_taxonomy`
--
ALTER TABLE `wpcn_term_taxonomy`
  ADD PRIMARY KEY (`term_taxonomy_id`),
  ADD UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
  ADD KEY `taxonomy` (`taxonomy`);

--
-- Indexes for table `wpcn_usermeta`
--
ALTER TABLE `wpcn_usermeta`
  ADD PRIMARY KEY (`umeta_id`),
  ADD KEY `user_id` (`user_id`),
  ADD KEY `meta_key` (`meta_key`(191));

--
-- Indexes for table `wpcn_users`
--
ALTER TABLE `wpcn_users`
  ADD PRIMARY KEY (`ID`),
  ADD KEY `user_login_key` (`user_login`),
  ADD KEY `user_nicename` (`user_nicename`),
  ADD KEY `user_email` (`user_email`);

--
-- AUTO_INCREMENT for dumped tables
--

--
-- AUTO_INCREMENT for table `wpcn_commentmeta`
--
ALTER TABLE `wpcn_commentmeta`
  MODIFY `meta_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `wpcn_comments`
--
ALTER TABLE `wpcn_comments`
  MODIFY `comment_ID` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `wpcn_e_events`
--
ALTER TABLE `wpcn_e_events`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `wpcn_e_notes`
--
ALTER TABLE `wpcn_e_notes`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `wpcn_e_notes_users_relations`
--
ALTER TABLE `wpcn_e_notes_users_relations`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `wpcn_e_submissions`
--
ALTER TABLE `wpcn_e_submissions`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `wpcn_e_submissions_actions_log`
--
ALTER TABLE `wpcn_e_submissions_actions_log`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `wpcn_e_submissions_values`
--
ALTER TABLE `wpcn_e_submissions_values`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `wpcn_links`
--
ALTER TABLE `wpcn_links`
  MODIFY `link_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `wpcn_litespeed_url`
--
ALTER TABLE `wpcn_litespeed_url`
  MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `wpcn_litespeed_url_file`
--
ALTER TABLE `wpcn_litespeed_url_file`
  MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `wpcn_options`
--
ALTER TABLE `wpcn_options`
  MODIFY `option_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7670;

--
-- AUTO_INCREMENT for table `wpcn_postmeta`
--
ALTER TABLE `wpcn_postmeta`
  MODIFY `meta_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7639;

--
-- AUTO_INCREMENT for table `wpcn_posts`
--
ALTER TABLE `wpcn_posts`
  MODIFY `ID` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=789;

--
-- AUTO_INCREMENT for table `wpcn_termmeta`
--
ALTER TABLE `wpcn_termmeta`
  MODIFY `meta_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `wpcn_terms`
--
ALTER TABLE `wpcn_terms`
  MODIFY `term_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8;

--
-- AUTO_INCREMENT for table `wpcn_term_taxonomy`
--
ALTER TABLE `wpcn_term_taxonomy`
  MODIFY `term_taxonomy_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8;

--
-- AUTO_INCREMENT for table `wpcn_usermeta`
--
ALTER TABLE `wpcn_usermeta`
  MODIFY `umeta_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=26;

--
-- AUTO_INCREMENT for table `wpcn_users`
--
ALTER TABLE `wpcn_users`
  MODIFY `ID` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
COMMIT;

/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
